diff --git a/CHANGELOG.md b/CHANGELOG.md
index 50de79abc..8489bd62d 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -4,6 +4,37 @@ All notable changes to this project will be documented in this file.
## [Unreleased]
+## [3.0.118] - 2026-09-11
+
+### Features
+- **image**: Add configurable theme-aware placeholder colors and skip unnecessary image fades for memory-cache hits while respecting reduced-motion settings.
+- **native-list**: Expose cross-platform avatar preloading and align selector image fallback and reuse behavior across iOS, Android, and Web.
+
+### Chores
+- Bump all 39 publishable packages to 3.0.118.
+
+## [3.0.116] - 2026-09-10
+
+### Bug Fixes
+- **native-list**: Complete the published Market row layout, refresh indicator, recycled-cell reset and action-anchor contracts on iOS and Android.
+
+### Chores
+- Bump all 39 publishable packages to 3.0.116.
+
+## [3.0.115] - 2026-09-10
+
+### Features
+- **pager-view**: Add a collapsible pager with coordinated native scrolling and retained page positions on iOS and Android, plus a Web implementation.
+- **native-list**: Add Market row styles, source badges, long-press actions, skeleton loading and pagination spinners.
+- **example**: Add the mobile Market replica with complete real-data replay and live filters.
+
+### Bug Fixes
+- **native-list**: Align Market typography, image borders, row interactions and scroll insets with the original mobile UI.
+- **example**: Lazy-load the Market screen and replay snapshot so other example routes do not evaluate the full capture at startup.
+
+### Chores
+- Bump all 39 publishable packages to 3.0.115 for the native Market integration release.
+
## [3.0.114] - 2026-09-09
### Bug Fixes
diff --git a/example/react-native/__tests__/CollapsiblePagerView.web.test.tsx b/example/react-native/__tests__/CollapsiblePagerView.web.test.tsx
new file mode 100644
index 000000000..2fef9e730
--- /dev/null
+++ b/example/react-native/__tests__/CollapsiblePagerView.web.test.tsx
@@ -0,0 +1,251 @@
+import React from 'react';
+import { View } from 'react-native';
+import ReactTestRenderer from 'react-test-renderer';
+
+import {
+ CollapsiblePagerView as NativeCollapsiblePagerView,
+} from '../../../native-views/react-native-pager-view/src/CollapsiblePagerView';
+import { CollapsiblePagerView } from '../../../native-views/react-native-pager-view/src/CollapsiblePagerView.web';
+import { PagerView } from '../../../native-views/react-native-pager-view/src/PagerView.web';
+
+const pages = (count: number) =>
+ Array.from({ length: count }, (_, index) => (
+
+ ));
+
+const requiredProps = {
+ header: ,
+ stickyHeader: ,
+ headerHeight: 100,
+ stickyHeaderHeight: 44,
+};
+
+describe('CollapsiblePagerView native wrapper', () => {
+ it('passes the rendered-page-clamped initial index to native', async () => {
+ let renderer!: ReactTestRenderer.ReactTestRenderer;
+ await ReactTestRenderer.act(() => {
+ renderer = ReactTestRenderer.create(
+
+
+ {false}
+
+ ,
+ );
+ });
+ const nativeHost = renderer.root.find(
+ node => typeof node.props.retainedPages === 'string',
+ );
+ expect(nativeHost.props.initialPage).toBe(1);
+ await ReactTestRenderer.act(() => {
+ renderer.unmount();
+ });
+ });
+});
+
+describe('CollapsiblePagerView web', () => {
+ afterEach(() => {
+ jest.useRealTimers();
+ });
+
+ it('clamps the initial page and a selection after children shrink', async () => {
+ const mounted: number[] = [];
+ let renderer!: ReactTestRenderer.ReactTestRenderer;
+ await ReactTestRenderer.act(() => {
+ renderer = ReactTestRenderer.create(
+ mounted.push(position)}
+ >
+ {pages(3)}
+ ,
+ );
+ });
+
+ const pager = renderer.root.findByType(CollapsiblePagerView).instance;
+ expect(pager.state.selectedPage).toBe(2);
+
+ await ReactTestRenderer.act(() => {
+ renderer.update(
+ mounted.push(position)}
+ >
+ {pages(1)}
+ ,
+ );
+ });
+
+ expect(pager.state.selectedPage).toBe(0);
+ expect(mounted.at(-1)).toBe(0);
+ await ReactTestRenderer.act(() => {
+ renderer.unmount();
+ });
+ });
+
+ it('clamps against rendered pages when conditional children are empty', async () => {
+ let renderer!: ReactTestRenderer.ReactTestRenderer;
+ await ReactTestRenderer.act(() => {
+ renderer = ReactTestRenderer.create(
+
+ {null}
+
+ ,
+ );
+ });
+
+ const pager = renderer.root.findByType(CollapsiblePagerView).instance;
+ expect(pager.state.selectedPage).toBe(0);
+ await ReactTestRenderer.act(() => {
+ renderer.unmount();
+ });
+ });
+
+ it('normalizes page commands and stays settling until transition completion', async () => {
+ jest.useFakeTimers();
+ const selected: number[] = [];
+ const states: string[] = [];
+ let renderer!: ReactTestRenderer.ReactTestRenderer;
+ await ReactTestRenderer.act(() => {
+ renderer = ReactTestRenderer.create(
+ selected.push(event.nativeEvent.position)}
+ onPageScrollStateChanged={event =>
+ states.push(event.nativeEvent.pageScrollState)
+ }
+ >
+ {pages(3)}
+ ,
+ );
+ });
+ const pager = renderer.root.findByType(CollapsiblePagerView).instance;
+
+ await ReactTestRenderer.act(() => {
+ pager.setPage(1.9);
+ });
+ expect(selected).toEqual([1]);
+ expect(states).toEqual(['settling']);
+
+ await ReactTestRenderer.act(() => {
+ jest.advanceTimersByTime(320);
+ });
+ expect(states).toEqual(['settling', 'idle']);
+
+ await ReactTestRenderer.act(() => {
+ pager.setPage(Number.NaN);
+ pager.setPage(5);
+ });
+ expect(selected).toEqual([1]);
+ await ReactTestRenderer.act(() => {
+ renderer.unmount();
+ });
+ });
+
+ it('returns a horizontal cancelled gesture to idle and forwards View props', async () => {
+ const states: string[] = [];
+ let renderer!: ReactTestRenderer.ReactTestRenderer;
+ await ReactTestRenderer.act(() => {
+ renderer = ReactTestRenderer.create(
+
+ states.push(event.nativeEvent.pageScrollState)
+ }
+ >
+ {pages(2)}
+ ,
+ );
+ });
+
+ const track = renderer.root.find(
+ node =>
+ typeof node.props.onTouchStart === 'function' &&
+ typeof node.props.onTouchMove === 'function',
+ );
+ await ReactTestRenderer.act(() => {
+ track.props.onTouchStart({
+ nativeEvent: { touches: [{ pageX: 100, pageY: 20 }] },
+ });
+ track.props.onTouchMove({
+ nativeEvent: { touches: [{ pageX: 70, pageY: 21 }] },
+ });
+ track.props.onTouchCancel();
+ });
+
+ expect(states).toEqual(['dragging', 'idle']);
+ expect(
+ renderer.root.findByProps({ testID: 'collapsible-pager' }).props,
+ ).toMatchObject({ accessibilityLabel: 'Accounts' });
+ await ReactTestRenderer.act(() => {
+ renderer.unmount();
+ });
+ });
+});
+
+describe('PagerView web', () => {
+ it('uses rendered pages for initial, update, command, and gesture bounds', async () => {
+ const conditionalPages = (includeThird: boolean) => [
+ ,
+ false,
+ ,
+ includeThird ? : null,
+ ];
+ let renderer!: ReactTestRenderer.ReactTestRenderer;
+ await ReactTestRenderer.act(() => {
+ renderer = ReactTestRenderer.create(
+ {conditionalPages(true)},
+ );
+ });
+ const pager = renderer.root.findByType(PagerView).instance;
+ expect(pager.state.selectedPage).toBe(2);
+
+ await ReactTestRenderer.act(() => {
+ renderer.update(
+ {conditionalPages(false)},
+ );
+ });
+ expect(pager.state.selectedPage).toBe(1);
+
+ await ReactTestRenderer.act(() => {
+ pager.setPage(2);
+ });
+ expect(pager.state.selectedPage).toBe(1);
+
+ const track = renderer.root.find(
+ node =>
+ typeof node.props.onTouchStart === 'function' &&
+ typeof node.props.onTouchEnd === 'function',
+ );
+ await ReactTestRenderer.act(() => {
+ track.props.onTouchStart({ nativeEvent: { pageX: 100, pageY: 20 } });
+ track.props.onTouchEnd({ nativeEvent: { pageX: 20, pageY: 20 } });
+ });
+ expect(pager.state.selectedPage).toBe(1);
+ await ReactTestRenderer.act(() => {
+ renderer.unmount();
+ });
+ });
+
+ it('clamps an initial index against conditional rendered pages', async () => {
+ let renderer!: ReactTestRenderer.ReactTestRenderer;
+ await ReactTestRenderer.act(() => {
+ renderer = ReactTestRenderer.create(
+
+
+ {false}
+
+ ,
+ );
+ });
+ expect(renderer.root.findByType(PagerView).instance.state.selectedPage).toBe(
+ 1,
+ );
+ await ReactTestRenderer.act(() => {
+ renderer.unmount();
+ });
+ });
+});
diff --git a/example/react-native/__tests__/marketNativePagerData.test.ts b/example/react-native/__tests__/marketNativePagerData.test.ts
new file mode 100644
index 000000000..ed085bfeb
--- /dev/null
+++ b/example/react-native/__tests__/marketNativePagerData.test.ts
@@ -0,0 +1,418 @@
+import {
+ applyMarketScenario,
+ buildMarketPages,
+ filterMarketSearch,
+ formatPrice,
+ formatCompactUsd,
+ formatChange,
+ replayItemsForPage,
+ resolveUSMarketStatusVariant,
+} from '../pages/marketNativePagerData';
+import { MARKET_REPLAY_SNAPSHOT } from '../pages/marketNativePagerSnapshot';
+
+describe('Market native pager production fixture', () => {
+ it('builds pages from every server spot category instead of a fixed count', () => {
+ const config = {
+ ...MARKET_REPLAY_SNAPSHOT.config,
+ spotCategories: [
+ { id: 'alpha', name: 'Alpha' },
+ { id: 'beta', name: 'Beta' },
+ { id: 'gamma', name: 'Gamma' },
+ { id: 'delta', name: 'Delta' },
+ ],
+ };
+
+ expect(buildMarketPages(config).map(page => page.categoryId)).toEqual([
+ 'watchlist',
+ 'alpha',
+ 'beta',
+ 'gamma',
+ 'delta',
+ 'top_coins',
+ 'perps',
+ ]);
+
+ expect(
+ buildMarketPages({ ...config, perpsCategories: [] }).map(
+ page => page.categoryId,
+ ),
+ ).not.toContain('perps');
+ });
+
+ it('preserves a server-provided top-coins category without duplicating it', () => {
+ const pages = buildMarketPages({
+ ...MARKET_REPLAY_SNAPSHOT.config,
+ spotCategories: [
+ ...MARKET_REPLAY_SNAPSHOT.config.spotCategories,
+ { id: 'top_coins', name: 'Top Assets' },
+ ],
+ });
+
+ expect(pages.filter(page => page.categoryId === 'top_coins')).toHaveLength(
+ 1,
+ );
+ expect(pages.find(page => page.categoryId === 'top_coins')?.name).toBe(
+ 'Top Assets',
+ );
+ });
+
+ it('keeps snapshot provenance and real token, stock, and perps metadata', () => {
+ expect(MARKET_REPLAY_SNAPSHOT.source.baseUrl).toBe(
+ 'https://utility.onekeycn.com',
+ );
+ expect(MARKET_REPLAY_SNAPSHOT.fetchedAt).toMatch(
+ /^2026-09-08T\d{2}:\d{2}:\d{2}/,
+ );
+ expect(MARKET_REPLAY_SNAPSHOT.source.requiredHeaders).toEqual(
+ expect.arrayContaining([
+ 'Accept: application/json',
+ 'User-Agent: OneKeyWallet/6.15.0',
+ 'X-Onekey-Request-Version: 6.15.0',
+ 'X-Onekey-Request-Platform: ios-store',
+ ]),
+ );
+
+ const allSpot = Object.values(MARKET_REPLAY_SNAPSHOT.spot).flat();
+ const allPerps = Object.values(MARKET_REPLAY_SNAPSHOT.perps).flat();
+ expect(allSpot.some(item => item.logoUrl && item.networkLogoUrl)).toBe(
+ true,
+ );
+ expect(
+ allSpot.some(
+ item => item.stock?.source && item.stock.sourceLogoUri && item.price,
+ ),
+ ).toBe(true);
+ expect(
+ allPerps.some(
+ item => item.maxLeverage && item.dexLabel && item.logoUrl && item.price,
+ ),
+ ).toBe(true);
+ });
+
+ it('replays local watchlist order and filters real metadata without mutation', () => {
+ const firstTrending = MARKET_REPLAY_SNAPSHOT.spot.watchlist?.[0];
+ const firstPerp = MARKET_REPLAY_SNAPSHOT.perps.hot?.[0];
+ expect(firstTrending).toBeDefined();
+ expect(firstPerp).toBeDefined();
+
+ const watchlist = replayItemsForPage(
+ MARKET_REPLAY_SNAPSHOT,
+ {
+ key: 'watchlist',
+ kind: 'watchlist',
+ name: 'Watchlist',
+ categoryId: 'watchlist',
+ },
+ [firstPerp!.key, firstTrending!.key],
+ 'hot',
+ );
+ expect(watchlist.map(item => item.key)).toEqual([
+ firstPerp!.key,
+ firstTrending!.key,
+ ]);
+ expect(filterMarketSearch(watchlist, firstTrending!.symbol)).toEqual([
+ watchlist[1],
+ ]);
+ expect(applyMarketScenario(watchlist, 'short')).toEqual(watchlist);
+ expect(applyMarketScenario(watchlist, 'empty')).toEqual([]);
+ });
+ it('provides captured English names for every new stock category and search result', () => {
+ const metadata = MARKET_REPLAY_SNAPSHOT.locales?.['en-US']?.stockMetadata;
+ const stocks = Object.values(MARKET_REPLAY_SNAPSHOT.stocks ?? {}).flat();
+ expect(new Set(stocks.map(item => item.key)).size).toBe(1009);
+ expect(stocks.every(item => Boolean(metadata?.[item.key]?.subtitle))).toBe(
+ true,
+ );
+ expect(metadata?.['stock:AAPL']?.subtitle).toBe('Apple');
+ });
+ it('replays exact network, time and stock-category responses instead of the default page', () => {
+ const page = buildMarketPages(MARKET_REPLAY_SNAPSHOT.config).find(
+ item => item.categoryId === 'trending',
+ )!;
+ const filters = {
+ networkId: 'evm--1',
+ timeRange: '5m',
+ stockCategory: 'all',
+ };
+ const items = replayItemsForPage(
+ MARKET_REPLAY_SNAPSHOT,
+ page,
+ [],
+ 'hot',
+ filters,
+ );
+ expect(items).toBe(
+ MARKET_REPLAY_SNAPSHOT.spotQueries?.['trending|evm--1|5m|all'],
+ );
+ expect(items.every(item => item.networkId === 'evm--1')).toBe(true);
+ expect(items).not.toEqual(
+ replayItemsForPage(MARKET_REPLAY_SNAPSHOT, page, [], 'hot', {
+ ...filters,
+ timeRange: '24h',
+ }),
+ );
+ const stocks = { ...page, categoryId: 'stocks' };
+ expect(
+ replayItemsForPage(MARKET_REPLAY_SNAPSHOT, stocks, [], 'hot', {
+ ...filters,
+ stockCategory: 'market__tab__ai_tech',
+ }),
+ ).toBe(MARKET_REPLAY_SNAPSHOT.stocks?.market__tab__ai_tech);
+ });
+
+ it('includes complete approved test Stocks and Top Coins datasets', () => {
+ expect(MARKET_REPLAY_SNAPSHOT.source.testBaseUrl).toBe(
+ 'https://utility.onekeytest.com',
+ );
+ expect(MARKET_REPLAY_SNAPSHOT.stocks?.all).toHaveLength(1009);
+ expect(
+ new Set(MARKET_REPLAY_SNAPSHOT.stocks?.all.map(item => item.key)).size,
+ ).toBe(1009);
+ expect(MARKET_REPLAY_SNAPSHOT.spot.top_coins).toHaveLength(32);
+ expect(Object.keys(MARKET_REPLAY_SNAPSHOT.stocks ?? {})).toEqual(
+ MARKET_REPLAY_SNAPSHOT.config.stockCategories.map(
+ category => category.id,
+ ),
+ );
+ });
+
+ it('keeps every captured asset available for full watchlist replay', () => {
+ const keys = [
+ ...new Set(
+ [
+ ...Object.values(MARKET_REPLAY_SNAPSHOT.spotQueries ?? {}).flat(),
+ ...Object.values(MARKET_REPLAY_SNAPSHOT.perps).flat(),
+ ].map(item => item.key),
+ ),
+ ];
+ expect(keys.length).toBe(1735);
+ const page = buildMarketPages(MARKET_REPLAY_SNAPSHOT.config)[0]!;
+ expect(
+ replayItemsForPage(MARKET_REPLAY_SNAPSHOT, page, keys, 'hot'),
+ ).toHaveLength(keys.length);
+ });
+
+ it('adds all source recommendations with captured prices and 24h changes', () => {
+ const recommendations = MARKET_REPLAY_SNAPSHOT.config.recommendTokens!;
+ const page = buildMarketPages(MARKET_REPLAY_SNAPSHOT.config)[0]!;
+ const added = replayItemsForPage(
+ MARKET_REPLAY_SNAPSHOT,
+ page,
+ recommendations.map(item => item.key),
+ 'all',
+ );
+ expect(added).toHaveLength(8);
+ expect(added.map(item => item.symbol)).toEqual([
+ 'BTC',
+ 'ETH',
+ 'BNB',
+ 'SOL',
+ 'TRX',
+ 'AVAX',
+ 'ASTER',
+ 'AAVE',
+ ]);
+ for (const item of added) {
+ expect(Number(item.price)).toBeGreaterThan(0);
+ expect(Number.isFinite(Number(item.priceChange24hPercent))).toBe(true);
+ }
+ });
+
+ it('matches production precision and capped percentage text', () => {
+ expect(formatPrice('78331')).toBe('$78,331.00');
+ expect(formatPrice('0.00321374')).toBe('$0.003214');
+ expect(formatCompactUsd('185170')).toBe('$185.17K');
+ expect(formatChange('123456')).toBe('>+99,999%');
+ expect(formatChange('-123456')).toBe('>-99,999%');
+ expect(formatChange('0')).toBe('+0.00%');
+ });
+});
+
+describe('Market live watchlist', () => {
+ it.each([
+ ['5m', '-1.36', '36398.85612902936'],
+ ['1h', '-1.17', '244097.7954039045'],
+ ['4h', '-3.86', '746446.40762749999'],
+ ['24h', '-12.27', '4558208.57475499481'],
+ ] as const)(
+ 'uses %s metrics in replay and live while preserving 24h watchlist values',
+ async (range, change, volume) => {
+ const { fetchMarketPage } =
+ require('../pages/marketNativePagerApi') as typeof import('../pages/marketNativePagerApi');
+ const captured =
+ MARKET_REPLAY_SNAPSHOT.spotQueries![
+ `trending|sol--101|${range}|all`
+ ]![0]!;
+ expect(captured.priceChange24hPercent).toBe(change);
+ expect(captured.volume24h).toBe(volume);
+ const originalFetch = globalThis.fetch;
+ globalThis.fetch = jest.fn(async () => ({
+ ok: true,
+ json: async () => ({
+ code: 0,
+ data: {
+ list: [
+ {
+ ...captured,
+ priceChange24hPercent: '-12.27',
+ volume24h: '4558208.57475499481',
+ [`priceChange${range}Percent`]: change,
+ [`volume${range}`]: volume,
+ },
+ ],
+ total: 1,
+ },
+ }),
+ })) as unknown as typeof fetch;
+ try {
+ const result = await fetchMarketPage({
+ page: {
+ key: 'spot:trending',
+ kind: 'spot',
+ name: 'Trending',
+ categoryId: 'trending',
+ },
+ pageNumber: 1,
+ config: MARKET_REPLAY_SNAPSHOT.config,
+ timeRange: range,
+ stockCategory: 'all',
+ perpsCategory: 'all',
+ watchlistKeys: [],
+ networkId: 'sol--101',
+ });
+ expect(result.items[0]?.priceChange24hPercent).toBe(change);
+ expect(result.items[0]?.volume24h).toBe(volume);
+ const canonical = replayItemsForPage(
+ MARKET_REPLAY_SNAPSHOT,
+ buildMarketPages(MARKET_REPLAY_SNAPSHOT.config)[0]!,
+ [captured.key],
+ 'all',
+ )[0]!;
+ expect(canonical.priceChange24hPercent).toBe('-12.29');
+ expect(canonical.volume24h).toBe('4543245.05224630659');
+ } finally {
+ globalThis.fetch = originalFetch;
+ }
+ },
+ );
+
+ it('requests every saved identity, keeps its order, and uses the selected locale and all perps', async () => {
+ const { fetchMarketPage } =
+ require('../pages/marketNativePagerApi') as typeof import('../pages/marketNativePagerApi');
+ const unique = new Map(
+ Object.values(MARKET_REPLAY_SNAPSHOT.spotQueries ?? {})
+ .flat()
+ .map(item => [item.key, item]),
+ );
+ const tokens = [...unique.values()];
+ const keys = [...unique.keys(), 'perps:BTC'];
+ const originalFetch = globalThis.fetch;
+ const fetchMock = jest.fn(async (url: string) => ({
+ ok: true,
+ status: 200,
+ json: async () => ({
+ code: 0,
+ data: url.includes('/batch')
+ ? { list: tokens }
+ : { tokens: [{ name: 'BTC', markPrice: '1' }] },
+ }),
+ }));
+ globalThis.fetch = fetchMock as unknown as typeof fetch;
+ try {
+ const result = await fetchMarketPage({
+ page: {
+ key: 'watchlist',
+ kind: 'watchlist',
+ name: 'Favorites',
+ categoryId: 'watchlist',
+ },
+ pageNumber: 1,
+ config: MARKET_REPLAY_SNAPSHOT.config,
+ timeRange: '1h',
+ stockCategory: 'all',
+ perpsCategory: 'stocks',
+ watchlistKeys: keys,
+ locale: 'en-US',
+ });
+ expect(result.items.map(item => item.key)).toEqual(keys);
+ expect(fetchMock).toHaveBeenCalledTimes(2);
+ const calls = fetchMock.mock.calls as unknown as [string, RequestInit][];
+ const [url, options] = calls.find(([path]) => path.includes('/batch'))!;
+ expect(url).toContain('/utility/v2/market/token/list/batch');
+ expect(options.method).toBe('POST');
+ expect(options.headers).toEqual(
+ expect.objectContaining({ 'X-Onekey-Request-Locale': 'en-US' }),
+ );
+ const body = JSON.parse(options.body as string);
+ expect(body.tokenAddressList).toHaveLength(tokens.length);
+ expect(body.tokenAddressList.at(-1).contractAddress).toBe(
+ tokens.at(-1)?.address,
+ );
+ expect(calls.find(([path]) => path.includes('/perps/'))![0]).toContain(
+ 'category=all',
+ );
+ } finally {
+ globalThis.fetch = originalFetch;
+ }
+ });
+});
+
+describe('source stock status badge', () => {
+ it('preserves issuer, halt, closure, session-gap and unavailable fallback precedence', () => {
+ const now = new Date('2026-09-09T14:00:00Z');
+ const source = 'ondo';
+ const base = { source, isOpen: true, now };
+ expect(
+ resolveUSMarketStatusVariant({ ...base, source: 'xstock' }),
+ ).toBeUndefined();
+ expect(resolveUSMarketStatusVariant({ ...base, isPaused: true })).toBe(
+ 'halted',
+ );
+ expect(resolveUSMarketStatusVariant({ ...base, isOpen: false })).toBe(
+ 'closed',
+ );
+ expect(
+ resolveUSMarketStatusVariant({
+ ...base,
+ status: { open: false, session: 'CLOSED', reason: null },
+ }),
+ ).toBe('open247');
+ expect(
+ resolveUSMarketStatusVariant({
+ ...base,
+ isPaused: true,
+ now: new Date('2026-09-09T13:30:00Z'),
+ }),
+ ).toBe('awaitingOpen');
+ expect(
+ resolveUSMarketStatusVariant({
+ ...base,
+ status: {
+ open: false,
+ session: 'CLOSED',
+ reason: 'market-status-unavailable',
+ unavailable: true,
+ },
+ }),
+ ).toBe('open');
+ for (const [session, variant] of [
+ ['PRE_MARKET', 'preMarket'],
+ ['REGULAR', 'open'],
+ ['POST_MARKET', 'postMarket'],
+ ['OVERNIGHT', 'overnight'],
+ ] as const) {
+ expect(
+ resolveUSMarketStatusVariant({
+ ...base,
+ status: { open: true, session, reason: null },
+ }),
+ ).toBe(variant);
+ }
+ expect(
+ resolveUSMarketStatusVariant({
+ ...base,
+ now: new Date('2026-09-12T14:00:00Z'),
+ }),
+ ).toBe('open247');
+ });
+});
diff --git a/example/react-native/__tests__/marketNativePagerRows.test.ts b/example/react-native/__tests__/marketNativePagerRows.test.ts
new file mode 100644
index 000000000..e73dc169c
--- /dev/null
+++ b/example/react-native/__tests__/marketNativePagerRows.test.ts
@@ -0,0 +1,154 @@
+import {
+ buildMarketQuotePatches,
+ buildMarketSnapshot,
+ shouldClearMarketRowsOnRequestError,
+} from '../pages/marketNativePagerRows';
+import { MARKET_REPLAY_SNAPSHOT } from '../pages/marketNativePagerSnapshot';
+
+describe('Market built-in NativeList rows', () => {
+ const source = MARKET_REPLAY_SNAPSHOT.spot.trending?.[0];
+
+ it('uses the native market template with bounded source-derived styles', () => {
+ expect(source).toBeDefined();
+ const snapshot = buildMarketSnapshot({
+ items: [source!],
+ generation: 7,
+ theme: 'dark',
+ watchlist: true,
+ loading: false,
+ loadingMore: false,
+ canLoadMore: false,
+ });
+ expect(snapshot.rows[0]).toMatchObject({
+ type: 'market',
+ height: 72,
+ leading: {
+ networkImage: {
+ uri: 'https://uni.onekey-asset.com/static/chain/btc.png',
+ },
+ },
+ badges: [
+ {
+ iconName: 'verified',
+ actionKey: 'community-info',
+ },
+ ],
+ longPressActionKey: 'watchlist-menu',
+ diagnostics: { imageBindActionKey: 'image-bind' },
+ style: {
+ horizontalPadding: 20,
+ leadingGap: 14,
+ lineGap: 4,
+ image: { width: 32, height: 32, shape: 'circle' },
+ title: { fontSize: 16, lineHeight: 24, lines: 1 },
+ price: { fontSize: 16, alignment: 'end' },
+ change: { fontSize: 14, alignment: 'center' },
+ changeWidth: 80,
+ changeHeight: 32,
+ },
+ });
+ expect(() => JSON.stringify(snapshot)).not.toThrow();
+ });
+
+ it('patches quote fields only and never rebinds the leading image', () => {
+ expect(source).toBeDefined();
+ const next = {
+ ...source!,
+ price: String(Number(source!.price ?? 0) + 1),
+ priceChange24hPercent: '1.25',
+ volume24h: String(Number(source!.volume24h ?? 0) + 2),
+ };
+ const patches = buildMarketQuotePatches([source!], [next]);
+ expect(patches).toHaveLength(1);
+ expect(patches?.[0]).toMatchObject({
+ type: 'market',
+ key: source!.key,
+ changes: {
+ price: expect.any(String),
+ change: { text: '+1.25%', tone: 'positive' },
+ },
+ });
+ expect(patches?.[0]?.changes).not.toHaveProperty('leading');
+ expect(patches?.[0]?.changes).not.toHaveProperty('subtitle');
+ expect(patches?.[0]?.changes).not.toHaveProperty('badges');
+ expect(patches?.[0]?.changes).not.toHaveProperty('style');
+ expect(
+ buildMarketQuotePatches([source!], [{ ...next, key: 'different' }]),
+ ).toBeUndefined();
+ });
+
+ it('explicitly clears compact price segments when the price returns to normal', () => {
+ expect(source).toBeDefined();
+ const tiny = { ...source!, price: '0.0000000123' };
+ const normal = { ...tiny, price: '0.001' };
+ const compactPatch = buildMarketQuotePatches([normal], [tiny]);
+ const patches = buildMarketQuotePatches([tiny], [normal]);
+
+ expect(compactPatch?.[0]?.changes).toMatchObject({
+ priceSegments: expect.arrayContaining([
+ expect.objectContaining({ style: 'subscript' }),
+ ]),
+ });
+ expect(patches?.[0]?.changes).toMatchObject({
+ price: '$0.001',
+ priceSegments: [],
+ });
+ expect(
+ JSON.parse(JSON.stringify(patches))[0].changes.priceSegments,
+ ).toEqual([]);
+ });
+
+ it('keeps existing rows after manual refresh and pagination failures', () => {
+ expect(shouldClearMarketRowsOnRequestError([])).toBe(true);
+ expect(shouldClearMarketRowsOnRequestError([source!])).toBe(false);
+ });
+
+ it('keeps loading, empty, error, and pagination states inside NativeList', () => {
+ const common = {
+ items: [] as const,
+ generation: 1,
+ theme: 'dark' as const,
+ watchlist: false,
+ loadingMore: false,
+ canLoadMore: false,
+ };
+ const initial = buildMarketSnapshot({ ...common, loading: true });
+ expect(initial.rows).toHaveLength(10);
+ expect(initial.rows[0]).toMatchObject({
+ type: 'system',
+ variant: 'loading',
+ presentation: 'market',
+ loadingStyle: 'skeleton',
+ height: 56,
+ });
+ expect(initial.rows.every(row => !('message' in row))).toBe(true);
+ const nextPage = buildMarketSnapshot({
+ ...common,
+ items: [source!],
+ loading: false,
+ loadingMore: true,
+ });
+ expect(nextPage.rows).toHaveLength(2);
+ expect(nextPage.rows[0]).toMatchObject({
+ type: 'market',
+ key: source!.key,
+ });
+ expect(nextPage.rows[1]).toMatchObject({
+ type: 'system',
+ variant: 'loading',
+ loadingStyle: 'spinner',
+ height: 52,
+ });
+ expect(
+ buildMarketSnapshot({ ...common, loading: false, error: 'business 404' })
+ .rows[0],
+ ).toMatchObject({ type: 'system', variant: 'retry', actionKey: 'retry' });
+ expect(
+ buildMarketSnapshot({ ...common, loading: false }).emptyState,
+ ).toMatchObject({
+ type: 'system',
+ variant: 'noMatch',
+ presentation: 'market',
+ });
+ });
+});
diff --git a/example/react-native/android/app/src/main/java/com/example/MainApplication.kt b/example/react-native/android/app/src/main/java/com/example/MainApplication.kt
index 6fea8e2e5..0f3027be1 100644
--- a/example/react-native/android/app/src/main/java/com/example/MainApplication.kt
+++ b/example/react-native/android/app/src/main/java/com/example/MainApplication.kt
@@ -40,7 +40,7 @@ class MainApplication : Application(), ReactApplication {
val bgURL = if (BuildConfig.DEBUG) {
// Use the same host detection as React Native (emulator vs device)
- val host = com.facebook.react.modules.systeminfo.AndroidInfoHelpers.getServerHost(this@MainApplication, 8082)
+ val host = com.facebook.react.modules.systeminfo.AndroidInfoHelpers.getServerHost(this@MainApplication)
"http://$host/background.bundle?platform=android&dev=true&lazy=false&minify=false&inlineSourceMap=false&modulesOnly=false&runModule=true"
} else {
"background.bundle"
diff --git a/example/react-native/ios/Podfile.lock b/example/react-native/ios/Podfile.lock
index d05018411..b4f3768ec 100644
--- a/example/react-native/ios/Podfile.lock
+++ b/example/react-native/ios/Podfile.lock
@@ -1,5 +1,5 @@
PODS:
- - AesCrypto (3.0.101):
+ - AesCrypto (3.0.116):
- hermes-engine
- RCTRequired
- RCTTypeSafety
@@ -21,7 +21,7 @@ PODS:
- ReactCommon/turbomodule/core
- ReactNativeDependencies
- Yoga
- - AsyncStorage (3.0.101):
+ - AsyncStorage (3.0.116):
- hermes-engine
- RCTRequired
- RCTTypeSafety
@@ -43,7 +43,7 @@ PODS:
- ReactCommon/turbomodule/core
- ReactNativeDependencies
- Yoga
- - AutoSizeInput (3.0.101):
+ - AutoSizeInput (3.0.116):
- hermes-engine
- NitroModules
- RCTRequired
@@ -67,7 +67,7 @@ PODS:
- ReactCommon/turbomodule/core
- ReactNativeDependencies
- Yoga
- - BackgroundThread (3.0.101):
+ - BackgroundThread (3.0.116):
- hermes-engine
- RCTRequired
- RCTTypeSafety
@@ -90,7 +90,7 @@ PODS:
- ReactNativeDependencies
- ReactNativeNativeLogger
- Yoga
- - ChartWebview (3.0.101):
+ - ChartWebview (3.0.116):
- hermes-engine
- NitroModules
- RCTRequired
@@ -115,7 +115,7 @@ PODS:
- ReactNativeDependencies
- ReactNativeNativeLogger
- Yoga
- - CloudFs (3.0.101):
+ - CloudFs (3.0.116):
- hermes-engine
- RCTRequired
- RCTTypeSafety
@@ -137,7 +137,7 @@ PODS:
- ReactCommon/turbomodule/core
- ReactNativeDependencies
- Yoga
- - CloudKitModule (3.0.101):
+ - CloudKitModule (3.0.116):
- hermes-engine
- NitroModules
- RCTRequired
@@ -165,7 +165,7 @@ PODS:
- CocoaLumberjack/Core (3.9.1)
- CocoaLumberjack/Swift (3.9.1):
- CocoaLumberjack/Core
- - DnsLookup (3.0.101):
+ - DnsLookup (3.0.116):
- hermes-engine
- RCTRequired
- RCTTypeSafety
@@ -194,7 +194,7 @@ PODS:
- hermes-engine (250829098.0.16):
- hermes-engine/Pre-built (= 250829098.0.16)
- hermes-engine/Pre-built (250829098.0.16)
- - KeychainModule (3.0.101):
+ - KeychainModule (3.0.116):
- hermes-engine
- NitroModules
- RCTRequired
@@ -234,7 +234,7 @@ PODS:
- MMKV (2.4.0):
- MMKVCore (~> 2.4.0)
- MMKVCore (2.4.0)
- - NetworkInfo (3.0.101):
+ - NetworkInfo (3.0.116):
- hermes-engine
- RCTRequired
- RCTTypeSafety
@@ -304,7 +304,7 @@ PODS:
- ReactCommon/turbomodule/core
- ReactNativeDependencies
- Yoga
- - OneKeyImage (3.0.101):
+ - OneKeyImage (3.0.116):
- hermes-engine
- NitroModules
- RCTRequired
@@ -330,11 +330,11 @@ PODS:
- SDWebImage (~> 5.21.7)
- SDWebImageSVGCoder (~> 1.7.0)
- SDWebImageWebPCoder (~> 0.14.6)
- - Skeleton (= 3.0.101)
+ - Skeleton (= 3.0.116)
- Yoga
- - OneKeyTextInput (3.0.101):
+ - OneKeyTextInput (3.0.116):
- React-Core
- - Pbkdf2 (3.0.101):
+ - Pbkdf2 (3.0.116):
- hermes-engine
- RCTRequired
- RCTTypeSafety
@@ -356,7 +356,7 @@ PODS:
- ReactCommon/turbomodule/core
- ReactNativeDependencies
- Yoga
- - PerpDepthBar (3.0.101):
+ - PerpDepthBar (3.0.116):
- hermes-engine
- NitroModules
- RCTRequired
@@ -380,7 +380,7 @@ PODS:
- ReactCommon/turbomodule/core
- ReactNativeDependencies
- Yoga
- - Ping (3.0.101):
+ - Ping (3.0.116):
- hermes-engine
- RCTRequired
- RCTTypeSafety
@@ -1825,10 +1825,10 @@ PODS:
- ReactCommon/turbomodule/core
- ReactNativeDependencies
- Yoga
- - react-native-native-list (3.0.101):
+ - react-native-native-list (3.0.116):
- hermes-engine
- NitroModules
- - OneKeyImage (= 3.0.101)
+ - OneKeyImage (= 3.0.116)
- RCTRequired
- RCTTypeSafety
- React-callinvoker
@@ -1850,7 +1850,7 @@ PODS:
- ReactCommon/turbomodule/core
- ReactNativeDependencies
- Yoga
- - react-native-pager-view (3.0.101):
+ - react-native-pager-view (3.0.116):
- hermes-engine
- RCTRequired
- RCTTypeSafety
@@ -1941,7 +1941,7 @@ PODS:
- ReactCommon/turbomodule/core
- ReactNativeDependencies
- Yoga
- - react-native-tab-view (3.0.101):
+ - react-native-tab-view (3.0.116):
- hermes-engine
- RCTRequired
- RCTTypeSafety
@@ -1953,7 +1953,7 @@ PODS:
- React-graphics
- React-ImageManager
- React-jsi
- - react-native-tab-view/common (= 3.0.101)
+ - react-native-tab-view/common (= 3.0.116)
- React-NativeModulesApple
- React-RCTFabric
- React-renderercss
@@ -1964,7 +1964,7 @@ PODS:
- ReactCommon/turbomodule/core
- ReactNativeDependencies
- Yoga
- - react-native-tab-view/common (3.0.101):
+ - react-native-tab-view/common (3.0.116):
- hermes-engine
- RCTRequired
- RCTTypeSafety
@@ -2382,7 +2382,7 @@ PODS:
- React-perflogger (= 0.86.2)
- React-utils (= 0.86.2)
- ReactNativeDependencies
- - ReactNativeAppUpdate (3.0.101):
+ - ReactNativeAppUpdate (3.0.116):
- hermes-engine
- NitroModules
- RCTRequired
@@ -2407,7 +2407,7 @@ PODS:
- ReactNativeDependencies
- ReactNativeNativeLogger
- Yoga
- - ReactNativeBundleCrypto (3.0.101):
+ - ReactNativeBundleCrypto (3.0.116):
- hermes-engine
- NitroModules
- RCTRequired
@@ -2432,7 +2432,7 @@ PODS:
- ReactNativeDependencies
- ReactNativeNativeLogger
- Yoga
- - ReactNativeBundleUpdate (3.0.101):
+ - ReactNativeBundleUpdate (3.0.116):
- hermes-engine
- MMKV (= 2.4.0)
- NitroModules
@@ -2461,7 +2461,7 @@ PODS:
- ReactNativeRangeDownloader
- SSZipArchive (>= 2.5.4)
- Yoga
- - ReactNativeCheckBiometricAuthChanged (3.0.101):
+ - ReactNativeCheckBiometricAuthChanged (3.0.116):
- hermes-engine
- NitroModules
- RCTRequired
@@ -2487,7 +2487,7 @@ PODS:
- ReactNativeNativeLogger
- Yoga
- ReactNativeDependencies (0.86.2)
- - ReactNativeDeviceUtils (3.0.101):
+ - ReactNativeDeviceUtils (3.0.116):
- hermes-engine
- NitroModules
- RCTRequired
@@ -2512,7 +2512,7 @@ PODS:
- ReactNativeDependencies
- ReactNativeNativeLogger
- Yoga
- - ReactNativeGetRandomValues (3.0.101):
+ - ReactNativeGetRandomValues (3.0.116):
- hermes-engine
- NitroModules
- RCTRequired
@@ -2537,7 +2537,7 @@ PODS:
- ReactNativeDependencies
- ReactNativeNativeLogger
- Yoga
- - ReactNativeLiteCard (3.0.101):
+ - ReactNativeLiteCard (3.0.116):
- hermes-engine
- RCTRequired
- RCTTypeSafety
@@ -2560,7 +2560,7 @@ PODS:
- ReactNativeDependencies
- ReactNativeNativeLogger
- Yoga
- - ReactNativeNativeLogger (3.0.101):
+ - ReactNativeNativeLogger (3.0.116):
- CocoaLumberjack/Swift (~> 3.8)
- hermes-engine
- NitroModules
@@ -2585,7 +2585,7 @@ PODS:
- ReactCommon/turbomodule/core
- ReactNativeDependencies
- Yoga
- - ReactNativePerfMemory (3.0.101):
+ - ReactNativePerfMemory (3.0.116):
- hermes-engine
- NitroModules
- RCTRequired
@@ -2610,7 +2610,7 @@ PODS:
- ReactNativeDependencies
- ReactNativeNativeLogger
- Yoga
- - ReactNativePerfStats (3.0.101):
+ - ReactNativePerfStats (3.0.116):
- hermes-engine
- NitroModules
- RCTRequired
@@ -2635,7 +2635,7 @@ PODS:
- ReactNativeDependencies
- ReactNativeNativeLogger
- Yoga
- - ReactNativeRangeDownloader (3.0.101):
+ - ReactNativeRangeDownloader (3.0.116):
- hermes-engine
- NitroModules
- RCTRequired
@@ -2661,7 +2661,7 @@ PODS:
- ReactNativeNativeLogger
- SSZipArchive (= 2.5.5)
- Yoga
- - ReactNativeSplashScreen (3.0.101):
+ - ReactNativeSplashScreen (3.0.116):
- hermes-engine
- NitroModules
- RCTRequired
@@ -2686,7 +2686,7 @@ PODS:
- ReactNativeDependencies
- ReactNativeNativeLogger
- Yoga
- - ReactNativeZipArchive (3.0.101):
+ - ReactNativeZipArchive (3.0.116):
- hermes-engine
- NitroModules
- RCTRequired
@@ -2757,7 +2757,7 @@ PODS:
- ReactCommon/turbomodule/core
- ReactNativeDependencies
- Yoga
- - ScrollGuard (3.0.101):
+ - ScrollGuard (3.0.116):
- hermes-engine
- NitroModules
- RCTRequired
@@ -2789,7 +2789,7 @@ PODS:
- SDWebImageWebPCoder (0.14.6):
- libwebp (~> 1.0)
- SDWebImage/Core (~> 5.17)
- - SegmentSlider (3.0.101):
+ - SegmentSlider (3.0.116):
- hermes-engine
- NitroModules
- RCTRequired
@@ -2813,7 +2813,7 @@ PODS:
- ReactCommon/turbomodule/core
- ReactNativeDependencies
- Yoga
- - Skeleton (3.0.101):
+ - Skeleton (3.0.116):
- hermes-engine
- NitroModules
- RCTRequired
@@ -2837,7 +2837,7 @@ PODS:
- ReactCommon/turbomodule/core
- ReactNativeDependencies
- Yoga
- - SniConnect (3.0.101):
+ - SniConnect (3.0.116):
- EMASCurl (= 1.5.5)
- hermes-engine
- RCTRequired
@@ -2861,7 +2861,7 @@ PODS:
- ReactCommon/turbomodule/core
- ReactNativeDependencies
- Yoga
- - SplitBundleLoader (3.0.101):
+ - SplitBundleLoader (3.0.116):
- hermes-engine
- RCTRequired
- RCTTypeSafety
@@ -2885,7 +2885,7 @@ PODS:
- ReactNativeNativeLogger
- Yoga
- SSZipArchive (2.5.5)
- - TcpSocket (3.0.101):
+ - TcpSocket (3.0.116):
- hermes-engine
- RCTRequired
- RCTTypeSafety
@@ -3281,30 +3281,30 @@ EXTERNAL SOURCES:
:path: "../../../node_modules/react-native/ReactCommon/yoga"
SPEC CHECKSUMS:
- AesCrypto: 2c2da174a7d787e1eb75c614de586d39a9c84094
- AsyncStorage: 2e53f3878e94679d3a917ffaa3a49e6e4e056569
- AutoSizeInput: 9968117e943b8db72ae4faa054ab495779ca423b
- BackgroundThread: 0f6bb994b2036a63060e3b464dd2d5fb8b55fd96
- ChartWebview: cdaf96dd97ed9343e66833c4ec435d144dbc43a3
- CloudFs: 6fea6c79d4b01e4a533cfe46c798dc1b0fb3e4f7
- CloudKitModule: f350bed53a1326b18719bc9c497ea5a47a7ea8dc
+ AesCrypto: 24dd5b1d850add715f9bce25305a740a36c72db2
+ AsyncStorage: ec7d495bf4fdc739e6e5a857fee3a21340fbcc7b
+ AutoSizeInput: ddd21d683d14e45652782cef61d55eca996411b3
+ BackgroundThread: 7e5ae29b10106ed3cd483efeda7a6fef8336cdf9
+ ChartWebview: 3f6c75a0362d04223bbbd7c078c65fc44ff8ebfe
+ CloudFs: c8e4dd6c81a0a9da2fe9b39bc034d40e2f02f406
+ CloudKitModule: 16e9d0dadf71c1e2e397c641402e26a4beeeef87
CocoaLumberjack: e4ba3b414dfca8c1916c6303d37f63b3a95134c6
- DnsLookup: 6c97a033f29395a521c2da7ca375180e5c6cfd2e
+ DnsLookup: 33be7457f302f568fd2dd026cfc8e0f5970c0468
EMASCurl: d75387e1ce9dec1a75cd25cb33c7a7e7bf21997f
FBLazyVector: 3c3be9a019176b5699455f7f66c5444b78a411c6
- hermes-engine: 4d587fc02ec04695c2700228314bcc1d62f35932
- KeychainModule: 4d241e128f09bcf80c3b2045bdb48535bdec3c6e
+ hermes-engine: 56e32d0a992f46124883b1307b5258ebb5fad674
+ KeychainModule: 330d73bda7786e409780bce78d25875d9390ab5b
libwebp: af5937a13536ef73f3784d69cc342b98961acf33
MMKV: 86859fdfa2b0b21db1fd6e48788474a6416a2c77
MMKVCore: 3d16ce9f7d411e135020915fde98a056859a1efa
- NetworkInfo: 0cb387b9a2620d7fc9d170ab7342f613c27ae45a
+ NetworkInfo: a3f9ebb899d70b4bbdb5676e53f88811118512ab
NitroMmkv: 85a251e15c39d7c95fe58cf40786fa126b8d143c
NitroModules: cda827b31eb05c1bfcc0e2bbd9b647a69c6c314f
- OneKeyImage: 6fd134e80db0de763ce178e900ac89893aee5a37
- OneKeyTextInput: abd60c45815729f8f36175bbe923fe3848bbad56
- Pbkdf2: 4c2ba35fa0eefcaadbc7b694e4f22072cc01f35e
- PerpDepthBar: 2f8b902840485923c0025a1fb2b167a93976cd59
- Ping: 0dd2034527ad9ee0a7319665c8daf50f2c38f61f
+ OneKeyImage: ce0e74ccb60726e03be1f45fd46111e2909d8a2e
+ OneKeyTextInput: 0da37cc6dca11530af2c97f873fadb39b7d94fa2
+ Pbkdf2: cf01d070d754c64fbb8ddf2472fa8ccce6326e1a
+ PerpDepthBar: 3ee93b6a61a179b0c73e867d522fb71240bb8f9b
+ Ping: 0fb0bfc573d78d35f6320d67ed9800cdff3c17cd
RCTDeprecation: bccb6545c26db881ecddfd83a3f9ea82aba1605f
RCTRequired: b2f74764d596fc0051f00fee94b49bf41a6f7f5a
RCTSwiftUI: c6d6a31b849b9dfa64c33b55dc91ac15dd55774c
@@ -3342,10 +3342,10 @@ SPEC CHECKSUMS:
React-Mapbuffer: 44dd007f917e2396afa0e70bbd70273237d93fde
React-microtasksnativemodule: f413ee411341fb3c34d20e85e9f6f524921fab15
React-mutationobservernativemodule: 58f6d2adf7d98e72b241608dfa2ddce414d2a4e7
- react-native-native-list: dcfde8426aad575ac848d5d97c9390be576d703c
- react-native-pager-view: 77430f4cc831beb45c61bfd9f0510cb99c916fcc
+ react-native-native-list: f4afedde8718e6bcfeaec1a962e2e411255d3574
+ react-native-pager-view: 663f01948535f3c74b22e5623c68db0425b13e96
react-native-safe-area-context: 91a90d98c310adcc90a511e5aeb6046d7c19d885
- react-native-tab-view: 7c124a0a72950edd5ec852c808cd95776844a6ab
+ react-native-tab-view: 5909314c78067dde80de50bba9335722fb36f86c
React-NativeModulesApple: 167e532fb9bae30f3c66636b8ee0092bab263667
React-networking: 89f6b69755a3176f30e56ba1ba8e214b1518ecfb
React-oscompat: db6675ddaef3bddd1b41533627f3d26ec710c05f
@@ -3380,31 +3380,31 @@ SPEC CHECKSUMS:
ReactAppDependencyProvider: 0e13d430eadac8a2ef18515a860d5c59df05b475
ReactCodegen: 01cbf7a08c30e8b71ad71489bb56b5bed195fa5e
ReactCommon: 9002f006f571256348994183f7d4387aa7cf84e8
- ReactNativeAppUpdate: 32c797e16a24930817fab6e8d27587d1913a303b
- ReactNativeBundleCrypto: 34c186aa0cd889625552e6f7fc9a09e798d0758a
- ReactNativeBundleUpdate: 2f9df20af58e1caf543447d40860e5b9e80490c2
- ReactNativeCheckBiometricAuthChanged: f39e91f487f8ddbfb60619278d244da54b64eaf7
+ ReactNativeAppUpdate: 76d4bf579b8c90d8bb3ee31b8791325171907607
+ ReactNativeBundleCrypto: 52005dd3e3a6fc3358bb8e7faccdf091f875bcda
+ ReactNativeBundleUpdate: 26919b82ffea99e467aed7abd091f5c4b87c820e
+ ReactNativeCheckBiometricAuthChanged: 0dcdc1b9fce2cda1b90f03aff7e0659b6c420c6d
ReactNativeDependencies: 2bd6854ade79bf1b60586d1ab7813a389df1b6bf
- ReactNativeDeviceUtils: e89c58a4e64a362e53fa71e906fa7d54b0ca0f21
- ReactNativeGetRandomValues: dad2c1fb4485fed3a24cecea649ffa9aab5b34c4
- ReactNativeLiteCard: 83ccd2b80ba3f2feba5b1eb8bb33f4e5b41b6f39
- ReactNativeNativeLogger: a36b800c8346cdf794e62b2513812649e628967a
- ReactNativePerfMemory: 1c9bf5b4f6e3d9939f909d96139a366a901ec66a
- ReactNativePerfStats: 84e293884d23aff27d90a1d277216df9e489c011
- ReactNativeRangeDownloader: 57e08f89da7e03c05ed390f1e21b0239e9e682e5
- ReactNativeSplashScreen: b93b81381ccdc8613487fe4d6f66291f566ce22b
- ReactNativeZipArchive: 5f0329a0a782c4acc66a26f9a99f6aeb71386a1c
+ ReactNativeDeviceUtils: b5bea91d77c2c8b03783b1413a90fce8025b7bfb
+ ReactNativeGetRandomValues: e4d8c0223825aee1d5b31733b0aee5219a841adc
+ ReactNativeLiteCard: 390f3b44af84ab9801a2e9aad87d1751e59be777
+ ReactNativeNativeLogger: f222216fb353d379330cd05875de79b44f1237cf
+ ReactNativePerfMemory: a1ea4577ad2a843f5e003d633aa025a7c6e3eb87
+ ReactNativePerfStats: 8215e062b7f142b30677a03863ba309c58bf24d1
+ ReactNativeRangeDownloader: dab3d0299dd790262987c512ee50dfb2423f0fdb
+ ReactNativeSplashScreen: f6e70a7a744d847fc033def537737b313fb94931
+ ReactNativeZipArchive: d52ed5cbc374099ec5f8dbd780c4a634bcc10067
RNScreens: 01b065ded2dfe7987bcce770ff3a196be417ff41
- ScrollGuard: a08ba705421fdbcac9741de209516ebf7b557129
+ ScrollGuard: 6c7802eb8c2eae7d3594ff18d87149a34545f8e3
SDWebImage: e9fc87c1aab89a8ab1bbd74eba378c6f53be8abf
SDWebImageSVGCoder: 15a300a97ec1c8ac958f009c02220ac0402e936c
SDWebImageWebPCoder: e38c0a70396191361d60c092933e22c20d5b1380
- SegmentSlider: 90f4630631fdd5291c82468bed0f755eb110e61e
- Skeleton: 1dc13ee98025f2ed0c1bb9070ec00df5d4a30d96
- SniConnect: 50d1572043b75f6c048ea63110dd868764b29649
- SplitBundleLoader: c40652ad3c49dc0984285ad61d1beae011fba163
+ SegmentSlider: 1c1cb079b77143019bbdf60d9dddccdc194a0f8a
+ Skeleton: 70270d1209c9eb0f7046f71bbd752589d74cbf56
+ SniConnect: b787ef81aef8a9ad081d0c502230a9ad0940ea9a
+ SplitBundleLoader: bcd7a486fbbcf5df4563692137de0e5019d587b0
SSZipArchive: c69881e8ac5521f0e622291387add5f60f30f3c4
- TcpSocket: 0f2951f604f30590ab77aa324c02c7382b756d5a
+ TcpSocket: 1f49789925bf9f06c9478e275fa9e161429b60d3
Yoga: 9891cfb1c680f64de9c41b09e7453dea33454d2b
PODFILE CHECKSUM: 7a691f3433a6d77193e9da2e90067502224c4f6f
diff --git a/example/react-native/ios/example/ReactNativeDelegate.mm b/example/react-native/ios/example/ReactNativeDelegate.mm
index 4f6e82ee0..79458766a 100644
--- a/example/react-native/ios/example/ReactNativeDelegate.mm
+++ b/example/react-native/ios/example/ReactNativeDelegate.mm
@@ -2,9 +2,25 @@
#import
#import
#import
+#import
@implementation ReactNativeDelegate
+- (instancetype)init
+{
+ self = [super init];
+ if (self) {
+ // Market's RN header must resolve the same fonts as its native rows on first layout.
+ NSURL *resourceURL = [[NSBundle mainBundle] URLForResource:@"NativeListResources" withExtension:@"bundle"];
+ NSBundle *resources = resourceURL ? [NSBundle bundleWithURL:resourceURL] : nil;
+ for (NSString *weight in @[@"Regular", @"Medium", @"SemiBold", @"Bold"]) {
+ NSURL *fontURL = [resources URLForResource:[@"Roobert-" stringByAppendingString:weight] withExtension:@"ttf"];
+ if (fontURL) CTFontManagerRegisterFontsForURL((__bridge CFURLRef)fontURL, kCTFontManagerScopeProcess, nil);
+ }
+ }
+ return self;
+}
+
- (NSURL *)sourceURLForBridge:(RCTBridge *)bridge
{
return [self bundleURL];
@@ -25,7 +41,7 @@ - (void)hostDidStart:(RCTHost *)host
[BackgroundThreadManager installSharedBridgeInMainRuntime:host];
#if DEBUG
- NSString *bgURL = @"http://localhost:8082/background.bundle?platform=ios&dev=true&lazy=false&minify=false&inlineSourceMap=false&modulesOnly=false&runModule=true";
+ NSString *bgURL = [[[RCTBundleURLProvider sharedSettings] jsBundleURLForBundleRoot:@"background"] absoluteString];
#else
NSString *bgURL = @"background.bundle";
#endif
diff --git a/example/react-native/pages/MarketNativePagerExamplePage.tsx b/example/react-native/pages/MarketNativePagerExamplePage.tsx
new file mode 100644
index 000000000..30b7b1b1e
--- /dev/null
+++ b/example/react-native/pages/MarketNativePagerExamplePage.tsx
@@ -0,0 +1,3340 @@
+import { useCallback, useEffect, useMemo, useRef, useState } from 'react';
+import {
+ FlatList,
+ Image,
+ KeyboardAvoidingView,
+ Modal,
+ Platform,
+ Pressable,
+ ScrollView,
+ StatusBar,
+ StyleSheet,
+ Text,
+ TextInput,
+ View,
+ useWindowDimensions,
+ type LayoutChangeEvent,
+} from 'react-native';
+import { useNavigation, type NavigationProp } from '@react-navigation/native';
+import { useSafeAreaInsets } from 'react-native-safe-area-context';
+import {
+ NativeList,
+ type ActionAnchorInvalidatedEvent,
+ type NativeListActionAnchor,
+ type NativeListRef,
+ type RowActionEvent,
+ type VisibleRangeChangedEvent,
+} from '@onekeyfe/react-native-native-list';
+import {
+ CollapsiblePagerView,
+ type CollapsiblePagerDiagnostics,
+ type CollapsiblePagerMountState,
+ type CollapsiblePagerViewOnPageSelectedEvent,
+} from '@onekeyfe/react-native-pager-view';
+
+import {
+ MarketApiError,
+ defaultPerpsCategory,
+ fetchMarketBanners,
+ fetchMarketConfig,
+ fetchMarketPage,
+ fetchUSMarketStatus,
+ getMarketRequestDiagnostics,
+} from './marketNativePagerApi';
+import {
+ applyMarketScenario,
+ buildMarketPages,
+ categoriesForPage,
+ filterMarketSearch,
+ filterWatchlist,
+ replayItemsForPage,
+ isOndoUSMarketStock,
+ resolveUSMarketStatusVariant,
+ type IFetchUSMarketStatusResult,
+} from './marketNativePagerData';
+import {
+ buildMarketQuotePatches,
+ buildMarketSnapshot,
+ shouldClearMarketRowsOnRequestError,
+ type MarketThemeName,
+} from './marketNativePagerRows';
+import { MARKET_REPLAY_SNAPSHOT } from './marketNativePagerSnapshot';
+import {
+ MARKET_SOURCE_ICONS,
+ MARKET_SOURCE_COPY,
+ MARKET_SOURCE_NETWORK_LOGOS,
+ MARKET_SOURCE_STATUS_CHIPS,
+} from './marketNativePagerAssets';
+import { MarketImage } from './marketNativePagerImage';
+
+import type {
+ MarketAsset,
+ MarketBanner,
+ MarketConfig,
+ MarketDataMode,
+ MarketPageDescriptor,
+ MarketScenario,
+ MarketTimeRange,
+} from './marketNativePagerTypes';
+
+type MarketLocale = 'zh-CN' | 'en-US';
+
+type PageDiagnostics = Readonly<{
+ requestCount: number;
+ quotePatchCount: number;
+ structuralUpdateCount: number;
+ imageBindCount: number;
+ visibleRange: string;
+ sourceUrl: string;
+ fetchedAt: string;
+ note: string;
+}>;
+
+const EMPTY_PAGE_DIAGNOSTICS: PageDiagnostics = {
+ requestCount: 0,
+ quotePatchCount: 0,
+ structuralUpdateCount: 0,
+ imageBindCount: 0,
+ visibleRange: '--',
+ sourceUrl: '',
+ fetchedAt: '',
+ note: '',
+};
+
+const DEFAULT_WATCHLIST_KEYS = [
+ 'btc--0:',
+ 'evm--56:0x390a684ef9cade28a7ad0dfa61ab1eb3842618c4',
+ 'perps:BTC',
+ 'evm--4663:0x39dbed3a2bd333467115de45665cc57f813c4571',
+] as const;
+const FULL_WATCHLIST_KEYS = [
+ ...new Set([
+ ...DEFAULT_WATCHLIST_KEYS,
+ ...Object.values(
+ MARKET_REPLAY_SNAPSHOT.spotQueries ?? MARKET_REPLAY_SNAPSHOT.spot,
+ )
+ .flat()
+ .map(item => item.key),
+ ...Object.values(MARKET_REPLAY_SNAPSHOT.perps)
+ .flat()
+ .map(item => item.key),
+ ]),
+];
+
+const COPY = {
+ 'zh-CN': {
+ search: '搜索任何内容',
+ market: '市场',
+ defi: 'DeFi',
+ browser: '浏览器',
+ allNetworks: '全部网络',
+ nameVolume: '名称 / 交易额',
+ price: '价格',
+ change: '涨跌',
+ edit: '编辑自选',
+ done: '完成',
+ pageBoundary: '示例保留详情入口参数,但不进入钱包、交易或签名流程。',
+ noMatch: '没有匹配行情',
+ retry: '重试',
+ pin: '置顶',
+ remove: '移出自选',
+ cancel: '取消',
+ unavailable: '该接口暂不可用(404)',
+ },
+ 'en-US': {
+ search: 'Search anything',
+ market: 'Market',
+ defi: 'DeFi',
+ browser: 'Browser',
+ allNetworks: 'All networks',
+ nameVolume: 'Name / Turnover',
+ price: 'Price',
+ change: 'Change',
+ edit: 'Edit watchlist',
+ done: 'Done',
+ pageBoundary:
+ 'The example preserves detail parameters but does not enter wallet, trade, or signing flows.',
+ noMatch: 'No matching quotes',
+ retry: 'Retry',
+ pin: 'Pin to top',
+ remove: 'Remove from favorites',
+ cancel: 'Cancel',
+ unavailable: 'This endpoint is unavailable (404)',
+ },
+} as const;
+
+function sameKeys(left: readonly MarketAsset[], right: readonly MarketAsset[]) {
+ return (
+ left.length === right.length &&
+ left.every((item, index) => item.key === right[index]?.key)
+ );
+}
+
+function mergeByKey(
+ existing: readonly MarketAsset[],
+ incoming: readonly MarketAsset[],
+) {
+ const seen = new Set(existing.map(item => item.key));
+ return [...existing, ...incoming.filter(item => !seen.has(item.key))];
+}
+
+function MarketIcon({
+ name,
+ theme,
+ size = 24,
+ subdued = true,
+}: {
+ name: keyof typeof MARKET_SOURCE_ICONS;
+ theme: MarketThemeName;
+ size?: number;
+ subdued?: boolean;
+}) {
+ const source = MARKET_SOURCE_ICONS[name][theme];
+ return (
+
+ );
+}
+
+function BannerCard({
+ banner,
+ theme,
+ onPress,
+}: {
+ banner: MarketBanner;
+ theme: MarketThemeName;
+ onPress: () => void;
+}) {
+ // Theme tokens from app-monorepo's tamagui.config.ts and colors/primitive.
+ const colors =
+ theme === 'dark'
+ ? {
+ 'bg/info-subdued': '#1166FB18',
+ 'bg/success-subdued': '#29F99D0B',
+ 'bg/caution-subdued': '#F9B4000B',
+ 'bg/critical-subdued': '#F22F3E11',
+ 'text/success': '#46FEA5D4',
+ 'text/critical': '#FF9592',
+ 'text/info': '#70B8FF',
+ 'text/caution': '#FEE949F5',
+ }
+ : {
+ 'bg/info-subdued': '#008CFF0B',
+ 'bg/success-subdued': '#00A32F0B',
+ 'bg/caution-subdued': '#F4DD0016',
+ 'bg/critical-subdued': '#FF000008',
+ 'text/success': '#00713FDE',
+ 'text/critical': '#C40006D3',
+ 'text/info': '#006DCBF2',
+ 'text/caution': '#9E6C00',
+ };
+ const background =
+ colors[banner.backgroundColor as keyof typeof colors] ??
+ (theme === 'dark' ? '#191919' : '#F9F9F9');
+
+ return (
+ [
+ styles.bannerCard,
+ {
+ backgroundColor: background,
+ borderColor: theme === 'dark' ? '#FFFFFF12' : '#0000000F',
+ },
+ pressed && styles.pressed,
+ ]}
+ >
+
+
+
+ {banner.title}
+
+ {banner.type === 'perps' ? (
+
+ 10x
+
+ ) : null}
+
+ {banner.description ? (
+
+ {banner.description.text}
+
+ ) : null}
+
+
+ {banner.tokenLogos.slice(0, 3).map((uri, index) => (
+ 0 && styles.bannerLogoOverlap,
+ ]}
+ >
+
+
+ ))}
+
+
+ );
+}
+
+function MarketHeader({
+ banners,
+ theme,
+ tall,
+ onBannerPress,
+ onLayout,
+}: {
+ banners: readonly MarketBanner[];
+ theme: MarketThemeName;
+ tall: boolean;
+ onBannerPress: (banner: MarketBanner) => void;
+ onLayout: (event: LayoutChangeEvent) => void;
+}) {
+ const dark = theme === 'dark';
+ return (
+
+
+ {banners.map(banner => (
+ onBannerPress(banner)}
+ />
+ ))}
+
+ {tall ? (
+
+
+ Dynamic header height probe · 64
+
+
+ ) : null}
+
+ );
+}
+
+function FilterChip({
+ label,
+ selected,
+ theme,
+ testID,
+ onPress,
+}: {
+ label: string;
+ selected: boolean;
+ theme: MarketThemeName;
+ testID: string;
+ onPress: () => void;
+}) {
+ const dark = theme === 'dark';
+ return (
+ [
+ styles.filterChip,
+ selected && (dark ? styles.darkChipSelected : styles.lightChipSelected),
+ pressed && styles.pressed,
+ ]}
+ >
+
+ {label}
+
+
+ );
+}
+
+function MarketStickyHeader({
+ pages,
+ activeIndex,
+ activePage,
+ config,
+ theme,
+ locale,
+ networkId,
+ timeRange,
+ watchlistFilter,
+ stockCategory,
+ perpsCategory,
+ watchlistEmpty,
+ onSelectPage,
+ onNetworkChange,
+ onTimeRangeChange,
+ onWatchlistFilterChange,
+ onStockCategoryChange,
+ onPerpsCategoryChange,
+ onToggleWatchlistEdit,
+ onToggleDiagnostics,
+ onLayout,
+}: {
+ pages: readonly MarketPageDescriptor[];
+ activeIndex: number;
+ activePage: MarketPageDescriptor;
+ config: MarketConfig;
+ theme: MarketThemeName;
+ locale: MarketLocale;
+ networkId: string;
+ timeRange: MarketTimeRange;
+ watchlistFilter: string;
+ stockCategory: string;
+ perpsCategory: string;
+ watchlistEmpty: boolean;
+ onSelectPage: (index: number) => void;
+ onNetworkChange: (value: string) => void;
+ onTimeRangeChange: (value: MarketTimeRange) => void;
+ onWatchlistFilterChange: (value: string) => void;
+ onStockCategoryChange: (value: string) => void;
+ onPerpsCategoryChange: (value: string) => void;
+ onToggleWatchlistEdit: () => void;
+ onToggleDiagnostics: () => void;
+ onLayout: (event: LayoutChangeEvent) => void;
+}) {
+ const dark = theme === 'dark';
+ const copy = COPY[locale];
+ const categoryFilters = categoriesForPage(activePage, config, locale);
+ const [filterMenu, setFilterMenu] = useState<'network' | 'time'>();
+ const [networkSearch, setNetworkSearch] = useState('');
+ const [networkSearchFocused, setNetworkSearchFocused] = useState(false);
+ const tabsRef = useRef(null);
+ const tabsWidthRef = useRef(0);
+ const tabLayoutsRef = useRef(new Map());
+ const keepActiveTabVisible = useCallback(() => {
+ const layout = tabLayoutsRef.current.get(activeIndex);
+ if (!layout || !tabsWidthRef.current) return;
+ const position =
+ activeIndex === 0 ? 0 : activeIndex === pages.length - 1 ? 1 : 0.5;
+ tabsRef.current?.scrollTo({
+ x:
+ Platform.OS === 'web'
+ ? Math.max(0, layout.x + layout.width - tabsWidthRef.current)
+ : activeIndex === 0
+ ? 0
+ : Math.max(
+ 0,
+ // Source FlashList cells include a 20-point leading margin;
+ // its scroll viewport excludes the 16-point trailing padding.
+ layout.x -
+ 20 -
+ (tabsWidthRef.current - 16 - layout.width - 20) * position,
+ ),
+ animated: true,
+ });
+ }, [activeIndex, pages.length]);
+ useEffect(keepActiveTabVisible, [keepActiveTabVisible]);
+ const { bottom } = useSafeAreaInsets();
+ useEffect(() => {
+ setNetworkSearch('');
+ setNetworkSearchFocused(false);
+ }, [filterMenu]);
+ const networkOptions = [
+ { id: '', name: copy.allNetworks, logoUrl: '' },
+ ...config.networks.map(network => ({
+ id: network.networkId,
+ name: network.name,
+ logoUrl: network.logoUrl,
+ })),
+ ].filter(network =>
+ `${network.name} ${network.id}`
+ .toLowerCase()
+ .includes(networkSearch.trim().toLowerCase()),
+ );
+ const selectedCategory =
+ activePage.kind === 'watchlist'
+ ? watchlistFilter
+ : activePage.kind === 'perps'
+ ? perpsCategory
+ : stockCategory;
+ const selectCategory =
+ activePage.kind === 'watchlist'
+ ? onWatchlistFilterChange
+ : activePage.kind === 'perps'
+ ? onPerpsCategoryChange
+ : onStockCategoryChange;
+
+ return (
+
+ setFilterMenu(undefined)}
+ >
+
+ setFilterMenu(undefined)}
+ />
+
+ {filterMenu === 'network' ? (
+ <>
+
+
+ {locale === 'en-US' ? 'Select network' : '选择网络'}
+
+ setFilterMenu(undefined)}
+ style={[
+ styles.filterClose,
+ { backgroundColor: dark ? '#FFFFFF12' : '#0000000F' },
+ ]}
+ >
+
+
+
+
+
+ setNetworkSearchFocused(true)}
+ onBlur={() => setNetworkSearchFocused(false)}
+ autoCorrect={false}
+ autoCapitalize="none"
+ style={[
+ styles.searchInput,
+ { height: 36 },
+ dark ? styles.textDark : styles.textLight,
+ ]}
+ />
+ {networkSearch ? (
+ setNetworkSearch('')}
+ >
+
+
+ ) : null}
+
+ >
+ ) : null}
+
+ {(filterMenu === 'network'
+ ? networkOptions
+ : ['5m', '1h', '4h', '24h'].map(value => ({
+ id: value,
+ name: value,
+ logoUrl: '',
+ }))
+ ).map(option => {
+ const selected =
+ option.id ===
+ (filterMenu === 'network' ? networkId : timeRange);
+ return (
+ {
+ if (filterMenu === 'network') onNetworkChange(option.id);
+ else onTimeRangeChange(option.id as MarketTimeRange);
+ setFilterMenu(undefined);
+ }}
+ style={[
+ filterMenu === 'network'
+ ? styles.filterOption
+ : styles.timeOption,
+ filterMenu === 'time' &&
+ selected &&
+ (dark
+ ? styles.darkChipSelected
+ : styles.lightChipSelected),
+ ]}
+ >
+ {filterMenu === 'network' ? (
+ option.logoUrl ? (
+
+ ) : (
+
+ )
+ ) : null}
+
+ {option.name}
+
+ {filterMenu === 'network' && selected ? (
+
+ ) : null}
+
+ );
+ })}
+ {filterMenu === 'network' && networkOptions.length === 0 ? (
+
+
+
+ {locale === 'en-US' ? 'No results' : '无结果'}
+
+
+ ) : null}
+
+
+
+
+ {
+ tabsWidthRef.current = event.nativeEvent.layout.width;
+ keepActiveTabVisible();
+ }}
+ onContentSizeChange={keepActiveTabVisible}
+ testID="market-category-tabs"
+ >
+ {pages.map((page, index) => (
+ onSelectPage(index)}
+ onLongPress={onToggleDiagnostics}
+ style={styles.marketTabButton}
+ onLayout={event => {
+ tabLayoutsRef.current.set(index, event.nativeEvent.layout);
+ keepActiveTabVisible();
+ }}
+ >
+
+ {page.name}
+
+ {index === activeIndex ? (
+
+ ) : null}
+
+ ))}
+
+ {Platform.OS !== 'web' ? (
+
+ ) : null}
+
+
+
+ {activePage.kind === 'spot' && activePage.categoryId !== 'stocks' ? (
+ <>
+ item.networkId === networkId)
+ ?.name
+ : copy.allNetworks
+ }
+ style={styles.compactDropdown}
+ testID="market-network-filter"
+ onPress={() => setFilterMenu('network')}
+ >
+ {networkId &&
+ config.networks.find(item => item.networkId === networkId)
+ ?.logoUrl ? (
+ item.networkId === networkId,
+ )!.logoUrl,
+ }}
+ style={{ width: 18, height: 18, borderRadius: 9 }}
+ />
+ ) : (
+
+ )}
+
+ {networkId
+ ? config.networks.find(item => item.networkId === networkId)
+ ?.name || networkId
+ : locale === 'en-US'
+ ? 'All'
+ : '全部'}
+
+
+
+
+ setFilterMenu('time')}
+ >
+
+ {timeRange}
+
+
+
+ >
+ ) : (
+
+ {categoryFilters.map(category => (
+ selectCategory(category.id)}
+ />
+ ))}
+
+ )}
+ {activePage.kind === 'watchlist' ? (
+
+
+
+ ) : null}
+
+
+
+
+ {copy.nameVolume}
+
+
+ {copy.price}
+
+
+ {copy.change}
+
+
+
+ );
+}
+
+function AnchoredActionCard({
+ open,
+ anchor,
+ locale,
+ isFirstItem,
+ onPin,
+ onRemove,
+ onClose,
+}: {
+ open: boolean;
+ anchor?: NativeListActionAnchor;
+ locale: MarketLocale;
+ isFirstItem: boolean;
+ onPin: () => void;
+ onRemove: () => void;
+ onClose: () => void;
+}) {
+ const { width, height } = useWindowDimensions();
+ const openedAt = useRef(Date.now());
+ const [visible, setVisible] = useState(false);
+ useEffect(() => {
+ if (!open) {
+ setVisible(false);
+ return;
+ }
+ openedAt.current = Date.now();
+ const timer = setTimeout(() => setVisible(true), 500);
+ return () => clearTimeout(timer);
+ }, [open]);
+ const top = Math.max(
+ 16,
+ Math.min((anchor?.windowRect.y ?? height * 0.45) - 52, height - 60),
+ );
+ const left = Math.max(16, Math.min(width * 0.48 - 47, width - 110));
+ return (
+
+
+ {
+ if (Date.now() - openedAt.current >= 350) onClose();
+ }}
+ />
+
+
+
+
+
+
+
+
+
+
+
+ );
+}
+
+function MarketBadgeInfo({
+ asset,
+ action,
+ theme,
+ locale,
+ onClose,
+}: {
+ asset?: MarketAsset;
+ action?: string;
+ theme: MarketThemeName;
+ locale: MarketLocale;
+ onClose: () => void;
+}) {
+ const dark = theme === 'dark';
+ const { bottom } = useSafeAreaInsets();
+ const copy = MARKET_SOURCE_COPY[locale];
+ const dex = asset?.dexLabel?.toLowerCase();
+ const dexDescription =
+ dex === 'xyz' || dex === 'para' || dex === 'io' ? copy[dex] : undefined;
+ const stock =
+ (asset &&
+ MARKET_REPLAY_SNAPSHOT.locales?.[locale]?.stockMetadata?.[asset.key]) ??
+ asset?.stock;
+ const [marketStatus, setMarketStatus] =
+ useState();
+ useEffect(() => {
+ setMarketStatus(undefined);
+ if (
+ !asset ||
+ action !== 'stock-info' ||
+ !isOndoUSMarketStock(stock?.source) ||
+ stock?.isOpen !== true
+ )
+ return;
+ const controller = new AbortController();
+ const update = async () => {
+ const status = await fetchUSMarketStatus(controller.signal);
+ if (!controller.signal.aborted) setMarketStatus(status);
+ };
+ void update();
+ const timer = setInterval(update, 60_000);
+ return () => {
+ controller.abort();
+ clearInterval(timer);
+ };
+ }, [asset?.key, action, stock?.source, stock?.isOpen]);
+ const statusVariant = useMemo(
+ () => resolveUSMarketStatusVariant({ ...stock, status: marketStatus }),
+ [stock, marketStatus],
+ );
+ const statusChip = statusVariant
+ ? MARKET_SOURCE_STATUS_CHIPS[statusVariant]
+ : undefined;
+ const body = {
+ fontFamily: Platform.OS === 'ios' ? 'Roobert' : 'Roobert-Medium',
+ fontWeight: '500' as const,
+ fontSize: 16,
+ lineHeight: 24,
+ letterSpacing: 0,
+ fontVariant: (Platform.OS === 'web'
+ ? []
+ : ['tabular-nums']) as Array<'tabular-nums'>,
+ };
+ const regularBody = {
+ ...body,
+ fontFamily: Platform.OS === 'ios' ? 'Roobert' : 'Roobert-Regular',
+ fontWeight: '400' as const,
+ };
+ return (
+
+
+
+
+
+ {action === 'community-info' ? (
+
+ ) : (
+
+ {action === 'dex-info' ? dex : copy.tag}
+
+ )}
+
+
+
+
+
+ {action === 'community-info' ? (
+
+ {copy.community}
+
+ ) : null}
+ {action === 'dex-info' ? (
+
+ {dexDescription}
+
+ ) : null}
+ {action === 'stock-info' ? (
+ <>
+ {asset?.communityRecognized ? (
+
+
+
+ {copy.community}
+
+
+ ) : null}
+ {stock?.sourceLogoUri ? (
+
+
+
+
+
+ {stock?.source === 'ondo'
+ ? copy.ondo
+ : stock?.source === 'xstock'
+ ? copy.xstock
+ : stock?.title}
+
+
+ ) : null}
+ {stock ? (
+
+ {statusChip && statusVariant ? (
+
+
+
+ {statusChip.text[locale]}
+
+
+ ) : null}
+ {stock?.description ? (
+
+ {stock.description}
+
+ ) : null}
+
+ ) : null}
+ >
+ ) : null}
+
+
+
+
+ );
+}
+
+function MarketFavoritesEmpty({
+ config,
+ theme,
+ locale,
+ onAdd,
+}: {
+ config: MarketConfig;
+ theme: MarketThemeName;
+ locale: MarketLocale;
+ onAdd: (keys: readonly string[]) => void;
+}) {
+ const tokens = useMemo(
+ () => (config.recommendTokens ?? []).slice(0, 8),
+ [config.recommendTokens],
+ );
+ const [selected, setSelected] = useState(() => tokens.map(item => item.key));
+ const [badge, setBadge] = useState();
+ const { height } = useWindowDimensions();
+ const dark = theme === 'dark';
+ useEffect(() => setSelected(tokens.map(item => item.key)), [tokens]);
+ return (
+
+ {Array.from({ length: Math.ceil(tokens.length / 2) }, (_, index) => (
+
+ {tokens.slice(index * 2, index * 2 + 2).map(item => (
+
+ setSelected(keys =>
+ keys.includes(item.key)
+ ? keys.filter(key => key !== item.key)
+ : [...keys, item.key],
+ )
+ }
+ style={{
+ flex: 1,
+ flexDirection: 'row',
+ gap: 12,
+ paddingHorizontal: 10,
+ paddingVertical: 6,
+ borderRadius: 12,
+ borderWidth: 1,
+ borderColor: dark ? '#FFFFFF12' : '#0000000F',
+ backgroundColor: dark ? '#FFFFFF12' : '#0000000F',
+ alignItems: 'center',
+ minHeight: 50,
+ }}
+ >
+
+
+
+
+
+ {item.networkLogoUrl ||
+ MARKET_SOURCE_NETWORK_LOGOS[item.networkId ?? ''] ? (
+
+
+
+ ) : null}
+
+
+
+
+ {item.symbol}
+
+ {item.communityRecognized ? (
+ {
+ event.stopPropagation();
+ setBadge(item);
+ }}
+ >
+
+
+ ) : null}
+
+
+ {item.name}
+
+
+ {selected.includes(item.key) ? (
+
+ ) : (
+
+ )}
+
+ ))}
+
+ ))}
+ onAdd(selected)}
+ style={{
+ marginTop: 24,
+ height: 50,
+ borderRadius: 25,
+ borderCurve: 'continuous',
+ alignItems: 'center',
+ justifyContent: 'center',
+ opacity: selected.length ? 1 : 0.4,
+ backgroundColor: dark ? '#FFFFFFED' : '#000000DF',
+ }}
+ >
+
+ {MARKET_SOURCE_COPY[locale].addTokens.replace(
+ '{number}',
+ String(selected.length),
+ )}
+
+
+ setBadge(undefined)}
+ />
+
+ );
+}
+
+function MarketFavoritesDialog({
+ visible,
+ items,
+ theme,
+ locale,
+ onClose,
+}: {
+ visible: boolean;
+ items: readonly MarketAsset[];
+ theme: MarketThemeName;
+ locale: MarketLocale;
+ onClose: () => void;
+}) {
+ const dark = theme === 'dark';
+ const { bottom } = useSafeAreaInsets();
+ return (
+
+
+
+
+
+
+ {COPY[locale].edit}
+
+
+
+
+
+ item.key}
+ initialNumToRender={12}
+ renderItem={({ item }) => (
+
+
+
+
+ {item.kind === 'perp' ? item.name : item.symbol}
+
+
+ {MARKET_REPLAY_SNAPSHOT.locales?.[locale]?.stockMetadata?.[
+ item.key
+ ]?.subtitle ??
+ item.stock?.subtitle ??
+ item.name}
+
+
+
+ )}
+ />
+
+
+
+ );
+}
+
+export type MarketSearchParams = {
+ theme: MarketThemeName;
+ locale: MarketLocale;
+};
+export function MarketNativeSearchPage({
+ route,
+}: {
+ route: { params: MarketSearchParams };
+}) {
+ const { theme, locale } = route.params;
+ const navigation = useNavigation();
+ const insets = useSafeAreaInsets();
+ const [query, setQuery] = useState('');
+ const dark = theme === 'dark';
+ const items = useMemo(
+ () => [
+ ...new Map(
+ [
+ ...Object.values(MARKET_REPLAY_SNAPSHOT.spot).flat(),
+ ...Object.values(MARKET_REPLAY_SNAPSHOT.stocks ?? {}).flat(),
+ ...Object.values(MARKET_REPLAY_SNAPSHOT.perps).flat(),
+ ].map(item => {
+ const stock =
+ MARKET_REPLAY_SNAPSHOT.locales?.[locale]?.stockMetadata?.[item.key];
+ return [
+ item.key,
+ stock?.subtitle ? { ...item, stock, name: stock.subtitle } : item,
+ ];
+ }),
+ ).values(),
+ ],
+ [locale],
+ );
+ const results = useMemo(
+ () => (query.trim() ? filterMarketSearch(items, query) : []),
+ [items, query],
+ );
+ return (
+
+
+
+
+
+
+ navigation.goBack()}
+ >
+
+ {COPY[locale].cancel}
+
+
+
+ item.key}
+ renderItem={({ item }) => (
+
+
+
+
+ {item.symbol}
+
+
+ {item.name}
+
+
+
+ )}
+ />
+
+ );
+}
+
+function MarketListPage({
+ page,
+ active,
+ mode,
+ scenario,
+ theme,
+ locale,
+ config,
+ networkId,
+ timeRange,
+ stockCategory,
+ perpsCategory,
+ watchlistFilter,
+ watchlistKeys,
+ emptyInset,
+ onRecoverScenario,
+ onWatchlistKeysChange,
+ onMessage,
+ onDiagnostics,
+}: {
+ page: MarketPageDescriptor;
+ active: boolean;
+ mode: MarketDataMode;
+ scenario: MarketScenario;
+ theme: MarketThemeName;
+ locale: MarketLocale;
+ config: MarketConfig;
+ networkId: string;
+ timeRange: MarketTimeRange;
+ stockCategory: string;
+ perpsCategory: string;
+ watchlistFilter: string;
+ watchlistKeys: readonly string[];
+ emptyInset: number;
+ onRecoverScenario: () => void;
+ onWatchlistKeysChange: (keys: readonly string[]) => void;
+ onMessage: (message: string) => void;
+ onDiagnostics: (
+ pageKey: string,
+ diagnostics: Partial,
+ ) => void;
+}) {
+ const listRef = useRef(null);
+ const requestAbortRef = useRef(null);
+ const latestItemsRef = useRef([]);
+ const rawLiveItemsRef = useRef([]);
+ const { height: windowHeight } = useWindowDimensions();
+ const { bottom: bottomInset } = useSafeAreaInsets();
+ const [items, setItems] = useState([]);
+ const [generation, setGeneration] = useState(1);
+ const [loading, setLoading] = useState(mode === 'live');
+ const [loadingMore, setLoadingMore] = useState(false);
+ const [error, setError] = useState();
+ const pageNumberRef = useRef(1);
+ const cursorRef = useRef(undefined);
+ const [canLoadMore, setCanLoadMore] = useState(false);
+ const [badgeInfo, setBadgeInfo] = useState<{
+ asset: MarketAsset;
+ action: string;
+ }>();
+ const [menuAsset, setMenuAsset] = useState();
+ const [menuAnchor, setMenuAnchor] = useState();
+ const requestSerialRef = useRef(0);
+ const copy = COPY[locale];
+
+ const replayItems = useMemo(() => {
+ let next = replayItemsForPage(
+ MARKET_REPLAY_SNAPSHOT,
+ page,
+ watchlistKeys,
+ perpsCategory,
+ { networkId, timeRange, stockCategory },
+ );
+ if (page.kind === 'watchlist')
+ next = filterWatchlist(next, watchlistFilter);
+ return applyMarketScenario(next, scenario);
+ }, [
+ page,
+ perpsCategory,
+ scenario,
+ watchlistFilter,
+ watchlistKeys,
+ networkId,
+ timeRange,
+ stockCategory,
+ ]);
+
+ const replaceStructure = useCallback(
+ (next: readonly MarketAsset[]) => {
+ latestItemsRef.current = next;
+ setItems(next);
+ setGeneration(value => value + 1);
+ onDiagnostics(page.key, { structuralUpdateCount: 1 });
+ },
+ [onDiagnostics, page.key],
+ );
+
+ const acceptQuotes = useCallback(
+ (incoming: readonly MarketAsset[], allowPatches: boolean) => {
+ let next = incoming;
+ if (page.kind === 'watchlist')
+ next = filterWatchlist(next, watchlistFilter);
+ next = applyMarketScenario(next, scenario);
+ const previous = latestItemsRef.current;
+ const patches = allowPatches
+ ? buildMarketQuotePatches(previous, next, theme)
+ : undefined;
+ if (patches && sameKeys(previous, next)) {
+ latestItemsRef.current = next;
+ listRef.current?.applyPatches(patches);
+ onDiagnostics(page.key, { quotePatchCount: patches.length });
+ } else {
+ replaceStructure(next);
+ }
+ },
+ [
+ page.kind,
+ page.key,
+ theme,
+ replaceStructure,
+ scenario,
+ watchlistFilter,
+ onDiagnostics,
+ ],
+ );
+
+ const runLiveRequest = useCallback(
+ async ({
+ append = false,
+ polling = false,
+ }: { append?: boolean; polling?: boolean } = {}) => {
+ if (polling && requestAbortRef.current) return;
+ const serial = requestSerialRef.current + 1;
+ requestSerialRef.current = serial;
+ requestAbortRef.current?.abort();
+ const controller = new AbortController();
+ requestAbortRef.current = controller;
+ const nextPage = append ? pageNumberRef.current + 1 : 1;
+ if (append) setLoadingMore(true);
+ else if (!polling) setLoading(true);
+ setError(undefined);
+ onDiagnostics(page.key, { requestCount: 1 });
+ try {
+ let result = await fetchMarketPage({
+ page,
+ pageNumber: nextPage,
+ cursor: append ? cursorRef.current : undefined,
+ config,
+ networkId,
+ timeRange,
+ stockCategory,
+ perpsCategory,
+ watchlistKeys,
+ forceFailure: scenario === 'error',
+ signal: controller.signal,
+ locale,
+ });
+ const refreshedItems: MarketAsset[] = [...result.items];
+ // Refresh every loaded page, keeping the full list and its pagination cursor.
+ if (polling) {
+ const loadedPageCount = pageNumberRef.current;
+ for (
+ let current = 2;
+ current <= loadedPageCount && result.canLoadMore;
+ current += 1
+ ) {
+ result = await fetchMarketPage({
+ page,
+ pageNumber: current,
+ cursor: result.nextCursor,
+ config,
+ networkId,
+ timeRange,
+ stockCategory,
+ perpsCategory,
+ watchlistKeys,
+ signal: controller.signal,
+ locale,
+ });
+ refreshedItems.push(...result.items);
+ }
+ }
+ if (requestSerialRef.current !== serial || controller.signal.aborted)
+ return;
+ const incoming = append
+ ? mergeByKey(rawLiveItemsRef.current, result.items)
+ : mergeByKey([], refreshedItems);
+ const addedRows = incoming.length - rawLiveItemsRef.current.length;
+ rawLiveItemsRef.current = incoming;
+ acceptQuotes(incoming, polling && !append);
+ pageNumberRef.current = result.page;
+ cursorRef.current = result.nextCursor;
+ setCanLoadMore(result.canLoadMore && (!append || addedRows > 0));
+ onDiagnostics(page.key, {
+ sourceUrl: result.sourceUrl,
+ fetchedAt: result.fetchedAt,
+ note: result.note ?? '',
+ });
+ } catch (requestError) {
+ if (requestSerialRef.current !== serial || controller.signal.aborted)
+ return;
+ const nextError =
+ requestError instanceof MarketApiError
+ ? `${requestError.message}${
+ requestError.responseCode === undefined
+ ? ''
+ : ` (code ${requestError.responseCode})`
+ }`
+ : requestError instanceof Error
+ ? requestError.message
+ : String(requestError);
+ setError(nextError);
+ if (
+ !polling &&
+ shouldClearMarketRowsOnRequestError(latestItemsRef.current)
+ ) {
+ replaceStructure([]);
+ }
+ onDiagnostics(page.key, {
+ sourceUrl:
+ requestError instanceof MarketApiError
+ ? requestError.sourceUrl
+ : '',
+ fetchedAt: new Date().toISOString(),
+ note: nextError,
+ });
+ } finally {
+ if (requestSerialRef.current === serial) {
+ requestAbortRef.current = null;
+ setLoading(false);
+ setLoadingMore(false);
+ }
+ }
+ },
+ [
+ acceptQuotes,
+ config,
+ locale,
+ networkId,
+ onDiagnostics,
+ page,
+ perpsCategory,
+ replaceStructure,
+ scenario,
+ stockCategory,
+ timeRange,
+ watchlistKeys,
+ ],
+ );
+
+ useEffect(() => {
+ setMenuAsset(undefined);
+ setMenuAnchor(undefined);
+ setBadgeInfo(undefined);
+ if (mode === 'replay') {
+ requestAbortRef.current?.abort();
+ setError(
+ scenario === 'error'
+ ? locale === 'en-US'
+ ? 'Replay request failed. Tap to retry.'
+ : '回放请求失败,点击重试。'
+ : undefined,
+ );
+ setLoading(false);
+ setLoadingMore(false);
+ pageNumberRef.current = 1;
+ setCanLoadMore(false);
+ replaceStructure(replayItems);
+ onDiagnostics(page.key, {
+ sourceUrl:
+ page.categoryId === 'stocks' || page.kind === 'topCoins'
+ ? MARKET_REPLAY_SNAPSHOT.source.testBaseUrl ?? ''
+ : MARKET_REPLAY_SNAPSHOT.source.baseUrl,
+ fetchedAt:
+ page.categoryId === 'stocks' || page.kind === 'topCoins'
+ ? MARKET_REPLAY_SNAPSHOT.source.testFetchedAt ??
+ MARKET_REPLAY_SNAPSHOT.fetchedAt
+ : MARKET_REPLAY_SNAPSHOT.fetchedAt,
+ note: 'deterministic replay',
+ });
+ return;
+ }
+ if (!active) {
+ requestSerialRef.current += 1;
+ requestAbortRef.current?.abort();
+ setLoading(false);
+ setLoadingMore(false);
+ return;
+ }
+ void runLiveRequest();
+ }, [
+ active,
+ mode,
+ page.key,
+ replayItems,
+ replaceStructure,
+ runLiveRequest,
+ scenario,
+ onDiagnostics,
+ ]);
+
+ useEffect(
+ () => () => {
+ requestSerialRef.current += 1;
+ requestAbortRef.current?.abort();
+ },
+ [],
+ );
+
+ useEffect(() => {
+ // A theme change intentionally sends a full style snapshot. Seed it from
+ // the latest patched values so polling patches cannot be reverted.
+ setItems([...latestItemsRef.current]);
+ setGeneration(value => value + 1);
+ }, [theme]);
+
+ useEffect(() => {
+ if (mode !== 'live' || !active || scenario === 'error') return undefined;
+ const interval = setInterval(
+ () => {
+ void runLiveRequest({ polling: true });
+ },
+ page.kind === 'spot' ? 60_000 : 30_000,
+ );
+ return () => clearInterval(interval);
+ }, [active, mode, page.kind, runLiveRequest, scenario]);
+
+ const snapshot = useMemo(() => {
+ const next = buildMarketSnapshot({
+ items: items.map(item => {
+ const stock =
+ mode === 'replay'
+ ? MARKET_REPLAY_SNAPSHOT.locales?.[locale]?.stockMetadata?.[
+ item.key
+ ]
+ : undefined;
+ return stock ? { ...item, stock } : item;
+ }),
+ generation,
+ theme,
+ locale,
+ watchlist: page.kind === 'watchlist',
+ loading,
+ loadingMore,
+ error,
+ canLoadMore,
+ });
+ return {
+ ...next,
+ layout: {
+ ...next.layout,
+ contentPaddingTop:
+ Platform.OS === 'web' ? (page.kind === 'perps' ? 8 : 4) : 0,
+ contentPaddingBottom: Platform.OS === 'web' ? 0 : bottomInset,
+ },
+ };
+ }, [
+ bottomInset,
+ canLoadMore,
+ locale,
+ error,
+ generation,
+ items,
+ loading,
+ loadingMore,
+ page.kind,
+ theme,
+ ]);
+
+ const findAsset = useCallback(
+ (key: string | undefined) =>
+ latestItemsRef.current.find(item => item.key === key),
+ [],
+ );
+
+ const closeMenu = useCallback(() => {
+ if (menuAnchor) {
+ listRef.current?.setActionAnchorState({
+ token: menuAnchor.token,
+ open: false,
+ restoreFocus: true,
+ });
+ }
+ setMenuAsset(undefined);
+ setMenuAnchor(undefined);
+ }, [menuAnchor]);
+
+ const handleRowAction = useCallback(
+ (event: RowActionEvent) => {
+ if (event.actionKey === 'retry') {
+ if (scenario === 'error') onRecoverScenario();
+ else void runLiveRequest();
+ return;
+ }
+ const asset = findAsset(event.rowKey);
+ if (!asset) return;
+ if (event.actionKey === 'image-bind') {
+ onDiagnostics(page.key, { imageBindCount: 1 });
+ return;
+ }
+ if (event.actionKey === 'prewarm-detail-boundary') {
+ onDiagnostics(page.key, { note: `prewarm ${asset.symbol}` });
+ return;
+ }
+ if (event.actionKey === 'watchlist-menu') {
+ setMenuAsset(asset);
+ setMenuAnchor(event.anchor);
+ if (event.anchor) {
+ listRef.current?.setActionAnchorState({
+ token: event.anchor.token,
+ open: true,
+ });
+ }
+ return;
+ }
+ if (event.actionKey.endsWith('-info')) {
+ setBadgeInfo({ asset, action: event.actionKey });
+ return;
+ }
+ if (event.actionKey === 'open-detail-boundary') {
+ onMessage(
+ `${copy.pageBoundary} ${asset.networkId ?? 'perps'} · ${
+ asset.symbol
+ }`,
+ );
+ }
+ },
+ [
+ copy.pageBoundary,
+ findAsset,
+ onDiagnostics,
+ onMessage,
+ onRecoverScenario,
+ onWatchlistKeysChange,
+ page.key,
+ page.kind,
+ runLiveRequest,
+ scenario,
+ watchlistKeys,
+ ],
+ );
+
+ const handleVisibleRange = useCallback(
+ (range: VisibleRangeChangedEvent) => {
+ onDiagnostics(page.key, {
+ visibleRange: `${range.firstIndex}-${range.lastIndex} · ${
+ range.firstKey ?? '--'
+ } → ${range.lastKey ?? '--'}`,
+ });
+ },
+ [onDiagnostics, page.key],
+ );
+
+ return (
+
+ {page.kind === 'watchlist' &&
+ !loading &&
+ !error &&
+ (watchlistKeys.length === 0 || scenario === 'empty') ? (
+
+ {
+ onWatchlistKeysChange(keys);
+ onRecoverScenario();
+ }}
+ />
+
+ ) : (
+ {
+ if (event.token === menuAnchor?.token) closeMenu();
+ }}
+ onVisibleRangeChanged={handleVisibleRange}
+ onEndReached={() => {
+ if (
+ active &&
+ mode === 'live' &&
+ canLoadMore &&
+ !loading &&
+ !loadingMore
+ ) {
+ void runLiveRequest({ append: true });
+ }
+ }}
+ onRefresh={() => {
+ if (mode === 'live') void runLiveRequest();
+ else replaceStructure(replayItems);
+ }}
+ />
+ )}
+ setBadgeInfo(undefined)}
+ />
+ {
+ if (!menuAsset) return;
+ onWatchlistKeysChange([
+ menuAsset.key,
+ ...watchlistKeys.filter(key => key !== menuAsset.key),
+ ]);
+ closeMenu();
+ }}
+ onRemove={() => {
+ if (!menuAsset) return;
+ onWatchlistKeysChange(
+ watchlistKeys.filter(key => key !== menuAsset.key),
+ );
+ closeMenu();
+ }}
+ onClose={closeMenu}
+ />
+
+ );
+}
+
+function DiagnosticsPanel({
+ theme,
+ mode,
+ scenario,
+ locale,
+ tallHeader,
+ activePage,
+ pageDiagnostics,
+ mountedPages,
+ pagerDiagnostics,
+ lastMessage,
+ onModeChange,
+ onScenarioChange,
+ onThemeChange,
+ onLocaleChange,
+ onToggleTallHeader,
+ onBusyJs,
+ onClose,
+}: {
+ theme: MarketThemeName;
+ mode: MarketDataMode;
+ scenario: MarketScenario;
+ locale: MarketLocale;
+ tallHeader: boolean;
+ activePage: MarketPageDescriptor;
+ pageDiagnostics: PageDiagnostics;
+ mountedPages: CollapsiblePagerMountState;
+ pagerDiagnostics?: CollapsiblePagerDiagnostics['nativeEvent'];
+ lastMessage: string;
+ onModeChange: (mode: MarketDataMode) => void;
+ onScenarioChange: (scenario: MarketScenario) => void;
+ onThemeChange: (theme: MarketThemeName) => void;
+ onLocaleChange: (locale: MarketLocale) => void;
+ onToggleTallHeader: () => void;
+ onBusyJs: () => void;
+ onClose: () => void;
+}) {
+ const dark = theme === 'dark';
+ const requestDiagnostics = getMarketRequestDiagnostics();
+ const insets = useSafeAreaInsets();
+ return (
+
+
+
+ Market acceptance
+
+
+ ×
+
+
+
+ {(['replay', 'live'] as const).map(value => (
+ onModeChange(value)}
+ />
+ ))}
+ {(['long', 'short', 'empty', 'error'] as const).map(value => (
+ onScenarioChange(value)}
+ />
+ ))}
+ onThemeChange(dark ? 'light' : 'dark')}
+ />
+ onLocaleChange(locale === 'zh-CN' ? 'en-US' : 'zh-CN')}
+ />
+
+
+
+
+ {activePage.key} · mounted [{mountedPages.mountedPages.join(', ')}] ·
+ native pages {pagerDiagnostics?.nativePageCount ?? '--'} / attached{' '}
+ {pagerDiagnostics?.attachedPageCount ?? '--'}
+
+
+ request {pageDiagnostics.requestCount} · patch{' '}
+ {pageDiagnostics.quotePatchCount} · structural{' '}
+ {pageDiagnostics.structuralUpdateCount} · image bind{' '}
+ {pageDiagnostics.imageBindCount}
+
+
+ visible {pageDiagnostics.visibleRange} ·{' '}
+ {pageDiagnostics.fetchedAt || MARKET_REPLAY_SNAPSHOT.fetchedAt}
+
+
+ {requestDiagnostics.headerMode} ·{' '}
+ {pageDiagnostics.note || lastMessage || 'ready'}
+
+
+ {pageDiagnostics.sourceUrl || requestDiagnostics.baseUrl}
+
+
+ );
+}
+
+export function MarketNativePagerExamplePage() {
+ const navigation =
+ useNavigation>();
+ const insets = useSafeAreaInsets();
+ const pagerRef = useRef(null);
+ const [mode, setMode] = useState('replay');
+ const [scenario, setScenario] = useState('long');
+ const [theme, setTheme] = useState('dark');
+ const [locale, setLocale] = useState('zh-CN');
+ const [config, setConfig] = useState(
+ MARKET_REPLAY_SNAPSHOT.config,
+ );
+ const [banners, setBanners] = useState(
+ MARKET_REPLAY_SNAPSHOT.banners,
+ );
+ const [activeIndex, setActiveIndex] = useState(0);
+ const [headerHeight, setHeaderHeight] = useState(
+ Platform.OS === 'web' ? 142 : 134,
+ );
+ const [stickyHeaderHeight, setStickyHeaderHeight] = useState(120);
+ const [tallHeader, setTallHeader] = useState(false);
+ const [showDiagnostics, setShowDiagnostics] = useState(false);
+ const [networkId, setNetworkId] = useState('');
+ const [timeRange, setTimeRange] = useState('1h');
+ const [watchlistFilter, setWatchlistFilter] = useState('all');
+ const [stockCategory, setStockCategory] = useState('all');
+ const [perpsCategory, setPerpsCategory] = useState(
+ defaultPerpsCategory(MARKET_REPLAY_SNAPSHOT.config.perpsCategories),
+ );
+ const [watchlistKeys, setWatchlistKeys] =
+ useState(FULL_WATCHLIST_KEYS);
+ const [watchlistEditMode, setWatchlistEditMode] = useState(false);
+ const [lastMessage, setLastMessage] = useState('');
+ const [diagnosticsByPage, setDiagnosticsByPage] = useState<
+ Record
+ >({});
+ const [mountedPages, setMountedPages] = useState({
+ position: 0,
+ mountedPages: [0, 1],
+ pageKeys: [],
+ });
+ const [pagerDiagnostics, setPagerDiagnostics] =
+ useState();
+ const dark = theme === 'dark';
+ const pages = useMemo(
+ () => buildMarketPages(config, locale),
+ [config, locale],
+ );
+ const activePage =
+ pages[Math.min(activeIndex, pages.length - 1)] ?? pages[0]!;
+
+ useEffect(() => {
+ if (mode !== 'live') {
+ const localized =
+ MARKET_REPLAY_SNAPSHOT.locales?.[locale] ?? MARKET_REPLAY_SNAPSHOT;
+ setConfig(localized.config);
+ setBanners(localized.banners);
+ return undefined;
+ }
+ const controller = new AbortController();
+ Promise.all([
+ fetchMarketConfig(controller.signal, locale),
+ fetchMarketBanners(controller.signal, locale),
+ ])
+ .then(([configResult, bannerResult]) => {
+ setConfig(configResult.config);
+ setBanners(bannerResult.banners);
+ setPerpsCategory(value =>
+ configResult.config.perpsCategories.some(item => item.id === value)
+ ? value
+ : defaultPerpsCategory(configResult.config.perpsCategories),
+ );
+ })
+ .catch(error => {
+ if (!controller.signal.aborted) {
+ setLastMessage(
+ error instanceof Error ? error.message : String(error),
+ );
+ }
+ });
+ return () => controller.abort();
+ }, [mode, locale]);
+
+ useEffect(() => {
+ if (activeIndex >= pages.length) {
+ setActiveIndex(Math.max(0, pages.length - 1));
+ }
+ }, [activeIndex, pages.length]);
+
+ const updatePageDiagnostics = useCallback(
+ (pageKey: string, next: Partial) => {
+ setDiagnosticsByPage(previous => {
+ const current = previous[pageKey] ?? EMPTY_PAGE_DIAGNOSTICS;
+ return {
+ ...previous,
+ [pageKey]: {
+ ...current,
+ ...next,
+ requestCount:
+ current.requestCount +
+ (next.requestCount === undefined ? 0 : next.requestCount),
+ quotePatchCount:
+ current.quotePatchCount +
+ (next.quotePatchCount === undefined ? 0 : next.quotePatchCount),
+ structuralUpdateCount:
+ current.structuralUpdateCount +
+ (next.structuralUpdateCount === undefined
+ ? 0
+ : next.structuralUpdateCount),
+ imageBindCount:
+ current.imageBindCount +
+ (next.imageBindCount === undefined ? 0 : next.imageBindCount),
+ },
+ };
+ });
+ },
+ [],
+ );
+
+ const selectPage = useCallback((index: number) => {
+ setActiveIndex(index);
+ pagerRef.current?.setPage(index);
+ }, []);
+
+ const handleMountedPagesChanged = useCallback(
+ (next: CollapsiblePagerMountState) => {
+ setMountedPages(previous =>
+ previous.position === next.position &&
+ previous.mountedPages.length === next.mountedPages.length &&
+ previous.mountedPages.every(
+ (pageIndex, index) => pageIndex === next.mountedPages[index],
+ ) &&
+ previous.pageKeys.length === next.pageKeys.length &&
+ previous.pageKeys.every(
+ (pageKey, index) => pageKey === next.pageKeys[index],
+ )
+ ? previous
+ : next,
+ );
+ },
+ [],
+ );
+
+ const handlePageSelected = useCallback(
+ (event: CollapsiblePagerViewOnPageSelectedEvent) => {
+ setActiveIndex(event.nativeEvent.position);
+ setWatchlistEditMode(false);
+ },
+ [],
+ );
+
+ const handleHeaderLayout = useCallback((event: LayoutChangeEvent) => {
+ setHeaderHeight(Math.round(event.nativeEvent.layout.height));
+ }, []);
+
+ const handleStickyHeaderLayout = useCallback((event: LayoutChangeEvent) => {
+ setStickyHeaderHeight(Math.round(event.nativeEvent.layout.height));
+ }, []);
+
+ const handleBusyJs = useCallback(() => {
+ setLastMessage(
+ 'JS busy scheduled; start a native collapse or horizontal swipe now.',
+ );
+ setTimeout(() => {
+ const startedAt = Date.now();
+ while (Date.now() - startedAt < 1200) {
+ // Deliberately keep the example main JS runtime busy for acceptance.
+ }
+ setLastMessage(`JS busy completed at ${new Date().toISOString()}`);
+ }, 150);
+ }, []);
+
+ const background = dark ? '#0F0F0F' : '#FFFFFF';
+ return (
+
+
+ {Platform.OS !== 'web' ? (
+ <>
+
+ navigation.navigate('MarketSearch', { theme, locale })
+ }
+ style={[
+ styles.searchBox,
+ dark ? styles.darkPill : styles.lightPill,
+ {
+ paddingHorizontal: 9,
+ borderWidth: 1,
+ borderColor: 'transparent',
+ },
+ ]}
+ >
+
+
+
+
+
+
+
+ setShowDiagnostics(value => !value)}
+ testID="market-primary-tab"
+ >
+
+ {COPY[locale].market}
+
+
+ {[COPY[locale].defi, COPY[locale].browser].map(name => (
+
+ setLastMessage(`${name} · ${COPY[locale].pageBoundary}`)
+ }
+ >
+
+ {name}
+
+
+ ))}
+
+ >
+ ) : null}
+
+ setPagerDiagnostics(event.nativeEvent)
+ }
+ header={
+
+ setLastMessage(
+ `banner ${banner.tokenListId} · ${COPY[locale].pageBoundary}`,
+ )
+ }
+ onLayout={handleHeaderLayout}
+ />
+ }
+ stickyHeader={
+ setWatchlistEditMode(true)}
+ onToggleDiagnostics={() => setShowDiagnostics(value => !value)}
+ onLayout={handleStickyHeaderLayout}
+ />
+ }
+ >
+ {pages.map((page, index) => (
+
+ setScenario('long')}
+ onWatchlistKeysChange={setWatchlistKeys}
+ onMessage={setLastMessage}
+ onDiagnostics={updatePageDiagnostics}
+ />
+
+ ))}
+
+
+ setWatchlistEditMode(false)}
+ />
+ {lastMessage ? (
+ setLastMessage('')}
+ style={[
+ styles.messageToast,
+ dark ? styles.darkPill : styles.lightPill,
+ ]}
+ testID="market-boundary-message"
+ >
+
+ {lastMessage}
+
+
+ ) : null}
+
+ {showDiagnostics ? (
+ setTallHeader(value => !value)}
+ onBusyJs={handleBusyJs}
+ onClose={() => setShowDiagnostics(false)}
+ />
+ ) : null}
+
+ );
+}
+
+const styles = StyleSheet.create({
+ screen: { flex: 1 },
+ pager: { flex: 1 },
+ header: { paddingTop: 0 },
+ backgroundDark: { backgroundColor: '#0F0F0F' },
+ backgroundLight: { backgroundColor: '#FFFFFF' },
+ textDark: { color: '#FFFFFFED' },
+ textLight: { color: '#000000DF' },
+ subduedTextDark: { color: '#FFFFFFAF' },
+ subduedTextLight: { color: '#0000009B' },
+ iconDark: { borderColor: '#FFFFFF64', backgroundColor: '#FFFFFF64' },
+ iconLight: { borderColor: '#11111164', backgroundColor: '#11111164' },
+ lineDark: { backgroundColor: '#FFFFFFED' },
+ lineLight: { backgroundColor: '#111111' },
+ darkPill: { backgroundColor: '#202020', borderColor: '#FFFFFF1F' },
+ lightPill: { backgroundColor: '#F5F5F5', borderColor: '#1111111A' },
+ pressed: { opacity: 0.72 },
+ filterBackdrop: {
+ flex: 1,
+ backgroundColor: '#0000009B',
+ justifyContent: 'flex-end',
+ paddingHorizontal: 20,
+ },
+ filterMenu: {
+ width: '100%',
+ maxHeight: '85%',
+ borderRadius: 24,
+ overflow: 'hidden',
+ },
+ filterMenuHeader: {
+ flexDirection: 'row',
+ alignItems: 'center',
+ justifyContent: 'space-between',
+ padding: 20,
+ },
+ filterClose: {
+ width: 30,
+ height: 30,
+ borderRadius: 15,
+ alignItems: 'center',
+ justifyContent: 'center',
+ },
+ networkEmpty: { padding: 20, alignItems: 'center' },
+ filterMenuTitle: {
+ fontSize: 20,
+ lineHeight: 28,
+ fontFamily: Platform.OS === 'ios' ? 'Roobert' : 'Roobert-SemiBold',
+ fontWeight: '600',
+ letterSpacing: 0,
+ fontVariant: ['tabular-nums'],
+ },
+ networkSearch: {
+ marginHorizontal: 20,
+ marginTop: 10,
+ marginBottom: 8,
+ height: 38,
+ paddingHorizontal: 10,
+ borderRadius: 20,
+ gap: 6,
+ flexDirection: 'row',
+ alignItems: 'center',
+ },
+ filterOption: {
+ height: 48,
+ paddingHorizontal: 12,
+ marginHorizontal: 8,
+ borderRadius: 12,
+ gap: 12,
+ flexDirection: 'row',
+ alignItems: 'center',
+ },
+ networkOptionText: {
+ flex: 1,
+ fontSize: 16,
+ lineHeight: 24,
+ fontFamily: Platform.OS === 'ios' ? 'Roobert' : 'Roobert-Medium',
+ fontWeight: '500',
+ letterSpacing: 0,
+ fontVariant: ['tabular-nums'],
+ },
+ timeOptions: { padding: 8, gap: 4 },
+ timeOption: { paddingHorizontal: 12, paddingVertical: 8, borderRadius: 8 },
+ searchBox: {
+ height: 40,
+ marginHorizontal: 20,
+ borderRadius: 22,
+ borderWidth: StyleSheet.hairlineWidth,
+ flexDirection: 'row',
+ alignItems: 'center',
+ paddingHorizontal: 14,
+ },
+ searchGlyph: { width: 20, height: 20, marginRight: 7 },
+ searchCircle: {
+ position: 'absolute',
+ left: 3,
+ top: 3,
+ width: 16,
+ height: 16,
+ borderWidth: 2,
+ borderRadius: 8,
+ backgroundColor: 'transparent',
+ },
+ searchHandle: {
+ position: 'absolute',
+ width: 8,
+ height: 2,
+ left: 15,
+ top: 16,
+ transform: [{ rotate: '45deg' }],
+ },
+ searchInput: {
+ flex: 1,
+ height: 40,
+ fontSize: 16,
+ lineHeight: 22,
+ fontFamily: Platform.OS === 'ios' ? 'System' : 'Roobert-Regular',
+ fontWeight: '400',
+ paddingVertical: 0,
+ ...(Platform.OS === 'web'
+ ? { outlineStyle: 'solid' as const, outlineWidth: 0 }
+ : {}),
+ },
+ primaryNavigation: {
+ height: 52,
+ paddingTop: 8,
+ paddingHorizontal: 20,
+ flexDirection: 'row',
+ alignItems: 'center',
+ gap: 16,
+ },
+ primaryNavigationActive: {
+ fontSize: 20,
+ lineHeight: 28,
+ fontFamily: 'Roobert-SemiBold',
+ fontWeight: '600',
+ },
+ primaryNavigationText: {
+ fontSize: 20,
+ lineHeight: 28,
+ fontFamily: 'Roobert-SemiBold',
+ fontWeight: '600',
+ },
+ bannerList: { paddingHorizontal: 16, paddingVertical: 8, gap: 12 },
+ bannerCard: {
+ width: 128,
+ height: 118,
+ borderRadius: 12,
+ borderWidth: StyleSheet.hairlineWidth,
+ borderColor: '#80808026',
+ paddingHorizontal: 12,
+ paddingVertical: 14,
+ justifyContent: 'space-between',
+ },
+ bannerTitleRow: { flexDirection: 'row', alignItems: 'flex-start', gap: 4 },
+ bannerTitle: {
+ flexShrink: 1,
+ fontSize: 14,
+ lineHeight: 20,
+ fontFamily: Platform.OS === 'ios' ? 'Roobert' : 'Roobert-SemiBold',
+ fontWeight: '600',
+ letterSpacing: 0,
+ fontVariant: ['tabular-nums'],
+ },
+ bannerChange: {
+ fontSize: 14,
+ lineHeight: 20,
+ fontFamily: Platform.OS === 'ios' ? 'Roobert' : 'Roobert-Medium',
+ fontWeight: '500',
+ marginTop: 2,
+ letterSpacing: 0,
+ fontVariant: ['tabular-nums'],
+ },
+ leverageBadge: {
+ borderRadius: 4,
+ overflow: 'hidden',
+ backgroundColor: '#164766',
+ color: '#70B8FF',
+ fontSize: 10,
+ lineHeight: 16,
+ fontFamily: Platform.OS === 'ios' ? 'Roobert' : 'Roobert-Regular',
+ fontWeight: '400',
+ paddingHorizontal: 6,
+ letterSpacing: 0,
+ fontVariant: ['tabular-nums'],
+ },
+ bannerLogos: { flexDirection: 'row', alignItems: 'center' },
+ bannerLogo: {
+ borderRadius: 12,
+ borderWidth: StyleSheet.hairlineWidth,
+ overflow: 'hidden',
+ },
+ bannerLogoImage: { width: 20, height: 20, borderRadius: 10 },
+ bannerLogoOverlap: { marginLeft: -6 },
+ dynamicHeaderProbe: {
+ height: 64,
+ marginHorizontal: 16,
+ marginBottom: 8,
+ borderWidth: StyleSheet.hairlineWidth,
+ borderRadius: 12,
+ alignItems: 'center',
+ justifyContent: 'center',
+ },
+ dynamicHeaderProbeText: {
+ fontSize: 13,
+ fontFamily: Platform.OS === 'ios' ? 'Roobert' : 'Roobert-Medium',
+ fontWeight: '500',
+ },
+ marketTabs: { height: 44, paddingHorizontal: 20, gap: 20 },
+ marketTabButton: { height: 44, justifyContent: 'center', flexShrink: 0 },
+ marketTabText: {
+ fontSize: 16,
+ lineHeight: 24,
+ fontFamily: Platform.OS === 'ios' ? 'Roobert' : 'Roobert-Medium',
+ fontWeight: '500',
+ letterSpacing: 0,
+ fontVariant: ['tabular-nums'],
+ },
+ activeTabLine: {
+ position: 'absolute',
+ left: 0,
+ right: 0,
+ bottom: 0,
+ height: 2,
+ borderRadius: 1,
+ },
+ compactDropdown: { flexDirection: 'row', alignItems: 'center', gap: 4 },
+ secondaryFilters: {
+ height: 42,
+ paddingTop: 6,
+ paddingBottom: 4,
+ flexDirection: 'row',
+ alignItems: 'center',
+ paddingHorizontal: 20,
+ gap: 8,
+ },
+ categoryFilterScroll: { flex: 1 },
+ categoryFilterList: { alignItems: 'center', gap: 8, paddingRight: 4 },
+ filterChip: {
+ height: 32,
+ paddingHorizontal: 10,
+ borderRadius: 16,
+ alignItems: 'center',
+ justifyContent: 'center',
+ },
+ darkChipSelected: { backgroundColor: '#FFFFFF1B' },
+ lightChipSelected: { backgroundColor: '#00000017' },
+ filterChipText: {
+ fontSize: 14,
+ lineHeight: 20,
+ fontFamily: Platform.OS === 'ios' ? 'Roobert' : 'Roobert-Medium',
+ fontWeight: '500',
+ letterSpacing: 0,
+ fontVariant: ['tabular-nums'],
+ },
+ editButton: {
+ width: 32,
+ height: 32,
+ alignItems: 'center',
+ justifyContent: 'center',
+ marginLeft: 'auto',
+ },
+ editGlyph: {
+ fontSize: 20,
+ fontFamily: Platform.OS === 'ios' ? 'Roobert' : 'Roobert-Regular',
+ },
+ columnHeader: {
+ height: 32,
+ flexDirection: 'row',
+ alignItems: 'center',
+ paddingHorizontal: 20,
+ },
+ columnTitle: {
+ flex: 1,
+ fontSize: 12,
+ lineHeight: 16,
+ fontFamily: Platform.OS === 'ios' ? 'Roobert' : 'Roobert-Medium',
+ fontWeight: '500',
+ letterSpacing: 0,
+ fontVariant: ['tabular-nums'],
+ },
+ columnPrice: {
+ width: 92,
+ textAlign: 'right',
+ fontSize: 12,
+ lineHeight: 16,
+ fontFamily: Platform.OS === 'ios' ? 'Roobert' : 'Roobert-Medium',
+ fontWeight: '500',
+ letterSpacing: 0,
+ fontVariant: ['tabular-nums'],
+ },
+ columnChange: {
+ width: 88,
+ textAlign: 'right',
+ fontSize: 12,
+ lineHeight: 16,
+ fontFamily: Platform.OS === 'ios' ? 'Roobert' : 'Roobert-Medium',
+ fontWeight: '500',
+ letterSpacing: 0,
+ fontVariant: ['tabular-nums'],
+ },
+ listPage: { flex: 1 },
+ nativeList: { flex: 1 },
+ actionCard: {
+ position: 'absolute',
+ zIndex: 20,
+ width: 164,
+ padding: 8,
+ borderRadius: 12,
+ borderWidth: StyleSheet.hairlineWidth,
+ },
+ actionCardDark: { backgroundColor: '#262626', borderColor: '#FFFFFF24' },
+ actionCardLight: { backgroundColor: '#FFFFFF', borderColor: '#1111111A' },
+ actionCardFallback: { left: 20, bottom: 100 },
+ actionCardTitle: {
+ fontSize: 14,
+ lineHeight: 20,
+ fontFamily: Platform.OS === 'ios' ? 'Roobert' : 'Roobert-SemiBold',
+ fontWeight: '600',
+ paddingHorizontal: 8,
+ paddingVertical: 4,
+ },
+ actionCardButton: {
+ minHeight: 36,
+ justifyContent: 'center',
+ paddingHorizontal: 8,
+ },
+ negativeText: { color: '#EE4B5A' },
+ messageToast: {
+ position: 'absolute',
+ left: 20,
+ right: 20,
+ bottom: 24,
+ minHeight: 44,
+ borderRadius: 12,
+ borderWidth: StyleSheet.hairlineWidth,
+ paddingHorizontal: 14,
+ paddingVertical: 10,
+ zIndex: 30,
+ },
+ messageToastText: {
+ fontSize: 13,
+ lineHeight: 18,
+ fontFamily: Platform.OS === 'ios' ? 'Roobert' : 'Roobert-Regular',
+ fontWeight: '400',
+ },
+ diagnosticsPanel: {
+ position: 'absolute',
+ left: 8,
+ right: 8,
+ borderRadius: 12,
+ borderWidth: StyleSheet.hairlineWidth,
+ padding: 10,
+ zIndex: 40,
+ },
+ diagnosticsPanelDark: {
+ backgroundColor: '#171717F7',
+ borderColor: '#FFFFFF26',
+ },
+ diagnosticsPanelLight: {
+ backgroundColor: '#FFFFFFF7',
+ borderColor: '#11111126',
+ },
+ diagnosticsHeader: {
+ height: 24,
+ flexDirection: 'row',
+ justifyContent: 'space-between',
+ alignItems: 'center',
+ },
+ diagnosticsTitle: {
+ fontSize: 14,
+ lineHeight: 20,
+ fontFamily: Platform.OS === 'ios' ? 'Roobert' : 'Roobert-SemiBold',
+ fontWeight: '600',
+ },
+ diagnosticsControls: { gap: 6, paddingVertical: 6 },
+ diagnosticsText: {
+ fontSize: 11,
+ lineHeight: 15,
+ fontFamily: Platform.OS === 'ios' ? 'Roobert' : 'Roobert-Regular',
+ fontWeight: '400',
+ },
+ diagnosticsSource: {
+ fontSize: 10,
+ lineHeight: 14,
+ fontFamily: Platform.OS === 'ios' ? 'Roobert' : 'Roobert-Regular',
+ fontWeight: '400',
+ },
+});
diff --git a/example/react-native/pages/marketNativePagerApi.ts b/example/react-native/pages/marketNativePagerApi.ts
new file mode 100644
index 000000000..7e34be8d4
--- /dev/null
+++ b/example/react-native/pages/marketNativePagerApi.ts
@@ -0,0 +1,640 @@
+import { Platform } from 'react-native';
+
+import {
+ MARKET_PAGE_SIZE,
+ type IFetchUSMarketStatusResult,
+ MARKET_TIME_FRAME_BY_RANGE,
+} from './marketNativePagerData';
+
+import type {
+ MarketAsset,
+ MarketBanner,
+ MarketCategory,
+ MarketConfig,
+ MarketNetwork,
+ MarketPageDescriptor,
+ MarketPageResult,
+ MarketTimeRange,
+} from './marketNativePagerTypes';
+
+export const MARKET_API_BASE_URL = 'https://utility.onekeycn.com';
+export const MARKET_TEST_API_BASE_URL = 'https://utility.onekeytest.com';
+export const MARKET_REQUEST_VERSION = '6.15.0';
+const MARKET_WEB_PROXY_PREFIX = '/onekey-market-api';
+
+const marketPlatform =
+ Platform.OS === 'ios'
+ ? 'ios-store'
+ : Platform.OS === 'android'
+ ? 'android-googleplay'
+ : 'web';
+
+export class MarketApiError extends Error {
+ constructor(
+ message: string,
+ readonly sourceUrl: string,
+ readonly httpStatus?: number,
+ readonly responseCode?: number,
+ ) {
+ super(message);
+ this.name = 'MarketApiError';
+ }
+}
+
+export function getMarketRequestDiagnostics() {
+ return {
+ baseUrl: MARKET_API_BASE_URL,
+ stocksAndTopCoinsBaseUrl: MARKET_TEST_API_BASE_URL,
+ requestVersion: MARKET_REQUEST_VERSION,
+ requestPlatform: marketPlatform,
+ headerMode:
+ Platform.OS === 'web'
+ ? 'same-origin proxy: OneKeyWallet User-Agent + request version/platform'
+ : 'OneKeyWallet User-Agent + request version/platform',
+ } as const;
+}
+
+function requestHeaders(locale = 'zh-CN'): Record {
+ const headers: Record = {
+ Accept: 'application/json',
+ };
+ if (Platform.OS !== 'web') {
+ headers['User-Agent'] = `OneKeyWallet/${MARKET_REQUEST_VERSION}`;
+ headers['X-Onekey-Request-Version'] = MARKET_REQUEST_VERSION;
+ headers['X-Onekey-Request-Platform'] = marketPlatform;
+ headers['X-Onekey-Request-Locale'] = locale;
+ headers['X-Onekey-Request-Currency'] = 'usd';
+ }
+ return headers;
+}
+
+function queryString(params: Record) {
+ return Object.entries(params)
+ .filter(
+ (entry): entry is [string, string | number] => entry[1] !== undefined,
+ )
+ .map(
+ ([key, value]) =>
+ `${encodeURIComponent(key)}=${encodeURIComponent(String(value))}`,
+ )
+ .join('&');
+}
+
+async function requestOneKey(
+ path: string,
+ params: Record,
+ signal?: AbortSignal,
+ locale = 'zh-CN',
+ payload?: object,
+): Promise<{ data: T; sourceUrl: string }> {
+ const query = queryString(params);
+ const requestPath = `${path}${query ? `?${query}` : ''}`;
+ const baseUrl = path.startsWith('/swap/')
+ ? 'https://swap.onekeycn.com'
+ : path === '/utility/v1/stocks' || path === '/utility/v1/market/asset/list'
+ ? MARKET_TEST_API_BASE_URL
+ : MARKET_API_BASE_URL;
+ const sourceUrl = `${baseUrl}${requestPath}`;
+ // Production rejects or silently empties some browser-shaped requests. Keep
+ // the canonical URL in diagnostics while the example dev server injects the
+ // same public OneKey request headers used by native clients.
+ const fetchUrl =
+ Platform.OS === 'web'
+ ? `${MARKET_WEB_PROXY_PREFIX}${requestPath}${
+ query ? '&' : '?'
+ }locale=${encodeURIComponent(locale)}`
+ : sourceUrl;
+ const response = await fetch(fetchUrl, {
+ method: payload ? 'POST' : 'GET',
+ headers: {
+ ...requestHeaders(locale),
+ ...(payload ? { 'Content-Type': 'application/json' } : {}),
+ },
+ body: payload ? JSON.stringify(payload) : undefined,
+ signal,
+ });
+ if (!response.ok) {
+ throw new MarketApiError(
+ `Market HTTP ${response.status}`,
+ sourceUrl,
+ response.status,
+ );
+ }
+ const body = (await response.json()) as {
+ code?: number;
+ message?: string;
+ data?: T;
+ };
+ if (body.code !== 0 || body.data === undefined || body.data === null) {
+ throw new MarketApiError(
+ body.message || `Market response code ${String(body.code)}`,
+ sourceUrl,
+ response.status,
+ body.code,
+ );
+ }
+ return { data: body.data, sourceUrl };
+}
+
+type RawNetwork = {
+ networkId: string;
+ name: string;
+ logoUrl: string;
+};
+
+type RawStock = {
+ title?: string;
+ subtitle?: string;
+ source?: string;
+ sourceLogoUri?: string;
+ isOpen?: boolean;
+ isPaused?: boolean;
+ description?: string;
+};
+
+type RawToken = {
+ networkId?: string;
+ address?: string;
+ isNative?: boolean;
+ name: string;
+ symbol: string;
+ logoUrl?: string;
+ logoUrls?: string[];
+ price?: string;
+ priceChange24hPercent?: string;
+ priceChange5mPercent?: string;
+ priceChange1hPercent?: string;
+ priceChange4hPercent?: string;
+ volume24h?: string;
+ volume5m?: string;
+ volume1h?: string;
+ volume4h?: string;
+ marketCap?: string;
+ communityRecognized?: boolean;
+ stock?: RawStock;
+};
+
+type RawPerp = {
+ name: string;
+ displayName?: string;
+ tokenImageUrl?: string;
+ markPrice?: string;
+ change24hPercent?: string | number;
+ volume24h?: string;
+ maxLeverage?: number;
+};
+
+function normalizeToken(
+ item: RawToken,
+ sourceCategory: string,
+ networks: ReadonlyMap,
+ timeRange: MarketTimeRange = '24h',
+): MarketAsset {
+ const network = item.networkId ? networks.get(item.networkId) : undefined;
+ return {
+ key: `${item.networkId ?? 'unknown'}:${item.address ?? ''}`,
+ kind: item.stock ? 'stock' : 'token',
+ sourceCategory,
+ networkId: item.networkId,
+ networkName: network?.name,
+ networkLogoUrl: network?.logoUrl,
+ address: item.address,
+ isNative: item.isNative,
+ name: item.name,
+ symbol: item.symbol,
+ logoUrl: item.logoUrl,
+ logoUrls: item.logoUrls,
+ price: item.price,
+ // Like the source Market row's change24h/turnover fields, these display
+ // values follow the selected interval; watchlist calls keep the 24h default.
+ priceChange24hPercent: item.stock
+ ? item.priceChange24hPercent
+ : item[`priceChange${timeRange}Percent`] ?? item.priceChange24hPercent,
+ volume24h: item[`volume${timeRange}`] ?? item.volume24h,
+ marketCap: item.marketCap,
+ communityRecognized: item.communityRecognized,
+ stock: item.stock,
+ };
+}
+
+function normalizePerp(item: RawPerp, sourceCategory: string): MarketAsset {
+ const parts = item.name.split(':');
+ return {
+ key: `perps:${item.name}`,
+ kind: 'perp',
+ sourceCategory,
+ name: item.displayName || parts.at(-1) || item.name,
+ symbol: item.name,
+ logoUrl: item.tokenImageUrl,
+ price: item.markPrice,
+ priceChange24hPercent:
+ item.change24hPercent === undefined
+ ? undefined
+ : String(item.change24hPercent),
+ volume24h: item.volume24h,
+ maxLeverage: item.maxLeverage,
+ dexLabel: parts.length > 1 ? parts[0] : 'Hyperliquid',
+ };
+}
+
+export async function fetchMarketConfig(
+ signal?: AbortSignal,
+ locale = 'zh-CN',
+): Promise<{
+ config: MarketConfig;
+ sourceUrl: string;
+}> {
+ const response = await requestOneKey<{
+ spotCategories?: { type: string; name: string }[];
+ stockCategories?: { category: string; name: string }[];
+ perpsCategories?: { categoryId: string; name: string }[];
+ networkList?: RawNetwork[];
+ recommendTokens?: Array<{
+ chainId: string;
+ contractAddress: string;
+ name: string;
+ symbol: string;
+ logo: string;
+ communityRecognized?: boolean;
+ }>;
+ minLiquidity?: number;
+ }>('/utility/v2/market/basic-config', { configVersion: 2 }, signal, locale);
+ return {
+ sourceUrl: response.sourceUrl,
+ config: {
+ recommendTokens: (response.data.recommendTokens ?? []).map(item => ({
+ key: `${item.chainId}:${item.contractAddress}`,
+ kind: 'token',
+ sourceCategory: 'recommended',
+ networkId: item.chainId,
+ address: item.contractAddress,
+ isNative: item.contractAddress === '',
+ name: item.name,
+ symbol: item.symbol,
+ logoUrl: item.logo,
+ communityRecognized: item.communityRecognized,
+ networkLogoUrl: response.data.networkList?.find(
+ network => network.networkId === item.chainId,
+ )?.logoUrl,
+ })),
+ spotCategories: (response.data.spotCategories ?? []).map(item => ({
+ id: item.type,
+ name: item.name,
+ })),
+ stockCategories: (response.data.stockCategories ?? []).map(item => ({
+ id: item.category,
+ name: item.name,
+ })),
+ perpsCategories: (response.data.perpsCategories ?? []).map(item => ({
+ id: item.categoryId,
+ name: item.name,
+ })),
+ networks: response.data.networkList ?? [],
+ minLiquidity: response.data.minLiquidity ?? 5000,
+ },
+ };
+}
+
+export async function fetchMarketBanners(
+ signal?: AbortSignal,
+ locale = 'zh-CN',
+): Promise<{
+ banners: MarketBanner[];
+ sourceUrl: string;
+}> {
+ const response = await requestOneKey<{
+ data?: Array<{
+ _id: string;
+ type?: 'ticker' | 'perps';
+ title: string;
+ backgroundColor: string;
+ description?: { text: string; fontColor: string };
+ tokenLogos?: string[];
+ tokenListId: string;
+ }>;
+ }>('/utility/v2/market/banner/list', {}, signal, locale);
+ return {
+ sourceUrl: response.sourceUrl,
+ banners: (response.data.data ?? []).map(item => ({
+ id: item._id,
+ type: item.type,
+ title: item.title,
+ backgroundColor: item.backgroundColor,
+ description: item.description,
+ tokenLogos: item.tokenLogos ?? [],
+ tokenListId: item.tokenListId,
+ })),
+ };
+}
+
+export async function fetchMarketPage({
+ page,
+ pageNumber,
+ cursor,
+ config,
+ networkId,
+ timeRange,
+ stockCategory,
+ perpsCategory,
+ watchlistKeys,
+ forceFailure,
+ signal,
+ locale = 'zh-CN',
+}: {
+ page: MarketPageDescriptor;
+ pageNumber: number;
+ cursor?: string;
+ config: MarketConfig;
+ networkId?: string;
+ timeRange: MarketTimeRange;
+ stockCategory: string;
+ perpsCategory: string;
+ watchlistKeys?: readonly string[];
+ forceFailure?: boolean;
+ signal?: AbortSignal;
+ locale?: string;
+}): Promise {
+ if (forceFailure) {
+ await requestOneKey(
+ '/utility/v2/market/acceptance-intentional-404',
+ {},
+ signal,
+ locale,
+ );
+ }
+
+ const fetchedAt = new Date().toISOString();
+ if (page.kind === 'watchlist') {
+ const keys = [...new Set(watchlistKeys ?? [])];
+ const spotKeys = keys.filter(key => !key.startsWith('perps:'));
+ const networks = new Map(
+ config.networks.map(item => [item.networkId, item]),
+ );
+ const [spot, perps] = await Promise.all([
+ spotKeys.length
+ ? requestOneKey<{ list: (RawToken | null)[] }>(
+ '/utility/v2/market/token/list/batch',
+ {},
+ signal,
+ locale,
+ {
+ currency: 'usd',
+ tokenAddressList: spotKeys.map(key => {
+ const separator = key.indexOf(':');
+ const address = key.slice(separator + 1);
+ return {
+ chainId: key.slice(0, separator),
+ contractAddress: address,
+ isNative: address === '',
+ };
+ }),
+ },
+ )
+ : undefined,
+ keys.some(key => key.startsWith('perps:'))
+ ? fetchMarketPage({
+ page: {
+ key: 'watchlist-live-perps',
+ kind: 'perps',
+ name: 'Perps',
+ categoryId: 'perps',
+ },
+ pageNumber: 1,
+ config,
+ timeRange,
+ stockCategory: 'all',
+ perpsCategory: 'all',
+ signal,
+ locale,
+ })
+ : undefined,
+ ]);
+ // The original batch API preserves request order, including unavailable entries.
+ const spotItems = (spot?.data.list ?? []).flatMap((item, index) =>
+ item
+ ? [
+ {
+ ...normalizeToken(item, 'watchlist', networks),
+ key: spotKeys[index],
+ },
+ ]
+ : [],
+ );
+ const byKey = new Map(
+ [...spotItems, ...(perps?.items ?? [])].map(item => [item.key, item]),
+ );
+ const items = keys.flatMap(key => {
+ const item = byKey.get(key);
+ return item ? [item] : [];
+ });
+ return {
+ items,
+ total: items.length,
+ page: 1,
+ canLoadMore: false,
+ fetchedAt,
+ sourceUrl: [spot?.sourceUrl, perps?.sourceUrl]
+ .filter(Boolean)
+ .join(' | '),
+ note: `Requested all ${keys.length} watchlist identities; ${
+ keys.length - items.length
+ } unavailable in the public response.`,
+ };
+ }
+
+ if (page.kind === 'perps') {
+ const response = await requestOneKey<{
+ tokens?: RawPerp[];
+ updatedAt?: number;
+ }>(
+ '/utility/v2/market/perps/token-list',
+ { category: perpsCategory, assetTypeVersion: 2 },
+ signal,
+ locale,
+ );
+ const items = (response.data.tokens ?? []).map(item =>
+ normalizePerp(item, perpsCategory),
+ );
+ return {
+ items,
+ total: items.length,
+ page: 1,
+ canLoadMore: false,
+ fetchedAt,
+ sourceUrl: response.sourceUrl,
+ };
+ }
+
+ if (page.kind === 'topCoins') {
+ const response = await requestOneKey<{
+ list?: Array<{
+ assetId: string;
+ name?: string;
+ symbol: string;
+ logoUrl?: string;
+ price?: string;
+ priceChange24hPercent?: string;
+ marketCap?: string;
+ volume24h?: string;
+ }>;
+ total?: number;
+ }>(
+ '/utility/v1/market/asset/list',
+ { currency: 'usd', type: 'top_coins', page: pageNumber, limit: 100 },
+ signal,
+ locale,
+ );
+ const items: MarketAsset[] = (response.data.list ?? []).map(item => ({
+ key: `asset:${item.assetId}`,
+ kind: 'token',
+ sourceCategory: 'top_coins',
+ name: item.name || item.symbol,
+ symbol: item.symbol,
+ logoUrl: item.logoUrl,
+ price: item.price,
+ priceChange24hPercent: item.priceChange24hPercent,
+ marketCap: item.marketCap,
+ volume24h: item.volume24h,
+ }));
+ return {
+ items,
+ total: response.data.total ?? items.length,
+ page: pageNumber,
+ canLoadMore:
+ items.length > 0 &&
+ (response.data.total === undefined
+ ? items.length >= 100
+ : pageNumber * 100 < response.data.total),
+ fetchedAt,
+ sourceUrl: response.sourceUrl,
+ };
+ }
+
+ if (page.categoryId === 'stocks' && stockCategory !== '__token-list__') {
+ const response = await requestOneKey<{
+ items?: Array<{
+ stockId: string;
+ symbol: string;
+ name: string;
+ logoUrl?: string;
+ price?: string;
+ priceChange24hPercent?: string;
+ marketCap?: string;
+ volume24h?: string;
+ }>;
+ nextCursor?: string;
+ total?: number;
+ }>(
+ '/utility/v1/stocks',
+ {
+ limit: MARKET_PAGE_SIZE,
+ cursor,
+ category: stockCategory === 'all' ? undefined : stockCategory,
+ sortBy: 'default',
+ sortType: 'asc',
+ },
+ signal,
+ locale,
+ );
+ const items: MarketAsset[] = (response.data.items ?? []).map(item => ({
+ key: `stock:${item.stockId}`,
+ kind: 'stock',
+ sourceCategory: page.categoryId,
+ name: item.name,
+ symbol: item.symbol,
+ logoUrl: item.logoUrl,
+ price: item.price,
+ priceChange24hPercent: item.priceChange24hPercent,
+ marketCap: item.marketCap,
+ volume24h: item.volume24h,
+ stock: { subtitle: item.name },
+ }));
+ return {
+ items,
+ total: response.data.total ?? items.length,
+ page: pageNumber,
+ canLoadMore: Boolean(
+ response.data.nextCursor && response.data.nextCursor !== cursor,
+ ),
+ nextCursor: response.data.nextCursor,
+ fetchedAt,
+ sourceUrl: response.sourceUrl,
+ };
+ }
+
+ const networks = new Map(config.networks.map(item => [item.networkId, item]));
+ const response = await requestOneKey<{
+ list?: RawToken[];
+ total?: number;
+ }>(
+ '/utility/v2/market/token/list',
+ {
+ networkId: networkId || undefined,
+ sortBy: 'v24hUSD',
+ sortType: 'desc',
+ page: pageNumber,
+ limit: MARKET_PAGE_SIZE,
+ minLiquidity: config.minLiquidity,
+ type: page.categoryId,
+ category:
+ page.categoryId === 'stocks' &&
+ stockCategory !== 'all' &&
+ stockCategory !== '__token-list__'
+ ? stockCategory
+ : undefined,
+ timeFrame: MARKET_TIME_FRAME_BY_RANGE[timeRange],
+ currency: 'usd',
+ },
+ signal,
+ locale,
+ );
+ const items = (response.data.list ?? []).map(item =>
+ normalizeToken(item, page.categoryId, networks, timeRange),
+ );
+ const total = response.data.total ?? items.length;
+ return {
+ items,
+ total,
+ page: pageNumber,
+ // Production currently ignores limit=20 and returns all 101 rows on page
+ // 1, then an empty page 2. Keep page 2 reachable so the example verifies
+ // the real response-driven pagination/end-state contract.
+ canLoadMore:
+ items.length > 0 &&
+ (items.length >= MARKET_PAGE_SIZE || items.length < total),
+ fetchedAt,
+ sourceUrl: response.sourceUrl,
+ note:
+ pageNumber === 1 && items.length > MARKET_PAGE_SIZE
+ ? `Server returned ${items.length} rows despite limit=${MARKET_PAGE_SIZE}.`
+ : undefined,
+ };
+}
+
+export function defaultPerpsCategory(categories: readonly MarketCategory[]) {
+ return (
+ categories.find(item => item.id === 'hot')?.id ?? categories[0]?.id ?? 'hot'
+ );
+}
+
+// Same unavailable fallback as ServiceSwap.fetchCheckUSMarketStatus.
+export async function fetchUSMarketStatus(
+ signal?: AbortSignal,
+): Promise {
+ try {
+ return (
+ await requestOneKey(
+ '/swap/v1/check/us-market-status',
+ {},
+ signal,
+ )
+ ).data;
+ } catch {
+ return {
+ open: false,
+ session: 'CLOSED',
+ reason: 'market-status-unavailable',
+ unavailable: true,
+ };
+ }
+}
diff --git a/example/react-native/pages/marketNativePagerAssets.ts b/example/react-native/pages/marketNativePagerAssets.ts
new file mode 100644
index 000000000..aa1923b44
--- /dev/null
+++ b/example/react-native/pages/marketNativePagerAssets.ts
@@ -0,0 +1,226 @@
+// SVG paths copied from app-monorepo 551eb38fc1ec, packages/components/src/primitives/Icon/react.
+// Bundled SVG files use the existing native file decoder on both platforms.
+export const MARKET_SOURCE_ICONS = {
+ search: {
+ dark: require('./marketNativePagerAssets/search-dark.svg'),
+ light: require('./marketNativePagerAssets/search-light.svg'),
+ },
+ pencil: {
+ dark: require('./marketNativePagerAssets/pencil-dark.svg'),
+ light: require('./marketNativePagerAssets/pencil-light.svg'),
+ },
+ chevronDown: {
+ dark: require('./marketNativePagerAssets/chevronDown-dark.svg'),
+ light: require('./marketNativePagerAssets/chevronDown-light.svg'),
+ },
+ check: {
+ dark: require('./marketNativePagerAssets/check-dark.svg'),
+ light: require('./marketNativePagerAssets/check-light.svg'),
+ },
+ allNetworks: {
+ dark: require('./marketNativePagerAssets/allNetworks-dark.svg'),
+ light: require('./marketNativePagerAssets/allNetworks-light.svg'),
+ },
+ close: {
+ dark: require('./marketNativePagerAssets/close-dark.svg'),
+ light: require('./marketNativePagerAssets/close-light.svg'),
+ },
+ checkRadio: {
+ dark: require('./marketNativePagerAssets/checkRadio-dark.svg'),
+ light: require('./marketNativePagerAssets/checkRadio-light.svg'),
+ },
+ noResults: {
+ dark: require('./marketNativePagerAssets/noResults-dark.svg'),
+ light: require('./marketNativePagerAssets/noResults-light.svg'),
+ },
+ alignTop: {
+ dark: require('./marketNativePagerAssets/alignTop-dark.svg'),
+ light: require('./marketNativePagerAssets/alignTop-light.svg'),
+ },
+ star: {
+ dark: require('./marketNativePagerAssets/star-dark.svg'),
+ light: require('./marketNativePagerAssets/star-light.svg'),
+ },
+ recognized: {
+ dark: require('./marketNativePagerAssets/recognized-dark.svg'),
+ light: require('./marketNativePagerAssets/recognized-light.svg'),
+ },
+ statuspreMarket: {
+ dark: require('./marketNativePagerAssets/status-preMarket-dark.svg'),
+ light: require('./marketNativePagerAssets/status-preMarket-light.svg'),
+ },
+ statusopen: {
+ dark: require('./marketNativePagerAssets/status-open-dark.svg'),
+ light: require('./marketNativePagerAssets/status-open-light.svg'),
+ },
+ statuspostMarket: {
+ dark: require('./marketNativePagerAssets/status-postMarket-dark.svg'),
+ light: require('./marketNativePagerAssets/status-postMarket-light.svg'),
+ },
+ statusovernight: {
+ dark: require('./marketNativePagerAssets/status-overnight-dark.svg'),
+ light: require('./marketNativePagerAssets/status-overnight-light.svg'),
+ },
+ statusclosed: {
+ dark: require('./marketNativePagerAssets/status-closed-dark.svg'),
+ light: require('./marketNativePagerAssets/status-closed-light.svg'),
+ },
+ statusopen247: {
+ dark: require('./marketNativePagerAssets/status-open247-dark.svg'),
+ light: require('./marketNativePagerAssets/status-open247-light.svg'),
+ },
+ statusawaitingOpen: {
+ dark: require('./marketNativePagerAssets/status-awaitingOpen-dark.svg'),
+ light: require('./marketNativePagerAssets/status-awaitingOpen-light.svg'),
+ },
+ statushalted: {
+ dark: require('./marketNativePagerAssets/status-halted-dark.svg'),
+ light: require('./marketNativePagerAssets/status-halted-light.svg'),
+ },
+} as const;
+
+// Original locale strings from app-monorepo, kept verbatim.
+export const MARKET_SOURCE_COPY = {
+ 'zh-CN': {
+ community: '较高社区认可度',
+ ondo: '由 Ondo Finance 代币化发行',
+ xstock: '由 xStock 代币化发行',
+ tag: '标签',
+ addTokens: '添加 {number} 个代币',
+ xyz: 'xyz 表示来自 Hyperliquid 上 xyz HIP-3 DEX 的市场,涵盖股票、大宗商品等资产类别。',
+ para: 'para 表示来自 Hyperliquid 上 Paragon HIP-3 DEX 的市场,涵盖股票、加密指数和新兴主题。',
+ io: 'io 表示来自 Hyperliquid 上 Entropy HIP-3 DEX 的市场,涵盖 Pre-IPO AI 公司和上市科技股。',
+ },
+ 'en-US': {
+ community: 'Community-recognized',
+ ondo: 'Tokenized by Ondo Finance',
+ xstock: 'Tokenized by xStock',
+ tag: 'Tag',
+ addTokens: 'Add {number} tokens',
+ xyz: 'xyz identifies markets from the xyz HIP-3 DEX on Hyperliquid, including equities, commodities, and other asset classes.',
+ para: 'para identifies markets from the Paragon HIP-3 DEX on Hyperliquid, including equities, crypto indices, and emerging themes.',
+ io: 'io identifies markets from the Entropy HIP-3 DEX on Hyperliquid, including pre-IPO AI companies and listed technology equities.',
+ },
+} as const;
+
+// app-monorepo presetNetworks entries absent from the captured Market filter config.
+export const MARKET_SOURCE_NETWORK_LOGOS: Readonly> = {
+ 'btc--0': 'https://uni.onekey-asset.com/static/chain/btc.png',
+ 'tron--0x2b6653dc': 'https://uni.onekey-asset.com/static/chain/tron.png',
+};
+
+// StockIsOpenBadge tokens, strings and icons from the same source revision.
+export const MARKET_SOURCE_STATUS_CHIPS = {
+ preMarket: {
+ text: {
+ 'en-US': 'Pre-market',
+ 'zh-CN': '盘前',
+ },
+ dark: {
+ backgroundColor: '#ffaa001e',
+ color: '#fee949f5',
+ },
+ light: {
+ backgroundColor: '#ffee0047',
+ color: '#9e6c00',
+ },
+ },
+ open: {
+ text: {
+ 'en-US': 'Regular market',
+ 'zh-CN': '盘中',
+ },
+ dark: {
+ backgroundColor: '#22ff991e',
+ color: '#46fea5d4',
+ },
+ light: {
+ backgroundColor: '#00a43319',
+ color: '#00713fde',
+ },
+ },
+ postMarket: {
+ text: {
+ 'en-US': 'Post-market',
+ 'zh-CN': '盘后',
+ },
+ dark: {
+ backgroundColor: '#ffaa001e',
+ color: '#fee949f5',
+ },
+ light: {
+ backgroundColor: '#ffee0047',
+ color: '#9e6c00',
+ },
+ },
+ overnight: {
+ text: {
+ 'en-US': 'Overnight',
+ 'zh-CN': '隔夜',
+ },
+ dark: {
+ backgroundColor: '#0077ff3a',
+ color: '#70b8ff',
+ },
+ light: {
+ backgroundColor: '#008ff519',
+ color: '#006dcbf2',
+ },
+ },
+ closed: {
+ text: {
+ 'en-US': 'Closed',
+ 'zh-CN': '休市',
+ },
+ dark: {
+ backgroundColor: '#ffffff12',
+ color: '#ffffffaf',
+ },
+ light: {
+ backgroundColor: '#0000000f',
+ color: '#0000009b',
+ },
+ },
+ open247: {
+ text: {
+ 'en-US': '24/7',
+ 'zh-CN': '24/7',
+ },
+ dark: {
+ backgroundColor: '#ffffff12',
+ color: '#ffffffaf',
+ },
+ light: {
+ backgroundColor: '#0000000f',
+ color: '#0000009b',
+ },
+ },
+ awaitingOpen: {
+ text: {
+ 'en-US': 'Awaiting Open',
+ 'zh-CN': '待开盘',
+ },
+ dark: {
+ backgroundColor: '#ffaa001e',
+ color: '#fee949f5',
+ },
+ light: {
+ backgroundColor: '#ffee0047',
+ color: '#9e6c00',
+ },
+ },
+ halted: {
+ text: {
+ 'en-US': 'Halted',
+ 'zh-CN': '暂停',
+ },
+ dark: {
+ backgroundColor: '#ff173f2d',
+ color: '#ff9592',
+ },
+ light: {
+ backgroundColor: '#f3000d14',
+ color: '#c40006d3',
+ },
+ },
+} as const;
diff --git a/example/react-native/pages/marketNativePagerAssets/alignTop-dark.svg b/example/react-native/pages/marketNativePagerAssets/alignTop-dark.svg
new file mode 100644
index 000000000..ab43f5068
--- /dev/null
+++ b/example/react-native/pages/marketNativePagerAssets/alignTop-dark.svg
@@ -0,0 +1,5 @@
+
diff --git a/example/react-native/pages/marketNativePagerAssets/alignTop-light.svg b/example/react-native/pages/marketNativePagerAssets/alignTop-light.svg
new file mode 100644
index 000000000..ab43f5068
--- /dev/null
+++ b/example/react-native/pages/marketNativePagerAssets/alignTop-light.svg
@@ -0,0 +1,5 @@
+
diff --git a/example/react-native/pages/marketNativePagerAssets/allNetworks-dark.svg b/example/react-native/pages/marketNativePagerAssets/allNetworks-dark.svg
new file mode 100644
index 000000000..e74f903e2
--- /dev/null
+++ b/example/react-native/pages/marketNativePagerAssets/allNetworks-dark.svg
@@ -0,0 +1 @@
+
diff --git a/example/react-native/pages/marketNativePagerAssets/allNetworks-light.svg b/example/react-native/pages/marketNativePagerAssets/allNetworks-light.svg
new file mode 100644
index 000000000..e0d04c6c6
--- /dev/null
+++ b/example/react-native/pages/marketNativePagerAssets/allNetworks-light.svg
@@ -0,0 +1 @@
+
diff --git a/example/react-native/pages/marketNativePagerAssets/check-dark.svg b/example/react-native/pages/marketNativePagerAssets/check-dark.svg
new file mode 100644
index 000000000..172c6339a
--- /dev/null
+++ b/example/react-native/pages/marketNativePagerAssets/check-dark.svg
@@ -0,0 +1 @@
+
diff --git a/example/react-native/pages/marketNativePagerAssets/check-light.svg b/example/react-native/pages/marketNativePagerAssets/check-light.svg
new file mode 100644
index 000000000..d8f6ee52f
--- /dev/null
+++ b/example/react-native/pages/marketNativePagerAssets/check-light.svg
@@ -0,0 +1 @@
+
diff --git a/example/react-native/pages/marketNativePagerAssets/checkRadio-dark.svg b/example/react-native/pages/marketNativePagerAssets/checkRadio-dark.svg
new file mode 100644
index 000000000..bee55feec
--- /dev/null
+++ b/example/react-native/pages/marketNativePagerAssets/checkRadio-dark.svg
@@ -0,0 +1 @@
+
diff --git a/example/react-native/pages/marketNativePagerAssets/checkRadio-light.svg b/example/react-native/pages/marketNativePagerAssets/checkRadio-light.svg
new file mode 100644
index 000000000..2c369504f
--- /dev/null
+++ b/example/react-native/pages/marketNativePagerAssets/checkRadio-light.svg
@@ -0,0 +1 @@
+
diff --git a/example/react-native/pages/marketNativePagerAssets/chevronDown-dark.svg b/example/react-native/pages/marketNativePagerAssets/chevronDown-dark.svg
new file mode 100644
index 000000000..34e6fcced
--- /dev/null
+++ b/example/react-native/pages/marketNativePagerAssets/chevronDown-dark.svg
@@ -0,0 +1 @@
+
diff --git a/example/react-native/pages/marketNativePagerAssets/chevronDown-light.svg b/example/react-native/pages/marketNativePagerAssets/chevronDown-light.svg
new file mode 100644
index 000000000..93be810d8
--- /dev/null
+++ b/example/react-native/pages/marketNativePagerAssets/chevronDown-light.svg
@@ -0,0 +1 @@
+
diff --git a/example/react-native/pages/marketNativePagerAssets/close-dark.svg b/example/react-native/pages/marketNativePagerAssets/close-dark.svg
new file mode 100644
index 000000000..1a49a7653
--- /dev/null
+++ b/example/react-native/pages/marketNativePagerAssets/close-dark.svg
@@ -0,0 +1 @@
+
diff --git a/example/react-native/pages/marketNativePagerAssets/close-light.svg b/example/react-native/pages/marketNativePagerAssets/close-light.svg
new file mode 100644
index 000000000..4b3af5c15
--- /dev/null
+++ b/example/react-native/pages/marketNativePagerAssets/close-light.svg
@@ -0,0 +1 @@
+
diff --git a/example/react-native/pages/marketNativePagerAssets/noResults-dark.svg b/example/react-native/pages/marketNativePagerAssets/noResults-dark.svg
new file mode 100644
index 000000000..83965cd20
--- /dev/null
+++ b/example/react-native/pages/marketNativePagerAssets/noResults-dark.svg
@@ -0,0 +1 @@
+
diff --git a/example/react-native/pages/marketNativePagerAssets/noResults-light.svg b/example/react-native/pages/marketNativePagerAssets/noResults-light.svg
new file mode 100644
index 000000000..88ac2cede
--- /dev/null
+++ b/example/react-native/pages/marketNativePagerAssets/noResults-light.svg
@@ -0,0 +1 @@
+
diff --git a/example/react-native/pages/marketNativePagerAssets/pencil-dark.svg b/example/react-native/pages/marketNativePagerAssets/pencil-dark.svg
new file mode 100644
index 000000000..885162f78
--- /dev/null
+++ b/example/react-native/pages/marketNativePagerAssets/pencil-dark.svg
@@ -0,0 +1 @@
+
diff --git a/example/react-native/pages/marketNativePagerAssets/pencil-light.svg b/example/react-native/pages/marketNativePagerAssets/pencil-light.svg
new file mode 100644
index 000000000..5a41f5ce8
--- /dev/null
+++ b/example/react-native/pages/marketNativePagerAssets/pencil-light.svg
@@ -0,0 +1 @@
+
diff --git a/example/react-native/pages/marketNativePagerAssets/recognized-dark.svg b/example/react-native/pages/marketNativePagerAssets/recognized-dark.svg
new file mode 100644
index 000000000..61d0f5598
--- /dev/null
+++ b/example/react-native/pages/marketNativePagerAssets/recognized-dark.svg
@@ -0,0 +1,6 @@
+
diff --git a/example/react-native/pages/marketNativePagerAssets/recognized-light.svg b/example/react-native/pages/marketNativePagerAssets/recognized-light.svg
new file mode 100644
index 000000000..f7042793e
--- /dev/null
+++ b/example/react-native/pages/marketNativePagerAssets/recognized-light.svg
@@ -0,0 +1,6 @@
+
diff --git a/example/react-native/pages/marketNativePagerAssets/search-dark.svg b/example/react-native/pages/marketNativePagerAssets/search-dark.svg
new file mode 100644
index 000000000..ea76214c1
--- /dev/null
+++ b/example/react-native/pages/marketNativePagerAssets/search-dark.svg
@@ -0,0 +1 @@
+
diff --git a/example/react-native/pages/marketNativePagerAssets/search-light.svg b/example/react-native/pages/marketNativePagerAssets/search-light.svg
new file mode 100644
index 000000000..d206903ad
--- /dev/null
+++ b/example/react-native/pages/marketNativePagerAssets/search-light.svg
@@ -0,0 +1 @@
+
diff --git a/example/react-native/pages/marketNativePagerAssets/star-dark.svg b/example/react-native/pages/marketNativePagerAssets/star-dark.svg
new file mode 100644
index 000000000..c7766db30
--- /dev/null
+++ b/example/react-native/pages/marketNativePagerAssets/star-dark.svg
@@ -0,0 +1 @@
+
diff --git a/example/react-native/pages/marketNativePagerAssets/star-light.svg b/example/react-native/pages/marketNativePagerAssets/star-light.svg
new file mode 100644
index 000000000..c7766db30
--- /dev/null
+++ b/example/react-native/pages/marketNativePagerAssets/star-light.svg
@@ -0,0 +1 @@
+
diff --git a/example/react-native/pages/marketNativePagerAssets/status-awaitingOpen-dark.svg b/example/react-native/pages/marketNativePagerAssets/status-awaitingOpen-dark.svg
new file mode 100644
index 000000000..b2b18c0fc
--- /dev/null
+++ b/example/react-native/pages/marketNativePagerAssets/status-awaitingOpen-dark.svg
@@ -0,0 +1,12 @@
+
diff --git a/example/react-native/pages/marketNativePagerAssets/status-awaitingOpen-light.svg b/example/react-native/pages/marketNativePagerAssets/status-awaitingOpen-light.svg
new file mode 100644
index 000000000..de541ef73
--- /dev/null
+++ b/example/react-native/pages/marketNativePagerAssets/status-awaitingOpen-light.svg
@@ -0,0 +1,12 @@
+
diff --git a/example/react-native/pages/marketNativePagerAssets/status-closed-dark.svg b/example/react-native/pages/marketNativePagerAssets/status-closed-dark.svg
new file mode 100644
index 000000000..91f3f4e45
--- /dev/null
+++ b/example/react-native/pages/marketNativePagerAssets/status-closed-dark.svg
@@ -0,0 +1,7 @@
+
diff --git a/example/react-native/pages/marketNativePagerAssets/status-closed-light.svg b/example/react-native/pages/marketNativePagerAssets/status-closed-light.svg
new file mode 100644
index 000000000..9dcd4d99a
--- /dev/null
+++ b/example/react-native/pages/marketNativePagerAssets/status-closed-light.svg
@@ -0,0 +1,7 @@
+
diff --git a/example/react-native/pages/marketNativePagerAssets/status-halted-dark.svg b/example/react-native/pages/marketNativePagerAssets/status-halted-dark.svg
new file mode 100644
index 000000000..62ddc9446
--- /dev/null
+++ b/example/react-native/pages/marketNativePagerAssets/status-halted-dark.svg
@@ -0,0 +1,10 @@
+
diff --git a/example/react-native/pages/marketNativePagerAssets/status-halted-light.svg b/example/react-native/pages/marketNativePagerAssets/status-halted-light.svg
new file mode 100644
index 000000000..b9e781f8d
--- /dev/null
+++ b/example/react-native/pages/marketNativePagerAssets/status-halted-light.svg
@@ -0,0 +1,10 @@
+
diff --git a/example/react-native/pages/marketNativePagerAssets/status-open-dark.svg b/example/react-native/pages/marketNativePagerAssets/status-open-dark.svg
new file mode 100644
index 000000000..0e8d40e76
--- /dev/null
+++ b/example/react-native/pages/marketNativePagerAssets/status-open-dark.svg
@@ -0,0 +1,12 @@
+
diff --git a/example/react-native/pages/marketNativePagerAssets/status-open-light.svg b/example/react-native/pages/marketNativePagerAssets/status-open-light.svg
new file mode 100644
index 000000000..ae1f1eb06
--- /dev/null
+++ b/example/react-native/pages/marketNativePagerAssets/status-open-light.svg
@@ -0,0 +1,12 @@
+
diff --git a/example/react-native/pages/marketNativePagerAssets/status-open247-dark.svg b/example/react-native/pages/marketNativePagerAssets/status-open247-dark.svg
new file mode 100644
index 000000000..1ce231572
--- /dev/null
+++ b/example/react-native/pages/marketNativePagerAssets/status-open247-dark.svg
@@ -0,0 +1,11 @@
+
diff --git a/example/react-native/pages/marketNativePagerAssets/status-open247-light.svg b/example/react-native/pages/marketNativePagerAssets/status-open247-light.svg
new file mode 100644
index 000000000..dbfd8cb9f
--- /dev/null
+++ b/example/react-native/pages/marketNativePagerAssets/status-open247-light.svg
@@ -0,0 +1,11 @@
+
diff --git a/example/react-native/pages/marketNativePagerAssets/status-overnight-dark.svg b/example/react-native/pages/marketNativePagerAssets/status-overnight-dark.svg
new file mode 100644
index 000000000..2cd177cda
--- /dev/null
+++ b/example/react-native/pages/marketNativePagerAssets/status-overnight-dark.svg
@@ -0,0 +1,10 @@
+
diff --git a/example/react-native/pages/marketNativePagerAssets/status-overnight-light.svg b/example/react-native/pages/marketNativePagerAssets/status-overnight-light.svg
new file mode 100644
index 000000000..cefc1ca3b
--- /dev/null
+++ b/example/react-native/pages/marketNativePagerAssets/status-overnight-light.svg
@@ -0,0 +1,10 @@
+
diff --git a/example/react-native/pages/marketNativePagerAssets/status-postMarket-dark.svg b/example/react-native/pages/marketNativePagerAssets/status-postMarket-dark.svg
new file mode 100644
index 000000000..3fb62102a
--- /dev/null
+++ b/example/react-native/pages/marketNativePagerAssets/status-postMarket-dark.svg
@@ -0,0 +1,6 @@
+
diff --git a/example/react-native/pages/marketNativePagerAssets/status-postMarket-light.svg b/example/react-native/pages/marketNativePagerAssets/status-postMarket-light.svg
new file mode 100644
index 000000000..1cddd27d2
--- /dev/null
+++ b/example/react-native/pages/marketNativePagerAssets/status-postMarket-light.svg
@@ -0,0 +1,6 @@
+
diff --git a/example/react-native/pages/marketNativePagerAssets/status-preMarket-dark.svg b/example/react-native/pages/marketNativePagerAssets/status-preMarket-dark.svg
new file mode 100644
index 000000000..cb3ef8d9c
--- /dev/null
+++ b/example/react-native/pages/marketNativePagerAssets/status-preMarket-dark.svg
@@ -0,0 +1,6 @@
+
diff --git a/example/react-native/pages/marketNativePagerAssets/status-preMarket-light.svg b/example/react-native/pages/marketNativePagerAssets/status-preMarket-light.svg
new file mode 100644
index 000000000..c8cf971ee
--- /dev/null
+++ b/example/react-native/pages/marketNativePagerAssets/status-preMarket-light.svg
@@ -0,0 +1,6 @@
+
diff --git a/example/react-native/pages/marketNativePagerData.ts b/example/react-native/pages/marketNativePagerData.ts
new file mode 100644
index 000000000..c9afd890e
--- /dev/null
+++ b/example/react-native/pages/marketNativePagerData.ts
@@ -0,0 +1,797 @@
+import type {
+ MarketAsset,
+ MarketCategory,
+ MarketConfig,
+ MarketPageDescriptor,
+ MarketPageKind,
+ MarketReplaySnapshot,
+ MarketScenario,
+} from './marketNativePagerTypes';
+
+export const MARKET_PAGE_SIZE = 20;
+
+export const MARKET_TIME_FRAME_BY_RANGE = {
+ '5m': '1',
+ '1h': '2',
+ '4h': '3',
+ '24h': '4',
+} as const;
+
+export function buildMarketPages(
+ config: MarketConfig,
+ locale: 'zh-CN' | 'en-US' = 'zh-CN',
+): MarketPageDescriptor[] {
+ const pages: MarketPageDescriptor[] = [
+ {
+ key: 'watchlist',
+ kind: 'watchlist',
+ name: locale === 'en-US' ? 'Favorites' : '自选',
+ categoryId: 'watchlist',
+ },
+ ...config.spotCategories.map(category => ({
+ key: `spot:${category.id}`,
+ kind: (category.id === 'top_coins'
+ ? 'topCoins'
+ : 'spot') as MarketPageKind,
+ name: category.name,
+ categoryId: category.id,
+ })),
+ ];
+
+ if (!pages.some(page => page.categoryId === 'top_coins')) {
+ pages.push({
+ key: 'top-coins',
+ kind: 'topCoins',
+ name: locale === 'en-US' ? 'Top coins' : '主流币',
+ categoryId: 'top_coins',
+ });
+ }
+
+ if (config.perpsCategories.length > 0) {
+ pages.push({
+ key: 'perps',
+ kind: 'perps',
+ name: locale === 'en-US' ? 'Perps' : '合约',
+ categoryId: 'perps',
+ });
+ }
+
+ return pages;
+}
+
+export function replayItemsForPage(
+ snapshot: MarketReplaySnapshot,
+ page: MarketPageDescriptor,
+ watchlistKeys: readonly string[],
+ selectedPerpsCategory: string,
+ filters?: { networkId: string; timeRange: string; stockCategory: string },
+): readonly MarketAsset[] {
+ if (page.kind === 'watchlist') {
+ const byKey = new Map(
+ [
+ ...Object.values(snapshot.spotQueries ?? {}).flat(),
+ ...Object.values(snapshot.spot).flat(),
+ ...Object.values(snapshot.perps).flat(),
+ ...(snapshot.config.recommendTokens ?? []),
+ ].map(item => [item.key, item] as const),
+ );
+ return watchlistKeys.flatMap(key => {
+ const item = byKey.get(key);
+ return item ? [item] : [];
+ });
+ }
+ if (page.kind === 'perps') {
+ return snapshot.perps[selectedPerpsCategory] ?? [];
+ }
+ if (page.kind === 'topCoins') {
+ return snapshot.spot.top_coins ?? [];
+ }
+ if (page.categoryId === 'stocks' && snapshot.stocks) {
+ return snapshot.stocks[filters?.stockCategory ?? 'all'] ?? [];
+ }
+ if (filters && snapshot.spotQueries) {
+ const key = [
+ page.categoryId,
+ page.categoryId === 'stocks' ? '' : filters.networkId,
+ filters.timeRange,
+ page.categoryId === 'stocks' ? filters.stockCategory : 'all',
+ ].join('|');
+ return snapshot.spotQueries[key] ?? [];
+ }
+ const items = snapshot.spot[page.categoryId] ?? [];
+ return filters?.networkId
+ ? items.filter(item => item.networkId === filters.networkId)
+ : items;
+}
+
+export function applyMarketScenario(
+ items: readonly MarketAsset[],
+ scenario: MarketScenario,
+): readonly MarketAsset[] {
+ if (scenario === 'empty' || scenario === 'error') return [];
+ if (scenario === 'short') return items.slice(0, 2);
+ return items;
+}
+
+export function categoriesForPage(
+ page: MarketPageDescriptor,
+ config: MarketConfig,
+ locale: 'zh-CN' | 'en-US' = 'zh-CN',
+): readonly MarketCategory[] {
+ if (page.kind === 'watchlist') {
+ return [
+ { id: 'all', name: locale === 'en-US' ? 'All' : '全部' },
+ { id: 'spot', name: locale === 'en-US' ? 'Spot' : '现货' },
+ { id: 'perps', name: locale === 'en-US' ? 'Perps' : '合约' },
+ ];
+ }
+ if (page.kind === 'perps') return config.perpsCategories;
+ if (page.categoryId === 'stocks') return config.stockCategories;
+ return [];
+}
+
+export function filterWatchlist(
+ items: readonly MarketAsset[],
+ filter: string,
+): readonly MarketAsset[] {
+ if (filter === 'spot') return items.filter(item => item.kind !== 'perp');
+ if (filter === 'perps') return items.filter(item => item.kind === 'perp');
+ return items;
+}
+
+export function filterMarketSearch(
+ items: readonly MarketAsset[],
+ query: string,
+): readonly MarketAsset[] {
+ const normalized = query.trim().toLocaleLowerCase();
+ if (!normalized) return items;
+ return items.filter(item =>
+ [item.symbol, item.name, item.stock?.subtitle, item.address]
+ .filter(Boolean)
+ .some(value => String(value).toLocaleLowerCase().includes(normalized)),
+ );
+}
+
+export function kindLabel(kind: MarketPageKind) {
+ switch (kind) {
+ case 'watchlist':
+ return 'local-watchlist';
+ case 'perps':
+ return 'perps';
+ case 'topCoins':
+ return 'top-coins';
+ default:
+ return 'spot';
+ }
+}
+
+export function formatCompactUsd(value: string | undefined): string {
+ const amount = Number(value);
+ if (!Number.isFinite(amount)) return '--';
+ const absolute = Math.abs(amount);
+ const units = [
+ { threshold: 1e12, suffix: 'T' },
+ { threshold: 1e9, suffix: 'B' },
+ { threshold: 1e6, suffix: 'M' },
+ { threshold: 1e3, suffix: 'K' },
+ ];
+ const unit = units.find(item => absolute >= item.threshold);
+ if (!unit) return `$${amount.toFixed(absolute < 1 ? 2 : 0)}`;
+ const compact = amount / unit.threshold;
+ const digits = 2;
+ return `$${compact
+ .toFixed(digits)
+ .replace(/(\.[0-9]*?)0+$/, '$1')
+ .replace(/\.$/, '')}${unit.suffix}`;
+}
+
+export function formatPrice(value: string | undefined): string {
+ const amount = Number(value);
+ if (!Number.isFinite(amount)) return '--';
+ if (amount === 0) return '$0';
+ const absolute = Math.abs(amount);
+ const zeros =
+ absolute < 1 ? Math.max(0, -Math.floor(Math.log10(absolute)) - 1) : 0;
+ const maximumFractionDigits = absolute >= 1 ? 2 : Math.min(20, 4 + zeros);
+ return `$${amount.toLocaleString('en-US', {
+ minimumFractionDigits: absolute >= 1 ? 2 : 0,
+ maximumFractionDigits,
+ })}`;
+}
+
+export function formatChange(value: string | undefined): string {
+ const amount = Number(value);
+ if (!Number.isFinite(amount)) return '--';
+ const isCapped = Math.abs(amount) > 99_999;
+ const capped = Math.max(-99_999, Math.min(99_999, amount));
+ const sign = capped >= 0 ? '+' : '-';
+ const formatted = Math.abs(capped).toLocaleString('en-US', {
+ minimumFractionDigits: isCapped ? 0 : 2,
+ maximumFractionDigits: isCapped ? 0 : 2,
+ });
+ return `${isCapped ? '>' : ''}${sign}${formatted}%`;
+}
+
+// Copied from app-monorepo 551eb38fc1ec tradingHoursUtils.ts for the stock tag.
+export type IFetchUSMarketStatusResult = {
+ open: boolean;
+ session: 'PRE_MARKET' | 'REGULAR' | 'POST_MARKET' | 'OVERNIGHT' | 'CLOSED';
+ reason: string | null;
+ unavailable?: boolean;
+};
+
+/**
+ * US tokenized-stock trading sessions, defined in America/New_York wall-clock
+ * time (the single source of truth per OK-58043). All local rendering must be
+ * derived from these constants — never hardcode a user-local time.
+ *
+ * Ranges follow the venue's published windows (OK-58509, aligned with OKX):
+ *
+ * Pre-market 04:01 – 09:29 ET
+ * Regular 09:31 – 15:59 ET
+ * Post-market 16:01 – 19:59 ET
+ * Overnight 20:05 – 03:55 ET (next day)
+ *
+ * Sessions are NOT contiguous: the minutes between them (e.g. 09:30, the
+ * opening cross) belong to no session — the underlying venues pause trading
+ * while switching session state. Those windows are short (1–5 min) and token
+ * trading stays available, so the chip shows a dedicated "Awaiting open"
+ * state while the trading-hours panel highlights the upcoming session row
+ * (OK-58986) — never a halt/closed flash.
+ *
+ * A "cycle" is one full loop from the pre-market open to the overnight close
+ * the next ET day. On DST transition days a cycle is ±1h long; ratios are
+ * computed from real instants so segment widths stay proportional.
+ */
+
+const NY_TIME_ZONE = 'America/New_York';
+const MINUTE_MS = 60 * 1000;
+const MINUTES_PER_DAY = 24 * 60;
+
+export enum EUSMarketSessionKey {
+ PreMarket = 'preMarket',
+ Regular = 'regular',
+ PostMarket = 'postMarket',
+ Overnight = 'overnight',
+}
+
+/**
+ * Session boundaries as minutes since ET midnight, in cycle order. Ends are
+ * exclusive (a `09:30` end renders as `09:29`); a value ≥ 24h means the
+ * session closes on the next ET calendar day.
+ */
+const SESSIONS_ET_MINUTES: Array<{
+ key: EUSMarketSessionKey;
+ startMinutes: number;
+ endMinutes: number;
+}> = [
+ {
+ key: EUSMarketSessionKey.PreMarket,
+ startMinutes: 4 * 60 + 1,
+ endMinutes: 9 * 60 + 30,
+ },
+ {
+ key: EUSMarketSessionKey.Regular,
+ startMinutes: 9 * 60 + 31,
+ endMinutes: 16 * 60,
+ },
+ {
+ key: EUSMarketSessionKey.PostMarket,
+ startMinutes: 16 * 60 + 1,
+ endMinutes: 20 * 60,
+ },
+ {
+ key: EUSMarketSessionKey.Overnight,
+ startMinutes: 20 * 60 + 5,
+ endMinutes: MINUTES_PER_DAY + 3 * 60 + 56,
+ },
+];
+const CYCLE_START_ET_MINUTES = SESSIONS_ET_MINUTES[0].startMinutes;
+
+interface INyWallClock {
+ year: number;
+ month: number; // 1-12
+ day: number;
+ hour: number;
+ minute: number;
+ /** 0 = Sunday ... 6 = Saturday */
+ weekday: number;
+}
+
+const WEEKDAY_INDEX: Record = {
+ Sun: 0,
+ Mon: 1,
+ Tue: 2,
+ Wed: 3,
+ Thu: 4,
+ Fri: 5,
+ Sat: 6,
+};
+
+let cachedNyFormatter: Intl.DateTimeFormat | null | undefined;
+
+function getNyFormatter(): Intl.DateTimeFormat | null {
+ if (cachedNyFormatter !== undefined) {
+ return cachedNyFormatter;
+ }
+ try {
+ cachedNyFormatter = new Intl.DateTimeFormat('en-US', {
+ timeZone: NY_TIME_ZONE,
+ hourCycle: 'h23',
+ year: 'numeric',
+ month: '2-digit',
+ day: '2-digit',
+ hour: '2-digit',
+ minute: '2-digit',
+ weekday: 'short',
+ });
+ // Probe once — some engines only throw on first format call.
+ cachedNyFormatter.formatToParts(new Date());
+ } catch {
+ cachedNyFormatter = null;
+ }
+ return cachedNyFormatter;
+}
+
+/**
+ * Approximate ET offset used ONLY when Intl lacks IANA time-zone data
+ * (defense-in-depth for stripped-down JS engines). US DST rule since 2007:
+ * EDT (UTC-4) from 2:00 local on the second Sunday of March until 2:00 local
+ * on the first Sunday of November, otherwise EST (UTC-5). Evaluated in UTC —
+ * the ±hours error window around the exact switch moment is acceptable for a
+ * fallback path.
+ */
+export function approximateNyOffsetMinutes(instantMs: number): number {
+ const d = new Date(instantMs);
+ const year = d.getUTCFullYear();
+ // 2:00 local = 07:00 UTC (EST) at the spring switch, 06:00 UTC (EDT) in fall
+ const nthSundayUtc = (month: number, nth: number, utcHour: number) => {
+ const firstDayWeekday = new Date(Date.UTC(year, month, 1)).getUTCDay();
+ const firstSunday = 1 + ((7 - firstDayWeekday) % 7);
+ return Date.UTC(year, month, firstSunday + (nth - 1) * 7, utcHour, 0);
+ };
+ const dstStart = nthSundayUtc(2, 2, 7); // second Sunday of March
+ const dstEnd = nthSundayUtc(10, 1, 6); // first Sunday of November
+ const isDst = instantMs >= dstStart && instantMs < dstEnd;
+ return isDst ? -4 * 60 : -5 * 60;
+}
+
+function getNyWallClock(instantMs: number): INyWallClock {
+ const formatter = getNyFormatter();
+ if (formatter) {
+ const parts = formatter.formatToParts(new Date(instantMs));
+ const get = (type: Intl.DateTimeFormatPartTypes) =>
+ parts.find(p => p.type === type)?.value ?? '';
+ const weekday = WEEKDAY_INDEX[get('weekday')];
+ const hourText = get('hour');
+ return {
+ year: Number(get('year')),
+ month: Number(get('month')),
+ day: Number(get('day')),
+ // Some ICU builds render midnight as "24" with h23 — normalize it.
+ hour: Number(hourText) % 24,
+ minute: Number(get('minute')),
+ weekday: weekday ?? new Date(instantMs).getUTCDay(),
+ };
+ }
+ const shifted = new Date(
+ instantMs + approximateNyOffsetMinutes(instantMs) * MINUTE_MS,
+ );
+ return {
+ year: shifted.getUTCFullYear(),
+ month: shifted.getUTCMonth() + 1,
+ day: shifted.getUTCDate(),
+ hour: shifted.getUTCHours(),
+ minute: shifted.getUTCMinutes(),
+ weekday: shifted.getUTCDay(),
+ };
+}
+
+/**
+ * Convert an ET wall-clock time to a UTC instant. Starts from a UTC guess and
+ * converges by comparing the guess's actual ET wall clock — two rounds are
+ * enough for any fixed-offset error, including across DST transitions.
+ */
+function nyWallClockToInstant({
+ year,
+ month,
+ day,
+ minutesOfDay,
+}: {
+ year: number;
+ month: number;
+ day: number;
+ minutesOfDay: number;
+}): number {
+ const targetAsUtc = Date.UTC(
+ year,
+ month - 1,
+ day,
+ Math.floor(minutesOfDay / 60),
+ minutesOfDay % 60,
+ );
+ let guess = targetAsUtc - approximateNyOffsetMinutes(targetAsUtc) * MINUTE_MS;
+ for (let i = 0; i < 2; i += 1) {
+ const wc = getNyWallClock(guess);
+ const guessAsUtc = Date.UTC(
+ wc.year,
+ wc.month - 1,
+ wc.day,
+ wc.hour,
+ wc.minute,
+ );
+ const diff = targetAsUtc - guessAsUtc;
+ if (diff === 0) {
+ break;
+ }
+ guess += diff;
+ }
+ return guess;
+}
+
+function shiftNyDate(
+ base: { year: number; month: number; day: number },
+ days: number,
+): { year: number; month: number; day: number } {
+ const d = new Date(Date.UTC(base.year, base.month - 1, base.day + days));
+ return {
+ year: d.getUTCFullYear(),
+ month: d.getUTCMonth() + 1,
+ day: d.getUTCDate(),
+ };
+}
+
+export interface IUSMarketSessionSegment {
+ key: EUSMarketSessionKey;
+ /** UTC ms, inclusive */
+ startInstant: number;
+ /** UTC ms, exclusive */
+ endInstant: number;
+ /** Fraction of the whole cycle this segment spans (0..1) */
+ ratio: number;
+}
+
+export interface IUSMarketTradingHours {
+ /** Segments in cycle order: pre → regular → post → overnight (with gaps) */
+ segments: IUSMarketSessionSegment[];
+ cycleStartInstant: number;
+ cycleEndInstant: number;
+ /** Position of `now` within the cycle, 0..1 */
+ nowRatio: number;
+ /**
+ * Session containing `now` by pure clock math (ignores holidays/halts).
+ * A `now` inside an inter-session gap resolves to the upcoming session
+ * (past the overnight close that is the NEXT cycle's first session) —
+ * check `isNowInSessionGap` to tell the two cases apart.
+ */
+ currentSessionKey: EUSMarketSessionKey;
+ /**
+ * True when `now` falls between two sessions (e.g. after the 03:55
+ * overnight close and before the 04:01 pre-market open): the underlying
+ * venues pause trading while switching session state. Phantom clock gaps
+ * inside the weekend closure do NOT count. `currentSessionKey` resolves to
+ * the upcoming session for these short windows.
+ */
+ isNowInSessionGap: boolean;
+ /** Current-or-upcoming weekend closure: Friday 20:00 ET */
+ weekendStartInstant: number;
+ /** Weekend closure end: Sunday 20:00 ET */
+ weekendEndInstant: number;
+}
+
+/**
+ * Compute the trading-hours cycle containing `now`, with every boundary as a
+ * UTC instant. Callers render instants in the device time zone (plain Date
+ * getters) — no further zone math needed anywhere else.
+ */
+export function getUSMarketTradingHours(
+ now: Date = new Date(),
+): IUSMarketTradingHours {
+ const nowMs = now.getTime();
+ const nowNy = getNyWallClock(nowMs);
+
+ // The cycle day is the ET calendar date whose pre-market anchor (04:01)
+ // precedes `now`.
+ let cycleDate = {
+ year: nowNy.year,
+ month: nowNy.month,
+ day: nowNy.day,
+ };
+ if (nowNy.hour * 60 + nowNy.minute < CYCLE_START_ET_MINUTES) {
+ cycleDate = shiftNyDate(cycleDate, -1);
+ }
+ const nextDate = shiftNyDate(cycleDate, 1);
+
+ const minutesToInstant = (minutes: number) =>
+ minutes >= MINUTES_PER_DAY
+ ? nyWallClockToInstant({
+ ...nextDate,
+ minutesOfDay: minutes - MINUTES_PER_DAY,
+ })
+ : nyWallClockToInstant({ ...cycleDate, minutesOfDay: minutes });
+
+ const instants = SESSIONS_ET_MINUTES.map(
+ ({ key, startMinutes, endMinutes }) => ({
+ key,
+ startInstant: minutesToInstant(startMinutes),
+ endInstant: minutesToInstant(endMinutes),
+ }),
+ );
+ const cycleStartInstant = instants[0].startInstant;
+ const cycleEndInstant = instants[instants.length - 1].endInstant;
+ const cycleDuration = cycleEndInstant - cycleStartInstant;
+
+ const segments: IUSMarketSessionSegment[] = instants.map(
+ ({ key, startInstant, endInstant }) => ({
+ key,
+ startInstant,
+ endInstant,
+ ratio: (endInstant - startInstant) / cycleDuration,
+ }),
+ );
+
+ const clampedNow = Math.min(
+ Math.max(nowMs, cycleStartInstant),
+ cycleEndInstant - 1,
+ );
+ // Sessions are not contiguous — a `now` inside an inter-session gap
+ // resolves to the upcoming session.
+ const currentSegment =
+ segments.find(s => clampedNow < s.endInstant) ??
+ segments[segments.length - 1];
+
+ // Weekend closure runs Friday 20:00 ET → Sunday 20:00 ET. Pick the ongoing
+ // weekend when the cycle day sits inside one, otherwise the upcoming one.
+ const { weekday } = getNyWallClock(cycleStartInstant);
+ let fridayShift: number;
+ if (weekday === 6) {
+ fridayShift = -1;
+ } else if (weekday === 0) {
+ fridayShift = -2;
+ } else {
+ fridayShift = 5 - weekday;
+ }
+ const fridayDate = shiftNyDate(cycleDate, fridayShift);
+ const sundayDate = shiftNyDate(fridayDate, 2);
+ const weekendStartInstant = nyWallClockToInstant({
+ ...fridayDate,
+ minutesOfDay: 20 * 60,
+ });
+ const weekendEndInstant = nyWallClockToInstant({
+ ...sundayDate,
+ minutesOfDay: 20 * 60,
+ });
+
+ // In a gap, `now` sits before the upcoming session's start (mid-cycle gaps)
+ // or past the overnight close (the cycle-edge gap). The weekend closure is
+ // NOT a gap: the clock still produces phantom session boundaries on
+ // Sat/Sun, but no session switch is happening, so treating those minutes
+ // as "about to open" (or as a reason to suppress a halt) would be wrong.
+ const isNowInSessionGap =
+ (nowMs < currentSegment.startInstant ||
+ nowMs >= currentSegment.endInstant) &&
+ !(nowMs >= weekendStartInstant && nowMs < weekendEndInstant);
+ // Past the overnight close the upcoming session belongs to the NEXT cycle —
+ // remap the key so a gap `now` always resolves to the upcoming session, as
+ // the field's contract promises.
+ const currentSessionKey =
+ nowMs >= cycleEndInstant ? segments[0].key : currentSegment.key;
+
+ return {
+ segments,
+ cycleStartInstant,
+ cycleEndInstant,
+ nowRatio: (clampedNow - cycleStartInstant) / cycleDuration,
+ currentSessionKey,
+ isNowInSessionGap,
+ weekendStartInstant,
+ weekendEndInstant,
+ };
+}
+
+export function usMarketSessionKeyFromBackendSession(
+ session: IFetchUSMarketStatusResult['session'] | undefined,
+): EUSMarketSessionKey | undefined {
+ switch (session) {
+ case 'PRE_MARKET':
+ return EUSMarketSessionKey.PreMarket;
+ case 'REGULAR':
+ return EUSMarketSessionKey.Regular;
+ case 'POST_MARKET':
+ return EUSMarketSessionKey.PostMarket;
+ case 'OVERNIGHT':
+ return EUSMarketSessionKey.Overnight;
+ default:
+ return undefined;
+ }
+}
+
+/**
+ * Display status of a tokenized stock: the four US sessions plus
+ * closed/halted, and "24/7" for tokens that keep trading through a
+ * market-wide closure. The badge describes the UNDERLYING market state —
+ * trading availability is decided by the quote path (providers may still
+ * fill orders while the market is closed or halted, OK-58986); Open247 is
+ * the one exception, surfacing that a 7×24 instrument stays tradable on
+ * weekends/holidays instead of a discouraging "Closed".
+ */
+export enum EUSMarketStatusVariant {
+ PreMarket = 'preMarket',
+ Open = 'open',
+ PostMarket = 'postMarket',
+ Overnight = 'overnight',
+ Closed = 'closed',
+ Open247 = 'open247',
+ /** Inter-session gap: the venue is switching session state (1–5 min). */
+ AwaitingOpen = 'awaitingOpen',
+ Halted = 'halted',
+}
+
+/**
+ * A paused signal is a genuine per-stock halt EXCEPT for one pattern: an
+ * explicitly tradable instrument (`isOpen === true`) flagged paused during a
+ * trading-day session switch — venues routinely raise that transient flag,
+ * so the gap handling wins over the halt display there (OK-58986); a real
+ * halt spanning the gap surfaces once the gap ends. Instruments without
+ * `isOpen === true` keep reading Halted straight through gaps — falling
+ * through would flicker them to Closed/no-chip for the gap minutes. A live
+ * market-wide closure (weekend is clock-detectable, holidays only via
+ * `status`) also disables the exception: clock gaps then are phantom — no
+ * session switch is happening. Takes a getter so callers with a lazily
+ * computed cycle only pay for it when actually paused.
+ */
+function isEffectiveUSMarketHalt({
+ isPaused,
+ isOpen,
+ status,
+ getTradingHours,
+}: {
+ isPaused: boolean | undefined;
+ isOpen: boolean | undefined;
+ status: IFetchUSMarketStatusResult | undefined;
+ getTradingHours: () => IUSMarketTradingHours;
+}): boolean {
+ if (isPaused !== true) {
+ return false;
+ }
+ const marketWideClosed =
+ !!status &&
+ !status.unavailable &&
+ (!status.open || status.session === 'CLOSED');
+ return !(
+ isOpen === true &&
+ !marketWideClosed &&
+ getTradingHours().isNowInSessionGap
+ );
+}
+
+/**
+ * Sources treated as Ondo-issued. Some Ondo stocks report a legacy
+ * 'coingecko' source — keep this the single source of truth (kit's
+ * `isOndoStockSource` delegates here).
+ */
+const ONDO_US_MARKET_STOCK_SOURCES = new Set(['ondo', 'coingecko']);
+
+/**
+ * Only Ondo-issued stock tokens follow the US-session trading model this
+ * feature describes (OK-58043). xStocks and other providers run 7×24 with no
+ * open/closed distinction, so they keep the legacy open/closed badge and get
+ * no trading-hours entry.
+ */
+export function isOndoUSMarketStock(
+ source: string | undefined | null,
+): boolean {
+ const normalized = source?.trim().toLowerCase();
+ return !!normalized && ONDO_US_MARKET_STOCK_SOURCES.has(normalized);
+}
+
+/**
+ * Single source of truth for a stock token's displayed market status.
+ * Returns undefined for non-Ondo issuers (callers fall back to the legacy
+ * two-state badge) and for tokens without stock signals.
+ *
+ * Signal priority:
+ * 1. per-stock halt (`isPaused`) → Halted, regardless of `isOpen` — the
+ * badge reports the underlying stock's state; whether the token can
+ * still trade is the quote path's concern (OK-58986). One exception,
+ * see `isEffectiveUSMarketHalt`: an explicitly tradable instrument
+ * paused inside a trading-day session gap is treated as the gap itself;
+ * 2. per-stock `isOpen === false` — the instrument's own window is closed;
+ * 3. market-wide closure (backend CLOSED / weekend) with `isOpen === true`
+ * → Open247: only 7×24 instruments stay open through a closure, and a
+ * plain "Closed" would hide that they remain tradable;
+ * 4. inter-session gap (clock math) → AwaitingOpen: the venue is switching
+ * session state; a halt/closed flash there reads as an error, and the
+ * panel highlights the upcoming session row alongside;
+ * 5. market-wide session refines HOW it is open.
+ *
+ * When the market-status API is unavailable, falls back to pure clock math:
+ * weekends are detectable locally, holidays are not.
+ */
+export function resolveUSMarketStatusVariant({
+ source,
+ isOpen,
+ isPaused,
+ status,
+ now = new Date(),
+}: {
+ source?: string;
+ isOpen?: boolean;
+ isPaused?: boolean;
+ status?: IFetchUSMarketStatusResult;
+ now?: Date;
+}): EUSMarketStatusVariant | undefined {
+ if (!isOndoUSMarketStock(source)) {
+ return undefined;
+ }
+ // The cycle computation is Intl-heavy — compute it lazily, at most once,
+ // and only on the paths that need a session/gap decision.
+ let cachedTradingHours: IUSMarketTradingHours | undefined;
+ const resolveTradingHours = () => {
+ if (!cachedTradingHours) {
+ cachedTradingHours = getUSMarketTradingHours(now);
+ }
+ return cachedTradingHours;
+ };
+ if (
+ isEffectiveUSMarketHalt({
+ isPaused,
+ isOpen,
+ status,
+ getTradingHours: resolveTradingHours,
+ })
+ ) {
+ return EUSMarketStatusVariant.Halted;
+ }
+ if (isOpen === undefined) {
+ return undefined;
+ }
+ if (isOpen === false) {
+ return EUSMarketStatusVariant.Closed;
+ }
+ const sessionKeyToVariant = (key: EUSMarketSessionKey) => {
+ switch (key) {
+ case EUSMarketSessionKey.PreMarket:
+ return EUSMarketStatusVariant.PreMarket;
+ case EUSMarketSessionKey.PostMarket:
+ return EUSMarketStatusVariant.PostMarket;
+ case EUSMarketSessionKey.Overnight:
+ return EUSMarketStatusVariant.Overnight;
+ case EUSMarketSessionKey.Regular:
+ default:
+ return EUSMarketStatusVariant.Open;
+ }
+ };
+ if (status && !status.unavailable) {
+ if (!status.open || status.session === 'CLOSED') {
+ // isOpen === true is guaranteed here (checked above): a token still
+ // open through a market-wide closure is a 7×24 instrument.
+ return EUSMarketStatusVariant.Open247;
+ }
+ const tradingHours = resolveTradingHours();
+ // Inter-session gap: the dedicated chip wins over the backend session,
+ // which may still report the one that just ended.
+ if (tradingHours.isNowInSessionGap) {
+ return EUSMarketStatusVariant.AwaitingOpen;
+ }
+ const sessionKey = usMarketSessionKeyFromBackendSession(status.session);
+ // Unknown session value (future contract addition): fall back to the
+ // clock session, matching resolveUSTradingHoursActiveRow.
+ return sessionKeyToVariant(sessionKey ?? tradingHours.currentSessionKey);
+ }
+ const tradingHours = resolveTradingHours();
+ const nowMs = now.getTime();
+ if (
+ nowMs >= tradingHours.weekendStartInstant &&
+ nowMs < tradingHours.weekendEndInstant
+ ) {
+ // Same 7×24 rule as the status branch: isOpen === true through the
+ // weekend closure marks a 7×24 instrument.
+ return EUSMarketStatusVariant.Open247;
+ }
+ // Same gap rule as the status branch, on the pure clock fallback.
+ if (tradingHours.isNowInSessionGap) {
+ return EUSMarketStatusVariant.AwaitingOpen;
+ }
+ return sessionKeyToVariant(tradingHours.currentSessionKey);
+}
diff --git a/example/react-native/pages/marketNativePagerImage.tsx b/example/react-native/pages/marketNativePagerImage.tsx
new file mode 100644
index 000000000..7ba20c10c
--- /dev/null
+++ b/example/react-native/pages/marketNativePagerImage.tsx
@@ -0,0 +1,2 @@
+// Existing native decoder supports the source SVG control assets.
+export { OneKeyImage as MarketImage } from '@onekeyfe/react-native-image';
diff --git a/example/react-native/pages/marketNativePagerImage.web.tsx b/example/react-native/pages/marketNativePagerImage.web.tsx
new file mode 100644
index 000000000..e2321d11b
--- /dev/null
+++ b/example/react-native/pages/marketNativePagerImage.web.tsx
@@ -0,0 +1 @@
+export { Image as MarketImage } from 'react-native';
diff --git a/example/react-native/pages/marketNativePagerRows.ts b/example/react-native/pages/marketNativePagerRows.ts
new file mode 100644
index 000000000..83447780b
--- /dev/null
+++ b/example/react-native/pages/marketNativePagerRows.ts
@@ -0,0 +1,500 @@
+import type {
+ MarketBadgeModel,
+ MarketRow,
+ MarketRowStyle,
+ NativeListSnapshot,
+ NativeListTheme,
+ RowModel,
+ RowPatch,
+ ValueTextSegment,
+} from '@onekeyfe/react-native-native-list';
+
+import { MARKET_SOURCE_NETWORK_LOGOS } from './marketNativePagerAssets';
+
+import {
+ formatChange,
+ formatCompactUsd,
+ formatPrice,
+} from './marketNativePagerData';
+
+import type { MarketAsset } from './marketNativePagerTypes';
+
+export type MarketThemeName = 'dark' | 'light';
+
+export const MARKET_NATIVE_THEMES: Record = {
+ dark: {
+ background: '#0F0F0F',
+ rowBackground: '#0F0F0F',
+ rowSelectedBackground: '#262626',
+ rowPressedBackground: '#202020',
+ subduedBackground: '#202020',
+ strongBackground: '#2A2A2A',
+ primaryText: '#FFFFFFED',
+ secondaryText: '#FFFFFFAF',
+ disabledText: '#FFFFFF64',
+ icon: '#FFFFFFA3',
+ iconSubdued: '#FFFFFF64',
+ separator: '#FFFFFF22',
+ accent: '#44D7A8',
+ positive: '#46FEA5D4',
+ negative: '#F1495B',
+ criticalBackground: '#F1495B',
+ inverseBackground: '#FFFFFFED',
+ inverseText: '#0F0F0F',
+ info: '#70B8FF',
+ caution: '#F5A623',
+ },
+ light: {
+ background: '#FFFFFF',
+ rowBackground: '#FFFFFF',
+ rowSelectedBackground: '#F0F0F0',
+ rowPressedBackground: '#F5F5F5',
+ subduedBackground: '#F5F5F5',
+ strongBackground: '#ECECEC',
+ primaryText: '#000000DF',
+ secondaryText: '#0000009B',
+ disabledText: '#A8A8A8',
+ icon: '#6B6B6B',
+ iconSubdued: '#A8A8A8',
+ separator: '#0000001F',
+ accent: '#168566',
+ positive: '#00713FDE',
+ negative: '#D92D42',
+ criticalBackground: '#E44857',
+ inverseBackground: '#111111',
+ inverseText: '#FFFFFF',
+ info: '#1677C8',
+ caution: '#A96300',
+ },
+};
+
+const TOKEN_ROW_STYLE: MarketRowStyle = {
+ horizontalPadding: 20,
+ verticalPadding: 12,
+ leadingGap: 14,
+ lineGap: 4,
+ titleBadgeGap: 4,
+ trailingGap: 8,
+ image: {
+ width: 32,
+ height: 32,
+ shape: 'circle',
+ cornerRadius: 16,
+ contentFit: 'cover',
+ },
+ title: {
+ fontSize: 16,
+ fontWeight: 'medium',
+ lineHeight: 24,
+ lines: 1,
+ alignment: 'start',
+ },
+ subtitle: {
+ fontSize: 14,
+ fontWeight: 'regular',
+ lineHeight: 20,
+ lines: 1,
+ alignment: 'start',
+ },
+ price: {
+ fontSize: 16,
+ fontWeight: 'medium',
+ lineHeight: 24,
+ lines: 1,
+ alignment: 'end',
+ },
+ change: {
+ fontSize: 14,
+ fontWeight: 'medium',
+ lineHeight: 20,
+ lines: 1,
+ alignment: 'center',
+ },
+ changeWidth: 80,
+ changeHeight: 32,
+ changeCornerRadius: 8,
+};
+
+const STOCK_ROW_STYLE: MarketRowStyle = {
+ ...TOKEN_ROW_STYLE,
+ lineGap: 0,
+ leadingGap: 14,
+ image: {
+ width: 40,
+ height: 40,
+ shape: 'circle',
+ cornerRadius: 20,
+ contentFit: 'cover',
+ },
+};
+
+const PERP_ROW_STYLE: MarketRowStyle = {
+ ...TOKEN_ROW_STYLE,
+ horizontalPadding: 16,
+ leadingGap: 8,
+};
+
+function smallPriceSegments(
+ value: string | undefined,
+): readonly ValueTextSegment[] | undefined {
+ const amount = Number(value);
+ if (!Number.isFinite(amount) || amount === 0 || Math.abs(amount) >= 0.0001) {
+ return undefined;
+ }
+ const fraction = Math.abs(amount).toFixed(16).slice(2);
+ const zeroCount = fraction.match(/^0+/)?.[0].length ?? 0;
+ if (zeroCount < 4) return undefined;
+ const significant =
+ fraction.slice(zeroCount, zeroCount + 4).replace(/0+$/, '') || '0';
+ return [
+ { text: amount < 0 ? '-$0.0' : '$0.0' },
+ { text: String(zeroCount), style: 'subscript' },
+ { text: significant },
+ ];
+}
+
+function changeTone(value: string | undefined) {
+ const number = Number(value);
+ if (!Number.isFinite(number) || number === 0) return 'neutral' as const;
+ return number > 0 ? ('positive' as const) : ('negative' as const);
+}
+
+function badgesForAsset(
+ asset: MarketAsset,
+ locale: 'zh-CN' | 'en-US',
+ theme: MarketThemeName,
+): readonly MarketBadgeModel[] {
+ const badges: MarketBadgeModel[] = [];
+ if (asset.communityRecognized) {
+ badges.push({
+ key: `${asset.key}:community-verified`,
+ iconName: 'verified',
+ tone: 'success',
+ actionKey: 'community-info',
+ accessibilityLabel:
+ locale === 'en-US'
+ ? `${asset.symbol} community recognized`
+ : `${asset.symbol} 社区认可`,
+ });
+ }
+ if (asset.stock?.sourceLogoUri) {
+ badges.push({
+ key: `${asset.key}:stock-source`,
+ icon: asset.stock.sourceLogoUri
+ ? {
+ uri: asset.stock.sourceLogoUri,
+ width: 14,
+ height: 14,
+ contentFit: 'contain',
+ cachePolicy: 'memory-disk',
+ retryTimes: 2,
+ }
+ : undefined,
+ tone: 'neutral',
+ actionKey: 'stock-info',
+ accessibilityLabel:
+ asset.stock.title ||
+ (locale === 'en-US' ? 'Stock provider information' : '股票来源信息'),
+ });
+ }
+ if (asset.kind === 'perp' && asset.maxLeverage) {
+ badges.push({
+ key: `${asset.key}:leverage`,
+ text: `${asset.maxLeverage}x`,
+ tone: 'info',
+ textColor: theme === 'dark' ? '#70B8FF' : '#006DCBF2',
+ backgroundColor: theme === 'dark' ? '#0077FF3A' : '#008FF519',
+ accessibilityLabel:
+ locale === 'en-US'
+ ? `Up to ${asset.maxLeverage}x leverage`
+ : `最高 ${asset.maxLeverage} 倍杠杆`,
+ });
+ }
+ if (
+ asset.kind === 'perp' &&
+ ['xyz', 'para', 'io'].includes(asset.dexLabel?.toLowerCase() ?? '')
+ ) {
+ badges.push({
+ key: `${asset.key}:dex`,
+ text: asset.dexLabel?.toLowerCase(),
+ tone: 'info',
+ textColor: theme === 'dark' ? '#70B8FF' : '#006DCBF2',
+ backgroundColor: theme === 'dark' ? '#0077FF3A' : '#008FF519',
+ actionKey: 'dex-info',
+ accessibilityLabel:
+ locale === 'en-US'
+ ? `${asset.dexLabel} perps provider`
+ : `${asset.dexLabel} 合约来源`,
+ });
+ }
+ return badges;
+}
+
+function marketRow(
+ asset: MarketAsset,
+ watchlist: boolean,
+ locale: 'zh-CN' | 'en-US',
+ theme: MarketThemeName,
+): MarketRow {
+ const networkLogoUrl =
+ asset.networkLogoUrl || MARKET_SOURCE_NETWORK_LOGOS[asset.networkId ?? ''];
+ const subtitle =
+ asset.kind === 'stock'
+ ? asset.stock?.subtitle || asset.name
+ : asset.subtitle || formatCompactUsd(asset.volume24h ?? asset.marketCap);
+ const priceSegments = smallPriceSegments(asset.price);
+ const tone = changeTone(asset.priceChange24hPercent);
+ const rowStyle =
+ asset.kind === 'stock'
+ ? STOCK_ROW_STYLE
+ : asset.kind === 'perp'
+ ? PERP_ROW_STYLE
+ : TOKEN_ROW_STYLE;
+ return {
+ key: asset.key,
+ type: 'market',
+ variant:
+ asset.kind === 'stock'
+ ? 'stock'
+ : asset.kind === 'perp'
+ ? 'perp'
+ : 'token',
+ height: 72,
+ testID: `market-row-${asset.key}`,
+ accessibilityLabel: `${asset.symbol}, ${formatPrice(
+ asset.price,
+ )}, ${formatChange(asset.priceChange24hPercent)}`,
+ leading: {
+ kind: 'token',
+ image: asset.logoUrl
+ ? {
+ uri: asset.logoUrl,
+ width: asset.kind === 'stock' ? 40 : 32,
+ height: asset.kind === 'stock' ? 40 : 32,
+ contentFit: 'cover',
+ cachePolicy: 'memory-disk',
+ retryTimes: 2,
+ }
+ : undefined,
+ networkImage:
+ asset.kind !== 'perp' && networkLogoUrl
+ ? {
+ uri: networkLogoUrl,
+ width: 16,
+ height: 16,
+ contentFit: 'cover',
+ cachePolicy: 'memory-disk',
+ retryTimes: 2,
+ }
+ : undefined,
+ fallbackIcon: { name: 'CryptoCoinOutline' },
+ shape: 'circle',
+ backgroundColor: theme === 'dark' ? '#FFFFFF2C' : '#FFFFFF',
+ borderColor: theme === 'dark' ? '#FFFFFF09' : undefined,
+ },
+ title: asset.kind === 'perp' ? asset.name : asset.symbol,
+ subtitle,
+ price: priceSegments
+ ? priceSegments.map(segment => segment.text).join('')
+ : formatPrice(asset.price),
+ priceSegments,
+ change: {
+ text: formatChange(asset.priceChange24hPercent),
+ tone,
+ textColor: '#FFFFFF',
+ backgroundColor:
+ tone === 'positive'
+ ? theme === 'dark'
+ ? '#44FFA49E'
+ : '#008F4ACF'
+ : tone === 'negative'
+ ? theme === 'dark'
+ ? '#FE4E54E4'
+ : '#DB0007B7'
+ : '#666666',
+ },
+ badges: badgesForAsset(asset, locale, theme),
+ pressActionKey: 'open-detail-boundary',
+ pressInActionKey: 'prewarm-detail-boundary',
+ longPressActionKey: watchlist ? 'watchlist-menu' : undefined,
+ diagnostics: { imageBindActionKey: 'image-bind' },
+ style: {
+ ...rowStyle,
+ change: {
+ ...rowStyle.change,
+ fontSize:
+ Math.abs(Number(asset.priceChange24hPercent)) >= 10_000 ? 13 : 14,
+ },
+ },
+ };
+}
+
+export function buildMarketQuotePatches(
+ previous: readonly MarketAsset[],
+ next: readonly MarketAsset[],
+ theme: MarketThemeName = 'dark',
+): readonly RowPatch[] | undefined {
+ if (
+ previous.length !== next.length ||
+ previous.some(
+ (item, index) =>
+ item.key !== next[index]?.key ||
+ Math.abs(Number(item.priceChange24hPercent)) >= 10_000 !==
+ Math.abs(Number(next[index]?.priceChange24hPercent)) >= 10_000,
+ )
+ ) {
+ return undefined;
+ }
+ return next.flatMap((item, index): readonly RowPatch[] => {
+ const before = previous[index];
+ if (
+ !before ||
+ (before.price === item.price &&
+ before.priceChange24hPercent === item.priceChange24hPercent)
+ ) {
+ return [];
+ }
+ const tone = changeTone(item.priceChange24hPercent);
+ const priceSegments = smallPriceSegments(item.price);
+ return [
+ {
+ type: 'market',
+ key: item.key,
+ changes: {
+ price: priceSegments
+ ? priceSegments.map(segment => segment.text).join('')
+ : formatPrice(item.price),
+ priceSegments: priceSegments ?? [],
+ change: {
+ text: formatChange(item.priceChange24hPercent),
+ tone,
+ textColor: '#FFFFFF',
+ backgroundColor:
+ tone === 'positive'
+ ? theme === 'dark'
+ ? '#44FFA49E'
+ : '#008F4ACF'
+ : tone === 'negative'
+ ? theme === 'dark'
+ ? '#FE4E54E4'
+ : '#DB0007B7'
+ : '#666666',
+ },
+ },
+ },
+ ];
+ });
+}
+
+export function shouldClearMarketRowsOnRequestError(
+ currentItems: readonly MarketAsset[],
+): boolean {
+ return currentItems.length === 0;
+}
+
+export function buildMarketSnapshot({
+ items,
+ generation,
+ theme,
+ watchlist,
+ loading,
+ loadingMore,
+ error,
+ canLoadMore,
+ locale = 'zh-CN',
+}: {
+ items: readonly MarketAsset[];
+ generation: number;
+ theme: MarketThemeName;
+ watchlist: boolean;
+ loading: boolean;
+ loadingMore: boolean;
+ error?: string;
+ canLoadMore: boolean;
+ locale?: 'zh-CN' | 'en-US';
+}): NativeListSnapshot {
+ let rows: RowModel[] = items.map(item =>
+ marketRow(item, watchlist, locale, theme),
+ );
+ if (loading && rows.length === 0) {
+ rows = Array.from({ length: 10 }, (_, index) => ({
+ key: `market-loading-${index}`,
+ height: 56,
+ type: 'system' as const,
+ variant: 'loading' as const,
+ presentation: 'market' as const,
+ loadingStyle: 'skeleton' as const,
+ accessibilityLabel:
+ index === 0
+ ? locale === 'en-US'
+ ? 'Loading market data'
+ : '正在加载线上行情'
+ : undefined,
+ }));
+ } else if (error && rows.length === 0) {
+ rows = [
+ {
+ key: 'market-retry',
+ type: 'system',
+ variant: 'retry',
+ presentation: 'market',
+ message: error,
+ actionKey: 'retry',
+ },
+ ];
+ } else if (loadingMore) {
+ rows = [
+ ...rows,
+ {
+ key: 'market-loading-more',
+ height: 52,
+ type: 'system',
+ variant: 'loading',
+ presentation: 'market',
+ loadingStyle: 'spinner',
+ accessibilityLabel: locale === 'en-US' ? 'Loading more…' : '加载更多…',
+ },
+ ];
+ } else if (!canLoadMore && rows.length > 0) {
+ rows = [
+ ...rows,
+ {
+ key: 'market-end',
+ height: 36,
+ type: 'system',
+ variant: 'end',
+ presentation: 'market',
+ message: locale === 'en-US' ? 'No more results' : '没有更多了',
+ },
+ ];
+ }
+
+ return {
+ schemaVersion: 1,
+ generation,
+ theme: MARKET_NATIVE_THEMES[theme],
+ layout: {
+ kind: 'linear',
+ contentPaddingTop: 0,
+ contentPaddingBottom: 0,
+ contentPaddingHorizontal: 0,
+ itemSpacing: 0,
+ },
+ rows,
+ selection: { mode: 'none', selectedKeys: [] },
+ capabilities: {
+ loadMore: canLoadMore,
+ endReachedThreshold: 0.2,
+ pullToRefresh: true,
+ refreshing: loading && items.length > 0,
+ },
+ emptyState: {
+ key: 'market-empty',
+ height: 88,
+ type: 'system',
+ variant: 'noMatch',
+ presentation: 'market',
+ message: locale === 'en-US' ? 'No data' : '暂无数据',
+ },
+ };
+}
diff --git a/example/react-native/pages/marketNativePagerSnapshot.ts b/example/react-native/pages/marketNativePagerSnapshot.ts
new file mode 100644
index 000000000..c18a00e40
--- /dev/null
+++ b/example/react-native/pages/marketNativePagerSnapshot.ts
@@ -0,0 +1,167588 @@
+import type { MarketReplaySnapshot } from './marketNativePagerTypes';
+
+// Regenerate with collect-market.py then collect-market-test.py in artifacts/market-native-pager-example.
+export const MARKET_REPLAY_SNAPSHOT: MarketReplaySnapshot = {
+ "schemaVersion": 1,
+ "fetchedAt": "2026-09-08T04:15:59.282651+00:00",
+ "source": {
+ "baseUrl": "https://utility.onekeycn.com",
+ "requestVersion": "6.15.0",
+ "requestPlatform": "ios-store",
+ "requiredHeaders": [
+ "Accept: application/json",
+ "User-Agent: OneKeyWallet/6.15.0",
+ "X-Onekey-Request-Version: 6.15.0",
+ "X-Onekey-Request-Platform: ios-store",
+ "X-Onekey-Request-Locale: zh-CN"
+ ],
+ "notes": [
+ "Captured every configured spot network/time/category combination and every perps category; token-list pages read until empty. No synthetic duplicated rows.",
+ "Per-query terminal responses and original payloads are in artifacts/market-native-pager-example/market-capture.",
+ "Stocks and Top Coins use the user-approved test environment. Every configured stock category was read to its terminal cursor; Top Coins was read to its reported total. Original payloads and URLs: market-test-capture."
+ ],
+ "testBaseUrl": "https://utility.onekeytest.com",
+ "testFetchedAt": "2026-09-08T09:48:20.138153+00:00"
+ },
+ "config": {
+ "spotCategories": [
+ {
+ "id": "trending",
+ "name": "热门"
+ },
+ {
+ "id": "stocks",
+ "name": "美股"
+ },
+ {
+ "id": "robinhood_meme",
+ "name": "Robinhood"
+ }
+ ],
+ "stockCategories": [
+ {
+ "id": "all",
+ "name": "全部"
+ },
+ {
+ "id": "market__tab__consumer_tech",
+ "name": "消费科技"
+ },
+ {
+ "id": "market__tab__ai_tech",
+ "name": "AI 科技"
+ },
+ {
+ "id": "market__tab__etfs",
+ "name": "ETF"
+ },
+ {
+ "id": "market__tab__crypto",
+ "name": "加密概念股"
+ },
+ {
+ "id": "market__tab__healthcare",
+ "name": "医疗保健"
+ },
+ {
+ "id": "market__tab__energy",
+ "name": "能源"
+ },
+ {
+ "id": "market__tab__china_tech",
+ "name": "中概股"
+ },
+ {
+ "id": "market__tab__commodities",
+ "name": "大宗商品"
+ },
+ {
+ "id": "market__tab__aerospace",
+ "name": "航空航天"
+ }
+ ],
+ "perpsCategories": [
+ {
+ "id": "hot",
+ "name": "热门"
+ },
+ {
+ "id": "newList",
+ "name": "新上架"
+ },
+ {
+ "id": "crypto",
+ "name": "加密货币"
+ },
+ {
+ "id": "stocks",
+ "name": "股票"
+ },
+ {
+ "id": "metals",
+ "name": "贵金属"
+ },
+ {
+ "id": "indices",
+ "name": "指数"
+ },
+ {
+ "id": "commodities",
+ "name": "大宗商品"
+ },
+ {
+ "id": "forex",
+ "name": "外汇"
+ },
+ {
+ "id": "pre-ipo",
+ "name": "Pre-IPO"
+ },
+ {
+ "id": "pre-launch",
+ "name": "预上线"
+ },
+ {
+ "id": "etfs",
+ "name": "ETFs"
+ }
+ ],
+ "networks": [
+ {
+ "networkId": "evm--56",
+ "name": "Binance Smart Chain",
+ "logoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "networkId": "sol--101",
+ "name": "Solana",
+ "logoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "networkId": "evm--1",
+ "name": "Ethereum",
+ "logoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "networkId": "evm--4663",
+ "name": "Robinhood",
+ "logoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "networkId": "evm--8453",
+ "name": "Base",
+ "logoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "networkId": "sui--mainnet",
+ "name": "Sui",
+ "logoUrl": "https://uni.onekey-asset.com/static/chain/sui.png"
+ },
+ {
+ "networkId": "evm--196",
+ "name": "X Layer",
+ "logoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "networkId": "evm--42161",
+ "name": "Arbitrum",
+ "logoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ },
+ {
+ "networkId": "evm--10",
+ "name": "Optimism",
+ "logoUrl": "https://uni.onekey-asset.com/static/chain/optimism.png"
+ },
+ {
+ "networkId": "evm--43114",
+ "name": "Avalanche",
+ "logoUrl": "https://uni.onekey-asset.com/static/chain/avalanche.png"
+ },
+ {
+ "networkId": "evm--137",
+ "name": "Polygon",
+ "logoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "networkId": "evm--143",
+ "name": "Monad",
+ "logoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1763967402446.0.5985474006975384.0.png"
+ },
+ {
+ "networkId": "evm--146",
+ "name": "Sonic Mainnet",
+ "logoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1735787974946.0.09719711646964435.0.png"
+ },
+ {
+ "networkId": "evm--59144",
+ "name": "Linea",
+ "logoUrl": "https://uni.onekey-asset.com/static/chain/linea.png"
+ },
+ {
+ "networkId": "ton--mainnet",
+ "name": "TON",
+ "logoUrl": "https://uni.onekey-asset.com/static/chain/ton.png"
+ }
+ ],
+ "minLiquidity": 5000,
+ "recommendTokens": [
+ {
+ "isNative": true,
+ "networkId": "btc--0",
+ "address": "",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/btc--0/tokens/address-.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/btc--0/tokens/address-.png"
+ ],
+ "name": "Bitcoin",
+ "symbol": "BTC",
+ "marketCap": "1575036630845",
+ "price": "78433",
+ "priceChange24hPercent": "-1.2596",
+ "volume24h": "-",
+ "communityRecognized": true,
+ "key": "btc--0:",
+ "kind": "token",
+ "sourceCategory": "recommended"
+ },
+ {
+ "price": "2475.348538064185",
+ "priceChange24hPercent": "-0.67",
+ "volume24h": "1750909027.8715696",
+ "marketCap": "302580049802.75",
+ "communityRecognized": true,
+ "key": "evm--1:",
+ "kind": "token",
+ "sourceCategory": "recommended",
+ "networkId": "evm--1",
+ "address": "",
+ "isNative": true,
+ "name": "Ethereum",
+ "symbol": "ETH",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address--1751363512633.png",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "price": "753.2350187710782",
+ "priceChange24hPercent": "1.39",
+ "volume24h": "874386214.292987",
+ "marketCap": "100789957190.13",
+ "communityRecognized": true,
+ "key": "evm--56:",
+ "kind": "token",
+ "sourceCategory": "recommended",
+ "networkId": "evm--56",
+ "address": "",
+ "isNative": true,
+ "name": "BNB",
+ "symbol": "BNB",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-.png",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "price": "103.78595556427345",
+ "priceChange24hPercent": "-2.06",
+ "volume24h": "6845039518.733488",
+ "marketCap": "60580236877.93",
+ "communityRecognized": true,
+ "key": "sol--101:",
+ "kind": "token",
+ "sourceCategory": "recommended",
+ "networkId": "sol--101",
+ "address": "",
+ "isNative": true,
+ "name": "Solana",
+ "symbol": "SOL",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address--1758104080638.png",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "price": "0.3380261703953847",
+ "priceChange24hPercent": "0.41",
+ "volume24h": "59183610.09831154",
+ "marketCap": "32066266440.71",
+ "communityRecognized": true,
+ "key": "tron--0x2b6653dc:",
+ "kind": "token",
+ "sourceCategory": "recommended",
+ "networkId": "tron--0x2b6653dc",
+ "address": "",
+ "isNative": true,
+ "name": "Tron",
+ "symbol": "TRX",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/tron--0x2b6653dc/tokens/address--1720669765494.png"
+ },
+ {
+ "price": "8.049939729934332",
+ "priceChange24hPercent": "2.45",
+ "volume24h": "257844767.5081176",
+ "marketCap": "3483104410.76",
+ "communityRecognized": true,
+ "key": "evm--43114:",
+ "kind": "token",
+ "sourceCategory": "recommended",
+ "networkId": "evm--43114",
+ "address": "",
+ "isNative": true,
+ "name": "Avalanche",
+ "symbol": "AVAX",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--43114/tokens/address-.png",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/avalanche.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x000Ae314E2A2172a039B26378814C252734f556A",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x000ae314e2a2172a039b26378814c252734f556a-1757703693098.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x000ae314e2a2172a039b26378814c252734f556a-1757703693098.png"
+ ],
+ "name": "Aster",
+ "symbol": "ASTER",
+ "marketCap": "2053656611.9642189",
+ "price": "0.759972060552874",
+ "priceChange24hPercent": "-5.06",
+ "volume24h": "10011674.775155019",
+ "communityRecognized": true,
+ "key": "evm--56:0x000ae314e2a2172a039b26378814c252734f556a",
+ "kind": "token",
+ "sourceCategory": "recommended",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x7Fc66500c84A76Ad7e9c93437bFc5Ac33E2DDaE9",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x7fc66500c84a76ad7e9c93437bfc5ac33e2ddae9-1768204923952.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x7fc66500c84a76ad7e9c93437bfc5ac33e2ddae9-1768204923952.png"
+ ],
+ "name": "Aave Token",
+ "symbol": "AAVE",
+ "marketCap": "2089228103.0105922",
+ "price": "130.5767564389482",
+ "priceChange24hPercent": "-2.6",
+ "volume24h": "1930414.904476467",
+ "communityRecognized": true,
+ "key": "evm--1:0x7fc66500c84a76ad7e9c93437bfc5ac33e2ddae9",
+ "kind": "token",
+ "sourceCategory": "recommended",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ }
+ ]
+ },
+ "banners": [
+ {
+ "type": "ticker",
+ "title": "Robinhood 生态",
+ "backgroundColor": "bg/info-subdued",
+ "tokenListId": "6a9f7711f9f99233f19ac77d",
+ "description": {
+ "text": "+6.53%",
+ "fontColor": "text/success"
+ },
+ "tokenLogos": [
+ "https://coin-images.coingecko.com/coins/images/102176647/large/5ou9sb7h478ezv28urbjpzf1fl3e.?1788401429",
+ "https://coin-images.coingecko.com/coins/images/102174280/large/cashcat-logo.jpg?1782922765",
+ "https://coin-images.coingecko.com/coins/images/102176700/large/amc.jpg?1788511294"
+ ],
+ "id": "6a6c2b9f9f07c11df038176d"
+ },
+ {
+ "type": "perps",
+ "title": "AI 代币",
+ "backgroundColor": "bg/success-subdued",
+ "tokenListId": "6a9654b12c1a92c40cbae79e",
+ "description": {
+ "text": "+2.11%",
+ "fontColor": "text/success"
+ },
+ "tokenLogos": [
+ "https://uni.onekey-asset.com/static/hyperliquid/TAO.png",
+ "https://uni.onekey-asset.com/static/hyperliquid/WLD.png",
+ "https://uni.onekey-asset.com/static/hyperliquid/FET.png"
+ ],
+ "id": "6a71ef67a153c9496a3c7c89"
+ },
+ {
+ "type": "ticker",
+ "title": "加密证券",
+ "backgroundColor": "bg/caution-subdued",
+ "tokenListId": "6a9654b22c1a92c40cbae7a3",
+ "description": {
+ "text": "-0.25%",
+ "fontColor": "text/critical"
+ },
+ "tokenLogos": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x52ad57a7ea642e99a892afc79e937b383f1b59e9-1768032941245.png",
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x7313ea16493b2f55054df0131a3a14b043ec8992-1760923249909.png",
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x992879cd8ce0c312d98648875b5a8d6d042cbf34-1760923032790.png"
+ ],
+ "id": "6a6c2b9e9f07c11df038175b"
+ },
+ {
+ "type": "perps",
+ "title": "Meme 币",
+ "backgroundColor": "bg/critical-subdued",
+ "tokenListId": "6a9654b32c1a92c40cbae7a8",
+ "description": {
+ "text": "-0.67%",
+ "fontColor": "text/critical"
+ },
+ "tokenLogos": [
+ "https://uni.onekey-asset.com/static/hyperliquid/DOGE.png",
+ "https://uni.onekey-asset.com/static/hyperliquid/kPEPE.png",
+ "https://uni.onekey-asset.com/static/hyperliquid/kSHIB.png"
+ ],
+ "id": "6a71ef6aa153c9496a3c7ca0"
+ },
+ {
+ "type": "ticker",
+ "title": "科技龙头",
+ "backgroundColor": "bg/info-subdued",
+ "tokenListId": "6a9654b42c1a92c40cbae7ad",
+ "description": {
+ "text": "+0.26%",
+ "fontColor": "text/success"
+ },
+ "tokenLogos": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xa9ee28c80f960b889dfbd1902055218cba016f75-1760923276163.png",
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x6bfe75d1ad432050ea973c3a3dcd88f02e2444c3-1760923244592.png",
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x390a684ef9cade28a7ad0dfa61ab1eb3842618c4-1760515427269.png"
+ ],
+ "id": "6a86ca33ab17ad8700938f0e"
+ },
+ {
+ "type": "perps",
+ "title": "大宗商品",
+ "backgroundColor": "bg/success-subdued",
+ "tokenListId": "6a9654b42c1a92c40cbae7b2",
+ "description": {
+ "text": "+1.09%",
+ "fontColor": "text/success"
+ },
+ "tokenLogos": [
+ "https://uni.onekey-asset.com/static/hyperliquid/xyzCL.png",
+ "https://uni.onekey-asset.com/static/hyperliquid/xyzBRENTOIL.png",
+ "https://uni.onekey-asset.com/static/hyperliquid/xyzNATGAS.png"
+ ],
+ "id": "6a71ef68a153c9496a3c7c95"
+ },
+ {
+ "type": "ticker",
+ "title": "能源",
+ "backgroundColor": "bg/caution-subdued",
+ "tokenListId": "6a9654b52c1a92c40cbae7b7",
+ "description": {
+ "text": "+0.47%",
+ "fontColor": "text/success"
+ },
+ "tokenLogos": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xe7ddf606841ee278a30e5c90486681e68ddd8cbf-1773922800833.png",
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xaf6c03acf72355ce98d0741302b78870b376428c-1767945807554.png",
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x30938154e2697694f41592c2e48459287debe4bf-1773890334478.png"
+ ],
+ "id": "6a86ca37ab17ad8700938f23"
+ },
+ {
+ "type": "ticker",
+ "title": "AI 芯片",
+ "backgroundColor": "bg/critical-subdued",
+ "tokenListId": "6a9654b62c1a92c40cbae7bc",
+ "description": {
+ "text": "+1.47%",
+ "fontColor": "text/success"
+ },
+ "tokenLogos": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x1501ec83ffef405b4331cc4f73277a40fb0c627d-1760923239312.png",
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xc37042a7a4fa510d8884a433762ab87257b91965-1760923413025.png",
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xa9ee28c80f960b889dfbd1902055218cba016f75-1760923276163.png"
+ ],
+ "id": "6a86ca39ab17ad8700938f2e"
+ },
+ {
+ "type": "ticker",
+ "title": "SpaceX 概念",
+ "backgroundColor": "bg/info-subdued",
+ "tokenListId": "6a9654b72c1a92c40cbae7c1",
+ "description": {
+ "text": "+0.61%",
+ "fontColor": "text/success"
+ },
+ "tokenLogos": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x2494b603319d4d9f9715c9f4496d9e0364b59d93-1760680411667.png",
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x45abf29515bc23f8c0ed2a06584444ce473a75fb-1773890307758.png",
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xd0a58bc9d88d3ff48c0294cb7e45937d0e41a928-1781279452296.png"
+ ],
+ "id": "6a71ef66a153c9496a3c7c83"
+ }
+ ],
+ "locales": {
+ "zh-CN": {
+ "config": {
+ "spotCategories": [
+ {
+ "id": "trending",
+ "name": "热门"
+ },
+ {
+ "id": "stocks",
+ "name": "美股"
+ },
+ {
+ "id": "robinhood_meme",
+ "name": "Robinhood"
+ }
+ ],
+ "stockCategories": [
+ {
+ "id": "all",
+ "name": "全部"
+ },
+ {
+ "id": "market__tab__consumer_tech",
+ "name": "消费科技"
+ },
+ {
+ "id": "market__tab__ai_tech",
+ "name": "AI 科技"
+ },
+ {
+ "id": "market__tab__etfs",
+ "name": "ETF"
+ },
+ {
+ "id": "market__tab__crypto",
+ "name": "加密概念股"
+ },
+ {
+ "id": "market__tab__healthcare",
+ "name": "医疗保健"
+ },
+ {
+ "id": "market__tab__energy",
+ "name": "能源"
+ },
+ {
+ "id": "market__tab__china_tech",
+ "name": "中概股"
+ },
+ {
+ "id": "market__tab__commodities",
+ "name": "大宗商品"
+ },
+ {
+ "id": "market__tab__aerospace",
+ "name": "航空航天"
+ }
+ ],
+ "perpsCategories": [
+ {
+ "id": "hot",
+ "name": "热门"
+ },
+ {
+ "id": "newList",
+ "name": "新上架"
+ },
+ {
+ "id": "crypto",
+ "name": "加密货币"
+ },
+ {
+ "id": "stocks",
+ "name": "股票"
+ },
+ {
+ "id": "metals",
+ "name": "贵金属"
+ },
+ {
+ "id": "indices",
+ "name": "指数"
+ },
+ {
+ "id": "commodities",
+ "name": "大宗商品"
+ },
+ {
+ "id": "forex",
+ "name": "外汇"
+ },
+ {
+ "id": "pre-ipo",
+ "name": "Pre-IPO"
+ },
+ {
+ "id": "pre-launch",
+ "name": "预上线"
+ },
+ {
+ "id": "etfs",
+ "name": "ETFs"
+ }
+ ],
+ "networks": [
+ {
+ "networkId": "evm--56",
+ "name": "Binance Smart Chain",
+ "logoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "networkId": "sol--101",
+ "name": "Solana",
+ "logoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "networkId": "evm--1",
+ "name": "Ethereum",
+ "logoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "networkId": "evm--4663",
+ "name": "Robinhood",
+ "logoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "networkId": "evm--8453",
+ "name": "Base",
+ "logoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "networkId": "sui--mainnet",
+ "name": "Sui",
+ "logoUrl": "https://uni.onekey-asset.com/static/chain/sui.png"
+ },
+ {
+ "networkId": "evm--196",
+ "name": "X Layer",
+ "logoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "networkId": "evm--42161",
+ "name": "Arbitrum",
+ "logoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ },
+ {
+ "networkId": "evm--10",
+ "name": "Optimism",
+ "logoUrl": "https://uni.onekey-asset.com/static/chain/optimism.png"
+ },
+ {
+ "networkId": "evm--43114",
+ "name": "Avalanche",
+ "logoUrl": "https://uni.onekey-asset.com/static/chain/avalanche.png"
+ },
+ {
+ "networkId": "evm--137",
+ "name": "Polygon",
+ "logoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "networkId": "evm--143",
+ "name": "Monad",
+ "logoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1763967402446.0.5985474006975384.0.png"
+ },
+ {
+ "networkId": "evm--146",
+ "name": "Sonic Mainnet",
+ "logoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1735787974946.0.09719711646964435.0.png"
+ },
+ {
+ "networkId": "evm--59144",
+ "name": "Linea",
+ "logoUrl": "https://uni.onekey-asset.com/static/chain/linea.png"
+ },
+ {
+ "networkId": "ton--mainnet",
+ "name": "TON",
+ "logoUrl": "https://uni.onekey-asset.com/static/chain/ton.png"
+ }
+ ],
+ "minLiquidity": 5000,
+ "recommendTokens": [
+ {
+ "isNative": true,
+ "networkId": "btc--0",
+ "address": "",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/btc--0/tokens/address-.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/btc--0/tokens/address-.png"
+ ],
+ "name": "Bitcoin",
+ "symbol": "BTC",
+ "marketCap": "1575036630845",
+ "price": "78433",
+ "priceChange24hPercent": "-1.2596",
+ "volume24h": "-",
+ "communityRecognized": true,
+ "key": "btc--0:",
+ "kind": "token",
+ "sourceCategory": "recommended"
+ },
+ {
+ "price": "2475.348538064185",
+ "priceChange24hPercent": "-0.67",
+ "volume24h": "1750909027.8715696",
+ "marketCap": "302580049802.75",
+ "communityRecognized": true,
+ "key": "evm--1:",
+ "kind": "token",
+ "sourceCategory": "recommended",
+ "networkId": "evm--1",
+ "address": "",
+ "isNative": true,
+ "name": "Ethereum",
+ "symbol": "ETH",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address--1751363512633.png",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "price": "753.2350187710782",
+ "priceChange24hPercent": "1.39",
+ "volume24h": "874386214.292987",
+ "marketCap": "100789957190.13",
+ "communityRecognized": true,
+ "key": "evm--56:",
+ "kind": "token",
+ "sourceCategory": "recommended",
+ "networkId": "evm--56",
+ "address": "",
+ "isNative": true,
+ "name": "BNB",
+ "symbol": "BNB",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-.png",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "price": "103.78595556427345",
+ "priceChange24hPercent": "-2.06",
+ "volume24h": "6845039518.733488",
+ "marketCap": "60580236877.93",
+ "communityRecognized": true,
+ "key": "sol--101:",
+ "kind": "token",
+ "sourceCategory": "recommended",
+ "networkId": "sol--101",
+ "address": "",
+ "isNative": true,
+ "name": "Solana",
+ "symbol": "SOL",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address--1758104080638.png",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "price": "0.3380261703953847",
+ "priceChange24hPercent": "0.41",
+ "volume24h": "59183610.09831154",
+ "marketCap": "32066266440.71",
+ "communityRecognized": true,
+ "key": "tron--0x2b6653dc:",
+ "kind": "token",
+ "sourceCategory": "recommended",
+ "networkId": "tron--0x2b6653dc",
+ "address": "",
+ "isNative": true,
+ "name": "Tron",
+ "symbol": "TRX",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/tron--0x2b6653dc/tokens/address--1720669765494.png"
+ },
+ {
+ "price": "8.049939729934332",
+ "priceChange24hPercent": "2.45",
+ "volume24h": "257844767.5081176",
+ "marketCap": "3483104410.76",
+ "communityRecognized": true,
+ "key": "evm--43114:",
+ "kind": "token",
+ "sourceCategory": "recommended",
+ "networkId": "evm--43114",
+ "address": "",
+ "isNative": true,
+ "name": "Avalanche",
+ "symbol": "AVAX",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--43114/tokens/address-.png",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/avalanche.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x000Ae314E2A2172a039B26378814C252734f556A",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x000ae314e2a2172a039b26378814c252734f556a-1757703693098.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x000ae314e2a2172a039b26378814c252734f556a-1757703693098.png"
+ ],
+ "name": "Aster",
+ "symbol": "ASTER",
+ "marketCap": "2053656611.9642189",
+ "price": "0.759972060552874",
+ "priceChange24hPercent": "-5.06",
+ "volume24h": "10011674.775155019",
+ "communityRecognized": true,
+ "key": "evm--56:0x000ae314e2a2172a039b26378814c252734f556a",
+ "kind": "token",
+ "sourceCategory": "recommended",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x7Fc66500c84A76Ad7e9c93437bFc5Ac33E2DDaE9",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x7fc66500c84a76ad7e9c93437bfc5ac33e2ddae9-1768204923952.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x7fc66500c84a76ad7e9c93437bfc5ac33e2ddae9-1768204923952.png"
+ ],
+ "name": "Aave Token",
+ "symbol": "AAVE",
+ "marketCap": "2089228103.0105922",
+ "price": "130.5767564389482",
+ "priceChange24hPercent": "-2.6",
+ "volume24h": "1930414.904476467",
+ "communityRecognized": true,
+ "key": "evm--1:0x7fc66500c84a76ad7e9c93437bfc5ac33e2ddae9",
+ "kind": "token",
+ "sourceCategory": "recommended",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ }
+ ]
+ },
+ "banners": [
+ {
+ "type": "ticker",
+ "title": "Robinhood 生态",
+ "backgroundColor": "bg/info-subdued",
+ "tokenListId": "6a9f7711f9f99233f19ac77d",
+ "description": {
+ "text": "+6.53%",
+ "fontColor": "text/success"
+ },
+ "tokenLogos": [
+ "https://coin-images.coingecko.com/coins/images/102176647/large/5ou9sb7h478ezv28urbjpzf1fl3e.?1788401429",
+ "https://coin-images.coingecko.com/coins/images/102174280/large/cashcat-logo.jpg?1782922765",
+ "https://coin-images.coingecko.com/coins/images/102176700/large/amc.jpg?1788511294"
+ ],
+ "id": "6a6c2b9f9f07c11df038176d"
+ },
+ {
+ "type": "perps",
+ "title": "AI 代币",
+ "backgroundColor": "bg/success-subdued",
+ "tokenListId": "6a9654b12c1a92c40cbae79e",
+ "description": {
+ "text": "+2.11%",
+ "fontColor": "text/success"
+ },
+ "tokenLogos": [
+ "https://uni.onekey-asset.com/static/hyperliquid/TAO.png",
+ "https://uni.onekey-asset.com/static/hyperliquid/WLD.png",
+ "https://uni.onekey-asset.com/static/hyperliquid/FET.png"
+ ],
+ "id": "6a71ef67a153c9496a3c7c89"
+ },
+ {
+ "type": "ticker",
+ "title": "加密证券",
+ "backgroundColor": "bg/caution-subdued",
+ "tokenListId": "6a9654b22c1a92c40cbae7a3",
+ "description": {
+ "text": "-0.25%",
+ "fontColor": "text/critical"
+ },
+ "tokenLogos": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x52ad57a7ea642e99a892afc79e937b383f1b59e9-1768032941245.png",
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x7313ea16493b2f55054df0131a3a14b043ec8992-1760923249909.png",
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x992879cd8ce0c312d98648875b5a8d6d042cbf34-1760923032790.png"
+ ],
+ "id": "6a6c2b9e9f07c11df038175b"
+ },
+ {
+ "type": "perps",
+ "title": "Meme 币",
+ "backgroundColor": "bg/critical-subdued",
+ "tokenListId": "6a9654b32c1a92c40cbae7a8",
+ "description": {
+ "text": "-0.67%",
+ "fontColor": "text/critical"
+ },
+ "tokenLogos": [
+ "https://uni.onekey-asset.com/static/hyperliquid/DOGE.png",
+ "https://uni.onekey-asset.com/static/hyperliquid/kPEPE.png",
+ "https://uni.onekey-asset.com/static/hyperliquid/kSHIB.png"
+ ],
+ "id": "6a71ef6aa153c9496a3c7ca0"
+ },
+ {
+ "type": "ticker",
+ "title": "科技龙头",
+ "backgroundColor": "bg/info-subdued",
+ "tokenListId": "6a9654b42c1a92c40cbae7ad",
+ "description": {
+ "text": "+0.26%",
+ "fontColor": "text/success"
+ },
+ "tokenLogos": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xa9ee28c80f960b889dfbd1902055218cba016f75-1760923276163.png",
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x6bfe75d1ad432050ea973c3a3dcd88f02e2444c3-1760923244592.png",
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x390a684ef9cade28a7ad0dfa61ab1eb3842618c4-1760515427269.png"
+ ],
+ "id": "6a86ca33ab17ad8700938f0e"
+ },
+ {
+ "type": "perps",
+ "title": "大宗商品",
+ "backgroundColor": "bg/success-subdued",
+ "tokenListId": "6a9654b42c1a92c40cbae7b2",
+ "description": {
+ "text": "+1.09%",
+ "fontColor": "text/success"
+ },
+ "tokenLogos": [
+ "https://uni.onekey-asset.com/static/hyperliquid/xyzCL.png",
+ "https://uni.onekey-asset.com/static/hyperliquid/xyzBRENTOIL.png",
+ "https://uni.onekey-asset.com/static/hyperliquid/xyzNATGAS.png"
+ ],
+ "id": "6a71ef68a153c9496a3c7c95"
+ },
+ {
+ "type": "ticker",
+ "title": "能源",
+ "backgroundColor": "bg/caution-subdued",
+ "tokenListId": "6a9654b52c1a92c40cbae7b7",
+ "description": {
+ "text": "+0.47%",
+ "fontColor": "text/success"
+ },
+ "tokenLogos": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xe7ddf606841ee278a30e5c90486681e68ddd8cbf-1773922800833.png",
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xaf6c03acf72355ce98d0741302b78870b376428c-1767945807554.png",
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x30938154e2697694f41592c2e48459287debe4bf-1773890334478.png"
+ ],
+ "id": "6a86ca37ab17ad8700938f23"
+ },
+ {
+ "type": "ticker",
+ "title": "AI 芯片",
+ "backgroundColor": "bg/critical-subdued",
+ "tokenListId": "6a9654b62c1a92c40cbae7bc",
+ "description": {
+ "text": "+1.47%",
+ "fontColor": "text/success"
+ },
+ "tokenLogos": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x1501ec83ffef405b4331cc4f73277a40fb0c627d-1760923239312.png",
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xc37042a7a4fa510d8884a433762ab87257b91965-1760923413025.png",
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xa9ee28c80f960b889dfbd1902055218cba016f75-1760923276163.png"
+ ],
+ "id": "6a86ca39ab17ad8700938f2e"
+ },
+ {
+ "type": "ticker",
+ "title": "SpaceX 概念",
+ "backgroundColor": "bg/info-subdued",
+ "tokenListId": "6a9654b72c1a92c40cbae7c1",
+ "description": {
+ "text": "+0.61%",
+ "fontColor": "text/success"
+ },
+ "tokenLogos": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x2494b603319d4d9f9715c9f4496d9e0364b59d93-1760680411667.png",
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x45abf29515bc23f8c0ed2a06584444ce473a75fb-1773890307758.png",
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xd0a58bc9d88d3ff48c0294cb7e45937d0e41a928-1781279452296.png"
+ ],
+ "id": "6a71ef66a153c9496a3c7c83"
+ }
+ ]
+ },
+ "en-US": {
+ "config": {
+ "spotCategories": [
+ {
+ "id": "trending",
+ "name": "Trending"
+ },
+ {
+ "id": "stocks",
+ "name": "US Stocks"
+ },
+ {
+ "id": "robinhood_meme",
+ "name": "Robinhood"
+ }
+ ],
+ "stockCategories": [
+ {
+ "id": "all",
+ "name": "All"
+ },
+ {
+ "id": "market__tab__consumer_tech",
+ "name": "Consumer Tech"
+ },
+ {
+ "id": "market__tab__ai_tech",
+ "name": "AI Tech"
+ },
+ {
+ "id": "market__tab__etfs",
+ "name": "ETFs"
+ },
+ {
+ "id": "market__tab__crypto",
+ "name": "Crypto"
+ },
+ {
+ "id": "market__tab__healthcare",
+ "name": "Healthcare"
+ },
+ {
+ "id": "market__tab__energy",
+ "name": "Energy"
+ },
+ {
+ "id": "market__tab__china_tech",
+ "name": "China Tech"
+ },
+ {
+ "id": "market__tab__commodities",
+ "name": "Commodities"
+ },
+ {
+ "id": "market__tab__aerospace",
+ "name": "Aerospace"
+ }
+ ],
+ "perpsCategories": [
+ {
+ "id": "hot",
+ "name": "Hot"
+ },
+ {
+ "id": "newList",
+ "name": "New List"
+ },
+ {
+ "id": "crypto",
+ "name": "Crypto"
+ },
+ {
+ "id": "stocks",
+ "name": "Stocks"
+ },
+ {
+ "id": "metals",
+ "name": "Metals"
+ },
+ {
+ "id": "indices",
+ "name": "Indices"
+ },
+ {
+ "id": "commodities",
+ "name": "Commodities"
+ },
+ {
+ "id": "forex",
+ "name": "FX"
+ },
+ {
+ "id": "pre-ipo",
+ "name": "Pre-IPO"
+ },
+ {
+ "id": "pre-launch",
+ "name": "Pre-launch"
+ },
+ {
+ "id": "etfs",
+ "name": "ETFs"
+ }
+ ],
+ "networks": [
+ {
+ "networkId": "evm--56",
+ "name": "Binance Smart Chain",
+ "logoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "networkId": "sol--101",
+ "name": "Solana",
+ "logoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "networkId": "evm--1",
+ "name": "Ethereum",
+ "logoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "networkId": "evm--4663",
+ "name": "Robinhood",
+ "logoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "networkId": "evm--8453",
+ "name": "Base",
+ "logoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "networkId": "sui--mainnet",
+ "name": "Sui",
+ "logoUrl": "https://uni.onekey-asset.com/static/chain/sui.png"
+ },
+ {
+ "networkId": "evm--196",
+ "name": "X Layer",
+ "logoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "networkId": "evm--42161",
+ "name": "Arbitrum",
+ "logoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ },
+ {
+ "networkId": "evm--10",
+ "name": "Optimism",
+ "logoUrl": "https://uni.onekey-asset.com/static/chain/optimism.png"
+ },
+ {
+ "networkId": "evm--43114",
+ "name": "Avalanche",
+ "logoUrl": "https://uni.onekey-asset.com/static/chain/avalanche.png"
+ },
+ {
+ "networkId": "evm--137",
+ "name": "Polygon",
+ "logoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "networkId": "evm--143",
+ "name": "Monad",
+ "logoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1763967402446.0.5985474006975384.0.png"
+ },
+ {
+ "networkId": "evm--146",
+ "name": "Sonic Mainnet",
+ "logoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1735787974946.0.09719711646964435.0.png"
+ },
+ {
+ "networkId": "evm--59144",
+ "name": "Linea",
+ "logoUrl": "https://uni.onekey-asset.com/static/chain/linea.png"
+ },
+ {
+ "networkId": "ton--mainnet",
+ "name": "TON",
+ "logoUrl": "https://uni.onekey-asset.com/static/chain/ton.png"
+ }
+ ],
+ "minLiquidity": 5000,
+ "recommendTokens": [
+ {
+ "isNative": true,
+ "networkId": "btc--0",
+ "address": "",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/btc--0/tokens/address-.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/btc--0/tokens/address-.png"
+ ],
+ "name": "Bitcoin",
+ "symbol": "BTC",
+ "marketCap": "1575036630845",
+ "price": "78433",
+ "priceChange24hPercent": "-1.2596",
+ "volume24h": "-",
+ "communityRecognized": true,
+ "key": "btc--0:",
+ "kind": "token",
+ "sourceCategory": "recommended"
+ },
+ {
+ "price": "2475.348538064185",
+ "priceChange24hPercent": "-0.67",
+ "volume24h": "1750909027.8715696",
+ "marketCap": "302580049802.75",
+ "communityRecognized": true,
+ "key": "evm--1:",
+ "kind": "token",
+ "sourceCategory": "recommended",
+ "networkId": "evm--1",
+ "address": "",
+ "isNative": true,
+ "name": "Ethereum",
+ "symbol": "ETH",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address--1751363512633.png",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "price": "753.2350187710782",
+ "priceChange24hPercent": "1.39",
+ "volume24h": "874386214.292987",
+ "marketCap": "100789957190.13",
+ "communityRecognized": true,
+ "key": "evm--56:",
+ "kind": "token",
+ "sourceCategory": "recommended",
+ "networkId": "evm--56",
+ "address": "",
+ "isNative": true,
+ "name": "BNB",
+ "symbol": "BNB",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-.png",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "price": "103.78595556427345",
+ "priceChange24hPercent": "-2.06",
+ "volume24h": "6845039518.733488",
+ "marketCap": "60580236877.93",
+ "communityRecognized": true,
+ "key": "sol--101:",
+ "kind": "token",
+ "sourceCategory": "recommended",
+ "networkId": "sol--101",
+ "address": "",
+ "isNative": true,
+ "name": "Solana",
+ "symbol": "SOL",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address--1758104080638.png",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "price": "0.3380261703953847",
+ "priceChange24hPercent": "0.41",
+ "volume24h": "59183610.09831154",
+ "marketCap": "32066266440.71",
+ "communityRecognized": true,
+ "key": "tron--0x2b6653dc:",
+ "kind": "token",
+ "sourceCategory": "recommended",
+ "networkId": "tron--0x2b6653dc",
+ "address": "",
+ "isNative": true,
+ "name": "Tron",
+ "symbol": "TRX",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/tron--0x2b6653dc/tokens/address--1720669765494.png"
+ },
+ {
+ "price": "8.049939729934332",
+ "priceChange24hPercent": "2.45",
+ "volume24h": "257844767.5081176",
+ "marketCap": "3483104410.76",
+ "communityRecognized": true,
+ "key": "evm--43114:",
+ "kind": "token",
+ "sourceCategory": "recommended",
+ "networkId": "evm--43114",
+ "address": "",
+ "isNative": true,
+ "name": "Avalanche",
+ "symbol": "AVAX",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--43114/tokens/address-.png",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/avalanche.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x000Ae314E2A2172a039B26378814C252734f556A",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x000ae314e2a2172a039b26378814c252734f556a-1757703693098.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x000ae314e2a2172a039b26378814c252734f556a-1757703693098.png"
+ ],
+ "name": "Aster",
+ "symbol": "ASTER",
+ "marketCap": "2053656611.9642189",
+ "price": "0.759972060552874",
+ "priceChange24hPercent": "-5.06",
+ "volume24h": "10011674.775155019",
+ "communityRecognized": true,
+ "key": "evm--56:0x000ae314e2a2172a039b26378814c252734f556a",
+ "kind": "token",
+ "sourceCategory": "recommended",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x7Fc66500c84A76Ad7e9c93437bFc5Ac33E2DDaE9",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x7fc66500c84a76ad7e9c93437bfc5ac33e2ddae9-1768204923952.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x7fc66500c84a76ad7e9c93437bfc5ac33e2ddae9-1768204923952.png"
+ ],
+ "name": "Aave Token",
+ "symbol": "AAVE",
+ "marketCap": "2089228103.0105922",
+ "price": "130.5767564389482",
+ "priceChange24hPercent": "-2.6",
+ "volume24h": "1930414.904476467",
+ "communityRecognized": true,
+ "key": "evm--1:0x7fc66500c84a76ad7e9c93437bfc5ac33e2ddae9",
+ "kind": "token",
+ "sourceCategory": "recommended",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ }
+ ]
+ },
+ "banners": [
+ {
+ "type": "ticker",
+ "title": "Robinhood Eco",
+ "backgroundColor": "bg/info-subdued",
+ "tokenListId": "6a9f7711f9f99233f19ac77d",
+ "description": {
+ "text": "+6.53%",
+ "fontColor": "text/success"
+ },
+ "tokenLogos": [
+ "https://coin-images.coingecko.com/coins/images/102176647/large/5ou9sb7h478ezv28urbjpzf1fl3e.?1788401429",
+ "https://coin-images.coingecko.com/coins/images/102174280/large/cashcat-logo.jpg?1782922765",
+ "https://coin-images.coingecko.com/coins/images/102176700/large/amc.jpg?1788511294"
+ ],
+ "id": "6a6c2b9f9f07c11df038176d"
+ },
+ {
+ "type": "perps",
+ "title": "AI Tokens",
+ "backgroundColor": "bg/success-subdued",
+ "tokenListId": "6a9654b12c1a92c40cbae79e",
+ "description": {
+ "text": "+2.11%",
+ "fontColor": "text/success"
+ },
+ "tokenLogos": [
+ "https://uni.onekey-asset.com/static/hyperliquid/TAO.png",
+ "https://uni.onekey-asset.com/static/hyperliquid/WLD.png",
+ "https://uni.onekey-asset.com/static/hyperliquid/FET.png"
+ ],
+ "id": "6a71ef67a153c9496a3c7c89"
+ },
+ {
+ "type": "ticker",
+ "title": "Crypto Stocks",
+ "backgroundColor": "bg/caution-subdued",
+ "tokenListId": "6a9654b22c1a92c40cbae7a3",
+ "description": {
+ "text": "-0.25%",
+ "fontColor": "text/critical"
+ },
+ "tokenLogos": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x52ad57a7ea642e99a892afc79e937b383f1b59e9-1768032941245.png",
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x7313ea16493b2f55054df0131a3a14b043ec8992-1760923249909.png",
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x992879cd8ce0c312d98648875b5a8d6d042cbf34-1760923032790.png"
+ ],
+ "id": "6a6c2b9e9f07c11df038175b"
+ },
+ {
+ "type": "perps",
+ "title": "Memecoins",
+ "backgroundColor": "bg/critical-subdued",
+ "tokenListId": "6a9654b32c1a92c40cbae7a8",
+ "description": {
+ "text": "-0.67%",
+ "fontColor": "text/critical"
+ },
+ "tokenLogos": [
+ "https://uni.onekey-asset.com/static/hyperliquid/DOGE.png",
+ "https://uni.onekey-asset.com/static/hyperliquid/kPEPE.png",
+ "https://uni.onekey-asset.com/static/hyperliquid/kSHIB.png"
+ ],
+ "id": "6a71ef6aa153c9496a3c7ca0"
+ },
+ {
+ "type": "ticker",
+ "title": "Tech Leaders",
+ "backgroundColor": "bg/info-subdued",
+ "tokenListId": "6a9654b42c1a92c40cbae7ad",
+ "description": {
+ "text": "+0.26%",
+ "fontColor": "text/success"
+ },
+ "tokenLogos": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xa9ee28c80f960b889dfbd1902055218cba016f75-1760923276163.png",
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x6bfe75d1ad432050ea973c3a3dcd88f02e2444c3-1760923244592.png",
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x390a684ef9cade28a7ad0dfa61ab1eb3842618c4-1760515427269.png"
+ ],
+ "id": "6a86ca33ab17ad8700938f0e"
+ },
+ {
+ "type": "perps",
+ "title": "Commodities",
+ "backgroundColor": "bg/success-subdued",
+ "tokenListId": "6a9654b42c1a92c40cbae7b2",
+ "description": {
+ "text": "+1.09%",
+ "fontColor": "text/success"
+ },
+ "tokenLogos": [
+ "https://uni.onekey-asset.com/static/hyperliquid/xyzCL.png",
+ "https://uni.onekey-asset.com/static/hyperliquid/xyzBRENTOIL.png",
+ "https://uni.onekey-asset.com/static/hyperliquid/xyzNATGAS.png"
+ ],
+ "id": "6a71ef68a153c9496a3c7c95"
+ },
+ {
+ "type": "ticker",
+ "title": "Energy",
+ "backgroundColor": "bg/caution-subdued",
+ "tokenListId": "6a9654b52c1a92c40cbae7b7",
+ "description": {
+ "text": "+0.47%",
+ "fontColor": "text/success"
+ },
+ "tokenLogos": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xe7ddf606841ee278a30e5c90486681e68ddd8cbf-1773922800833.png",
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xaf6c03acf72355ce98d0741302b78870b376428c-1767945807554.png",
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x30938154e2697694f41592c2e48459287debe4bf-1773890334478.png"
+ ],
+ "id": "6a86ca37ab17ad8700938f23"
+ },
+ {
+ "type": "ticker",
+ "title": "AI Chips",
+ "backgroundColor": "bg/critical-subdued",
+ "tokenListId": "6a9654b62c1a92c40cbae7bc",
+ "description": {
+ "text": "+1.47%",
+ "fontColor": "text/success"
+ },
+ "tokenLogos": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x1501ec83ffef405b4331cc4f73277a40fb0c627d-1760923239312.png",
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xc37042a7a4fa510d8884a433762ab87257b91965-1760923413025.png",
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xa9ee28c80f960b889dfbd1902055218cba016f75-1760923276163.png"
+ ],
+ "id": "6a86ca39ab17ad8700938f2e"
+ },
+ {
+ "type": "ticker",
+ "title": "SpaceX Eco",
+ "backgroundColor": "bg/info-subdued",
+ "tokenListId": "6a9654b72c1a92c40cbae7c1",
+ "description": {
+ "text": "+0.61%",
+ "fontColor": "text/success"
+ },
+ "tokenLogos": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x2494b603319d4d9f9715c9f4496d9e0364b59d93-1760680411667.png",
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x45abf29515bc23f8c0ed2a06584444ce473a75fb-1773890307758.png",
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xd0a58bc9d88d3ff48c0294cb7e45937d0e41a928-1781279452296.png"
+ ],
+ "id": "6a71ef66a153c9496a3c7c83"
+ }
+ ],
+ "stockMetadata": {
+ "evm--196:0x4d0ba049c430a7a80a61e7ebdf50b6daac6c3bd6": {
+ "title": "Tokenized by xStock",
+ "source": "xstock",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/xstock.png",
+ "isOpen": true
+ },
+ "sol--101:XsoCS1TfEyfFhfvj8EtZ528L3CaKBDBRqRapnBbDF2W": {
+ "title": "Tokenized by xStock",
+ "subtitle": "SPDR S&P 500 ETF Trust",
+ "source": "xstock",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/xstock.png",
+ "isOpen": true
+ },
+ "sol--101:XsbEhLAtcf6HdfpFZ5xEMdqW8nfAvcsP5bdudRLJzJp": {
+ "title": "Tokenized by xStock",
+ "subtitle": "Apple",
+ "source": "xstock",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/xstock.png",
+ "isOpen": true
+ },
+ "evm--196:0xc845b2894dbddd03858fd2d643b4ef725fe0849d": {
+ "title": "Tokenized by xStock",
+ "subtitle": "NVIDIA",
+ "source": "xstock",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/xstock.png",
+ "isOpen": true
+ },
+ "evm--56:0x9b8e987e6fec8cf1380c4dca7071e2c7853aeea1": {
+ "title": "Tokenized by Ondo Finance",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true
+ },
+ "evm--56:0xd0a58bc9d88d3ff48c0294cb7e45937d0e41a928": {
+ "title": "Tokenized by Ondo Finance",
+ "subtitle": "SpaceX",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true
+ },
+ "sol--101:Xsc9qvGR1efVDFGLrVsmkzv3qi45LTBjeUKSPmx9qEh": {
+ "title": "Tokenized by xStock",
+ "subtitle": "NVIDIA",
+ "source": "xstock",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/xstock.png",
+ "isOpen": true
+ },
+ "sol--101:XsDoVfqeBukxuZHWhdvWHBhgEHjGNst4MLodqsJHzoB": {
+ "title": "Tokenized by xStock",
+ "subtitle": "Tesla",
+ "source": "xstock",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/xstock.png",
+ "isOpen": true
+ },
+ "sol--101:Xs8S1uUs1zvS2p7iwtsG3b6fkhpvmwz4GYU3gWAmWHZ": {
+ "title": "Tokenized by xStock",
+ "subtitle": "Nasdaq-100 ETF",
+ "source": "xstock",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/xstock.png",
+ "isOpen": true
+ },
+ "sol--101:XsCPL9dNWBMvFtTmwcCA5v3xWPSMEBCszbQdiLLq6aN": {
+ "title": "Tokenized by xStock",
+ "subtitle": "Google",
+ "source": "xstock",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/xstock.png",
+ "isOpen": true
+ },
+ "sol--101:XsqE9cRRpzxcGKDXj1BJ7Xmg4GRhZoyY1KpmGSxAWT2": {
+ "title": "Tokenized by xStock",
+ "subtitle": "McDonald's",
+ "source": "xstock",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/xstock.png",
+ "isOpen": true
+ },
+ "sol--101:Xs3eBt7uRfJX8QUs4suhyU8p2M6DoUDrJyWBa8LLZsg": {
+ "title": "Tokenized by xStock",
+ "subtitle": "Amazon",
+ "source": "xstock",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/xstock.png",
+ "isOpen": true
+ },
+ "sol--101:Xsv9hRk1z5ystj9MhnA7Lq4vjSsLwzL2nxrwmwtD3re": {
+ "title": "Tokenized by xStock",
+ "subtitle": "Gold ETF",
+ "source": "xstock",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/xstock.png",
+ "isOpen": true
+ },
+ "sol--101:Xs3oZwbHvqis4NYcf4YKWmEia2eC84wSiVrcYcTqpH8": {
+ "title": "Tokenized by xStock",
+ "subtitle": "SpaceX",
+ "source": "xstock",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/xstock.png",
+ "isOpen": true
+ },
+ "sol--101:XsvNBAYkrDRNhA7wPHQfX3ZUXZyZLdnCQDfHZ56bzpg": {
+ "title": "Tokenized by xStock",
+ "subtitle": "Robinhood",
+ "source": "xstock",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/xstock.png",
+ "isOpen": true
+ },
+ "sol--101:XsoBhf2ufR8fTyNSjqfU71DYGaE6Z3SUGAidpzriAA4": {
+ "title": "Tokenized by xStock",
+ "subtitle": "Palantir",
+ "source": "xstock",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/xstock.png",
+ "isOpen": true
+ },
+ "sol--101:XspzcW1PRtgf6Wj92HCiZdjzKCyFekVD8P5Ueh3dRMX": {
+ "title": "Tokenized by xStock",
+ "subtitle": "Microsoft",
+ "source": "xstock",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/xstock.png",
+ "isOpen": true
+ },
+ "sol--101:Xsa62P5mvPszXL1krVUnU5ar38bBSVcWAB6fmPCo5Zu": {
+ "title": "Tokenized by xStock",
+ "subtitle": "Meta",
+ "source": "xstock",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/xstock.png",
+ "isOpen": true
+ },
+ "evm--1:0x33483a58079b4225b10e57958ca28ad7b9cdbaf7": {
+ "title": "Tokenized by Ondo Finance",
+ "subtitle": "BitMine",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true
+ },
+ "evm--1:0xcabd955322dfbf94c084929ac5e9eca3feb5556f": {
+ "title": "Tokenized by Ondo Finance",
+ "subtitle": "MicroStrategy",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true
+ },
+ "evm--1:0xfedc5f4a6c38211c1338aa411018dfaf26612c08": {
+ "title": "Tokenized by Ondo Finance",
+ "subtitle": "SPDR S&P 500 ETF Trust",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true
+ },
+ "evm--1:0xc9eef266834730340a55b6cc24621b31baf55581": {
+ "title": "Tokenized by Ondo Finance",
+ "subtitle": "SpaceX",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true
+ },
+ "evm--1:0x2d1f7226bd1f780af6b9a49dcc0ae00e8df4bdee": {
+ "title": "Tokenized by Ondo Finance",
+ "subtitle": "NVIDIA",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true
+ },
+ "evm--1:0xf6b1117ec07684d3958cad8beb1b302bfd21103f": {
+ "title": "Tokenized by Ondo Finance",
+ "subtitle": "Tesla",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true
+ },
+ "evm--1:0x3632dea96a953c11dac2f00b4a05a32cd1063fae": {
+ "title": "Tokenized by Ondo Finance",
+ "subtitle": "Circle Internet Group",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true
+ },
+ "evm--1:0xba47214edd2bb43099611b208f75e4b42fdcfedc": {
+ "title": "Tokenized by Ondo Finance",
+ "subtitle": "Google",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true
+ },
+ "evm--1:0x14c3abf95cb9c93a8b82c1cdcb76d72cb87b2d4c": {
+ "title": "Tokenized by Ondo Finance",
+ "subtitle": "Apple",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true
+ },
+ "evm--1:0xb812837b81a3a6b81d7cd74cfb19a7f2784555e5": {
+ "title": "Tokenized by Ondo Finance",
+ "subtitle": "Microsoft",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true
+ },
+ "evm--1:0x0e397938c1aa0680954093495b70a9f5e2249aba": {
+ "title": "Tokenized by Ondo Finance",
+ "subtitle": "Nasdaq-100 ETF",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true
+ },
+ "evm--196:0xefd30445a4ec1f4b3e0a6f4d9bdbd215f805047f": {
+ "title": "Tokenized by xStock",
+ "subtitle": "Moderna",
+ "source": "xstock",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/xstock.png",
+ "isOpen": true
+ },
+ "evm--56:0x390a684ef9cade28a7ad0dfa61ab1eb3842618c4": {
+ "title": "Tokenized by Ondo Finance",
+ "subtitle": "Apple",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true
+ },
+ "evm--56:0x8b872732b07be325a8803cdb480d9d20b6f8d11b": {
+ "title": "Tokenized by Ondo Finance",
+ "subtitle": "Silver ETF",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true
+ },
+ "evm--56:0x992879cd8ce0c312d98648875b5a8d6d042cbf34": {
+ "title": "Tokenized by Ondo Finance",
+ "subtitle": "Circle Internet Group",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true
+ },
+ "evm--56:0xa9ee28c80f960b889dfbd1902055218cba016f75": {
+ "title": "Tokenized by Ondo Finance",
+ "subtitle": "NVIDIA",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true
+ },
+ "evm--56:0x8b6acf6041a81567f012ff6a4c6d96d5818d74bf": {
+ "title": "Tokenized by Ondo Finance",
+ "subtitle": "Micron",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true
+ },
+ "evm--56:0x7313ea16493b2f55054df0131a3a14b043ec8992": {
+ "title": "Tokenized by Ondo Finance",
+ "subtitle": "MicroStrategy",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true
+ },
+ "evm--56:0x4553cfe1c09f37f38b12dc509f676964e392f8fc": {
+ "title": "Tokenized by Ondo Finance",
+ "subtitle": "Amazon",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true
+ },
+ "evm--56:0x6a708ead771238919d85930b5a0f10454e1c331a": {
+ "title": "Tokenized by Ondo Finance",
+ "subtitle": "SPDR S&P 500 ETF Trust",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true
+ },
+ "evm--56:0x0cde6936d305d5b34667fc46425e852efd73559a": {
+ "title": "Tokenized by Ondo Finance",
+ "subtitle": "Nasdaq-100 ETF",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true
+ },
+ "evm--56:0xd5964f3fcee8d649995ab88f04b8982539c282d2": {
+ "title": "Tokenized by Ondo Finance",
+ "subtitle": "Alibaba",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true
+ },
+ "evm--56:0x19601179a60f55ff6636f5d1a8b6671053bd60a8": {
+ "title": "Tokenized by Ondo Finance",
+ "subtitle": "Robinhood",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true
+ },
+ "evm--56:0x091fc7778e6932d4009b087b191d1ee3bac5729a": {
+ "title": "Tokenized by Ondo Finance",
+ "subtitle": "Google",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true
+ },
+ "evm--56:0xf8589b526fdd65f7f301c605a6e04f0f1b4b3620": {
+ "title": "Tokenized by Ondo Finance",
+ "subtitle": "Coinbase",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true
+ },
+ "evm--56:0xe42cfb20e00912409b77a602b5bdcff3c7acc5f4": {
+ "title": "Tokenized by Ondo Finance",
+ "subtitle": "3x Long Nasdaq-100",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true
+ },
+ "evm--56:0xcb2a0f46f67dc4c58a316f1c008edef5c2311795": {
+ "title": "Tokenized by Ondo Finance",
+ "subtitle": "Gold ETF",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true
+ },
+ "evm--56:0x9351abd19f42101dd36025e495b98e910b255d78": {
+ "title": "Tokenized by Ondo Finance",
+ "subtitle": "Palantir",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true
+ },
+ "evm--56:0xec93fe7ff4b09ca3ccafbc4cc9615e62be412780": {
+ "title": "Tokenized by Ondo Finance",
+ "subtitle": "Copper Miners ETF",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true
+ },
+ "evm--56:0x9f16e46c73b43bdb70861247d537bee4ea18f639": {
+ "title": "Tokenized by Ondo Finance",
+ "subtitle": "AMD",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true
+ },
+ "evm--56:0x6bfe75d1ad432050ea973c3a3dcd88f02e2444c3": {
+ "title": "Tokenized by Ondo Finance",
+ "subtitle": "Microsoft",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true
+ },
+ "evm--56:0x7048f5227b032326cc8dbc53cf3fddd947a2c757": {
+ "title": "Tokenized by Ondo Finance",
+ "subtitle": "Netflix",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true
+ },
+ "evm--56:0x3385cb29cca0ac66f5d2354d13ef977b49a2510f": {
+ "title": "Tokenized by Ondo Finance",
+ "subtitle": "UnitedHealth Group",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true
+ },
+ "evm--56:0x03e4bd1ea53f1da84513da0319d1f03dd1bbcf93": {
+ "title": "Tokenized by Ondo Finance",
+ "subtitle": "Oracle",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true
+ },
+ "evm--56:0x2494b603319d4d9f9715c9f4496d9e0364b59d93": {
+ "title": "Tokenized by Ondo Finance",
+ "subtitle": "Tesla",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true
+ },
+ "evm--56:0x0ed2e3180edf393e6bf8db124bd15ddd54de150a": {
+ "title": "Tokenized by Ondo Finance",
+ "subtitle": "Broadcom",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true
+ },
+ "evm--56:0x25ffda07f585c39848db6573e533d7585679c52d": {
+ "title": "Tokenized by Ondo Finance",
+ "subtitle": "Mastercard",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true
+ },
+ "evm--56:0x34304f2f7cc487eb4186e6d69f5905a613474aa2": {
+ "title": "Tokenized by Ondo Finance",
+ "subtitle": "Cisco",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true
+ },
+ "evm--56:0x5fa699c0c1319b8d86489af77dfde4fa97b47df8": {
+ "title": "Tokenized by Ondo Finance",
+ "subtitle": "BitGo",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true
+ },
+ "evm--56:0x50356167a4dbc38bea6779c045e24e25facedfdc": {
+ "title": "Tokenized by Ondo Finance",
+ "subtitle": "Spotify",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true
+ },
+ "evm--56:0x317bf42b43a394860718266dec445dcc9fd9da49": {
+ "title": "Tokenized by Ondo Finance",
+ "subtitle": "JPMorgan",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true
+ },
+ "evm--56:0x405f38b90bebf1259062cf29da299f3398662bcb": {
+ "title": "Tokenized by Ondo Finance",
+ "subtitle": "Coca-Cola",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true
+ },
+ "evm--56:0xc37042a7a4fa510d8884a433762ab87257b91965": {
+ "title": "Tokenized by Ondo Finance",
+ "subtitle": "Taiwan Semiconductor",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true
+ },
+ "evm--56:0xd09f7b75b9659b864c6f82bb00ff096f9d277998": {
+ "title": "Tokenized by Ondo Finance",
+ "subtitle": "Lockheed Martin",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true
+ },
+ "evm--56:0x341d31b2be1fee9c00e395a62ba41837f4322eed": {
+ "title": "Tokenized by Ondo Finance",
+ "subtitle": "Eli Lilly",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true
+ },
+ "evm--56:0x5a20886b575058dd7299785f0ea9b1172942a3e0": {
+ "title": "Tokenized by Ondo Finance",
+ "subtitle": "Abbott",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true
+ },
+ "evm--56:0xe6837794fbc6dd024733a1a31f86061296fa2752": {
+ "title": "Tokenized by Ondo Finance",
+ "subtitle": "CrowdStrike",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true
+ },
+ "evm--56:0x918008c3d29496c37b478b611967beaca365af36": {
+ "title": "Tokenized by Ondo Finance",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true
+ },
+ "evm--56:0x43d0b380c33cd004a6a69abd61843881a2de4113": {
+ "title": "Tokenized by Ondo Finance",
+ "subtitle": "Shopify",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true
+ },
+ "evm--56:0x7af44d51d1fb88c5b74fc71d3cba649bb8099d14": {
+ "title": "Tokenized by Ondo Finance",
+ "subtitle": "Accenture",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true
+ },
+ "evm--56:0x400f1e257f86d25578a0928c94dc95115f09d5c9": {
+ "title": "Tokenized by Ondo Finance",
+ "subtitle": "Procter & Gamble",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true
+ },
+ "evm--56:0x374d03a6c0d5bd4be0a5117ebe1b49d52ac8a53f": {
+ "title": "Tokenized by Ondo Finance",
+ "subtitle": "PayPal",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true
+ },
+ "evm--56:0xd3113a0ad20a46f6a662c63fe8e637f7713e59c7": {
+ "title": "Tokenized by Ondo Finance",
+ "subtitle": "Chevron",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true
+ },
+ "evm--56:0x08ce97f3d5cf11e577d091ab048bc5e2eae3fabb": {
+ "title": "Tokenized by Ondo Finance",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true
+ },
+ "evm--56:0x94d7754541b829a87321d56121bc544167ac490d": {
+ "title": "Tokenized by Ondo Finance",
+ "subtitle": "Starbucks",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true
+ },
+ "evm--56:0x94174e3d1335db402dd03a092f7aa7ac2cb32be4": {
+ "title": "Tokenized by Ondo Finance",
+ "subtitle": "US Oil ETF",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true
+ },
+ "evm--56:0xf99f8f3a95257d82006183bd524efa7aacc9ef7a": {
+ "title": "Tokenized by Ondo Finance",
+ "subtitle": "PepsiCo",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true
+ },
+ "evm--56:0xf69e40069ac227c11459e3f4e8a446b3401616b6": {
+ "title": "Tokenized by Ondo Finance",
+ "subtitle": "20+ Year Treasury Bond ETF",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true
+ },
+ "evm--56:0x99e01f02d66455bb106d91d469c9eaf6ab4904f6": {
+ "title": "Tokenized by Ondo Finance",
+ "subtitle": "SharpLink",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true
+ },
+ "evm--56:0x52ad57a7ea642e99a892afc79e937b383f1b59e9": {
+ "title": "Tokenized by Ondo Finance",
+ "subtitle": "BitMine",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true
+ },
+ "evm--56:0xd04a2bb053277721a8321d7441eed5b42fdf7250": {
+ "title": "Tokenized by Ondo Finance",
+ "subtitle": "Salesforce",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true
+ },
+ "evm--56:0x4da12f47578ef89c76179b760c778e70b668f80b": {
+ "title": "Tokenized by Ondo Finance",
+ "subtitle": "Reddit",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true
+ },
+ "evm--56:0x6e3e077a6c0e3c27fd6d00b97387d9b7bd451bab": {
+ "title": "Tokenized by Ondo Finance",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true
+ },
+ "evm--56:0xeb19c13c54b1cd48afc62f6503375e92d5f1e856": {
+ "title": "Tokenized by Ondo Finance",
+ "subtitle": "ServiceNow",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true
+ },
+ "evm--56:0x138ed6833ff4e8811e1fea0d005e13726c8886f9": {
+ "title": "Tokenized by Ondo Finance",
+ "subtitle": "Snowflake",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true
+ },
+ "evm--56:0xa528caaa2f96090e379d43f90834c75df54d6e74": {
+ "title": "Tokenized by Ondo Finance",
+ "subtitle": "Intel",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true
+ },
+ "evm--56:0xc142ba8ccd36d80c3a001342fb83e4c3d218a873": {
+ "title": "Tokenized by Ondo Finance",
+ "subtitle": "Super Micro Computer",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true
+ },
+ "evm--56:0x274b0cb6db9473245a31cdea9b789786f4108e4b": {
+ "title": "Tokenized by Ondo Finance",
+ "subtitle": "Caterpillar",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true
+ },
+ "evm--56:0x5ecc352c4640f1d26bd231dbbd171f40f7d0eec6": {
+ "title": "Tokenized by Ondo Finance",
+ "subtitle": "Applied Materials",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true
+ },
+ "evm--56:0xd7df5863a3e742f0c767768cdfcb63f09e0422f6": {
+ "title": "Tokenized by Ondo Finance",
+ "subtitle": "Meta",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true
+ },
+ "evm--56:0x4693f6f5ef257381a28afd0673e64d8b32d5c6ad": {
+ "title": "Tokenized by Ondo Finance",
+ "subtitle": "Hims & Hers",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true
+ },
+ "evm--56:0xb034f6cb52b7f2fd5a7eeeffca6b9adcd6b9a6f6": {
+ "title": "Tokenized by Ondo Finance",
+ "subtitle": "ASML",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true
+ },
+ "evm--56:0x8fd70ee385f470c8d6fda2d93a4e49c849bac6a6": {
+ "title": "Tokenized by Ondo Finance",
+ "subtitle": "IREN",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true
+ },
+ "evm--56:0xf3e82ea164cb344b2b11bad4c24b0ea4f7ba4714": {
+ "title": "Tokenized by Ondo Finance",
+ "subtitle": "Pinduoduo / Temu",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true
+ },
+ "evm--56:0x3fcd741646a9790635b938cdb69af5df356cbaab": {
+ "title": "Tokenized by Ondo Finance",
+ "subtitle": "Palladium ETF",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true
+ },
+ "evm--56:0x5acf40056ed51c8bbcd1b125ef803581ac89a627": {
+ "title": "Tokenized by Ondo Finance",
+ "subtitle": "Futu Holdings",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true
+ },
+ "evm--56:0x08a513779f46ffb7a34f16094a94016d010128a8": {
+ "title": "Tokenized by Ondo Finance",
+ "subtitle": "Novo Nordisk",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true
+ },
+ "evm--56:0x22092c94a91d019ad15536725598b0a6be0a73c0": {
+ "title": "Tokenized by Ondo Finance",
+ "subtitle": "Emerging Markets Core ETF",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true
+ },
+ "evm--56:0x995add4ba29a628a57930a8a185c62ca044ec090": {
+ "title": "Tokenized by Ondo Finance",
+ "subtitle": "McDonald's",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true
+ },
+ "evm--56:0x1cde419fae0ef7f7931ae3e29e5f411c8c5e5fa1": {
+ "title": "Tokenized by Ondo Finance",
+ "subtitle": "Visa",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true
+ },
+ "evm--56:0x1501ec83ffef405b4331cc4f73277a40fb0c627d": {
+ "title": "Tokenized by Ondo Finance",
+ "subtitle": "Marvell",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true
+ },
+ "evm--56:0x527c6436e1eaa4f2065cde4090f798cb5d031dd6": {
+ "title": "Tokenized by Ondo Finance",
+ "subtitle": "Arm",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true
+ },
+ "evm--56:0x0d4f9b25f81163fb4840ba4f434672543823000c": {
+ "title": "Tokenized by Ondo Finance",
+ "subtitle": "Goldman Sachs",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true
+ },
+ "evm--56:0x60a8f8e05200ff73afde9e2cae819bf1605f0bdd": {
+ "title": "Tokenized by Ondo Finance",
+ "subtitle": "MercadoLibre",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true
+ },
+ "evm--56:0x467e59ce5d5fe01686d4a80dd1e1dae13549aa6c": {
+ "title": "Tokenized by Ondo Finance",
+ "subtitle": "Baidu",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true
+ },
+ "evm--56:0xc4a88a72b848255fd24da3c1ad6755d980535fb1": {
+ "title": "Tokenized by Ondo Finance",
+ "subtitle": "Riot Platforms",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true
+ },
+ "evm--56:0x0eaa1a75bd682a5669ab2371a559fbd039c6b9eb": {
+ "title": "Tokenized by Ondo Finance",
+ "subtitle": "Palo Alto Networks",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true
+ },
+ "evm--56:0x4d209d275e3492ac08497a7a42915899c4dd5e86": {
+ "title": "Tokenized by Ondo Finance",
+ "subtitle": "ExxonMobil",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true
+ },
+ "evm--56:0x68b07cef227cea1b2b6683921c8c825cd5c69ec7": {
+ "title": "Tokenized by Ondo Finance",
+ "subtitle": "iShares Bitcoin Trust",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true
+ },
+ "evm--56:0x1104eb7e85e25eb45f88e638b0c27a06c1a91cb2": {
+ "title": "Tokenized by Ondo Finance",
+ "subtitle": "iShares Core S&P 500 ETF",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true
+ },
+ "evm--56:0xcf9caf83053213c44dd7027db3e1e4ac98e55f8f": {
+ "title": "Tokenized by Ondo Finance",
+ "subtitle": "Total US Stock Market ETF",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true
+ },
+ "evm--56:0x2ac26ec236df5d1d2ad1a6dd4e448a90e45dc35d": {
+ "title": "Tokenized by Ondo Finance",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true
+ },
+ "evm--56:0x38b9a53bfdc5dba58a29bd6992341927c2fca637": {
+ "title": "Tokenized by Ondo Finance",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true
+ },
+ "evm--56:0x40755f06ab7f8de1ab3a9413b1ef562d63de19b1": {
+ "title": "Tokenized by Ondo Finance",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true
+ },
+ "evm--56:0x00c81d35eddf44c75d4db9e07bdcdc236eb0ebcf": {
+ "title": "Tokenized by Ondo Finance",
+ "subtitle": "Emerging Markets ETF",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true
+ },
+ "evm--56:0x01b5a4ac600be98448dbefbb78bcdf38262552cc": {
+ "title": "Tokenized by Ondo Finance",
+ "subtitle": "Occidental",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true
+ },
+ "evm--56:0xf54b94ea21e1da5d51ef00fd4502225e5394f874": {
+ "title": "Tokenized by Ondo Finance",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true
+ },
+ "evm--56:0x8a83c31d6751833b4940b6e871c48d9a15a07b46": {
+ "title": "Tokenized by Ondo Finance",
+ "subtitle": "Pfizer",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true
+ },
+ "evm--56:0x500eafc69b68acd6f27064f9b75f1c7d91cc4d9f": {
+ "title": "Tokenized by Ondo Finance",
+ "subtitle": "Russell 2000 ETF",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true
+ },
+ "evm--56:0x167e93a849a0cc479769132552b99aa1cfa0948c": {
+ "title": "Tokenized by Ondo Finance",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true
+ },
+ "evm--56:0xa7d1e886acf66ec0656df2decb4b7c893a3bab4c": {
+ "title": "Tokenized by Ondo Finance",
+ "subtitle": "Walmart",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true
+ },
+ "evm--56:0x2b1d5cdecc356530a746c5754231efaeaca64022": {
+ "title": "Tokenized by Ondo Finance",
+ "subtitle": "Petrobras",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true
+ },
+ "evm--56:0xecc1299f183b6a720a6f4729bf24f82cd8d50828": {
+ "title": "Tokenized by Ondo Finance",
+ "subtitle": "Toyota Motor",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true
+ },
+ "evm--56:0x24f5471183ea549987f245d6ce236b6108869c92": {
+ "title": "Tokenized by Ondo Finance",
+ "subtitle": "BlackRock",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true
+ },
+ "evm--56:0xe8ff70859ce4cbd72e4352b4fb45f5bf39d07464": {
+ "title": "Tokenized by Ondo Finance",
+ "subtitle": "IBM",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true
+ },
+ "evm--56:0x4fd67cb8cfedc718bac984b5936abe3330d0a2a4": {
+ "title": "Tokenized by Ondo Finance",
+ "subtitle": "SanDisk",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true
+ },
+ "evm--56:0xe4e12c9cec3e8cae405202a97f66afa695075fa0": {
+ "title": "Tokenized by Ondo Finance",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true
+ },
+ "evm--56:0x5151a22421ed4277f1e4ca4785a07b035d548a36": {
+ "title": "Tokenized by Ondo Finance",
+ "subtitle": "GE Aerospace",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true
+ },
+ "evm--56:0x12b7adc48416a103f63e7e6210f62c81dfb91fd0": {
+ "title": "Tokenized by Ondo Finance",
+ "subtitle": "iShares MSCI South Korea ETF",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true
+ },
+ "evm--56:0x34375f826fd3dd4e15f883d4f4786bb45eb705ac": {
+ "title": "Tokenized by Ondo Finance",
+ "subtitle": "Costco",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true
+ },
+ "evm--56:0x629520dee1620def11596f84e85de9f1ff653012": {
+ "title": "Tokenized by Ondo Finance",
+ "subtitle": "Wells Fargo",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true
+ },
+ "evm--56:0xef80743f78d98fc2b47a2253b293152ce8b879ba": {
+ "title": "Tokenized by Ondo Finance",
+ "subtitle": "Airbnb",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true
+ },
+ "evm--56:0xfbd4d681c92ead6af0e49950c8b2e47eeacbb2db": {
+ "title": "Tokenized by Ondo Finance",
+ "subtitle": "Qualcomm",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true
+ },
+ "evm--56:0xc008c5f579ec1450f20099c39f587547e27c7523": {
+ "title": "Tokenized by Ondo Finance",
+ "subtitle": "iShares 0-3 Month Treasury Bond ETF",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true
+ },
+ "evm--56:0x76e39171cb665a35981e744e2ceb7012f76caeac": {
+ "title": "Tokenized by Ondo Finance",
+ "subtitle": "CoreWeave",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true
+ },
+ "stock:A": {
+ "subtitle": "Agilent Technologies, Inc."
+ },
+ "stock:AA": {
+ "subtitle": "Alcoa Corporation"
+ },
+ "stock:AAL": {
+ "subtitle": "American Airlines Group Inc."
+ },
+ "stock:AAOI": {
+ "subtitle": "Applied Optoelectronics, Inc."
+ },
+ "stock:AAON": {
+ "subtitle": "AAON, Inc."
+ },
+ "stock:AAPL": {
+ "subtitle": "Apple"
+ },
+ "stock:ABBV": {
+ "subtitle": "AbbVie"
+ },
+ "stock:ABNB": {
+ "subtitle": "Airbnb"
+ },
+ "stock:ABT": {
+ "subtitle": "Abbott"
+ },
+ "stock:ACHR": {
+ "subtitle": "Archer Aviation"
+ },
+ "stock:ACLS": {
+ "subtitle": "Axcelis Technologies, Inc."
+ },
+ "stock:ACMR": {
+ "subtitle": "ACM Research, Inc."
+ },
+ "stock:ACN": {
+ "subtitle": "Accenture"
+ },
+ "stock:ADBE": {
+ "subtitle": "Adobe"
+ },
+ "stock:ADI": {
+ "subtitle": "Analog Devices"
+ },
+ "stock:ADM": {
+ "subtitle": "Archer-Daniels-Midland Company"
+ },
+ "stock:ADP": {
+ "subtitle": "Automatic Data Processing, Inc."
+ },
+ "stock:ADSK": {
+ "subtitle": "Autodesk, Inc."
+ },
+ "stock:AEE": {
+ "subtitle": "Ameren Corporation"
+ },
+ "stock:AEHR": {
+ "subtitle": "Aehr Test Systems"
+ },
+ "stock:AEP": {
+ "subtitle": "American Electric Power Company, Inc."
+ },
+ "stock:AFL": {
+ "subtitle": "Aflac Incorporated"
+ },
+ "stock:AG": {
+ "subtitle": "First Majestic Silver Corp."
+ },
+ "stock:AGG": {
+ "subtitle": "iShares Core U.S. Aggregate Bond ETF"
+ },
+ "stock:AIAGR": {
+ "subtitle": "AIAGR"
+ },
+ "stock:AIG": {
+ "subtitle": "American International Group, Inc."
+ },
+ "stock:AIP": {
+ "subtitle": "Arteris, Inc."
+ },
+ "stock:AIQ": {
+ "subtitle": "Global X - Artificial Intelligence & Technology ETF"
+ },
+ "stock:AIT": {
+ "subtitle": "Applied Industrial Technologies, Inc."
+ },
+ "stock:AIZ": {
+ "subtitle": "Assurant, Inc."
+ },
+ "stock:AJG": {
+ "subtitle": "Arthur J. Gallagher & Co."
+ },
+ "stock:AKAM": {
+ "subtitle": "Akamai Technologies, Inc."
+ },
+ "stock:ALAB": {
+ "subtitle": "Astera Labs, Inc. Common Stock"
+ },
+ "stock:ALB": {
+ "subtitle": "Albemarle Corporation"
+ },
+ "stock:ALGN": {
+ "subtitle": "Align Technology, Inc."
+ },
+ "stock:ALL": {
+ "subtitle": "The Allstate Corporation"
+ },
+ "stock:ALLY": {
+ "subtitle": "Ally Financial Inc."
+ },
+ "stock:ALNY": {
+ "subtitle": "Alnylam Pharmaceuticals, Inc."
+ },
+ "stock:ALOY": {
+ "subtitle": "REalloys Inc."
+ },
+ "stock:AMAT": {
+ "subtitle": "Applied Materials"
+ },
+ "stock:AMBR": {
+ "subtitle": "Amber International Holding Ltd"
+ },
+ "stock:AMC": {
+ "subtitle": "AMC Entertainment"
+ },
+ "stock:AMD": {
+ "subtitle": "AMD"
+ },
+ "stock:AME": {
+ "subtitle": "AMETEK, Inc."
+ },
+ "stock:AMGN": {
+ "subtitle": "Amgen"
+ },
+ "stock:AMKR": {
+ "subtitle": "Amkor Technology, Inc."
+ },
+ "stock:AMP": {
+ "subtitle": "Ameriprise Financial, Inc."
+ },
+ "stock:AMT": {
+ "subtitle": "American Tower Corporation"
+ },
+ "stock:AMZN": {
+ "subtitle": "Amazon"
+ },
+ "stock:ANET": {
+ "subtitle": "Arista Networks"
+ },
+ "stock:ANTAS": {
+ "subtitle": "ANTAS"
+ },
+ "stock:AOSL": {
+ "subtitle": "Alpha and Omega Semiconductor Limited"
+ },
+ "stock:APA": {
+ "subtitle": "APA Corporation"
+ },
+ "stock:APD": {
+ "subtitle": "Air Products and Chemicals, Inc."
+ },
+ "stock:APG": {
+ "subtitle": "APi Group Corporation"
+ },
+ "stock:APH": {
+ "subtitle": "Amphenol Corporation"
+ },
+ "stock:APLD": {
+ "subtitle": "Applied Digital"
+ },
+ "stock:APO": {
+ "subtitle": "Apollo Global Management, Inc."
+ },
+ "stock:APP": {
+ "subtitle": "AppLovin"
+ },
+ "stock:ARES": {
+ "subtitle": "Ares Management Corporation"
+ },
+ "stock:ARGT": {
+ "subtitle": "Global X - MSCI Argentina ETF"
+ },
+ "stock:ARM": {
+ "subtitle": "Arm"
+ },
+ "stock:ARMK": {
+ "subtitle": "Aramark"
+ },
+ "stock:ARQQ": {
+ "subtitle": "Arqit Quantum Inc."
+ },
+ "stock:ARW": {
+ "subtitle": "Arrow Electronics, Inc."
+ },
+ "stock:ASML": {
+ "subtitle": "ASML"
+ },
+ "stock:ASMPT": {
+ "subtitle": "ASMPT"
+ },
+ "stock:ASTS": {
+ "subtitle": "AST SpaceMobile"
+ },
+ "stock:ATI": {
+ "subtitle": "ATI Inc."
+ },
+ "stock:ATKR": {
+ "subtitle": "Atkore Inc."
+ },
+ "stock:ATO": {
+ "subtitle": "Atmos Energy Corporation"
+ },
+ "stock:AUR": {
+ "subtitle": "Aurora Innovation, Inc."
+ },
+ "stock:AVB": {
+ "subtitle": "AvalonBay Communities, Inc."
+ },
+ "stock:AVGO": {
+ "subtitle": "Broadcom"
+ },
+ "stock:AVY": {
+ "subtitle": "Avery Dennison Corporation"
+ },
+ "stock:AWK": {
+ "subtitle": "American Water Works Company, Inc."
+ },
+ "stock:AXON": {
+ "subtitle": "Axon Enterprise, Inc."
+ },
+ "stock:AXP": {
+ "subtitle": "American Express"
+ },
+ "stock:AXTI": {
+ "subtitle": "AXT, Inc."
+ },
+ "stock:AZN": {
+ "subtitle": "AstraZeneca"
+ },
+ "stock:AZO": {
+ "subtitle": "AutoZone, Inc."
+ },
+ "stock:B": {
+ "subtitle": "Barrick Mining Corporation"
+ },
+ "stock:BA": {
+ "subtitle": "Boeing"
+ },
+ "stock:BABA": {
+ "subtitle": "Alibaba"
+ },
+ "stock:BAC": {
+ "subtitle": "Bank of America"
+ },
+ "stock:BAI": {
+ "subtitle": "iShares A.I. Innovation and Tech Active ETF"
+ },
+ "stock:BALL": {
+ "subtitle": "Ball Corporation"
+ },
+ "stock:BAM": {
+ "subtitle": "Brookfield Asset Management Ltd."
+ },
+ "stock:BANKC": {
+ "subtitle": "BANKC"
+ },
+ "stock:BB": {
+ "subtitle": "BlackBerry Limited"
+ },
+ "stock:BBAI": {
+ "subtitle": "BigBear.ai Holdings, Inc."
+ },
+ "stock:BBY": {
+ "subtitle": "Best Buy Co., Inc."
+ },
+ "stock:BD": {
+ "subtitle": "Russell Investments Core Plus Bond ETF"
+ },
+ "stock:BDWAP": {
+ "subtitle": "BDWAP"
+ },
+ "stock:BDX": {
+ "subtitle": "Becton, Dickinson and Company"
+ },
+ "stock:BE": {
+ "subtitle": "Bloom Energy Corporation"
+ },
+ "stock:BIDU": {
+ "subtitle": "Baidu"
+ },
+ "stock:BIIB": {
+ "subtitle": "Biogen Inc."
+ },
+ "stock:BIL": {
+ "subtitle": "State Street SPDR Bloomberg 1-3 Month T-Bill ETF"
+ },
+ "stock:BILI": {
+ "subtitle": "Bilibili"
+ },
+ "stock:BINC": {
+ "subtitle": "Flexible Income ETF"
+ },
+ "stock:BIRD": {
+ "subtitle": "Smartbird, Inc"
+ },
+ "stock:BIT": {
+ "subtitle": "BlackRock Multi-Sector Income Trust"
+ },
+ "stock:BITX": {
+ "subtitle": "2x Bitcoin Strategy ETF"
+ },
+ "stock:BJ": {
+ "subtitle": "BJ's Wholesale Club Holdings, Inc."
+ },
+ "stock:BKCH": {
+ "subtitle": "Global X - Blockchain ETF"
+ },
+ "stock:BKR": {
+ "subtitle": "Baker Hughes Company"
+ },
+ "stock:BLCR": {
+ "subtitle": "iShares Large Cap Core Active ETF"
+ },
+ "stock:BLK": {
+ "subtitle": "BlackRock"
+ },
+ "stock:BLSH": {
+ "subtitle": "Bullish"
+ },
+ "stock:BMNR": {
+ "subtitle": "BitMine"
+ },
+ "stock:BMY": {
+ "subtitle": "Bristol-Myers Squibb Company"
+ },
+ "stock:BNO": {
+ "subtitle": "United States Brent Oil Fund LP"
+ },
+ "stock:BNY": {
+ "subtitle": "Bank of New York Mellon Corp"
+ },
+ "stock:BOCHK": {
+ "subtitle": "BOCHK"
+ },
+ "stock:BOCOM": {
+ "subtitle": "BOCOM"
+ },
+ "stock:BOT": {
+ "subtitle": "RoboStrategy, Inc. Common Stock"
+ },
+ "stock:BOTZ": {
+ "subtitle": "Global X - Robotics & Artificial Intelligence ETF"
+ },
+ "stock:BR": {
+ "subtitle": "Broadridge Financial Solutions, Inc."
+ },
+ "stock:BRHY": {
+ "subtitle": "iShares High Yield Active ETF"
+ },
+ "stock:BRK.B": {
+ "subtitle": "Berkshire Hathaway"
+ },
+ "stock:BRLN": {
+ "subtitle": "iShares Floating Rate Loan Active ETF"
+ },
+ "stock:BRO": {
+ "subtitle": "Brown & Brown, Inc."
+ },
+ "stock:BRTR": {
+ "subtitle": "iShares Total Return Active ETF"
+ },
+ "stock:BS": {
+ "subtitle": "BS"
+ },
+ "stock:BSP": {
+ "subtitle": "Bending Spoons S.p.A."
+ },
+ "stock:BSX": {
+ "subtitle": "Boston Scientific Corporation"
+ },
+ "stock:BTBT": {
+ "subtitle": "Bit Digital"
+ },
+ "stock:BTDR": {
+ "subtitle": "Bitdeer Technologies Group"
+ },
+ "stock:BTG": {
+ "subtitle": "B2Gold"
+ },
+ "stock:BTGO": {
+ "subtitle": "BitGo"
+ },
+ "stock:BURL": {
+ "subtitle": "Burlington Stores, Inc."
+ },
+ "stock:BWA": {
+ "subtitle": "BorgWarner Inc."
+ },
+ "stock:BWET": {
+ "subtitle": "Breakwave Tanker Shipping ETF"
+ },
+ "stock:BWXT": {
+ "subtitle": "BWX Technologies, Inc."
+ },
+ "stock:BX": {
+ "subtitle": "Blackstone Inc."
+ },
+ "stock:BYDCO": {
+ "subtitle": "BYDCO"
+ },
+ "stock:BZ": {
+ "subtitle": "Kanzhun Limited"
+ },
+ "stock:C": {
+ "subtitle": "Citigroup"
+ },
+ "stock:CAH": {
+ "subtitle": "Cardinal Health, Inc."
+ },
+ "stock:CAMT": {
+ "subtitle": "Camtek Ltd."
+ },
+ "stock:CAPR": {
+ "subtitle": "Capricor"
+ },
+ "stock:CARR": {
+ "subtitle": "Carrier Global Corporation"
+ },
+ "stock:CASY": {
+ "subtitle": "Casey's General Stores, Inc."
+ },
+ "stock:CAT": {
+ "subtitle": "Caterpillar"
+ },
+ "stock:CBRE": {
+ "subtitle": "CBRE Group, Inc."
+ },
+ "stock:CBRS": {
+ "subtitle": "Cerebras Systems Inc."
+ },
+ "stock:CCI": {
+ "subtitle": "Crown Castle Inc."
+ },
+ "stock:CCJ": {
+ "subtitle": "Cameco Corporation"
+ },
+ "stock:CCONB": {
+ "subtitle": "CCONB"
+ },
+ "stock:CDNS": {
+ "subtitle": "Cadence Design Systems, Inc."
+ },
+ "stock:CDW": {
+ "subtitle": "CDW Corporation"
+ },
+ "stock:CEG": {
+ "subtitle": "Constellation Energy"
+ },
+ "stock:CEVA": {
+ "subtitle": "CEVA, Inc."
+ },
+ "stock:CF": {
+ "subtitle": "CF Industries Holdings, Inc."
+ },
+ "stock:CFG": {
+ "subtitle": "Citizens Financial Group, Inc."
+ },
+ "stock:CG": {
+ "subtitle": "The Carlyle Group Inc."
+ },
+ "stock:CHD": {
+ "subtitle": "Church & Dwight Co., Inc."
+ },
+ "stock:CHONG": {
+ "subtitle": "CHONG"
+ },
+ "stock:CHRW": {
+ "subtitle": "C.H. Robinson Worldwide, Inc."
+ },
+ "stock:CHTR": {
+ "subtitle": "Charter Communications, Inc."
+ },
+ "stock:CI": {
+ "subtitle": "Cigna Corporation"
+ },
+ "stock:CIBR": {
+ "subtitle": "First Trust Nasdaq Cybersecurity ETF"
+ },
+ "stock:CIEN": {
+ "subtitle": "Ciena Corporation"
+ },
+ "stock:CIFR": {
+ "subtitle": "Cipher Mining Inc."
+ },
+ "stock:CINF": {
+ "subtitle": "Cincinnati Financial Corporation"
+ },
+ "stock:CITIC": {
+ "subtitle": "CITIC"
+ },
+ "stock:CKAH": {
+ "subtitle": "CKAH"
+ },
+ "stock:CKHUT": {
+ "subtitle": "CKHUT"
+ },
+ "stock:CKINF": {
+ "subtitle": "CKINF"
+ },
+ "stock:CL": {
+ "subtitle": "Colgate-Palmolive Company"
+ },
+ "stock:CLF": {
+ "subtitle": "Cleveland-Cliffs Inc."
+ },
+ "stock:CLH": {
+ "subtitle": "Clean Harbors, Inc."
+ },
+ "stock:CLINS": {
+ "subtitle": "CLINS"
+ },
+ "stock:CLOA": {
+ "subtitle": "iShares AAA CLO Active ETF"
+ },
+ "stock:CLOI": {
+ "subtitle": "VanEck CLO ETF"
+ },
+ "stock:CLONP": {
+ "subtitle": "CLONP"
+ },
+ "stock:CLPHD": {
+ "subtitle": "CLPHD"
+ },
+ "stock:CLS": {
+ "subtitle": "Celestica Inc."
+ },
+ "stock:CLSK": {
+ "subtitle": "CleanSpark, Inc."
+ },
+ "stock:CLX": {
+ "subtitle": "The Clorox Company"
+ },
+ "stock:CMCSA": {
+ "subtitle": "Comcast"
+ },
+ "stock:CME": {
+ "subtitle": "CME Group Inc."
+ },
+ "stock:CMEND": {
+ "subtitle": "CMEND"
+ },
+ "stock:CMERP": {
+ "subtitle": "CMERP"
+ },
+ "stock:CMG": {
+ "subtitle": "Chipotle Mexican Grill, Inc."
+ },
+ "stock:CMI": {
+ "subtitle": "Cummins Inc."
+ },
+ "stock:CMS": {
+ "subtitle": "CMS Energy Corporation"
+ },
+ "stock:CNC": {
+ "subtitle": "Centene Corp."
+ },
+ "stock:CNP": {
+ "subtitle": "CenterPoint Energy, Inc."
+ },
+ "stock:COF": {
+ "subtitle": "Capital One Financial Corporation"
+ },
+ "stock:COHR": {
+ "subtitle": "Coherent"
+ },
+ "stock:COHU": {
+ "subtitle": "Cohu, Inc."
+ },
+ "stock:COIN": {
+ "subtitle": "Coinbase"
+ },
+ "stock:COO": {
+ "subtitle": "The Cooper Companies, Inc."
+ },
+ "stock:COP": {
+ "subtitle": "ConocoPhillips"
+ },
+ "stock:COPX": {
+ "subtitle": "Copper Miners ETF"
+ },
+ "stock:COR": {
+ "subtitle": "Cencora, Inc."
+ },
+ "stock:CORO": {
+ "subtitle": "iShares International Country Rotation Active ETF"
+ },
+ "stock:CORZ": {
+ "subtitle": "Core Scientific, Inc."
+ },
+ "stock:COSC": {
+ "subtitle": "COSC"
+ },
+ "stock:COST": {
+ "subtitle": "Costco"
+ },
+ "stock:COVEL": {
+ "subtitle": "COVEL"
+ },
+ "stock:CPAY": {
+ "subtitle": "Corpay, Inc."
+ },
+ "stock:CPER": {
+ "subtitle": "United States Copper Index Fund"
+ },
+ "stock:CPETC": {
+ "subtitle": "CPETC"
+ },
+ "stock:CPNG": {
+ "subtitle": "Coupang"
+ },
+ "stock:CPRT": {
+ "subtitle": "Copart, Inc."
+ },
+ "stock:CPT": {
+ "subtitle": "Camden Property Trust"
+ },
+ "stock:CRAUT": {
+ "subtitle": "CRAUT"
+ },
+ "stock:CRCL": {
+ "subtitle": "Circle Internet Group"
+ },
+ "stock:CRDO": {
+ "subtitle": "Credo Technology Group Holding Ltd"
+ },
+ "stock:CRESB": {
+ "subtitle": "CRESB"
+ },
+ "stock:CRESL": {
+ "subtitle": "CRESL"
+ },
+ "stock:CRESM": {
+ "subtitle": "CRESM"
+ },
+ "stock:CRESP": {
+ "subtitle": "CRESP"
+ },
+ "stock:CRM": {
+ "subtitle": "Salesforce"
+ },
+ "stock:CRS": {
+ "subtitle": "Carpenter Technology Corporation"
+ },
+ "stock:CRWD": {
+ "subtitle": "CrowdStrike"
+ },
+ "stock:CRWV": {
+ "subtitle": "CoreWeave"
+ },
+ "stock:CS": {
+ "subtitle": "Credit Suisse Group AG"
+ },
+ "stock:CSCO": {
+ "subtitle": "Cisco"
+ },
+ "stock:CSGP": {
+ "subtitle": "CoStar Group, Inc."
+ },
+ "stock:CSHEE": {
+ "subtitle": "CSHEE"
+ },
+ "stock:CSL": {
+ "subtitle": "Carlisle Companies Incorporated"
+ },
+ "stock:CSPC": {
+ "subtitle": "CSPC"
+ },
+ "stock:CSX": {
+ "subtitle": "CSX Corporation"
+ },
+ "stock:CTAS": {
+ "subtitle": "Cintas Corporation"
+ },
+ "stock:CTFJW": {
+ "subtitle": "CTFJW"
+ },
+ "stock:CTINS": {
+ "subtitle": "CTINS"
+ },
+ "stock:CTPCA": {
+ "subtitle": "CTPCA"
+ },
+ "stock:CTSH": {
+ "subtitle": "Cognizant Technology Solutions Corporation"
+ },
+ "stock:CTVA": {
+ "subtitle": "Corteva, Inc."
+ },
+ "stock:CV": {
+ "subtitle": "CapsoVision, Inc."
+ },
+ "stock:CVNA": {
+ "subtitle": "Carvana Co."
+ },
+ "stock:CVS": {
+ "subtitle": "CVS Health Corp."
+ },
+ "stock:CVX": {
+ "subtitle": "Chevron"
+ },
+ "stock:CW": {
+ "subtitle": "Curtiss-Wright Corporation"
+ },
+ "stock:D": {
+ "subtitle": "Dominion Energy, Inc."
+ },
+ "stock:DA": {
+ "subtitle": "DA"
+ },
+ "stock:DAL": {
+ "subtitle": "Delta Air Lines, Inc."
+ },
+ "stock:DASH": {
+ "subtitle": "DoorDash"
+ },
+ "stock:DAX": {
+ "subtitle": "Global X - DAX Germany ETF"
+ },
+ "stock:DBC": {
+ "subtitle": "Invesco DB Commodity Index ETF"
+ },
+ "stock:DDOG": {
+ "subtitle": "Datadog, Inc."
+ },
+ "stock:DE": {
+ "subtitle": "John Deere"
+ },
+ "stock:DECK": {
+ "subtitle": "Deckers Outdoor Corporation"
+ },
+ "stock:DELL": {
+ "subtitle": "Dell"
+ },
+ "stock:DFDV": {
+ "subtitle": "DeFi Development Corp"
+ },
+ "stock:DG": {
+ "subtitle": "Dollar General Corporation"
+ },
+ "stock:DGRW": {
+ "subtitle": "WisdomTree US Quality Dividend Growth ETF"
+ },
+ "stock:DGX": {
+ "subtitle": "Quest Diagnostics Incorporated"
+ },
+ "stock:DGXX": {
+ "subtitle": "Digi Power X Inc."
+ },
+ "stock:DHI": {
+ "subtitle": "D.R. Horton, Inc."
+ },
+ "stock:DHR": {
+ "subtitle": "Danaher Corporation"
+ },
+ "stock:DIS": {
+ "subtitle": "Disney"
+ },
+ "stock:DJT": {
+ "subtitle": "Trump Media & Technology Group Corp."
+ },
+ "stock:DKNG": {
+ "subtitle": "DraftKings Inc."
+ },
+ "stock:DKS": {
+ "subtitle": "DICK'S Sporting Goods, Inc."
+ },
+ "stock:DLR": {
+ "subtitle": "Digital Realty Trust, Inc."
+ },
+ "stock:DLTR": {
+ "subtitle": "Dollar Tree, Inc."
+ },
+ "stock:DNN": {
+ "subtitle": "Denison"
+ },
+ "stock:DOC": {
+ "subtitle": "Healthpeak Properties, Inc."
+ },
+ "stock:DOV": {
+ "subtitle": "Dover Corporation"
+ },
+ "stock:DOW": {
+ "subtitle": "Dow Inc."
+ },
+ "stock:DRAM": {
+ "subtitle": "Roundhill Memory ETF"
+ },
+ "stock:DRI": {
+ "subtitle": "Darden Restaurants, Inc."
+ },
+ "stock:DRS": {
+ "subtitle": "Leonardo DRS, Inc."
+ },
+ "stock:DT": {
+ "subtitle": "Dynatrace, Inc."
+ },
+ "stock:DTCR": {
+ "subtitle": "Global X - Data Center & Digital Infrastructure ETF"
+ },
+ "stock:DTE": {
+ "subtitle": "DTE Energy Company"
+ },
+ "stock:DUK": {
+ "subtitle": "Duke Energy Corporation"
+ },
+ "stock:DVN": {
+ "subtitle": "Devon Energy Corporation"
+ },
+ "stock:DXCM": {
+ "subtitle": "DexCom, Inc."
+ },
+ "stock:DYNF": {
+ "subtitle": "iShares U.S. Equity Factor Rotation Active ETF"
+ },
+ "stock:EA": {
+ "subtitle": "Electronic Arts Inc."
+ },
+ "stock:EBAY": {
+ "subtitle": "eBay Inc."
+ },
+ "stock:ECH": {
+ "subtitle": "iShares MSCI Chile ETF"
+ },
+ "stock:ECL": {
+ "subtitle": "Ecolab Inc."
+ },
+ "stock:ECO": {
+ "subtitle": "Okeanis Eco Tankers Corp."
+ },
+ "stock:ED": {
+ "subtitle": "Consolidated Edison, Inc."
+ },
+ "stock:EEM": {
+ "subtitle": "Emerging Markets ETF"
+ },
+ "stock:EF": {
+ "subtitle": "EF"
+ },
+ "stock:EFA": {
+ "subtitle": "iShares MSCI EAFE ETF"
+ },
+ "stock:EFV": {
+ "subtitle": "iShares MSCI EAFE Value ETF"
+ },
+ "stock:EFX": {
+ "subtitle": "Equifax Inc."
+ },
+ "stock:EG": {
+ "subtitle": "Everest Group, Ltd."
+ },
+ "stock:EI": {
+ "subtitle": "EI"
+ },
+ "stock:EIX": {
+ "subtitle": "Edison International"
+ },
+ "stock:EL": {
+ "subtitle": "The Estée Lauder Companies Inc."
+ },
+ "stock:ELAN": {
+ "subtitle": "Elanco Animal Health Incorporated"
+ },
+ "stock:ELS": {
+ "subtitle": "Equity LifeStyle Properties, Inc."
+ },
+ "stock:ELV": {
+ "subtitle": "Elevance Health Inc."
+ },
+ "stock:EME": {
+ "subtitle": "EMCOR Group, Inc."
+ },
+ "stock:EMR": {
+ "subtitle": "Emerson Electric Co."
+ },
+ "stock:ENB": {
+ "subtitle": "Enbridge Inc."
+ },
+ "stock:ENHA": {
+ "subtitle": "Enhanced Group Inc. Class A"
+ },
+ "stock:ENLV": {
+ "subtitle": "Enlivex"
+ },
+ "stock:ENNHL": {
+ "subtitle": "ENNHL"
+ },
+ "stock:ENPH": {
+ "subtitle": "Enphase Energy"
+ },
+ "stock:ENTG": {
+ "subtitle": "Entegris, Inc."
+ },
+ "stock:EOG": {
+ "subtitle": "EOG Resources, Inc."
+ },
+ "stock:EQH": {
+ "subtitle": "Equitable Holdings, Inc."
+ },
+ "stock:EQI": {
+ "subtitle": "EQI"
+ },
+ "stock:EQIX": {
+ "subtitle": "Equinix, Inc."
+ },
+ "stock:EQR": {
+ "subtitle": "Equity Residential"
+ },
+ "stock:EQT": {
+ "subtitle": "EQT Corporation"
+ },
+ "stock:ES": {
+ "subtitle": "Eversource Energy"
+ },
+ "stock:ESS": {
+ "subtitle": "Essex Property Trust, Inc."
+ },
+ "stock:ETHA": {
+ "subtitle": "iShares Ethereum Trust"
+ },
+ "stock:ETN": {
+ "subtitle": "Eaton Corporation plc"
+ },
+ "stock:ETR": {
+ "subtitle": "Entergy Corporation"
+ },
+ "stock:EUHY": {
+ "subtitle": "iShares, Inc. - iShares Euro High Yield Corporate Bond USD Hedged ETF"
+ },
+ "stock:EVR": {
+ "subtitle": "Evercore Inc."
+ },
+ "stock:EVRG": {
+ "subtitle": "Evergy, Inc."
+ },
+ "stock:EW": {
+ "subtitle": "Edwards Lifesciences Corporation"
+ },
+ "stock:EWBC": {
+ "subtitle": "East West Bancorp, Inc."
+ },
+ "stock:EWG": {
+ "subtitle": "iShares MSCI Germany ETF"
+ },
+ "stock:EWJ": {
+ "subtitle": "iShares MSCI Japan ETF"
+ },
+ "stock:EWQ": {
+ "subtitle": "iShares MSCI France ETF"
+ },
+ "stock:EWT": {
+ "subtitle": "iShares MSCI Taiwan ETF"
+ },
+ "stock:EWU": {
+ "subtitle": "iShares MSCI United Kingdom ETF"
+ },
+ "stock:EWY": {
+ "subtitle": "iShares MSCI South Korea ETF"
+ },
+ "stock:EWZ": {
+ "subtitle": "iShares MSCI Brazil ETF"
+ },
+ "stock:EXC": {
+ "subtitle": "Exelon Corporation"
+ },
+ "stock:EXE": {
+ "subtitle": "Expand Energy Corporation"
+ },
+ "stock:EXEL": {
+ "subtitle": "Exelixis, Inc."
+ },
+ "stock:EXOD": {
+ "subtitle": "Exodus Movement, Inc."
+ },
+ "stock:EXPD": {
+ "subtitle": "Expeditors International of Washington, Inc."
+ },
+ "stock:EXR": {
+ "subtitle": "Extra Space Storage Inc."
+ },
+ "stock:EXTR": {
+ "subtitle": "Extreme Networks, Inc."
+ },
+ "stock:F": {
+ "subtitle": "Ford"
+ },
+ "stock:FAAA": {
+ "subtitle": "FIDELITY AAA CLO ETF"
+ },
+ "stock:FANG": {
+ "subtitle": "Diamondback Energy, Inc."
+ },
+ "stock:FAST": {
+ "subtitle": "Fastenal Company"
+ },
+ "stock:FC": {
+ "subtitle": "Franklin Covey Co."
+ },
+ "stock:FCEL": {
+ "subtitle": "FuelCell Energy, Inc."
+ },
+ "stock:FCNCA": {
+ "subtitle": "First Citizens BancShares, Inc."
+ },
+ "stock:FCX": {
+ "subtitle": "Freeport-McMoRan"
+ },
+ "stock:FD": {
+ "subtitle": "FD"
+ },
+ "stock:FDX": {
+ "subtitle": "FedEx Corporation"
+ },
+ "stock:FDXF": {
+ "subtitle": "FedEx Freight Holding Company, Inc."
+ },
+ "stock:FE": {
+ "subtitle": "FirstEnergy Corp."
+ },
+ "stock:FERG": {
+ "subtitle": "Ferguson plc"
+ },
+ "stock:FEZ": {
+ "subtitle": "State Street SPDR EURO STOXX 50 ETF"
+ },
+ "stock:FFIV": {
+ "subtitle": "F5, Inc."
+ },
+ "stock:FFOG": {
+ "subtitle": "Franklin Focused Growth ETF"
+ },
+ "stock:FGDL": {
+ "subtitle": "Franklin Responsibly Sourced Gold ETF"
+ },
+ "stock:FHN": {
+ "subtitle": "First Horizon Corporation"
+ },
+ "stock:FI": {
+ "subtitle": "Fiserv, Inc."
+ },
+ "stock:FICO": {
+ "subtitle": "Fair Isaac Corporation"
+ },
+ "stock:FIG": {
+ "subtitle": "Figma, Inc."
+ },
+ "stock:FIGR": {
+ "subtitle": "Figure Technology Solutions, Inc. Class A Common Stock"
+ },
+ "stock:FIS": {
+ "subtitle": "Fidelity National Information Services, Inc."
+ },
+ "stock:FISV": {
+ "subtitle": "Fiserv, Inc."
+ },
+ "stock:FITB": {
+ "subtitle": "Fifth Third Bancorp"
+ },
+ "stock:FIX": {
+ "subtitle": "Comfort Systems USA, Inc."
+ },
+ "stock:FLBL": {
+ "subtitle": "Franklin Senior Loan ETF"
+ },
+ "stock:FLEX": {
+ "subtitle": "Flex Ltd."
+ },
+ "stock:FLHY": {
+ "subtitle": "Franklin High Yield Corporate ETF"
+ },
+ "stock:FLNC": {
+ "subtitle": "Fluence Energy, Inc."
+ },
+ "stock:FLQL": {
+ "subtitle": "Franklin U.S. Large Cap Multifactor Index ETF"
+ },
+ "stock:FLQM": {
+ "subtitle": "Franklin U.S. Mid Cap Multifactor Index ETF"
+ },
+ "stock:FN": {
+ "subtitle": "Fabrinet"
+ },
+ "stock:FNF": {
+ "subtitle": "Fidelity National Financial, Inc."
+ },
+ "stock:FORM": {
+ "subtitle": "FormFactor, Inc."
+ },
+ "stock:FPS": {
+ "subtitle": "Forgent Power Solutions, Inc."
+ },
+ "stock:FSLR": {
+ "subtitle": "First Solar, Inc."
+ },
+ "stock:FSML": {
+ "subtitle": "Franklin Small Cap Enhanced ETF"
+ },
+ "stock:FSOL": {
+ "subtitle": "FSOL"
+ },
+ "stock:FTAI": {
+ "subtitle": "FTAI Aviation Ltd."
+ },
+ "stock:FTGC": {
+ "subtitle": "First Trust Global Tactical Commodity Strategy Fund"
+ },
+ "stock:FTNT": {
+ "subtitle": "Fortinet, Inc."
+ },
+ "stock:FTV": {
+ "subtitle": "Fortive Corporation"
+ },
+ "stock:FUTU": {
+ "subtitle": "Futu Holdings"
+ },
+ "stock:FWONK": {
+ "subtitle": "Liberty Media Corporation"
+ },
+ "stock:FXI": {
+ "subtitle": "iShares China Large-Cap ETF"
+ },
+ "stock:GD": {
+ "subtitle": "General Dynamics Corporation"
+ },
+ "stock:GDX": {
+ "subtitle": "VanEck Gold Miners ETF"
+ },
+ "stock:GE": {
+ "subtitle": "GE Aerospace"
+ },
+ "stock:GEEL": {
+ "subtitle": "GEEL"
+ },
+ "stock:GEHC": {
+ "subtitle": "GE HealthCare Technologies Inc."
+ },
+ "stock:GEMI": {
+ "subtitle": "Gemini Space Station, Inc."
+ },
+ "stock:GEN": {
+ "subtitle": "Gen Digital Inc."
+ },
+ "stock:GENTE": {
+ "subtitle": "GENTE"
+ },
+ "stock:GEV": {
+ "subtitle": "GE Vernova"
+ },
+ "stock:GFS": {
+ "subtitle": "GlobalFoundries"
+ },
+ "stock:GGG": {
+ "subtitle": "Graco Inc."
+ },
+ "stock:GGOV": {
+ "subtitle": "iShares Global Government Bond USD Hedged Active ETF"
+ },
+ "stock:GILD": {
+ "subtitle": "Gilead Sciences, Inc."
+ },
+ "stock:GIS": {
+ "subtitle": "General Mills, Inc."
+ },
+ "stock:GL": {
+ "subtitle": "Globe Life Inc."
+ },
+ "stock:GLD": {
+ "subtitle": "Gold ETF"
+ },
+ "stock:GLPI": {
+ "subtitle": "Gaming and Leisure Properties, Inc."
+ },
+ "stock:GLTR": {
+ "subtitle": "abrdn Physical Precious Metals Basket ETF"
+ },
+ "stock:GLW": {
+ "subtitle": "Corning Inc"
+ },
+ "stock:GLXY": {
+ "subtitle": "Galaxy Digital"
+ },
+ "stock:GM": {
+ "subtitle": "General Motors Company"
+ },
+ "stock:GME": {
+ "subtitle": "GameStop"
+ },
+ "stock:GNRC": {
+ "subtitle": "Generac Holdings Inc."
+ },
+ "stock:GOLD": {
+ "subtitle": "Gold.com, Inc."
+ },
+ "stock:GOOGL": {
+ "subtitle": "Google"
+ },
+ "stock:GPC": {
+ "subtitle": "Genuine Parts Company"
+ },
+ "stock:GPN": {
+ "subtitle": "Global Payments Inc."
+ },
+ "stock:GRAB": {
+ "subtitle": "Grab"
+ },
+ "stock:GRND": {
+ "subtitle": "Grindr Inc."
+ },
+ "stock:GS": {
+ "subtitle": "Goldman Sachs"
+ },
+ "stock:GWW": {
+ "subtitle": "W.W. Grainger, Inc."
+ },
+ "stock:HAIDL": {
+ "subtitle": "HAIDL"
+ },
+ "stock:HAIER": {
+ "subtitle": "HAIER"
+ },
+ "stock:HAL": {
+ "subtitle": "Halliburton Company"
+ },
+ "stock:HAS": {
+ "subtitle": "Hasbro, Inc."
+ },
+ "stock:HBAN": {
+ "subtitle": "Huntington Bancshares Incorporated"
+ },
+ "stock:HCA": {
+ "subtitle": "HCA Healthcare, Inc."
+ },
+ "stock:HD": {
+ "subtitle": "Home Depot"
+ },
+ "stock:HEI": {
+ "subtitle": "HEICO Corporation"
+ },
+ "stock:HIG": {
+ "subtitle": "The Hartford Insurance Group, Inc."
+ },
+ "stock:HII": {
+ "subtitle": "Huntington Ingalls Industries, Inc."
+ },
+ "stock:HIMS": {
+ "subtitle": "Hims & Hers"
+ },
+ "stock:HIMX": {
+ "subtitle": "Himax Technologies, Inc."
+ },
+ "stock:HIVE": {
+ "subtitle": "HIVE Digital Technologies Ltd."
+ },
+ "stock:HKCGA": {
+ "subtitle": "HKCGA"
+ },
+ "stock:HKEXC": {
+ "subtitle": "HKEXC"
+ },
+ "stock:HLIT": {
+ "subtitle": "Harmonic Inc."
+ },
+ "stock:HLT": {
+ "subtitle": "Hilton Worldwide Holdings Inc."
+ },
+ "stock:HNDLD": {
+ "subtitle": "HNDLD"
+ },
+ "stock:HON": {
+ "subtitle": "Honeywell"
+ },
+ "stock:HOOD": {
+ "subtitle": "Robinhood"
+ },
+ "stock:HPE": {
+ "subtitle": "Hewlett Packard Enterprise Company"
+ },
+ "stock:HPQ": {
+ "subtitle": "HP Inc."
+ },
+ "stock:HRZRB": {
+ "subtitle": "HRZRB"
+ },
+ "stock:HSAI": {
+ "subtitle": "Hesai"
+ },
+ "stock:HST": {
+ "subtitle": "Host Hotels & Resorts, Inc."
+ },
+ "stock:HSY": {
+ "subtitle": "The Hershey Company"
+ },
+ "stock:HUBB": {
+ "subtitle": "Hubbell Incorporated"
+ },
+ "stock:HUM": {
+ "subtitle": "Humana Inc."
+ },
+ "stock:HUT": {
+ "subtitle": "Hut 8 Corp."
+ },
+ "stock:HWM": {
+ "subtitle": "Howmet Aerospace Inc."
+ },
+ "stock:HYG": {
+ "subtitle": "iShares iBoxx $ High Yield Corporate Bond ETF"
+ },
+ "stock:HYGW": {
+ "subtitle": "iShares High Yield Corporate Bond BuyWrite Strategy ETF"
+ },
+ "stock:HYS": {
+ "subtitle": "PIMCO 0-5 Year High Yield Corporate Bond Index Exchange-Traded Fund"
+ },
+ "stock:IALT": {
+ "subtitle": "iShares Systematic Alternatives Active ETF"
+ },
+ "stock:IAU": {
+ "subtitle": "Gold ETF"
+ },
+ "stock:IBIT": {
+ "subtitle": "iShares Bitcoin Trust"
+ },
+ "stock:IBKR": {
+ "subtitle": "Interactive Brokers Group, Inc."
+ },
+ "stock:IBM": {
+ "subtitle": "IBM"
+ },
+ "stock:ICBC": {
+ "subtitle": "ICBC"
+ },
+ "stock:ICE": {
+ "subtitle": "Intercontinental Exchange, Inc."
+ },
+ "stock:ICHR": {
+ "subtitle": "Ichor Holdings, Ltd."
+ },
+ "stock:IDEF": {
+ "subtitle": "iShares Defense Industrials Act"
+ },
+ "stock:IDX": {
+ "subtitle": "VanEck Indonesia Index ETF"
+ },
+ "stock:IDXX": {
+ "subtitle": "IDEXX Laboratories, Inc."
+ },
+ "stock:IE": {
+ "subtitle": "Ivanhoe Electric Inc."
+ },
+ "stock:IEF": {
+ "subtitle": "iShares 7-10 Year Treasury Bond ETF"
+ },
+ "stock:IEFA": {
+ "subtitle": "iShares Core MSCI EAFE ETF"
+ },
+ "stock:IEI": {
+ "subtitle": "iShares 3-7 Year Treasury Bond ETF"
+ },
+ "stock:IEMG": {
+ "subtitle": "Emerging Markets Core ETF"
+ },
+ "stock:IEX": {
+ "subtitle": "IDEX Corporation"
+ },
+ "stock:IFF": {
+ "subtitle": "International Flavors & Fragrances Inc."
+ },
+ "stock:IGEB": {
+ "subtitle": "iShares Investment Grade Systematic Bond ETF"
+ },
+ "stock:IGV": {
+ "subtitle": "iShares Expanded Tech-Software Sector ETF"
+ },
+ "stock:IJH": {
+ "subtitle": "iShares Core S&P Mid-Cap ETF"
+ },
+ "stock:IJR": {
+ "subtitle": "iShares S&P Small-Cap ETF"
+ },
+ "stock:IJS": {
+ "subtitle": "iShares S&P Small-Cap 600 Value ETF"
+ },
+ "stock:ILMN": {
+ "subtitle": "Illumina, Inc."
+ },
+ "stock:INCE": {
+ "subtitle": "Franklin Income Equity Focus ETF"
+ },
+ "stock:INCY": {
+ "subtitle": "Incyte Corporation"
+ },
+ "stock:INDA": {
+ "subtitle": "iShares MSCI India ETF"
+ },
+ "stock:INOD": {
+ "subtitle": "Innodata Inc."
+ },
+ "stock:INRO": {
+ "subtitle": "iShares U.S. Industry Rotation Active ETF"
+ },
+ "stock:INSM": {
+ "subtitle": "Insmed Incorporated"
+ },
+ "stock:INSW": {
+ "subtitle": "International Seaways, Inc."
+ },
+ "stock:INTC": {
+ "subtitle": "Intel"
+ },
+ "stock:INTU": {
+ "subtitle": "Intuit Inc."
+ },
+ "stock:INTW": {
+ "subtitle": "GraniteShares 2x Long INTC Daily ETF"
+ },
+ "stock:INVH": {
+ "subtitle": "Invitation Homes Inc."
+ },
+ "stock:IONQ": {
+ "subtitle": "IonQ"
+ },
+ "stock:IP": {
+ "subtitle": "International Paper Company"
+ },
+ "stock:IQM": {
+ "subtitle": "Franklin Intelligent Machines ETF"
+ },
+ "stock:IQV": {
+ "subtitle": "IQVIA Holdings Inc."
+ },
+ "stock:IR": {
+ "subtitle": "Ingersoll Rand Inc."
+ },
+ "stock:IRDM": {
+ "subtitle": "Iridium Communications Inc."
+ },
+ "stock:IREN": {
+ "subtitle": "IREN"
+ },
+ "stock:IRM": {
+ "subtitle": "Iron Mountain Incorporated"
+ },
+ "stock:ISRG": {
+ "subtitle": "Intuitive Surgical"
+ },
+ "stock:ITA": {
+ "subtitle": "iShares U.S. Aerospace & Defense ETF"
+ },
+ "stock:ITOT": {
+ "subtitle": "Total US Stock Market ETF"
+ },
+ "stock:ITT": {
+ "subtitle": "ITT Inc."
+ },
+ "stock:ITW": {
+ "subtitle": "Illinois Tool Works Inc."
+ },
+ "stock:IVV": {
+ "subtitle": "iShares Core S&P 500 ETF"
+ },
+ "stock:IWF": {
+ "subtitle": "iShares Russell 1000 Growth ETF"
+ },
+ "stock:IWM": {
+ "subtitle": "Russell 2000 ETF"
+ },
+ "stock:IWN": {
+ "subtitle": "iShares Russell 2000 Value ETF"
+ },
+ "stock:IYW": {
+ "subtitle": "iShares U.S. Technology ETF"
+ },
+ "stock:J": {
+ "subtitle": "Jacobs Solutions Inc."
+ },
+ "stock:JAAA": {
+ "subtitle": "AAA CLO ETF"
+ },
+ "stock:JBHT": {
+ "subtitle": "J.B. Hunt Transport Services, Inc."
+ },
+ "stock:JBL": {
+ "subtitle": "Jabil Inc."
+ },
+ "stock:JD": {
+ "subtitle": "JD.com"
+ },
+ "stock:JDHLT": {
+ "subtitle": "JDHLT"
+ },
+ "stock:JDLOG": {
+ "subtitle": "JDLOG"
+ },
+ "stock:JLL": {
+ "subtitle": "Jones Lang LaSalle Incorporated"
+ },
+ "stock:JMKE": {
+ "subtitle": "Jersey Mike's Subs Inc."
+ },
+ "stock:JNJ": {
+ "subtitle": "Johnson & Johnson"
+ },
+ "stock:JPM": {
+ "subtitle": "JPMorgan"
+ },
+ "stock:JPST": {
+ "subtitle": "JPMorgan Ultra-Short Income ETF"
+ },
+ "stock:JPY": {
+ "subtitle": "Lazard Japanese Equity ETF"
+ },
+ "stock:JTGEX": {
+ "subtitle": "JTGEX"
+ },
+ "stock:KDP": {
+ "subtitle": "Keurig Dr Pepper Inc."
+ },
+ "stock:KEEL": {
+ "subtitle": "Bitfarms Ltd."
+ },
+ "stock:KEY": {
+ "subtitle": "KeyCorp"
+ },
+ "stock:KEYS": {
+ "subtitle": "Keysight Technologies, Inc."
+ },
+ "stock:KHC": {
+ "subtitle": "The Kraft Heinz Company"
+ },
+ "stock:KIM": {
+ "subtitle": "Kimco Realty Corporation"
+ },
+ "stock:KKR": {
+ "subtitle": "KKR & Co. Inc."
+ },
+ "stock:KLAC": {
+ "subtitle": "KLA"
+ },
+ "stock:KMB": {
+ "subtitle": "Kimberly-Clark Corporation"
+ },
+ "stock:KMI": {
+ "subtitle": "Kinder Morgan, Inc."
+ },
+ "stock:KN": {
+ "subtitle": "Knowles Corporation"
+ },
+ "stock:KNX": {
+ "subtitle": "Knight-Swift Transportation Holdings Inc."
+ },
+ "stock:KO": {
+ "subtitle": "Coca-Cola"
+ },
+ "stock:KOPN": {
+ "subtitle": "Kopin Corp."
+ },
+ "stock:KORU": {
+ "subtitle": "Direxion Daily MSCI South Korea Bull 3X ETF"
+ },
+ "stock:KR": {
+ "subtitle": "The Kroger Co."
+ },
+ "stock:KRAQ": {
+ "subtitle": "KRAKacquisition Corp Class A Ordinary Shares"
+ },
+ "stock:KUAI": {
+ "subtitle": "KUAI"
+ },
+ "stock:KUNL": {
+ "subtitle": "KUNL"
+ },
+ "stock:KVUE": {
+ "subtitle": "Kenvue Inc."
+ },
+ "stock:KWEB": {
+ "subtitle": "KraneShares CSI China Internet ETF"
+ },
+ "stock:L": {
+ "subtitle": "Loews Corporation"
+ },
+ "stock:LAMR": {
+ "subtitle": "Lamar Advertising Company"
+ },
+ "stock:LAOPG": {
+ "subtitle": "LAOPG"
+ },
+ "stock:LASR": {
+ "subtitle": "nLIGHT, Inc."
+ },
+ "stock:LDOS": {
+ "subtitle": "Leidos Holdings, Inc."
+ },
+ "stock:LECO": {
+ "subtitle": "Lincoln Electric Holdings, Inc."
+ },
+ "stock:LEMB": {
+ "subtitle": "iShares J.P. Morgan EM Local Currency Bond ETF"
+ },
+ "stock:LEN": {
+ "subtitle": "Lennar Corporation"
+ },
+ "stock:LH": {
+ "subtitle": "Labcorp Holdings Inc."
+ },
+ "stock:LHX": {
+ "subtitle": "L3Harris Technologies, Inc."
+ },
+ "stock:LI": {
+ "subtitle": "Li Auto"
+ },
+ "stock:LII": {
+ "subtitle": "Lennox International Inc."
+ },
+ "stock:LIN": {
+ "subtitle": "Linde plc"
+ },
+ "stock:LIT": {
+ "subtitle": "Global X - Lithium & Battery Tech ETF"
+ },
+ "stock:LITE": {
+ "subtitle": "Lumentum Holdings Inc."
+ },
+ "stock:LLY": {
+ "subtitle": "Eli Lilly"
+ },
+ "stock:LMT": {
+ "subtitle": "Lockheed Martin"
+ },
+ "stock:LNG": {
+ "subtitle": "Cheniere Energy, Inc."
+ },
+ "stock:LNT": {
+ "subtitle": "Alliant Energy Corporation"
+ },
+ "stock:LOW": {
+ "subtitle": "Lowe's"
+ },
+ "stock:LPLA": {
+ "subtitle": "LPL Financial Holdings Inc."
+ },
+ "stock:LPTH": {
+ "subtitle": "LightPath Technologies, Inc."
+ },
+ "stock:LRC": {
+ "subtitle": "LRC"
+ },
+ "stock:LRCX": {
+ "subtitle": "Lam Research"
+ },
+ "stock:LSCC": {
+ "subtitle": "Lattice Semiconductor Corporation"
+ },
+ "stock:LUNR": {
+ "subtitle": "Intuitive Machines"
+ },
+ "stock:LUV": {
+ "subtitle": "Southwest Airlines Co."
+ },
+ "stock:LVS": {
+ "subtitle": "Las Vegas Sands Corp."
+ },
+ "stock:LWLG": {
+ "subtitle": "Lightwave Logic, Inc."
+ },
+ "stock:LYTE": {
+ "subtitle": "Roundhill Photonics & Optics ETF"
+ },
+ "stock:LYV": {
+ "subtitle": "Live Nation Entertainment, Inc."
+ },
+ "stock:MA": {
+ "subtitle": "Mastercard"
+ },
+ "stock:MAA": {
+ "subtitle": "Mid-America Apartment Communities, Inc."
+ },
+ "stock:MAGS": {
+ "subtitle": "Roundhill Magnificent Seven ETF"
+ },
+ "stock:MAR": {
+ "subtitle": "Marriott International, Inc."
+ },
+ "stock:MARA": {
+ "subtitle": "MARA Holdings"
+ },
+ "stock:MAS": {
+ "subtitle": "Masco Corporation"
+ },
+ "stock:MBLY": {
+ "subtitle": "Mobileye"
+ },
+ "stock:MCD": {
+ "subtitle": "McDonald's"
+ },
+ "stock:MCHP": {
+ "subtitle": "Microchip Technology Incorporated"
+ },
+ "stock:MCK": {
+ "subtitle": "McKesson Corporation"
+ },
+ "stock:MCO": {
+ "subtitle": "Moody's Corporation"
+ },
+ "stock:MDB": {
+ "subtitle": "MongoDB, Inc."
+ },
+ "stock:MDLN": {
+ "subtitle": "Medline Inc."
+ },
+ "stock:MDLZ": {
+ "subtitle": "Mondelez International, Inc."
+ },
+ "stock:MDT": {
+ "subtitle": "Medtronic plc"
+ },
+ "stock:MEI": {
+ "subtitle": "Methode Electronics, Inc."
+ },
+ "stock:MEIT": {
+ "subtitle": "MEIT"
+ },
+ "stock:MELI": {
+ "subtitle": "MercadoLibre"
+ },
+ "stock:MET": {
+ "subtitle": "MetLife, Inc."
+ },
+ "stock:META": {
+ "subtitle": "Meta"
+ },
+ "stock:MIXU": {
+ "subtitle": "MIXU"
+ },
+ "stock:MKC": {
+ "subtitle": "McCormick & Company, Incorporated"
+ },
+ "stock:MKL": {
+ "subtitle": "Markel Corporation"
+ },
+ "stock:MKSI": {
+ "subtitle": "MKS Inc."
+ },
+ "stock:MLI": {
+ "subtitle": "Mueller Industries, Inc."
+ },
+ "stock:MLM": {
+ "subtitle": "Martin Marietta Materials, Inc."
+ },
+ "stock:MMG": {
+ "subtitle": "MMG"
+ },
+ "stock:MMM": {
+ "subtitle": "3M Company"
+ },
+ "stock:MO": {
+ "subtitle": "Altria Group, Inc."
+ },
+ "stock:MOO": {
+ "subtitle": "VanEck Agribusiness ETF"
+ },
+ "stock:MP": {
+ "subtitle": "MP Materials"
+ },
+ "stock:MPC": {
+ "subtitle": "Marathon Petroleum Corporation"
+ },
+ "stock:MPWR": {
+ "subtitle": "Monolithic Power Systems, Inc."
+ },
+ "stock:MRK": {
+ "subtitle": "Merck"
+ },
+ "stock:MRNA": {
+ "subtitle": "Moderna"
+ },
+ "stock:MRSH": {
+ "subtitle": "Marsh & McLennan Companies, Inc."
+ },
+ "stock:MRVL": {
+ "subtitle": "Marvell"
+ },
+ "stock:MS": {
+ "subtitle": "Morgan Stanley"
+ },
+ "stock:MSCI": {
+ "subtitle": "MSCI Inc."
+ },
+ "stock:MSFT": {
+ "subtitle": "Microsoft"
+ },
+ "stock:MSI": {
+ "subtitle": "Motorola Solutions, Inc."
+ },
+ "stock:MSTR": {
+ "subtitle": "MicroStrategy"
+ },
+ "stock:MTB": {
+ "subtitle": "M&T Bank Corporation"
+ },
+ "stock:MTD": {
+ "subtitle": "Mettler-Toledo International Inc."
+ },
+ "stock:MTRCP": {
+ "subtitle": "MTRCP"
+ },
+ "stock:MTSI": {
+ "subtitle": "MACOM Technology Solutions Holdings, Inc."
+ },
+ "stock:MTZ": {
+ "subtitle": "MasTec, Inc."
+ },
+ "stock:MU": {
+ "subtitle": "Micron"
+ },
+ "stock:MUU": {
+ "subtitle": "Direxion Daily MU Bull 2X ETF"
+ },
+ "stock:MVLL": {
+ "subtitle": "GraniteShares 2x Long MRVL Daily ETF"
+ },
+ "stock:MXL": {
+ "subtitle": "MaxLinear, Inc."
+ },
+ "stock:MYRG": {
+ "subtitle": "MYR Group Inc."
+ },
+ "stock:NAT": {
+ "subtitle": "Nordic American Tankers Limited"
+ },
+ "stock:NBI": {
+ "subtitle": "NBI"
+ },
+ "stock:NBIS": {
+ "subtitle": "Nebius"
+ },
+ "stock:NBIX": {
+ "subtitle": "Neurocrine Biosciences, Inc."
+ },
+ "stock:NCLD": {
+ "subtitle": "Roundhill Neocloud ETF"
+ },
+ "stock:NDAQ": {
+ "subtitle": "Nasdaq, Inc."
+ },
+ "stock:NDSN": {
+ "subtitle": "Nordson Corporation"
+ },
+ "stock:NEE": {
+ "subtitle": "NextEra"
+ },
+ "stock:NEM": {
+ "subtitle": "Newmont"
+ },
+ "stock:NET": {
+ "subtitle": "Cloudflare"
+ },
+ "stock:NFL": {
+ "subtitle": "NFL"
+ },
+ "stock:NFLX": {
+ "subtitle": "Netflix"
+ },
+ "stock:NI": {
+ "subtitle": "NiSource Inc"
+ },
+ "stock:NIKL": {
+ "subtitle": "Sprott Nickel Miners ETF"
+ },
+ "stock:NIO": {
+ "subtitle": "NIO"
+ },
+ "stock:NKE": {
+ "subtitle": "Nike"
+ },
+ "stock:NLR": {
+ "subtitle": "VanEck Uranium and Nuclear ETF"
+ },
+ "stock:NLY": {
+ "subtitle": "Annaly Capital Management, Inc."
+ },
+ "stock:NNE": {
+ "subtitle": "Nano Nuclear Energy Inc."
+ },
+ "stock:NOC": {
+ "subtitle": "Northrop Grumman"
+ },
+ "stock:NOK": {
+ "subtitle": "Nokia Oyj"
+ },
+ "stock:NONG": {
+ "subtitle": "NONG"
+ },
+ "stock:NOW": {
+ "subtitle": "ServiceNow"
+ },
+ "stock:NRG": {
+ "subtitle": "NRG Energy, Inc."
+ },
+ "stock:NSC": {
+ "subtitle": "Norfolk Southern Corporation"
+ },
+ "stock:NTAP": {
+ "subtitle": "NetApp, Inc."
+ },
+ "stock:NTES": {
+ "subtitle": "NetEase"
+ },
+ "stock:NTN": {
+ "subtitle": "NTN"
+ },
+ "stock:NTNX": {
+ "subtitle": "Nutanix, Inc."
+ },
+ "stock:NTRA": {
+ "subtitle": "Natera, Inc."
+ },
+ "stock:NTRS": {
+ "subtitle": "Northern Trust Corporation"
+ },
+ "stock:NUE": {
+ "subtitle": "Nucor Corporation"
+ },
+ "stock:NVDA": {
+ "subtitle": "NVIDIA"
+ },
+ "stock:NVMI": {
+ "subtitle": "Nova Ltd."
+ },
+ "stock:NVO": {
+ "subtitle": "Novo Nordisk"
+ },
+ "stock:NVT": {
+ "subtitle": "nVent Electric plc"
+ },
+ "stock:NVTS": {
+ "subtitle": "Navitas Semiconductor Corp"
+ },
+ "stock:NYT": {
+ "subtitle": "The New York Times Company"
+ },
+ "stock:O": {
+ "subtitle": "Realty Income Corporation"
+ },
+ "stock:ODFL": {
+ "subtitle": "Old Dominion Freight Line, Inc."
+ },
+ "stock:OHI": {
+ "subtitle": "Omega Healthcare Investors, Inc."
+ },
+ "stock:OIH": {
+ "subtitle": "VanEck Oil Services ETF"
+ },
+ "stock:OII": {
+ "subtitle": "Oceaneering International, Inc."
+ },
+ "stock:OKE": {
+ "subtitle": "ONEOK, Inc."
+ },
+ "stock:OKLO": {
+ "subtitle": "Oklo"
+ },
+ "stock:OKTA": {
+ "subtitle": "Okta, Inc."
+ },
+ "stock:OMC": {
+ "subtitle": "Omnicom Group Inc."
+ },
+ "stock:ON": {
+ "subtitle": "ON Semiconductor"
+ },
+ "stock:ONDS": {
+ "subtitle": "Ondas"
+ },
+ "stock:ONTO": {
+ "subtitle": "Onto Innovation Inc."
+ },
+ "stock:OPEN": {
+ "subtitle": "Opendoor Technologies Inc."
+ },
+ "stock:OPRA": {
+ "subtitle": "Opera Limited"
+ },
+ "stock:ORBX": {
+ "subtitle": "Global X Space Tech ETF"
+ },
+ "stock:ORCL": {
+ "subtitle": "Oracle"
+ },
+ "stock:ORLY": {
+ "subtitle": "O'Reilly Automotive, Inc."
+ },
+ "stock:OSCR": {
+ "subtitle": "Oscar Health, Inc."
+ },
+ "stock:OTIS": {
+ "subtitle": "Otis Worldwide Corporation"
+ },
+ "stock:OUST": {
+ "subtitle": "Ouster, Inc."
+ },
+ "stock:OVV": {
+ "subtitle": "Ovintiv Inc."
+ },
+ "stock:OXY": {
+ "subtitle": "Occidental"
+ },
+ "stock:P": {
+ "subtitle": "Everpure, Inc."
+ },
+ "stock:PALL": {
+ "subtitle": "Palladium ETF"
+ },
+ "stock:PANW": {
+ "subtitle": "Palo Alto Networks"
+ },
+ "stock:PAVE": {
+ "subtitle": "Global X - U.S. Infrastructure Development ETF"
+ },
+ "stock:PAY": {
+ "subtitle": "Paymentus Holdings, Inc."
+ },
+ "stock:PAYX": {
+ "subtitle": "Paychex, Inc."
+ },
+ "stock:PBR": {
+ "subtitle": "Petrobras"
+ },
+ "stock:PCAR": {
+ "subtitle": "PACCAR Inc"
+ },
+ "stock:PCG": {
+ "subtitle": "PG&E"
+ },
+ "stock:PDBC": {
+ "subtitle": "Invesco Optimum Yield Diversified Commodity Strategy No K-1 ETF"
+ },
+ "stock:PDD": {
+ "subtitle": "Pinduoduo / Temu"
+ },
+ "stock:PEG": {
+ "subtitle": "Public Service Enterprise Group Incorporated"
+ },
+ "stock:PEN": {
+ "subtitle": "Penumbra, Inc."
+ },
+ "stock:PENG": {
+ "subtitle": "Penguin Solutions, Inc."
+ },
+ "stock:PEP": {
+ "subtitle": "PepsiCo"
+ },
+ "stock:PFE": {
+ "subtitle": "Pfizer"
+ },
+ "stock:PFG": {
+ "subtitle": "Principal Financial Group, Inc."
+ },
+ "stock:PFGC": {
+ "subtitle": "Performance Food Group Co"
+ },
+ "stock:PG": {
+ "subtitle": "Procter & Gamble"
+ },
+ "stock:PGR": {
+ "subtitle": "The Progressive Corporation"
+ },
+ "stock:PH": {
+ "subtitle": "Parker-Hannifin Corporation"
+ },
+ "stock:PICC": {
+ "subtitle": "Pivotal Investment Corporation III"
+ },
+ "stock:PICO": {
+ "subtitle": "PICO"
+ },
+ "stock:PINS": {
+ "subtitle": "Pinterest"
+ },
+ "stock:PKG": {
+ "subtitle": "Packaging Corporation of America"
+ },
+ "stock:PL": {
+ "subtitle": "Planet Labs PBC"
+ },
+ "stock:PLD": {
+ "subtitle": "Prologis, Inc."
+ },
+ "stock:PLTR": {
+ "subtitle": "Palantir"
+ },
+ "stock:PLUG": {
+ "subtitle": "Plug Power Inc."
+ },
+ "stock:PM": {
+ "subtitle": "Philip Morris"
+ },
+ "stock:PNC": {
+ "subtitle": "The PNC Financial Services Group, Inc."
+ },
+ "stock:PNFP": {
+ "subtitle": "Pinnacle Financial Partners, Inc."
+ },
+ "stock:PNW": {
+ "subtitle": "Pinnacle West Capital Corporation"
+ },
+ "stock:POPMT": {
+ "subtitle": "POPMT"
+ },
+ "stock:POWI": {
+ "subtitle": "Power Integrations, Inc."
+ },
+ "stock:POWL": {
+ "subtitle": "Powell Industries, Inc."
+ },
+ "stock:PPG": {
+ "subtitle": "PPG Industries, Inc."
+ },
+ "stock:PPL": {
+ "subtitle": "PPL Corporation"
+ },
+ "stock:PPLT": {
+ "subtitle": "abrdn Physical Platinum Shares ETF"
+ },
+ "stock:PR": {
+ "subtitle": "Permian Resources Corporation"
+ },
+ "stock:PRAD": {
+ "subtitle": "PRAD"
+ },
+ "stock:PRIM": {
+ "subtitle": "Primoris Services Corporation"
+ },
+ "stock:PRU": {
+ "subtitle": "Prudential Financial, Inc."
+ },
+ "stock:PS": {
+ "subtitle": "Pershing Square Inc."
+ },
+ "stock:PSA": {
+ "subtitle": "Public Storage"
+ },
+ "stock:PSBOC": {
+ "subtitle": "PSBOC"
+ },
+ "stock:PSQ": {
+ "subtitle": "ProShares - Short QQQ"
+ },
+ "stock:PSX": {
+ "subtitle": "Phillips 66"
+ },
+ "stock:PTC": {
+ "subtitle": "PTC Inc."
+ },
+ "stock:PURR": {
+ "subtitle": "Hyperliquid Strategies Inc Common Stock"
+ },
+ "stock:PWAHL": {
+ "subtitle": "PWAHL"
+ },
+ "stock:PWR": {
+ "subtitle": "Quanta Services, Inc."
+ },
+ "stock:PYPL": {
+ "subtitle": "PayPal"
+ },
+ "stock:Q": {
+ "subtitle": "Qnity Electronics, Inc."
+ },
+ "stock:QBTS": {
+ "subtitle": "D-Wave Quantum Inc."
+ },
+ "stock:QCOM": {
+ "subtitle": "Qualcomm"
+ },
+ "stock:QLTA": {
+ "subtitle": "iShares Aaa - A Rated Corporate Bond ETF"
+ },
+ "stock:QNT": {
+ "subtitle": "Quantinuum Inc. Class A Common Stock"
+ },
+ "stock:QQQ": {
+ "subtitle": "Nasdaq-100 ETF"
+ },
+ "stock:QSR": {
+ "subtitle": "Restaurant Brands International Inc."
+ },
+ "stock:QTUM": {
+ "subtitle": "Defiance Quantum ETF"
+ },
+ "stock:QUBT": {
+ "subtitle": "Quantum Computing"
+ },
+ "stock:QURE": {
+ "subtitle": "uniQure N.V."
+ },
+ "stock:QYLD": {
+ "subtitle": "Global X - Nasdaq 100 Covered Call ETF"
+ },
+ "stock:RBA": {
+ "subtitle": "RB Global, Inc."
+ },
+ "stock:RBL": {
+ "subtitle": "RBL"
+ },
+ "stock:RBLX": {
+ "subtitle": "Roblox"
+ },
+ "stock:RCAT": {
+ "subtitle": "Red Cat Holdings, Inc."
+ },
+ "stock:RDDT": {
+ "subtitle": "Reddit"
+ },
+ "stock:RDW": {
+ "subtitle": "Redwire"
+ },
+ "stock:REG": {
+ "subtitle": "Regency Centers Corporation"
+ },
+ "stock:REGN": {
+ "subtitle": "Regeneron"
+ },
+ "stock:REMX": {
+ "subtitle": "VanEck Rare Earth and Strategic Metals ETF"
+ },
+ "stock:RF": {
+ "subtitle": "Regions Financial Corporation"
+ },
+ "stock:RGA": {
+ "subtitle": "Reinsurance Group of America, Incorporated"
+ },
+ "stock:RGLD": {
+ "subtitle": "Royal Gold, Inc."
+ },
+ "stock:RGTI": {
+ "subtitle": "Rigetti Computing, Inc."
+ },
+ "stock:RIOT": {
+ "subtitle": "Riot Platforms"
+ },
+ "stock:RIVN": {
+ "subtitle": "Rivian"
+ },
+ "stock:RJF": {
+ "subtitle": "Raymond James Financial, Inc."
+ },
+ "stock:RKLB": {
+ "subtitle": "Rocket Lab"
+ },
+ "stock:RL": {
+ "subtitle": "Ralph Lauren Corporation"
+ },
+ "stock:RMBS": {
+ "subtitle": "Rambus Inc."
+ },
+ "stock:RMD": {
+ "subtitle": "ResMed Inc."
+ },
+ "stock:RNR": {
+ "subtitle": "RenaissanceRe Holdings Ltd."
+ },
+ "stock:ROIV": {
+ "subtitle": "Roivant Sciences Ltd."
+ },
+ "stock:ROK": {
+ "subtitle": "Rockwell Automation, Inc."
+ },
+ "stock:ROKU": {
+ "subtitle": "Roku, Inc."
+ },
+ "stock:ROL": {
+ "subtitle": "Rollins, Inc."
+ },
+ "stock:ROP": {
+ "subtitle": "Roper Technologies, Inc."
+ },
+ "stock:ROST": {
+ "subtitle": "Ross Stores, Inc."
+ },
+ "stock:RPM": {
+ "subtitle": "RPM International Inc."
+ },
+ "stock:RR": {
+ "subtitle": "Richtech Robotics Inc. Class B Common Stock"
+ },
+ "stock:RRX": {
+ "subtitle": "Regal Rexnord Corporation"
+ },
+ "stock:RS": {
+ "subtitle": "Reliance Steel & Aluminum Co."
+ },
+ "stock:RSG": {
+ "subtitle": "Republic Services, Inc."
+ },
+ "stock:RT": {
+ "subtitle": "RT"
+ },
+ "stock:RTX": {
+ "subtitle": "RTX Corporation"
+ },
+ "stock:RVMD": {
+ "subtitle": "Revolution Medicines, Inc."
+ },
+ "stock:SAIA": {
+ "subtitle": "Saia, Inc."
+ },
+ "stock:SAP": {
+ "subtitle": "SAP"
+ },
+ "stock:SATA": {
+ "subtitle": "Strive Inc. Perp. Pfd. Series A"
+ },
+ "stock:SBAC": {
+ "subtitle": "SBA Communications Corporation"
+ },
+ "stock:SBET": {
+ "subtitle": "SharpLink"
+ },
+ "stock:SBU": {
+ "subtitle": "Leverage Shares 2X Long SBUX Daily ETF"
+ },
+ "stock:SBUX": {
+ "subtitle": "Starbucks"
+ },
+ "stock:SCCO": {
+ "subtitle": "Southern Copper"
+ },
+ "stock:SCHF": {
+ "subtitle": "Schwab International Equity ETF"
+ },
+ "stock:SCHW": {
+ "subtitle": "Charles Schwab"
+ },
+ "stock:SECU": {
+ "subtitle": "iShares Securitized Income Active ETF"
+ },
+ "stock:SEDG": {
+ "subtitle": "SolarEdge"
+ },
+ "stock:SGI": {
+ "subtitle": "Somnigroup International Inc"
+ },
+ "stock:SGOV": {
+ "subtitle": "iShares 0-3 Month Treasury Bond ETF"
+ },
+ "stock:SHAZ": {
+ "subtitle": "SharonAI Holdings, Inc. Class A Common Stock"
+ },
+ "stock:SHEIN": {
+ "subtitle": "SHEIN"
+ },
+ "stock:SHLD": {
+ "subtitle": "Global X - Defense Tech ETF"
+ },
+ "stock:SHOP": {
+ "subtitle": "Shopify"
+ },
+ "stock:SHV": {
+ "subtitle": "iShares Trust iShares 0-1 Year Treasury Bond ETF"
+ },
+ "stock:SHW": {
+ "subtitle": "The Sherwin-Williams Company"
+ },
+ "stock:SHY": {
+ "subtitle": "iShares 1-3 Year Treasury Bond ETF"
+ },
+ "stock:SIL": {
+ "subtitle": "Global X - Silver Miners ETF"
+ },
+ "stock:SINO": {
+ "subtitle": "Singularity Future Technology Ltd."
+ },
+ "stock:SINOT": {
+ "subtitle": "SINOT"
+ },
+ "stock:SITC": {
+ "subtitle": "SITE Centers Corp."
+ },
+ "stock:SJM": {
+ "subtitle": "The J. M. Smucker Company"
+ },
+ "stock:SKHY": {
+ "subtitle": "SK hynix Inc."
+ },
+ "stock:SKHYV": {
+ "subtitle": "SK hynix Inc."
+ },
+ "stock:SLB": {
+ "subtitle": "Slb N.V."
+ },
+ "stock:SLMT": {
+ "subtitle": "Brera Holdings PLC"
+ },
+ "stock:SLV": {
+ "subtitle": "Silver ETF"
+ },
+ "stock:SMCI": {
+ "subtitle": "Super Micro Computer"
+ },
+ "stock:SMH": {
+ "subtitle": "VanEck Semiconductor ETF"
+ },
+ "stock:SMOIH": {
+ "subtitle": "SMOIH"
+ },
+ "stock:SMR": {
+ "subtitle": "NuScale Power Corporation"
+ },
+ "stock:SN": {
+ "subtitle": "SharkNinja, Inc."
+ },
+ "stock:SNA": {
+ "subtitle": "Snap-on Incorporated"
+ },
+ "stock:SNAP": {
+ "subtitle": "Snap"
+ },
+ "stock:SNBIO": {
+ "subtitle": "SNBIO"
+ },
+ "stock:SNDK": {
+ "subtitle": "SanDisk"
+ },
+ "stock:SNDSC": {
+ "subtitle": "SNDSC"
+ },
+ "stock:SNOW": {
+ "subtitle": "Snowflake"
+ },
+ "stock:SNPS": {
+ "subtitle": "Synopsys, Inc."
+ },
+ "stock:SNX": {
+ "subtitle": "TD Synnex Corp"
+ },
+ "stock:SNXX": {
+ "subtitle": "Tradr 2X Long SNDK Daily ETF"
+ },
+ "stock:SO": {
+ "subtitle": "Southern Company"
+ },
+ "stock:SOFI": {
+ "subtitle": "SoFi Technologies, Inc."
+ },
+ "stock:SOLS": {
+ "subtitle": "Solstice Advanced Materials Inc."
+ },
+ "stock:SOUN": {
+ "subtitle": "SoundHound AI, Inc."
+ },
+ "stock:SOX": {
+ "subtitle": "SOX"
+ },
+ "stock:SOXL": {
+ "subtitle": "Direxion Daily Semiconductor Bull 3X ETF"
+ },
+ "stock:SOXQ": {
+ "subtitle": "Invesco PHLX Semiconductor ETF"
+ },
+ "stock:SOXS": {
+ "subtitle": "Direxion Daily Semiconductor Bear 3X ETF"
+ },
+ "stock:SOXX": {
+ "subtitle": "iShares Semiconductor ETF"
+ },
+ "stock:SPC": {
+ "subtitle": "CrossingBridge Pre-Merger SPAC ETF"
+ },
+ "stock:SPCE": {
+ "subtitle": "Virgin Galactic"
+ },
+ "stock:SPCX": {
+ "subtitle": "SpaceX"
+ },
+ "stock:SPG": {
+ "subtitle": "Simon Property Group, Inc."
+ },
+ "stock:SPGI": {
+ "subtitle": "S&P Global Inc."
+ },
+ "stock:SPOT": {
+ "subtitle": "Spotify"
+ },
+ "stock:SPY": {
+ "subtitle": "SPDR S&P 500 ETF Trust"
+ },
+ "stock:SQQQ": {
+ "subtitle": "3x Short Nasdaq-100"
+ },
+ "stock:SRE": {
+ "subtitle": "Sempra"
+ },
+ "stock:SSNC": {
+ "subtitle": "SS&C Technologies Holdings, Inc."
+ },
+ "stock:STLD": {
+ "subtitle": "Steel Dynamics, Inc."
+ },
+ "stock:STM": {
+ "subtitle": "STMicroelectronics"
+ },
+ "stock:STNG": {
+ "subtitle": "Scorpio Tankers Inc."
+ },
+ "stock:STRC": {
+ "subtitle": "Strategy Preferred Variable"
+ },
+ "stock:STRK": {
+ "subtitle": "Strategy Preferred Fixed"
+ },
+ "stock:STT": {
+ "subtitle": "State Street Corporation"
+ },
+ "stock:STX": {
+ "subtitle": "Seagate"
+ },
+ "stock:STZ": {
+ "subtitle": "Constellation Brands, Inc."
+ },
+ "stock:SUI": {
+ "subtitle": "Sun Communities, Inc."
+ },
+ "stock:SUOPT": {
+ "subtitle": "SUOPT"
+ },
+ "stock:SWK": {
+ "subtitle": "Stanley Black & Decker, Inc."
+ },
+ "stock:SWKS": {
+ "subtitle": "Skyworks Solutions, Inc."
+ },
+ "stock:SWPRP": {
+ "subtitle": "SWPRP"
+ },
+ "stock:SYF": {
+ "subtitle": "Synchrony Financial"
+ },
+ "stock:SYK": {
+ "subtitle": "Stryker Corporation"
+ },
+ "stock:SYM": {
+ "subtitle": "Symbotic Inc."
+ },
+ "stock:SYSB": {
+ "subtitle": "iShares Systematic Bond ETF"
+ },
+ "stock:SYY": {
+ "subtitle": "Sysco Corporation"
+ },
+ "stock:SZIGH": {
+ "subtitle": "SZIGH"
+ },
+ "stock:T": {
+ "subtitle": "AT&T"
+ },
+ "stock:TASK": {
+ "subtitle": "TaskUs, Inc."
+ },
+ "stock:TBLL": {
+ "subtitle": "US Treasury 3-Month Bill ETF"
+ },
+ "stock:TCENT": {
+ "subtitle": "TCENT"
+ },
+ "stock:TCOM": {
+ "subtitle": "Trip.com"
+ },
+ "stock:TDG": {
+ "subtitle": "TransDigm Group Incorporated"
+ },
+ "stock:TDY": {
+ "subtitle": "Teledyne Technologies Incorporated"
+ },
+ "stock:TE": {
+ "subtitle": "T1 Energy Inc"
+ },
+ "stock:TEAM": {
+ "subtitle": "Atlassian Corporation"
+ },
+ "stock:TEL": {
+ "subtitle": "TE Connectivity plc"
+ },
+ "stock:TEN": {
+ "subtitle": "Tsakos Energy Navigation Limited"
+ },
+ "stock:TER": {
+ "subtitle": "Teradyne, Inc."
+ },
+ "stock:TFC": {
+ "subtitle": "Truist Financial Corporation"
+ },
+ "stock:THC": {
+ "subtitle": "Tenet Healthcare Corporation"
+ },
+ "stock:TIP": {
+ "subtitle": "iShares TIPS Bond ETF"
+ },
+ "stock:TJ": {
+ "subtitle": "TJ"
+ },
+ "stock:TJX": {
+ "subtitle": "The TJX Companies, Inc."
+ },
+ "stock:TLN": {
+ "subtitle": "Talen Energy Corporation"
+ },
+ "stock:TLT": {
+ "subtitle": "20+ Year Treasury Bond ETF"
+ },
+ "stock:TM": {
+ "subtitle": "Toyota Motor"
+ },
+ "stock:TMO": {
+ "subtitle": "Thermo Fisher"
+ },
+ "stock:TMUS": {
+ "subtitle": "T-Mobile US"
+ },
+ "stock:TNGYI": {
+ "subtitle": "TNGYI"
+ },
+ "stock:TNK": {
+ "subtitle": "Teekay Tankers Ltd."
+ },
+ "stock:TOL": {
+ "subtitle": "Toll Brothers, Inc."
+ },
+ "stock:TON": {
+ "subtitle": "TON"
+ },
+ "stock:TONX": {
+ "subtitle": "TON Strategy Co."
+ },
+ "stock:TPL": {
+ "subtitle": "Texas Pacific Land Corporation"
+ },
+ "stock:TPR": {
+ "subtitle": "Tapestry, Inc."
+ },
+ "stock:TQQQ": {
+ "subtitle": "3x Long Nasdaq-100"
+ },
+ "stock:TRGP": {
+ "subtitle": "Targa Resources Corp."
+ },
+ "stock:TRMB": {
+ "subtitle": "Trimble Inc."
+ },
+ "stock:TROW": {
+ "subtitle": "T. Rowe Price Group, Inc."
+ },
+ "stock:TRU": {
+ "subtitle": "TransUnion"
+ },
+ "stock:TRV": {
+ "subtitle": "The Travelers Companies, Inc."
+ },
+ "stock:TSCO": {
+ "subtitle": "Tractor Supply Company"
+ },
+ "stock:TSEM": {
+ "subtitle": "Tower Semiconductor Ltd."
+ },
+ "stock:TSLA": {
+ "subtitle": "Tesla"
+ },
+ "stock:TSM": {
+ "subtitle": "Taiwan Semiconductor"
+ },
+ "stock:TSN": {
+ "subtitle": "Tyson Foods, Inc."
+ },
+ "stock:TT": {
+ "subtitle": "Trane Technologies plc"
+ },
+ "stock:TTMI": {
+ "subtitle": "TTM Technologies, Inc."
+ },
+ "stock:TTWO": {
+ "subtitle": "Take-Two Interactive Software, Inc."
+ },
+ "stock:TW": {
+ "subtitle": "Tradeweb Markets Inc."
+ },
+ "stock:TWLO": {
+ "subtitle": "Twilio Inc."
+ },
+ "stock:TWST": {
+ "subtitle": "Twist Bioscience Corporation"
+ },
+ "stock:TXN": {
+ "subtitle": "Texas Instruments"
+ },
+ "stock:TXT": {
+ "subtitle": "Textron Inc."
+ },
+ "stock:TYL": {
+ "subtitle": "Tyler Technologies, Inc."
+ },
+ "stock:UAL": {
+ "subtitle": "United Airlines Holdings, Inc."
+ },
+ "stock:UAMY": {
+ "subtitle": "United States Antimony Corporation"
+ },
+ "stock:UBER": {
+ "subtitle": "Uber Technologies"
+ },
+ "stock:UCTT": {
+ "subtitle": "Ultra Clean Holdings, Inc."
+ },
+ "stock:UDR": {
+ "subtitle": "UDR, Inc."
+ },
+ "stock:UEC": {
+ "subtitle": "Uranium Energy"
+ },
+ "stock:ULTA": {
+ "subtitle": "Ulta Beauty, Inc."
+ },
+ "stock:UMC": {
+ "subtitle": "UMC"
+ },
+ "stock:UNG": {
+ "subtitle": "United States Natural Gas Fund LP"
+ },
+ "stock:UNH": {
+ "subtitle": "UnitedHealth Group"
+ },
+ "stock:UNM": {
+ "subtitle": "Unum Group"
+ },
+ "stock:UNP": {
+ "subtitle": "Union Pacific"
+ },
+ "stock:UPS": {
+ "subtitle": "United Parcel Service, Inc."
+ },
+ "stock:URA": {
+ "subtitle": "Global X Uranium ETF"
+ },
+ "stock:URI": {
+ "subtitle": "United Rentals, Inc."
+ },
+ "stock:URNM": {
+ "subtitle": "Sprott Uranium Miners ETF"
+ },
+ "stock:USAR": {
+ "subtitle": "USA Rare Earth"
+ },
+ "stock:USB": {
+ "subtitle": "U.S. Bancorp"
+ },
+ "stock:USFD": {
+ "subtitle": "US Foods Holding Corp."
+ },
+ "stock:USFR": {
+ "subtitle": "WisdomTree Floating Rate Treasury ETF"
+ },
+ "stock:USO": {
+ "subtitle": "US Oil ETF"
+ },
+ "stock:USP": {
+ "subtitle": "USP"
+ },
+ "stock:USPX": {
+ "subtitle": "Franklin U.S. Equity Index ETF"
+ },
+ "stock:UTHR": {
+ "subtitle": "United Therapeutics Corporation"
+ },
+ "stock:UUUU": {
+ "subtitle": "Energy Fuels"
+ },
+ "stock:V": {
+ "subtitle": "Visa"
+ },
+ "stock:VCX": {
+ "subtitle": "Fundrise Innovation Fund, LLC"
+ },
+ "stock:VDE": {
+ "subtitle": "Vanguard Energy ETF"
+ },
+ "stock:VEEV": {
+ "subtitle": "Veeva Systems Inc."
+ },
+ "stock:VFS": {
+ "subtitle": "VinFast"
+ },
+ "stock:VGK": {
+ "subtitle": "Vanguard FTSE Europe ETF"
+ },
+ "stock:VICI": {
+ "subtitle": "VICI Properties Inc."
+ },
+ "stock:VICR": {
+ "subtitle": "Vicor Corporation"
+ },
+ "stock:VIDA": {
+ "subtitle": "VIDA Global Inc."
+ },
+ "stock:VIK": {
+ "subtitle": "Viking Holdings Ltd"
+ },
+ "stock:VLO": {
+ "subtitle": "Valero Energy Corporation"
+ },
+ "stock:VLTO": {
+ "subtitle": "Veralto Corporation"
+ },
+ "stock:VMC": {
+ "subtitle": "Vulcan Materials Company"
+ },
+ "stock:VNQ": {
+ "subtitle": "Vanguard Real Estate ETF"
+ },
+ "stock:VOO": {
+ "subtitle": "Vanguard S&P 500 ETF"
+ },
+ "stock:VPG": {
+ "subtitle": "Vishay Precision Group, Inc."
+ },
+ "stock:VRSK": {
+ "subtitle": "Verisk Analytics, Inc."
+ },
+ "stock:VRSN": {
+ "subtitle": "VeriSign, Inc."
+ },
+ "stock:VRT": {
+ "subtitle": "Vertiv Holdings Co"
+ },
+ "stock:VRTX": {
+ "subtitle": "Vertex Pharmaceuticals"
+ },
+ "stock:VSH": {
+ "subtitle": "Vishay Intertechnology, Inc."
+ },
+ "stock:VST": {
+ "subtitle": "Vistra"
+ },
+ "stock:VT": {
+ "subtitle": "Vanguard Total World Stock ETF"
+ },
+ "stock:VTI": {
+ "subtitle": "Total Stock Market ETF"
+ },
+ "stock:VTR": {
+ "subtitle": "Ventas, Inc."
+ },
+ "stock:VTRS": {
+ "subtitle": "Viatris Inc."
+ },
+ "stock:VTV": {
+ "subtitle": "Vanguard Morningstar Value ETF"
+ },
+ "stock:VUG": {
+ "subtitle": "Vanguard Growth ETF"
+ },
+ "stock:VXUS": {
+ "subtitle": "Vanguard Total International Stock ETF"
+ },
+ "stock:VZ": {
+ "subtitle": "Verizon"
+ },
+ "stock:WAB": {
+ "subtitle": "Westinghouse Air Brake Technologies Corporation"
+ },
+ "stock:WAT": {
+ "subtitle": "Waters Corporation"
+ },
+ "stock:WBD": {
+ "subtitle": "Warner Bros. Discovery"
+ },
+ "stock:WBS": {
+ "subtitle": "Webster Financial Corporation"
+ },
+ "stock:WCC": {
+ "subtitle": "WESCO International, Inc."
+ },
+ "stock:WDAY": {
+ "subtitle": "Workday, Inc."
+ },
+ "stock:WDC": {
+ "subtitle": "Western Digital"
+ },
+ "stock:WEC": {
+ "subtitle": "WEC Energy Group, Inc."
+ },
+ "stock:WELL": {
+ "subtitle": "Welltower Inc."
+ },
+ "stock:WEN": {
+ "subtitle": "The Wendy's Company"
+ },
+ "stock:WFC": {
+ "subtitle": "Wells Fargo"
+ },
+ "stock:WHGRO": {
+ "subtitle": "WHGRO"
+ },
+ "stock:WHRFR": {
+ "subtitle": "WHRFR"
+ },
+ "stock:WLK": {
+ "subtitle": "Westlake Corporation"
+ },
+ "stock:WM": {
+ "subtitle": "Waste Management, Inc."
+ },
+ "stock:WMB": {
+ "subtitle": "The Williams Companies, Inc."
+ },
+ "stock:WMT": {
+ "subtitle": "Walmart"
+ },
+ "stock:WOLF": {
+ "subtitle": "Wolfspeed Inc."
+ },
+ "stock:WPC": {
+ "subtitle": "W. P. Carey Inc."
+ },
+ "stock:WRB": {
+ "subtitle": "W. R. Berkley Corporation"
+ },
+ "stock:WRFHD": {
+ "subtitle": "WRFHD"
+ },
+ "stock:WS": {
+ "subtitle": "Worthington Steel, Inc."
+ },
+ "stock:WSM": {
+ "subtitle": "Williams-Sonoma, Inc."
+ },
+ "stock:WSO": {
+ "subtitle": "Watsco, Inc."
+ },
+ "stock:WST": {
+ "subtitle": "West Pharmaceutical Services, Inc."
+ },
+ "stock:WULF": {
+ "subtitle": "TeraWulf"
+ },
+ "stock:WUXIB": {
+ "subtitle": "WUXIB"
+ },
+ "stock:WWD": {
+ "subtitle": "Woodward, Inc."
+ },
+ "stock:WXXDC": {
+ "subtitle": "WXXDC"
+ },
+ "stock:WY": {
+ "subtitle": "Weyerhaeuser Company"
+ },
+ "stock:WYFI": {
+ "subtitle": "WhiteFiber, Inc. Ordinary Shares"
+ },
+ "stock:XBI": {
+ "subtitle": "State Street SPDR S&P Biotech ETF"
+ },
+ "stock:XEL": {
+ "subtitle": "Xcel Energy Inc."
+ },
+ "stock:XIAO": {
+ "subtitle": "XIAO"
+ },
+ "stock:XLE": {
+ "subtitle": "State Street Energy Select Sector SPDR ETF"
+ },
+ "stock:XOM": {
+ "subtitle": "ExxonMobil"
+ },
+ "stock:XOP": {
+ "subtitle": "SPDR S&P Oil & Gas ETF"
+ },
+ "stock:XPO": {
+ "subtitle": "XPO Logistics, Inc."
+ },
+ "stock:XYL": {
+ "subtitle": "Xylem Inc."
+ },
+ "stock:XYLD": {
+ "subtitle": "Global X - S&P 500 Covered Call ETF"
+ },
+ "stock:XYZ": {
+ "subtitle": "Block"
+ },
+ "stock:YEAR": {
+ "subtitle": "Alliance Bernstein - AB Ultra Short Income ETF"
+ },
+ "stock:YLDE": {
+ "subtitle": "Franklin ClearBridge Enhanced Income ETF"
+ },
+ "stock:YUM": {
+ "subtitle": "Yum! Brands, Inc."
+ },
+ "stock:ZBH": {
+ "subtitle": "Zimmer Biomet Holdings, Inc."
+ },
+ "stock:ZBRA": {
+ "subtitle": "Zebra Technologies Corporation"
+ },
+ "stock:ZHAOM": {
+ "subtitle": "ZHAOM"
+ },
+ "stock:ZJGLD": {
+ "subtitle": "ZJGLD"
+ },
+ "stock:ZM": {
+ "subtitle": "Zoom Communications, Inc."
+ },
+ "stock:ZS": {
+ "subtitle": "Zscaler, Inc."
+ },
+ "stock:ZTS": {
+ "subtitle": "Zoetis Inc."
+ }
+ }
+ }
+ },
+ "spot": {
+ "trending": [
+ {
+ "isNative": true,
+ "networkId": "btc--0",
+ "address": "",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/btc--0/tokens/address-.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/btc--0/tokens/address-.png"
+ ],
+ "name": "Bitcoin",
+ "symbol": "BTC",
+ "marketCap": "1583042059097",
+ "price": "78831",
+ "priceChange24hPercent": "-0.1",
+ "volume24h": "23017300141",
+ "communityRecognized": true,
+ "key": "btc--0:",
+ "kind": "token",
+ "sourceCategory": "trending"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x39dbed3a2bd333467115de45665cc57f813c4571",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x39dbed3a2bd333467115de45665cc57f813c4571-1785145437955.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x39dbed3a2bd333467115de45665cc57f813c4571-1785145437955.png"
+ ],
+ "name": "Pons",
+ "symbol": "PONS",
+ "marketCap": "492112704.597236610323916389",
+ "price": "0.70302223805572701577",
+ "priceChange24hPercent": "0.93",
+ "volume24h": "4674761.877947027421189753",
+ "communityRecognized": true,
+ "key": "evm--4663:0x39dbed3a2bd333467115de45665cc57f813c4571",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x888656062164473c93c06ca89ae4d868d606ffff",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/4a563ac1c0cd1b7ed43429ee1ad5750a8ca22c0eaaa08d0427a8a86e8a2348f0",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/4a563ac1c0cd1b7ed43429ee1ad5750a8ca22c0eaaa08d0427a8a86e8a2348f0"
+ ],
+ "name": "Fat Panda",
+ "symbol": "FATPANDA",
+ "marketCap": "2112405.287274850220596805",
+ "price": "0.00211240528727485022",
+ "priceChange24hPercent": "-56.63",
+ "volume24h": "2702587.409487557507418051",
+ "communityRecognized": false,
+ "key": "evm--56:0x888656062164473c93c06ca89ae4d868d606ffff",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x4a72b9702f991b790788f8afa9e7112541f4e8f8",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/a2e5ad0ff8689f1c746d6b07fd9718545cd44c67e13dabe8ba7242d613586821",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/a2e5ad0ff8689f1c746d6b07fd9718545cd44c67e13dabe8ba7242d613586821"
+ ],
+ "name": "Route",
+ "symbol": "ROUTE",
+ "marketCap": "5153862.727846807731733948",
+ "price": "0.00515386272784680773",
+ "priceChange24hPercent": "-16.42",
+ "volume24h": "804101.755286377464587373",
+ "communityRecognized": false,
+ "key": "evm--4663:0x4a72b9702f991b790788f8afa9e7112541f4e8f8",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xe2324ff2a59f8ecba8c321c6466e59121c00e795",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/84804585551812a64183c44a4e291f2332c9a5ff2d07e52dbcd3b81d60c989b3",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/84804585551812a64183c44a4e291f2332c9a5ff2d07e52dbcd3b81d60c989b3"
+ ],
+ "name": "Commodity Market Exchange",
+ "symbol": "CME",
+ "marketCap": "3213737.655225761637941131",
+ "price": "0.00321373765522576164",
+ "priceChange24hPercent": "1.34",
+ "volume24h": "1132164.429951218855129075",
+ "communityRecognized": false,
+ "key": "evm--4663:0xe2324ff2a59f8ecba8c321c6466e59121c00e795",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xc9d825e83aada475bd4d38c8ca984ed746277777",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xc9d825e83aada475bd4d38c8ca984ed746277777-1788595746569.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xc9d825e83aada475bd4d38c8ca984ed746277777-1788595746569.png"
+ ],
+ "name": "Stonks",
+ "symbol": "Stonks",
+ "marketCap": "3383539.04713083920517472",
+ "price": "0.00338353904713083921",
+ "priceChange24hPercent": "-8.51",
+ "volume24h": "1305063.183600881537031179",
+ "communityRecognized": true,
+ "key": "evm--56:0xc9d825e83aada475bd4d38c8ca984ed746277777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xd270d4e1ec6e6e0d28c0ecb8be966ec75997ffff",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/f3bf6d8a8bc7f4be0ec6949fa0ebf538953fcd6443cd6681e394f790b6546a1e",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/f3bf6d8a8bc7f4be0ec6949fa0ebf538953fcd6443cd6681e394f790b6546a1e"
+ ],
+ "name": "4Stock",
+ "symbol": "4Stock",
+ "marketCap": "7621641.458924761443936601",
+ "price": "0.00778563330208788574",
+ "priceChange24hPercent": "45.07",
+ "volume24h": "5811273.005848531579838642",
+ "communityRecognized": false,
+ "key": "evm--56:0xd270d4e1ec6e6e0d28c0ecb8be966ec75997ffff",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x8fdb0647e2bf11c8d88ef7825905f5f428864444",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/f3bf6d8a8bc7f4be0ec6949fa0ebf538953fcd6443cd6681e394f790b6546a1e",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/f3bf6d8a8bc7f4be0ec6949fa0ebf538953fcd6443cd6681e394f790b6546a1e"
+ ],
+ "name": "4cat",
+ "symbol": "4cat",
+ "marketCap": "119643.440010641813385865",
+ "price": "0.00011964344001064181",
+ "priceChange24hPercent": "30.78",
+ "volume24h": "168819.72587859324477851",
+ "communityRecognized": false,
+ "key": "evm--56:0x8fdb0647e2bf11c8d88ef7825905f5f428864444",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x17616c8f6cacf14fcff63f3188a30691802effff",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/cfcf37bcd1b22ee8594b38b7c1bbb0d2aafe3f8ad70ec9d9cbd108990326678d",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/cfcf37bcd1b22ee8594b38b7c1bbb0d2aafe3f8ad70ec9d9cbd108990326678d"
+ ],
+ "name": "Built and Code",
+ "symbol": "BNC",
+ "marketCap": "717067.38067697511935398",
+ "price": "0.00071706738067697512",
+ "priceChange24hPercent": "50.02",
+ "volume24h": "342503.783186811349238536",
+ "communityRecognized": false,
+ "key": "evm--56:0x17616c8f6cacf14fcff63f3188a30691802effff",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x6b1d42927b1a84ec28fa88d4fc6fa7af404966be",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x6b1d42927b1a84ec28fa88d4fc6fa7af404966be-1788091561508.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x6b1d42927b1a84ec28fa88d4fc6fa7af404966be-1788091561508.png"
+ ],
+ "name": "PAIR",
+ "symbol": "PAIR",
+ "marketCap": "13830251.410931131946963254",
+ "price": "0.01543467921677988764",
+ "priceChange24hPercent": "-12.8",
+ "volume24h": "311727.389157425584601889",
+ "communityRecognized": false,
+ "key": "evm--4663:0x6b1d42927b1a84ec28fa88d4fc6fa7af404966be",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x0000000005aca17e8bd5779fc87e13cb433aed24",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x0000000005aca17e8bd5779fc87e13cb433aed24-1788697955302.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x0000000005aca17e8bd5779fc87e13cb433aed24-1788697955302.png"
+ ],
+ "name": "NUKE",
+ "symbol": "NUKE",
+ "marketCap": "9437039.871545636712869593",
+ "price": "67.78599858061051997161",
+ "priceChange24hPercent": "43.09",
+ "volume24h": "360661.535098255997456",
+ "communityRecognized": false,
+ "key": "evm--4663:0x0000000005aca17e8bd5779fc87e13cb433aed24",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xa6b53819f5bf521945fceb1f9bbb3a7a7b4effff",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/e5fb48d54702b49bd31d0551378667606ad6bb5e4e33b94fc32179b14469f2d0",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/e5fb48d54702b49bd31d0551378667606ad6bb5e4e33b94fc32179b14469f2d0"
+ ],
+ "name": "CEA Industries",
+ "symbol": "Vape",
+ "marketCap": "194534.487611051174546684",
+ "price": "0.00019453448761105117",
+ "priceChange24hPercent": "-18.03",
+ "volume24h": "288065.821597229318707959",
+ "communityRecognized": false,
+ "key": "evm--56:0xa6b53819f5bf521945fceb1f9bbb3a7a7b4effff",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xe9337dde3dd9e97f1f45a56412767ce5098e7777",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xe9337dde3dd9e97f1f45a56412767ce5098e7777-1785657919485.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xe9337dde3dd9e97f1f45a56412767ce5098e7777-1785657919485.png"
+ ],
+ "name": "何必东奔西走 币安全部都有",
+ "symbol": "币有",
+ "marketCap": "3256550.609706267519426927",
+ "price": "0.00325655060991233998",
+ "priceChange24hPercent": "15.65",
+ "volume24h": "237479.602256726484799166",
+ "communityRecognized": false,
+ "key": "evm--56:0xe9337dde3dd9e97f1f45a56412767ce5098e7777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xab093def657f15df31b33922a95e047add645b29",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xab093def657f15df31b33922a95e047add645b29-1788523212752.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xab093def657f15df31b33922a95e047add645b29-1788523212752.png"
+ ],
+ "name": "MUSHROOM",
+ "symbol": "SHROOM",
+ "marketCap": "30848724.563377800877252185",
+ "price": "0.03124499606092514299",
+ "priceChange24hPercent": "-2.02",
+ "volume24h": "301781.09650630091825437",
+ "communityRecognized": true,
+ "key": "evm--4663:0xab093def657f15df31b33922a95e047add645b29",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x2e8c31162b855a2ffa90f6f8634643ad6f111e18",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x2e8c31162b855a2ffa90f6f8634643ad6f111e18-1785845221968.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x2e8c31162b855a2ffa90f6f8634643ad6f111e18-1785845221968.png"
+ ],
+ "name": "Artificial Inu",
+ "symbol": "AI",
+ "marketCap": "256039378.294288995153516342",
+ "price": "0.25826194354846087765",
+ "priceChange24hPercent": "-1.76",
+ "volume24h": "1063093.935327455630465013",
+ "communityRecognized": true,
+ "key": "evm--4663:0x2e8c31162b855a2ffa90f6f8634643ad6f111e18",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x7bc70ae0f2a67d2fdc0180a697a611f21c857777",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x7bc70ae0f2a67d2fdc0180a697a611f21c857777-1788768091330.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x7bc70ae0f2a67d2fdc0180a697a611f21c857777-1788768091330.png"
+ ],
+ "name": "BEN",
+ "symbol": "BEN",
+ "marketCap": "4582788.885653946266778318",
+ "price": "0.00460523236960062734",
+ "priceChange24hPercent": "4.49",
+ "volume24h": "846013.16561007320600644",
+ "communityRecognized": false,
+ "key": "evm--56:0x7bc70ae0f2a67d2fdc0180a697a611f21c857777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xb3a1e1f7ae6c90c707ec3c75e99c359482fea5b9",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/488d50fb3eb6f79c9440d809ef90dc3a197facbca4792e913cf6d2ab384a3fbe",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/488d50fb3eb6f79c9440d809ef90dc3a197facbca4792e913cf6d2ab384a3fbe"
+ ],
+ "name": "Sock",
+ "symbol": "SOCK",
+ "marketCap": "5094939.109274301369453039",
+ "price": "0.00509603224666357303",
+ "priceChange24hPercent": "-11.08",
+ "volume24h": "661999.19976215970304159",
+ "communityRecognized": false,
+ "key": "evm--56:0xb3a1e1f7ae6c90c707ec3c75e99c359482fea5b9",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xfa6d9b504848606eb9aec04ccc161d169b3f2159",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xfa6d9b504848606eb9aec04ccc161d169b3f2159-1788768839130.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xfa6d9b504848606eb9aec04ccc161d169b3f2159-1788768839130.png"
+ ],
+ "name": "BREW",
+ "symbol": "BREW",
+ "marketCap": "6401595.848431142137785916",
+ "price": "0.00640159584843114214",
+ "priceChange24hPercent": "-15.44",
+ "volume24h": "613156.959627874831752409",
+ "communityRecognized": true,
+ "key": "evm--56:0xfa6d9b504848606eb9aec04ccc161d169b3f2159",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xd9db30bb0d2b8d2eae3826a1372117e058791e18",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xd9db30bb0d2b8d2eae3826a1372117e058791e18-1788091222725.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xd9db30bb0d2b8d2eae3826a1372117e058791e18-1788091222725.png"
+ ],
+ "name": "Memory cow Moo",
+ "symbol": "MOO",
+ "marketCap": "26232322.129356837995581063",
+ "price": "0.02652530467317783355",
+ "priceChange24hPercent": "-2.14",
+ "volume24h": "373345.92446681313542046",
+ "communityRecognized": true,
+ "key": "evm--4663:0xd9db30bb0d2b8d2eae3826a1372117e058791e18",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x15d36b6a28d8327abc7afabf0f106ae2c9af5c4d",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x15d36b6a28d8327abc7afabf0f106ae2c9af5c4d-1788523244923.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x15d36b6a28d8327abc7afabf0f106ae2c9af5c4d-1788523244923.png"
+ ],
+ "name": "Pare",
+ "symbol": "PARE",
+ "marketCap": "12229018.110352449879813527",
+ "price": "0.01222901811035244988",
+ "priceChange24hPercent": "-0.23",
+ "volume24h": "293730.705879689539826636",
+ "communityRecognized": false,
+ "key": "evm--4663:0x15d36b6a28d8327abc7afabf0f106ae2c9af5c4d",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x6d11782ef6cbe773da2defef612f9a57c54012bf",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/aed9300fe93af8a077cf133b5d703e28386f95d7724261f173da91a4cac7df65",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/aed9300fe93af8a077cf133b5d703e28386f95d7724261f173da91a4cac7df65"
+ ],
+ "name": "Macintosh",
+ "symbol": "MACINTOSH",
+ "marketCap": "1436439.323467978675653196",
+ "price": "0.00143643932346797868",
+ "priceChange24hPercent": "74.09",
+ "volume24h": "53809.09986148089791384",
+ "communityRecognized": false,
+ "key": "evm--4663:0x6d11782ef6cbe773da2defef612f9a57c54012bf",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x79a74fd91f8e1c4ab8e76253dec5c91f3094393f",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/e1f481a4066feec841bf3345c090a6cdd9fd2274a972cf1981f3a0a234f42d9c",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/e1f481a4066feec841bf3345c090a6cdd9fd2274a972cf1981f3a0a234f42d9c"
+ ],
+ "name": "Superstables",
+ "symbol": "STBL",
+ "marketCap": "431790.28727990802483224",
+ "price": "0.00043179028727990802",
+ "priceChange24hPercent": "-39.78",
+ "volume24h": "538536.41657328307812057",
+ "communityRecognized": false,
+ "key": "evm--4663:0x79a74fd91f8e1c4ab8e76253dec5c91f3094393f",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x7ba36be14dd06ba492f08be6c1b2979c1d0b652c",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x7ba36be14dd06ba492f08be6c1b2979c1d0b652c-1788178016235.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x7ba36be14dd06ba492f08be6c1b2979c1d0b652c-1788178016235.png"
+ ],
+ "name": "PerpsHood",
+ "symbol": "PERPSHOOD",
+ "marketCap": "3288366.118814719718758381",
+ "price": "0.0034420989612188976",
+ "priceChange24hPercent": "13.63",
+ "volume24h": "57104.961610702839221",
+ "communityRecognized": false,
+ "key": "evm--4663:0x7ba36be14dd06ba492f08be6c1b2979c1d0b652c",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xa3602804e096cb73bd8344afc1ff3f3390b899c5",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xa3602804e096cb73bd8344afc1ff3f3390b899c5-1788697149485.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xa3602804e096cb73bd8344afc1ff3f3390b899c5-1788697149485.png"
+ ],
+ "name": "PEZ",
+ "symbol": "PEZ",
+ "marketCap": "2566956.157709543351335719",
+ "price": "0.00256696182716853727",
+ "priceChange24hPercent": "-20.32",
+ "volume24h": "182054.1553793052384282",
+ "communityRecognized": false,
+ "key": "evm--4663:0xa3602804e096cb73bd8344afc1ff3f3390b899c5",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x7163ae1b5aea2f09ebc609c52b4dcac0a7a4bc2d",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/b565852235f4b58795118e627a62621101b692c4e2e2801f518600ad55c59755",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/b565852235f4b58795118e627a62621101b692c4e2e2801f518600ad55c59755"
+ ],
+ "name": "GAGE",
+ "symbol": "GAGE",
+ "marketCap": "2110500.95003322357189616",
+ "price": "0.00211050095003322357",
+ "priceChange24hPercent": "-22.07",
+ "volume24h": "183914.61387673355181406",
+ "communityRecognized": false,
+ "key": "evm--4663:0x7163ae1b5aea2f09ebc609c52b4dcac0a7a4bc2d",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x198dba421a7db566a90da5de7901abe3443b4444",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x198dba421a7db566a90da5de7901abe3443b4444-1783844840152.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x198dba421a7db566a90da5de7901abe3443b4444-1783844840152.png"
+ ],
+ "name": "富贵",
+ "symbol": "富贵",
+ "marketCap": "1997835.58315835493824872",
+ "price": "0.00199783560433451247",
+ "priceChange24hPercent": "-2.53",
+ "volume24h": "130720.931814544174207102",
+ "communityRecognized": false,
+ "key": "evm--56:0x198dba421a7db566a90da5de7901abe3443b4444",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x98096d17e191b3da1d5f99a6d7b3584351b11e18",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x98096d17e191b3da1d5f99a6d7b3584351b11e18-1787918411975.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x98096d17e191b3da1d5f99a6d7b3584351b11e18-1787918411975.png"
+ ],
+ "name": "Boner Coin",
+ "symbol": "BONER",
+ "marketCap": "59400539.57912752890287799",
+ "price": "0.05940055223813601532",
+ "priceChange24hPercent": "-3.56",
+ "volume24h": "320804.475880708496969201",
+ "communityRecognized": true,
+ "key": "evm--4663:0x98096d17e191b3da1d5f99a6d7b3584351b11e18",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x12d5ee7917ca430073c3a638ee1e6f0648a98a01",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x12d5ee7917ca430073c3a638ee1e6f0648a98a01-1788350677314.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x12d5ee7917ca430073c3a638ee1e6f0648a98a01-1788350677314.png"
+ ],
+ "name": "FATCOIN",
+ "symbol": "FATCOIN",
+ "marketCap": "15350737.661635553569380883",
+ "price": "0.01535073766163555357",
+ "priceChange24hPercent": "-10.17",
+ "volume24h": "165305.5508846179277106",
+ "communityRecognized": false,
+ "key": "evm--4663:0x12d5ee7917ca430073c3a638ee1e6f0648a98a01",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x76ed1e2a8fc3873fcb5c514688ca2fe8a3600b7f",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/1dbcb030f10554487ca05c3aaa7fcc97cef5b687e39b63bafb0d000d20616792",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/1dbcb030f10554487ca05c3aaa7fcc97cef5b687e39b63bafb0d000d20616792"
+ ],
+ "name": "LAPTOP",
+ "symbol": "LAPTOP",
+ "marketCap": "1234221.162462544668452627",
+ "price": "0.00123422116246254467",
+ "priceChange24hPercent": "6.2",
+ "volume24h": "116050.986285107638280112",
+ "communityRecognized": false,
+ "key": "evm--4663:0x76ed1e2a8fc3873fcb5c514688ca2fe8a3600b7f",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xafe41f4356c24f716111de1fbbc84e061d291e18",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xafe41f4356c24f716111de1fbbc84e061d291e18-1788264039086.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xafe41f4356c24f716111de1fbbc84e061d291e18-1788264039086.png"
+ ],
+ "name": "Cache Cow",
+ "symbol": "CACHE",
+ "marketCap": "1050419.188538898842399832",
+ "price": "0.00105041918853889884",
+ "priceChange24hPercent": "-14.26",
+ "volume24h": "44738.530056513081127276",
+ "communityRecognized": false,
+ "key": "evm--4663:0xafe41f4356c24f716111de1fbbc84e061d291e18",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xd5f1afea47b1a9eab414d2ee740cf1d6d039e725",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xd5f1afea47b1a9eab414d2ee740cf1d6d039e725-1788091431352.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xd5f1afea47b1a9eab414d2ee740cf1d6d039e725-1788091431352.png"
+ ],
+ "name": "microduck",
+ "symbol": "microduck",
+ "marketCap": "18228022.597202926448267905",
+ "price": "0.01822802259720292645",
+ "priceChange24hPercent": "-1.57",
+ "volume24h": "170910.19633646659223692",
+ "communityRecognized": false,
+ "key": "evm--4663:0xd5f1afea47b1a9eab414d2ee740cf1d6d039e725",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "Ai66LHZG9MCzg1WKdawwqduVAXpNDUuV8M3uyq5ppump",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-Ai66LHZG9MCzg1WKdawwqduVAXpNDUuV8M3uyq5ppump-1785164716552.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-Ai66LHZG9MCzg1WKdawwqduVAXpNDUuV8M3uyq5ppump-1785164716552.png"
+ ],
+ "name": "Catecoin",
+ "symbol": "CATE",
+ "marketCap": "27905084.425795496638311706",
+ "price": "0.0289423263308686502",
+ "priceChange24hPercent": "-0.73",
+ "volume24h": "218050.66562876692",
+ "communityRecognized": true,
+ "key": "sol--101:Ai66LHZG9MCzg1WKdawwqduVAXpNDUuV8M3uyq5ppump",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xaa07a0e9209e16ac99708c3ec70159c6ef3128a3",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xaa07a0e9209e16ac99708c3ec70159c6ef3128a3-1788352120153.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xaa07a0e9209e16ac99708c3ec70159c6ef3128a3-1788352120153.png"
+ ],
+ "name": "Orbio.so",
+ "symbol": "ORBIO",
+ "marketCap": "17993185.212207430708307963",
+ "price": "0.01894019496021834811",
+ "priceChange24hPercent": "2.71",
+ "volume24h": "91105.4946258392790085",
+ "communityRecognized": false,
+ "key": "evm--4663:0xaa07a0e9209e16ac99708c3ec70159c6ef3128a3",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xbe98b75361935b18d688409424a869a4c3dc7401",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xbe98b75361935b18d688409424a869a4c3dc7401-1788436898916.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xbe98b75361935b18d688409424a869a4c3dc7401-1788436898916.png"
+ ],
+ "name": "Send Nudes",
+ "symbol": "NUDES",
+ "marketCap": "14588111.302047615366721809",
+ "price": "0.01458811130204761537",
+ "priceChange24hPercent": "3.43",
+ "volume24h": "175943.81722480224586206",
+ "communityRecognized": false,
+ "key": "evm--4663:0xbe98b75361935b18d688409424a869a4c3dc7401",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x020bfc650a365f8bb26819deaabf3e21291018b4",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x020bfc650a365f8bb26819deaabf3e21291018b4-1784778353843.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x020bfc650a365f8bb26819deaabf3e21291018b4-1784778353843.png"
+ ],
+ "name": "Cash Cat",
+ "symbol": "CASHCAT",
+ "marketCap": "187938077.189255437600581806",
+ "price": "0.19019824787407212831",
+ "priceChange24hPercent": "-1.13",
+ "volume24h": "536881.913401096381300338",
+ "communityRecognized": true,
+ "key": "evm--4663:0x020bfc650a365f8bb26819deaabf3e21291018b4",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xe2dae1c072b9f66bed999873b94798b2152af7e1",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xe2dae1c072b9f66bed999873b94798b2152af7e1-1788697020328.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xe2dae1c072b9f66bed999873b94798b2152af7e1-1788697020328.png"
+ ],
+ "name": "Arbitrage Ape",
+ "symbol": "AA",
+ "marketCap": "4507869.835267490011775813",
+ "price": "0.00458935283081802597",
+ "priceChange24hPercent": "-1.73",
+ "volume24h": "179687.880717007695243",
+ "communityRecognized": false,
+ "key": "evm--4663:0xe2dae1c072b9f66bed999873b94798b2152af7e1",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xbc9cc4b93a08b2dfba87067a9c53e713db3314ce",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/a34bd343ce2418e2688d9be4430fef2415dee4b660c25a3bbbcaaf3481e299a4",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/a34bd343ce2418e2688d9be4430fef2415dee4b660c25a3bbbcaaf3481e299a4"
+ ],
+ "name": "Pink Sheets",
+ "symbol": "PINK",
+ "marketCap": "933339.56396972196933734",
+ "price": "0.00093333956396972197",
+ "priceChange24hPercent": "-25.97",
+ "volume24h": "132793.53883716678245187",
+ "communityRecognized": false,
+ "key": "evm--4663:0xbc9cc4b93a08b2dfba87067a9c53e713db3314ce",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x18e674231a58c239dc7daedcffe15ec3a24cff5c",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x18e674231a58c239dc7daedcffe15ec3a24cff5c-1786190410593.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x18e674231a58c239dc7daedcffe15ec3a24cff5c-1786190410593.png"
+ ],
+ "name": "Hookr.fun",
+ "symbol": "HOOKR",
+ "marketCap": "16533331.664047282898052225",
+ "price": "0.01659374854035718065",
+ "priceChange24hPercent": "-13.74",
+ "volume24h": "84714.94731888119869798",
+ "communityRecognized": true,
+ "key": "evm--4663:0x18e674231a58c239dc7daedcffe15ec3a24cff5c",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xab35d04e1ee39c789c4a65d522417b3c7f2e4723",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/fac85c085d11f1aa6ae21cc9ad0bb550feec3cb25196bd13e83f1f5c0ef580c0",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/fac85c085d11f1aa6ae21cc9ad0bb550feec3cb25196bd13e83f1f5c0ef580c0"
+ ],
+ "name": "JT MARLIN",
+ "symbol": "MARLIN",
+ "marketCap": "1254614.259705579781749622",
+ "price": "0.00125461425970557978",
+ "priceChange24hPercent": "12.66",
+ "volume24h": "158506.0769417016958944",
+ "communityRecognized": false,
+ "key": "evm--4663:0xab35d04e1ee39c789c4a65d522417b3c7f2e4723",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x62cd5cd9d354a2a50affe9efa21c8918b9640a5b",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x62cd5cd9d354a2a50affe9efa21c8918b9640a5b-1788698087258.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x62cd5cd9d354a2a50affe9efa21c8918b9640a5b-1788698087258.png"
+ ],
+ "name": "LADY Exchange",
+ "symbol": "LDX",
+ "marketCap": "859651.651645633726589384",
+ "price": "0.00085965165164563373",
+ "priceChange24hPercent": "22.76",
+ "volume24h": "35563.561946375380044",
+ "communityRecognized": false,
+ "key": "evm--4663:0x62cd5cd9d354a2a50affe9efa21c8918b9640a5b",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x11b70d0243baf75e85ce03201a92b5b7c33beb59",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x11b70d0243baf75e85ce03201a92b5b7c33beb59-1788697768561.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x11b70d0243baf75e85ce03201a92b5b7c33beb59-1788697768561.png"
+ ],
+ "name": "Robin the Frog",
+ "symbol": "ROBIN",
+ "marketCap": "5059217.747200642391632707",
+ "price": "0.00509749368744337543",
+ "priceChange24hPercent": "-21.74",
+ "volume24h": "224467.163584842402974248",
+ "communityRecognized": false,
+ "key": "evm--4663:0x11b70d0243baf75e85ce03201a92b5b7c33beb59",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x7df5daaf80e65dfcc7a1435d9b52bcf2b5753fbe",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x7df5daaf80e65dfcc7a1435d9b52bcf2b5753fbe-1788696318342.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x7df5daaf80e65dfcc7a1435d9b52bcf2b5753fbe-1788696318342.png"
+ ],
+ "name": "Unipcs",
+ "symbol": "UNIPCS",
+ "marketCap": "951836.404712392376741929",
+ "price": "0.00095317681003142395",
+ "priceChange24hPercent": "-13.69",
+ "volume24h": "21995.438286829188090095",
+ "communityRecognized": false,
+ "key": "evm--4663:0x7df5daaf80e65dfcc7a1435d9b52bcf2b5753fbe",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "7Y7V1a4m2nWK7BMgbka5B4vR1pDvCK7yva3Hnrqkraze",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/fa21eef99efb8b7842c131cfa852344958bd4c32e76767446fd4983cb58d673c",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/fa21eef99efb8b7842c131cfa852344958bd4c32e76767446fd4983cb58d673c"
+ ],
+ "name": "Nasduck",
+ "symbol": "Nasduck",
+ "marketCap": "4892558.96341480044114222",
+ "price": "0.005087934370491688",
+ "priceChange24hPercent": "-2.83",
+ "volume24h": "376514.91678737127",
+ "communityRecognized": false,
+ "key": "sol--101:7Y7V1a4m2nWK7BMgbka5B4vR1pDvCK7yva3Hnrqkraze",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x8602b2fd8d105a56d3152e936e66b1d414142148",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/46be4fa022c8cf4f26df79bb27838188b1097a22d2d5668c723c6177a9bad8e6",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/46be4fa022c8cf4f26df79bb27838188b1097a22d2d5668c723c6177a9bad8e6"
+ ],
+ "name": "Artificial Pepe",
+ "symbol": "AP",
+ "marketCap": "1104363.861105462063331123",
+ "price": "0.00110436386110546206",
+ "priceChange24hPercent": "-12.39",
+ "volume24h": "12448.86978211158126",
+ "communityRecognized": false,
+ "key": "evm--1:0x8602b2fd8d105a56d3152e936e66b1d414142148",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xe934e36a439c94017b64a3fece66af12099abf50",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xe934e36a439c94017b64a3fece66af12099abf50-1785290631562.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xe934e36a439c94017b64a3fece66af12099abf50-1785290631562.png"
+ ],
+ "name": "StonkBroker",
+ "symbol": "STONKBROKER",
+ "marketCap": "20518182.682148260865098637",
+ "price": "0.01677267873394663003",
+ "priceChange24hPercent": "4.25",
+ "volume24h": "143327.011995203078567003",
+ "communityRecognized": true,
+ "key": "evm--4663:0xe934e36a439c94017b64a3fece66af12099abf50",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xca9c78dd337a67f6e0077f65f5e9218719d30edf",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xca9c78dd337a67f6e0077f65f5e9218719d30edf-1785280831816.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xca9c78dd337a67f6e0077f65f5e9218719d30edf-1785280831816.png"
+ ],
+ "name": "NetNet",
+ "symbol": "NET",
+ "marketCap": "3739742.122220151657455659",
+ "price": "637.76997830711379478319",
+ "priceChange24hPercent": "-3.5",
+ "volume24h": "189433.0165538410121804",
+ "communityRecognized": false,
+ "key": "evm--4663:0xca9c78dd337a67f6e0077f65f5e9218719d30edf",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x2ab8a4dd2191989ac2898006df350b236d2b7777",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x2ab8a4dd2191989ac2898006df350b236d2b7777-1787990461314.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x2ab8a4dd2191989ac2898006df350b236d2b7777-1787990461314.png"
+ ],
+ "name": "施工猫",
+ "symbol": "Sue",
+ "marketCap": "3511764.100491869967331388",
+ "price": "0.00351176429196420492",
+ "priceChange24hPercent": "-7.65",
+ "volume24h": "163137.790424912587534875",
+ "communityRecognized": true,
+ "key": "evm--56:0x2ab8a4dd2191989ac2898006df350b236d2b7777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x451b42a15100c340ca12f7c66de06fac5ea2d751",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x451b42a15100c340ca12f7c66de06fac5ea2d751-1787832041620.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x451b42a15100c340ca12f7c66de06fac5ea2d751-1787832041620.png"
+ ],
+ "name": "Longbow",
+ "symbol": "BOW",
+ "marketCap": "5686131.59933519377931409",
+ "price": "0.00568613159933519378",
+ "priceChange24hPercent": "0.8",
+ "volume24h": "113544.942160942915044253",
+ "communityRecognized": false,
+ "key": "evm--4663:0x451b42a15100c340ca12f7c66de06fac5ea2d751",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xe9bc5c6a86caa44fd7b469bf3cc7c563e4f77777",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xe9bc5c6a86caa44fd7b469bf3cc7c563e4f77777-1785831565492.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xe9bc5c6a86caa44fd7b469bf3cc7c563e4f77777-1785831565492.png"
+ ],
+ "name": "Giggle Mascot",
+ "symbol": "Max",
+ "marketCap": "12153096.544639604735301731",
+ "price": "0.01215309770392200853",
+ "priceChange24hPercent": "-16.13",
+ "volume24h": "180505.528300848372321333",
+ "communityRecognized": false,
+ "key": "evm--56:0xe9bc5c6a86caa44fd7b469bf3cc7c563e4f77777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xef67e3064bef1a27e81925ec7132f23e533bd5f6",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xef67e3064bef1a27e81925ec7132f23e533bd5f6-1788782588286.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xef67e3064bef1a27e81925ec7132f23e533bd5f6-1788782588286.png"
+ ],
+ "name": "Greatest Meme Ever",
+ "symbol": "GME",
+ "marketCap": "4418340.399659110512455337",
+ "price": "0.0044183404001220693",
+ "priceChange24hPercent": "-15.53",
+ "volume24h": "137332.05932591389025825",
+ "communityRecognized": false,
+ "key": "evm--4663:0xef67e3064bef1a27e81925ec7132f23e533bd5f6",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x7dbf38976f6d3b9c529e7d9484a71898b409ee6a",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x7dbf38976f6d3b9c529e7d9484a71898b409ee6a-1788610442171.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x7dbf38976f6d3b9c529e7d9484a71898b409ee6a-1788610442171.png"
+ ],
+ "name": "ZZZ",
+ "symbol": "ZZZ",
+ "marketCap": "15466129.401190105654350355",
+ "price": "0.01841205881094060197",
+ "priceChange24hPercent": "4.34",
+ "volume24h": "116171.6423790934959405",
+ "communityRecognized": false,
+ "key": "evm--4663:0x7dbf38976f6d3b9c529e7d9484a71898b409ee6a",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x9e92bbf2017bbfb7a06c975ca30e268cd2e57777",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/26946e97f0605097c389e90209fbbad48af1927f15b93093e2b999a0ccb97c16",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/26946e97f0605097c389e90209fbbad48af1927f15b93093e2b999a0ccb97c16"
+ ],
+ "name": "Google Dog",
+ "symbol": "股狗",
+ "marketCap": "330885.712103554270207473",
+ "price": "0.00033088571210355427",
+ "priceChange24hPercent": "-34.1",
+ "volume24h": "44398.53315075929764431",
+ "communityRecognized": false,
+ "key": "evm--56:0x9e92bbf2017bbfb7a06c975ca30e268cd2e57777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x2ae1ebeeda58b68a02dc313f7d90aa6ee546df86",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/2d70c37a83c6c75e1500068ec44d7246c00f6c3cc88134c29c693c7ac392bbc0",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/2d70c37a83c6c75e1500068ec44d7246c00f6c3cc88134c29c693c7ac392bbc0"
+ ],
+ "name": "Milk",
+ "symbol": "DC",
+ "marketCap": "45187.582862054210067071",
+ "price": "16.31078572068146233841",
+ "priceChange24hPercent": "0.02",
+ "volume24h": "36053.103785",
+ "communityRecognized": false,
+ "key": "evm--4663:0x2ae1ebeeda58b68a02dc313f7d90aa6ee546df86",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xbeea1d618e533a387d941f58a7d4c9b7bd377777",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xbeea1d618e533a387d941f58a7d4c9b7bd377777-1786867206539.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xbeea1d618e533a387d941f58a7d4c9b7bd377777-1786867206539.png"
+ ],
+ "name": "牛来",
+ "symbol": "牛来",
+ "marketCap": "82047208.24262765843217039",
+ "price": "0.08204721650484486528",
+ "priceChange24hPercent": "0.89",
+ "volume24h": "695181.498354103067635676",
+ "communityRecognized": false,
+ "key": "evm--56:0xbeea1d618e533a387d941f58a7d4c9b7bd377777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x16391c40e85fb2246a2c8c17bfa2594c5d3ef84b",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x16391c40e85fb2246a2c8c17bfa2594c5d3ef84b-1788523244923.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x16391c40e85fb2246a2c8c17bfa2594c5d3ef84b-1788523244923.png"
+ ],
+ "name": "Touch Grass",
+ "symbol": "GRASS",
+ "marketCap": "3561358.779724398512792577",
+ "price": "0.0035808939708134213",
+ "priceChange24hPercent": "16.9",
+ "volume24h": "81739.1470683190757748",
+ "communityRecognized": false,
+ "key": "evm--4663:0x16391c40e85fb2246a2c8c17bfa2594c5d3ef84b",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xe1e5f00a9b0255ca4df85b3130ee0f77d15acc2d",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xe1e5f00a9b0255ca4df85b3130ee0f77d15acc2d-1788696640254.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xe1e5f00a9b0255ca4df85b3130ee0f77d15acc2d-1788696640254.png"
+ ],
+ "name": "Pushin' 🅿️",
+ "symbol": "🅿️",
+ "marketCap": "1670276.961474108523173908",
+ "price": "0.00167027696147410852",
+ "priceChange24hPercent": "1.5",
+ "volume24h": "118455.306522240644830653",
+ "communityRecognized": false,
+ "key": "evm--4663:0xe1e5f00a9b0255ca4df85b3130ee0f77d15acc2d",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x507b6f349a80114097a67b8b4677367acc15b220",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x507b6f349a80114097a67b8b4677367acc15b220-1788610022118.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x507b6f349a80114097a67b8b4677367acc15b220-1788610022118.png"
+ ],
+ "name": "par",
+ "symbol": "par",
+ "marketCap": "1798968.499028405695939082",
+ "price": "0.0019041660225060439",
+ "priceChange24hPercent": "10.97",
+ "volume24h": "21365.112475329818433",
+ "communityRecognized": false,
+ "key": "evm--4663:0x507b6f349a80114097a67b8b4677367acc15b220",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xe8ffd7e24187f72afb08d75b1bb13088a989a791",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xe8ffd7e24187f72afb08d75b1bb13088a989a791-1786708993342.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xe8ffd7e24187f72afb08d75b1bb13088a989a791-1786708993342.png"
+ ],
+ "name": "Delta",
+ "symbol": "DELTA",
+ "marketCap": "13472444.557487726415542926",
+ "price": "0.01347244492315809628",
+ "priceChange24hPercent": "-3.66",
+ "volume24h": "146114.4450452436525026",
+ "communityRecognized": false,
+ "key": "evm--4663:0xe8ffd7e24187f72afb08d75b1bb13088a989a791",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x5173d45a1191ee33cbb7d8c7e65f21b04ed54802",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x5173d45a1191ee33cbb7d8c7e65f21b04ed54802-1788264029244.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x5173d45a1191ee33cbb7d8c7e65f21b04ed54802-1788264029244.png"
+ ],
+ "name": "Ramses",
+ "symbol": "RAM",
+ "marketCap": "3461676.475623955075835903",
+ "price": "0.06867351685156609209",
+ "priceChange24hPercent": "0.14",
+ "volume24h": "66486.790576850318085",
+ "communityRecognized": false,
+ "key": "evm--4663:0x5173d45a1191ee33cbb7d8c7e65f21b04ed54802",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x78b96280c3347e0f58a7147b73eb0ec5ffff025d",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x78b96280c3347e0f58a7147b73eb0ec5ffff025d-1788697020328.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x78b96280c3347e0f58a7147b73eb0ec5ffff025d-1788697020328.png"
+ ],
+ "name": "Robinhood Hat Strategy",
+ "symbol": "RSTR",
+ "marketCap": "2725713.193040557852190847",
+ "price": "0.00281246072249804144",
+ "priceChange24hPercent": "-1.7",
+ "volume24h": "159657.0824077401902266",
+ "communityRecognized": false,
+ "key": "evm--4663:0x78b96280c3347e0f58a7147b73eb0ec5ffff025d",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "8K5X85PAJHAAVSvYaAzgVPPAPsqqHmvx16ZyBiscYF8L",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-8K5X85PAJHAAVSvYaAzgVPPAPsqqHmvx16ZyBiscYF8L-1788368707252.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-8K5X85PAJHAAVSvYaAzgVPPAPsqqHmvx16ZyBiscYF8L-1788368707252.png"
+ ],
+ "name": "Vida Global CTO",
+ "symbol": "CTO",
+ "marketCap": "10655242.219614694475254837",
+ "price": "0.01162910300962041824",
+ "priceChange24hPercent": "-26.16",
+ "volume24h": "868330.4509123419541978",
+ "communityRecognized": false,
+ "key": "sol--101:8K5X85PAJHAAVSvYaAzgVPPAPsqqHmvx16ZyBiscYF8L",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x215407c134f68b9da4de10c22c948196053a0d5d",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/70a6389f1690a862f8e3a0d61f5a71c1ed8f0eb1c39ccf6f78f60fff4d400471",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/70a6389f1690a862f8e3a0d61f5a71c1ed8f0eb1c39ccf6f78f60fff4d400471"
+ ],
+ "name": "The Wolf of Wall Street",
+ "symbol": "WOLF",
+ "marketCap": "3798827.95826205946704669",
+ "price": "0.01057270776655222219",
+ "priceChange24hPercent": "-10.11",
+ "volume24h": "147554.1595461102843256",
+ "communityRecognized": false,
+ "key": "evm--4663:0x215407c134f68b9da4de10c22c948196053a0d5d",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "ANM35KbUcfKdEVBXzSjZBoT6ceSwYRs3fuc79fp7kRqP",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/db4d10c19523308df10f606b8b29d51a6e19419261d663ae88497cd02efd20f6",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/db4d10c19523308df10f606b8b29d51a6e19419261d663ae88497cd02efd20f6"
+ ],
+ "name": "Pump Cat",
+ "symbol": "Pumpcat",
+ "marketCap": "1888030.836167347599567097",
+ "price": "0.00191221316104",
+ "priceChange24hPercent": "15.89",
+ "volume24h": "159487.48235801725",
+ "communityRecognized": false,
+ "key": "sol--101:ANM35KbUcfKdEVBXzSjZBoT6ceSwYRs3fuc79fp7kRqP",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x97216593d3b2769da6f0adeee6fb8e36da4e319f",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x97216593d3b2769da6f0adeee6fb8e36da4e319f-1788782713180.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x97216593d3b2769da6f0adeee6fb8e36da4e319f-1788782713180.png"
+ ],
+ "name": "Ponsancoin",
+ "symbol": "Ponsan",
+ "marketCap": "900669.313469868826823375",
+ "price": "0.00090066931376665403",
+ "priceChange24hPercent": "-13.9",
+ "volume24h": "36146.572534333828226",
+ "communityRecognized": false,
+ "key": "evm--4663:0x97216593d3b2769da6f0adeee6fb8e36da4e319f",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0x0c9535416fd3b772646c4575e0664fd65afeeeee",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/06d415460409e8d3490a37fdffff10dcae078212668149add6cac2ccc487227d",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/06d415460409e8d3490a37fdffff10dcae078212668149add6cac2ccc487227d"
+ ],
+ "name": "IGNIX",
+ "symbol": "IGNIX",
+ "marketCap": "2050669.850711109531315621",
+ "price": "0.00205066985071110953",
+ "priceChange24hPercent": "-12.69",
+ "volume24h": "7403.20215719517899062",
+ "communityRecognized": false,
+ "key": "evm--196:0x0c9535416fd3b772646c4575e0664fd65afeeeee",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xf40592daacb3e5abf358789f5688c0b4f64d7777",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xf40592daacb3e5abf358789f5688c0b4f64d7777-1788336091391.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xf40592daacb3e5abf358789f5688c0b4f64d7777-1788336091391.png"
+ ],
+ "name": "FLORK",
+ "symbol": "FLORK",
+ "marketCap": "14165130.750717274515033125",
+ "price": "0.01416513075084475066",
+ "priceChange24hPercent": "4.61",
+ "volume24h": "441344.835113323843759522",
+ "communityRecognized": true,
+ "key": "evm--56:0xf40592daacb3e5abf358789f5688c0b4f64d7777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xcd8df4c1052a3447bda6a7423fbc234102f3b477",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/2c2886d399c18bd4b0702fc8ad6b51ba9787a4d5b3d91c759a3febf9c71697b5",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/2c2886d399c18bd4b0702fc8ad6b51ba9787a4d5b3d91c759a3febf9c71697b5"
+ ],
+ "name": "Silverback",
+ "symbol": "SILVERBACK",
+ "marketCap": "435669.577610923584217171",
+ "price": "0.00043566957761092358",
+ "priceChange24hPercent": "11.74",
+ "volume24h": "21176.31861579236879039",
+ "communityRecognized": false,
+ "key": "evm--4663:0xcd8df4c1052a3447bda6a7423fbc234102f3b477",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x812486eaea648819853f8e372dc9f1516c7868bd",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x812486eaea648819853f8e372dc9f1516c7868bd-1788354167261.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x812486eaea648819853f8e372dc9f1516c7868bd-1788354167261.png"
+ ],
+ "name": "ubik",
+ "symbol": "UBIK",
+ "marketCap": "18020589.533974926304134548",
+ "price": "0.0180205895339749263",
+ "priceChange24hPercent": "-6.13",
+ "volume24h": "84343.07973679011186285",
+ "communityRecognized": false,
+ "key": "evm--4663:0x812486eaea648819853f8e372dc9f1516c7868bd",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x87ae267002cd1ea0ec86bf3601d4a8ad76a47777",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x87ae267002cd1ea0ec86bf3601d4a8ad76a47777-1787558536892.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x87ae267002cd1ea0ec86bf3601d4a8ad76a47777-1787558536892.png"
+ ],
+ "name": "蝴蝶人生",
+ "symbol": "蝴蝶人生",
+ "marketCap": "2843905.219663741104043209",
+ "price": "0.0028439052196637411",
+ "priceChange24hPercent": "6.16",
+ "volume24h": "33446.689942678157117103",
+ "communityRecognized": false,
+ "key": "evm--56:0x87ae267002cd1ea0ec86bf3601d4a8ad76a47777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xd4dc6b48ad73ec51e71d9b8f65568f88609b92c1",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xd4dc6b48ad73ec51e71d9b8f65568f88609b92c1-1787659267512.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xd4dc6b48ad73ec51e71d9b8f65568f88609b92c1-1787659267512.png"
+ ],
+ "name": "Sherwood",
+ "symbol": "SHERWOOD",
+ "marketCap": "503569.986816325467242948",
+ "price": "0.00050356998681632547",
+ "priceChange24hPercent": "-44.13",
+ "volume24h": "51984.5019340595908748",
+ "communityRecognized": false,
+ "key": "evm--4663:0xd4dc6b48ad73ec51e71d9b8f65568f88609b92c1",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x56910d4409f3a0c78c64dd8d0545ff0705389870",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x56910d4409f3a0c78c64dd8d0545ff0705389870-1784842044117.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x56910d4409f3a0c78c64dd8d0545ff0705389870-1784842044117.png"
+ ],
+ "name": "The Index",
+ "symbol": "Index",
+ "marketCap": "38346880.896545450198895543",
+ "price": "0.03910814324503138447",
+ "priceChange24hPercent": "-0.27",
+ "volume24h": "56222.032896027656044794",
+ "communityRecognized": true,
+ "key": "evm--4663:0x56910d4409f3a0c78c64dd8d0545ff0705389870",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "MukLDtJ8Cx9DxLbeyLRSWPSposTMWuwHANbuaudpump",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-MukLDtJ8Cx9DxLbeyLRSWPSposTMWuwHANbuaudpump-1788282416465.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-MukLDtJ8Cx9DxLbeyLRSWPSposTMWuwHANbuaudpump-1788282416465.png"
+ ],
+ "name": "OTC",
+ "symbol": "OTC",
+ "marketCap": "18665066.221513705269398034",
+ "price": "0.0262623070956762804",
+ "priceChange24hPercent": "-3.69",
+ "volume24h": "852432.1593628464",
+ "communityRecognized": false,
+ "key": "sol--101:MukLDtJ8Cx9DxLbeyLRSWPSposTMWuwHANbuaudpump",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0x68fa48b1c2fe52b3d776e1953e0e782b5044ce28",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/c87a8ce3e8952900ef0a4b64d5f35f964395958d1bd69e7388b453e696cb8f8d",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/c87a8ce3e8952900ef0a4b64d5f35f964395958d1bd69e7388b453e696cb8f8d"
+ ],
+ "name": "SpaceX xStock",
+ "symbol": "SPCXx",
+ "marketCap": "1107304878126",
+ "price": "149.9150525",
+ "priceChange24hPercent": "0.19",
+ "volume24h": "59214.330951186146802034",
+ "communityRecognized": false,
+ "key": "evm--196:0x68fa48b1c2fe52b3d776e1953e0e782b5044ce28",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "Aw6fiDPWLUnjSsJQtsyEMSaoPaKAUUrStAsYPiPwpump",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/77390ed5d0a7e7ae6ab8a0e2685653ff99f696192f784341e9d9bd613dc27472",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/77390ed5d0a7e7ae6ab8a0e2685653ff99f696192f784341e9d9bd613dc27472"
+ ],
+ "name": "Anonymouse",
+ "symbol": "Anonymouse",
+ "marketCap": "576031.891998599217547163",
+ "price": "0.00060453517170229361",
+ "priceChange24hPercent": "-2.3",
+ "volume24h": "64735.28381148849",
+ "communityRecognized": false,
+ "key": "sol--101:Aw6fiDPWLUnjSsJQtsyEMSaoPaKAUUrStAsYPiPwpump",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0x8ad3c73f833d3f9a523ab01476625f269aeb7cf0",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/d20fbce76659b93e5e02cd823afdf5bcac92ba2b71b111deb9ca1fe769ef63d4",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/d20fbce76659b93e5e02cd823afdf5bcac92ba2b71b111deb9ca1fe769ef63d4"
+ ],
+ "name": "Tesla xStock",
+ "symbol": "TSLAx",
+ "marketCap": "1393688637562.962",
+ "price": "356.4350525",
+ "priceChange24hPercent": "0.22",
+ "volume24h": "2444.10214942511568594",
+ "communityRecognized": false,
+ "key": "evm--196:0x8ad3c73f833d3f9a523ab01476625f269aeb7cf0",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x4f4a59ac165c6f05ed771df3530741494b1c7777",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/aaedfbda5a6301f10b584f1887dbe9604f4015526974adfc9bd19e9bff06bf7c",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/aaedfbda5a6301f10b584f1887dbe9604f4015526974adfc9bd19e9bff06bf7c"
+ ],
+ "name": "Offchain Dog",
+ "symbol": "zDOG",
+ "marketCap": "716071.920123885726066789",
+ "price": "0.00071607192012388573",
+ "priceChange24hPercent": "14.91",
+ "volume24h": "77213.84935252993300995",
+ "communityRecognized": false,
+ "key": "evm--56:0x4f4a59ac165c6f05ed771df3530741494b1c7777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x385f4f8ae47651ce5f58f5265395a669f8281e18",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x385f4f8ae47651ce5f58f5265395a669f8281e18-1788523250367.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x385f4f8ae47651ce5f58f5265395a669f8281e18-1788523250367.png"
+ ],
+ "name": "A Meme Coin",
+ "symbol": "MEME",
+ "marketCap": "122511547.146343256738851074",
+ "price": "0.12251154720077913367",
+ "priceChange24hPercent": "5.72",
+ "volume24h": "762759.777932134784121639",
+ "communityRecognized": true,
+ "key": "evm--4663:0x385f4f8ae47651ce5f58f5265395a669f8281e18",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x384c3f978950a98523529a205163bf63a69e8dd5",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/7a4fae357f9d4613d7f8b5f8bd76e29c37fb44afd8ff4f0da78fe40be38d3dd3",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/7a4fae357f9d4613d7f8b5f8bd76e29c37fb44afd8ff4f0da78fe40be38d3dd3"
+ ],
+ "name": "Kerf",
+ "symbol": "KERF",
+ "marketCap": "715380.768801813343037355",
+ "price": "0.00071538076880181334",
+ "priceChange24hPercent": "52.5",
+ "volume24h": "98414.6667642792924176",
+ "communityRecognized": false,
+ "key": "evm--4663:0x384c3f978950a98523529a205163bf63a69e8dd5",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0x4fec966f98d8530507787d947d1ab24fa145a999",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/5114ae6a8dd22ff7afd7dc72ba2065ab2dc5914e10df890f2c0971f48049eb1f",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/5114ae6a8dd22ff7afd7dc72ba2065ab2dc5914e10df890f2c0971f48049eb1f"
+ ],
+ "name": "LAIKA Coin",
+ "symbol": "LAIKA",
+ "marketCap": "2972813.068622393815012273",
+ "price": "0.00297281315186116207",
+ "priceChange24hPercent": "-0.86",
+ "volume24h": "1349.29463928814598458",
+ "communityRecognized": false,
+ "key": "evm--196:0x4fec966f98d8530507787d947d1ab24fa145a999",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x1ec871553be07dc68ec1661c32eca7e2e46e1e18",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/ee7408e5fd186d0c6d70812ea983d43036994104aca07d6d3074523eaa5b18a2",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/ee7408e5fd186d0c6d70812ea983d43036994104aca07d6d3074523eaa5b18a2"
+ ],
+ "name": "STONKS",
+ "symbol": "STONKS",
+ "marketCap": "231597.584146714265601533",
+ "price": "0.00023159758414671427",
+ "priceChange24hPercent": "-12.42",
+ "volume24h": "9914.790860439275417469",
+ "communityRecognized": false,
+ "key": "evm--4663:0x1ec871553be07dc68ec1661c32eca7e2e46e1e18",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0xff637d2d435d6745df3faf61272b1216e7e8b727",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/9fc774ca51417bc1bbf6bd03e602e39c5b991c3dee079065d7ce9c06c7da7d64",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/9fc774ca51417bc1bbf6bd03e602e39c5b991c3dee079065d7ce9c06c7da7d64"
+ ],
+ "name": "Wrapped SHEIN xStock",
+ "symbol": "wSHEINx",
+ "marketCap": "9931.131723846962877347",
+ "price": "5.2204262143685951143",
+ "priceChange24hPercent": "0.72",
+ "volume24h": "1799.981682804096366",
+ "communityRecognized": false,
+ "key": "evm--196:0xff637d2d435d6745df3faf61272b1216e7e8b727",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x5b73a93b4e5e4f1fd27d8b3f8c97d69908b5e284",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x5b73a93b4e5e4f1fd27d8b3f8c97d69908b5e284-1757704453242.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x5b73a93b4e5e4f1fd27d8b3f8c97d69908b5e284-1757704453242.png"
+ ],
+ "name": "FORM Token",
+ "symbol": "FORM",
+ "marketCap": "80658171.488379674423689224",
+ "price": "0.27194644982635185092",
+ "priceChange24hPercent": "1.97",
+ "volume24h": "81920.480374496782461347",
+ "communityRecognized": true,
+ "key": "evm--56:0x5b73a93b4e5e4f1fd27d8b3f8c97d69908b5e284",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xfe7e19cbce2f896c6c528bc355baf5a768291e18",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xfe7e19cbce2f896c6c528bc355baf5a768291e18-1786017952373.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xfe7e19cbce2f896c6c528bc355baf5a768291e18-1786017952373.png"
+ ],
+ "name": "SPACEHOOD",
+ "symbol": "SPACEHOOD",
+ "marketCap": "8428237.504547357156569038",
+ "price": "0.00842823750454735716",
+ "priceChange24hPercent": "-9.22",
+ "volume24h": "70097.88719928959434514",
+ "communityRecognized": false,
+ "key": "evm--4663:0xfe7e19cbce2f896c6c528bc355baf5a768291e18",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "9cRCn9rGT8V2imeM2BaKs13yhMEais3ruM3rPvTGpump",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-9cRCn9rGT8V2imeM2BaKs13yhMEais3ruM3rPvTGpump-1782140764006.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-9cRCn9rGT8V2imeM2BaKs13yhMEais3ruM3rPvTGpump-1782140764006.png"
+ ],
+ "name": "The Black Bull",
+ "symbol": "ANSEM",
+ "marketCap": "77437082.195285110945748258",
+ "price": "0.1866888694873301954",
+ "priceChange24hPercent": "-3",
+ "volume24h": "1032357.01753059411470345",
+ "communityRecognized": true,
+ "key": "sol--101:9cRCn9rGT8V2imeM2BaKs13yhMEais3ruM3rPvTGpump",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x7a848a5a8169aa6a2f603d056a749f924f504444",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x7a848a5a8169aa6a2f603d056a749f924f504444-1783238620991.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x7a848a5a8169aa6a2f603d056a749f924f504444-1783238620991.png"
+ ],
+ "name": "The Final Form Bull",
+ "symbol": "CZ",
+ "marketCap": "1099286.938089230968563345",
+ "price": "0.0036646154199429095",
+ "priceChange24hPercent": "-6.56",
+ "volume24h": "48789.207404599566967064",
+ "communityRecognized": false,
+ "key": "evm--56:0x7a848a5a8169aa6a2f603d056a749f924f504444",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xa01bc586cd5f4f253bfab4e44400c52dbc18bc50",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/c365b2142e4c766209febdcd7d1678e3519a6be41b491b73bf8cddfc0cd3ab98",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/c365b2142e4c766209febdcd7d1678e3519a6be41b491b73bf8cddfc0cd3ab98"
+ ],
+ "name": "Voxelithic Protocol",
+ "symbol": "VOXEL",
+ "marketCap": "2194808.399720832343306287",
+ "price": "0.00219480839972083234",
+ "priceChange24hPercent": "1.85",
+ "volume24h": "33356.9033328146619525",
+ "communityRecognized": false,
+ "key": "evm--4663:0xa01bc586cd5f4f253bfab4e44400c52dbc18bc50",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x45242320dbb855eea8fd36804c6487e10e97fcf9",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x45242320dbb855eea8fd36804c6487e10e97fcf9-1784778612504.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x45242320dbb855eea8fd36804c6487e10e97fcf9-1784778612504.png"
+ ],
+ "name": "TENDIES",
+ "symbol": "TENDIES",
+ "marketCap": "15418336.651928049187952375",
+ "price": "0.0161197596815997701",
+ "priceChange24hPercent": "-5.25",
+ "volume24h": "50099.4088403495060791",
+ "communityRecognized": false,
+ "key": "evm--4663:0x45242320dbb855eea8fd36804c6487e10e97fcf9",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x265b3982ea730748100947f52561a4eab54affff",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x265b3982ea730748100947f52561a4eab54affff-1788163283951.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x265b3982ea730748100947f52561a4eab54affff-1788163283951.png"
+ ],
+ "name": "ast.fun",
+ "symbol": "AST",
+ "marketCap": "1006188.389049844693397769",
+ "price": "0.00101988046623180537",
+ "priceChange24hPercent": "-25.15",
+ "volume24h": "134261.30574238473892339",
+ "communityRecognized": false,
+ "key": "evm--56:0x265b3982ea730748100947f52561a4eab54affff",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0xf8a80d1cb9cfd70d03d655d9df42339846f3b3c8",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/1e720661a824f8fa58ab89efae4df73c288c398ec4528d3843ac3b7a5448d89b",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/1e720661a824f8fa58ab89efae4df73c288c398ec4528d3843ac3b7a5448d89b"
+ ],
+ "name": "Intel xStock",
+ "symbol": "INTCx",
+ "marketCap": "483659047740.336",
+ "price": "100.6050675",
+ "priceChange24hPercent": "0.66",
+ "volume24h": "857.06949906281404",
+ "communityRecognized": false,
+ "key": "evm--196:0xf8a80d1cb9cfd70d03d655d9df42339846f3b3c8",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0xb63efbc28860c8097e341de1fcf59456161e9d98",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/40d968af1f2303f4272fd4cee6151e7094b40350c2b598d5ce76e20cf90e44d4",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/40d968af1f2303f4272fd4cee6151e7094b40350c2b598d5ce76e20cf90e44d4"
+ ],
+ "name": "Sandisk Corporation xStock",
+ "symbol": "SNDKx",
+ "marketCap": "256808803334.25",
+ "price": "1812.751875",
+ "priceChange24hPercent": "0.57",
+ "volume24h": "657.948325351870651",
+ "communityRecognized": false,
+ "key": "evm--196:0xb63efbc28860c8097e341de1fcf59456161e9d98",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0xf6a873bae4ba1b304e45df52a4b7d176e1c6a8c4",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/b9ac0da769e65f7d17afb241122f9b4dc45269526fe2ae4a010d494d2833c128",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/b9ac0da769e65f7d17afb241122f9b4dc45269526fe2ae4a010d494d2833c128"
+ ],
+ "name": "Micron Technology xStock",
+ "symbol": "MUx",
+ "marketCap": "1146219040390",
+ "price": "1054.6614",
+ "priceChange24hPercent": "0.81",
+ "volume24h": "1155.15484453397574",
+ "communityRecognized": false,
+ "key": "evm--196:0xf6a873bae4ba1b304e45df52a4b7d176e1c6a8c4",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0xae2f842ef90c0d5213259ab82639d5bbf649b08e",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/bd9738f19f874389dfe2c4479c32384f2f14538182cf1a1be0e349146c7b02fa",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/bd9738f19f874389dfe2c4479c32384f2f14538182cf1a1be0e349146c7b02fa"
+ ],
+ "name": "MicroStrategy xStock",
+ "symbol": "MSTRx",
+ "marketCap": "47161642520",
+ "price": "141.2502",
+ "priceChange24hPercent": "-0.25",
+ "volume24h": "1815.07071973999083",
+ "communityRecognized": false,
+ "key": "evm--196:0xae2f842ef90c0d5213259ab82639d5bbf649b08e",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "HcRLc9VDgjLeK154xDawfb1dmVJ98DoSqcwTHGqiDeJR",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-HcRLc9VDgjLeK154xDawfb1dmVJ98DoSqcwTHGqiDeJR-1788454854698.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-HcRLc9VDgjLeK154xDawfb1dmVJ98DoSqcwTHGqiDeJR-1788454854698.png"
+ ],
+ "name": "Anonymous Cat",
+ "symbol": "ZCAT",
+ "marketCap": "133320996.34062627923315211",
+ "price": "0.13759910078028604069",
+ "priceChange24hPercent": "3.06",
+ "volume24h": "492085.89115577219815435",
+ "communityRecognized": true,
+ "key": "sol--101:HcRLc9VDgjLeK154xDawfb1dmVJ98DoSqcwTHGqiDeJR",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "6GmAFSYs4gk3FDao5FzzySQpPZaWsa4rUJHacpMpUNgx",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-6GmAFSYs4gk3FDao5FzzySQpPZaWsa4rUJHacpMpUNgx-1784905991044.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-6GmAFSYs4gk3FDao5FzzySQpPZaWsa4rUJHacpMpUNgx-1784905991044.png"
+ ],
+ "name": "STONK",
+ "symbol": "STONK",
+ "marketCap": "162373475.987123376569100375",
+ "price": "0.18660396117879934312",
+ "priceChange24hPercent": "-9.08",
+ "volume24h": "5686134.91493532139190409",
+ "communityRecognized": true,
+ "key": "sol--101:6GmAFSYs4gk3FDao5FzzySQpPZaWsa4rUJHacpMpUNgx",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "HhXR4SiHzDNYCFXJBpCYg86T4NhzsD4vz4Y5Jtz6ozKx",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/f726c684810fa3c317fc93c5be53f978bd8c53c43e640ba1356f234c0f0904b0",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/f726c684810fa3c317fc93c5be53f978bd8c53c43e640ba1356f234c0f0904b0"
+ ],
+ "name": "OpenAI PreStocks",
+ "symbol": "OPENAI",
+ "marketCap": "2899816.482073688742072969",
+ "price": "0.00002899816519822018",
+ "priceChange24hPercent": "12.14",
+ "volume24h": "16763602.55918203278",
+ "communityRecognized": false,
+ "key": "sol--101:HhXR4SiHzDNYCFXJBpCYg86T4NhzsD4vz4Y5Jtz6ozKx",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0x90a2a4c76b5d8c0bc892a69ea28aa775a8f2dd48",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/ab5f79fac87972384ec00b70cbf1425ff50db03221af2080d087d63a2a6ecaa4",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/ab5f79fac87972384ec00b70cbf1425ff50db03221af2080d087d63a2a6ecaa4"
+ ],
+ "name": "SP500 xStock",
+ "symbol": "SPYx",
+ "marketCap": "819712532527.486",
+ "price": "770.2150375",
+ "priceChange24hPercent": "0.07",
+ "volume24h": "2318.0971839065910877",
+ "communityRecognized": false,
+ "key": "evm--196:0x90a2a4c76b5d8c0bc892a69ea28aa775a8f2dd48",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xc9a981fee1f9dec688bb123ccdecc63d0debfc4e",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xc9a981fee1f9dec688bb123ccdecc63d0debfc4e-1786795236632.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xc9a981fee1f9dec688bb123ccdecc63d0debfc4e-1786795236632.png"
+ ],
+ "name": "SPDR Gold Trust • Robinhood Token",
+ "symbol": "GLD",
+ "marketCap": "6332935.761003106287310793",
+ "price": "407.36193140034649512163",
+ "priceChange24hPercent": "-0.04",
+ "volume24h": "302495.726931225721584378",
+ "communityRecognized": false,
+ "key": "evm--4663:0xc9a981fee1f9dec688bb123ccdecc63d0debfc4e",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0xb91b2771554e6a23e2e5e04f926e8757befb1111",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/5334d97a49e68503fbc62629a9272d347e518bb2727f81de4a59a3556484e3ea",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/5334d97a49e68503fbc62629a9272d347e518bb2727f81de4a59a3556484e3ea"
+ ],
+ "name": "Xstocks Index",
+ "symbol": "XSTX",
+ "marketCap": "255777.098614140490133737",
+ "price": "0.00026338099643166876",
+ "priceChange24hPercent": "-5.9",
+ "volume24h": "1297.6280378915369864",
+ "communityRecognized": false,
+ "key": "evm--196:0xb91b2771554e6a23e2e5e04f926e8757befb1111",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "XsbEhLAtcf6HdfpFZ5xEMdqW8nfAvcsP5bdudRLJzJp",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-XsbEhLAtcf6HdfpFZ5xEMdqW8nfAvcsP5bdudRLJzJp-1758104899904.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-XsbEhLAtcf6HdfpFZ5xEMdqW8nfAvcsP5bdudRLJzJp-1758104899904.png"
+ ],
+ "name": "Apple xStock",
+ "symbol": "AAPLx",
+ "marketCap": "12673613.761183361201682025",
+ "price": "319.1650975",
+ "priceChange24hPercent": "-0.07",
+ "volume24h": "137460.262160790288421337",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 xStock 代币化发行",
+ "subtitle": "苹果",
+ "source": "xstock",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/xstock.png",
+ "isOpen": true
+ },
+ "key": "sol--101:XsbEhLAtcf6HdfpFZ5xEMdqW8nfAvcsP5bdudRLJzJp",
+ "kind": "stock",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xfe189e97832da1573e4e4ff034f4ffc3a15c7777",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xfe189e97832da1573e4e4ff034f4ffc3a15c7777-1785917292044.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xfe189e97832da1573e4e4ff034f4ffc3a15c7777-1785917292044.png"
+ ],
+ "name": "MarsCoin",
+ "symbol": "MarsCoin",
+ "marketCap": "142584555.278465511990526779",
+ "price": "0.1426398633561573111",
+ "priceChange24hPercent": "-1.63",
+ "volume24h": "517413.287650957100838471",
+ "communityRecognized": true,
+ "key": "evm--56:0xfe189e97832da1573e4e4ff034f4ffc3a15c7777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0xc845b2894dbddd03858fd2d643b4ef725fe0849d",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/c962a251f19235c6d17ad9faab7ae8a2269a67dacdece8b4d65da8a626688ac4",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/c962a251f19235c6d17ad9faab7ae8a2269a67dacdece8b4d65da8a626688ac4"
+ ],
+ "name": "NVIDIA xStock",
+ "symbol": "NVDAx",
+ "marketCap": "5557847544000",
+ "price": "232.9250375",
+ "priceChange24hPercent": "-",
+ "volume24h": "10954.3394628699382666",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 xStock 代币化发行",
+ "subtitle": "英伟达",
+ "source": "xstock",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/xstock.png",
+ "isOpen": true
+ },
+ "key": "evm--196:0xc845b2894dbddd03858fd2d643b4ef725fe0849d",
+ "kind": "stock",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ }
+ ],
+ "stocks": [
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x390a684ef9cade28a7ad0dfa61ab1eb3842618c4",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x390a684ef9cade28a7ad0dfa61ab1eb3842618c4-1760515427269.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x390a684ef9cade28a7ad0dfa61ab1eb3842618c4-1760515427269.png"
+ ],
+ "name": "Apple (Ondo Tokenized)",
+ "symbol": "AAPLon",
+ "marketCap": "4699513299320",
+ "price": "320.298481855554072365",
+ "priceChange24hPercent": "-0.5",
+ "volume24h": "12673014673.480001",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "苹果",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x390a684ef9cade28a7ad0dfa61ab1eb3842618c4",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x8b872732b07be325a8803cdb480d9d20b6f8d11b",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x8b872732b07be325a8803cdb480d9d20b6f8d11b-1760923370870.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x8b872732b07be325a8803cdb480d9d20b6f8d11b-1760923370870.png"
+ ],
+ "name": "iShares Silver Trust (Ondo Tokenized)",
+ "symbol": "SLVon",
+ "marketCap": "32192820451",
+ "price": "60.613516",
+ "priceChange24hPercent": "3.36",
+ "volume24h": "751852335.96",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "白银ETF",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x8b872732b07be325a8803cdb480d9d20b6f8d11b",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x992879cd8ce0c312d98648875b5a8d6d042cbf34",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x992879cd8ce0c312d98648875b5a8d6d042cbf34-1760923032790.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x992879cd8ce0c312d98648875b5a8d6d042cbf34-1760923032790.png"
+ ],
+ "name": "Circle Internet Group (Ondo Tokenized)",
+ "symbol": "CRCLon",
+ "marketCap": "27277014302",
+ "price": "101.983108",
+ "priceChange24hPercent": "-1.98",
+ "volume24h": "1440248998.5",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "Circle Internet Group",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x992879cd8ce0c312d98648875b5a8d6d042cbf34",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xa9ee28c80f960b889dfbd1902055218cba016f75",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xa9ee28c80f960b889dfbd1902055218cba016f75-1760923276163.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xa9ee28c80f960b889dfbd1902055218cba016f75-1760923276163.png"
+ ],
+ "name": "NVIDIA (Ondo Tokenized)",
+ "symbol": "NVDAon",
+ "marketCap": "5579549560000",
+ "price": "233.18030531293853192",
+ "priceChange24hPercent": "0.56",
+ "volume24h": "31179783471.2",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "英伟达",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0xa9ee28c80f960b889dfbd1902055218cba016f75",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x8b6acf6041a81567f012ff6a4c6d96d5818d74bf",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x8b6acf6041a81567f012ff6a4c6d96d5818d74bf-1760923255049.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x8b6acf6041a81567f012ff6a4c6d96d5818d74bf-1760923255049.png"
+ ],
+ "name": "Micron Technology (Ondo Tokenized)",
+ "symbol": "MUon",
+ "marketCap": "1148126580100",
+ "price": "1055.805608023373639527",
+ "priceChange24hPercent": "1.28",
+ "volume24h": "35834308520.21",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "美光科技",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x8b6acf6041a81567f012ff6a4c6d96d5818d74bf",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x7313ea16493b2f55054df0131a3a14b043ec8992",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x7313ea16493b2f55054df0131a3a14b043ec8992-1760923249909.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x7313ea16493b2f55054df0131a3a14b043ec8992-1760923249909.png"
+ ],
+ "name": "MicroStrategy (Ondo Tokenized)",
+ "symbol": "MSTRon",
+ "marketCap": "47239382400",
+ "price": "141.505263",
+ "priceChange24hPercent": "-1.98",
+ "volume24h": "3878826420.0000005",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "微策略",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x7313ea16493b2f55054df0131a3a14b043ec8992",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x4553cfe1c09f37f38b12dc509f676964e392f8fc",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x4553cfe1c09f37f38b12dc509f676964e392f8fc-1760686410256.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x4553cfe1c09f37f38b12dc509f676964e392f8fc-1760686410256.png"
+ ],
+ "name": "Amazon (Ondo Tokenized)",
+ "symbol": "AMZNon",
+ "marketCap": "2780817921000",
+ "price": "258.279748",
+ "priceChange24hPercent": "-0.11",
+ "volume24h": "7949159751.12",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "亚马逊",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x4553cfe1c09f37f38b12dc509f676964e392f8fc",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x6a708ead771238919d85930b5a0f10454e1c331a",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x6a708ead771238919d85930b5a0f10454e1c331a-1760921581963.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x6a708ead771238919d85930b5a0f10454e1c331a-1760921581963.png"
+ ],
+ "name": "SPDR S&P 500 ETF (Ondo Tokenized)",
+ "symbol": "SPYon",
+ "marketCap": "820435829283",
+ "price": "776.141056177460214449",
+ "priceChange24hPercent": "0.01",
+ "volume24h": "25385765084.670002",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "标普500 ETF",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x6a708ead771238919d85930b5a0f10454e1c331a",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x0cde6936d305d5b34667fc46425e852efd73559a",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x0cde6936d305d5b34667fc46425e852efd73559a-1760923339182.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x0cde6936d305d5b34667fc46425e852efd73559a-1760923339182.png"
+ ],
+ "name": "Invesco QQQ (Ondo Tokenized)",
+ "symbol": "QQQon",
+ "marketCap": "512284401576",
+ "price": "725.686548519952709569",
+ "priceChange24hPercent": "0.32",
+ "volume24h": "23632988800.960003",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "纳指ETF",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x0cde6936d305d5b34667fc46425e852efd73559a",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xd5964f3fcee8d649995ab88f04b8982539c282d2",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xd5964f3fcee8d649995ab88f04b8982539c282d2-1760922996465.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xd5964f3fcee8d649995ab88f04b8982539c282d2-1760922996465.png"
+ ],
+ "name": "Alibaba (Ondo Tokenized)",
+ "symbol": "BABAon",
+ "marketCap": "271421798529",
+ "price": "112.499497934947570659",
+ "priceChange24hPercent": "-1.46",
+ "volume24h": "810668853.4399999",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "阿里巴巴",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0xd5964f3fcee8d649995ab88f04b8982539c282d2",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x19601179a60f55ff6636f5d1a8b6671053bd60a8",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x19601179a60f55ff6636f5d1a8b6671053bd60a8-1760923113456.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x19601179a60f55ff6636f5d1a8b6671053bd60a8-1760923113456.png"
+ ],
+ "name": "Robinhood Markets (Ondo Tokenized)",
+ "symbol": "HOODon",
+ "marketCap": "109786941485",
+ "price": "123.076667",
+ "priceChange24hPercent": "0.85",
+ "volume24h": "2897993280.95",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "罗宾汉",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x19601179a60f55ff6636f5d1a8b6671053bd60a8",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x091fc7778e6932d4009b087b191d1ee3bac5729a",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x091fc7778e6932d4009b087b191d1ee3bac5729a-1760923100804.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x091fc7778e6932d4009b087b191d1ee3bac5729a-1760923100804.png"
+ ],
+ "name": "Alphabet Class A (Ondo Tokenized)",
+ "symbol": "GOOGLon",
+ "marketCap": "4096080585860",
+ "price": "338.962258099649311085",
+ "priceChange24hPercent": "-0.2",
+ "volume24h": "7848657585.66",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "谷歌",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x091fc7778e6932d4009b087b191d1ee3bac5729a",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xf8589b526fdd65f7f301c605a6e04f0f1b4b3620",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xf8589b526fdd65f7f301c605a6e04f0f1b4b3620-1761749966569.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xf8589b526fdd65f7f301c605a6e04f0f1b4b3620-1761749966569.png"
+ ],
+ "name": "Coinbase (Ondo Tokenized)",
+ "symbol": "COINon",
+ "marketCap": "48714333394",
+ "price": "183.831667",
+ "priceChange24hPercent": "-1.12",
+ "volume24h": "1509934590.08",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "Coinbase",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0xf8589b526fdd65f7f301c605a6e04f0f1b4b3620",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xe42cfb20e00912409b77a602b5bdcff3c7acc5f4",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xe42cfb20e00912409b77a602b5bdcff3c7acc5f4-1768032381719.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xe42cfb20e00912409b77a602b5bdcff3c7acc5f4-1768032381719.png"
+ ],
+ "name": "ProShares UltraPro QQQ (Ondo Tokenized)",
+ "symbol": "TQQQon",
+ "marketCap": "44436706139",
+ "price": "73.845438057857333962",
+ "priceChange24hPercent": "1.87",
+ "volume24h": "3426881608.8",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "三倍做多纳指ETF",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0xe42cfb20e00912409b77a602b5bdcff3c7acc5f4",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xcb2a0f46f67dc4c58a316f1c008edef5c2311795",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xcb2a0f46f67dc4c58a316f1c008edef5c2311795-1760923121884.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xcb2a0f46f67dc4c58a316f1c008edef5c2311795-1760923121884.png"
+ ],
+ "name": "iShares Gold Trust (Ondo Tokenized)",
+ "symbol": "IAUon",
+ "marketCap": "65795429989",
+ "price": "83.510002",
+ "priceChange24hPercent": "0.23",
+ "volume24h": "415966081.39",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "iShares黄金ETF",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0xcb2a0f46f67dc4c58a316f1c008edef5c2311795",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x9351abd19f42101dd36025e495b98e910b255d78",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x9351abd19f42101dd36025e495b98e910b255d78-1760923318304.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x9351abd19f42101dd36025e495b98e910b255d78-1760923318304.png"
+ ],
+ "name": "Palantir Technologies (Ondo Tokenized)",
+ "symbol": "PLTRon",
+ "marketCap": "400273883100",
+ "price": "174.182857",
+ "priceChange24hPercent": "-0.31",
+ "volume24h": "4874798157.84",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "帕兰提尔",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x9351abd19f42101dd36025e495b98e910b255d78",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xec93fe7ff4b09ca3ccafbc4cc9615e62be412780",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xec93fe7ff4b09ca3ccafbc4cc9615e62be412780-1768378372330.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xec93fe7ff4b09ca3ccafbc4cc9615e62be412780-1768378372330.png"
+ ],
+ "name": "Global X Copper Miners ETF (Ondo Tokenized)",
+ "symbol": "COPXon",
+ "marketCap": "8398061634",
+ "price": "90.741202370238771614",
+ "priceChange24hPercent": "--",
+ "volume24h": "120614154.66",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "铜矿ETF",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0xec93fe7ff4b09ca3ccafbc4cc9615e62be412780",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x9f16e46c73b43bdb70861247d537bee4ea18f639",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x9f16e46c73b43bdb70861247d537bee4ea18f639-1760922831860.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x9f16e46c73b43bdb70861247d537bee4ea18f639-1760922831860.png"
+ ],
+ "name": "AMD (Ondo Tokenized)",
+ "symbol": "AMDon",
+ "marketCap": "778725642000",
+ "price": "487.975263",
+ "priceChange24hPercent": "1.18",
+ "volume24h": "9397976816.94",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "超威半导体",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x9f16e46c73b43bdb70861247d537bee4ea18f639",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x6bfe75d1ad432050ea973c3a3dcd88f02e2444c3",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x6bfe75d1ad432050ea973c3a3dcd88f02e2444c3-1760923244592.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x6bfe75d1ad432050ea973c3a3dcd88f02e2444c3-1760923244592.png"
+ ],
+ "name": "Microsoft (Ondo Tokenized)",
+ "symbol": "MSFTon",
+ "marketCap": "3710547335000",
+ "price": "499.708647472892879635",
+ "priceChange24hPercent": "-0.72",
+ "volume24h": "9045448472.6",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "微软",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x6bfe75d1ad432050ea973c3a3dcd88f02e2444c3",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x7048f5227b032326cc8dbc53cf3fddd947a2c757",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x7048f5227b032326cc8dbc53cf3fddd947a2c757-1760923261006.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x7048f5227b032326cc8dbc53cf3fddd947a2c757-1760923261006.png"
+ ],
+ "name": "Netflix (Ondo Tokenized)",
+ "symbol": "NFLXon",
+ "marketCap": "325828304922",
+ "price": "778.72424",
+ "priceChange24hPercent": "-0.54",
+ "volume24h": "3144868282.5",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "奈飞",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x7048f5227b032326cc8dbc53cf3fddd947a2c757",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xc145dc2ebdbe8ead1fecdebf46c76eb1fdd0104d",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xc145dc2ebdbe8ead1fecdebf46c76eb1fdd0104d-1768184402429.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xc145dc2ebdbe8ead1fecdebf46c76eb1fdd0104d-1768184402429.png"
+ ],
+ "name": "Carvana (Ondo Tokenized)",
+ "symbol": "CVNAon",
+ "price": "-",
+ "priceChange24hPercent": "-",
+ "communityRecognized": false,
+ "key": "evm--56:0xc145dc2ebdbe8ead1fecdebf46c76eb1fdd0104d",
+ "kind": "token",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x3385cb29cca0ac66f5d2354d13ef977b49a2510f",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x3385cb29cca0ac66f5d2354d13ef977b49a2510f-1760923604445.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x3385cb29cca0ac66f5d2354d13ef977b49a2510f-1760923604445.png"
+ ],
+ "name": "UnitedHealth (Ondo Tokenized)",
+ "symbol": "UNHon",
+ "marketCap": "360660468605",
+ "price": "402.98451011334612462",
+ "priceChange24hPercent": "-0.26",
+ "volume24h": "1916737036.1399999",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "联合健康",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x3385cb29cca0ac66f5d2354d13ef977b49a2510f",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x03e4bd1ea53f1da84513da0319d1f03dd1bbcf93",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x03e4bd1ea53f1da84513da0319d1f03dd1bbcf93-1760923286694.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x03e4bd1ea53f1da84513da0319d1f03dd1bbcf93-1760923286694.png"
+ ],
+ "name": "Oracle (Ondo Tokenized)",
+ "symbol": "ORCLon",
+ "marketCap": "457505050100",
+ "price": "166.481535598340633943",
+ "priceChange24hPercent": "2.21",
+ "volume24h": "4138044844.8500004",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "甲骨文",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x03e4bd1ea53f1da84513da0319d1f03dd1bbcf93",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x2494b603319d4d9f9715c9f4496d9e0364b59d93",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x2494b603319d4d9f9715c9f4496d9e0364b59d93-1760680411667.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x2494b603319d4d9f9715c9f4496d9e0364b59d93-1760680411667.png"
+ ],
+ "name": "Tesla (Ondo Tokenized)",
+ "symbol": "TSLAon",
+ "marketCap": "1398455741268",
+ "price": "356.443455",
+ "priceChange24hPercent": "0.17",
+ "volume24h": "23021647442.719997",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "特斯拉",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x2494b603319d4d9f9715c9f4496d9e0364b59d93",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x0ed2e3180edf393e6bf8db124bd15ddd54de150a",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x0ed2e3180edf393e6bf8db124bd15ddd54de150a-1760922985968.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x0ed2e3180edf393e6bf8db124bd15ddd54de150a-1760922985968.png"
+ ],
+ "name": "Broadcom (Ondo Tokenized)",
+ "symbol": "AVGOon",
+ "marketCap": "1702714094100",
+ "price": "364.792451018770787223",
+ "priceChange24hPercent": "0.24",
+ "volume24h": "11761598227.175",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "博通",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x0ed2e3180edf393e6bf8db124bd15ddd54de150a",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x25ffda07f585c39848db6573e533d7585679c52d",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x25ffda07f585c39848db6573e533d7585679c52d-1760923217550.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x25ffda07f585c39848db6573e533d7585679c52d-1760923217550.png"
+ ],
+ "name": "Mastercard (Ondo Tokenized)",
+ "symbol": "MAon",
+ "marketCap": "507988021560",
+ "price": "577.919566836818062189",
+ "priceChange24hPercent": "-0.72",
+ "volume24h": "1015977201.5400001",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "万事达",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x25ffda07f585c39848db6573e533d7585679c52d",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x34304f2f7cc487eb4186e6d69f5905a613474aa2",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x34304f2f7cc487eb4186e6d69f5905a613474aa2-1761709115472.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x34304f2f7cc487eb4186e6d69f5905a613474aa2-1761709115472.png"
+ ],
+ "name": "Cisco Systems (Ondo Tokenized)",
+ "symbol": "CSCOon",
+ "marketCap": "430404665418",
+ "price": "110.75473913211509356",
+ "priceChange24hPercent": "0.07",
+ "volume24h": "1351570474.8",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "思科",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x34304f2f7cc487eb4186e6d69f5905a613474aa2",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x5fa699c0c1319b8d86489af77dfde4fa97b47df8",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x5fa699c0c1319b8d86489af77dfde4fa97b47df8-1769105965919.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x5fa699c0c1319b8d86489af77dfde4fa97b47df8-1769105965919.png"
+ ],
+ "name": "BitGo Holdings (Ondo Tokenized)",
+ "symbol": "BTGOon",
+ "marketCap": "781859397",
+ "price": "7.235",
+ "priceChange24hPercent": "--",
+ "volume24h": "10028338.5",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "BitGo",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x5fa699c0c1319b8d86489af77dfde4fa97b47df8",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x50356167a4dbc38bea6779c045e24e25facedfdc",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x50356167a4dbc38bea6779c045e24e25facedfdc-1760923391964.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x50356167a4dbc38bea6779c045e24e25facedfdc-1760923391964.png"
+ ],
+ "name": "Spotify (Ondo Tokenized)",
+ "symbol": "SPOTon",
+ "marketCap": "111515040318",
+ "price": "534.766667",
+ "priceChange24hPercent": "-1.69",
+ "volume24h": "742202629.56",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "Spotify",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x50356167a4dbc38bea6779c045e24e25facedfdc",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x317bf42b43a394860718266dec445dcc9fd9da49",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x317bf42b43a394860718266dec445dcc9fd9da49-1761792505227.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x317bf42b43a394860718266dec445dcc9fd9da49-1761792505227.png"
+ ],
+ "name": "JPMorgan Chase (Ondo Tokenized)",
+ "symbol": "JPMon",
+ "marketCap": "960979466400",
+ "price": "360.974460173899799822",
+ "priceChange24hPercent": "-0.66",
+ "volume24h": "1745667647.6",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "摩根大通",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x317bf42b43a394860718266dec445dcc9fd9da49",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x405f38b90bebf1259062cf29da299f3398662bcb",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x405f38b90bebf1259062cf29da299f3398662bcb-1761605541805.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x405f38b90bebf1259062cf29da299f3398662bcb-1761605541805.png"
+ ],
+ "name": "Coca-Cola (Ondo Tokenized)",
+ "symbol": "KOon",
+ "marketCap": "378925484617",
+ "price": "89.628986243018856634",
+ "priceChange24hPercent": "-0.24",
+ "volume24h": "1283321428.49",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "可口可乐",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x405f38b90bebf1259062cf29da299f3398662bcb",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xc37042a7a4fa510d8884a433762ab87257b91965",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xc37042a7a4fa510d8884a433762ab87257b91965-1760923413025.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xc37042a7a4fa510d8884a433762ab87257b91965-1760923413025.png"
+ ],
+ "name": "Taiwan Semiconductor Manufacturing (Ondo Tokenized)",
+ "symbol": "TSMon",
+ "marketCap": "2224533136800",
+ "price": "438.018182406245951052",
+ "priceChange24hPercent": "0.37",
+ "volume24h": "5261764083.780001",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "台积电",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0xc37042a7a4fa510d8884a433762ab87257b91965",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xd09f7b75b9659b864c6f82bb00ff096f9d277998",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xd09f7b75b9659b864c6f82bb00ff096f9d277998-1760923206785.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xd09f7b75b9659b864c6f82bb00ff096f9d277998-1760923206785.png"
+ ],
+ "name": "Lockheed (Ondo Tokenized)",
+ "symbol": "LMTon",
+ "marketCap": "121229896480",
+ "price": "537.114604097175250464",
+ "priceChange24hPercent": "-0.19",
+ "volume24h": "495034902.88",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "洛克希德马丁",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0xd09f7b75b9659b864c6f82bb00ff096f9d277998",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x341d31b2be1fee9c00e395a62ba41837f4322eed",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x341d31b2be1fee9c00e395a62ba41837f4322eed-1760923201079.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x341d31b2be1fee9c00e395a62ba41837f4322eed-1760923201079.png"
+ ],
+ "name": "Eli Lilly (Ondo Tokenized)",
+ "symbol": "LLYon",
+ "marketCap": "1081307016200",
+ "price": "1149.397318656767340512",
+ "priceChange24hPercent": "-0.16",
+ "volume24h": "2468999720.4",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "礼来",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x341d31b2be1fee9c00e395a62ba41837f4322eed",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x5a20886b575058dd7299785f0ea9b1172942a3e0",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x5a20886b575058dd7299785f0ea9b1172942a3e0-1760922274158.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x5a20886b575058dd7299785f0ea9b1172942a3e0-1760922274158.png"
+ ],
+ "name": "Abbott (Ondo Tokenized)",
+ "symbol": "ABTon",
+ "marketCap": "187435126855",
+ "price": "109.426019691944889332",
+ "priceChange24hPercent": "-1.04",
+ "volume24h": "744744194.56",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "雅培",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x5a20886b575058dd7299785f0ea9b1172942a3e0",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xe6837794fbc6dd024733a1a31f86061296fa2752",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xe6837794fbc6dd024733a1a31f86061296fa2752-1767888357216.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xe6837794fbc6dd024733a1a31f86061296fa2752-1767888357216.png"
+ ],
+ "name": "CrowdStrike (Ondo Tokenized)",
+ "symbol": "CRWDon",
+ "marketCap": "216991052568",
+ "price": "854.08",
+ "priceChange24hPercent": "0.11",
+ "volume24h": "1796128480.1",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "CrowdStrike",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0xe6837794fbc6dd024733a1a31f86061296fa2752",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x918008c3d29496c37b478b611967beaca365af36",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x918008c3d29496c37b478b611967beaca365af36-1760923132407.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x918008c3d29496c37b478b611967beaca365af36-1760923132407.png"
+ ],
+ "name": "iShares Core MSCI EAFE ETF (Ondo Tokenized)",
+ "symbol": "IEFAon",
+ "marketCap": "191069877912",
+ "price": "103.705170809433201477",
+ "priceChange24hPercent": "2.45",
+ "volume24h": "562851547.16",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x918008c3d29496c37b478b611967beaca365af36",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x43d0b380c33cd004a6a69abd61843881a2de4113",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x43d0b380c33cd004a6a69abd61843881a2de4113-1760923365671.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x43d0b380c33cd004a6a69abd61843881a2de4113-1760923365671.png"
+ ],
+ "name": "Shopify (Ondo Tokenized)",
+ "symbol": "SHOPon",
+ "marketCap": "188276717956",
+ "price": "143.536364",
+ "priceChange24hPercent": "-1.23",
+ "volume24h": "1001972823.39",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "Shopify",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x43d0b380c33cd004a6a69abd61843881a2de4113",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x7af44d51d1fb88c5b74fc71d3cba649bb8099d14",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x7af44d51d1fb88c5b74fc71d3cba649bb8099d14-1760922282064.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x7af44d51d1fb88c5b74fc71d3cba649bb8099d14-1760922282064.png"
+ ],
+ "name": "Accenture (Ondo Tokenized)",
+ "symbol": "ACNon",
+ "marketCap": "114261830592",
+ "price": "190.128369050462170162",
+ "priceChange24hPercent": "-1.11",
+ "volume24h": "906653876.64",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "埃森哲",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x7af44d51d1fb88c5b74fc71d3cba649bb8099d14",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x400f1e257f86d25578a0928c94dc95115f09d5c9",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x400f1e257f86d25578a0928c94dc95115f09d5c9-1760923313303.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x400f1e257f86d25578a0928c94dc95115f09d5c9-1760923313303.png"
+ ],
+ "name": "Procter & Gamble (Ondo Tokenized)",
+ "symbol": "PGon",
+ "marketCap": "348094704645",
+ "price": "149.056417400228133746",
+ "priceChange24hPercent": "-0.73",
+ "volume24h": "812032397.19",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "宝洁",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x400f1e257f86d25578a0928c94dc95115f09d5c9",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x374d03a6c0d5bd4be0a5117ebe1b49d52ac8a53f",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x374d03a6c0d5bd4be0a5117ebe1b49d52ac8a53f-1760923323445.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x374d03a6c0d5bd4be0a5117ebe1b49d52ac8a53f-1760923323445.png"
+ ],
+ "name": "PayPal (Ondo Tokenized)",
+ "symbol": "PYPLon",
+ "marketCap": "47016136560",
+ "price": "55.089444788561474573",
+ "priceChange24hPercent": "-0.45",
+ "volume24h": "716925445.2",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "贝宝",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x374d03a6c0d5bd4be0a5117ebe1b49d52ac8a53f",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xd3113a0ad20a46f6a662c63fe8e637f7713e59c7",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xd3113a0ad20a46f6a662c63fe8e637f7713e59c7-1760923043289.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xd3113a0ad20a46f6a662c63fe8e637f7713e59c7-1760923043289.png"
+ ],
+ "name": "Chevron (Ondo Tokenized)",
+ "symbol": "CVXon",
+ "marketCap": "415308348000",
+ "price": "214.127850846968341467",
+ "priceChange24hPercent": "-0.1",
+ "volume24h": "1122138299.52",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "雪佛龙",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0xd3113a0ad20a46f6a662c63fe8e637f7713e59c7",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x08ce97f3d5cf11e577d091ab048bc5e2eae3fabb",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x08ce97f3d5cf11e577d091ab048bc5e2eae3fabb-1760922826243.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x08ce97f3d5cf11e577d091ab048bc5e2eae3fabb-1760922826243.png"
+ ],
+ "name": "iShares Core US Aggregate Bond ETF (Ondo Tokenized)",
+ "symbol": "AGGon",
+ "marketCap": "136630691995",
+ "price": "100.726707821448173787",
+ "priceChange24hPercent": "-0.05",
+ "volume24h": "757482021",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x08ce97f3d5cf11e577d091ab048bc5e2eae3fabb",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x94d7754541b829a87321d56121bc544167ac490d",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x94d7754541b829a87321d56121bc544167ac490d-1760923360145.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x94d7754541b829a87321d56121bc544167ac490d-1760923360145.png"
+ ],
+ "name": "Starbucks (Ondo Tokenized)",
+ "symbol": "SBUXon",
+ "marketCap": "119095800000",
+ "price": "105.675635276984189824",
+ "priceChange24hPercent": "-0.61",
+ "volume24h": "481009967.36",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "星巴克",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x94d7754541b829a87321d56121bc544167ac490d",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x94174e3d1335db402dd03a092f7aa7ac2cb32be4",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x94174e3d1335db402dd03a092f7aa7ac2cb32be4-1768292465946.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x94174e3d1335db402dd03a092f7aa7ac2cb32be4-1768292465946.png"
+ ],
+ "name": "United States Oil Fund (Ondo Tokenized)",
+ "symbol": "USOon",
+ "marketCap": "16907435006",
+ "price": "144.2375",
+ "priceChange24hPercent": "1.61",
+ "volume24h": "523317653.04",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "原油ETF",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x94174e3d1335db402dd03a092f7aa7ac2cb32be4",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xf99f8f3a95257d82006183bd524efa7aacc9ef7a",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xf99f8f3a95257d82006183bd524efa7aacc9ef7a-1760923302585.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xf99f8f3a95257d82006183bd524efa7aacc9ef7a-1760923302585.png"
+ ],
+ "name": "PepsiCo (Ondo Tokenized)",
+ "symbol": "PEPon",
+ "marketCap": "188002580000",
+ "price": "141.975016844879616381",
+ "priceChange24hPercent": "-0.41",
+ "volume24h": "845805577.89",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "百事",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0xf99f8f3a95257d82006183bd524efa7aacc9ef7a",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xf69e40069ac227c11459e3f4e8a446b3401616b6",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xf69e40069ac227c11459e3f4e8a446b3401616b6-1760923398719.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xf69e40069ac227c11459e3f4e8a446b3401616b6-1760923398719.png"
+ ],
+ "name": "iShares 20+ Year Treasury Bond ETF (Ondo Tokenized)",
+ "symbol": "TLTon",
+ "marketCap": "41558996997",
+ "price": "85.978427962124070646",
+ "priceChange24hPercent": "0.16",
+ "volume24h": "1364023798.4499998",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "20年国债ETF",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0xf69e40069ac227c11459e3f4e8a446b3401616b6",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x93fac02b22b6743423381d163aec418178019b7a",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x93fac02b22b6743423381d163aec418178019b7a-1760923074552.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x93fac02b22b6743423381d163aec418178019b7a-1760923074552.png"
+ ],
+ "name": "Figma (Ondo Tokenized)",
+ "symbol": "FIGon",
+ "price": "-",
+ "priceChange24hPercent": "-",
+ "communityRecognized": false,
+ "key": "evm--56:0x93fac02b22b6743423381d163aec418178019b7a",
+ "kind": "token",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x99e01f02d66455bb106d91d469c9eaf6ab4904f6",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x99e01f02d66455bb106d91d469c9eaf6ab4904f6-1760923354737.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x99e01f02d66455bb106d91d469c9eaf6ab4904f6-1760923354737.png"
+ ],
+ "name": "Sharplink Gaming (Ondo Tokenized)",
+ "symbol": "SBETon",
+ "marketCap": "1711340120",
+ "price": "8.798824",
+ "priceChange24hPercent": "1.6",
+ "volume24h": "54330194.519999996",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "SharpLink博彩",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x99e01f02d66455bb106d91d469c9eaf6ab4904f6",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x52ad57a7ea642e99a892afc79e937b383f1b59e9",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x52ad57a7ea642e99a892afc79e937b383f1b59e9-1768032941245.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x52ad57a7ea642e99a892afc79e937b383f1b59e9-1768032941245.png"
+ ],
+ "name": "BitMine Immersion Technologies (Ondo Tokenized)",
+ "symbol": "BMNRon",
+ "marketCap": "14222332846",
+ "price": "25.220087",
+ "priceChange24hPercent": "0.99",
+ "volume24h": "1155029873.9099998",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "BitMine",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x52ad57a7ea642e99a892afc79e937b383f1b59e9",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xd04a2bb053277721a8321d7441eed5b42fdf7250",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xd04a2bb053277721a8321d7441eed5b42fdf7250-1761705848977.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xd04a2bb053277721a8321d7441eed5b42fdf7250-1761705848977.png"
+ ],
+ "name": "Salesforce (Ondo Tokenized)",
+ "symbol": "CRMon",
+ "marketCap": "212309370000",
+ "price": "257.487920522776546585",
+ "priceChange24hPercent": "-1.21",
+ "volume24h": "2679425388.3900003",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "赛富时",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0xd04a2bb053277721a8321d7441eed5b42fdf7250",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x4da12f47578ef89c76179b760c778e70b668f80b",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x4da12f47578ef89c76179b760c778e70b668f80b-1760923344446.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x4da12f47578ef89c76179b760c778e70b668f80b-1760923344446.png"
+ ],
+ "name": "Reddit (Ondo Tokenized)",
+ "symbol": "RDDTon",
+ "marketCap": "29734946936",
+ "price": "154.419048",
+ "priceChange24hPercent": "0.05",
+ "volume24h": "429786803.52000004",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "红迪",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x4da12f47578ef89c76179b760c778e70b668f80b",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x6e3e077a6c0e3c27fd6d00b97387d9b7bd451bab",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x6e3e077a6c0e3c27fd6d00b97387d9b7bd451bab-1760923154598.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x6e3e077a6c0e3c27fd6d00b97387d9b7bd451bab-1760923154598.png"
+ ],
+ "name": "Intuit (Ondo Tokenized)",
+ "symbol": "INTUon",
+ "marketCap": "91005759900",
+ "price": "332.51646606263590823",
+ "priceChange24hPercent": "-0.75",
+ "volume24h": "1177837182.6",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x6e3e077a6c0e3c27fd6d00b97387d9b7bd451bab",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xeb19c13c54b1cd48afc62f6503375e92d5f1e856",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xeb19c13c54b1cd48afc62f6503375e92d5f1e856-1760923271194.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xeb19c13c54b1cd48afc62f6503375e92d5f1e856-1760923271194.png"
+ ],
+ "name": "ServiceNow (Ondo Tokenized)",
+ "symbol": "NOWon",
+ "marketCap": "146043346120",
+ "price": "699.30488",
+ "priceChange24hPercent": "-1.05",
+ "volume24h": "1736762600.4399998",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "ServiceNow",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0xeb19c13c54b1cd48afc62f6503375e92d5f1e856",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x138ed6833ff4e8811e1fea0d005e13726c8886f9",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x138ed6833ff4e8811e1fea0d005e13726c8886f9-1760923381351.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x138ed6833ff4e8811e1fea0d005e13726c8886f9-1760923381351.png"
+ ],
+ "name": "Snowflake (Ondo Tokenized)",
+ "symbol": "SNOWon",
+ "marketCap": "116866588000",
+ "price": "337.2775",
+ "priceChange24hPercent": "-0.25",
+ "volume24h": "2842981049.56",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "雪花",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x138ed6833ff4e8811e1fea0d005e13726c8886f9",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xa528caaa2f96090e379d43f90834c75df54d6e74",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xa528caaa2f96090e379d43f90834c75df54d6e74-1760923148597.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xa528caaa2f96090e379d43f90834c75df54d6e74-1760923148597.png"
+ ],
+ "name": "Intel (Ondo Tokenized)",
+ "symbol": "INTCon",
+ "marketCap": "483215175763",
+ "price": "100.597692",
+ "priceChange24hPercent": "1.6",
+ "volume24h": "9355284335",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "英特尔",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0xa528caaa2f96090e379d43f90834c75df54d6e74",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xc142ba8ccd36d80c3a001342fb83e4c3d218a873",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xc142ba8ccd36d80c3a001342fb83e4c3d218a873-1760923376180.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xc142ba8ccd36d80c3a001342fb83e4c3d218a873-1760923376180.png"
+ ],
+ "name": "Super Micro Computer (Ondo Tokenized)",
+ "symbol": "SMCIon",
+ "marketCap": "25609702070",
+ "price": "40.042662",
+ "priceChange24hPercent": "1.47",
+ "volume24h": "2123337279.4800003",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "超微电脑",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0xc142ba8ccd36d80c3a001342fb83e4c3d218a873",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x274b0cb6db9473245a31cdea9b789786f4108e4b",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x274b0cb6db9473245a31cdea9b789786f4108e4b-1768464730010.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x274b0cb6db9473245a31cdea9b789786f4108e4b-1768464730010.png"
+ ],
+ "name": "Caterpillar (Ondo Tokenized)",
+ "symbol": "CATon",
+ "marketCap": "374930879780",
+ "price": "824.840862789310440651",
+ "priceChange24hPercent": "0.98",
+ "volume24h": "1620957440.3000002",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "卡特彼勒",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x274b0cb6db9473245a31cdea9b789786f4108e4b",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x5ecc352c4640f1d26bd231dbbd171f40f7d0eec6",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x5ecc352c4640f1d26bd231dbbd171f40f7d0eec6-1767888045927.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x5ecc352c4640f1d26bd231dbbd171f40f7d0eec6-1767888045927.png"
+ ],
+ "name": "Applied Materials (Ondo Tokenized)",
+ "symbol": "AMATon",
+ "marketCap": "361021096890",
+ "price": "468.39278701627463619",
+ "priceChange24hPercent": "2.68",
+ "volume24h": "2735913224.0099998",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "应用材料",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x5ecc352c4640f1d26bd231dbbd171f40f7d0eec6",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xd7df5863a3e742f0c767768cdfcb63f09e0422f6",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xd7df5863a3e742f0c767768cdfcb63f09e0422f6-1760923233924.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xd7df5863a3e742f0c767768cdfcb63f09e0422f6-1760923233924.png"
+ ],
+ "name": "Meta Platforms (Ondo Tokenized)",
+ "symbol": "METAon",
+ "marketCap": "1571213291779",
+ "price": "614.555295144030774555",
+ "priceChange24hPercent": "-0.02",
+ "volume24h": "9847481192.01",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "Meta",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0xd7df5863a3e742f0c767768cdfcb63f09e0422f6",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x4693f6f5ef257381a28afd0673e64d8b32d5c6ad",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x4693f6f5ef257381a28afd0673e64d8b32d5c6ad-1760923111457.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x4693f6f5ef257381a28afd0673e64d8b32d5c6ad-1760923111457.png"
+ ],
+ "name": "Hims & Hers Health (Ondo Tokenized)",
+ "symbol": "HIMSon",
+ "marketCap": "6181546800",
+ "price": "27.746",
+ "priceChange24hPercent": "-0.21",
+ "volume24h": "182854493.73000002",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "Hims & Hers",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x4693f6f5ef257381a28afd0673e64d8b32d5c6ad",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xb034f6cb52b7f2fd5a7eeeffca6b9adcd6b9a6f6",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xb034f6cb52b7f2fd5a7eeeffca6b9adcd6b9a6f6-1760922980249.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xb034f6cb52b7f2fd5a7eeeffca6b9adcd6b9a6f6-1760922980249.png"
+ ],
+ "name": "ASML Holding NV (Ondo Tokenized)",
+ "symbol": "ASMLon",
+ "marketCap": "660945604406",
+ "price": "1758.414946497724440837",
+ "priceChange24hPercent": "2.21",
+ "volume24h": "2211546975.36",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "阿斯麦",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0xb034f6cb52b7f2fd5a7eeeffca6b9adcd6b9a6f6",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x8fd70ee385f470c8d6fda2d93a4e49c849bac6a6",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x8fd70ee385f470c8d6fda2d93a4e49c849bac6a6-1767883597793.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x8fd70ee385f470c8d6fda2d93a4e49c849bac6a6-1767883597793.png"
+ ],
+ "name": "IREN (Ondo Tokenized)",
+ "symbol": "IRENon",
+ "marketCap": "15944391045",
+ "price": "45.389089",
+ "priceChange24hPercent": "2.29",
+ "volume24h": "1620373503.24",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "IREN",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x8fd70ee385f470c8d6fda2d93a4e49c849bac6a6",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xf3e82ea164cb344b2b11bad4c24b0ea4f7ba4714",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xf3e82ea164cb344b2b11bad4c24b0ea4f7ba4714-1767945976873.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xf3e82ea164cb344b2b11bad4c24b0ea4f7ba4714-1767945976873.png"
+ ],
+ "name": "PDD Holdings (Ondo Tokenized)",
+ "symbol": "PDDon",
+ "marketCap": "117017422072",
+ "price": "81.560326",
+ "priceChange24hPercent": "-0.94",
+ "volume24h": "382935002.09999996",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "拼多多",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0xf3e82ea164cb344b2b11bad4c24b0ea4f7ba4714",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x3fcd741646a9790635b938cdb69af5df356cbaab",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x3fcd741646a9790635b938cdb69af5df356cbaab-1768118974994.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x3fcd741646a9790635b938cdb69af5df356cbaab-1768118974994.png"
+ ],
+ "name": "abrdn Physical Palladium Shares ETF (Ondo Tokenized)",
+ "symbol": "PALLon",
+ "marketCap": "662462421",
+ "price": "127.025",
+ "priceChange24hPercent": "1.16",
+ "volume24h": "18618111.93",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "钯金ETF",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x3fcd741646a9790635b938cdb69af5df356cbaab",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x5acf40056ed51c8bbcd1b125ef803581ac89a627",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x5acf40056ed51c8bbcd1b125ef803581ac89a627-1760923085045.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x5acf40056ed51c8bbcd1b125ef803581ac89a627-1760923085045.png"
+ ],
+ "name": "Futu Holdings (Ondo Tokenized)",
+ "symbol": "FUTUon",
+ "marketCap": "16991222660",
+ "price": "123.422764240887776543",
+ "priceChange24hPercent": "-0.25",
+ "volume24h": "88127276.5",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "富途控股",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x5acf40056ed51c8bbcd1b125ef803581ac89a627",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xd226d8170ee38793430c7dec6903df4b818bb74c",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xd226d8170ee38793430c7dec6903df4b818bb74c-1760923212125.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xd226d8170ee38793430c7dec6903df4b818bb74c-1760923212125.png"
+ ],
+ "name": "MARA Holdings (Ondo Tokenized)",
+ "symbol": "MARAon",
+ "price": "-",
+ "priceChange24hPercent": "-",
+ "communityRecognized": false,
+ "key": "evm--56:0xd226d8170ee38793430c7dec6903df4b818bb74c",
+ "kind": "token",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x08a513779f46ffb7a34f16094a94016d010128a8",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x08a513779f46ffb7a34f16094a94016d010128a8-1760923281600.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x08a513779f46ffb7a34f16094a94016d010128a8-1760923281600.png"
+ ],
+ "name": "Novo Nordisk (Ondo Tokenized)",
+ "symbol": "NVOon",
+ "marketCap": "206932361506",
+ "price": "47.900708616347068423",
+ "priceChange24hPercent": "--",
+ "volume24h": "285153974.40000004",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "诺和诺德",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x08a513779f46ffb7a34f16094a94016d010128a8",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x22092c94a91d019ad15536725598b0a6be0a73c0",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x22092c94a91d019ad15536725598b0a6be0a73c0-1760923137786.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x22092c94a91d019ad15536725598b0a6be0a73c0-1760923137786.png"
+ ],
+ "name": "iShares Core MSCI Emerging Markets ETF (Ondo Tokenized)",
+ "symbol": "IEMGon",
+ "marketCap": "171167801924",
+ "price": "85.994643507231392039",
+ "priceChange24hPercent": "0.89",
+ "volume24h": "577001471.9000001",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "核心新兴市场ETF",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x22092c94a91d019ad15536725598b0a6be0a73c0",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x995add4ba29a628a57930a8a185c62ca044ec090",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x995add4ba29a628a57930a8a185c62ca044ec090-1760923223388.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x995add4ba29a628a57930a8a185c62ca044ec090-1760923223388.png"
+ ],
+ "name": "McDonald's (Ondo Tokenized)",
+ "symbol": "MCDon",
+ "marketCap": "181669279140",
+ "price": "261.414735153891492023",
+ "priceChange24hPercent": "-0.12",
+ "volume24h": "1069340837.13",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "麦当劳",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x995add4ba29a628a57930a8a185c62ca044ec090",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x1cde419fae0ef7f7931ae3e29e5f411c8c5e5fa1",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x1cde419fae0ef7f7931ae3e29e5f411c8c5e5fa1-1760923609945.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x1cde419fae0ef7f7931ae3e29e5f411c8c5e5fa1-1760923609945.png"
+ ],
+ "name": "Visa (Ondo Tokenized)",
+ "symbol": "Von",
+ "marketCap": "700273397430",
+ "price": "374.009002377026934042",
+ "priceChange24hPercent": "-0.75",
+ "volume24h": "1730302929.6",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "维萨",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x1cde419fae0ef7f7931ae3e29e5f411c8c5e5fa1",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x1501ec83ffef405b4331cc4f73277a40fb0c627d",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x1501ec83ffef405b4331cc4f73277a40fb0c627d-1760923239312.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x1501ec83ffef405b4331cc4f73277a40fb0c627d-1760923239312.png"
+ ],
+ "name": "Marvell Technology (Ondo Tokenized)",
+ "symbol": "MRVLon",
+ "marketCap": "195777489300",
+ "price": "229.524776103399458333",
+ "priceChange24hPercent": "2.41",
+ "volume24h": "4743302231.1",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "迈威尔科技",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x1501ec83ffef405b4331cc4f73277a40fb0c627d",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x527c6436e1eaa4f2065cde4090f798cb5d031dd6",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x527c6436e1eaa4f2065cde4090f798cb5d031dd6-1760922974777.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x527c6436e1eaa4f2065cde4090f798cb5d031dd6-1760922974777.png"
+ ],
+ "name": "Arm Holdings plc (Ondo Tokenized)",
+ "symbol": "ARMon",
+ "marketCap": "269231759259",
+ "price": "261.0225",
+ "priceChange24hPercent": "2.2",
+ "volume24h": "1041739741.08",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "安谋",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x527c6436e1eaa4f2065cde4090f798cb5d031dd6",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x0d4f9b25f81163fb4840ba4f434672543823000c",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x0d4f9b25f81163fb4840ba4f434672543823000c-1760923106279.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x0d4f9b25f81163fb4840ba4f434672543823000c-1760923106279.png"
+ ],
+ "name": "Goldman Sachs (Ondo Tokenized)",
+ "symbol": "GSon",
+ "marketCap": "306397220270",
+ "price": "1047.374865547024001893",
+ "priceChange24hPercent": "-0.4",
+ "volume24h": "1483473666.86",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "高盛",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x0d4f9b25f81163fb4840ba4f434672543823000c",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x60a8f8e05200ff73afde9e2cae819bf1605f0bdd",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x60a8f8e05200ff73afde9e2cae819bf1605f0bdd-1760923228476.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x60a8f8e05200ff73afde9e2cae819bf1605f0bdd-1760923228476.png"
+ ],
+ "name": "MercadoLibre (Ondo Tokenized)",
+ "symbol": "MELIon",
+ "marketCap": "100297276982",
+ "price": "1967",
+ "priceChange24hPercent": "-0.43",
+ "volume24h": "557770904.9599999",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "美客多",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x60a8f8e05200ff73afde9e2cae819bf1605f0bdd",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x467e59ce5d5fe01686d4a80dd1e1dae13549aa6c",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x467e59ce5d5fe01686d4a80dd1e1dae13549aa6c-1760515402441.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x467e59ce5d5fe01686d4a80dd1e1dae13549aa6c-1760515402441.png"
+ ],
+ "name": "Baidu (Ondo Tokenized)",
+ "symbol": "BIDUon",
+ "marketCap": "33832211369",
+ "price": "92.292027",
+ "priceChange24hPercent": "-7.17",
+ "volume24h": "256503090.06",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "百度",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x467e59ce5d5fe01686d4a80dd1e1dae13549aa6c",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xc4a88a72b848255fd24da3c1ad6755d980535fb1",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xc4a88a72b848255fd24da3c1ad6755d980535fb1-1760923349554.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xc4a88a72b848255fd24da3c1ad6755d980535fb1-1760923349554.png"
+ ],
+ "name": "Riot Platforms (Ondo Tokenized)",
+ "symbol": "RIOTon",
+ "marketCap": "8243696814",
+ "price": "21.664",
+ "priceChange24hPercent": "-0.09",
+ "volume24h": "335036003.2",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "Riot平台",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0xc4a88a72b848255fd24da3c1ad6755d980535fb1",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x0eaa1a75bd682a5669ab2371a559fbd039c6b9eb",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x0eaa1a75bd682a5669ab2371a559fbd039c6b9eb-1760923292006.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x0eaa1a75bd682a5669ab2371a559fbd039c6b9eb-1760923292006.png"
+ ],
+ "name": "Palo Alto Networks (Ondo Tokenized)",
+ "symbol": "PANWon",
+ "marketCap": "271606900000",
+ "price": "333.65",
+ "priceChange24hPercent": "0.1",
+ "volume24h": "1879381111.84",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "帕洛阿尔托网络",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x0eaa1a75bd682a5669ab2371a559fbd039c6b9eb",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x4d209d275e3492ac08497a7a42915899c4dd5e86",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x4d209d275e3492ac08497a7a42915899c4dd5e86-1768378192726.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x4d209d275e3492ac08497a7a42915899c4dd5e86-1768378192726.png"
+ ],
+ "name": "Exxon Mobil (Ondo Tokenized)",
+ "symbol": "XOMon",
+ "marketCap": "660875591600",
+ "price": "161.929674995637777397",
+ "priceChange24hPercent": "0.06",
+ "volume24h": "2537206808.78",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "埃克森美孚",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x4d209d275e3492ac08497a7a42915899c4dd5e86",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x68b07cef227cea1b2b6683921c8c825cd5c69ec7",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x68b07cef227cea1b2b6683921c8c825cd5c69ec7-1773890434386.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x68b07cef227cea1b2b6683921c8c825cd5c69ec7-1773890434386.png"
+ ],
+ "name": "iShares Bitcoin Trust (Ondo Tokenized)",
+ "symbol": "IBITON",
+ "marketCap": "75421432839",
+ "price": "44.648189",
+ "priceChange24hPercent": "-1.02",
+ "volume24h": "2361768351.6499996",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "贝莱德比特币ETF",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x68b07cef227cea1b2b6683921c8c825cd5c69ec7",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x1104eb7e85e25eb45f88e638b0c27a06c1a91cb2",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x1104eb7e85e25eb45f88e638b0c27a06c1a91cb2-1760923159261.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x1104eb7e85e25eb45f88e638b0c27a06c1a91cb2-1760923159261.png"
+ ],
+ "name": "iShares Core S&P 500 ETF (Ondo Tokenized ETF)",
+ "symbol": "IVVON",
+ "marketCap": "896778097376",
+ "price": "780.425487329284924111",
+ "priceChange24hPercent": "0.05",
+ "volume24h": "7974410540.32",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "安硕标普500",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x1104eb7e85e25eb45f88e638b0c27a06c1a91cb2",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xcf9caf83053213c44dd7027db3e1e4ac98e55f8f",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xcf9caf83053213c44dd7027db3e1e4ac98e55f8f-1760976491888.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xcf9caf83053213c44dd7027db3e1e4ac98e55f8f-1760976491888.png"
+ ],
+ "name": "iShares Core S&P Total US Stock Market ETF (Ondo Tokenized ETF)",
+ "symbol": "ITOTON",
+ "marketCap": "95625104840",
+ "price": "169.804819587832307416",
+ "priceChange24hPercent": "--",
+ "volume24h": "169106458.23999998",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "美股全市场ETF",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0xcf9caf83053213c44dd7027db3e1e4ac98e55f8f",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x2ac26ec236df5d1d2ad1a6dd4e448a90e45dc35d",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x2ac26ec236df5d1d2ad1a6dd4e448a90e45dc35d-1760923397223.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x2ac26ec236df5d1d2ad1a6dd4e448a90e45dc35d-1760923397223.png"
+ ],
+ "name": "iShares TIPS Bond ETF (Ondo Tokenized ETF)",
+ "symbol": "TIPON",
+ "marketCap": "14720410837",
+ "price": "111.376087623270475341",
+ "priceChange24hPercent": "0.03",
+ "volume24h": "108138754.22",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x2ac26ec236df5d1d2ad1a6dd4e448a90e45dc35d",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x38b9a53bfdc5dba58a29bd6992341927c2fca637",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x38b9a53bfdc5dba58a29bd6992341927c2fca637-1760923069433.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x38b9a53bfdc5dba58a29bd6992341927c2fca637-1760923069433.png"
+ ],
+ "name": "iShares MSCI EAFE ETF (Ondo Tokenized ETF)",
+ "symbol": "EFAON",
+ "marketCap": "78896005005",
+ "price": "110.898588433796849651",
+ "priceChange24hPercent": "0.16",
+ "volume24h": "613264467.1999999",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x38b9a53bfdc5dba58a29bd6992341927c2fca637",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x40755f06ab7f8de1ab3a9413b1ef562d63de19b1",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x40755f06ab7f8de1ab3a9413b1ef562d63de19b1-1760923164409.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x40755f06ab7f8de1ab3a9413b1ef562d63de19b1-1760923164409.png"
+ ],
+ "name": "iShares Russell 1000 Growth ETF (Ondo Tokenized ETF)",
+ "symbol": "IWFON",
+ "marketCap": "134439059389",
+ "price": "494.964782503527050629",
+ "priceChange24hPercent": "0.25",
+ "volume24h": "387028445.78999996",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x40755f06ab7f8de1ab3a9413b1ef562d63de19b1",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x00c81d35eddf44c75d4db9e07bdcdc236eb0ebcf",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x00c81d35eddf44c75d4db9e07bdcdc236eb0ebcf-1760923060271.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x00c81d35eddf44c75d4db9e07bdcdc236eb0ebcf-1760923060271.png"
+ ],
+ "name": "iShares MSCI Emerging Markets ETF (Ondo Tokenized ETF)",
+ "symbol": "EEMON",
+ "marketCap": "32146260773",
+ "price": "70.550489448583953469",
+ "priceChange24hPercent": "1.26",
+ "volume24h": "1506651730.8",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "新兴市场ETF",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x00c81d35eddf44c75d4db9e07bdcdc236eb0ebcf",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x01b5a4ac600be98448dbefbb78bcdf38262552cc",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x01b5a4ac600be98448dbefbb78bcdf38262552cc-1768118550219.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x01b5a4ac600be98448dbefbb78bcdf38262552cc-1768118550219.png"
+ ],
+ "name": "Occidental Petroleum (Ondo Tokenized)",
+ "symbol": "OXYON",
+ "marketCap": "59717867448",
+ "price": "60.427368985063029401",
+ "priceChange24hPercent": "--",
+ "volume24h": "400488654.56",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "西方石油",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x01b5a4ac600be98448dbefbb78bcdf38262552cc",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xf54b94ea21e1da5d51ef00fd4502225e5394f874",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xf54b94ea21e1da5d51ef00fd4502225e5394f874-1760923174798.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xf54b94ea21e1da5d51ef00fd4502225e5394f874-1760923174798.png"
+ ],
+ "name": "iShares Russell 2000 Value ETF (Ondo Tokenized ETF)",
+ "symbol": "IWNON",
+ "marketCap": "14510541399",
+ "price": "226.016737142534794549",
+ "priceChange24hPercent": "-0.45",
+ "volume24h": "144788928.9",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0xf54b94ea21e1da5d51ef00fd4502225e5394f874",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x8a83c31d6751833b4940b6e871c48d9a15a07b46",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x8a83c31d6751833b4940b6e871c48d9a15a07b46-1760923307953.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x8a83c31d6751833b4940b6e871c48d9a15a07b46-1760923307953.png"
+ ],
+ "name": "Pfizer (Ondo Tokenized Stock)",
+ "symbol": "PFEON",
+ "marketCap": "162149068000",
+ "price": "30.045669965608379961",
+ "priceChange24hPercent": "-0.39",
+ "volume24h": "669415327.65",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "辉瑞",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x8a83c31d6751833b4940b6e871c48d9a15a07b46",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x500eafc69b68acd6f27064f9b75f1c7d91cc4d9f",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x500eafc69b68acd6f27064f9b75f1c7d91cc4d9f-1760923169588.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x500eafc69b68acd6f27064f9b75f1c7d91cc4d9f-1760923169588.png"
+ ],
+ "name": "iShares Russell 2000 ETF (Ondo Tokenized ETF)",
+ "symbol": "IWMON",
+ "marketCap": "81417408119",
+ "price": "297.748095366553568352",
+ "priceChange24hPercent": "0.02",
+ "volume24h": "4113713428.1099997",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "罗素2000 ETF",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x500eafc69b68acd6f27064f9b75f1c7d91cc4d9f",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xd85d4ce29b4ca361ff72ef0e53d6236e334c5db6",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xd85d4ce29b4ca361ff72ef0e53d6236e334c5db6-1768118835493.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xd85d4ce29b4ca361ff72ef0e53d6236e334c5db6-1768118835493.png"
+ ],
+ "name": "Ondas Holdings (Ondo Tokenized)",
+ "symbol": "ONDSON",
+ "price": "-",
+ "priceChange24hPercent": "-",
+ "communityRecognized": false,
+ "key": "evm--56:0xd85d4ce29b4ca361ff72ef0e53d6236e334c5db6",
+ "kind": "token",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x167e93a849a0cc479769132552b99aa1cfa0948c",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x167e93a849a0cc479769132552b99aa1cfa0948c-1760923143055.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x167e93a849a0cc479769132552b99aa1cfa0948c-1760923143055.png"
+ ],
+ "name": "iShares Core S&P MidCap ETF (Ondo Tokenized ETF)",
+ "symbol": "IJHON",
+ "marketCap": "123402837938",
+ "price": "76.53881613572147098",
+ "priceChange24hPercent": "0.14",
+ "volume24h": "360950049.75",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x167e93a849a0cc479769132552b99aa1cfa0948c",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xa7d1e886acf66ec0656df2decb4b7c893a3bab4c",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xa7d1e886acf66ec0656df2decb4b7c893a3bab4c-1760923620884.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xa7d1e886acf66ec0656df2decb4b7c893a3bab4c-1760923620884.png"
+ ],
+ "name": "Walmart (Ondo Tokenized Stock)",
+ "symbol": "WMTON",
+ "marketCap": "852628691200",
+ "price": "107.242391409320952249",
+ "priceChange24hPercent": "-0.47",
+ "volume24h": "2200706170.08",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "沃尔玛",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0xa7d1e886acf66ec0656df2decb4b7c893a3bab4c",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x2b1d5cdecc356530a746c5754231efaeaca64022",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x2b1d5cdecc356530a746c5754231efaeaca64022-1760923297458.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x2b1d5cdecc356530a746c5754231efaeaca64022-1760923297458.png"
+ ],
+ "name": "Petrobras (Ondo Tokenized Stock)",
+ "symbol": "PBRON",
+ "marketCap": "129660646415",
+ "price": "20.856197511015279798",
+ "priceChange24hPercent": "-0.22",
+ "volume24h": "377829496.24",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "巴西石油",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x2b1d5cdecc356530a746c5754231efaeaca64022",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xecc1299f183b6a720a6f4729bf24f82cd8d50828",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xecc1299f183b6a720a6f4729bf24f82cd8d50828-1760923402510.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xecc1299f183b6a720a6f4729bf24f82cd8d50828-1760923402510.png"
+ ],
+ "name": "Toyota (Ondo Tokenized Stock)",
+ "symbol": "TMON",
+ "marketCap": "233414630448",
+ "price": "197.584090494197418125",
+ "priceChange24hPercent": "1.15",
+ "volume24h": "64367650.27",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "丰田",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0xecc1299f183b6a720a6f4729bf24f82cd8d50828",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x24f5471183ea549987f245d6ce236b6108869c92",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x24f5471183ea549987f245d6ce236b6108869c92-1760923012085.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x24f5471183ea549987f245d6ce236b6108869c92-1760923012085.png"
+ ],
+ "name": "Blackrock, Inc. (Ondo Tokenized Stock)",
+ "symbol": "BLKON",
+ "marketCap": "173949338550",
+ "price": "1132.730600298929983859",
+ "priceChange24hPercent": "-0.52",
+ "volume24h": "460986228.95",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "贝莱德",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x24f5471183ea549987f245d6ce236b6108869c92",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xe8ff70859ce4cbd72e4352b4fb45f5bf39d07464",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xe8ff70859ce4cbd72e4352b4fb45f5bf39d07464-1760923127124.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xe8ff70859ce4cbd72e4352b4fb45f5bf39d07464-1760923127124.png"
+ ],
+ "name": "IBM (Ondo Tokenized Stock)",
+ "symbol": "IBMON",
+ "marketCap": "221297855260",
+ "price": "239.939607742091185163",
+ "priceChange24hPercent": "-0.04",
+ "volume24h": "717698173.8499999",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "国际商业机器",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0xe8ff70859ce4cbd72e4352b4fb45f5bf39d07464",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x4fd67cb8cfedc718bac984b5936abe3330d0a2a4",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x4fd67cb8cfedc718bac984b5936abe3330d0a2a4-1773890603767.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x4fd67cb8cfedc718bac984b5936abe3330d0a2a4-1773890603767.png"
+ ],
+ "name": "SanDisk (Ondo Tokenized)",
+ "symbol": "SNDKON",
+ "marketCap": "257676165000",
+ "price": "1813.141716",
+ "priceChange24hPercent": "1.53",
+ "volume24h": "28809122580",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "闪迪",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x4fd67cb8cfedc718bac984b5936abe3330d0a2a4",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xe4e12c9cec3e8cae405202a97f66afa695075fa0",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xe4e12c9cec3e8cae405202a97f66afa695075fa0-1760923070917.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xe4e12c9cec3e8cae405202a97f66afa695075fa0-1760923070917.png"
+ ],
+ "name": "Equinix (Ondo Tokenized Stock)",
+ "symbol": "EQIXON",
+ "marketCap": "102221893262",
+ "price": "1034.973342393173569538",
+ "priceChange24hPercent": "-1.63",
+ "volume24h": "357010103.78000003",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0xe4e12c9cec3e8cae405202a97f66afa695075fa0",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x5151a22421ed4277f1e4ca4785a07b035d548a36",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x5151a22421ed4277f1e4ca4785a07b035d548a36-1760923090436.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x5151a22421ed4277f1e4ca4785a07b035d548a36-1760923090436.png"
+ ],
+ "name": "General Electric (Ondo Tokenized Stock)",
+ "symbol": "GEON",
+ "marketCap": "349783074383",
+ "price": "337.589114914645847783",
+ "priceChange24hPercent": "-0.19",
+ "volume24h": "825014560.16",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "通用电气",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x5151a22421ed4277f1e4ca4785a07b035d548a36",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xf21132a811ad1a878e21af60f64d4e690c9daa42",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xf21132a811ad1a878e21af60f64d4e690c9daa42-1761748250710.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xf21132a811ad1a878e21af60f64d4e690c9daa42-1761748250710.png"
+ ],
+ "name": "Boeing (Ondo Tokenized Stock)",
+ "symbol": "BAON",
+ "price": "-",
+ "priceChange24hPercent": "-",
+ "communityRecognized": false,
+ "key": "evm--56:0xf21132a811ad1a878e21af60f64d4e690c9daa42",
+ "kind": "token",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x12b7adc48416a103f63e7e6210f62c81dfb91fd0",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x12b7adc48416a103f63e7e6210f62c81dfb91fd0-1773890376568.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x12b7adc48416a103f63e7e6210f62c81dfb91fd0-1773890376568.png"
+ ],
+ "name": "iShares MSCI South Korea ETF (Ondo Tokenized)",
+ "symbol": "EWYON",
+ "marketCap": "14278571056",
+ "price": "194.898272",
+ "priceChange24hPercent": "3.95",
+ "volume24h": "3455448231.73",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "iShares MSCI韩国ETF",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x12b7adc48416a103f63e7e6210f62c81dfb91fd0",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x34375f826fd3dd4e15f883d4f4786bb45eb705ac",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x34375f826fd3dd4e15f883d4f4786bb45eb705ac-1761313247216.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x34375f826fd3dd4e15f883d4f4786bb45eb705ac-1761313247216.png"
+ ],
+ "name": "Costco (Ondo Tokenized Stock)",
+ "symbol": "COSTON",
+ "marketCap": "406111459460",
+ "price": "918.726163055351801392",
+ "priceChange24hPercent": "-0.23",
+ "volume24h": "1903887561.8",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "开市客",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x34375f826fd3dd4e15f883d4f4786bb45eb705ac",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x629520dee1620def11596f84e85de9f1ff653012",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x629520dee1620def11596f84e85de9f1ff653012-1760923615610.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x629520dee1620def11596f84e85de9f1ff653012-1760923615610.png"
+ ],
+ "name": "Wells Fargo (Ondo Tokenized Stock)",
+ "symbol": "WFCON",
+ "marketCap": "272039040000",
+ "price": "90.828327345333623842",
+ "priceChange24hPercent": "-0.85",
+ "volume24h": "712161682.9599999",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "富国银行",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x629520dee1620def11596f84e85de9f1ff653012",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xef80743f78d98fc2b47a2253b293152ce8b879ba",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xef80743f78d98fc2b47a2253b293152ce8b879ba-1760922268573.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xef80743f78d98fc2b47a2253b293152ce8b879ba-1760922268573.png"
+ ],
+ "name": "Airbnb (Ondo Tokenized Stock)",
+ "symbol": "ABNBON",
+ "marketCap": "107983869660",
+ "price": "181.313333",
+ "priceChange24hPercent": "-0.66",
+ "volume24h": "620194706.78",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "爱彼迎",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0xef80743f78d98fc2b47a2253b293152ce8b879ba",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xfbd4d681c92ead6af0e49950c8b2e47eeacbb2db",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xfbd4d681c92ead6af0e49950c8b2e47eeacbb2db-1760923334398.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xfbd4d681c92ead6af0e49950c8b2e47eeacbb2db-1760923334398.png"
+ ],
+ "name": "Qualcomm (Ondo Tokenized Stock)",
+ "symbol": "QCOMON",
+ "marketCap": "177177000000",
+ "price": "174.693612375015163222",
+ "priceChange24hPercent": "1.84",
+ "volume24h": "1440555484.94",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "高通",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0xfbd4d681c92ead6af0e49950c8b2e47eeacbb2db",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xc008c5f579ec1450f20099c39f587547e27c7523",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xc008c5f579ec1450f20099c39f587547e27c7523-1768185634202.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xc008c5f579ec1450f20099c39f587547e27c7523-1768185634202.png"
+ ],
+ "name": "iShares 0-3 Month Treasury Bond ETF (Ondo Tokenized ETF)",
+ "symbol": "SGOVON",
+ "marketCap": "95942590920",
+ "price": "102.324784764508258885",
+ "priceChange24hPercent": "--",
+ "volume24h": "2053722039.09",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "iShares 0-3个月国债ETF",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0xc008c5f579ec1450f20099c39f587547e27c7523",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x76e39171cb665a35981e744e2ceb7012f76caeac",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x76e39171cb665a35981e744e2ceb7012f76caeac-1773853768684.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x76e39171cb665a35981e744e2ceb7012f76caeac-1773853768684.png"
+ ],
+ "name": "CoreWeave (Ondo Tokenized)",
+ "symbol": "CRWVON",
+ "marketCap": "48752169872",
+ "price": "91.523734",
+ "priceChange24hPercent": "2.73",
+ "volume24h": "1858414200.96",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "CoreWeave",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x76e39171cb665a35981e744e2ceb7012f76caeac",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ }
+ ],
+ "robinhood_meme": [
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x39dbed3a2bd333467115de45665cc57f813c4571",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x39dbed3a2bd333467115de45665cc57f813c4571-1785145437955.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x39dbed3a2bd333467115de45665cc57f813c4571-1785145437955.png"
+ ],
+ "name": "Pons",
+ "symbol": "PONS",
+ "marketCap": "502022018.508028785669424106",
+ "price": "0.71717848311520679734",
+ "priceChange24hPercent": "3.39",
+ "volume24h": "4675508.39160508800166635342",
+ "communityRecognized": true,
+ "key": "evm--4663:0x39dbed3a2bd333467115de45665cc57f813c4571",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x020bfc650a365f8bb26819deaabf3e21291018b4",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x020bfc650a365f8bb26819deaabf3e21291018b4-1784778353843.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x020bfc650a365f8bb26819deaabf3e21291018b4-1784778353843.png"
+ ],
+ "name": "Cash Cat",
+ "symbol": "CASHCAT",
+ "marketCap": "188581610.80185770225929897",
+ "price": "0.19084952071561432263",
+ "priceChange24hPercent": "-0.36",
+ "volume24h": "546155.30016517225572183824",
+ "communityRecognized": true,
+ "key": "evm--4663:0x020bfc650a365f8bb26819deaabf3e21291018b4",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xe170dc96ca10103e0d4c5d9293c5a3a72ee365a5",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xe170dc96ca10103e0d4c5d9293c5a3a72ee365a5-1785059757195.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xe170dc96ca10103e0d4c5d9293c5a3a72ee365a5-1785059757195.png"
+ ],
+ "name": "Little John",
+ "symbol": "JOHN",
+ "marketCap": "8802.53080883729502627",
+ "price": "0.0000088025308088373",
+ "priceChange24hPercent": "0",
+ "volume24h": "0",
+ "communityRecognized": false,
+ "key": "evm--4663:0xe170dc96ca10103e0d4c5d9293c5a3a72ee365a5",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xe934e36a439c94017b64a3fece66af12099abf50",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xe934e36a439c94017b64a3fece66af12099abf50-1785290631562.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xe934e36a439c94017b64a3fece66af12099abf50-1785290631562.png"
+ ],
+ "name": "StonkBroker",
+ "symbol": "STONKBROKER",
+ "marketCap": "20652805.024120563132606053",
+ "price": "0.01688272635986417616",
+ "priceChange24hPercent": "5.15",
+ "volume24h": "143333.32193742978584942069",
+ "communityRecognized": true,
+ "key": "evm--4663:0xe934e36a439c94017b64a3fece66af12099abf50",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x348cc963411fb82cd6e0b64345714fec94f242cb",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x348cc963411fb82cd6e0b64345714fec94f242cb-1787918436309.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x348cc963411fb82cd6e0b64345714fec94f242cb-1787918436309.png"
+ ],
+ "name": "Goose Token",
+ "symbol": "GOOSE",
+ "marketCap": "81393460.832387531242448284",
+ "price": "0.08139346083238753124",
+ "priceChange24hPercent": "0",
+ "volume24h": "0",
+ "communityRecognized": false,
+ "key": "evm--4663:0x348cc963411fb82cd6e0b64345714fec94f242cb",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x5cb6f181081301b44905f3ae15419112ecabd8a6",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x5cb6f181081301b44905f3ae15419112ecabd8a6-1785411923960.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x5cb6f181081301b44905f3ae15419112ecabd8a6-1785411923960.png"
+ ],
+ "name": "pipedog",
+ "symbol": "PIPEDOG",
+ "marketCap": "35769492.909630204770672297",
+ "price": "0.00289732894922953629",
+ "priceChange24hPercent": "-0.23",
+ "volume24h": "9511.162469340902851565",
+ "communityRecognized": true,
+ "key": "evm--4663:0x5cb6f181081301b44905f3ae15419112ecabd8a6",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x57c0e45cb534413d1c20a4240955d6bb250bb4f1",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x57c0e45cb534413d1c20a4240955d6bb250bb4f1-1785005199051.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x57c0e45cb534413d1c20a4240955d6bb250bb4f1-1785005199051.png"
+ ],
+ "name": "up",
+ "symbol": "UP",
+ "marketCap": "10939824.275003627272484814",
+ "price": "0.54014115573703348966",
+ "priceChange24hPercent": "0.69",
+ "volume24h": "24795.930795449700796612",
+ "communityRecognized": true,
+ "key": "evm--4663:0x57c0e45cb534413d1c20a4240955d6bb250bb4f1",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x0e0d2c89a5a019fe1cf762e5e33187631dacc21b",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x0e0d2c89a5a019fe1cf762e5e33187631dacc21b-1787400114210.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x0e0d2c89a5a019fe1cf762e5e33187631dacc21b-1787400114210.png"
+ ],
+ "name": "Chump Coin",
+ "symbol": "CHUMP",
+ "marketCap": "35977837.123296699878179831",
+ "price": "0.03597783749651078179",
+ "priceChange24hPercent": "1.12",
+ "volume24h": "126861.63631268617329724",
+ "communityRecognized": false,
+ "key": "evm--4663:0x0e0d2c89a5a019fe1cf762e5e33187631dacc21b",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x56910d4409f3a0c78c64dd8d0545ff0705389870",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x56910d4409f3a0c78c64dd8d0545ff0705389870-1784842044117.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x56910d4409f3a0c78c64dd8d0545ff0705389870-1784842044117.png"
+ ],
+ "name": "The Index",
+ "symbol": "Index",
+ "marketCap": "39076127.721770539963962651",
+ "price": "0.03985186707954164859",
+ "priceChange24hPercent": "1.62",
+ "volume24h": "56270.72923242765604479393",
+ "communityRecognized": true,
+ "key": "evm--4663:0x56910d4409f3a0c78c64dd8d0545ff0705389870",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x18e674231a58c239dc7daedcffe15ec3a24cff5c",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x18e674231a58c239dc7daedcffe15ec3a24cff5c-1786190410593.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x18e674231a58c239dc7daedcffe15ec3a24cff5c-1786190410593.png"
+ ],
+ "name": "Hookr.fun",
+ "symbol": "HOOKR",
+ "marketCap": "16618445.208237637803108274",
+ "price": "0.0166791731104542394",
+ "priceChange24hPercent": "-12.66",
+ "volume24h": "85284.39622974023439848",
+ "communityRecognized": true,
+ "key": "evm--4663:0x18e674231a58c239dc7daedcffe15ec3a24cff5c",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x7fe995a80075df3dc8ae11a9b82c7fe4202cd87f",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x7fe995a80075df3dc8ae11a9b82c7fe4202cd87f-1785325956569.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x7fe995a80075df3dc8ae11a9b82c7fe4202cd87f-1785325956569.png"
+ ],
+ "name": "Thinking Cat",
+ "symbol": "HMM",
+ "marketCap": "13039576.030590609490030763",
+ "price": "0.01320187144939991148",
+ "priceChange24hPercent": "-1.01",
+ "volume24h": "39010.682240971249568965",
+ "communityRecognized": true,
+ "key": "evm--4663:0x7fe995a80075df3dc8ae11a9b82c7fe4202cd87f",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x45242320dbb855eea8fd36804c6487e10e97fcf9",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x45242320dbb855eea8fd36804c6487e10e97fcf9-1784778612504.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x45242320dbb855eea8fd36804c6487e10e97fcf9-1784778612504.png"
+ ],
+ "name": "TENDIES",
+ "symbol": "TENDIES",
+ "marketCap": "15418336.651928049187952375",
+ "price": "0.0161197596815997701",
+ "priceChange24hPercent": "-4.11",
+ "volume24h": "49970.6546972891152591",
+ "communityRecognized": false,
+ "key": "evm--4663:0x45242320dbb855eea8fd36804c6487e10e97fcf9",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xca9c78dd337a67f6e0077f65f5e9218719d30edf",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xca9c78dd337a67f6e0077f65f5e9218719d30edf-1785280831816.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xca9c78dd337a67f6e0077f65f5e9218719d30edf-1785280831816.png"
+ ],
+ "name": "NetNet",
+ "symbol": "NET",
+ "marketCap": "3920472.764198924127605602",
+ "price": "668.59150927027122099446",
+ "priceChange24hPercent": "-0.63",
+ "volume24h": "181080.6656155861419609",
+ "communityRecognized": false,
+ "key": "evm--4663:0xca9c78dd337a67f6e0077f65f5e9218719d30edf",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xc72f232a6869e6cf34dc06129affd07f8a2a246a",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xc72f232a6869e6cf34dc06129affd07f8a2a246a-1786104032870.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xc72f232a6869e6cf34dc06129affd07f8a2a246a-1786104032870.png"
+ ],
+ "name": "Mancer",
+ "symbol": "MANCER",
+ "marketCap": "5440876.002220110409619299",
+ "price": "0.00217635040088804416",
+ "priceChange24hPercent": "-1.18",
+ "volume24h": "20139.36081277153257601",
+ "communityRecognized": false,
+ "key": "evm--4663:0xc72f232a6869e6cf34dc06129affd07f8a2a246a",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x6245e67affa44a23077f0ea7f981a8dc743a0c47",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x6245e67affa44a23077f0ea7f981a8dc743a0c47-1785931207872.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x6245e67affa44a23077f0ea7f981a8dc743a0c47-1785931207872.png"
+ ],
+ "name": "frong",
+ "symbol": "FRONG",
+ "marketCap": "5491401.474828610941251233",
+ "price": "0.00549140147482861094",
+ "priceChange24hPercent": "-2.7",
+ "volume24h": "64782.053303661839993",
+ "communityRecognized": false,
+ "key": "evm--4663:0x6245e67affa44a23077f0ea7f981a8dc743a0c47",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xee5576fa1bcaa380e591d01245f406f3f384eb01",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xee5576fa1bcaa380e591d01245f406f3f384eb01-1787832045009.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xee5576fa1bcaa380e591d01245f406f3f384eb01-1787832045009.png"
+ ],
+ "name": "Down to Finance",
+ "symbol": "DTF",
+ "marketCap": "8682703.707015428616989098",
+ "price": "0.00868270374727847651",
+ "priceChange24hPercent": "4.31",
+ "volume24h": "54323.97077477706916644",
+ "communityRecognized": false,
+ "key": "evm--4663:0xee5576fa1bcaa380e591d01245f406f3f384eb01",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x62c71cd34a52c30d894419cbcc55db2afa8032ea",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x62c71cd34a52c30d894419cbcc55db2afa8032ea-1785197280438.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x62c71cd34a52c30d894419cbcc55db2afa8032ea-1785197280438.png"
+ ],
+ "name": "YOLO",
+ "symbol": "YOLO",
+ "marketCap": "6110793.379760146105089284",
+ "price": "0.0062997870322002435",
+ "priceChange24hPercent": "1.7",
+ "volume24h": "24977.54083074402296342",
+ "communityRecognized": false,
+ "key": "evm--4663:0x62c71cd34a52c30d894419cbcc55db2afa8032ea",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x451b42a15100c340ca12f7c66de06fac5ea2d751",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x451b42a15100c340ca12f7c66de06fac5ea2d751-1787832041620.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x451b42a15100c340ca12f7c66de06fac5ea2d751-1787832041620.png"
+ ],
+ "name": "Longbow",
+ "symbol": "BOW",
+ "marketCap": "5787414.729870295757998562",
+ "price": "0.00578741472987029576",
+ "priceChange24hPercent": "4.71",
+ "volume24h": "114289.631078897797369253",
+ "communityRecognized": false,
+ "key": "evm--4663:0x451b42a15100c340ca12f7c66de06fac5ea2d751",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xf2915d1e3c1b0c769d0c756ec43f1c1f6c99cd03",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xf2915d1e3c1b0c769d0c756ec43f1c1f6c99cd03-1784861135802.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xf2915d1e3c1b0c769d0c756ec43f1c1f6c99cd03-1784861135802.png"
+ ],
+ "name": "Arrow",
+ "symbol": "ARROW",
+ "marketCap": "3472922.672130186445530038",
+ "price": "0.38588029898682948721",
+ "priceChange24hPercent": "0",
+ "volume24h": "1652.25912226465957741",
+ "communityRecognized": false,
+ "key": "evm--4663:0xf2915d1e3c1b0c769d0c756ec43f1c1f6c99cd03",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xb9972ca7188e511174947e3936a5315ac7073277",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xb9972ca7188e511174947e3936a5315ac7073277-1787400211008.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xb9972ca7188e511174947e3936a5315ac7073277-1787400211008.png"
+ ],
+ "name": "Prologue",
+ "symbol": "PROLOGUE",
+ "marketCap": "10867196.245258369257184329",
+ "price": "0.01086719624525836926",
+ "priceChange24hPercent": "2.09",
+ "volume24h": "53532.8404944948708297",
+ "communityRecognized": true,
+ "key": "evm--4663:0xb9972ca7188e511174947e3936a5315ac7073277",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xd7321801caae694090694ff55a9323139f043b88",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xd7321801caae694090694ff55a9323139f043b88-1784779777690.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xd7321801caae694090694ff55a9323139f043b88-1784779777690.png"
+ ],
+ "name": "The Juggernaut",
+ "symbol": "JUGGERNAUT",
+ "marketCap": "3019903.208555332697636294",
+ "price": "0.00322096834857655848",
+ "priceChange24hPercent": "-1.78",
+ "volume24h": "14986.87118516409804131",
+ "communityRecognized": false,
+ "key": "evm--4663:0xd7321801caae694090694ff55a9323139f043b88",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x8ff92566f2e81bdd68edfaa8cde73942a723796b",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x8ff92566f2e81bdd68edfaa8cde73942a723796b-1784854679354.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x8ff92566f2e81bdd68edfaa8cde73942a723796b-1784854679354.png"
+ ],
+ "name": "ProjectVex",
+ "symbol": "VEX",
+ "marketCap": "2665179.099566858123776638",
+ "price": "0.00266517909956685812",
+ "priceChange24hPercent": "-1.82",
+ "volume24h": "5891.618003252671463",
+ "communityRecognized": false,
+ "key": "evm--4663:0x8ff92566f2e81bdd68edfaa8cde73942a723796b",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xcebc0cfbc5dd0893a9e3b9d0f75b211ddf5934a0",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xcebc0cfbc5dd0893a9e3b9d0f75b211ddf5934a0-1788177871007.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xcebc0cfbc5dd0893a9e3b9d0f75b211ddf5934a0-1788177871007.png"
+ ],
+ "name": "clan.tech",
+ "symbol": "CLAN",
+ "marketCap": "1346087.777112335683918246",
+ "price": "0.00134608777721111461",
+ "priceChange24hPercent": "-2.74",
+ "volume24h": "3564.575192429492769967",
+ "communityRecognized": false,
+ "key": "evm--4663:0xcebc0cfbc5dd0893a9e3b9d0f75b211ddf5934a0",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x232cdfc415d10b673845d83dc02ba2eabe7e30d1",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x232cdfc415d10b673845d83dc02ba2eabe7e30d1-1785412803768.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x232cdfc415d10b673845d83dc02ba2eabe7e30d1-1785412803768.png"
+ ],
+ "name": "What If",
+ "symbol": "IF",
+ "marketCap": "10586906.988923495786384388",
+ "price": "0.01168673691363227001",
+ "priceChange24hPercent": "-1.09",
+ "volume24h": "20850.345908729903227",
+ "communityRecognized": false,
+ "key": "evm--4663:0x232cdfc415d10b673845d83dc02ba2eabe7e30d1",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x76761d4aee1e7d6b2b8dedbd13925d6c220b0725",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x76761d4aee1e7d6b2b8dedbd13925d6c220b0725-1786276810800.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x76761d4aee1e7d6b2b8dedbd13925d6c220b0725-1786276810800.png"
+ ],
+ "name": "MowCat",
+ "symbol": "MOW",
+ "marketCap": "4608946.621219782201180129",
+ "price": "0.0046089466212197822",
+ "priceChange24hPercent": "0",
+ "volume24h": "0",
+ "communityRecognized": false,
+ "key": "evm--4663:0x76761d4aee1e7d6b2b8dedbd13925d6c220b0725",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x77b0aa38451ccdc1b42587e2f80b9879a7f82356",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x77b0aa38451ccdc1b42587e2f80b9879a7f82356-1786536021883.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x77b0aa38451ccdc1b42587e2f80b9879a7f82356-1786536021883.png"
+ ],
+ "name": "DogBull",
+ "symbol": "DOGO",
+ "marketCap": "21768233.653662840214264244",
+ "price": "0.02155270658778499031",
+ "priceChange24hPercent": "-0.04",
+ "volume24h": "584.39610784999559",
+ "communityRecognized": false,
+ "key": "evm--4663:0x77b0aa38451ccdc1b42587e2f80b9879a7f82356",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x385b36ff682ab4c76e7c37a66b96aabc466471d5",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x385b36ff682ab4c76e7c37a66b96aabc466471d5-1786017815496.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x385b36ff682ab4c76e7c37a66b96aabc466471d5-1786017815496.png"
+ ],
+ "name": "pools.trade",
+ "symbol": "POOLS",
+ "marketCap": "1556630.67532955837106892",
+ "price": "0.0015566308898872704",
+ "priceChange24hPercent": "-3.09",
+ "volume24h": "9906.1905984351751819",
+ "communityRecognized": false,
+ "key": "evm--4663:0x385b36ff682ab4c76e7c37a66b96aabc466471d5",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x5f62c57e5c537887117eef828b7e3ad41c009feb",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x5f62c57e5c537887117eef828b7e3ad41c009feb-1786018016957.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x5f62c57e5c537887117eef828b7e3ad41c009feb-1786018016957.png"
+ ],
+ "name": "Good In The Hood",
+ "symbol": "GOOD",
+ "marketCap": "3650847.769165494974298471",
+ "price": "0.00464873807570103688",
+ "priceChange24hPercent": "-0.38",
+ "volume24h": "5254.1716644586610265",
+ "communityRecognized": false,
+ "key": "evm--4663:0x5f62c57e5c537887117eef828b7e3ad41c009feb",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x20024e485c0b22b42855589700721b28320a7777",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x20024e485c0b22b42855589700721b28320a7777-1786363300721.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x20024e485c0b22b42855589700721b28320a7777-1786363300721.png"
+ ],
+ "name": "Prism Assets",
+ "symbol": "PRISM",
+ "marketCap": "2315389.100589988802579267",
+ "price": "0.0023153891005899888",
+ "priceChange24hPercent": "-3.67",
+ "volume24h": "16417.9054242849829014",
+ "communityRecognized": false,
+ "key": "evm--4663:0x20024e485c0b22b42855589700721b28320a7777",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x4a6eec8a30b49d289b9fc865fd374b4d61eab8fb",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x4a6eec8a30b49d289b9fc865fd374b4d61eab8fb-1785758432269.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x4a6eec8a30b49d289b9fc865fd374b4d61eab8fb-1785758432269.png"
+ ],
+ "name": "Liluni",
+ "symbol": "Liluni",
+ "marketCap": "769327.821597585049202932",
+ "price": "0.00076932782159758505",
+ "priceChange24hPercent": "-7.81",
+ "volume24h": "4063.62819132475426436",
+ "communityRecognized": false,
+ "key": "evm--4663:0x4a6eec8a30b49d289b9fc865fd374b4d61eab8fb",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xb8fa8010833463aac5595b55b9045479239eff79",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xb8fa8010833463aac5595b55b9045479239eff79-1786881632532.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xb8fa8010833463aac5595b55b9045479239eff79-1786881632532.png"
+ ],
+ "name": "what the hook?",
+ "symbol": "WTH",
+ "marketCap": "4433865.674641148580658499",
+ "price": "21.11364606971975514599",
+ "priceChange24hPercent": "-0.45",
+ "volume24h": "36991.550436991338055",
+ "communityRecognized": false,
+ "key": "evm--4663:0xb8fa8010833463aac5595b55b9045479239eff79",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xf8bc08092c06db6148114dcf82af881f1085f92b",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xf8bc08092c06db6148114dcf82af881f1085f92b-1785137390595.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xf8bc08092c06db6148114dcf82af881f1085f92b-1785137390595.png"
+ ],
+ "name": "Sherwood Protocol",
+ "symbol": "WOOD",
+ "marketCap": "5294868.778292219416037217",
+ "price": "0.00529486877829221942",
+ "priceChange24hPercent": "-0.75",
+ "volume24h": "6528.464623530007067035",
+ "communityRecognized": false,
+ "key": "evm--4663:0xf8bc08092c06db6148114dcf82af881f1085f92b",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x51fb76be80ab6daaa345d818f4e06441816b4fea",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x51fb76be80ab6daaa345d818f4e06441816b4fea-1786104017624.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x51fb76be80ab6daaa345d818f4e06441816b4fea-1786104017624.png"
+ ],
+ "name": "NASDANQ",
+ "symbol": "NASDANQ",
+ "marketCap": "2336139.896707354816830353",
+ "price": "0.00233613989670735482",
+ "priceChange24hPercent": "-15.68",
+ "volume24h": "15526.489488973708213928",
+ "communityRecognized": false,
+ "key": "evm--4663:0x51fb76be80ab6daaa345d818f4e06441816b4fea",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x8ecea3d0e648db646d824aa51eedeb16ac3d6878",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x8ecea3d0e648db646d824aa51eedeb16ac3d6878-1785284432065.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x8ecea3d0e648db646d824aa51eedeb16ac3d6878-1785284432065.png"
+ ],
+ "name": "wire bot",
+ "symbol": "wire",
+ "marketCap": "539032.655786243127634391",
+ "price": "0.00054041288588799596",
+ "priceChange24hPercent": "2.96",
+ "volume24h": "8153.42212987799338961",
+ "communityRecognized": false,
+ "key": "evm--4663:0x8ecea3d0e648db646d824aa51eedeb16ac3d6878",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xcb5566e73bee5390c75df834d4727dcecc65fc87",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xcb5566e73bee5390c75df834d4727dcecc65fc87-1788354026635.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xcb5566e73bee5390c75df834d4727dcecc65fc87-1788354026635.png"
+ ],
+ "name": "Mast Bond",
+ "symbol": "MAST",
+ "marketCap": "652914.665836647500035643",
+ "price": "0.0006529146658366475",
+ "priceChange24hPercent": "-17.25",
+ "volume24h": "12343.009863653653384",
+ "communityRecognized": false,
+ "key": "evm--4663:0xcb5566e73bee5390c75df834d4727dcecc65fc87",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xf44702b17d9abd53815f703e772f35e9c71a53af",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xf44702b17d9abd53815f703e772f35e9c71a53af-1784822115804.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xf44702b17d9abd53815f703e772f35e9c71a53af-1784822115804.png"
+ ],
+ "name": "RAXOL",
+ "symbol": "RAXOL",
+ "marketCap": "1712329.03977912128931203",
+ "price": "0.00171232903977912129",
+ "priceChange24hPercent": "0.39",
+ "volume24h": "151.163027516600206",
+ "communityRecognized": false,
+ "key": "evm--4663:0xf44702b17d9abd53815f703e772f35e9c71a53af",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x8e62f281f282686fca6dcb39288069a93fc23f1c",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x8e62f281f282686fca6dcb39288069a93fc23f1c-1784830569718.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x8e62f281f282686fca6dcb39288069a93fc23f1c-1784830569718.png"
+ ],
+ "name": "Hoodrat",
+ "symbol": "HOODRAT",
+ "marketCap": "1729390.247190236716847253",
+ "price": "0.00172939031667982091",
+ "priceChange24hPercent": "-0.67",
+ "volume24h": "1810.205639073544116",
+ "communityRecognized": true,
+ "key": "evm--4663:0x8e62f281f282686fca6dcb39288069a93fc23f1c",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x77581054581b9c525e7dd7a0155de43867532d03",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x77581054581b9c525e7dd7a0155de43867532d03-1784939141560.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x77581054581b9c525e7dd7a0155de43867532d03-1784939141560.png"
+ ],
+ "name": "WISHBONE",
+ "symbol": "WISHBONE",
+ "marketCap": "890566.402734889733341878",
+ "price": "0.00096332665926777235",
+ "priceChange24hPercent": "2.04",
+ "volume24h": "837.61735086325708537",
+ "communityRecognized": false,
+ "key": "evm--4663:0x77581054581b9c525e7dd7a0155de43867532d03",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x43eea882b845a8493152ebc55cf30ae9281b02d5",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x43eea882b845a8493152ebc55cf30ae9281b02d5-1785292897426.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x43eea882b845a8493152ebc55cf30ae9281b02d5-1785292897426.png"
+ ],
+ "name": "FIRE",
+ "symbol": "FIRE",
+ "marketCap": "1462625.380905727143813291",
+ "price": "0.0014809585098065579",
+ "priceChange24hPercent": "-12.08",
+ "volume24h": "7701.9467964781793196",
+ "communityRecognized": false,
+ "key": "evm--4663:0x43eea882b845a8493152ebc55cf30ae9281b02d5",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xac77646bcff9d52e99800534192e0290933f4094",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xac77646bcff9d52e99800534192e0290933f4094-1787572842778.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xac77646bcff9d52e99800534192e0290933f4094-1787572842778.png"
+ ],
+ "name": "Martians",
+ "symbol": "MARTIANS",
+ "marketCap": "421107.798117296771237422",
+ "price": "0.00042110779812399404",
+ "priceChange24hPercent": "-0.65",
+ "volume24h": "640.7616285976057776",
+ "communityRecognized": false,
+ "key": "evm--4663:0xac77646bcff9d52e99800534192e0290933f4094",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xf0568863195770965a6d8abb0aa87f4314b80320",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xf0568863195770965a6d8abb0aa87f4314b80320-1785239850960.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xf0568863195770965a6d8abb0aa87f4314b80320-1785239850960.png"
+ ],
+ "name": "SLIPPY",
+ "symbol": "SLIPPY",
+ "marketCap": "2285143.7736062878747713",
+ "price": "0.0022851443913658089",
+ "priceChange24hPercent": "2.93",
+ "volume24h": "3277.33644277337205894456",
+ "communityRecognized": false,
+ "key": "evm--4663:0xf0568863195770965a6d8abb0aa87f4314b80320",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x9ca1cc0c90d97b4f36c5e2232d4fbd705a73c65d",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x9ca1cc0c90d97b4f36c5e2232d4fbd705a73c65d-1786363300721.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x9ca1cc0c90d97b4f36c5e2232d4fbd705a73c65d-1786363300721.png"
+ ],
+ "name": "TA FUND",
+ "symbol": "TA",
+ "marketCap": "2169025.59885951907590852",
+ "price": "0.00216902559885951908",
+ "priceChange24hPercent": "-2.89",
+ "volume24h": "12255.548676215078163",
+ "communityRecognized": false,
+ "key": "evm--4663:0x9ca1cc0c90d97b4f36c5e2232d4fbd705a73c65d",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x7168563b0e70124f0c7c0cf2f13a8d1861baf4a5",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x7168563b0e70124f0c7c0cf2f13a8d1861baf4a5-1785276114071.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x7168563b0e70124f0c7c0cf2f13a8d1861baf4a5-1785276114071.png"
+ ],
+ "name": "Backed",
+ "symbol": "BACKED",
+ "marketCap": "683975.046016032677877222",
+ "price": "0.00072634119132098617",
+ "priceChange24hPercent": "1.52",
+ "volume24h": "4602.320740294868786",
+ "communityRecognized": false,
+ "key": "evm--4663:0x7168563b0e70124f0c7c0cf2f13a8d1861baf4a5",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xe3fa12da7fa026b21817f16622e8ae48fa785166",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xe3fa12da7fa026b21817f16622e8ae48fa785166-1786536006382.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xe3fa12da7fa026b21817f16622e8ae48fa785166-1786536006382.png"
+ ],
+ "name": "Yardkeeper",
+ "symbol": "YARD",
+ "marketCap": "1661101.247537698075666796",
+ "price": "0.00237034455488214896",
+ "priceChange24hPercent": "1.8",
+ "volume24h": "3511.619755600601791",
+ "communityRecognized": false,
+ "key": "evm--4663:0xe3fa12da7fa026b21817f16622e8ae48fa785166",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x727701f88f09fed71eb217bcea88b3f314cf7079",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x727701f88f09fed71eb217bcea88b3f314cf7079-1785229474064.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x727701f88f09fed71eb217bcea88b3f314cf7079-1785229474064.png"
+ ],
+ "name": "GRID by Virtuals",
+ "symbol": "GRID",
+ "marketCap": "1249980.578691939741013368",
+ "price": "0.00124998057869193974",
+ "priceChange24hPercent": "0.31",
+ "volume24h": "362.609826348295527",
+ "communityRecognized": false,
+ "key": "evm--4663:0x727701f88f09fed71eb217bcea88b3f314cf7079",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x96765066f6a040a21eb027167d2315b707c82633",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x96765066f6a040a21eb027167d2315b707c82633-1784938636403.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x96765066f6a040a21eb027167d2315b707c82633-1784938636403.png"
+ ],
+ "name": "Ravenhood",
+ "symbol": "RVH",
+ "marketCap": "390628.355788254703232466",
+ "price": "0.00496337736804456155",
+ "priceChange24hPercent": "0.13",
+ "volume24h": "1108.44188934200301877",
+ "communityRecognized": false,
+ "key": "evm--4663:0x96765066f6a040a21eb027167d2315b707c82633",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xbd957cc9f1e94617792f37bc40f2f299e78acf3e",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xbd957cc9f1e94617792f37bc40f2f299e78acf3e-1785845024248.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xbd957cc9f1e94617792f37bc40f2f299e78acf3e-1785845024248.png"
+ ],
+ "name": "Crude Cat",
+ "symbol": "CRUDECAT",
+ "marketCap": "2307997.035220816076014931",
+ "price": "0.00597695795708211835",
+ "priceChange24hPercent": "-16.1",
+ "volume24h": "11007.9283082877411364",
+ "communityRecognized": false,
+ "key": "evm--4663:0xbd957cc9f1e94617792f37bc40f2f299e78acf3e",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xfb1bcb6817f7b8fa86896d3253b16aeb7bd6a5a8",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xfb1bcb6817f7b8fa86896d3253b16aeb7bd6a5a8-1785008871536.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xfb1bcb6817f7b8fa86896d3253b16aeb7bd6a5a8-1785008871536.png"
+ ],
+ "name": "one life, its worth an attempt",
+ "symbol": "worth",
+ "marketCap": "943016.144584851830199867",
+ "price": "0.00112942228622299282",
+ "priceChange24hPercent": "11.61",
+ "volume24h": "3712.61638796117777093",
+ "communityRecognized": false,
+ "key": "evm--4663:0xfb1bcb6817f7b8fa86896d3253b16aeb7bd6a5a8",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x49bac47750f3dcdba49350b5d74fd399e90f97c6",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x49bac47750f3dcdba49350b5d74fd399e90f97c6-1786190483451.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x49bac47750f3dcdba49350b5d74fd399e90f97c6-1786190483451.png"
+ ],
+ "name": "The Bull",
+ "symbol": "BULL",
+ "marketCap": "1844160.155161726289434023",
+ "price": "0.00184418762652969795",
+ "priceChange24hPercent": "-1.06",
+ "volume24h": "1243.36301848924058726",
+ "communityRecognized": false,
+ "key": "evm--4663:0x49bac47750f3dcdba49350b5d74fd399e90f97c6",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x9727b500ac8726c716f018e5d3ca871481245065",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x9727b500ac8726c716f018e5d3ca871481245065-1785196146146.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x9727b500ac8726c716f018e5d3ca871481245065-1785196146146.png"
+ ],
+ "name": "Ansem Cat",
+ "symbol": "AnsemCat",
+ "marketCap": "365173.245867752584482233",
+ "price": "0.00000086803405326429",
+ "priceChange24hPercent": "0",
+ "volume24h": "0",
+ "communityRecognized": false,
+ "key": "evm--4663:0x9727b500ac8726c716f018e5d3ca871481245065",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xeafa804083a4886a9460b5b19557334a652beba8",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xeafa804083a4886a9460b5b19557334a652beba8-1785002418521.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xeafa804083a4886a9460b5b19557334a652beba8-1785002418521.png"
+ ],
+ "name": "Naven Network",
+ "symbol": "NAVEN",
+ "marketCap": "379120.192909717179101389",
+ "price": "0.00043238178622577899",
+ "priceChange24hPercent": "15.18",
+ "volume24h": "5264.3299391435081094",
+ "communityRecognized": false,
+ "key": "evm--4663:0xeafa804083a4886a9460b5b19557334a652beba8",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x0762c1708f0d23f86b29d6b857121ff7df357506",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x0762c1708f0d23f86b29d6b857121ff7df357506-1785931280846.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x0762c1708f0d23f86b29d6b857121ff7df357506-1785931280846.png"
+ ],
+ "name": "this is not a website",
+ "symbol": "website",
+ "marketCap": "5197878.936462059211378102",
+ "price": "0.00555662732124259188",
+ "priceChange24hPercent": "12.86",
+ "volume24h": "33582.80797639951461067",
+ "communityRecognized": false,
+ "key": "evm--4663:0x0762c1708f0d23f86b29d6b857121ff7df357506",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x3b4a0048a00787a644932cd648faa043410c163e",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x3b4a0048a00787a644932cd648faa043410c163e-1788264033495.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x3b4a0048a00787a644932cd648faa043410c163e-1788264033495.png"
+ ],
+ "name": "The Dogestar",
+ "symbol": "SIRIUS",
+ "marketCap": "889308.889941344775296854",
+ "price": "0.00088930888995381725",
+ "priceChange24hPercent": "-2.94",
+ "volume24h": "13500.1153473072908584",
+ "communityRecognized": false,
+ "key": "evm--4663:0x3b4a0048a00787a644932cd648faa043410c163e",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x2103faa9d1762e27a716c61718b3acf3ec1f9bf1",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x2103faa9d1762e27a716c61718b3acf3ec1f9bf1-1785016173111.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x2103faa9d1762e27a716c61718b3acf3ec1f9bf1-1785016173111.png"
+ ],
+ "name": "Robin Hood",
+ "symbol": "FOX",
+ "marketCap": "819155.44037873657318132",
+ "price": "0.00087392746402269212",
+ "priceChange24hPercent": "-3.96",
+ "volume24h": "3177.5645632107489844",
+ "communityRecognized": false,
+ "key": "evm--4663:0x2103faa9d1762e27a716c61718b3acf3ec1f9bf1",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x532c5583671870723ceef573600208af49c87c54",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x532c5583671870723ceef573600208af49c87c54-1787572802676.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x532c5583671870723ceef573600208af49c87c54-1787572802676.png"
+ ],
+ "name": "Canopy Finance",
+ "symbol": "CNPY",
+ "marketCap": "2043406.519085803891568646",
+ "price": "0.00268033834862245422",
+ "priceChange24hPercent": "18.5",
+ "volume24h": "38385.63448397666353553",
+ "communityRecognized": false,
+ "key": "evm--4663:0x532c5583671870723ceef573600208af49c87c54",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xaa40e79e987517f7462bf79315b8a118799b04e3",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xaa40e79e987517f7462bf79315b8a118799b04e3-1787659277021.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xaa40e79e987517f7462bf79315b8a118799b04e3-1787659277021.png"
+ ],
+ "name": "scopl.live",
+ "symbol": "SCOPL",
+ "marketCap": "401077.566822741022302925",
+ "price": "0.00041294851870877833",
+ "priceChange24hPercent": "-10.74",
+ "volume24h": "5586.9137257157393147",
+ "communityRecognized": false,
+ "key": "evm--4663:0xaa40e79e987517f7462bf79315b8a118799b04e3",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x01637b14b7378b99de75a64d50656d98488d9a4d",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x01637b14b7378b99de75a64d50656d98488d9a4d-1784777167517.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x01637b14b7378b99de75a64d50656d98488d9a4d-1784777167517.png"
+ ],
+ "name": "Lady Marian",
+ "symbol": "MARIAN",
+ "marketCap": "628696.510942059642535741",
+ "price": "0.00063887984115372445",
+ "priceChange24hPercent": "-6.96",
+ "volume24h": "9293.046850367078885",
+ "communityRecognized": false,
+ "key": "evm--4663:0x01637b14b7378b99de75a64d50656d98488d9a4d",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xa5be0eeb82a013dc7867b9e020c36a69da666666",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xa5be0eeb82a013dc7867b9e020c36a69da666666-1787227214299.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xa5be0eeb82a013dc7867b9e020c36a69da666666-1787227214299.png"
+ ],
+ "name": "CLOCK IN",
+ "symbol": "CLOCKIN",
+ "marketCap": "390075.568640705056017851",
+ "price": "0.00039007557111482805",
+ "priceChange24hPercent": "4.44",
+ "volume24h": "2112.270541153660644",
+ "communityRecognized": false,
+ "key": "evm--4663:0xa5be0eeb82a013dc7867b9e020c36a69da666666",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xf0e17e54239cd945cd7bea471a3a2ca6a8c7f7a3",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xf0e17e54239cd945cd7bea471a3a2ca6a8c7f7a3-1785403528086.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xf0e17e54239cd945cd7bea471a3a2ca6a8c7f7a3-1785403528086.png"
+ ],
+ "name": "Lemon",
+ "symbol": "LEMON.FUN",
+ "marketCap": "567512.386103755069902849",
+ "price": "0.00057397490461328917",
+ "priceChange24hPercent": "-3.54",
+ "volume24h": "1672.6028670313023494",
+ "communityRecognized": false,
+ "key": "evm--4663:0xf0e17e54239cd945cd7bea471a3a2ca6a8c7f7a3",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x5edb417509a869b1d8222dea05257b8c8ba00361",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x5edb417509a869b1d8222dea05257b8c8ba00361-1786881611635.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x5edb417509a869b1d8222dea05257b8c8ba00361-1786881611635.png"
+ ],
+ "name": "DeFi Traded Fund",
+ "symbol": "DTF",
+ "marketCap": "2101276.505389603821695618",
+ "price": "0.00258078710768923079",
+ "priceChange24hPercent": "2.43",
+ "volume24h": "3458.398138",
+ "communityRecognized": false,
+ "key": "evm--4663:0x5edb417509a869b1d8222dea05257b8c8ba00361",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x1d5aad3c0d6066078ea60f384a2492a550db30b0",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x1d5aad3c0d6066078ea60f384a2492a550db30b0-1786623045142.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x1d5aad3c0d6066078ea60f384a2492a550db30b0-1786623045142.png"
+ ],
+ "name": "STACKERS",
+ "symbol": "STACK",
+ "marketCap": "328316.712147829017752093",
+ "price": "0.00052860209114416726",
+ "priceChange24hPercent": "-8.22",
+ "volume24h": "2580.02370660504785297",
+ "communityRecognized": false,
+ "key": "evm--4663:0x1d5aad3c0d6066078ea60f384a2492a550db30b0",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xd1e861cc5eee7ea88649206b74504d78ccd7aeea",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xd1e861cc5eee7ea88649206b74504d78ccd7aeea-1786708875938.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xd1e861cc5eee7ea88649206b74504d78ccd7aeea-1786708875938.png"
+ ],
+ "name": "Alandale",
+ "symbol": "LUTE",
+ "marketCap": "453658.504315338644932708",
+ "price": "0.00853535222467991659",
+ "priceChange24hPercent": "0",
+ "volume24h": "0",
+ "communityRecognized": false,
+ "key": "evm--4663:0xd1e861cc5eee7ea88649206b74504d78ccd7aeea",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xbc9e7b1c5c0081f4ae85e71ec95703d3dec9ffad",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xbc9e7b1c5c0081f4ae85e71ec95703d3dec9ffad-1786449612801.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xbc9e7b1c5c0081f4ae85e71ec95703d3dec9ffad-1786449612801.png"
+ ],
+ "name": "Bucket Shop",
+ "symbol": "Bucket",
+ "marketCap": "3487714.386686102696356531",
+ "price": "0.00349446150649011294",
+ "priceChange24hPercent": "29.15",
+ "volume24h": "16778.2531163732060708",
+ "communityRecognized": false,
+ "key": "evm--4663:0xbc9e7b1c5c0081f4ae85e71ec95703d3dec9ffad",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x8d4dfaaa4198b6486e0293fec914c2b6a821d4dc",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x8d4dfaaa4198b6486e0293fec914c2b6a821d4dc-1784777336133.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x8d4dfaaa4198b6486e0293fec914c2b6a821d4dc-1784777336133.png"
+ ],
+ "name": "KITSU",
+ "symbol": "KITSU",
+ "marketCap": "1112588.761797044854702224",
+ "price": "0.00118106846427510267",
+ "priceChange24hPercent": "-1.16",
+ "volume24h": "6195.6512003737199649",
+ "communityRecognized": false,
+ "key": "evm--4663:0x8d4dfaaa4198b6486e0293fec914c2b6a821d4dc",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xe15db7c8547a0add11eb26a700246cca08aefce5",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xe15db7c8547a0add11eb26a700246cca08aefce5-1785409545430.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xe15db7c8547a0add11eb26a700246cca08aefce5-1785409545430.png"
+ ],
+ "name": "Shibinhood",
+ "symbol": "WOOF",
+ "marketCap": "1215493.548453345796307932",
+ "price": "0.00000121549354859677",
+ "priceChange24hPercent": "-0.99",
+ "volume24h": "1335.665580041330893",
+ "communityRecognized": true,
+ "key": "evm--4663:0xe15db7c8547a0add11eb26a700246cca08aefce5",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x69984ad3322300039f2855f81c44dbc532efe744",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x69984ad3322300039f2855f81c44dbc532efe744-1785359089193.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x69984ad3322300039f2855f81c44dbc532efe744-1785359089193.png"
+ ],
+ "name": "Tygr",
+ "symbol": "TYGR",
+ "marketCap": "283285.985380009240663877",
+ "price": "0.00031503893798487123",
+ "priceChange24hPercent": "2.58",
+ "volume24h": "1314.13312222189178081",
+ "communityRecognized": false,
+ "key": "evm--4663:0x69984ad3322300039f2855f81c44dbc532efe744",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xa0e67be79118704a35e7d4b20c3ec4df36ef6e10",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xa0e67be79118704a35e7d4b20c3ec4df36ef6e10-1788091298404.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xa0e67be79118704a35e7d4b20c3ec4df36ef6e10-1788091298404.png"
+ ],
+ "name": "Pons Index",
+ "symbol": "PONSFOLIO",
+ "marketCap": "34018.737934824480556041",
+ "price": "0.00003401873793482448",
+ "priceChange24hPercent": "0",
+ "volume24h": "0",
+ "communityRecognized": false,
+ "key": "evm--4663:0xa0e67be79118704a35e7d4b20c3ec4df36ef6e10",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x0e8720b8cd84f95b4b6696adbfa8063c4b8b94f2",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x0e8720b8cd84f95b4b6696adbfa8063c4b8b94f2-1784804605586.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x0e8720b8cd84f95b4b6696adbfa8063c4b8b94f2-1784804605586.png"
+ ],
+ "name": "Buy Button",
+ "symbol": "BUY",
+ "marketCap": "748201.591140112186514847",
+ "price": "0.00082408396918163004",
+ "priceChange24hPercent": "-3.48",
+ "volume24h": "7656.45854777761567737",
+ "communityRecognized": false,
+ "key": "evm--4663:0x0e8720b8cd84f95b4b6696adbfa8063c4b8b94f2",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x3f9f0b6073ee8c495aed96869af31850fed40feb",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x3f9f0b6073ee8c495aed96869af31850fed40feb-1785412064587.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x3f9f0b6073ee8c495aed96869af31850fed40feb-1785412064587.png"
+ ],
+ "name": "Dice Protocol",
+ "symbol": "DICE",
+ "marketCap": "246206.974893546367185266",
+ "price": "0.00025278197889207848",
+ "priceChange24hPercent": "-4.01",
+ "volume24h": "366.66669389857028397",
+ "communityRecognized": false,
+ "key": "evm--4663:0x3f9f0b6073ee8c495aed96869af31850fed40feb",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x298348d5b2e45c774e3ee4f1a0924071dfbdc8c7",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x298348d5b2e45c774e3ee4f1a0924071dfbdc8c7-1786190550357.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x298348d5b2e45c774e3ee4f1a0924071dfbdc8c7-1786190550357.png"
+ ],
+ "name": "swappy",
+ "symbol": "swappy",
+ "marketCap": "449114.126612554601310211",
+ "price": "0.0004491141266125546",
+ "priceChange24hPercent": "2.91",
+ "volume24h": "2259.8109747302917702",
+ "communityRecognized": false,
+ "key": "evm--4663:0x298348d5b2e45c774e3ee4f1a0924071dfbdc8c7",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xace55fe98bab14366dd49ab5aa5df76aa11a3c6f",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xace55fe98bab14366dd49ab5aa5df76aa11a3c6f-1785845024248.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xace55fe98bab14366dd49ab5aa5df76aa11a3c6f-1785845024248.png"
+ ],
+ "name": "Wojak",
+ "symbol": "WOJAK",
+ "marketCap": "1692216.549970488123565045",
+ "price": "0.00185787421689451655",
+ "priceChange24hPercent": "-7.74",
+ "volume24h": "5839.98104851533151364",
+ "communityRecognized": false,
+ "key": "evm--4663:0xace55fe98bab14366dd49ab5aa5df76aa11a3c6f",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xe4b8723d202fdd0298b1d7496a86656b2986c532",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xe4b8723d202fdd0298b1d7496a86656b2986c532-1786622839074.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xe4b8723d202fdd0298b1d7496a86656b2986c532-1786622839074.png"
+ ],
+ "name": "StockRip",
+ "symbol": "RIP",
+ "marketCap": "938245.272755205458732501",
+ "price": "0.0009382885426150306",
+ "priceChange24hPercent": "0.43",
+ "volume24h": "809.1337675890997282",
+ "communityRecognized": false,
+ "key": "evm--4663:0xe4b8723d202fdd0298b1d7496a86656b2986c532",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xfe242d1da8fd04f6a1f80b6d3d807b02e062ad4e",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xfe242d1da8fd04f6a1f80b6d3d807b02e062ad4e-1787832041620.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xfe242d1da8fd04f6a1f80b6d3d807b02e062ad4e-1787832041620.png"
+ ],
+ "name": "Obscura",
+ "symbol": "OBS",
+ "marketCap": "500688.818984870549311758",
+ "price": "0.00050403564936191361",
+ "priceChange24hPercent": "-0.15",
+ "volume24h": "1117.364393579750215",
+ "communityRecognized": false,
+ "key": "evm--4663:0xfe242d1da8fd04f6a1f80b6d3d807b02e062ad4e",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x14641000a501bdc736116abf84e6fcea9b90a713",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x14641000a501bdc736116abf84e6fcea9b90a713-1788178423240.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x14641000a501bdc736116abf84e6fcea9b90a713-1788178423240.png"
+ ],
+ "name": "MESH Gateway",
+ "symbol": "MESH",
+ "marketCap": "1208210.549215450362706768",
+ "price": "0.00120821054921545036",
+ "priceChange24hPercent": "-3.88",
+ "volume24h": "3016.4758538643832347",
+ "communityRecognized": false,
+ "key": "evm--4663:0x14641000a501bdc736116abf84e6fcea9b90a713",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x7ba36be14dd06ba492f08be6c1b2979c1d0b652c",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x7ba36be14dd06ba492f08be6c1b2979c1d0b652c-1788178016235.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x7ba36be14dd06ba492f08be6c1b2979c1d0b652c-1788178016235.png"
+ ],
+ "name": "PerpsHood",
+ "symbol": "PERPSHOOD",
+ "marketCap": "3288366.118814719718758381",
+ "price": "0.00333761406584314507",
+ "priceChange24hPercent": "11.18",
+ "volume24h": "58395.535673114948421",
+ "communityRecognized": false,
+ "key": "evm--4663:0x7ba36be14dd06ba492f08be6c1b2979c1d0b652c",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x77061b45c5e4d440bd681b5f72bd0f4231a6fc04",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x77061b45c5e4d440bd681b5f72bd0f4231a6fc04-1788004867211.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x77061b45c5e4d440bd681b5f72bd0f4231a6fc04-1788004867211.png"
+ ],
+ "name": "RobinVault",
+ "symbol": "ROBINVAULT",
+ "marketCap": "397586.87667975865000995",
+ "price": "0.00073326281522966963",
+ "priceChange24hPercent": "-9.83",
+ "volume24h": "5452.8609022301794384",
+ "communityRecognized": false,
+ "key": "evm--4663:0x77061b45c5e4d440bd681b5f72bd0f4231a6fc04",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x5173b8ea6923c2d40267890d45c46a3480954773",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x5173b8ea6923c2d40267890d45c46a3480954773-1786709002621.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x5173b8ea6923c2d40267890d45c46a3480954773-1786709002621.png"
+ ],
+ "name": "World is Flat",
+ "symbol": "WIF",
+ "marketCap": "992458.903324373126169822",
+ "price": "0.00099245890332437313",
+ "priceChange24hPercent": "-6.39",
+ "volume24h": "5400.91003530705774187",
+ "communityRecognized": false,
+ "key": "evm--4663:0x5173b8ea6923c2d40267890d45c46a3480954773",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x5aed379a72bd2533371d153135c47d5eb61babc8",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x5aed379a72bd2533371d153135c47d5eb61babc8-1787054408027.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x5aed379a72bd2533371d153135c47d5eb61babc8-1787054408027.png"
+ ],
+ "name": "Strike",
+ "symbol": "STRIKE",
+ "marketCap": "168166.235763636933834894",
+ "price": "0.00168222444475767271",
+ "priceChange24hPercent": "0",
+ "volume24h": "0",
+ "communityRecognized": false,
+ "key": "evm--4663:0x5aed379a72bd2533371d153135c47d5eb61babc8",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xb48d34dd8b53324cb8525461c8e548522db885ec",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xb48d34dd8b53324cb8525461c8e548522db885ec-1787918407513.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xb48d34dd8b53324cb8525461c8e548522db885ec-1787918407513.png"
+ ],
+ "name": "Sluice",
+ "symbol": "SLUICE",
+ "marketCap": "132222.15206775523555463",
+ "price": "0.00013222215206775524",
+ "priceChange24hPercent": "-2.06",
+ "volume24h": "148.622282392306725",
+ "communityRecognized": false,
+ "key": "evm--4663:0xb48d34dd8b53324cb8525461c8e548522db885ec",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xa80eb66b3e0cf66ccb46f8b8c9e7ff5803eeb820",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xa80eb66b3e0cf66ccb46f8b8c9e7ff5803eeb820-1784949348295.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xa80eb66b3e0cf66ccb46f8b8c9e7ff5803eeb820-1784949348295.png"
+ ],
+ "name": "Wen Lambo",
+ "symbol": "WEN",
+ "marketCap": "1312267.572898479705983932",
+ "price": "0.00131226757289847971",
+ "priceChange24hPercent": "-2.77",
+ "volume24h": "5430.05839718826059869",
+ "communityRecognized": false,
+ "key": "evm--4663:0xa80eb66b3e0cf66ccb46f8b8c9e7ff5803eeb820",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ }
+ ],
+ "watchlist": [
+ {
+ "isNative": true,
+ "networkId": "btc--0",
+ "address": "",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/btc--0/tokens/address-.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/btc--0/tokens/address-.png"
+ ],
+ "name": "Bitcoin",
+ "symbol": "BTC",
+ "marketCap": "1583042059097",
+ "price": "78831",
+ "priceChange24hPercent": "-0.98466",
+ "volume24h": "-",
+ "communityRecognized": true,
+ "key": "btc--0:",
+ "kind": "token",
+ "sourceCategory": "trending"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x39dbed3a2bd333467115de45665cc57f813c4571",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x39dbed3a2bd333467115de45665cc57f813c4571-1785145437955.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x39dbed3a2bd333467115de45665cc57f813c4571-1785145437955.png"
+ ],
+ "name": "Pons",
+ "symbol": "PONS",
+ "marketCap": "502022018.508028785669424106",
+ "price": "0.71717848311520679734",
+ "priceChange24hPercent": "-2.57",
+ "volume24h": "119154009.59381412371511201962",
+ "communityRecognized": true,
+ "key": "evm--4663:0x39dbed3a2bd333467115de45665cc57f813c4571",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x4a72b9702f991b790788f8afa9e7112541f4e8f8",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/a2e5ad0ff8689f1c746d6b07fd9718545cd44c67e13dabe8ba7242d613586821",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/a2e5ad0ff8689f1c746d6b07fd9718545cd44c67e13dabe8ba7242d613586821"
+ ],
+ "name": "Route",
+ "symbol": "ROUTE",
+ "marketCap": "5153862.727846807731733948",
+ "price": "0.00515386272784680773",
+ "priceChange24hPercent": "110260.3",
+ "volume24h": "13215305.409742539148642984",
+ "communityRecognized": false,
+ "key": "evm--4663:0x4a72b9702f991b790788f8afa9e7112541f4e8f8",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x888656062164473c93c06ca89ae4d868d606ffff",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/4a563ac1c0cd1b7ed43429ee1ad5750a8ca22c0eaaa08d0427a8a86e8a2348f0",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/4a563ac1c0cd1b7ed43429ee1ad5750a8ca22c0eaaa08d0427a8a86e8a2348f0"
+ ],
+ "name": "Fat Panda",
+ "symbol": "FATPANDA",
+ "marketCap": "2112405.287274850220596805",
+ "price": "0.00211240528727485022",
+ "priceChange24hPercent": "-56.63",
+ "volume24h": "2702677.879404877390308051",
+ "communityRecognized": false,
+ "key": "evm--56:0x888656062164473c93c06ca89ae4d868d606ffff",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xe2324ff2a59f8ecba8c321c6466e59121c00e795",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/84804585551812a64183c44a4e291f2332c9a5ff2d07e52dbcd3b81d60c989b3",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/84804585551812a64183c44a4e291f2332c9a5ff2d07e52dbcd3b81d60c989b3"
+ ],
+ "name": "Commodity Market Exchange",
+ "symbol": "CME",
+ "marketCap": "3213737.655225761637941131",
+ "price": "0.00321373765522576164",
+ "priceChange24hPercent": "69482.97",
+ "volume24h": "14324820.73497960396443182",
+ "communityRecognized": false,
+ "key": "evm--4663:0xe2324ff2a59f8ecba8c321c6466e59121c00e795",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xc9d825e83aada475bd4d38c8ca984ed746277777",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xc9d825e83aada475bd4d38c8ca984ed746277777-1788595746569.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xc9d825e83aada475bd4d38c8ca984ed746277777-1788595746569.png"
+ ],
+ "name": "Stonks",
+ "symbol": "Stonks",
+ "marketCap": "3383539.04713083920517472",
+ "price": "0.00338353904713083921",
+ "priceChange24hPercent": "-74.33",
+ "volume24h": "9791799.996551367015577699",
+ "communityRecognized": true,
+ "key": "evm--56:0xc9d825e83aada475bd4d38c8ca984ed746277777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xd270d4e1ec6e6e0d28c0ecb8be966ec75997ffff",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/f3bf6d8a8bc7f4be0ec6949fa0ebf538953fcd6443cd6681e394f790b6546a1e",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/f3bf6d8a8bc7f4be0ec6949fa0ebf538953fcd6443cd6681e394f790b6546a1e"
+ ],
+ "name": "4Stock",
+ "symbol": "4Stock",
+ "marketCap": "7621641.458924761443936601",
+ "price": "0.00778563330208788574",
+ "priceChange24hPercent": "11918.04",
+ "volume24h": "5861232.452829224806200048",
+ "communityRecognized": false,
+ "key": "evm--56:0xd270d4e1ec6e6e0d28c0ecb8be966ec75997ffff",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x6b1d42927b1a84ec28fa88d4fc6fa7af404966be",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x6b1d42927b1a84ec28fa88d4fc6fa7af404966be-1788091561508.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x6b1d42927b1a84ec28fa88d4fc6fa7af404966be-1788091561508.png"
+ ],
+ "name": "PAIR",
+ "symbol": "PAIR",
+ "marketCap": "13830251.410931131946963254",
+ "price": "0.01543467921677988764",
+ "priceChange24hPercent": "-29.54",
+ "volume24h": "9110331.02691256783262729",
+ "communityRecognized": false,
+ "key": "evm--4663:0x6b1d42927b1a84ec28fa88d4fc6fa7af404966be",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x8fdb0647e2bf11c8d88ef7825905f5f428864444",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/f3bf6d8a8bc7f4be0ec6949fa0ebf538953fcd6443cd6681e394f790b6546a1e",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/f3bf6d8a8bc7f4be0ec6949fa0ebf538953fcd6443cd6681e394f790b6546a1e"
+ ],
+ "name": "4cat",
+ "symbol": "4cat",
+ "marketCap": "119643.440010641813385865",
+ "price": "0.00011964344001064181",
+ "priceChange24hPercent": "30.78",
+ "volume24h": "168819.72587859324477851",
+ "communityRecognized": false,
+ "key": "evm--56:0x8fdb0647e2bf11c8d88ef7825905f5f428864444",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x17616c8f6cacf14fcff63f3188a30691802effff",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/cfcf37bcd1b22ee8594b38b7c1bbb0d2aafe3f8ad70ec9d9cbd108990326678d",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/cfcf37bcd1b22ee8594b38b7c1bbb0d2aafe3f8ad70ec9d9cbd108990326678d"
+ ],
+ "name": "Built and Code",
+ "symbol": "BNC",
+ "marketCap": "717067.38067697511935398",
+ "price": "0.00071706738067697512",
+ "priceChange24hPercent": "50.02",
+ "volume24h": "342503.783186811349238536",
+ "communityRecognized": false,
+ "key": "evm--56:0x17616c8f6cacf14fcff63f3188a30691802effff",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x0000000005aca17e8bd5779fc87e13cb433aed24",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x0000000005aca17e8bd5779fc87e13cb433aed24-1788697955302.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x0000000005aca17e8bd5779fc87e13cb433aed24-1788697955302.png"
+ ],
+ "name": "NUKE",
+ "symbol": "NUKE",
+ "marketCap": "9437039.871545636712869593",
+ "price": "67.78599858061051997161",
+ "priceChange24hPercent": "-16.73",
+ "volume24h": "2168218.88959348665401411",
+ "communityRecognized": false,
+ "key": "evm--4663:0x0000000005aca17e8bd5779fc87e13cb433aed24",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xe9337dde3dd9e97f1f45a56412767ce5098e7777",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xe9337dde3dd9e97f1f45a56412767ce5098e7777-1785657919485.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xe9337dde3dd9e97f1f45a56412767ce5098e7777-1785657919485.png"
+ ],
+ "name": "何必东奔西走 币安全部都有",
+ "symbol": "币有",
+ "marketCap": "3256550.609706267519426927",
+ "price": "0.00325655060991233998",
+ "priceChange24hPercent": "-21.88",
+ "volume24h": "2570704.089620746646726458",
+ "communityRecognized": false,
+ "key": "evm--56:0xe9337dde3dd9e97f1f45a56412767ce5098e7777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xa6b53819f5bf521945fceb1f9bbb3a7a7b4effff",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/e5fb48d54702b49bd31d0551378667606ad6bb5e4e33b94fc32179b14469f2d0",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/e5fb48d54702b49bd31d0551378667606ad6bb5e4e33b94fc32179b14469f2d0"
+ ],
+ "name": "CEA Industries",
+ "symbol": "Vape",
+ "marketCap": "194534.487611051174546684",
+ "price": "0.00019453448761105117",
+ "priceChange24hPercent": "-18.03",
+ "volume24h": "288065.821597229318707959",
+ "communityRecognized": false,
+ "key": "evm--56:0xa6b53819f5bf521945fceb1f9bbb3a7a7b4effff",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xab093def657f15df31b33922a95e047add645b29",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xab093def657f15df31b33922a95e047add645b29-1788523212752.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xab093def657f15df31b33922a95e047add645b29-1788523212752.png"
+ ],
+ "name": "MUSHROOM",
+ "symbol": "SHROOM",
+ "marketCap": "30848724.563377800877252185",
+ "price": "0.03124499606092514299",
+ "priceChange24hPercent": "11.39",
+ "volume24h": "12033759.920329641856353793",
+ "communityRecognized": true,
+ "key": "evm--4663:0xab093def657f15df31b33922a95e047add645b29",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x2e8c31162b855a2ffa90f6f8634643ad6f111e18",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x2e8c31162b855a2ffa90f6f8634643ad6f111e18-1785845221968.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x2e8c31162b855a2ffa90f6f8634643ad6f111e18-1785845221968.png"
+ ],
+ "name": "Artificial Inu",
+ "symbol": "AI",
+ "marketCap": "256039378.294288995153516342",
+ "price": "0.25826194354846087765",
+ "priceChange24hPercent": "6.42",
+ "volume24h": "42581740.463606653385420388",
+ "communityRecognized": true,
+ "key": "evm--4663:0x2e8c31162b855a2ffa90f6f8634643ad6f111e18",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x7bc70ae0f2a67d2fdc0180a697a611f21c857777",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x7bc70ae0f2a67d2fdc0180a697a611f21c857777-1788768091330.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x7bc70ae0f2a67d2fdc0180a697a611f21c857777-1788768091330.png"
+ ],
+ "name": "BEN",
+ "symbol": "BEN",
+ "marketCap": "4582788.885653946266778318",
+ "price": "0.00460523236960062734",
+ "priceChange24hPercent": "-55.95",
+ "volume24h": "13597907.093067760127587297",
+ "communityRecognized": false,
+ "key": "evm--56:0x7bc70ae0f2a67d2fdc0180a697a611f21c857777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xd9db30bb0d2b8d2eae3826a1372117e058791e18",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xd9db30bb0d2b8d2eae3826a1372117e058791e18-1788091222725.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xd9db30bb0d2b8d2eae3826a1372117e058791e18-1788091222725.png"
+ ],
+ "name": "Memory cow Moo",
+ "symbol": "MOO",
+ "marketCap": "26232322.129356837995581063",
+ "price": "0.02652530467317783355",
+ "priceChange24hPercent": "34.62",
+ "volume24h": "6036197.57301294424878917",
+ "communityRecognized": true,
+ "key": "evm--4663:0xd9db30bb0d2b8d2eae3826a1372117e058791e18",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xb3a1e1f7ae6c90c707ec3c75e99c359482fea5b9",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/488d50fb3eb6f79c9440d809ef90dc3a197facbca4792e913cf6d2ab384a3fbe",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/488d50fb3eb6f79c9440d809ef90dc3a197facbca4792e913cf6d2ab384a3fbe"
+ ],
+ "name": "Sock",
+ "symbol": "SOCK",
+ "marketCap": "5094939.109274301369453039",
+ "price": "0.00509603224666357303",
+ "priceChange24hPercent": "4379.95",
+ "volume24h": "25469336.194111872473759698",
+ "communityRecognized": false,
+ "key": "evm--56:0xb3a1e1f7ae6c90c707ec3c75e99c359482fea5b9",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x7ba36be14dd06ba492f08be6c1b2979c1d0b652c",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x7ba36be14dd06ba492f08be6c1b2979c1d0b652c-1788178016235.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x7ba36be14dd06ba492f08be6c1b2979c1d0b652c-1788178016235.png"
+ ],
+ "name": "PerpsHood",
+ "symbol": "PERPSHOOD",
+ "marketCap": "3288366.118814719718758381",
+ "price": "0.00333761406584314507",
+ "priceChange24hPercent": "221.19",
+ "volume24h": "3608182.64584619393431802184",
+ "communityRecognized": false,
+ "key": "evm--4663:0x7ba36be14dd06ba492f08be6c1b2979c1d0b652c",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xfa6d9b504848606eb9aec04ccc161d169b3f2159",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xfa6d9b504848606eb9aec04ccc161d169b3f2159-1788768839130.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xfa6d9b504848606eb9aec04ccc161d169b3f2159-1788768839130.png"
+ ],
+ "name": "BREW",
+ "symbol": "BREW",
+ "marketCap": "6401595.848431142137785916",
+ "price": "0.00640159584843114214",
+ "priceChange24hPercent": "-73.69",
+ "volume24h": "19507582.397905773925380663",
+ "communityRecognized": true,
+ "key": "evm--56:0xfa6d9b504848606eb9aec04ccc161d169b3f2159",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x6d11782ef6cbe773da2defef612f9a57c54012bf",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/aed9300fe93af8a077cf133b5d703e28386f95d7724261f173da91a4cac7df65",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/aed9300fe93af8a077cf133b5d703e28386f95d7724261f173da91a4cac7df65"
+ ],
+ "name": "Macintosh",
+ "symbol": "MACINTOSH",
+ "marketCap": "1436439.323467978675653196",
+ "price": "0.00143643932346797868",
+ "priceChange24hPercent": "21220.82",
+ "volume24h": "901118.874514794924812852",
+ "communityRecognized": false,
+ "key": "evm--4663:0x6d11782ef6cbe773da2defef612f9a57c54012bf",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x15d36b6a28d8327abc7afabf0f106ae2c9af5c4d",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x15d36b6a28d8327abc7afabf0f106ae2c9af5c4d-1788523244923.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x15d36b6a28d8327abc7afabf0f106ae2c9af5c4d-1788523244923.png"
+ ],
+ "name": "Pare",
+ "symbol": "PARE",
+ "marketCap": "12229018.110352449879813527",
+ "price": "0.01222901811035244988",
+ "priceChange24hPercent": "-22.23",
+ "volume24h": "7260261.829666101543245825",
+ "communityRecognized": false,
+ "key": "evm--4663:0x15d36b6a28d8327abc7afabf0f106ae2c9af5c4d",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x79a74fd91f8e1c4ab8e76253dec5c91f3094393f",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/e1f481a4066feec841bf3345c090a6cdd9fd2274a972cf1981f3a0a234f42d9c",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/e1f481a4066feec841bf3345c090a6cdd9fd2274a972cf1981f3a0a234f42d9c"
+ ],
+ "name": "Superstables",
+ "symbol": "STBL",
+ "marketCap": "431790.28727990802483224",
+ "price": "0.00043179028727990802",
+ "priceChange24hPercent": "9597.98",
+ "volume24h": "1203378.96681243080462673",
+ "communityRecognized": false,
+ "key": "evm--4663:0x79a74fd91f8e1c4ab8e76253dec5c91f3094393f",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x7163ae1b5aea2f09ebc609c52b4dcac0a7a4bc2d",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/b565852235f4b58795118e627a62621101b692c4e2e2801f518600ad55c59755",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/b565852235f4b58795118e627a62621101b692c4e2e2801f518600ad55c59755"
+ ],
+ "name": "GAGE",
+ "symbol": "GAGE",
+ "marketCap": "2110500.95003322357189616",
+ "price": "0.00211050095003322357",
+ "priceChange24hPercent": "47018.2",
+ "volume24h": "5738956.628602400357386501",
+ "communityRecognized": false,
+ "key": "evm--4663:0x7163ae1b5aea2f09ebc609c52b4dcac0a7a4bc2d",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xa3602804e096cb73bd8344afc1ff3f3390b899c5",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xa3602804e096cb73bd8344afc1ff3f3390b899c5-1788697149485.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xa3602804e096cb73bd8344afc1ff3f3390b899c5-1788697149485.png"
+ ],
+ "name": "PEZ",
+ "symbol": "PEZ",
+ "marketCap": "2566956.157709543351335719",
+ "price": "0.00256696182716853727",
+ "priceChange24hPercent": "-45.57",
+ "volume24h": "4492570.06394753310215811",
+ "communityRecognized": false,
+ "key": "evm--4663:0xa3602804e096cb73bd8344afc1ff3f3390b899c5",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x76ed1e2a8fc3873fcb5c514688ca2fe8a3600b7f",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/1dbcb030f10554487ca05c3aaa7fcc97cef5b687e39b63bafb0d000d20616792",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/1dbcb030f10554487ca05c3aaa7fcc97cef5b687e39b63bafb0d000d20616792"
+ ],
+ "name": "LAPTOP",
+ "symbol": "LAPTOP",
+ "marketCap": "1234221.162462544668452627",
+ "price": "0.00123422116246254467",
+ "priceChange24hPercent": "23781.2",
+ "volume24h": "13303365.756609163628066405",
+ "communityRecognized": false,
+ "key": "evm--4663:0x76ed1e2a8fc3873fcb5c514688ca2fe8a3600b7f",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x198dba421a7db566a90da5de7901abe3443b4444",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x198dba421a7db566a90da5de7901abe3443b4444-1783844840152.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x198dba421a7db566a90da5de7901abe3443b4444-1783844840152.png"
+ ],
+ "name": "富贵",
+ "symbol": "富贵",
+ "marketCap": "1997835.58315835493824872",
+ "price": "0.00199783560433451247",
+ "priceChange24hPercent": "-37.48",
+ "volume24h": "1376477.299472210131744353",
+ "communityRecognized": false,
+ "key": "evm--56:0x198dba421a7db566a90da5de7901abe3443b4444",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x98096d17e191b3da1d5f99a6d7b3584351b11e18",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x98096d17e191b3da1d5f99a6d7b3584351b11e18-1787918411975.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x98096d17e191b3da1d5f99a6d7b3584351b11e18-1787918411975.png"
+ ],
+ "name": "Boner Coin",
+ "symbol": "BONER",
+ "marketCap": "59400539.57912752890287799",
+ "price": "0.05940055223813601532",
+ "priceChange24hPercent": "-17.7",
+ "volume24h": "14091363.802683949963496155",
+ "communityRecognized": true,
+ "key": "evm--4663:0x98096d17e191b3da1d5f99a6d7b3584351b11e18",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xafe41f4356c24f716111de1fbbc84e061d291e18",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xafe41f4356c24f716111de1fbbc84e061d291e18-1788264039086.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xafe41f4356c24f716111de1fbbc84e061d291e18-1788264039086.png"
+ ],
+ "name": "Cache Cow",
+ "symbol": "CACHE",
+ "marketCap": "1050419.188538898842399832",
+ "price": "0.00105041918853889884",
+ "priceChange24hPercent": "35.99",
+ "volume24h": "699628.143460448453121901",
+ "communityRecognized": false,
+ "key": "evm--4663:0xafe41f4356c24f716111de1fbbc84e061d291e18",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x12d5ee7917ca430073c3a638ee1e6f0648a98a01",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x12d5ee7917ca430073c3a638ee1e6f0648a98a01-1788350677314.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x12d5ee7917ca430073c3a638ee1e6f0648a98a01-1788350677314.png"
+ ],
+ "name": "FATCOIN",
+ "symbol": "FATCOIN",
+ "marketCap": "15350737.661635553569380883",
+ "price": "0.01535073766163555357",
+ "priceChange24hPercent": "-14.55",
+ "volume24h": "7480591.114882551130769972",
+ "communityRecognized": false,
+ "key": "evm--4663:0x12d5ee7917ca430073c3a638ee1e6f0648a98a01",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xd5f1afea47b1a9eab414d2ee740cf1d6d039e725",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xd5f1afea47b1a9eab414d2ee740cf1d6d039e725-1788091431352.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xd5f1afea47b1a9eab414d2ee740cf1d6d039e725-1788091431352.png"
+ ],
+ "name": "microduck",
+ "symbol": "microduck",
+ "marketCap": "18228022.597202926448267905",
+ "price": "0.01822802259720292645",
+ "priceChange24hPercent": "-20.53",
+ "volume24h": "6905161.810830367319728709",
+ "communityRecognized": false,
+ "key": "evm--4663:0xd5f1afea47b1a9eab414d2ee740cf1d6d039e725",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x020bfc650a365f8bb26819deaabf3e21291018b4",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x020bfc650a365f8bb26819deaabf3e21291018b4-1784778353843.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x020bfc650a365f8bb26819deaabf3e21291018b4-1784778353843.png"
+ ],
+ "name": "Cash Cat",
+ "symbol": "CASHCAT",
+ "marketCap": "188581610.80185770225929897",
+ "price": "0.19084952071561432263",
+ "priceChange24hPercent": "-16.46",
+ "volume24h": "21049916.65702474858957836048",
+ "communityRecognized": true,
+ "key": "evm--4663:0x020bfc650a365f8bb26819deaabf3e21291018b4",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "Ai66LHZG9MCzg1WKdawwqduVAXpNDUuV8M3uyq5ppump",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-Ai66LHZG9MCzg1WKdawwqduVAXpNDUuV8M3uyq5ppump-1785164716552.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-Ai66LHZG9MCzg1WKdawwqduVAXpNDUuV8M3uyq5ppump-1785164716552.png"
+ ],
+ "name": "Catecoin",
+ "symbol": "CATE",
+ "marketCap": "27905084.425795496638311706",
+ "price": "0.0289423263308686502",
+ "priceChange24hPercent": "-12.29",
+ "volume24h": "4543245.05224630659",
+ "communityRecognized": true,
+ "key": "sol--101:Ai66LHZG9MCzg1WKdawwqduVAXpNDUuV8M3uyq5ppump",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xbe98b75361935b18d688409424a869a4c3dc7401",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xbe98b75361935b18d688409424a869a4c3dc7401-1788436898916.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xbe98b75361935b18d688409424a869a4c3dc7401-1788436898916.png"
+ ],
+ "name": "Send Nudes",
+ "symbol": "NUDES",
+ "marketCap": "14588111.302047615366721809",
+ "price": "0.01458811130204761537",
+ "priceChange24hPercent": "-29.58",
+ "volume24h": "5246943.052218644883232067",
+ "communityRecognized": false,
+ "key": "evm--4663:0xbe98b75361935b18d688409424a869a4c3dc7401",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xbc9cc4b93a08b2dfba87067a9c53e713db3314ce",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/a34bd343ce2418e2688d9be4430fef2415dee4b660c25a3bbbcaaf3481e299a4",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/a34bd343ce2418e2688d9be4430fef2415dee4b660c25a3bbbcaaf3481e299a4"
+ ],
+ "name": "Pink Sheets",
+ "symbol": "PINK",
+ "marketCap": "933339.56396972196933734",
+ "price": "0.00093333956396972197",
+ "priceChange24hPercent": "21129.36",
+ "volume24h": "10463384.748561718103024301",
+ "communityRecognized": false,
+ "key": "evm--4663:0xbc9cc4b93a08b2dfba87067a9c53e713db3314ce",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xaa07a0e9209e16ac99708c3ec70159c6ef3128a3",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xaa07a0e9209e16ac99708c3ec70159c6ef3128a3-1788352120153.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xaa07a0e9209e16ac99708c3ec70159c6ef3128a3-1788352120153.png"
+ ],
+ "name": "Orbio.so",
+ "symbol": "ORBIO",
+ "marketCap": "17993185.212207430708307963",
+ "price": "0.01894019496021834811",
+ "priceChange24hPercent": "49.04",
+ "volume24h": "4933914.013449690760213662",
+ "communityRecognized": false,
+ "key": "evm--4663:0xaa07a0e9209e16ac99708c3ec70159c6ef3128a3",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x62cd5cd9d354a2a50affe9efa21c8918b9640a5b",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x62cd5cd9d354a2a50affe9efa21c8918b9640a5b-1788698087258.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x62cd5cd9d354a2a50affe9efa21c8918b9640a5b-1788698087258.png"
+ ],
+ "name": "LADY Exchange",
+ "symbol": "LDX",
+ "marketCap": "859651.651645633726589384",
+ "price": "0.00085965165164563373",
+ "priceChange24hPercent": "-62.22",
+ "volume24h": "2069993.034983544011659352",
+ "communityRecognized": false,
+ "key": "evm--4663:0x62cd5cd9d354a2a50affe9efa21c8918b9640a5b",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x18e674231a58c239dc7daedcffe15ec3a24cff5c",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x18e674231a58c239dc7daedcffe15ec3a24cff5c-1786190410593.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x18e674231a58c239dc7daedcffe15ec3a24cff5c-1786190410593.png"
+ ],
+ "name": "Hookr.fun",
+ "symbol": "HOOKR",
+ "marketCap": "16618445.208237637803108274",
+ "price": "0.0166791731104542394",
+ "priceChange24hPercent": "12.23",
+ "volume24h": "3247486.43125150977558586883",
+ "communityRecognized": true,
+ "key": "evm--4663:0x18e674231a58c239dc7daedcffe15ec3a24cff5c",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xe2dae1c072b9f66bed999873b94798b2152af7e1",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xe2dae1c072b9f66bed999873b94798b2152af7e1-1788697020328.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xe2dae1c072b9f66bed999873b94798b2152af7e1-1788697020328.png"
+ ],
+ "name": "Arbitrage Ape",
+ "symbol": "AA",
+ "marketCap": "4507869.835267490011775813",
+ "price": "0.00458935283081802597",
+ "priceChange24hPercent": "35.63",
+ "volume24h": "1782542.591024772863069085",
+ "communityRecognized": false,
+ "key": "evm--4663:0xe2dae1c072b9f66bed999873b94798b2152af7e1",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xab35d04e1ee39c789c4a65d522417b3c7f2e4723",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/fac85c085d11f1aa6ae21cc9ad0bb550feec3cb25196bd13e83f1f5c0ef580c0",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/fac85c085d11f1aa6ae21cc9ad0bb550feec3cb25196bd13e83f1f5c0ef580c0"
+ ],
+ "name": "JT MARLIN",
+ "symbol": "MARLIN",
+ "marketCap": "1254614.259705579781749622",
+ "price": "0.00125461425970557978",
+ "priceChange24hPercent": "27893.17",
+ "volume24h": "2220850.592077113441773204",
+ "communityRecognized": false,
+ "key": "evm--4663:0xab35d04e1ee39c789c4a65d522417b3c7f2e4723",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x7df5daaf80e65dfcc7a1435d9b52bcf2b5753fbe",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x7df5daaf80e65dfcc7a1435d9b52bcf2b5753fbe-1788696318342.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x7df5daaf80e65dfcc7a1435d9b52bcf2b5753fbe-1788696318342.png"
+ ],
+ "name": "Unipcs",
+ "symbol": "UNIPCS",
+ "marketCap": "951836.404712392376741929",
+ "price": "0.00095317681003142395",
+ "priceChange24hPercent": "-28.82",
+ "volume24h": "1321402.4117817185941111",
+ "communityRecognized": false,
+ "key": "evm--4663:0x7df5daaf80e65dfcc7a1435d9b52bcf2b5753fbe",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x11b70d0243baf75e85ce03201a92b5b7c33beb59",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x11b70d0243baf75e85ce03201a92b5b7c33beb59-1788697768561.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x11b70d0243baf75e85ce03201a92b5b7c33beb59-1788697768561.png"
+ ],
+ "name": "Robin the Frog",
+ "symbol": "ROBIN",
+ "marketCap": "5059217.747200642391632707",
+ "price": "0.00509749368744337543",
+ "priceChange24hPercent": "-62.03",
+ "volume24h": "3973756.007110797340013297",
+ "communityRecognized": false,
+ "key": "evm--4663:0x11b70d0243baf75e85ce03201a92b5b7c33beb59",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "7Y7V1a4m2nWK7BMgbka5B4vR1pDvCK7yva3Hnrqkraze",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/fa21eef99efb8b7842c131cfa852344958bd4c32e76767446fd4983cb58d673c",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/fa21eef99efb8b7842c131cfa852344958bd4c32e76767446fd4983cb58d673c"
+ ],
+ "name": "Nasduck",
+ "symbol": "Nasduck",
+ "marketCap": "4892558.96341480044114222",
+ "price": "0.005087934370491688",
+ "priceChange24hPercent": "129.81",
+ "volume24h": "16073660.300795430498330326",
+ "communityRecognized": false,
+ "key": "sol--101:7Y7V1a4m2nWK7BMgbka5B4vR1pDvCK7yva3Hnrqkraze",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xe934e36a439c94017b64a3fece66af12099abf50",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xe934e36a439c94017b64a3fece66af12099abf50-1785290631562.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xe934e36a439c94017b64a3fece66af12099abf50-1785290631562.png"
+ ],
+ "name": "StonkBroker",
+ "symbol": "STONKBROKER",
+ "marketCap": "20652805.024120563132606053",
+ "price": "0.01688272635986417616",
+ "priceChange24hPercent": "24.75",
+ "volume24h": "4521406.59327893300333719145",
+ "communityRecognized": true,
+ "key": "evm--4663:0xe934e36a439c94017b64a3fece66af12099abf50",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x2ab8a4dd2191989ac2898006df350b236d2b7777",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x2ab8a4dd2191989ac2898006df350b236d2b7777-1787990461314.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x2ab8a4dd2191989ac2898006df350b236d2b7777-1787990461314.png"
+ ],
+ "name": "施工猫",
+ "symbol": "Sue",
+ "marketCap": "3511764.100491869967331388",
+ "price": "0.00351176429196420492",
+ "priceChange24hPercent": "-41.97",
+ "volume24h": "3506738.399804176643143205",
+ "communityRecognized": true,
+ "key": "evm--56:0x2ab8a4dd2191989ac2898006df350b236d2b7777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xca9c78dd337a67f6e0077f65f5e9218719d30edf",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xca9c78dd337a67f6e0077f65f5e9218719d30edf-1785280831816.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xca9c78dd337a67f6e0077f65f5e9218719d30edf-1785280831816.png"
+ ],
+ "name": "NetNet",
+ "symbol": "NET",
+ "marketCap": "3920472.764198924127605602",
+ "price": "668.59150927027122099446",
+ "priceChange24hPercent": "-11.34",
+ "volume24h": "4895982.00999602102097454",
+ "communityRecognized": false,
+ "key": "evm--4663:0xca9c78dd337a67f6e0077f65f5e9218719d30edf",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xe9bc5c6a86caa44fd7b469bf3cc7c563e4f77777",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xe9bc5c6a86caa44fd7b469bf3cc7c563e4f77777-1785831565492.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xe9bc5c6a86caa44fd7b469bf3cc7c563e4f77777-1785831565492.png"
+ ],
+ "name": "Giggle Mascot",
+ "symbol": "Max",
+ "marketCap": "12153096.544639604735301731",
+ "price": "0.01215309770392200853",
+ "priceChange24hPercent": "-44.78",
+ "volume24h": "2394682.566351549068355951",
+ "communityRecognized": false,
+ "key": "evm--56:0xe9bc5c6a86caa44fd7b469bf3cc7c563e4f77777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x451b42a15100c340ca12f7c66de06fac5ea2d751",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x451b42a15100c340ca12f7c66de06fac5ea2d751-1787832041620.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x451b42a15100c340ca12f7c66de06fac5ea2d751-1787832041620.png"
+ ],
+ "name": "Longbow",
+ "symbol": "BOW",
+ "marketCap": "5787414.729870295757998562",
+ "price": "0.00578741472987029576",
+ "priceChange24hPercent": "-30.41",
+ "volume24h": "1435139.696562878005416178",
+ "communityRecognized": false,
+ "key": "evm--4663:0x451b42a15100c340ca12f7c66de06fac5ea2d751",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xef67e3064bef1a27e81925ec7132f23e533bd5f6",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xef67e3064bef1a27e81925ec7132f23e533bd5f6-1788782588286.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xef67e3064bef1a27e81925ec7132f23e533bd5f6-1788782588286.png"
+ ],
+ "name": "Greatest Meme Ever",
+ "symbol": "GME",
+ "marketCap": "4418340.399659110512455337",
+ "price": "0.0044183404001220693",
+ "priceChange24hPercent": "86.27",
+ "volume24h": "5309313.153588963264824664",
+ "communityRecognized": false,
+ "key": "evm--4663:0xef67e3064bef1a27e81925ec7132f23e533bd5f6",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x9e92bbf2017bbfb7a06c975ca30e268cd2e57777",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/26946e97f0605097c389e90209fbbad48af1927f15b93093e2b999a0ccb97c16",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/26946e97f0605097c389e90209fbbad48af1927f15b93093e2b999a0ccb97c16"
+ ],
+ "name": "Google Dog",
+ "symbol": "股狗",
+ "marketCap": "330885.712103554270207473",
+ "price": "0.00033088571210355427",
+ "priceChange24hPercent": "-53.88",
+ "volume24h": "746079.272976892295312415",
+ "communityRecognized": false,
+ "key": "evm--56:0x9e92bbf2017bbfb7a06c975ca30e268cd2e57777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x7dbf38976f6d3b9c529e7d9484a71898b409ee6a",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x7dbf38976f6d3b9c529e7d9484a71898b409ee6a-1788610442171.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x7dbf38976f6d3b9c529e7d9484a71898b409ee6a-1788610442171.png"
+ ],
+ "name": "ZZZ",
+ "symbol": "ZZZ",
+ "marketCap": "15466129.401190105654350355",
+ "price": "0.01841205881094060197",
+ "priceChange24hPercent": "-12.26",
+ "volume24h": "5046138.166092522992042961",
+ "communityRecognized": false,
+ "key": "evm--4663:0x7dbf38976f6d3b9c529e7d9484a71898b409ee6a",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x2ae1ebeeda58b68a02dc313f7d90aa6ee546df86",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/2d70c37a83c6c75e1500068ec44d7246c00f6c3cc88134c29c693c7ac392bbc0",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/2d70c37a83c6c75e1500068ec44d7246c00f6c3cc88134c29c693c7ac392bbc0"
+ ],
+ "name": "Milk",
+ "symbol": "DC",
+ "marketCap": "45187.582862054210067071",
+ "price": "16.31078572068146233841",
+ "priceChange24hPercent": "-0.59",
+ "volume24h": "464780.2158585126006779",
+ "communityRecognized": false,
+ "key": "evm--4663:0x2ae1ebeeda58b68a02dc313f7d90aa6ee546df86",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x78b96280c3347e0f58a7147b73eb0ec5ffff025d",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x78b96280c3347e0f58a7147b73eb0ec5ffff025d-1788697020328.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x78b96280c3347e0f58a7147b73eb0ec5ffff025d-1788697020328.png"
+ ],
+ "name": "Robinhood Hat Strategy",
+ "symbol": "RSTR",
+ "marketCap": "2725713.193040557852190847",
+ "price": "0.00281246072249804144",
+ "priceChange24hPercent": "581.02",
+ "volume24h": "5004450.972851456189480951",
+ "communityRecognized": false,
+ "key": "evm--4663:0x78b96280c3347e0f58a7147b73eb0ec5ffff025d",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x5173d45a1191ee33cbb7d8c7e65f21b04ed54802",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x5173d45a1191ee33cbb7d8c7e65f21b04ed54802-1788264029244.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x5173d45a1191ee33cbb7d8c7e65f21b04ed54802-1788264029244.png"
+ ],
+ "name": "Ramses",
+ "symbol": "RAM",
+ "marketCap": "3461676.475623955075835903",
+ "price": "0.06867351685156609209",
+ "priceChange24hPercent": "-30.75",
+ "volume24h": "1862615.839121895626978053",
+ "communityRecognized": false,
+ "key": "evm--4663:0x5173d45a1191ee33cbb7d8c7e65f21b04ed54802",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "9GGGhze1NnQwcABTzxdxx89BEFLFtDueHhkwh6japump",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/a6063f660a1b276bba3b9832297a3b2830c66cc58a607c8cc44705fa1b422161",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/a6063f660a1b276bba3b9832297a3b2830c66cc58a607c8cc44705fa1b422161"
+ ],
+ "name": "CatGPT",
+ "symbol": "CatGPT",
+ "marketCap": "623368.05695686272495979",
+ "price": "0.0006395393467819042",
+ "priceChange24hPercent": "122.04",
+ "volume24h": "4412941.75019954086",
+ "communityRecognized": false,
+ "key": "sol--101:9GGGhze1NnQwcABTzxdxx89BEFLFtDueHhkwh6japump",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "8K5X85PAJHAAVSvYaAzgVPPAPsqqHmvx16ZyBiscYF8L",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-8K5X85PAJHAAVSvYaAzgVPPAPsqqHmvx16ZyBiscYF8L-1788368707252.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-8K5X85PAJHAAVSvYaAzgVPPAPsqqHmvx16ZyBiscYF8L-1788368707252.png"
+ ],
+ "name": "Vida Global CTO",
+ "symbol": "CTO",
+ "marketCap": "10655242.219614694475254837",
+ "price": "0.01162910300962041824",
+ "priceChange24hPercent": "28.29",
+ "volume24h": "6506055.190357037740567695",
+ "communityRecognized": false,
+ "key": "sol--101:8K5X85PAJHAAVSvYaAzgVPPAPsqqHmvx16ZyBiscYF8L",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xbeea1d618e533a387d941f58a7d4c9b7bd377777",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xbeea1d618e533a387d941f58a7d4c9b7bd377777-1786867206539.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xbeea1d618e533a387d941f58a7d4c9b7bd377777-1786867206539.png"
+ ],
+ "name": "牛来",
+ "symbol": "牛来",
+ "marketCap": "82047208.24262765843217039",
+ "price": "0.08204721650484486528",
+ "priceChange24hPercent": "-2.79",
+ "volume24h": "13008123.56807011890641204",
+ "communityRecognized": false,
+ "key": "evm--56:0xbeea1d618e533a387d941f58a7d4c9b7bd377777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xe1e5f00a9b0255ca4df85b3130ee0f77d15acc2d",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xe1e5f00a9b0255ca4df85b3130ee0f77d15acc2d-1788696640254.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xe1e5f00a9b0255ca4df85b3130ee0f77d15acc2d-1788696640254.png"
+ ],
+ "name": "Pushin' 🅿️",
+ "symbol": "🅿️",
+ "marketCap": "1670276.961474108523173908",
+ "price": "0.00167027696147410852",
+ "priceChange24hPercent": "-48.89",
+ "volume24h": "3016313.019454927244683797",
+ "communityRecognized": false,
+ "key": "evm--4663:0xe1e5f00a9b0255ca4df85b3130ee0f77d15acc2d",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x16391c40e85fb2246a2c8c17bfa2594c5d3ef84b",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x16391c40e85fb2246a2c8c17bfa2594c5d3ef84b-1788523244923.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x16391c40e85fb2246a2c8c17bfa2594c5d3ef84b-1788523244923.png"
+ ],
+ "name": "Touch Grass",
+ "symbol": "GRASS",
+ "marketCap": "3561358.779724398512792577",
+ "price": "0.0035808939708134213",
+ "priceChange24hPercent": "-34.09",
+ "volume24h": "2391712.562612943694777399",
+ "communityRecognized": false,
+ "key": "evm--4663:0x16391c40e85fb2246a2c8c17bfa2594c5d3ef84b",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xe8ffd7e24187f72afb08d75b1bb13088a989a791",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xe8ffd7e24187f72afb08d75b1bb13088a989a791-1786708993342.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xe8ffd7e24187f72afb08d75b1bb13088a989a791-1786708993342.png"
+ ],
+ "name": "Delta",
+ "symbol": "DELTA",
+ "marketCap": "13472444.557487726415542926",
+ "price": "0.01347244492315809628",
+ "priceChange24hPercent": "12.44",
+ "volume24h": "3709088.913336704922113356",
+ "communityRecognized": false,
+ "key": "evm--4663:0xe8ffd7e24187f72afb08d75b1bb13088a989a791",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x507b6f349a80114097a67b8b4677367acc15b220",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x507b6f349a80114097a67b8b4677367acc15b220-1788610022118.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x507b6f349a80114097a67b8b4677367acc15b220-1788610022118.png"
+ ],
+ "name": "par",
+ "symbol": "par",
+ "marketCap": "1798968.499028405695939082",
+ "price": "0.0019041660225060439",
+ "priceChange24hPercent": "-54.49",
+ "volume24h": "2527946.404868407463711609",
+ "communityRecognized": false,
+ "key": "evm--4663:0x507b6f349a80114097a67b8b4677367acc15b220",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x215407c134f68b9da4de10c22c948196053a0d5d",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/70a6389f1690a862f8e3a0d61f5a71c1ed8f0eb1c39ccf6f78f60fff4d400471",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/70a6389f1690a862f8e3a0d61f5a71c1ed8f0eb1c39ccf6f78f60fff4d400471"
+ ],
+ "name": "The Wolf of Wall Street",
+ "symbol": "WOLF",
+ "marketCap": "3798827.95826205946704669",
+ "price": "0.01057270776655222219",
+ "priceChange24hPercent": "5.7",
+ "volume24h": "8437492.113034224214189251",
+ "communityRecognized": false,
+ "key": "evm--4663:0x215407c134f68b9da4de10c22c948196053a0d5d",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "MukLDtJ8Cx9DxLbeyLRSWPSposTMWuwHANbuaudpump",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-MukLDtJ8Cx9DxLbeyLRSWPSposTMWuwHANbuaudpump-1788282416465.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-MukLDtJ8Cx9DxLbeyLRSWPSposTMWuwHANbuaudpump-1788282416465.png"
+ ],
+ "name": "OTC",
+ "symbol": "OTC",
+ "marketCap": "18665066.221513705269398034",
+ "price": "0.0262623070956762804",
+ "priceChange24hPercent": "84.57",
+ "volume24h": "16573759.37850219641",
+ "communityRecognized": false,
+ "key": "sol--101:MukLDtJ8Cx9DxLbeyLRSWPSposTMWuwHANbuaudpump",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "ANM35KbUcfKdEVBXzSjZBoT6ceSwYRs3fuc79fp7kRqP",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/db4d10c19523308df10f606b8b29d51a6e19419261d663ae88497cd02efd20f6",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/db4d10c19523308df10f606b8b29d51a6e19419261d663ae88497cd02efd20f6"
+ ],
+ "name": "Pump Cat",
+ "symbol": "Pumpcat",
+ "marketCap": "1888030.836167347599567097",
+ "price": "0.00191221316104",
+ "priceChange24hPercent": "307.23",
+ "volume24h": "6713569.47635314302",
+ "communityRecognized": false,
+ "key": "sol--101:ANM35KbUcfKdEVBXzSjZBoT6ceSwYRs3fuc79fp7kRqP",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x812486eaea648819853f8e372dc9f1516c7868bd",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x812486eaea648819853f8e372dc9f1516c7868bd-1788354167261.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x812486eaea648819853f8e372dc9f1516c7868bd-1788354167261.png"
+ ],
+ "name": "ubik",
+ "symbol": "UBIK",
+ "marketCap": "18020589.533974926304134548",
+ "price": "0.0180205895339749263",
+ "priceChange24hPercent": "-34.5",
+ "volume24h": "3607365.784706567469977954",
+ "communityRecognized": false,
+ "key": "evm--4663:0x812486eaea648819853f8e372dc9f1516c7868bd",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xcd8df4c1052a3447bda6a7423fbc234102f3b477",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/2c2886d399c18bd4b0702fc8ad6b51ba9787a4d5b3d91c759a3febf9c71697b5",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/2c2886d399c18bd4b0702fc8ad6b51ba9787a4d5b3d91c759a3febf9c71697b5"
+ ],
+ "name": "Silverback",
+ "symbol": "SILVERBACK",
+ "marketCap": "435669.577610923584217171",
+ "price": "0.00043566957761092358",
+ "priceChange24hPercent": "8137.89",
+ "volume24h": "2856989.418264295817828117",
+ "communityRecognized": false,
+ "key": "evm--4663:0xcd8df4c1052a3447bda6a7423fbc234102f3b477",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xd4dc6b48ad73ec51e71d9b8f65568f88609b92c1",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xd4dc6b48ad73ec51e71d9b8f65568f88609b92c1-1787659267512.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xd4dc6b48ad73ec51e71d9b8f65568f88609b92c1-1787659267512.png"
+ ],
+ "name": "Sherwood",
+ "symbol": "SHERWOOD",
+ "marketCap": "503569.986816325467242948",
+ "price": "0.00050356998681632547",
+ "priceChange24hPercent": "26.39",
+ "volume24h": "221963.858096828243263027",
+ "communityRecognized": false,
+ "key": "evm--4663:0xd4dc6b48ad73ec51e71d9b8f65568f88609b92c1",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xf40592daacb3e5abf358789f5688c0b4f64d7777",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xf40592daacb3e5abf358789f5688c0b4f64d7777-1788336091391.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xf40592daacb3e5abf358789f5688c0b4f64d7777-1788336091391.png"
+ ],
+ "name": "FLORK",
+ "symbol": "FLORK",
+ "marketCap": "14165130.750717274515033125",
+ "price": "0.01416513075084475066",
+ "priceChange24hPercent": "-28.15",
+ "volume24h": "4794528.926211968855542287",
+ "communityRecognized": true,
+ "key": "evm--56:0xf40592daacb3e5abf358789f5688c0b4f64d7777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x56910d4409f3a0c78c64dd8d0545ff0705389870",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x56910d4409f3a0c78c64dd8d0545ff0705389870-1784842044117.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x56910d4409f3a0c78c64dd8d0545ff0705389870-1784842044117.png"
+ ],
+ "name": "The Index",
+ "symbol": "Index",
+ "marketCap": "39076127.721770539963962651",
+ "price": "0.03985186707954164859",
+ "priceChange24hPercent": "-11.66",
+ "volume24h": "3881125.5665300244293211294",
+ "communityRecognized": true,
+ "key": "evm--4663:0x56910d4409f3a0c78c64dd8d0545ff0705389870",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "Aw6fiDPWLUnjSsJQtsyEMSaoPaKAUUrStAsYPiPwpump",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/77390ed5d0a7e7ae6ab8a0e2685653ff99f696192f784341e9d9bd613dc27472",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/77390ed5d0a7e7ae6ab8a0e2685653ff99f696192f784341e9d9bd613dc27472"
+ ],
+ "name": "Anonymouse",
+ "symbol": "Anonymouse",
+ "marketCap": "576031.891998599217547163",
+ "price": "0.00060453517170229361",
+ "priceChange24hPercent": "20554.84",
+ "volume24h": "1586112.82694819975",
+ "communityRecognized": false,
+ "key": "sol--101:Aw6fiDPWLUnjSsJQtsyEMSaoPaKAUUrStAsYPiPwpump",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xc2362aff2a2a4cc1f48cf3dab2c4e2605eb94ba3",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xc2362aff2a2a4cc1f48cf3dab2c4e2605eb94ba3-1785758420060.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xc2362aff2a2a4cc1f48cf3dab2c4e2605eb94ba3-1785758420060.png"
+ ],
+ "name": "GameStop",
+ "symbol": "GME",
+ "marketCap": "2880525.050645902892669408",
+ "price": "0.00002880525129724091",
+ "priceChange24hPercent": "-24.59",
+ "volume24h": "919741.405464808611520823",
+ "communityRecognized": false,
+ "key": "evm--4663:0xc2362aff2a2a4cc1f48cf3dab2c4e2605eb94ba3",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x1ec871553be07dc68ec1661c32eca7e2e46e1e18",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/ee7408e5fd186d0c6d70812ea983d43036994104aca07d6d3074523eaa5b18a2",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/ee7408e5fd186d0c6d70812ea983d43036994104aca07d6d3074523eaa5b18a2"
+ ],
+ "name": "STONKS",
+ "symbol": "STONKS",
+ "marketCap": "231597.584146714265601533",
+ "price": "0.00023159758414671427",
+ "priceChange24hPercent": "51.71",
+ "volume24h": "208162.496075660623353639",
+ "communityRecognized": false,
+ "key": "evm--4663:0x1ec871553be07dc68ec1661c32eca7e2e46e1e18",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x87ae267002cd1ea0ec86bf3601d4a8ad76a47777",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x87ae267002cd1ea0ec86bf3601d4a8ad76a47777-1787558536892.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x87ae267002cd1ea0ec86bf3601d4a8ad76a47777-1787558536892.png"
+ ],
+ "name": "蝴蝶人生",
+ "symbol": "蝴蝶人生",
+ "marketCap": "2843905.219663741104043209",
+ "price": "0.0028439052196637411",
+ "priceChange24hPercent": "-21.76",
+ "volume24h": "290829.126254161726555391",
+ "communityRecognized": false,
+ "key": "evm--56:0x87ae267002cd1ea0ec86bf3601d4a8ad76a47777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xfe7e19cbce2f896c6c528bc355baf5a768291e18",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xfe7e19cbce2f896c6c528bc355baf5a768291e18-1786017952373.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xfe7e19cbce2f896c6c528bc355baf5a768291e18-1786017952373.png"
+ ],
+ "name": "SPACEHOOD",
+ "symbol": "SPACEHOOD",
+ "marketCap": "8428237.504547357156569038",
+ "price": "0.00842823750454735716",
+ "priceChange24hPercent": "-6.2",
+ "volume24h": "1381633.677291874453758251",
+ "communityRecognized": false,
+ "key": "evm--4663:0xfe7e19cbce2f896c6c528bc355baf5a768291e18",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x384c3f978950a98523529a205163bf63a69e8dd5",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/7a4fae357f9d4613d7f8b5f8bd76e29c37fb44afd8ff4f0da78fe40be38d3dd3",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/7a4fae357f9d4613d7f8b5f8bd76e29c37fb44afd8ff4f0da78fe40be38d3dd3"
+ ],
+ "name": "Kerf",
+ "symbol": "KERF",
+ "marketCap": "715380.768801813343037355",
+ "price": "0.00071538076880181334",
+ "priceChange24hPercent": "16324.07",
+ "volume24h": "1516166.146420126325346943",
+ "communityRecognized": false,
+ "key": "evm--4663:0x384c3f978950a98523529a205163bf63a69e8dd5",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x5b73a93b4e5e4f1fd27d8b3f8c97d69908b5e284",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x5b73a93b4e5e4f1fd27d8b3f8c97d69908b5e284-1757704453242.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x5b73a93b4e5e4f1fd27d8b3f8c97d69908b5e284-1757704453242.png"
+ ],
+ "name": "FORM Token",
+ "symbol": "FORM",
+ "marketCap": "80658171.488379674423689224",
+ "price": "0.27194644982635185092",
+ "priceChange24hPercent": "2.05",
+ "volume24h": "4529353.368341883677493953",
+ "communityRecognized": true,
+ "key": "evm--56:0x5b73a93b4e5e4f1fd27d8b3f8c97d69908b5e284",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xa01bc586cd5f4f253bfab4e44400c52dbc18bc50",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/c365b2142e4c766209febdcd7d1678e3519a6be41b491b73bf8cddfc0cd3ab98",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/c365b2142e4c766209febdcd7d1678e3519a6be41b491b73bf8cddfc0cd3ab98"
+ ],
+ "name": "Voxelithic Protocol",
+ "symbol": "VOXEL",
+ "marketCap": "2194808.399720832343306287",
+ "price": "0.00219480839972083234",
+ "priceChange24hPercent": "13.06",
+ "volume24h": "1567925.721438877344681266",
+ "communityRecognized": false,
+ "key": "evm--4663:0xa01bc586cd5f4f253bfab4e44400c52dbc18bc50",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x7a848a5a8169aa6a2f603d056a749f924f504444",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x7a848a5a8169aa6a2f603d056a749f924f504444-1783238620991.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x7a848a5a8169aa6a2f603d056a749f924f504444-1783238620991.png"
+ ],
+ "name": "The Final Form Bull",
+ "symbol": "CZ",
+ "marketCap": "1099286.938089230968563345",
+ "price": "0.0036646154199429095",
+ "priceChange24hPercent": "-40.6",
+ "volume24h": "2222297.046959394653769196",
+ "communityRecognized": false,
+ "key": "evm--56:0x7a848a5a8169aa6a2f603d056a749f924f504444",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "9cRCn9rGT8V2imeM2BaKs13yhMEais3ruM3rPvTGpump",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-9cRCn9rGT8V2imeM2BaKs13yhMEais3ruM3rPvTGpump-1782140764006.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-9cRCn9rGT8V2imeM2BaKs13yhMEais3ruM3rPvTGpump-1782140764006.png"
+ ],
+ "name": "The Black Bull",
+ "symbol": "ANSEM",
+ "marketCap": "77437082.195285110945748258",
+ "price": "0.1866888694873301954",
+ "priceChange24hPercent": "-18.05",
+ "volume24h": "20575107.646747758299199215",
+ "communityRecognized": true,
+ "key": "sol--101:9cRCn9rGT8V2imeM2BaKs13yhMEais3ruM3rPvTGpump",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x265b3982ea730748100947f52561a4eab54affff",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x265b3982ea730748100947f52561a4eab54affff-1788163283951.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x265b3982ea730748100947f52561a4eab54affff-1788163283951.png"
+ ],
+ "name": "ast.fun",
+ "symbol": "AST",
+ "marketCap": "1006188.389049844693397769",
+ "price": "0.00101988046623180537",
+ "priceChange24hPercent": "-72.89",
+ "volume24h": "4267010.147095062161785565",
+ "communityRecognized": false,
+ "key": "evm--56:0x265b3982ea730748100947f52561a4eab54affff",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x4f4a59ac165c6f05ed771df3530741494b1c7777",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/aaedfbda5a6301f10b584f1887dbe9604f4015526974adfc9bd19e9bff06bf7c",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/aaedfbda5a6301f10b584f1887dbe9604f4015526974adfc9bd19e9bff06bf7c"
+ ],
+ "name": "Offchain Dog",
+ "symbol": "zDOG",
+ "marketCap": "716071.920123885726066789",
+ "price": "0.00071607192012388573",
+ "priceChange24hPercent": "19422.18",
+ "volume24h": "11835498.523808768594780244",
+ "communityRecognized": false,
+ "key": "evm--56:0x4f4a59ac165c6f05ed771df3530741494b1c7777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0xff637d2d435d6745df3faf61272b1216e7e8b727",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/9fc774ca51417bc1bbf6bd03e602e39c5b991c3dee079065d7ce9c06c7da7d64",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/9fc774ca51417bc1bbf6bd03e602e39c5b991c3dee079065d7ce9c06c7da7d64"
+ ],
+ "name": "Wrapped SHEIN xStock",
+ "symbol": "wSHEINx",
+ "marketCap": "9931.131723846962877347",
+ "price": "5.2204262143685951143",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": false,
+ "key": "evm--196:0xff637d2d435d6745df3faf61272b1216e7e8b727",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "DoGEV7LASBkQbibMc5k5vKnTZoMg423GpJ5QtJEGfm7R",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/3d506b48124c4da95fa38586899e377b82f98a1d6da24eba1ac8e1c2f82bbb99",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/3d506b48124c4da95fa38586899e377b82f98a1d6da24eba1ac8e1c2f82bbb99"
+ ],
+ "name": "Dogecoin",
+ "symbol": "DOGE",
+ "marketCap": "400294.815377739868067652",
+ "price": "0.09110678797975571486",
+ "priceChange24hPercent": "5.17",
+ "volume24h": "9899987.8221936729",
+ "communityRecognized": true,
+ "key": "sol--101:DoGEV7LASBkQbibMc5k5vKnTZoMg423GpJ5QtJEGfm7R",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0x90a2a4c76b5d8c0bc892a69ea28aa775a8f2dd48",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/ab5f79fac87972384ec00b70cbf1425ff50db03221af2080d087d63a2a6ecaa4",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/ab5f79fac87972384ec00b70cbf1425ff50db03221af2080d087d63a2a6ecaa4"
+ ],
+ "name": "SP500 xStock",
+ "symbol": "SPYx",
+ "marketCap": "819712532527.486",
+ "price": "770.2150375",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": false,
+ "key": "evm--196:0x90a2a4c76b5d8c0bc892a69ea28aa775a8f2dd48",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x385f4f8ae47651ce5f58f5265395a669f8281e18",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x385f4f8ae47651ce5f58f5265395a669f8281e18-1788523250367.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x385f4f8ae47651ce5f58f5265395a669f8281e18-1788523250367.png"
+ ],
+ "name": "A Meme Coin",
+ "symbol": "MEME",
+ "marketCap": "122511547.146343256738851074",
+ "price": "0.12251154720077913367",
+ "priceChange24hPercent": "38.64",
+ "volume24h": "59408150.01347669156110108",
+ "communityRecognized": true,
+ "key": "evm--4663:0x385f4f8ae47651ce5f58f5265395a669f8281e18",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "HhXR4SiHzDNYCFXJBpCYg86T4NhzsD4vz4Y5Jtz6ozKx",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/f726c684810fa3c317fc93c5be53f978bd8c53c43e640ba1356f234c0f0904b0",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/f726c684810fa3c317fc93c5be53f978bd8c53c43e640ba1356f234c0f0904b0"
+ ],
+ "name": "OpenAI PreStocks",
+ "symbol": "OPENAI",
+ "marketCap": "2899816.482073688742072969",
+ "price": "0.00002899816519822018",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": false,
+ "key": "sol--101:HhXR4SiHzDNYCFXJBpCYg86T4NhzsD4vz4Y5Jtz6ozKx",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "CaWZeUM4FvX9dPkjGc2xHS6tSN3qJfTWyvaG77aM5o7h",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-CaWZeUM4FvX9dPkjGc2xHS6tSN3qJfTWyvaG77aM5o7h-1788714223572.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-CaWZeUM4FvX9dPkjGc2xHS6tSN3qJfTWyvaG77aM5o7h-1788714223572.png"
+ ],
+ "name": "artificial gooner intelligence",
+ "symbol": "AGI",
+ "marketCap": "7732106.397339240642815567",
+ "price": "0.00782011642651768863",
+ "priceChange24hPercent": "21.14",
+ "volume24h": "1665121.74039973695",
+ "communityRecognized": true,
+ "key": "sol--101:CaWZeUM4FvX9dPkjGc2xHS6tSN3qJfTWyvaG77aM5o7h",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0xae2f842ef90c0d5213259ab82639d5bbf649b08e",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/bd9738f19f874389dfe2c4479c32384f2f14538182cf1a1be0e349146c7b02fa",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/bd9738f19f874389dfe2c4479c32384f2f14538182cf1a1be0e349146c7b02fa"
+ ],
+ "name": "MicroStrategy xStock",
+ "symbol": "MSTRx",
+ "marketCap": "47161642520",
+ "price": "141.2502",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": false,
+ "key": "evm--196:0xae2f842ef90c0d5213259ab82639d5bbf649b08e",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x3f53de71c126bdabae20f9cd64848d317f6c3238",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x3f53de71c126bdabae20f9cd64848d317f6c3238-1784361925966.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x3f53de71c126bdabae20f9cd64848d317f6c3238-1784361925966.png"
+ ],
+ "name": "Alphabet",
+ "symbol": "GOOGLB",
+ "marketCap": "26814290.0074111255944",
+ "price": "338.46",
+ "priceChange24hPercent": "-0.44",
+ "volume24h": "2831812.151478983154398119",
+ "communityRecognized": false,
+ "key": "evm--56:0x3f53de71c126bdabae20f9cd64848d317f6c3238",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "CTPoyCwkjMvoJwU4xvZZqoD8tiYk6yDchySiN5gGpump",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-CTPoyCwkjMvoJwU4xvZZqoD8tiYk6yDchySiN5gGpump-1788283052361.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-CTPoyCwkjMvoJwU4xvZZqoD8tiYk6yDchySiN5gGpump-1788283052361.png"
+ ],
+ "name": "apeonfone",
+ "symbol": "fone",
+ "marketCap": "7592997.811728859885287765",
+ "price": "0.00766871347955657293",
+ "priceChange24hPercent": "-26.38",
+ "volume24h": "6687907.54650222805",
+ "communityRecognized": true,
+ "key": "sol--101:CTPoyCwkjMvoJwU4xvZZqoD8tiYk6yDchySiN5gGpump",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0x4d0ba049c430a7a80a61e7ebdf50b6daac6c3bd6",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/8ca3e425fcf50782e666099b0bb7d4e4d34cd0c4ff4e11de15e937436ffdd5c6",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/8ca3e425fcf50782e666099b0bb7d4e4d34cd0c4ff4e11de15e937436ffdd5c6"
+ ],
+ "name": "SHEIN xStock",
+ "symbol": "SHEINx",
+ "marketCap": "14505345255.232093",
+ "price": "5.2204262143685951143",
+ "priceChange24hPercent": "3.11",
+ "volume24h": "6674.938302262576358454",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 xStock 代币化发行",
+ "source": "xstock",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/xstock.png",
+ "isOpen": true
+ },
+ "key": "evm--196:0x4d0ba049c430a7a80a61e7ebdf50b6daac6c3bd6",
+ "kind": "stock",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "XsoCS1TfEyfFhfvj8EtZ528L3CaKBDBRqRapnBbDF2W",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-XsoCS1TfEyfFhfvj8EtZ528L3CaKBDBRqRapnBbDF2W-1758104197788.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-XsoCS1TfEyfFhfvj8EtZ528L3CaKBDBRqRapnBbDF2W-1758104197788.png"
+ ],
+ "name": "SP500 xStock",
+ "symbol": "SPYx",
+ "marketCap": "56367005.478836337769633662",
+ "price": "784.81337192531622861759",
+ "priceChange24hPercent": "1.72",
+ "volume24h": "16711763.143893635352761977",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 xStock 代币化发行",
+ "subtitle": "标普500 ETF",
+ "source": "xstock",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/xstock.png",
+ "isOpen": true
+ },
+ "key": "sol--101:XsoCS1TfEyfFhfvj8EtZ528L3CaKBDBRqRapnBbDF2W",
+ "kind": "stock",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xc9a981fee1f9dec688bb123ccdecc63d0debfc4e",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xc9a981fee1f9dec688bb123ccdecc63d0debfc4e-1786795236632.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xc9a981fee1f9dec688bb123ccdecc63d0debfc4e-1786795236632.png"
+ ],
+ "name": "SPDR Gold Trust • Robinhood Token",
+ "symbol": "GLD",
+ "marketCap": "6332935.761003106287310793",
+ "price": "407.36193140034649512163",
+ "priceChange24hPercent": "-0.72",
+ "volume24h": "13123591.187738376515343077",
+ "communityRecognized": false,
+ "key": "evm--4663:0xc9a981fee1f9dec688bb123ccdecc63d0debfc4e",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x8e859dbdfbfd2df6a99870e2871eaa58e8784e05",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x8e859dbdfbfd2df6a99870e2871eaa58e8784e05-1788610147869.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x8e859dbdfbfd2df6a99870e2871eaa58e8784e05-1788610147869.png"
+ ],
+ "name": "Nest",
+ "symbol": "NEST",
+ "marketCap": "190040.435952781078801715",
+ "price": "0.00019155893691496779",
+ "priceChange24hPercent": "-73.45",
+ "volume24h": "531803.000297031448881566",
+ "communityRecognized": false,
+ "key": "evm--4663:0x8e859dbdfbfd2df6a99870e2871eaa58e8784e05",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "6GmAFSYs4gk3FDao5FzzySQpPZaWsa4rUJHacpMpUNgx",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-6GmAFSYs4gk3FDao5FzzySQpPZaWsa4rUJHacpMpUNgx-1784905991044.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-6GmAFSYs4gk3FDao5FzzySQpPZaWsa4rUJHacpMpUNgx-1784905991044.png"
+ ],
+ "name": "STONK",
+ "symbol": "STONK",
+ "marketCap": "162373475.987123376569100375",
+ "price": "0.18660396117879934312",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": true,
+ "key": "sol--101:6GmAFSYs4gk3FDao5FzzySQpPZaWsa4rUJHacpMpUNgx",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x48e39e56acdba37b09020c0b734a613c9a2f100a",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x48e39e56acdba37b09020c0b734a613c9a2f100a-1787054422497.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x48e39e56acdba37b09020c0b734a613c9a2f100a-1787054422497.png"
+ ],
+ "name": "Blackberry • Robinhood Token",
+ "symbol": "BB",
+ "marketCap": "642801.143627416799148932",
+ "price": "7.76991187735766064532",
+ "priceChange24hPercent": "1.01",
+ "volume24h": "253773.866147556864614934",
+ "communityRecognized": false,
+ "key": "evm--4663:0x48e39e56acdba37b09020c0b734a613c9a2f100a",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "Fxq9URcanj5exGoatPxckVr9KFL3mcpJDMKRfSbyrH8q",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/ac252d3221f62580087c09038a994ea9cf9bfbf0611d8531c325b0fcc86503b3",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/ac252d3221f62580087c09038a994ea9cf9bfbf0611d8531c325b0fcc86503b3"
+ ],
+ "name": "Robinhood",
+ "symbol": "HOOD",
+ "marketCap": "4434319.99587062093524057",
+ "price": "0.00004434320021898187",
+ "priceChange24hPercent": "15634.22",
+ "volume24h": "56729461.94570463066",
+ "communityRecognized": false,
+ "key": "sol--101:Fxq9URcanj5exGoatPxckVr9KFL3mcpJDMKRfSbyrH8q",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x05a3d1cd21d0c88145e82600e62e7e496e0f222b",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x05a3d1cd21d0c88145e82600e62e7e496e0f222b-1787313713111.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x05a3d1cd21d0c88145e82600e62e7e496e0f222b-1787313713111.png"
+ ],
+ "name": "AMC Entertainment • Robinhood Token",
+ "symbol": "AMC",
+ "marketCap": "7487887.980742776489741124",
+ "price": "2.63483856620033023001",
+ "priceChange24hPercent": "2.05",
+ "volume24h": "24284390.879904787467684358",
+ "communityRecognized": false,
+ "key": "evm--4663:0x05a3d1cd21d0c88145e82600e62e7e496e0f222b",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x4ef9d3062c7f6eba4aae4990c5036598c6eff4ec",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x4ef9d3062c7f6eba4aae4990c5036598c6eff4ec-1784361786390.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x4ef9d3062c7f6eba4aae4990c5036598c6eff4ec-1784361786390.png"
+ ],
+ "name": "Alibaba",
+ "symbol": "BABAB",
+ "marketCap": "3748171.4208860636",
+ "price": "111.64",
+ "priceChange24hPercent": "-1.1",
+ "volume24h": "977907.765149549454840761",
+ "communityRecognized": false,
+ "key": "evm--56:0x4ef9d3062c7f6eba4aae4990c5036598c6eff4ec",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xe5fd43bc02a6b98aa7d80d929168b318f7547777",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/6a55b6d0cec2baf1bf84345c3b4d50da8ae6f8392a500e8c1e5422659ff4e646",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/6a55b6d0cec2baf1bf84345c3b4d50da8ae6f8392a500e8c1e5422659ff4e646"
+ ],
+ "name": "Keel",
+ "symbol": "KEEL",
+ "marketCap": "107605.859588292329805647",
+ "price": "0.00010760585958829233",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": false,
+ "key": "evm--56:0xe5fd43bc02a6b98aa7d80d929168b318f7547777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xc60ba256b44334a0cd2c7242e98b88f031abb006",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xc60ba256b44334a0cd2c7242e98b88f031abb006-1788523227588.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xc60ba256b44334a0cd2c7242e98b88f031abb006-1788523227588.png"
+ ],
+ "name": "Programmable",
+ "symbol": "V4",
+ "marketCap": "2150844.883321342892826478",
+ "price": "0.00215084488332134289",
+ "priceChange24hPercent": "45.71",
+ "volume24h": "757117.554729259601680607",
+ "communityRecognized": false,
+ "key": "evm--4663:0xc60ba256b44334a0cd2c7242e98b88f031abb006",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x8602b2fd8d105a56d3152e936e66b1d414142148",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/46be4fa022c8cf4f26df79bb27838188b1097a22d2d5668c723c6177a9bad8e6",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/46be4fa022c8cf4f26df79bb27838188b1097a22d2d5668c723c6177a9bad8e6"
+ ],
+ "name": "Artificial Pepe",
+ "symbol": "AP",
+ "marketCap": "1104363.861105462063331123",
+ "price": "0.00110436386110546206",
+ "priceChange24hPercent": "-34.04",
+ "volume24h": "264908.554005869655216649",
+ "communityRecognized": false,
+ "key": "evm--1:0x8602b2fd8d105a56d3152e936e66b1d414142148",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x97216593d3b2769da6f0adeee6fb8e36da4e319f",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x97216593d3b2769da6f0adeee6fb8e36da4e319f-1788782713180.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x97216593d3b2769da6f0adeee6fb8e36da4e319f-1788782713180.png"
+ ],
+ "name": "Ponsancoin",
+ "symbol": "Ponsan",
+ "marketCap": "900669.313469868826823375",
+ "price": "0.00090066931376665403",
+ "priceChange24hPercent": "1.88",
+ "volume24h": "1585832.411958383122797339",
+ "communityRecognized": false,
+ "key": "evm--4663:0x97216593d3b2769da6f0adeee6fb8e36da4e319f",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0x0c9535416fd3b772646c4575e0664fd65afeeeee",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/06d415460409e8d3490a37fdffff10dcae078212668149add6cac2ccc487227d",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/06d415460409e8d3490a37fdffff10dcae078212668149add6cac2ccc487227d"
+ ],
+ "name": "IGNIX",
+ "symbol": "IGNIX",
+ "marketCap": "2050669.850711109531315621",
+ "price": "0.00205066985071110953",
+ "priceChange24hPercent": "347.74",
+ "volume24h": "325174.178547519804874318",
+ "communityRecognized": false,
+ "key": "evm--196:0x0c9535416fd3b772646c4575e0664fd65afeeeee",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0x68fa48b1c2fe52b3d776e1953e0e782b5044ce28",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/c87a8ce3e8952900ef0a4b64d5f35f964395958d1bd69e7388b453e696cb8f8d",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/c87a8ce3e8952900ef0a4b64d5f35f964395958d1bd69e7388b453e696cb8f8d"
+ ],
+ "name": "SpaceX xStock",
+ "symbol": "SPCXx",
+ "marketCap": "1107304878126",
+ "price": "149.9150525",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": false,
+ "key": "evm--196:0x68fa48b1c2fe52b3d776e1953e0e782b5044ce28",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0x8ad3c73f833d3f9a523ab01476625f269aeb7cf0",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/d20fbce76659b93e5e02cd823afdf5bcac92ba2b71b111deb9ca1fe769ef63d4",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/d20fbce76659b93e5e02cd823afdf5bcac92ba2b71b111deb9ca1fe769ef63d4"
+ ],
+ "name": "Tesla xStock",
+ "symbol": "TSLAx",
+ "marketCap": "1393688637562.962",
+ "price": "356.4350525",
+ "priceChange24hPercent": "0.19",
+ "volume24h": "501506.387798682650676809",
+ "communityRecognized": false,
+ "key": "evm--196:0x8ad3c73f833d3f9a523ab01476625f269aeb7cf0",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0x4fec966f98d8530507787d947d1ab24fa145a999",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/5114ae6a8dd22ff7afd7dc72ba2065ab2dc5914e10df890f2c0971f48049eb1f",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/5114ae6a8dd22ff7afd7dc72ba2065ab2dc5914e10df890f2c0971f48049eb1f"
+ ],
+ "name": "LAIKA Coin",
+ "symbol": "LAIKA",
+ "marketCap": "2972813.068622393815012273",
+ "price": "0.00297281315186116207",
+ "priceChange24hPercent": "3.07",
+ "volume24h": "88108.988692108550233988",
+ "communityRecognized": false,
+ "key": "evm--196:0x4fec966f98d8530507787d947d1ab24fa145a999",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x45242320dbb855eea8fd36804c6487e10e97fcf9",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x45242320dbb855eea8fd36804c6487e10e97fcf9-1784778612504.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x45242320dbb855eea8fd36804c6487e10e97fcf9-1784778612504.png"
+ ],
+ "name": "TENDIES",
+ "symbol": "TENDIES",
+ "marketCap": "15418336.651928049187952375",
+ "price": "0.0161197596815997701",
+ "priceChange24hPercent": "-7.08",
+ "volume24h": "1796714.40248894664104327714",
+ "communityRecognized": false,
+ "key": "evm--4663:0x45242320dbb855eea8fd36804c6487e10e97fcf9",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0xf8a80d1cb9cfd70d03d655d9df42339846f3b3c8",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/1e720661a824f8fa58ab89efae4df73c288c398ec4528d3843ac3b7a5448d89b",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/1e720661a824f8fa58ab89efae4df73c288c398ec4528d3843ac3b7a5448d89b"
+ ],
+ "name": "Intel xStock",
+ "symbol": "INTCx",
+ "marketCap": "483659047740.336",
+ "price": "100.6050675",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": false,
+ "key": "evm--196:0xf8a80d1cb9cfd70d03d655d9df42339846f3b3c8",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0xb63efbc28860c8097e341de1fcf59456161e9d98",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/40d968af1f2303f4272fd4cee6151e7094b40350c2b598d5ce76e20cf90e44d4",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/40d968af1f2303f4272fd4cee6151e7094b40350c2b598d5ce76e20cf90e44d4"
+ ],
+ "name": "Sandisk Corporation xStock",
+ "symbol": "SNDKx",
+ "marketCap": "256808803334.25",
+ "price": "1812.751875",
+ "priceChange24hPercent": "1.62",
+ "volume24h": "17962.49144300904663616",
+ "communityRecognized": false,
+ "key": "evm--196:0xb63efbc28860c8097e341de1fcf59456161e9d98",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0xf6a873bae4ba1b304e45df52a4b7d176e1c6a8c4",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/b9ac0da769e65f7d17afb241122f9b4dc45269526fe2ae4a010d494d2833c128",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/b9ac0da769e65f7d17afb241122f9b4dc45269526fe2ae4a010d494d2833c128"
+ ],
+ "name": "Micron Technology xStock",
+ "symbol": "MUx",
+ "marketCap": "1146219040390",
+ "price": "1054.6614",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": false,
+ "key": "evm--196:0xf6a873bae4ba1b304e45df52a4b7d176e1c6a8c4",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "HcRLc9VDgjLeK154xDawfb1dmVJ98DoSqcwTHGqiDeJR",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-HcRLc9VDgjLeK154xDawfb1dmVJ98DoSqcwTHGqiDeJR-1788454854698.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-HcRLc9VDgjLeK154xDawfb1dmVJ98DoSqcwTHGqiDeJR-1788454854698.png"
+ ],
+ "name": "Anonymous Cat",
+ "symbol": "ZCAT",
+ "marketCap": "133320996.34062627923315211",
+ "price": "0.13759910078028604069",
+ "priceChange24hPercent": "9.61",
+ "volume24h": "10093231.786735282499715381",
+ "communityRecognized": true,
+ "key": "sol--101:HcRLc9VDgjLeK154xDawfb1dmVJ98DoSqcwTHGqiDeJR",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0xb91b2771554e6a23e2e5e04f926e8757befb1111",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/5334d97a49e68503fbc62629a9272d347e518bb2727f81de4a59a3556484e3ea",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/5334d97a49e68503fbc62629a9272d347e518bb2727f81de4a59a3556484e3ea"
+ ],
+ "name": "Xstocks Index",
+ "symbol": "XSTX",
+ "marketCap": "255777.098614140490133737",
+ "price": "0.00026338099643166876",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": false,
+ "key": "evm--196:0xb91b2771554e6a23e2e5e04f926e8757befb1111",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "XsbEhLAtcf6HdfpFZ5xEMdqW8nfAvcsP5bdudRLJzJp",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-XsbEhLAtcf6HdfpFZ5xEMdqW8nfAvcsP5bdudRLJzJp-1758104899904.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-XsbEhLAtcf6HdfpFZ5xEMdqW8nfAvcsP5bdudRLJzJp-1758104899904.png"
+ ],
+ "name": "Apple xStock",
+ "symbol": "AAPLx",
+ "marketCap": "12673613.761183361201682025",
+ "price": "319.1650975",
+ "priceChange24hPercent": "-0.07",
+ "volume24h": "5771853.530128795754737623",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 xStock 代币化发行",
+ "subtitle": "苹果",
+ "source": "xstock",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/xstock.png",
+ "isOpen": true
+ },
+ "key": "sol--101:XsbEhLAtcf6HdfpFZ5xEMdqW8nfAvcsP5bdudRLJzJp",
+ "kind": "stock",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xfe189e97832da1573e4e4ff034f4ffc3a15c7777",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xfe189e97832da1573e4e4ff034f4ffc3a15c7777-1785917292044.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xfe189e97832da1573e4e4ff034f4ffc3a15c7777-1785917292044.png"
+ ],
+ "name": "MarsCoin",
+ "symbol": "MarsCoin",
+ "marketCap": "142584555.278465511990526779",
+ "price": "0.1426398633561573111",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": true,
+ "key": "evm--56:0xfe189e97832da1573e4e4ff034f4ffc3a15c7777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0xc845b2894dbddd03858fd2d643b4ef725fe0849d",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/c962a251f19235c6d17ad9faab7ae8a2269a67dacdece8b4d65da8a626688ac4",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/c962a251f19235c6d17ad9faab7ae8a2269a67dacdece8b4d65da8a626688ac4"
+ ],
+ "name": "NVIDIA xStock",
+ "symbol": "NVDAx",
+ "marketCap": "5557847544000",
+ "price": "232.9250375",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 xStock 代币化发行",
+ "subtitle": "英伟达",
+ "source": "xstock",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/xstock.png",
+ "isOpen": true
+ },
+ "key": "evm--196:0xc845b2894dbddd03858fd2d643b4ef725fe0849d",
+ "kind": "stock",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x0762c1708f0d23f86b29d6b857121ff7df357506",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x0762c1708f0d23f86b29d6b857121ff7df357506-1785931280846.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x0762c1708f0d23f86b29d6b857121ff7df357506-1785931280846.png"
+ ],
+ "name": "this is not a website",
+ "symbol": "website",
+ "marketCap": "5197878.936462059211378102",
+ "price": "0.00555662732124259188",
+ "priceChange24hPercent": "18.8",
+ "volume24h": "418142.061188610976571617",
+ "communityRecognized": false,
+ "key": "evm--4663:0x0762c1708f0d23f86b29d6b857121ff7df357506",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0xa7dba7be294a4828828b0c4e82ef5f23914b85a4",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/c66df7096574ca1cd5958bde6042d85cd3ab75a5a247b8042f7a3941c3706837",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/c66df7096574ca1cd5958bde6042d85cd3ab75a5a247b8042f7a3941c3706837"
+ ],
+ "name": "XCat",
+ "symbol": "XCat",
+ "marketCap": "34395.76442988127799948",
+ "price": "0.00003439576442988128",
+ "priceChange24hPercent": "129.97",
+ "volume24h": "7870.21798454111584359",
+ "communityRecognized": false,
+ "key": "evm--196:0xa7dba7be294a4828828b0c4e82ef5f23914b85a4",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0xfa15e42c18cf57aeef4b1bac1cee7754af7cfe42",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/5b255d183ca8bf08544874058aec758f5611f62d7baa9a8ae5ec7299f85e5925",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/5b255d183ca8bf08544874058aec758f5611f62d7baa9a8ae5ec7299f85e5925"
+ ],
+ "name": "Tencent xStock",
+ "symbol": "TCENTx",
+ "marketCap": "502936578300.8625061",
+ "price": "56.40899701723985906959",
+ "priceChange24hPercent": "0.16",
+ "volume24h": "106635.5525968067297",
+ "communityRecognized": false,
+ "key": "evm--196:0xfa15e42c18cf57aeef4b1bac1cee7754af7cfe42",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0x18a4f9d450f46f9dea99da758b4c29ad620aae93",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/7f955a6a6dee09fb9ac522f8cb7e1a71c93623576fd8adf1a10945361176072b",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/7f955a6a6dee09fb9ac522f8cb7e1a71c93623576fd8adf1a10945361176072b"
+ ],
+ "name": "NVDA RTX STOCKS",
+ "symbol": "RTX",
+ "marketCap": "233108.573806167014996223",
+ "price": "0.0002384584825317207",
+ "priceChange24hPercent": "91.23",
+ "volume24h": "106615.252344310812640814",
+ "communityRecognized": false,
+ "key": "evm--196:0x18a4f9d450f46f9dea99da758b4c29ad620aae93",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0xffc2af7ff3dc845ec8324b4bfa0478761b1c3333",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/e197c8a7a314decbaf37781a61fd599c28af10d94a6c939ee8c059c102bdc6e6",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/e197c8a7a314decbaf37781a61fd599c28af10d94a6c939ee8c059c102bdc6e6"
+ ],
+ "name": "HEALTH",
+ "symbol": "HEALTH",
+ "marketCap": "2316624.677718363926565637",
+ "price": "0.22104638055934490577",
+ "priceChange24hPercent": "-1.22",
+ "volume24h": "8118.169558467680902",
+ "communityRecognized": false,
+ "key": "evm--196:0xffc2af7ff3dc845ec8324b4bfa0478761b1c3333",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0xfb4f81f511b40b80996062032260a539e60adfc0",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/8e483e11911b39a3cb2e584c5dea7c0f2c0cccc2b99fb60de60a485a6122c118",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/8e483e11911b39a3cb2e584c5dea7c0f2c0cccc2b99fb60de60a485a6122c118"
+ ],
+ "name": "Xiaomi xStock",
+ "symbol": "XIAOx",
+ "marketCap": "88093136141.41892151",
+ "price": "3.45590358333333333333",
+ "priceChange24hPercent": "-1.77",
+ "volume24h": "176596.7685971577942348",
+ "communityRecognized": false,
+ "key": "evm--196:0xfb4f81f511b40b80996062032260a539e60adfc0",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0xf93de4ef61309ca8bcd0feab0c6f4dd9b2c4eeee",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/64c2e47ff80f1bf64129d2f1adbc694fa9727ad126405abd75aced8e53aef7af",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/64c2e47ff80f1bf64129d2f1adbc694fa9727ad126405abd75aced8e53aef7af"
+ ],
+ "name": "万事ok",
+ "symbol": "万事OK",
+ "marketCap": "38548.235940986557385497",
+ "price": "0.00003854823594098656",
+ "priceChange24hPercent": "511.66",
+ "volume24h": "19578.080176215100635698",
+ "communityRecognized": false,
+ "key": "evm--196:0xf93de4ef61309ca8bcd0feab0c6f4dd9b2c4eeee",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x9984668e1999e75d7f3cdf82774356138ae9ffff",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/849174a8bc7837a93979a42f2e648f146724ece15a8b1991a64bd6f4e474a229",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/849174a8bc7837a93979a42f2e648f146724ece15a8b1991a64bd6f4e474a229"
+ ],
+ "name": "STONKS",
+ "symbol": "STONKS",
+ "marketCap": "29980.723469108506450951",
+ "price": "0.00002998072346910851",
+ "priceChange24hPercent": "571.42",
+ "volume24h": "5129192.802156426163715683",
+ "communityRecognized": false,
+ "key": "evm--56:0x9984668e1999e75d7f3cdf82774356138ae9ffff",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x0c2f3750418273d3749cc62b5d572ac9a5e14db9",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/4b74f508750b26b0a337922a69381c848a3679c858e468b16c974b285c0844c7",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/4b74f508750b26b0a337922a69381c848a3679c858e468b16c974b285c0844c7"
+ ],
+ "name": "OmniPool",
+ "symbol": "Omni",
+ "marketCap": "306504.741470791609185045",
+ "price": "0.00031736167828754715",
+ "priceChange24hPercent": "10006.77",
+ "volume24h": "2337920.946886627281579771",
+ "communityRecognized": false,
+ "key": "evm--56:0x0c2f3750418273d3749cc62b5d572ac9a5e14db9",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0x381bcca21e3d2e069fb2ba44569c1054cc62eeee",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/6957dac910419a804bcd680faec14c8ccd3c3b64d97e799f1b7876c799dcddc2",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/6957dac910419a804bcd680faec14c8ccd3c3b64d97e799f1b7876c799dcddc2"
+ ],
+ "name": "Starcoin",
+ "symbol": "STARCOIN",
+ "marketCap": "38659.072509209109245114",
+ "price": "0.00003865907250920911",
+ "priceChange24hPercent": "216.28",
+ "volume24h": "15568.5012262490715965",
+ "communityRecognized": false,
+ "key": "evm--196:0x381bcca21e3d2e069fb2ba44569c1054cc62eeee",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "HmJDgky11u77hpBss6D8sjNpYPD5B6fWgSVDj58jpump",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-HmJDgky11u77hpBss6D8sjNpYPD5B6fWgSVDj58jpump-1788282013603.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-HmJDgky11u77hpBss6D8sjNpYPD5B6fWgSVDj58jpump-1788282013603.png"
+ ],
+ "name": "Solcat",
+ "symbol": "SOLCAT",
+ "marketCap": "807860.209301424790721954",
+ "price": "0.00081644136785127577",
+ "priceChange24hPercent": "-46.8",
+ "volume24h": "1274864.034126324",
+ "communityRecognized": true,
+ "key": "sol--101:HmJDgky11u77hpBss6D8sjNpYPD5B6fWgSVDj58jpump",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0x0cc24c51bf89c00c5affbfcf5e856c25ecbdb48e",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/15aefb29f27b6e5d7d418c6b92b3b352e389680196962804a9a8b9fd54a42e65",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/15aefb29f27b6e5d7d418c6b92b3b352e389680196962804a9a8b9fd54a42e65"
+ ],
+ "name": "XDOG",
+ "symbol": "XDOG",
+ "marketCap": "7480555.168651944658385309",
+ "price": "0.00749722661221643887",
+ "priceChange24hPercent": "59.06",
+ "volume24h": "1343561.24558781882064272",
+ "communityRecognized": true,
+ "key": "evm--196:0x0cc24c51bf89c00c5affbfcf5e856c25ecbdb48e",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x431a3bee82e2ca41e49895cbece5bb0f76a89b7a",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x431a3bee82e2ca41e49895cbece5bb0f76a89b7a-1785484886316.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x431a3bee82e2ca41e49895cbece5bb0f76a89b7a-1785484886316.png"
+ ],
+ "name": "Apple",
+ "symbol": "AAPLB",
+ "marketCap": "6580346.4929515002145",
+ "price": "319.56994327900136704227",
+ "priceChange24hPercent": "-0.26",
+ "volume24h": "2066018.986982597730580192",
+ "communityRecognized": false,
+ "key": "evm--56:0x431a3bee82e2ca41e49895cbece5bb0f76a89b7a",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xeccbb861c0dda7efd964010085488b69317e4444",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xeccbb861c0dda7efd964010085488b69317e4444-1772266878150.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xeccbb861c0dda7efd964010085488b69317e4444-1772266878150.png"
+ ],
+ "name": "龙虾",
+ "symbol": "龙虾",
+ "marketCap": "57410944.150485409858350971",
+ "price": "0.05741094441350569486",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": true,
+ "key": "evm--56:0xeccbb861c0dda7efd964010085488b69317e4444",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x277add739c6e0477616948357af9e79fe1ec9b80",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x277add739c6e0477616948357af9e79fe1ec9b80-1785225726728.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x277add739c6e0477616948357af9e79fe1ec9b80-1785225726728.png"
+ ],
+ "name": "AEON",
+ "symbol": "AEON",
+ "marketCap": "12687587.149476832448124543",
+ "price": "0.05431330115358233069",
+ "priceChange24hPercent": "6.32",
+ "volume24h": "2391060.686055467190795709",
+ "communityRecognized": true,
+ "key": "evm--56:0x277add739c6e0477616948357af9e79fe1ec9b80",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x75b364916b65f1e8959fa0210a6922c2ee237777",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/f104dae5a17692fb46edcee8d1b5a247e1c54183ff41afb6059679168e6b5f19",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/f104dae5a17692fb46edcee8d1b5a247e1c54183ff41afb6059679168e6b5f19"
+ ],
+ "name": "TrustCat",
+ "symbol": "TrustCat",
+ "marketCap": "191644.430946520580024584",
+ "price": "0.00019164443094652058",
+ "priceChange24hPercent": "-80.67",
+ "volume24h": "575006.97938784474717656",
+ "communityRecognized": false,
+ "key": "evm--56:0x75b364916b65f1e8959fa0210a6922c2ee237777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xa394dcea3fd3847fd793afbfd163e2e3858b7c65",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xa394dcea3fd3847fd793afbfd163e2e3858b7c65-1785139211549.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xa394dcea3fd3847fd793afbfd163e2e3858b7c65-1785139211549.png"
+ ],
+ "name": "Robinhood",
+ "symbol": "HOODB",
+ "marketCap": "6657816.4153896045",
+ "price": "122.95",
+ "priceChange24hPercent": "-2.7",
+ "volume24h": "980069.113051990151724032",
+ "communityRecognized": false,
+ "key": "evm--56:0xa394dcea3fd3847fd793afbfd163e2e3858b7c65",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x9b8e987e6fec8cf1380c4dca7071e2c7853aeea1",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x9b8e987e6fec8cf1380c4dca7071e2c7853aeea1-1773890745834.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x9b8e987e6fec8cf1380c4dca7071e2c7853aeea1-1773890745834.png"
+ ],
+ "name": "iShares China Large-Cap ETF (Ondo Tokenized)",
+ "symbol": "FXIon",
+ "marketCap": "383060.830532199629954621",
+ "price": "35.347713127268825539",
+ "priceChange24hPercent": "1.05",
+ "volume24h": "4466164.806695524760411003",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x9b8e987e6fec8cf1380c4dca7071e2c7853aeea1",
+ "kind": "stock",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x5b1910eaad6450e50f816082aa078c41f10c292f",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x5b1910eaad6450e50f816082aa078c41f10c292f-1781337775850.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x5b1910eaad6450e50f816082aa078c41f10c292f-1781337775850.png"
+ ],
+ "name": "Tesla, Inc. ",
+ "symbol": "TSLAB",
+ "marketCap": "17974787.0283940827",
+ "price": "356.73",
+ "priceChange24hPercent": "0.24",
+ "volume24h": "5509793.765509040892574563",
+ "communityRecognized": false,
+ "key": "evm--56:0x5b1910eaad6450e50f816082aa078c41f10c292f",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xb0f09ea9ae0515c3551080d4a745c8115aa30e37",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xb0f09ea9ae0515c3551080d4a745c8115aa30e37-1786521835205.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xb0f09ea9ae0515c3551080d4a745c8115aa30e37-1786521835205.png"
+ ],
+ "name": "DAPPOS",
+ "symbol": "DOS",
+ "marketCap": "8089952.224964676897703544",
+ "price": "0.22978419216165026472",
+ "priceChange24hPercent": "-3.04",
+ "volume24h": "1528708.506617656189054791",
+ "communityRecognized": true,
+ "key": "evm--56:0xb0f09ea9ae0515c3551080d4a745c8115aa30e37",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x66661c7229901f568f16bd1551b3ba826f83ce49",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x66661c7229901f568f16bd1551b3ba826f83ce49-1787817829554.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x66661c7229901f568f16bd1551b3ba826f83ce49-1787817829554.png"
+ ],
+ "name": "Teller",
+ "symbol": "DEBIT",
+ "marketCap": "27633764.934803654943821417",
+ "price": "1.60474220270965473005",
+ "priceChange24hPercent": "-8.57",
+ "volume24h": "230135020.198936898750213156",
+ "communityRecognized": true,
+ "key": "evm--56:0x66661c7229901f568f16bd1551b3ba826f83ce49",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x2ab198e0078a8a233b8e7685356cb76482b9e681",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/8356346777831140edc501f7c039ec2abceb49e4ee845cb86f3053a51d691863",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/8356346777831140edc501f7c039ec2abceb49e4ee845cb86f3053a51d691863"
+ ],
+ "name": "Artificial Intelligence Two",
+ "symbol": "AIT",
+ "marketCap": "4287074196.25429954374756",
+ "price": "0.42870741962542995437",
+ "priceChange24hPercent": "-5.52",
+ "volume24h": "433022.667403107645063344",
+ "communityRecognized": false,
+ "key": "evm--56:0x2ab198e0078a8a233b8e7685356cb76482b9e681",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x2c3a8ee94ddd97244a93bc48298f97d2c412f7db",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x2c3a8ee94ddd97244a93bc48298f97d2c412f7db-1757703625601.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x2c3a8ee94ddd97244a93bc48298f97d2c412f7db-1757703625601.png"
+ ],
+ "name": "AKE",
+ "symbol": "AKE",
+ "marketCap": "416296457.038256878835646491",
+ "price": "0.01826162009270195224",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": true,
+ "key": "evm--56:0x2c3a8ee94ddd97244a93bc48298f97d2c412f7db",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xd5f6ef5deabe61e6d5cdb49bfb6f156f2c1ca715",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xd5f6ef5deabe61e6d5cdb49bfb6f156f2c1ca715-1782201736416.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xd5f6ef5deabe61e6d5cdb49bfb6f156f2c1ca715-1782201736416.png"
+ ],
+ "name": "Arcium",
+ "symbol": "ARX",
+ "marketCap": "2307786.482312153867463489",
+ "price": "0.13853557495469045787",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": true,
+ "key": "evm--56:0xd5f6ef5deabe61e6d5cdb49bfb6f156f2c1ca715",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x500a02a20b0b0a3f3efccfc0559543f5743bd1c4",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x500a02a20b0b0a3f3efccfc0559543f5743bd1c4-1781770298726.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x500a02a20b0b0a3f3efccfc0559543f5743bd1c4-1781770298726.png"
+ ],
+ "name": "o1.exchange",
+ "symbol": "O",
+ "marketCap": "10795011.611126715959593983",
+ "price": "0.53972228432139312989",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": true,
+ "key": "evm--56:0x500a02a20b0b0a3f3efccfc0559543f5743bd1c4",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xce0321537b2a6399d629771b04e2ae9b44017777",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xce0321537b2a6399d629771b04e2ae9b44017777-1787991154384.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xce0321537b2a6399d629771b04e2ae9b44017777-1787991154384.png"
+ ],
+ "name": "交流1048106404",
+ "symbol": "火星战车",
+ "marketCap": "2537085.313850503747399213",
+ "price": "0.00258714215272399651",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": false,
+ "key": "evm--56:0xce0321537b2a6399d629771b04e2ae9b44017777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x1ab89c265a1ea8f0ac9dff6a88e6b1c9f86f7777",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/b77b9754e8e0ffd66c0c81ffbfb7be615c3f96c168690673365fbba39742bff5",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/b77b9754e8e0ffd66c0c81ffbfb7be615c3f96c168690673365fbba39742bff5"
+ ],
+ "name": "bStocks",
+ "symbol": "bStocks",
+ "marketCap": "18724.826904411064944599",
+ "price": "0.00001872482690441106",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": false,
+ "key": "evm--56:0x1ab89c265a1ea8f0ac9dff6a88e6b1c9f86f7777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x21caef8a43163eea865baee23b9c2e327696a3bf",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x21caef8a43163eea865baee23b9c2e327696a3bf-1779763100866.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x21caef8a43163eea865baee23b9c2e327696a3bf-1779763100866.png"
+ ],
+ "name": "Tether Gold",
+ "symbol": "XAUt",
+ "marketCap": "58890741.125196808222928869",
+ "price": "4435.53277368368646619941",
+ "priceChange24hPercent": "0.78",
+ "volume24h": "6569605.871206391033136786",
+ "communityRecognized": false,
+ "key": "evm--56:0x21caef8a43163eea865baee23b9c2e327696a3bf",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x46f2564e0fa8248d15125e7e54173cfbdef91be7",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x46f2564e0fa8248d15125e7e54173cfbdef91be7-1785484850757.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x46f2564e0fa8248d15125e7e54173cfbdef91be7-1785484850757.png"
+ ],
+ "name": "GRVT",
+ "symbol": "GRVT",
+ "marketCap": "2136018.461506989521573869",
+ "price": "0.16972545885264871147",
+ "priceChange24hPercent": "1.08",
+ "volume24h": "405174.740464443375220739",
+ "communityRecognized": true,
+ "key": "evm--56:0x46f2564e0fa8248d15125e7e54173cfbdef91be7",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x71967d91abfbf96796238e70092c85878fc85999",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x71967d91abfbf96796238e70092c85878fc85999-1784534417711.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x71967d91abfbf96796238e70092c85878fc85999-1784534417711.png"
+ ],
+ "name": "Satoshi Protocol Token",
+ "symbol": "SPR",
+ "marketCap": "81258854.855630472210388238",
+ "price": "107.70000173402418874061",
+ "priceChange24hPercent": "-3.52",
+ "volume24h": "1094652.960953043764473104",
+ "communityRecognized": false,
+ "key": "evm--56:0x71967d91abfbf96796238e70092c85878fc85999",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x8ffdcd653a218b3a00b8d41ea95ee1e11426ffff",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/be4cbb740113649d957ec49879ac6177a0694dfe9845a00cac46be3abd340d29",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/be4cbb740113649d957ec49879ac6177a0694dfe9845a00cac46be3abd340d29"
+ ],
+ "name": "邮差猫",
+ "symbol": "邮差猫",
+ "marketCap": "704469.984356941444570534",
+ "price": "0.00070446998435694144",
+ "priceChange24hPercent": "6397.48",
+ "volume24h": "801148.0141238265816758",
+ "communityRecognized": false,
+ "key": "evm--56:0x8ffdcd653a218b3a00b8d41ea95ee1e11426ffff",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x1ba42e5193dfa8b03d15dd1b86a3113bbbef8eeb",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x1ba42e5193dfa8b03d15dd1b86a3113bbbef8eeb-1757704281569.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x1ba42e5193dfa8b03d15dd1b86a3113bbbef8eeb-1757704281569.png"
+ ],
+ "name": "Binance-Peg Zcash Token",
+ "symbol": "ZEC",
+ "marketCap": "247270748.455145848835815886",
+ "price": "1123.95817644112360718577",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": true,
+ "key": "evm--56:0x1ba42e5193dfa8b03d15dd1b86a3113bbbef8eeb",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x1f12b85aac097e43aa1555b2881e98a51090e9a6",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x1f12b85aac097e43aa1555b2881e98a51090e9a6-1776240031285.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x1f12b85aac097e43aa1555b2881e98a51090e9a6-1776240031285.png"
+ ],
+ "name": "Genius",
+ "symbol": "GENIUS",
+ "marketCap": "97730501.979140901125665387",
+ "price": "0.29140485121595899356",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": true,
+ "key": "evm--56:0x1f12b85aac097e43aa1555b2881e98a51090e9a6",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xecd794149128e7344154d8993fc0186d57de7777",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/4d69a08aec8be4ccb8730674fbbbe546f37de5dd7283a940fca40f9919433af1",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/4d69a08aec8be4ccb8730674fbbbe546f37de5dd7283a940fca40f9919433af1"
+ ],
+ "name": "狴犴(bian)监狱的代称,CZ的守护神。",
+ "symbol": "狴犴",
+ "marketCap": "894679.376474521284887275",
+ "price": "0.01801207806298397811",
+ "priceChange24hPercent": "-33.84",
+ "volume24h": "380117.21514345151731714",
+ "communityRecognized": false,
+ "key": "evm--56:0xecd794149128e7344154d8993fc0186d57de7777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x255e746abb8d9acac00d6d023e5e63e3b8dfa7cd",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x255e746abb8d9acac00d6d023e5e63e3b8dfa7cd-1778486446534.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x255e746abb8d9acac00d6d023e5e63e3b8dfa7cd-1778486446534.png"
+ ],
+ "name": "IBS",
+ "symbol": "IBS",
+ "marketCap": "9275650.422649753853753797",
+ "price": "12.18869124052090376079",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": true,
+ "key": "evm--56:0x255e746abb8d9acac00d6d023e5e63e3b8dfa7cd",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xe0ab66985c8d18fba4cbc080024341750e997777",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xe0ab66985c8d18fba4cbc080024341750e997777-1787990635380.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xe0ab66985c8d18fba4cbc080024341750e997777-1787990635380.png"
+ ],
+ "name": "TITAN",
+ "symbol": "TITAN",
+ "marketCap": "1097253.921737584663753254",
+ "price": "0.01507987676743016512",
+ "priceChange24hPercent": "16.27",
+ "volume24h": "56251.274965079109870387",
+ "communityRecognized": false,
+ "key": "evm--56:0xe0ab66985c8d18fba4cbc080024341750e997777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xede00776439f9c49c592e43eee34777a51847777",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xede00776439f9c49c592e43eee34777a51847777-1786609978365.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xede00776439f9c49c592e43eee34777a51847777-1786609978365.png"
+ ],
+ "name": "utility token",
+ "symbol": "utility",
+ "marketCap": "610747.773433987135930456",
+ "price": "0.00061074779679151257",
+ "priceChange24hPercent": "-33.54",
+ "volume24h": "379085.955844052529161725",
+ "communityRecognized": false,
+ "key": "evm--56:0xede00776439f9c49c592e43eee34777a51847777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x5feccd17c393caf1001d18164236a37e731fcb9d",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x5feccd17c393caf1001d18164236a37e731fcb9d-1776844861976.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x5feccd17c393caf1001d18164236a37e731fcb9d-1776844861976.png"
+ ],
+ "name": "OpenGradient",
+ "symbol": "OPG",
+ "marketCap": "4387039.677447859046106589",
+ "price": "0.10573655058101875251",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": true,
+ "key": "evm--56:0x5feccd17c393caf1001d18164236a37e731fcb9d",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xb0c2ab5af4028461ace3f6e1c33a4ee1404e7777",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xb0c2ab5af4028461ace3f6e1c33a4ee1404e7777-1786521665683.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xb0c2ab5af4028461ace3f6e1c33a4ee1404e7777-1786521665683.png"
+ ],
+ "name": "Cets On Gold",
+ "symbol": "CETS",
+ "marketCap": "15333572.787585246851695854",
+ "price": "0.01613374201873405437",
+ "priceChange24hPercent": "-15.13",
+ "volume24h": "975047.449840050078452908",
+ "communityRecognized": false,
+ "key": "evm--56:0xb0c2ab5af4028461ace3f6e1c33a4ee1404e7777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xc51a9250795c0186a6fb4a7d20a90330651e4444",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xc51a9250795c0186a6fb4a7d20a90330651e4444-1767255458155.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xc51a9250795c0186a6fb4a7d20a90330651e4444-1767255458155.png"
+ ],
+ "name": "我踏马来了",
+ "symbol": "我踏马来了",
+ "marketCap": "12898366.18222309715777018",
+ "price": "0.01289951469037957278",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": true,
+ "key": "evm--56:0xc51a9250795c0186a6fb4a7d20a90330651e4444",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x92aa03137385f18539301349dcfc9ebc923ffb10",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x92aa03137385f18539301349dcfc9ebc923ffb10-1757703762513.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x92aa03137385f18539301349dcfc9ebc923ffb10-1757703762513.png"
+ ],
+ "name": "SKYAI",
+ "symbol": "SKYAI",
+ "marketCap": "57916860.208130938263645826",
+ "price": "0.0580105990835368113",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": true,
+ "key": "evm--56:0x92aa03137385f18539301349dcfc9ebc923ffb10",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xff5d99a5c16cf2ffb4e7da1d7c42a791e70e4444",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xff5d99a5c16cf2ffb4e7da1d7c42a791e70e4444-1768723826734.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xff5d99a5c16cf2ffb4e7da1d7c42a791e70e4444-1768723826734.png"
+ ],
+ "name": "Ucan fix life in1day",
+ "symbol": "1",
+ "marketCap": "447275.045837158026411143",
+ "price": "0.00045363444264682529",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": true,
+ "key": "evm--56:0xff5d99a5c16cf2ffb4e7da1d7c42a791e70e4444",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xce24439f2d9c6a2289f741120fe202248b666666",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xce24439f2d9c6a2289f741120fe202248b666666-1766111365772.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xce24439f2d9c6a2289f741120fe202248b666666-1766111365772.png"
+ ],
+ "name": "United Stables",
+ "symbol": "U",
+ "marketCap": "946531946.48888976466145856",
+ "price": "0.99919068946012983679",
+ "priceChange24hPercent": "0",
+ "volume24h": "19148191.242730694430968438",
+ "communityRecognized": true,
+ "key": "evm--56:0xce24439f2d9c6a2289f741120fe202248b666666",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x3e17ee3b1895dd1a7cf993a89769c5e029584444",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x3e17ee3b1895dd1a7cf993a89769c5e029584444-1767255579366.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x3e17ee3b1895dd1a7cf993a89769c5e029584444-1767255579366.png"
+ ],
+ "name": "Freedom of Money",
+ "symbol": "Freedom of Money",
+ "marketCap": "2630445.845079194075586464",
+ "price": "0.00263045785901536345",
+ "priceChange24hPercent": "-24.36",
+ "volume24h": "581770.538872219891409649",
+ "communityRecognized": true,
+ "key": "evm--56:0x3e17ee3b1895dd1a7cf993a89769c5e029584444",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xe766023f5a0fa6ce91b9f98d327771437dfca077",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/8356346777831140edc501f7c039ec2abceb49e4ee845cb86f3053a51d691863",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/8356346777831140edc501f7c039ec2abceb49e4ee845cb86f3053a51d691863"
+ ],
+ "name": "AEGIS X",
+ "symbol": "AGX",
+ "marketCap": "74314621.133892253509384157",
+ "price": "55.22569314708519539789",
+ "priceChange24hPercent": "0.02",
+ "volume24h": "2437027.919995226361138176",
+ "communityRecognized": false,
+ "key": "evm--56:0xe766023f5a0fa6ce91b9f98d327771437dfca077",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xba2ae424d960c26247dd6c32edc70b295c744c43",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xba2ae424d960c26247dd6c32edc70b295c744c43.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xba2ae424d960c26247dd6c32edc70b295c744c43.png"
+ ],
+ "name": "Binance-Peg Dogecoin Token",
+ "symbol": "DOGE",
+ "marketCap": "229941792.971631921726507648",
+ "price": "0.08973642960393837073",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": false,
+ "key": "evm--56:0xba2ae424d960c26247dd6c32edc70b295c744c43",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x205812cdbed920aff76c6580abd681a46d11efc7",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x205812cdbed920aff76c6580abd681a46d11efc7-1783065791272.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x205812cdbed920aff76c6580abd681a46d11efc7-1783065791272.png"
+ ],
+ "name": "Invesqo QQQ",
+ "symbol": "QQQB",
+ "marketCap": "1346003.7516617296",
+ "price": "723.14",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": false,
+ "key": "evm--56:0x205812cdbed920aff76c6580abd681a46d11efc7",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x671ecbcb89ee3f85e2199294e723d309d98c4444",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x671ecbcb89ee3f85e2199294e723d309d98c4444-1768032912425.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x671ecbcb89ee3f85e2199294e723d309d98c4444-1768032912425.png"
+ ],
+ "name": "错版马",
+ "symbol": "哭哭马",
+ "marketCap": "2641680.801566308834602654",
+ "price": "0.00268136942733377937",
+ "priceChange24hPercent": "-10.32",
+ "volume24h": "244706.591183066724769483",
+ "communityRecognized": true,
+ "key": "evm--56:0x671ecbcb89ee3f85e2199294e723d309d98c4444",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x79e82e417764b0cbf0f61d178deb54fa1d1b7777",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/7525601eea714e20876b56835a99645e0b80ac83d5e3ee1c2e64c5127d2ecc44",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/7525601eea714e20876b56835a99645e0b80ac83d5e3ee1c2e64c5127d2ecc44"
+ ],
+ "name": "7Stock",
+ "symbol": "7Stock",
+ "marketCap": "151079.651315530099350914",
+ "price": "0.0001510796513155301",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": false,
+ "key": "evm--56:0x79e82e417764b0cbf0f61d178deb54fa1d1b7777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x000ae314e2a2172a039b26378814c252734f556a",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x000ae314e2a2172a039b26378814c252734f556a-1757703693098.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x000ae314e2a2172a039b26378814c252734f556a-1757703693098.png"
+ ],
+ "name": "Aster",
+ "symbol": "ASTER",
+ "marketCap": "2054258640.50664912187417987",
+ "price": "0.76019484603182745818",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": true,
+ "key": "evm--56:0x000ae314e2a2172a039b26378814c252734f556a",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x11116f6fc6145fe83e1e11f363210f90e2761111",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x11116f6fc6145fe83e1e11f363210f90e2761111-1788424285335.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x11116f6fc6145fe83e1e11f363210f90e2761111-1788424285335.png"
+ ],
+ "name": "TaiYi Token",
+ "symbol": "TAIYI",
+ "marketCap": "5967574.525231360995495717",
+ "price": "0.59675745252313609955",
+ "priceChange24hPercent": "-14.14",
+ "volume24h": "1075585.62745645960809724",
+ "communityRecognized": false,
+ "key": "evm--56:0x11116f6fc6145fe83e1e11f363210f90e2761111",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x6ec90334d89dbdc89e08a133271be3d104128edb",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x6ec90334d89dbdc89e08a133271be3d104128edb.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x6ec90334d89dbdc89e08a133271be3d104128edb.png"
+ ],
+ "name": "WIKI CAT",
+ "symbol": "WKC",
+ "marketCap": "46527259.025786861540805662",
+ "price": "0.00000008695551496576",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": true,
+ "key": "evm--56:0x6ec90334d89dbdc89e08a133271be3d104128edb",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xf49725118cb0707b8706ffffe895f3ab16da7777",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xf49725118cb0707b8706ffffe895f3ab16da7777-1788595673498.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xf49725118cb0707b8706ffffe895f3ab16da7777-1788595673498.png"
+ ],
+ "name": "b-money",
+ "symbol": "b-money",
+ "marketCap": "7623129.183320664182795424",
+ "price": "0.00762312918332066418",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": false,
+ "key": "evm--56:0xf49725118cb0707b8706ffffe895f3ab16da7777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x4f06dba806d66e1caeb37516c0f7a28728067777",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x4f06dba806d66e1caeb37516c0f7a28728067777-1787906891706.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x4f06dba806d66e1caeb37516c0f7a28728067777-1787906891706.png"
+ ],
+ "name": "HOMER CZ",
+ "symbol": "HOMER",
+ "marketCap": "175225.583872804223164003",
+ "price": "0.00017522558387280422",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": false,
+ "key": "evm--56:0x4f06dba806d66e1caeb37516c0f7a28728067777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x1d2f0da169ceb9fc7b3144628db156f3f6c60dbe",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x1d2f0da169ceb9fc7b3144628db156f3f6c60dbe.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x1d2f0da169ceb9fc7b3144628db156f3f6c60dbe.png"
+ ],
+ "name": "Binance-Peg XRP Token",
+ "symbol": "XRP",
+ "marketCap": "454321271.727828449023938217",
+ "price": "1.39480348952811591672",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": true,
+ "key": "evm--56:0x1d2f0da169ceb9fc7b3144628db156f3f6c60dbe",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x6bdcce4a559076e37755a78ce0c06214e59e4444",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x6bdcce4a559076e37755a78ce0c06214e59e4444-1757704402300.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x6bdcce4a559076e37755a78ce0c06214e59e4444-1757704402300.png"
+ ],
+ "name": "B",
+ "symbol": "B",
+ "marketCap": "187988187.192583281179716759",
+ "price": "0.18810848605076773264",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": true,
+ "key": "evm--56:0x6bdcce4a559076e37755a78ce0c06214e59e4444",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x990c71fdfa761bcf500ac8753f775ff7fb1b4444",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x990c71fdfa761bcf500ac8753f775ff7fb1b4444-1783325130995.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x990c71fdfa761bcf500ac8753f775ff7fb1b4444-1783325130995.png"
+ ],
+ "name": "714",
+ "symbol": "9",
+ "marketCap": "7487476.419045463703469659",
+ "price": "0.0074874764190454637",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": false,
+ "key": "evm--56:0x990c71fdfa761bcf500ac8753f775ff7fb1b4444",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x5506599c722389a60580b5213ea1da60d64754a1",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x5506599c722389a60580b5213ea1da60d64754a1-1779264512556.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x5506599c722389a60580b5213ea1da60d64754a1-1779264512556.png"
+ ],
+ "name": "Zest",
+ "symbol": "ZEST",
+ "marketCap": "19360163.827995821598920612",
+ "price": "0.13260386183558781917",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": true,
+ "key": "evm--56:0x5506599c722389a60580b5213ea1da60d64754a1",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xd8348b96c8f23e1e24c0f40f495823c98f8e7777",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xd8348b96c8f23e1e24c0f40f495823c98f8e7777-1780992799209.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xd8348b96c8f23e1e24c0f40f495823c98f8e7777-1780992799209.png"
+ ],
+ "name": "币安股票QQ 714815163",
+ "symbol": "币安股票",
+ "marketCap": "4155607.256159677802898252",
+ "price": "0.00468721538539453816",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": false,
+ "key": "evm--56:0xd8348b96c8f23e1e24c0f40f495823c98f8e7777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xcefbf00b3732fe91e46989037e4b2564a4fc7777",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xcefbf00b3732fe91e46989037e4b2564a4fc7777-1784537933503.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xcefbf00b3732fe91e46989037e4b2564a4fc7777-1784537933503.png"
+ ],
+ "name": "NIXI",
+ "symbol": "逆袭人生",
+ "marketCap": "68765488.529334663526141979",
+ "price": "0.07439889039955074786",
+ "priceChange24hPercent": "1.34",
+ "volume24h": "36604.714405210175942757",
+ "communityRecognized": false,
+ "key": "evm--56:0xcefbf00b3732fe91e46989037e4b2564a4fc7777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xf74548802f4c700315f019fde17178b392ee4444",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xf74548802f4c700315f019fde17178b392ee4444-1768983160402.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xf74548802f4c700315f019fde17178b392ee4444-1768983160402.png"
+ ],
+ "name": "memes will continue",
+ "symbol": "memes",
+ "marketCap": "675035.056783483274635375",
+ "price": "0.00068217292903309336",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": true,
+ "key": "evm--56:0xf74548802f4c700315f019fde17178b392ee4444",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xc839b8f4f6ded0cae5531a603b78ede6ca677777",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xc839b8f4f6ded0cae5531a603b78ede6ca677777-1787645476535.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xc839b8f4f6ded0cae5531a603b78ede6ca677777-1787645476535.png"
+ ],
+ "name": "羊必火",
+ "symbol": "羊必火",
+ "marketCap": "12585713.642719191855686756",
+ "price": "0.06292856837466439058",
+ "priceChange24hPercent": "51.13",
+ "volume24h": "406454.393331159320302056",
+ "communityRecognized": false,
+ "key": "evm--56:0xc839b8f4f6ded0cae5531a603b78ede6ca677777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x99991c6aabba5a096f24f250b73580f5179b9999",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x99991c6aabba5a096f24f250b73580f5179b9999-1782548206597.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x99991c6aabba5a096f24f250b73580f5179b9999-1782548206597.png"
+ ],
+ "name": "Cap",
+ "symbol": "CAP",
+ "marketCap": "11716905.865456267943357585",
+ "price": "0.04513917496337004061",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": true,
+ "key": "evm--56:0x99991c6aabba5a096f24f250b73580f5179b9999",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x4b3d30992f003c8167699735f5ab2831b2a087d3",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x4b3d30992f003c8167699735f5ab2831b2a087d3-1766908837745.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x4b3d30992f003c8167699735f5ab2831b2a087d3-1766908837745.png"
+ ],
+ "name": "Collect on Fanable",
+ "symbol": "COLLECT",
+ "marketCap": "18867467.873255752086178654",
+ "price": "0.03514460454450506257",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": true,
+ "key": "evm--56:0x4b3d30992f003c8167699735f5ab2831b2a087d3",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x82ec31d69b3c289e541b50e30681fd1acad24444",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x82ec31d69b3c289e541b50e30681fd1acad24444-1759912042684.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x82ec31d69b3c289e541b50e30681fd1acad24444-1759912042684.png"
+ ],
+ "name": "哈基米",
+ "symbol": "哈基米",
+ "marketCap": "47863529.168543933110176721",
+ "price": "0.04786369816695196914",
+ "priceChange24hPercent": "-17.69",
+ "volume24h": "15585159.371435130172546294",
+ "communityRecognized": false,
+ "key": "evm--56:0x82ec31d69b3c289e541b50e30681fd1acad24444",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xd20fb09a49a8e75fef536a2dbc68222900287bac",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xd20fb09a49a8e75fef536a2dbc68222900287bac-1774425694527.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xd20fb09a49a8e75fef536a2dbc68222900287bac-1774425694527.png"
+ ],
+ "name": "Perle",
+ "symbol": "PRL",
+ "marketCap": "6297783.09927422562332277",
+ "price": "0.12951594033087273126",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": false,
+ "key": "evm--56:0xd20fb09a49a8e75fef536a2dbc68222900287bac",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x0667873e07ffec6509525b4e4cd97409e1fe9424",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x0667873e07ffec6509525b4e4cd97409e1fe9424-1779955546792.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x0667873e07ffec6509525b4e4cd97409e1fe9424-1779955546792.png"
+ ],
+ "name": "CAT",
+ "symbol": "CAT",
+ "marketCap": "1597693683.436478417233024693",
+ "price": "1.6880717323965409394",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": false,
+ "key": "evm--56:0x0667873e07ffec6509525b4e4cd97409e1fe9424",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x1d28d989f9e3ccb8b15d0cec601734514f958e4d",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x1d28d989f9e3ccb8b15d0cec601734514f958e4d-1775531989312.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x1d28d989f9e3ccb8b15d0cec601734514f958e4d-1775531989312.png"
+ ],
+ "name": "Based Token",
+ "symbol": "BASED",
+ "marketCap": "5883129.271364256325991662",
+ "price": "0.06755664552512514544",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": true,
+ "key": "evm--56:0x1d28d989f9e3ccb8b15d0cec601734514f958e4d",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xf8a0bf9cf54bb92f17374d9e9a321e6a111a51bd",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xf8a0bf9cf54bb92f17374d9e9a321e6a111a51bd.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xf8a0bf9cf54bb92f17374d9e9a321e6a111a51bd.png"
+ ],
+ "name": "ChainLink Token",
+ "symbol": "LINK",
+ "marketCap": "113604887.35906113141004216",
+ "price": "12.66474937487612494069",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": true,
+ "key": "evm--56:0xf8a0bf9cf54bb92f17374d9e9a321e6a111a51bd",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x477c2c0459004e3354ba427fa285d7c053203c0e",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x477c2c0459004e3354ba427fa285d7c053203c0e-1759047311615.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x477c2c0459004e3354ba427fa285d7c053203c0e-1759047311615.png"
+ ],
+ "name": "LIGHT",
+ "symbol": "LIGHT",
+ "marketCap": "7705428.782385057024666934",
+ "price": "0.17895891012459159981",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": true,
+ "key": "evm--56:0x477c2c0459004e3354ba427fa285d7c053203c0e",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x011ebe7d75e2c9d1e0bd0be0bef5c36f0a90075f",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x011ebe7d75e2c9d1e0bd0be0bef5c36f0a90075f-1765180866032.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x011ebe7d75e2c9d1e0bd0be0bef5c36f0a90075f-1765180866032.png"
+ ],
+ "name": "STABLE",
+ "symbol": "STABLE",
+ "marketCap": "21179540.476821359841252186",
+ "price": "0.02926530501306202492",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": true,
+ "key": "evm--56:0x011ebe7d75e2c9d1e0bd0be0bef5c36f0a90075f",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x000008d2175f9aeaddb2430c26f8a6f73c5a0000",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x000008d2175f9aeaddb2430c26f8a6f73c5a0000-1773216021396.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x000008d2175f9aeaddb2430c26f8a6f73c5a0000-1773216021396.png"
+ ],
+ "name": "Unitas",
+ "symbol": "UP",
+ "marketCap": "375969121.251971555115436307",
+ "price": "0.41584932771378442806",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": true,
+ "key": "evm--56:0x000008d2175f9aeaddb2430c26f8a6f73c5a0000",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x0e09fabb73bd3ade0a17ecc321fd13a19e81ce82",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x0e09fabb73bd3ade0a17ecc321fd13a19e81ce82-1720669568581.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x0e09fabb73bd3ade0a17ecc321fd13a19e81ce82-1720669568581.png"
+ ],
+ "name": "PancakeSwap Token",
+ "symbol": "Cake",
+ "marketCap": "720219834.161365419768124908",
+ "price": "2.23534882624358058917",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": true,
+ "key": "evm--56:0x0e09fabb73bd3ade0a17ecc321fd13a19e81ce82",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xa045aedf5eadf7a2eba941e0a7e50d2f294b4444",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/61256cce0c5acddbf40d3f9b65572dc6a42f8e6e1c439b521b188f9062eccc2d",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/61256cce0c5acddbf40d3f9b65572dc6a42f8e6e1c439b521b188f9062eccc2d"
+ ],
+ "name": "BNCat",
+ "symbol": "BNCat",
+ "marketCap": "19955.666323573698612898",
+ "price": "0.0000199556663235737",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": false,
+ "key": "evm--56:0xa045aedf5eadf7a2eba941e0a7e50d2f294b4444",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x595deaad1eb5476ff1e649fdb7efc36f1e4679cc",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x595deaad1eb5476ff1e649fdb7efc36f1e4679cc-1772611646341.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x595deaad1eb5476ff1e649fdb7efc36f1e4679cc-1772611646341.png"
+ ],
+ "name": "Block Street",
+ "symbol": "BSB",
+ "marketCap": "7712624.125109894756429946",
+ "price": "0.11114799244479850594",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": true,
+ "key": "evm--56:0x595deaad1eb5476ff1e649fdb7efc36f1e4679cc",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x444045b0ee1ee319a660a5e3d604ca0ffa35acaa",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x444045b0ee1ee319a660a5e3d604ca0ffa35acaa-1766736124406.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x444045b0ee1ee319a660a5e3d604ca0ffa35acaa-1766736124406.png"
+ ],
+ "name": "Bitway Token",
+ "symbol": "BTW",
+ "marketCap": "4494551588.813634962626286845",
+ "price": "0.44945516844863451949",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": true,
+ "key": "evm--56:0x444045b0ee1ee319a660a5e3d604ca0ffa35acaa",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xd41fdb03ba84762dd66a0af1a6c8540ff1ba5dfb",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xd41fdb03ba84762dd66a0af1a6c8540ff1ba5dfb.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xd41fdb03ba84762dd66a0af1a6c8540ff1ba5dfb.png"
+ ],
+ "name": "SafePal Token",
+ "symbol": "SFP",
+ "marketCap": "84494475.569095059809360541",
+ "price": "0.28164826761470087861",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": true,
+ "key": "evm--56:0xd41fdb03ba84762dd66a0af1a6c8540ff1ba5dfb",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x9123400446a56176eb1b6be9ee5cf703e409f492",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x9123400446a56176eb1b6be9ee5cf703e409f492-1757703938667.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x9123400446a56176eb1b6be9ee5cf703e409f492-1757703938667.png"
+ ],
+ "name": "TRADOOR",
+ "symbol": "TRADOOR",
+ "marketCap": "9406025.806089261469173613",
+ "price": "0.65551786229627580104",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": true,
+ "key": "evm--56:0x9123400446a56176eb1b6be9ee5cf703e409f492",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x3cbd513239d9e5538a4caed8ed53ef77009df473",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x3cbd513239d9e5538a4caed8ed53ef77009df473-1784537007799.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x3cbd513239d9e5538a4caed8ed53ef77009df473-1784537007799.png"
+ ],
+ "name": "ALD",
+ "symbol": "ALD",
+ "marketCap": "52382831.395644133844526702",
+ "price": "0.05238283139564413384",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": false,
+ "key": "evm--56:0x3cbd513239d9e5538a4caed8ed53ef77009df473",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x30454106aa5dbb80d7d08cd81d513a7698f27777",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/6eca6d4ed399c219a37c87c8d84a9da0e09565c2515c07ccf412124cca56e7e1",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/6eca6d4ed399c219a37c87c8d84a9da0e09565c2515c07ccf412124cca56e7e1"
+ ],
+ "name": "蛋小黑",
+ "symbol": "蛋小黑",
+ "marketCap": "814985.803182874144583995",
+ "price": "0.00081498580318287414",
+ "priceChange24hPercent": "399.7",
+ "volume24h": "815084.047091942247139594",
+ "communityRecognized": false,
+ "key": "evm--56:0x30454106aa5dbb80d7d08cd81d513a7698f27777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xeec6574eabba52bac3f0277f2cd5ac7e67197886",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xeec6574eabba52bac3f0277f2cd5ac7e67197886-1786781256299.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xeec6574eabba52bac3f0277f2cd5ac7e67197886-1786781256299.png"
+ ],
+ "name": "Kiichain",
+ "symbol": "KII",
+ "marketCap": "17058024.641724736937977136",
+ "price": "0.06630054335124047397",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": true,
+ "key": "evm--56:0xeec6574eabba52bac3f0277f2cd5ac7e67197886",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x5dbde81fce337ff4bcaaee4ca3466c00aecae274",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x5dbde81fce337ff4bcaaee4ca3466c00aecae274-1757703621183.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x5dbde81fce337ff4bcaaee4ca3466c00aecae274-1757703621183.png"
+ ],
+ "name": "Alaya Governance Token",
+ "symbol": "AGT",
+ "marketCap": "52213718.999509131327857834",
+ "price": "0.01728907978573270939",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": true,
+ "key": "evm--56:0x5dbde81fce337ff4bcaaee4ca3466c00aecae274",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x46238e4493e036afdec28b3f2eb88a28ed687777",
+ "logoUrl": "https://static.oklink.com/cdn/web3/currency/token/large/56-0x46238e4493e036afdec28b3f2eb88a28ed687777-107/type=default_90_0?v=1788838917645",
+ "logoUrls": [
+ "https://static.oklink.com/cdn/web3/currency/token/large/56-0x46238e4493e036afdec28b3f2eb88a28ed687777-107/type=default_90_0?v=1788838917645"
+ ],
+ "name": "Built and Code",
+ "symbol": "BNC",
+ "marketCap": "10520.31218910889100598",
+ "price": "0.00001052031218910889",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": false,
+ "key": "evm--56:0x46238e4493e036afdec28b3f2eb88a28ed687777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xe7fa9ede0239419e1c76cc5983eeb543410d7777",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xe7fa9ede0239419e1c76cc5983eeb543410d7777-1788423192442.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xe7fa9ede0239419e1c76cc5983eeb543410d7777-1788423192442.png"
+ ],
+ "name": "50分红50拉盘销毁进群建设978330961",
+ "symbol": "谷歌股票",
+ "marketCap": "61273.595559100717736427",
+ "price": "0.00006695781628593392",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": false,
+ "key": "evm--56:0xe7fa9ede0239419e1c76cc5983eeb543410d7777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xf3525965a4ad3ca0ac13f4d2f237113691194444",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xf3525965a4ad3ca0ac13f4d2f237113691194444-1760428952104.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xf3525965a4ad3ca0ac13f4d2f237113691194444-1760428952104.png"
+ ],
+ "name": "熊猫头",
+ "symbol": "熊猫头",
+ "marketCap": "736297.730738897681711427",
+ "price": "0.00073629774415388972",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": false,
+ "key": "evm--56:0xf3525965a4ad3ca0ac13f4d2f237113691194444",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x25f0ff2338174872e9c294d5d2fe736454321378",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/849174a8bc7837a93979a42f2e648f146724ece15a8b1991a64bd6f4e474a229",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/849174a8bc7837a93979a42f2e648f146724ece15a8b1991a64bd6f4e474a229"
+ ],
+ "name": "SFIG",
+ "symbol": "SFIG",
+ "marketCap": "4310906763.624390967117015743",
+ "price": "0.4311533550188525692",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": false,
+ "key": "evm--56:0x25f0ff2338174872e9c294d5d2fe736454321378",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x2ec39b165e22944d2fee389219ee64e4924cffff",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x2ec39b165e22944d2fee389219ee64e4924cffff-1785657654182.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x2ec39b165e22944d2fee389219ee64e4924cffff-1785657654182.png"
+ ],
+ "name": "NVDA RTX STOCKS",
+ "symbol": "RTX",
+ "marketCap": "46950.873042647061995621",
+ "price": "0.0000469508747823164",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": false,
+ "key": "evm--56:0x2ec39b165e22944d2fee389219ee64e4924cffff",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xf2ec508422174ee564de98187db9359d318afb6b",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xf2ec508422174ee564de98187db9359d318afb6b-1787991519391.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xf2ec508422174ee564de98187db9359d318afb6b-1787991519391.png"
+ ],
+ "name": "Trump Media & Technology Group Corp",
+ "symbol": "DJTB",
+ "marketCap": "1991313.744108970867364111",
+ "price": "9.03",
+ "priceChange24hPercent": "0.44",
+ "volume24h": "656168.45572001262319329",
+ "communityRecognized": false,
+ "key": "evm--56:0xf2ec508422174ee564de98187db9359d318afb6b",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xa3ab3ae51f5bca4fe66f916e7b3c7f9edafe7c4a",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/61256cce0c5acddbf40d3f9b65572dc6a42f8e6e1c439b521b188f9062eccc2d",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/61256cce0c5acddbf40d3f9b65572dc6a42f8e6e1c439b521b188f9062eccc2d"
+ ],
+ "name": "Brew Pepe",
+ "symbol": "BREWPEPE",
+ "marketCap": "18347.985958957480702345",
+ "price": "0.00001834798595895748",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": false,
+ "key": "evm--56:0xa3ab3ae51f5bca4fe66f916e7b3c7f9edafe7c4a",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x6ff45323817d1d53bbb8a8dfba9245ae74057777",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x6ff45323817d1d53bbb8a8dfba9245ae74057777-1787732377108.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x6ff45323817d1d53bbb8a8dfba9245ae74057777-1787732377108.png"
+ ],
+ "name": "memestock",
+ "symbol": "memestock",
+ "marketCap": "7516523.262935512625136318",
+ "price": "0.007516523269890643",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": false,
+ "key": "evm--56:0x6ff45323817d1d53bbb8a8dfba9245ae74057777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x2f31614f7a8bb702f7898d379b3c23db73b87777",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x2f31614f7a8bb702f7898d379b3c23db73b87777-1786608767364.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x2f31614f7a8bb702f7898d379b3c23db73b87777-1786608767364.png"
+ ],
+ "name": "CSI888",
+ "symbol": "CSI",
+ "marketCap": "22794.992200787665029936",
+ "price": "0.00002279499220078767",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": false,
+ "key": "evm--56:0x2f31614f7a8bb702f7898d379b3c23db73b87777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xbb87378b58894338f0937b9691a5a6dc3a5a7777",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xbb87378b58894338f0937b9691a5a6dc3a5a7777-1788682035504.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xbb87378b58894338f0937b9691a5a6dc3a5a7777-1788682035504.png"
+ ],
+ "name": "孙小圣",
+ "symbol": "孙小圣",
+ "marketCap": "149236.434472636266624232",
+ "price": "0.00017591158417934095",
+ "priceChange24hPercent": "-9.65",
+ "volume24h": "135897.968079199004031145",
+ "communityRecognized": false,
+ "key": "evm--56:0xbb87378b58894338f0937b9691a5a6dc3a5a7777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x07dcaccade1e3c034c707039bdfe02792f88ffff",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x07dcaccade1e3c034c707039bdfe02792f88ffff-1787645319054.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x07dcaccade1e3c034c707039bdfe02792f88ffff-1787645319054.png"
+ ],
+ "name": "FOMOCAT",
+ "symbol": "FOMOCAT",
+ "marketCap": "86510.893011590301110973",
+ "price": "0.0000865108930115903",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": false,
+ "key": "evm--56:0x07dcaccade1e3c034c707039bdfe02792f88ffff",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xb75b67cabd07f307ebf4cc8ef271ce4cca457777",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/d4a1db31406358fd501bb80bcfdd9cad807559b2edc36d841eebc5dc6deebd7a",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/d4a1db31406358fd501bb80bcfdd9cad807559b2edc36d841eebc5dc6deebd7a"
+ ],
+ "name": "人生太难了qq:1104889362",
+ "symbol": "人生太难了",
+ "marketCap": "198968.825327085304047973",
+ "price": "0.00020042560805769368",
+ "priceChange24hPercent": "125.18",
+ "volume24h": "42834.290937726059384505",
+ "communityRecognized": false,
+ "key": "evm--56:0xb75b67cabd07f307ebf4cc8ef271ce4cca457777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xc6bff31bbfa84d3c05ad61d8ec47be8b31517777",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xc6bff31bbfa84d3c05ad61d8ec47be8b31517777-1786608913243.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xc6bff31bbfa84d3c05ad61d8ec47be8b31517777-1786608913243.png"
+ ],
+ "name": "The Martian Dog",
+ "symbol": "Marvin",
+ "marketCap": "1838379.926952434127917623",
+ "price": "0.00184236150106962533",
+ "priceChange24hPercent": "2.23",
+ "volume24h": "48184.940155407189316578",
+ "communityRecognized": false,
+ "key": "evm--56:0xc6bff31bbfa84d3c05ad61d8ec47be8b31517777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x10d4183389e99233db3cc981c43443ebd28ebd5e",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x10d4183389e99233db3cc981c43443ebd28ebd5e-1787472223992.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x10d4183389e99233db3cc981c43443ebd28ebd5e-1787472223992.png"
+ ],
+ "name": "DGrid AI",
+ "symbol": "DGAI",
+ "marketCap": "759145498.720034777473107234",
+ "price": "0.75914549872003477747",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": true,
+ "key": "evm--56:0x10d4183389e99233db3cc981c43443ebd28ebd5e",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xc69b16cf18cea1e5d0bb6a1a9db802097790ddd2",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/6d7ad2a0916c205fa53549b8f6d63025a17b81bcb0bd44f2397db2e5ab0e9862",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/6d7ad2a0916c205fa53549b8f6d63025a17b81bcb0bd44f2397db2e5ab0e9862"
+ ],
+ "name": "CNPY",
+ "symbol": "CNPY",
+ "marketCap": "5643603.247625643996890991",
+ "price": "0.19813595578231632859",
+ "priceChange24hPercent": "20.37",
+ "volume24h": "17322883.437990471391570956",
+ "communityRecognized": true,
+ "key": "evm--56:0xc69b16cf18cea1e5d0bb6a1a9db802097790ddd2",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x923398cc7d149d69b9356c1866b8d3e9d5cfffff",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/e95d83e345b2aefd0bc28dfac61d3a1123b000efb94afe2d1fbd00e6bc332cd2",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/e95d83e345b2aefd0bc28dfac61d3a1123b000efb94afe2d1fbd00e6bc332cd2"
+ ],
+ "name": "stockmemes",
+ "symbol": "stockmemes",
+ "marketCap": "15990.163084300757331558",
+ "price": "0.00001600626526256663",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": false,
+ "key": "evm--56:0x923398cc7d149d69b9356c1866b8d3e9d5cfffff",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x31d19b3633ebdb60dc9d690b3e9eb1fff61a7777",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x31d19b3633ebdb60dc9d690b3e9eb1fff61a7777-1787299357411.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x31d19b3633ebdb60dc9d690b3e9eb1fff61a7777-1787299357411.png"
+ ],
+ "name": "Asian games",
+ "symbol": "Asian games",
+ "marketCap": "2575773.607003965493414304",
+ "price": "0.00914135857956248116",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": false,
+ "key": "evm--56:0x31d19b3633ebdb60dc9d690b3e9eb1fff61a7777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x6ced5c6d3f913b48d59fa07abbfe9060c409087c",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x6ced5c6d3f913b48d59fa07abbfe9060c409087c-1778919908443.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x6ced5c6d3f913b48d59fa07abbfe9060c409087c-1778919908443.png"
+ ],
+ "name": "AntFun",
+ "symbol": "ANTFUN",
+ "marketCap": "4629364.524287027182239373",
+ "price": "0.07753302348850365897",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": false,
+ "key": "evm--56:0x6ced5c6d3f913b48d59fa07abbfe9060c409087c",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xf225e70162837a811c77dc2bb413a5c06e97ffff",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xf225e70162837a811c77dc2bb413a5c06e97ffff-1786694462537.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xf225e70162837a811c77dc2bb413a5c06e97ffff-1786694462537.png"
+ ],
+ "name": "SpaceXcoin",
+ "symbol": "SpaceXcoin",
+ "marketCap": "128243.318673851247240209",
+ "price": "0.00012824332004659782",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": false,
+ "key": "evm--56:0xf225e70162837a811c77dc2bb413a5c06e97ffff",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x0b6d8934fc8838b1027b510364a2087317bd4444",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x0b6d8934fc8838b1027b510364a2087317bd4444-1783584021383.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x0b6d8934fc8838b1027b510364a2087317bd4444-1783584021383.png"
+ ],
+ "name": "Binance bibi",
+ "symbol": "bibi",
+ "marketCap": "1076142.615594207045340471",
+ "price": "0.00107614263565242028",
+ "priceChange24hPercent": "-12.8",
+ "volume24h": "44324.59591002863310639",
+ "communityRecognized": false,
+ "key": "evm--56:0x0b6d8934fc8838b1027b510364a2087317bd4444",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xabed98e3aa42b5ab79cce9e7ebb274688ba2ffff",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xabed98e3aa42b5ab79cce9e7ebb274688ba2ffff-1788427600631.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xabed98e3aa42b5ab79cce9e7ebb274688ba2ffff-1788427600631.png"
+ ],
+ "name": "Four.care",
+ "symbol": "CARE",
+ "marketCap": "104352.8411823867195627",
+ "price": "0.00010435284118238672",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": false,
+ "key": "evm--56:0xabed98e3aa42b5ab79cce9e7ebb274688ba2ffff",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x8b7abc1c0f2e6c0b76bc4fd0f7190f67d72e7777",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x8b7abc1c0f2e6c0b76bc4fd0f7190f67d72e7777-1787565305355.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x8b7abc1c0f2e6c0b76bc4fd0f7190f67d72e7777-1787565305355.png"
+ ],
+ "name": "老吴",
+ "symbol": "老吴",
+ "marketCap": "153408.534977003767910205",
+ "price": "0.00015340958976786479",
+ "priceChange24hPercent": "-30.3",
+ "volume24h": "94952.10511583543903845",
+ "communityRecognized": false,
+ "key": "evm--56:0x8b7abc1c0f2e6c0b76bc4fd0f7190f67d72e7777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x3ac8e2c113d5d7824ac6ebe82a3c60b1b9d64444",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x3ac8e2c113d5d7824ac6ebe82a3c60b1b9d64444-1759911823892.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x3ac8e2c113d5d7824ac6ebe82a3c60b1b9d64444-1759911823892.png"
+ ],
+ "name": "客服小何",
+ "symbol": "客服小何",
+ "marketCap": "3568628.499777472633316358",
+ "price": "0.00362665693651657106",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": true,
+ "key": "evm--56:0x3ac8e2c113d5d7824ac6ebe82a3c60b1b9d64444",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x9b2bf8e150d0f316e3835da0bfdab5b96990cfea",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/2e04e2de318c1c98df832618a58d1827f55e7b829f3231712408ac643551d331",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/2e04e2de318c1c98df832618a58d1827f55e7b829f3231712408ac643551d331"
+ ],
+ "name": "BREWCAT",
+ "symbol": "BREWCAT",
+ "marketCap": "132491.943842949900689963",
+ "price": "0.00013810147633606771",
+ "priceChange24hPercent": "-82.22",
+ "volume24h": "643052.425056373597325026",
+ "communityRecognized": false,
+ "key": "evm--56:0x9b2bf8e150d0f316e3835da0bfdab5b96990cfea",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xfb6115445bff7b52feb98650c87f44907e58f802",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xfb6115445bff7b52feb98650c87f44907e58f802.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xfb6115445bff7b52feb98650c87f44907e58f802.png"
+ ],
+ "name": "Aave Token",
+ "symbol": "AAVE",
+ "marketCap": "52415893.150463183904767231",
+ "price": "131.03975566456654248931",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": true,
+ "key": "evm--56:0xfb6115445bff7b52feb98650c87f44907e58f802",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x82d24443bfd28bc58a505f5fa75fbcb474e41111",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/4e8c53d544949013abc07d5c714539b3c6528cfe1f866ec5dbb1d2c1042d4ab9",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/4e8c53d544949013abc07d5c714539b3c6528cfe1f866ec5dbb1d2c1042d4ab9"
+ ],
+ "name": "Fair 2.0",
+ "symbol": "FAI",
+ "marketCap": "202866.564458383814962023",
+ "price": "1.44563060846920658938",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": false,
+ "key": "evm--56:0x82d24443bfd28bc58a505f5fa75fbcb474e41111",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x1a5f9d77ca46646cd4937fd8d093f460b66f4444",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x1a5f9d77ca46646cd4937fd8d093f460b66f4444-1768032084379.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x1a5f9d77ca46646cd4937fd8d093f460b66f4444-1768032084379.png"
+ ],
+ "name": "老子",
+ "symbol": "老子",
+ "marketCap": "814200.768992484253786762",
+ "price": "0.00081794117568644025",
+ "priceChange24hPercent": "-22.26",
+ "volume24h": "328687.445365909396638294",
+ "communityRecognized": true,
+ "key": "evm--56:0x1a5f9d77ca46646cd4937fd8d093f460b66f4444",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x3a70d8fd50d7f4c594e4559ea55bcd119b3a7777",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x3a70d8fd50d7f4c594e4559ea55bcd119b3a7777-1787991587951.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x3a70d8fd50d7f4c594e4559ea55bcd119b3a7777-1787991587951.png"
+ ],
+ "name": "Rufuscoin",
+ "symbol": "rufus",
+ "marketCap": "72211.725158388518190738",
+ "price": "0.00007221302591264014",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": false,
+ "key": "evm--56:0x3a70d8fd50d7f4c594e4559ea55bcd119b3a7777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xa5c8e1513b6a08334b479fe4d71f1253259469be",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xa5c8e1513b6a08334b479fe4d71f1253259469be-1764144238059.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xa5c8e1513b6a08334b479fe4d71f1253259469be-1764144238059.png"
+ ],
+ "name": "GUA",
+ "symbol": "GUA",
+ "marketCap": "4630572.312854038749733388",
+ "price": "0.03704457850283231",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": true,
+ "key": "evm--56:0xa5c8e1513b6a08334b479fe4d71f1253259469be",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x7d00ea5f68098c93e610e03c9242d10ebe704444",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/be4cbb740113649d957ec49879ac6177a0694dfe9845a00cac46be3abd340d29",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/be4cbb740113649d957ec49879ac6177a0694dfe9845a00cac46be3abd340d29"
+ ],
+ "name": "牛神",
+ "symbol": "牛神",
+ "marketCap": "23900.918420790937038014",
+ "price": "0.00002390091842079094",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": false,
+ "key": "evm--56:0x7d00ea5f68098c93e610e03c9242d10ebe704444",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x81d3a238b02827f62b9f390f947d36d4a5bf89d2",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x81d3a238b02827f62b9f390f947d36d4a5bf89d2-1760515864179.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x81d3a238b02827f62b9f390f947d36d4a5bf89d2-1760515864179.png"
+ ],
+ "name": "Yei Finance",
+ "symbol": "CLO",
+ "marketCap": "15438651.520799663064746045",
+ "price": "0.11958676623392457835",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": true,
+ "key": "evm--56:0x81d3a238b02827f62b9f390f947d36d4a5bf89d2",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x9f6b4c65e31a0f0bc663944950a74ed77c017777",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x9f6b4c65e31a0f0bc663944950a74ed77c017777-1788250361221.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x9f6b4c65e31a0f0bc663944950a74ed77c017777-1788250361221.png"
+ ],
+ "name": "币安证券",
+ "symbol": "币安证券",
+ "marketCap": "1503746.014069436085928105",
+ "price": "0.00395447368357555212",
+ "priceChange24hPercent": "-5.84",
+ "volume24h": "134077.758797006906826202",
+ "communityRecognized": false,
+ "key": "evm--56:0x9f6b4c65e31a0f0bc663944950a74ed77c017777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x36f2fd027f5f27c59b8c6d64df64bcc8e8c97777",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x36f2fd027f5f27c59b8c6d64df64bcc8e8c97777-1766391154497.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x36f2fd027f5f27c59b8c6d64df64bcc8e8c97777-1766391154497.png"
+ ],
+ "name": "雪球",
+ "symbol": "雪球",
+ "marketCap": "4695287.782229586484960771",
+ "price": "0.00791448227953636867",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": true,
+ "key": "evm--56:0x36f2fd027f5f27c59b8c6d64df64bcc8e8c97777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xdbc6333a7d8bcd95f96641eda4d095e69f207777",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xdbc6333a7d8bcd95f96641eda4d095e69f207777-1786610534592.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xdbc6333a7d8bcd95f96641eda4d095e69f207777-1786610534592.png"
+ ],
+ "name": "Bicat",
+ "symbol": "Bicat",
+ "marketCap": "238682.637162686230855188",
+ "price": "0.00023868263739494475",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": false,
+ "key": "evm--56:0xdbc6333a7d8bcd95f96641eda4d095e69f207777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x18d0e455b3491e09210292d3953157a4bf104444",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x18d0e455b3491e09210292d3953157a4bf104444-1762675561366.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x18d0e455b3491e09210292d3953157a4bf104444-1762675561366.png"
+ ],
+ "name": "比特币",
+ "symbol": "比特币",
+ "marketCap": "80107706.690098273959839871",
+ "price": "0.08010773056685818576",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": false,
+ "key": "evm--56:0x18d0e455b3491e09210292d3953157a4bf104444",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x537c87f3c4fa801ffcebcc222fd687b9a5e97777",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x537c87f3c4fa801ffcebcc222fd687b9a5e97777-1784534428165.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x537c87f3c4fa801ffcebcc222fd687b9a5e97777-1784534428165.png"
+ ],
+ "name": "吉祥狗",
+ "symbol": "吉祥狗",
+ "marketCap": "817486.293490385927161851",
+ "price": "0.00386357732592751841",
+ "priceChange24hPercent": "13.01",
+ "volume24h": "102716.6253459709605813",
+ "communityRecognized": false,
+ "key": "evm--56:0x537c87f3c4fa801ffcebcc222fd687b9a5e97777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xa2b726b1145a4773f68593cf171187d8ebe4d495",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xa2b726b1145a4773f68593cf171187d8ebe4d495.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xa2b726b1145a4773f68593cf171187d8ebe4d495.png"
+ ],
+ "name": "Injective Protocol",
+ "symbol": "INJ",
+ "marketCap": "42495386.550425667008849781",
+ "price": "6.53775177698856415521",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": true,
+ "key": "evm--56:0xa2b726b1145a4773f68593cf171187d8ebe4d495",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xe831a8badd383513bf971203c6a1387c099e7777",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/53573060f2e43e01057a34577f6259752f2c6a4fe47a449b7b5f1ed7b575b179",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/53573060f2e43e01057a34577f6259752f2c6a4fe47a449b7b5f1ed7b575b179"
+ ],
+ "name": "哈基米南北绿豆",
+ "symbol": "南北绿豆",
+ "marketCap": "11450.403339315274078383",
+ "price": "0.00001145040333931527",
+ "priceChange24hPercent": "-70.24",
+ "volume24h": "1358729.359603343244573281",
+ "communityRecognized": false,
+ "key": "evm--56:0xe831a8badd383513bf971203c6a1387c099e7777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x475cbf5919608e0c6af00e7bf87fab83bf3ef6e2",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x475cbf5919608e0c6af00e7bf87fab83bf3ef6e2-1772006627642.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x475cbf5919608e0c6af00e7bf87fab83bf3ef6e2-1772006627642.png"
+ ],
+ "name": "Robo Token",
+ "symbol": "ROBO",
+ "marketCap": "1990955.446700276590257486",
+ "price": "0.01173655355596797282",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": true,
+ "key": "evm--56:0x475cbf5919608e0c6af00e7bf87fab83bf3ef6e2",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x468aabd0139d70a13c2ac5c9c1873bddf49e7777",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/40b7587898798be4b3c05f1798400fa073611ad145f8d7cfd32a6edcd10ef4e5",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/40b7587898798be4b3c05f1798400fa073611ad145f8d7cfd32a6edcd10ef4e5"
+ ],
+ "name": "Flapcat",
+ "symbol": "Flapcat",
+ "marketCap": "21052.615911399948453985",
+ "price": "0.00002105261591139995",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": false,
+ "key": "evm--56:0x468aabd0139d70a13c2ac5c9c1873bddf49e7777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xc55b5892a73c02691d9f33cac9f54dfb398e7777",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/d5324860e6c1f4e90e6d84c0c8a68cb6abfab2ff148e0c43ddad8f5273c7691a",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/d5324860e6c1f4e90e6d84c0c8a68cb6abfab2ff148e0c43ddad8f5273c7691a"
+ ],
+ "name": "火焰聖羊",
+ "symbol": "火焰聖羊",
+ "marketCap": "54905.14227844554403163",
+ "price": "0.00005736751527336716",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": false,
+ "key": "evm--56:0xc55b5892a73c02691d9f33cac9f54dfb398e7777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xa94d69db9272268df6973dabfbc83462d7888888",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/be4cbb740113649d957ec49879ac6177a0694dfe9845a00cac46be3abd340d29",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/be4cbb740113649d957ec49879ac6177a0694dfe9845a00cac46be3abd340d29"
+ ],
+ "name": "星星之火",
+ "symbol": "星星之火",
+ "marketCap": "181581.540746832702746119",
+ "price": "1.90521147338630941168",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": false,
+ "key": "evm--56:0xa94d69db9272268df6973dabfbc83462d7888888",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x76198caaa0e132fb76713fa76dae31fa0c4230bd",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x76198caaa0e132fb76713fa76dae31fa0c4230bd-1786521690283.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x76198caaa0e132fb76713fa76dae31fa0c4230bd-1786521690283.png"
+ ],
+ "name": "Wrapped Trust Bitcoin",
+ "symbol": "WTBC",
+ "marketCap": "3544036.180119362400078087",
+ "price": "510.49915938968343567058",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": false,
+ "key": "evm--56:0x76198caaa0e132fb76713fa76dae31fa0c4230bd",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x1eb7a7bf5dd4ef574f3965aa10990cf24edf7777",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/02532f2d6b18db5ec0cb98471dc7ab0ba60c54be3ae2ab531b767826ed404ce9",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/02532f2d6b18db5ec0cb98471dc7ab0ba60c54be3ae2ab531b767826ed404ce9"
+ ],
+ "name": "WLFI BIRD",
+ "symbol": "WLFIB",
+ "marketCap": "17870.110117603937115994",
+ "price": "0.00001787011011760394",
+ "priceChange24hPercent": "412.71",
+ "volume24h": "3851790.058870313472012974",
+ "communityRecognized": false,
+ "key": "evm--56:0x1eb7a7bf5dd4ef574f3965aa10990cf24edf7777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x2a846aaaf896ef393ccb76398c1d96ea97374444",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x2a846aaaf896ef393ccb76398c1d96ea97374444-1763021306352.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x2a846aaaf896ef393ccb76398c1d96ea97374444-1763021306352.png"
+ ],
+ "name": "BORT",
+ "symbol": "BORT",
+ "marketCap": "865781.140550474327648681",
+ "price": "0.00088889234142759171",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": false,
+ "key": "evm--56:0x2a846aaaf896ef393ccb76398c1d96ea97374444",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x330990dae53bca4c5811c5362b44c33a47db7777",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x330990dae53bca4c5811c5362b44c33a47db7777-1785657934012.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x330990dae53bca4c5811c5362b44c33a47db7777-1785657934012.png"
+ ],
+ "name": "Asteroid Shiba",
+ "symbol": "ASTEROID",
+ "marketCap": "708649.53955202466825333",
+ "price": "0.0007086495395791489",
+ "priceChange24hPercent": "-55.69",
+ "volume24h": "239876.429474047723057402",
+ "communityRecognized": false,
+ "key": "evm--56:0x330990dae53bca4c5811c5362b44c33a47db7777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x276c86cea6c0e200ca13211cf2db0434cc0d7777",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x276c86cea6c0e200ca13211cf2db0434cc0d7777-1785831356788.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x276c86cea6c0e200ca13211cf2db0434cc0d7777-1785831356788.png"
+ ],
+ "name": "小股东",
+ "symbol": "小股东",
+ "marketCap": "137381.151585384557434675",
+ "price": "0.00013738115158538456",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": false,
+ "key": "evm--56:0x276c86cea6c0e200ca13211cf2db0434cc0d7777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xe38dd986d6374b9beb10a2056e312ac0888e7777",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/623c1526cfbe298c68c85906ffa28048852817285b1762234230154e5dd2b512",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/623c1526cfbe298c68c85906ffa28048852817285b1762234230154e5dd2b512"
+ ],
+ "name": "605577",
+ "symbol": "龙版传媒",
+ "marketCap": "54834.964138629928725388",
+ "price": "0.00005483496413862993",
+ "priceChange24hPercent": "1173.61",
+ "volume24h": "2840186.355821935358272977",
+ "communityRecognized": false,
+ "key": "evm--56:0xe38dd986d6374b9beb10a2056e312ac0888e7777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xe44d996ff1c6d9720c13c45431e665afa9f88888",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xe44d996ff1c6d9720c13c45431e665afa9f88888-1782288399263.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xe44d996ff1c6d9720c13c45431e665afa9f88888-1782288399263.png"
+ ],
+ "name": "Golden Dragon",
+ "symbol": "GD",
+ "marketCap": "16510900.019833585011614245",
+ "price": "0.16510900019833585012",
+ "priceChange24hPercent": "0.01",
+ "volume24h": "308693.202637003258884014",
+ "communityRecognized": false,
+ "key": "evm--56:0xe44d996ff1c6d9720c13c45431e665afa9f88888",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xc01a2e136f92772eecab15eb054e8f6fa06b7777",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xc01a2e136f92772eecab15eb054e8f6fa06b7777-1788595735163.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xc01a2e136f92772eecab15eb054e8f6fa06b7777-1788595735163.png"
+ ],
+ "name": "牛马",
+ "symbol": "NIUMA",
+ "marketCap": "1258203.804196386019852609",
+ "price": "0.00129142585793916915",
+ "priceChange24hPercent": "-23.24",
+ "volume24h": "88175.822012154645407751",
+ "communityRecognized": false,
+ "key": "evm--56:0xc01a2e136f92772eecab15eb054e8f6fa06b7777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xcb74970b86b9abf3d75748eb2c3bff53e5cd7777",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xcb74970b86b9abf3d75748eb2c3bff53e5cd7777-1787990757359.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xcb74970b86b9abf3d75748eb2c3bff53e5cd7777-1787990757359.png"
+ ],
+ "name": "Giggle Cat",
+ "symbol": "niannian",
+ "marketCap": "44874.137755862037343162",
+ "price": "0.00004487413775586204",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": false,
+ "key": "evm--56:0xcb74970b86b9abf3d75748eb2c3bff53e5cd7777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x2a361ef8aaecceac32b2dc8d9fa3892c49427777",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/7a409ad900959b83b5229f260af02b5bae1978eb21ed6f8f04da736cea981088",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/7a409ad900959b83b5229f260af02b5bae1978eb21ed6f8f04da736cea981088"
+ ],
+ "name": "50%分红50%拉盘销毁建设1121625362",
+ "symbol": "谷歌人生",
+ "marketCap": "26968.101724282851919228",
+ "price": "0.00003456422754811061",
+ "priceChange24hPercent": "48.57",
+ "volume24h": "19074.141400137341694387",
+ "communityRecognized": false,
+ "key": "evm--56:0x2a361ef8aaecceac32b2dc8d9fa3892c49427777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xd0a58bc9d88d3ff48c0294cb7e45937d0e41a928",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xd0a58bc9d88d3ff48c0294cb7e45937d0e41a928-1781279452296.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xd0a58bc9d88d3ff48c0294cb7e45937d0e41a928-1781279452296.png"
+ ],
+ "name": "SpaceX (Ondo Tokenized)",
+ "symbol": "SPCXon",
+ "marketCap": "3351220.781756115333893104",
+ "price": "149.92005",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "SpaceX",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0xd0a58bc9d88d3ff48c0294cb7e45937d0e41a928",
+ "kind": "stock",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xd97d097a89113fa59b76c572e5b2eb647e8eefaf",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xd97d097a89113fa59b76c572e5b2eb647e8eefaf-1783584151472.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xd97d097a89113fa59b76c572e5b2eb647e8eefaf-1783584151472.png"
+ ],
+ "name": "Semicon Bull 3X ETF",
+ "symbol": "SOXLB",
+ "marketCap": "20953691.219015478",
+ "price": "126.3",
+ "priceChange24hPercent": "-0.39",
+ "volume24h": "734293.004558957549693246",
+ "communityRecognized": false,
+ "key": "evm--56:0xd97d097a89113fa59b76c572e5b2eb647e8eefaf",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x954857b94089f418b24b5222bb49ffc186b97777",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x954857b94089f418b24b5222bb49ffc186b97777-1788250516877.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x954857b94089f418b24b5222bb49ffc186b97777-1788250516877.png"
+ ],
+ "name": "Binance Ai Agent",
+ "symbol": "JARVIS",
+ "marketCap": "79323.668793864538650106",
+ "price": "0.00007932366879386454",
+ "priceChange24hPercent": "101.79",
+ "volume24h": "245033.83453331602259985",
+ "communityRecognized": false,
+ "key": "evm--56:0x954857b94089f418b24b5222bb49ffc186b97777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xb1985f7f020e111bafac5d8e86936e6606f17777",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xb1985f7f020e111bafac5d8e86936e6606f17777-1784537117274.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xb1985f7f020e111bafac5d8e86936e6606f17777-1784537117274.png"
+ ],
+ "name": "千里马常有而伯乐不常有",
+ "symbol": "伯乐",
+ "marketCap": "1170574.569624310806408581",
+ "price": "0.00786164553027316326",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": false,
+ "key": "evm--56:0xb1985f7f020e111bafac5d8e86936e6606f17777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x13ef9ce9954f5d3425e62fe8cf77af0f1ff68888",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/771b491e6781e92c55c73c8da50e420b77427871015f4fb41c455a5d52890276",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/771b491e6781e92c55c73c8da50e420b77427871015f4fb41c455a5d52890276"
+ ],
+ "name": "Web3",
+ "symbol": "Web3",
+ "marketCap": "14603.998832927428620949",
+ "price": "0.00001460399883292743",
+ "priceChange24hPercent": "308.63",
+ "volume24h": "11436.349624921880977747",
+ "communityRecognized": false,
+ "key": "evm--56:0x13ef9ce9954f5d3425e62fe8cf77af0f1ff68888",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xfa46fa75a3f3d08ca33fe8b4b5194046b7217777",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xfa46fa75a3f3d08ca33fe8b4b5194046b7217777-1788428663400.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xfa46fa75a3f3d08ca33fe8b4b5194046b7217777-1788428663400.png"
+ ],
+ "name": "Tuzki",
+ "symbol": "TUZKI",
+ "marketCap": "299727.40800189845967163",
+ "price": "0.00029972740800189846",
+ "priceChange24hPercent": "6.12",
+ "volume24h": "524719.454942568131632253",
+ "communityRecognized": false,
+ "key": "evm--56:0xfa46fa75a3f3d08ca33fe8b4b5194046b7217777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xccfb3e8b1772bd3a9fc62deaf75127adad597777",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xccfb3e8b1772bd3a9fc62deaf75127adad597777-1780387251393.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xccfb3e8b1772bd3a9fc62deaf75127adad597777-1780387251393.png"
+ ],
+ "name": "苹果人生",
+ "symbol": "苹果人生",
+ "marketCap": "3960360.930146650063777512",
+ "price": "0.00396036140112834627",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": false,
+ "key": "evm--56:0xccfb3e8b1772bd3a9fc62deaf75127adad597777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x84c104d7b6c5e646937de8cd1729525276a87777",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x84c104d7b6c5e646937de8cd1729525276a87777-1788163358029.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x84c104d7b6c5e646937de8cd1729525276a87777-1788163358029.png"
+ ],
+ "name": "神经蛙",
+ "symbol": "Froggie",
+ "marketCap": "261114.55620863106811181",
+ "price": "0.00026111455620863107",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": false,
+ "key": "evm--56:0x84c104d7b6c5e646937de8cd1729525276a87777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xdd2fee7fc438aea520e2678e9ddbebc5b7b63333",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xdd2fee7fc438aea520e2678e9ddbebc5b7b63333-1786176011722.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xdd2fee7fc438aea520e2678e9ddbebc5b7b63333-1786176011722.png"
+ ],
+ "name": "DBURN",
+ "symbol": "DBURN",
+ "marketCap": "440027.055848149914200564",
+ "price": "0.04129561921109636417",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": false,
+ "key": "evm--56:0xdd2fee7fc438aea520e2678e9ddbebc5b7b63333",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xa4390b901a63641c92327e5793b45fcb46954444",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xa4390b901a63641c92327e5793b45fcb46954444-1783324841174.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xa4390b901a63641c92327e5793b45fcb46954444-1783324841174.png"
+ ],
+ "name": "TCryptochicks",
+ "symbol": "TCC",
+ "marketCap": "238576.658947750689083157",
+ "price": "0.00048838630884236572",
+ "priceChange24hPercent": "-13.85",
+ "volume24h": "205998.928916970855770883",
+ "communityRecognized": false,
+ "key": "evm--56:0xa4390b901a63641c92327e5793b45fcb46954444",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x6c228dbc67d5bb73aae1522d54afb74778047777",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x6c228dbc67d5bb73aae1522d54afb74778047777-1782979821449.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x6c228dbc67d5bb73aae1522d54afb74778047777-1782979821449.png"
+ ],
+ "name": "宝贝狗",
+ "symbol": "Babydog",
+ "marketCap": "1622096.306571742002959522",
+ "price": "0.00396925994433009494",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": false,
+ "key": "evm--56:0x6c228dbc67d5bb73aae1522d54afb74778047777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x822a078ed52c8ed54d8f334a69dcaa830e087777",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/f72368a8b24ed7326cb1b24f1162f40e42d03643784bd8c7f78f0282f4383b4b",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/f72368a8b24ed7326cb1b24f1162f40e42d03643784bd8c7f78f0282f4383b4b"
+ ],
+ "name": "万倍火星",
+ "symbol": "万倍火星",
+ "marketCap": "78764.988266013820583521",
+ "price": "0.0000794601183388669",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": false,
+ "key": "evm--56:0x822a078ed52c8ed54d8f334a69dcaa830e087777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xab180d02d83bca0bf87a496745bd61e928e84444",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/61256cce0c5acddbf40d3f9b65572dc6a42f8e6e1c439b521b188f9062eccc2d",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/61256cce0c5acddbf40d3f9b65572dc6a42f8e6e1c439b521b188f9062eccc2d"
+ ],
+ "name": "BNB SEASON 🔶",
+ "symbol": "BNB SEASON 🔶",
+ "marketCap": "42929.656538414239696357",
+ "price": "0.00004292965653841424",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": false,
+ "key": "evm--56:0xab180d02d83bca0bf87a496745bd61e928e84444",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x4a73c1554031d9d8ee96dc5979420e5647947777",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/912ee7862f0e5c0577105c8818ceb6ad8e60d72d8770b32b3c1be112758195c7",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/912ee7862f0e5c0577105c8818ceb6ad8e60d72d8770b32b3c1be112758195c7"
+ ],
+ "name": "Infinite Profit Opportunity",
+ "symbol": "IPO",
+ "marketCap": "7537.84873542637959414",
+ "price": "0.00000753784873542638",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": false,
+ "key": "evm--56:0x4a73c1554031d9d8ee96dc5979420e5647947777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x9e82e3da8f1115b73d24bb24113ab836ffdab6b6",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x9e82e3da8f1115b73d24bb24113ab836ffdab6b6-1784966502404.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x9e82e3da8f1115b73d24bb24113ab836ffdab6b6-1784966502404.png"
+ ],
+ "name": "Tradr 2X Long SNDK ETF",
+ "symbol": "SNXXB",
+ "marketCap": "4222716.9013560716",
+ "price": "18.79",
+ "priceChange24hPercent": "3.01",
+ "volume24h": "174477.67189934173287257",
+ "communityRecognized": false,
+ "key": "evm--56:0x9e82e3da8f1115b73d24bb24113ab836ffdab6b6",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xeeb3d73d4dd44e6e4d957d89492f05d5ccee7777",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xeeb3d73d4dd44e6e4d957d89492f05d5ccee7777-1785830505974.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xeeb3d73d4dd44e6e4d957d89492f05d5ccee7777-1785830505974.png"
+ ],
+ "name": "SUMMER",
+ "symbol": "SUMMER",
+ "marketCap": "525230.007192902924422619",
+ "price": "0.00052523000720529679",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": false,
+ "key": "evm--56:0xeeb3d73d4dd44e6e4d957d89492f05d5ccee7777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x4168253d740edfa77de31dadd8532e228de83f15",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/df8152a4eb67e65d907729c55d663d70251b222ea9dd85017bf40b64b70f1a81",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/df8152a4eb67e65d907729c55d663d70251b222ea9dd85017bf40b64b70f1a81"
+ ],
+ "name": "NovaBank2",
+ "symbol": "NVB2",
+ "marketCap": "16591368.370751094109844749",
+ "price": "8.15579518104644303114",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": false,
+ "key": "evm--56:0x4168253d740edfa77de31dadd8532e228de83f15",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x3db5a97b035235b6e5a2f13bcd6b466b5fbd7777",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x3db5a97b035235b6e5a2f13bcd6b466b5fbd7777-1787299703368.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x3db5a97b035235b6e5a2f13bcd6b466b5fbd7777-1787299703368.png"
+ ],
+ "name": "共识群960569288",
+ "symbol": "京东",
+ "marketCap": "726533.859289201212698015",
+ "price": "0.00073535660070688673",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": false,
+ "key": "evm--56:0x3db5a97b035235b6e5a2f13bcd6b466b5fbd7777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xd1debf19263c4a3214dfea974449a027d00a979c",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/849174a8bc7837a93979a42f2e648f146724ece15a8b1991a64bd6f4e474a229",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/849174a8bc7837a93979a42f2e648f146724ece15a8b1991a64bd6f4e474a229"
+ ],
+ "name": "SUN",
+ "symbol": "SUN",
+ "marketCap": "26003031.244593201231776638",
+ "price": "15.26404835665579144354",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": false,
+ "key": "evm--56:0xd1debf19263c4a3214dfea974449a027d00a979c",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x135b978ddbdcb41afce5dcc1a88640568d677777",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/8ce013490cf1b2b5b32117e62ea265d5e362237d052829c8d04016efba3d8816",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/8ce013490cf1b2b5b32117e62ea265d5e362237d052829c8d04016efba3d8816"
+ ],
+ "name": "Q币",
+ "symbol": "Q币",
+ "marketCap": "190419.636569458688393178",
+ "price": "0.00019041963656945869",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": false,
+ "key": "evm--56:0x135b978ddbdcb41afce5dcc1a88640568d677777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x28cd1fc7b6eebf46b59001ff49c9d14f8bb97777",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x28cd1fc7b6eebf46b59001ff49c9d14f8bb97777-1787212932933.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x28cd1fc7b6eebf46b59001ff49c9d14f8bb97777-1787212932933.png"
+ ],
+ "name": "翻身币税助力凉兮翻身",
+ "symbol": "翻身币",
+ "marketCap": "267200.871043530333679264",
+ "price": "0.0002672008713107312",
+ "priceChange24hPercent": "-13.52",
+ "volume24h": "33685.706667246874589289",
+ "communityRecognized": false,
+ "key": "evm--56:0x28cd1fc7b6eebf46b59001ff49c9d14f8bb97777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x2f8a339b5889ffac4c5a956787cda593b3c36867",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x2f8a339b5889ffac4c5a956787cda593b3c36867-1763021832239.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x2f8a339b5889ffac4c5a956787cda593b3c36867-1763021832239.png"
+ ],
+ "name": "CoinMarketCap 20 Index DTF",
+ "symbol": "CMC20",
+ "marketCap": "5708411.412834283240695896",
+ "price": "162.73117751560153026005",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": true,
+ "key": "evm--56:0x2f8a339b5889ffac4c5a956787cda593b3c36867",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x62d220cabb0027b2f432c020a48d2b0f4fef7777",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x62d220cabb0027b2f432c020a48d2b0f4fef7777-1786610343165.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x62d220cabb0027b2f432c020a48d2b0f4fef7777-1786610343165.png"
+ ],
+ "name": "躺平",
+ "symbol": "躺平",
+ "marketCap": "3025450.639834299935509628",
+ "price": "0.00309477356775194347",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": false,
+ "key": "evm--56:0x62d220cabb0027b2f432c020a48d2b0f4fef7777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x4af1d41cd9dd950dca43984b43aaa2a8702714ac",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x4af1d41cd9dd950dca43984b43aaa2a8702714ac-1785657669567.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x4af1d41cd9dd950dca43984b43aaa2a8702714ac-1785657669567.png"
+ ],
+ "name": "Fluence Energy",
+ "symbol": "FLNCB",
+ "marketCap": "923653.6753122072",
+ "price": "10.63",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": false,
+ "key": "evm--56:0x4af1d41cd9dd950dca43984b43aaa2a8702714ac",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x462b5f13b7c7748279358962925c5de83bb9e598",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x462b5f13b7c7748279358962925c5de83bb9e598-1784881176471.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x462b5f13b7c7748279358962925c5de83bb9e598-1784881176471.png"
+ ],
+ "name": "ProShares UltraPro QQQ",
+ "symbol": "TQQQB",
+ "marketCap": "1863291.0521264541",
+ "price": "73.63",
+ "priceChange24hPercent": "1.75",
+ "volume24h": "1938634.815674815721425673",
+ "communityRecognized": false,
+ "key": "evm--56:0x462b5f13b7c7748279358962925c5de83bb9e598",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x36fd56b4e8e47d2c1cc14072a98898b25d5e7777",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x36fd56b4e8e47d2c1cc14072a98898b25d5e7777-1788427540359.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x36fd56b4e8e47d2c1cc14072a98898b25d5e7777-1788427540359.png"
+ ],
+ "name": "全球爆火英伟达机器鸭",
+ "symbol": "机器鸭",
+ "marketCap": "189151.071673564369240269",
+ "price": "0.00018915107167356437",
+ "priceChange24hPercent": "-18.53",
+ "volume24h": "89532.169211594202423004",
+ "communityRecognized": false,
+ "key": "evm--56:0x36fd56b4e8e47d2c1cc14072a98898b25d5e7777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x8d65744527f55d0b2338350912d5c99a81ddf0e2",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x8d65744527f55d0b2338350912d5c99a81ddf0e2-1774426026380.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x8d65744527f55d0b2338350912d5c99a81ddf0e2-1774426026380.png"
+ ],
+ "name": "Pro Token",
+ "symbol": "Pro",
+ "marketCap": "248891488.120436631652755962",
+ "price": "23.04585634239507540353",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": false,
+ "key": "evm--56:0x8d65744527f55d0b2338350912d5c99a81ddf0e2",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x4fd43ecf633f86ebf43ccb860cf437536954ffff",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/849174a8bc7837a93979a42f2e648f146724ece15a8b1991a64bd6f4e474a229",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/849174a8bc7837a93979a42f2e648f146724ece15a8b1991a64bd6f4e474a229"
+ ],
+ "name": "STONKS",
+ "symbol": "STONKS",
+ "marketCap": "39948.498068624950471351",
+ "price": "0.00003994849806862495",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": false,
+ "key": "evm--56:0x4fd43ecf633f86ebf43ccb860cf437536954ffff",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x4ce634563bb2f72961483357dc31b4c146a24444",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x4ce634563bb2f72961483357dc31b4c146a24444-1783670716303.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x4ce634563bb2f72961483357dc31b4c146a24444-1783670716303.png"
+ ],
+ "name": "The Final Form Cow",
+ "symbol": "HEYI",
+ "marketCap": "299798.404669118646391658",
+ "price": "0.00029979841940554357",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": false,
+ "key": "evm--56:0x4ce634563bb2f72961483357dc31b4c146a24444",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x01856bda968ddca3ae5f866a4e07405480967777",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x01856bda968ddca3ae5f866a4e07405480967777-1788425626948.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x01856bda968ddca3ae5f866a4e07405480967777-1788425626948.png"
+ ],
+ "name": "孙小圣",
+ "symbol": "孙小圣",
+ "marketCap": "120001.279260265015277495",
+ "price": "0.00013125124140006538",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": false,
+ "key": "evm--56:0x01856bda968ddca3ae5f866a4e07405480967777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x848e2b1cb00dc439a15b03b8c3194e7d08917777",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x848e2b1cb00dc439a15b03b8c3194e7d08917777-1782201790772.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x848e2b1cb00dc439a15b03b8c3194e7d08917777-1782201790772.png"
+ ],
+ "name": "Break And Reclaim",
+ "symbol": "BAN",
+ "marketCap": "6708355.681705916699437829",
+ "price": "0.00791254802341889111",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": false,
+ "key": "evm--56:0x848e2b1cb00dc439a15b03b8c3194e7d08917777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x4062083510f67d28844df9371244e6f191b97777",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/f1481716f419af3082e88032cb3ed51765f4b9cfd942e4378fe98cf85a2e9c74",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/f1481716f419af3082e88032cb3ed51765f4b9cfd942e4378fe98cf85a2e9c74"
+ ],
+ "name": "Stupid Kid",
+ "symbol": "傻孩子",
+ "marketCap": "197608.157845062204483014",
+ "price": "0.00020061741913204285",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": false,
+ "key": "evm--56:0x4062083510f67d28844df9371244e6f191b97777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xaf90c35a62c13b5a8f681f4f43124bd8990f7777",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/e252a627e5c441b6886e4123e01fc3c406d7206e193e3d205cd033f9faf6cde0",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/e252a627e5c441b6886e4123e01fc3c406d7206e193e3d205cd033f9faf6cde0"
+ ],
+ "name": "蒙面小野",
+ "symbol": "Hirono",
+ "marketCap": "37356.07057534284819479",
+ "price": "0.00003735607057534285",
+ "priceChange24hPercent": "715.17",
+ "volume24h": "2673208.908263472532146428",
+ "communityRecognized": false,
+ "key": "evm--56:0xaf90c35a62c13b5a8f681f4f43124bd8990f7777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x1a4b499833a79a09ad7cf1d42d7dacf71e92eb00",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x1a4b499833a79a09ad7cf1d42d7dacf71e92eb00-1785572538791.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x1a4b499833a79a09ad7cf1d42d7dacf71e92eb00-1785572538791.png"
+ ],
+ "name": "Amazon",
+ "symbol": "AMZNB",
+ "marketCap": "1569926.13781039",
+ "price": "258.47",
+ "priceChange24hPercent": "0.38",
+ "volume24h": "946928.810005052703916234",
+ "communityRecognized": false,
+ "key": "evm--56:0x1a4b499833a79a09ad7cf1d42d7dacf71e92eb00",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xb7896f3c8f18b2308e4dde6b3e95034702477777",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/57fbbad7d93831c616d038990645dd01f6698ef1b2ee0c80dbd0153330add2c6",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/57fbbad7d93831c616d038990645dd01f6698ef1b2ee0c80dbd0153330add2c6"
+ ],
+ "name": "刀哥",
+ "symbol": "刀哥",
+ "marketCap": "20691.077192441135989826",
+ "price": "0.00002069107719244114",
+ "priceChange24hPercent": "327.38",
+ "volume24h": "2303045.21821957774811447",
+ "communityRecognized": false,
+ "key": "evm--56:0xb7896f3c8f18b2308e4dde6b3e95034702477777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xc255d8b48efbce2cb821a28517678ae685587777",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/01606da360d48a8c52c438a2365942de99c20b9d2f93d6b887354fd8ff4dda39",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/01606da360d48a8c52c438a2365942de99c20b9d2f93d6b887354fd8ff4dda39"
+ ],
+ "name": "MUSD",
+ "symbol": "musd",
+ "marketCap": "21182.821600909096573773",
+ "price": "0.0000211828216009091",
+ "priceChange24hPercent": "384.95",
+ "volume24h": "1477524.826567538381344943",
+ "communityRecognized": false,
+ "key": "evm--56:0xc255d8b48efbce2cb821a28517678ae685587777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xd01241b65c0acb6d4571c2a7930f824900918888",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/9d2193813095a0506282cd8900c1d0d0a17e75076b88888e4458f7e5a58d066c",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/9d2193813095a0506282cd8900c1d0d0a17e75076b88888e4458f7e5a58d066c"
+ ],
+ "name": "WeChat Doge",
+ "symbol": "旺柴",
+ "marketCap": "68009.279476607048319519",
+ "price": "0.00006800927947660705",
+ "priceChange24hPercent": "1397.92",
+ "volume24h": "2759786.104411454200261371",
+ "communityRecognized": false,
+ "key": "evm--56:0xd01241b65c0acb6d4571c2a7930f824900918888",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x3efbfff95576e1d23cf6ead0acd2e73f4d6a7777",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x3efbfff95576e1d23cf6ead0acd2e73f4d6a7777-1787645007812.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x3efbfff95576e1d23cf6ead0acd2e73f4d6a7777-1787645007812.png"
+ ],
+ "name": "Binance Cat",
+ "symbol": "BNBCAT",
+ "marketCap": "1225383.863015078069584666",
+ "price": "0.00122538386301507807",
+ "priceChange24hPercent": "-11.48",
+ "volume24h": "430557.665566772119790897",
+ "communityRecognized": true,
+ "key": "evm--56:0x3efbfff95576e1d23cf6ead0acd2e73f4d6a7777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x1b947cb610f3b39b3148b33e8eceded2d7997777",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/cbdab440b5b85c9375f00b719ecdcb8ba81b65f61a8783c305e9040746232396",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/cbdab440b5b85c9375f00b719ecdcb8ba81b65f61a8783c305e9040746232396"
+ ],
+ "name": "The BNB Mascot",
+ "symbol": "BUILDER",
+ "marketCap": "33133.725486015832230215",
+ "price": "0.00003313372548601583",
+ "priceChange24hPercent": "680.68",
+ "volume24h": "208093.196917798924990163",
+ "communityRecognized": false,
+ "key": "evm--56:0x1b947cb610f3b39b3148b33e8eceded2d7997777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xb6d43ea8d67931deaca95197be7285fac7f77777",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/2087914027943be6daa360807e6960044a61214fd6d2994c0d55d2363ce4c9b4",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/2087914027943be6daa360807e6960044a61214fd6d2994c0d55d2363ce4c9b4"
+ ],
+ "name": "LAPTOP",
+ "symbol": "LAPTOP",
+ "marketCap": "6210.168862587085231151",
+ "price": "0.00000621016886258709",
+ "priceChange24hPercent": "50.14",
+ "volume24h": "292322.276194498415969436",
+ "communityRecognized": false,
+ "key": "evm--56:0xb6d43ea8d67931deaca95197be7285fac7f77777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x975faed559b45feb8a5c5ceb940e614302947777",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/cfc7269d68db70a1e95cc76dceaa8ec3d95b3037e08f7d23f3970449de5befdc",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/cfc7269d68db70a1e95cc76dceaa8ec3d95b3037e08f7d23f3970449de5befdc"
+ ],
+ "name": "Zhao Cai Mao",
+ "symbol": "招财猫",
+ "marketCap": "403637.367828896249717148",
+ "price": "0.00040363736782889625",
+ "priceChange24hPercent": "10036.06",
+ "volume24h": "271306.137449752312329373",
+ "communityRecognized": false,
+ "key": "evm--56:0x975faed559b45feb8a5c5ceb940e614302947777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x9a2eb16506cf296672f119316dad43d337b87777",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/66a126a4db5a2d62643736abd29ff67ffd54709c0c5c1b161eebd71f1a1e5e31",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/66a126a4db5a2d62643736abd29ff67ffd54709c0c5c1b161eebd71f1a1e5e31"
+ ],
+ "name": "1234",
+ "symbol": "1234",
+ "marketCap": "8181.424654772439414842",
+ "price": "0.00000818142465477244",
+ "priceChange24hPercent": "56.43",
+ "volume24h": "1139559.051095642769550662",
+ "communityRecognized": false,
+ "key": "evm--56:0x9a2eb16506cf296672f119316dad43d337b87777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xfc0f47393d8b9890ad73f8eb30e713e48e0e7777",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/8f07270888e8fb16b0796a09185eff079e24a52847d0536a7d5801c2d52e4395",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/8f07270888e8fb16b0796a09185eff079e24a52847d0536a7d5801c2d52e4395"
+ ],
+ "name": "All on BINANCE",
+ "symbol": "AOB",
+ "marketCap": "49583.593019683790417802",
+ "price": "0.00004958359301968379",
+ "priceChange24hPercent": "-12.23",
+ "volume24h": "71920.913891388452418727",
+ "communityRecognized": false,
+ "key": "evm--56:0xfc0f47393d8b9890ad73f8eb30e713e48e0e7777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x86df20937c45d2aacac6f6eed5d0a891b3887777",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x86df20937c45d2aacac6f6eed5d0a891b3887777-1788768914274.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x86df20937c45d2aacac6f6eed5d0a891b3887777-1788768914274.png"
+ ],
+ "name": "wechat doge",
+ "symbol": "旺柴",
+ "marketCap": "101700.616232950756058629",
+ "price": "0.00010170061623295076",
+ "priceChange24hPercent": "33.93",
+ "volume24h": "603829.494807673835421514",
+ "communityRecognized": false,
+ "key": "evm--56:0x86df20937c45d2aacac6f6eed5d0a891b3887777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x6ba4ba5d55b6ddd9bd4ed986cf4a61d6ad0c7777",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/5096e7dbd9c255017ccb498b6c8ede405e96ceff0750acd8c28fc35de1c6899f",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/5096e7dbd9c255017ccb498b6c8ede405e96ceff0750acd8c28fc35de1c6899f"
+ ],
+ "name": "Musk",
+ "symbol": "Musk",
+ "marketCap": "13000.463697627724263237",
+ "price": "0.00001300046369762772",
+ "priceChange24hPercent": "190.3",
+ "volume24h": "504348.387750240167646533",
+ "communityRecognized": false,
+ "key": "evm--56:0x6ba4ba5d55b6ddd9bd4ed986cf4a61d6ad0c7777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x815605f706e66241dff6d43936ac2eae7375f9cb",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/849174a8bc7837a93979a42f2e648f146724ece15a8b1991a64bd6f4e474a229",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/849174a8bc7837a93979a42f2e648f146724ece15a8b1991a64bd6f4e474a229"
+ ],
+ "name": "SOCKCAT",
+ "symbol": "SOCKCAT",
+ "marketCap": "25664.032507854137102801",
+ "price": "0.00002566403250785414",
+ "priceChange24hPercent": "-47.3",
+ "volume24h": "180317.55394382564834673",
+ "communityRecognized": false,
+ "key": "evm--56:0x815605f706e66241dff6d43936ac2eae7375f9cb",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x7425889fe94f9d693e8daefe88bcced6acfef4c0",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x7425889fe94f9d693e8daefe88bcced6acfef4c0-1783066721627.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x7425889fe94f9d693e8daefe88bcced6acfef4c0-1783066721627.png"
+ ],
+ "name": "Meta Platforms",
+ "symbol": "METAB",
+ "marketCap": "7040862.2766616992",
+ "price": "612.77",
+ "priceChange24hPercent": "0",
+ "volume24h": "742530.311755316080634647",
+ "communityRecognized": false,
+ "key": "evm--56:0x7425889fe94f9d693e8daefe88bcced6acfef4c0",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xf9c6e80e9a5807a1214a79449009b48104f94444",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xf9c6e80e9a5807a1214a79449009b48104f94444-1767945777080.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xf9c6e80e9a5807a1214a79449009b48104f94444-1767945777080.png"
+ ],
+ "name": "黑马",
+ "symbol": "黑马",
+ "marketCap": "616195.339500196623813216",
+ "price": "0.0006161954127568846",
+ "priceChange24hPercent": "-30.06",
+ "volume24h": "353155.692246082057183528",
+ "communityRecognized": true,
+ "key": "evm--56:0xf9c6e80e9a5807a1214a79449009b48104f94444",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x41ccd0f872000689e0fda96f25cfbd8158a27777",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/3d147ad1436317d77575e0da1d8b23292e90b0512965cf36a9686a3c837c3b0b",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/3d147ad1436317d77575e0da1d8b23292e90b0512965cf36a9686a3c837c3b0b"
+ ],
+ "name": "鸡你太美",
+ "symbol": "ikun",
+ "marketCap": "108017.473283268970927191",
+ "price": "0.00010801747328326897",
+ "priceChange24hPercent": "42.99",
+ "volume24h": "209690.283193520849653363",
+ "communityRecognized": false,
+ "key": "evm--56:0x41ccd0f872000689e0fda96f25cfbd8158a27777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x2ee5ef9d1dcaddeeb1a004f03c1b09ca03b47777",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/e5c6df9d6a4015b8039723d2b6254c647ebc5d1610f7eaca257fda32ddf07a94",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/e5c6df9d6a4015b8039723d2b6254c647ebc5d1610f7eaca257fda32ddf07a94"
+ ],
+ "name": "无为",
+ "symbol": "无为",
+ "marketCap": "5113.285784529693404768",
+ "price": "0.00000511328578452969",
+ "priceChange24hPercent": "16.42",
+ "volume24h": "371600.670364555964844254",
+ "communityRecognized": false,
+ "key": "evm--56:0x2ee5ef9d1dcaddeeb1a004f03c1b09ca03b47777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x25e572b466d152604d9e6c3e53b432b978825342",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x25e572b466d152604d9e6c3e53b432b978825342-1788424520467.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x25e572b466d152604d9e6c3e53b432b978825342-1788424520467.png"
+ ],
+ "name": "ProShares UltraPro Short QQQ",
+ "symbol": "SQQQB",
+ "marketCap": "523170.2685369225",
+ "price": "37.57",
+ "priceChange24hPercent": "-1.59",
+ "volume24h": "263040.955528586501119077",
+ "communityRecognized": false,
+ "key": "evm--56:0x25e572b466d152604d9e6c3e53b432b978825342",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x03c59bbf8ba49ce79831403b86acbc40d3167777",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x03c59bbf8ba49ce79831403b86acbc40d3167777-1787644922548.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x03c59bbf8ba49ce79831403b86acbc40d3167777-1787644922548.png"
+ ],
+ "name": "你们的胆子真是肥嘟嘟的",
+ "symbol": "肥嘟嘟",
+ "marketCap": "289359.871518312619793061",
+ "price": "0.00028935987151831262",
+ "priceChange24hPercent": "-28.31",
+ "volume24h": "332020.965449680643848932",
+ "communityRecognized": false,
+ "key": "evm--56:0x03c59bbf8ba49ce79831403b86acbc40d3167777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xc1d308b258e21ed5f3ddc50351d21d2809337777",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/976330dc648314ac274237862ae059f1a767f234eb5e52261841107d7bc03954",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/976330dc648314ac274237862ae059f1a767f234eb5e52261841107d7bc03954"
+ ],
+ "name": "ANTS",
+ "symbol": "ANTS",
+ "marketCap": "351070.787449684231016148",
+ "price": "0.00035107078744968423",
+ "priceChange24hPercent": "9326.22",
+ "volume24h": "218607.635463885988960936",
+ "communityRecognized": false,
+ "key": "evm--56:0xc1d308b258e21ed5f3ddc50351d21d2809337777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "2NdgMAFbWVHvXJcoAwuRkTfYn1j97THVCThWATKHSTNK",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/ef1725d3508ae9af7847f0a719c073e46c7ef4250a464f545bb6708dbe380f3e",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/ef1725d3508ae9af7847f0a719c073e46c7ef4250a464f545bb6708dbe380f3e"
+ ],
+ "name": "Universal High Income",
+ "symbol": "UHI",
+ "marketCap": "94808.647286636511653555",
+ "price": "0.00009480864728663651",
+ "priceChange24hPercent": "2411.11",
+ "volume24h": "227180.203563953925241519",
+ "communityRecognized": false,
+ "key": "sol--101:2NdgMAFbWVHvXJcoAwuRkTfYn1j97THVCThWATKHSTNK",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "Xsc9qvGR1efVDFGLrVsmkzv3qi45LTBjeUKSPmx9qEh",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-Xsc9qvGR1efVDFGLrVsmkzv3qi45LTBjeUKSPmx9qEh-1758104122411.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-Xsc9qvGR1efVDFGLrVsmkzv3qi45LTBjeUKSPmx9qEh-1758104122411.png"
+ ],
+ "name": "NVIDIA xStock",
+ "symbol": "NVDAx",
+ "marketCap": "40688636.700095001974864294",
+ "price": "232.90275658577221331091",
+ "priceChange24hPercent": "0.52",
+ "volume24h": "3378662.198626062200770673",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 xStock 代币化发行",
+ "subtitle": "英伟达",
+ "source": "xstock",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/xstock.png",
+ "isOpen": true
+ },
+ "key": "sol--101:Xsc9qvGR1efVDFGLrVsmkzv3qi45LTBjeUKSPmx9qEh",
+ "kind": "stock",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "8iBSN84vSpZAhMCin81YS9FBgiuQhKns2udaZ8qTzkh5",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/d47faaf1af74dc4b8f159f83c5594fefb37c28f24d40c84c3aa877b59113713c",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/d47faaf1af74dc4b8f159f83c5594fefb37c28f24d40c84c3aa877b59113713c"
+ ],
+ "name": "Boomer",
+ "symbol": "BOOMER",
+ "marketCap": "245795.75122960801241058",
+ "price": "0.00024579648930853509",
+ "priceChange24hPercent": "124.81",
+ "volume24h": "297823.976028928302924049",
+ "communityRecognized": false,
+ "key": "sol--101:8iBSN84vSpZAhMCin81YS9FBgiuQhKns2udaZ8qTzkh5",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "A7bdiYdS5GjqGFtxf17ppRHtDKPkkRqbKtR27dxvQXaS",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-A7bdiYdS5GjqGFtxf17ppRHtDKPkkRqbKtR27dxvQXaS-1760630401975.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-A7bdiYdS5GjqGFtxf17ppRHtDKPkkRqbKtR27dxvQXaS-1760630401975.png"
+ ],
+ "name": "Zcash",
+ "symbol": "ZEC",
+ "marketCap": "108381246.656948456802795032",
+ "price": "1126.76216375512956423137",
+ "priceChange24hPercent": "-5.51",
+ "volume24h": "48716916.679106672273694412",
+ "communityRecognized": true,
+ "key": "sol--101:A7bdiYdS5GjqGFtxf17ppRHtDKPkkRqbKtR27dxvQXaS",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "9GJQUmiEZBpgSiEaqvi9hXXFs45crcfTwQ1vYY7Xgx6A",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/f489f9e0d4221e30270f32e9e593071fc0ccc0f3debebd41024a54ff69c08365",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/f489f9e0d4221e30270f32e9e593071fc0ccc0f3debebd41024a54ff69c08365"
+ ],
+ "name": "401jk",
+ "symbol": "401jk",
+ "marketCap": "125948.722351959385019986",
+ "price": "0.00013130729042982356",
+ "priceChange24hPercent": "-25.07",
+ "volume24h": "598878.79655740945",
+ "communityRecognized": false,
+ "key": "sol--101:9GJQUmiEZBpgSiEaqvi9hXXFs45crcfTwQ1vYY7Xgx6A",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "XsDoVfqeBukxuZHWhdvWHBhgEHjGNst4MLodqsJHzoB",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-XsDoVfqeBukxuZHWhdvWHBhgEHjGNst4MLodqsJHzoB-1758104143706.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-XsDoVfqeBukxuZHWhdvWHBhgEHjGNst4MLodqsJHzoB-1758104143706.png"
+ ],
+ "name": "Tesla xStock",
+ "symbol": "TSLAx",
+ "marketCap": "70801653.101877946314046431",
+ "price": "356.32531270795369615926",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 xStock 代币化发行",
+ "subtitle": "特斯拉",
+ "source": "xstock",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/xstock.png",
+ "isOpen": true
+ },
+ "key": "sol--101:XsDoVfqeBukxuZHWhdvWHBhgEHjGNst4MLodqsJHzoB",
+ "kind": "stock",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "Ge87EtsjwRQbHaqQmKRno69RFTwh9bfSsm99XNxTpump",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-Ge87EtsjwRQbHaqQmKRno69RFTwh9bfSsm99XNxTpump-1784214599861.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-Ge87EtsjwRQbHaqQmKRno69RFTwh9bfSsm99XNxTpump-1784214599861.png"
+ ],
+ "name": "Jimothy The Raccoon",
+ "symbol": "Jimothy",
+ "marketCap": "5200822.834881967578969978",
+ "price": "0.00520117125559290377",
+ "priceChange24hPercent": "5.97",
+ "volume24h": "1897783.31654382573",
+ "communityRecognized": true,
+ "key": "sol--101:Ge87EtsjwRQbHaqQmKRno69RFTwh9bfSsm99XNxTpump",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "2jzcLT2Xgx8RjJ6q1yUwyVu9qtN8nHjJ7ScgVMnYFL5e",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/480bf15850892d41b7e93ac5bc5c5f96cdb3b6c1d687413254ed6851f0542e3e",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/480bf15850892d41b7e93ac5bc5c5f96cdb3b6c1d687413254ed6851f0542e3e"
+ ],
+ "name": "Google",
+ "symbol": "GOOGL",
+ "marketCap": "4953635.009465024918252686",
+ "price": "0.00004953635042784716",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": false,
+ "key": "sol--101:2jzcLT2Xgx8RjJ6q1yUwyVu9qtN8nHjJ7ScgVMnYFL5e",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "poNSfquKq512ApeYjVghwViSun4x1MhCqHVH2Paq4jN",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-poNSfquKq512ApeYjVghwViSun4x1MhCqHVH2Paq4jN-1788282231281.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-poNSfquKq512ApeYjVghwViSun4x1MhCqHVH2Paq4jN-1788282231281.png"
+ ],
+ "name": "Pons",
+ "symbol": "PONS",
+ "marketCap": "1216890.936296467279698441",
+ "price": "0.70271179731256876631",
+ "priceChange24hPercent": "-4.31",
+ "volume24h": "806232.553642153346514904",
+ "communityRecognized": true,
+ "key": "sol--101:poNSfquKq512ApeYjVghwViSun4x1MhCqHVH2Paq4jN",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "HooDYv5RewLRiMLnEVq3VJqdqxhuE6c5eYvqejMC3e9A",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-HooDYv5RewLRiMLnEVq3VJqdqxhuE6c5eYvqejMC3e9A-1784387203502.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-HooDYv5RewLRiMLnEVq3VJqdqxhuE6c5eYvqejMC3e9A-1784387203502.png"
+ ],
+ "name": "Robinhood Markets - Backpack Securities",
+ "symbol": "HOOD",
+ "marketCap": "689506.491565078192340844",
+ "price": "123.13754463735993104298",
+ "priceChange24hPercent": "-2.54",
+ "volume24h": "198225.000518418966629992",
+ "communityRecognized": false,
+ "key": "sol--101:HooDYv5RewLRiMLnEVq3VJqdqxhuE6c5eYvqejMC3e9A",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "EicWvteVi2fWepEzS3FYWsnuPoP6caZfjnKqNvydLjCH",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-EicWvteVi2fWepEzS3FYWsnuPoP6caZfjnKqNvydLjCH-1768663250541.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-EicWvteVi2fWepEzS3FYWsnuPoP6caZfjnKqNvydLjCH-1768663250541.png"
+ ],
+ "name": "Lighter",
+ "symbol": "LIT",
+ "marketCap": "2406344.494081651100392756",
+ "price": "4.64379141369534667178",
+ "priceChange24hPercent": "5.56",
+ "volume24h": "11509709.20882259996",
+ "communityRecognized": false,
+ "key": "sol--101:EicWvteVi2fWepEzS3FYWsnuPoP6caZfjnKqNvydLjCH",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "14LzYKr9UyKmi2kqwDe8k5tXiKmq73h5LLDrXX6Dpump",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/66cdefa083d681f1eba5b1a9f0abadb3ac42c6ef94b9e565d6ff4ecca97ceb3b",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/66cdefa083d681f1eba5b1a9f0abadb3ac42c6ef94b9e565d6ff4ecca97ceb3b"
+ ],
+ "name": "World Oil Trust Fund",
+ "symbol": "WOTF",
+ "marketCap": "3313946.354944802671266178",
+ "price": "0.00331590200615015922",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": false,
+ "key": "sol--101:14LzYKr9UyKmi2kqwDe8k5tXiKmq73h5LLDrXX6Dpump",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "Xs8S1uUs1zvS2p7iwtsG3b6fkhpvmwz4GYU3gWAmWHZ",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-Xs8S1uUs1zvS2p7iwtsG3b6fkhpvmwz4GYU3gWAmWHZ-1758104625424.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-Xs8S1uUs1zvS2p7iwtsG3b6fkhpvmwz4GYU3gWAmWHZ-1758104625424.png"
+ ],
+ "name": "Nasdaq xStock",
+ "symbol": "QQQx",
+ "marketCap": "36239960.151659816287497574",
+ "price": "718.93420524208829164119",
+ "priceChange24hPercent": "0.45",
+ "volume24h": "2076895.16976137638431684",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 xStock 代币化发行",
+ "subtitle": "纳指ETF",
+ "source": "xstock",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/xstock.png",
+ "isOpen": true
+ },
+ "key": "sol--101:Xs8S1uUs1zvS2p7iwtsG3b6fkhpvmwz4GYU3gWAmWHZ",
+ "kind": "stock",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "A13oRB9FFaiUjfi6LdCg6p9ka1u8SfGkUFs4SKvPpump",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-A13oRB9FFaiUjfi6LdCg6p9ka1u8SfGkUFs4SKvPpump-1786208973375.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-A13oRB9FFaiUjfi6LdCg6p9ka1u8SfGkUFs4SKvPpump-1786208973375.png"
+ ],
+ "name": "The Toad Pepe",
+ "symbol": "TOAD",
+ "marketCap": "3811760.624214865858761162",
+ "price": "0.00396827439325526335",
+ "priceChange24hPercent": "-25.52",
+ "volume24h": "1879483.582390832095898928",
+ "communityRecognized": true,
+ "key": "sol--101:A13oRB9FFaiUjfi6LdCg6p9ka1u8SfGkUFs4SKvPpump",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "4k3Dyjzvzp8eMZWUXbBCjEvwSkkk59S5iCNLY3QrkX6R",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-4k3Dyjzvzp8eMZWUXbBCjEvwSkkk59S5iCNLY3QrkX6R-1758104080638.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-4k3Dyjzvzp8eMZWUXbBCjEvwSkkk59S5iCNLY3QrkX6R-1758104080638.png"
+ ],
+ "name": "Raydium",
+ "symbol": "RAY",
+ "marketCap": "686552423.523398301690605977",
+ "price": "1.23703686994343528221",
+ "priceChange24hPercent": "1.79",
+ "volume24h": "16275032.956970973021021665",
+ "communityRecognized": true,
+ "key": "sol--101:4k3Dyjzvzp8eMZWUXbBCjEvwSkkk59S5iCNLY3QrkX6R",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "taoC6xyv2v8tDLcev4uaGUgV4vdQsWJrGft2kcBRrBY",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-taoC6xyv2v8tDLcev4uaGUgV4vdQsWJrGft2kcBRrBY-1778080135513.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-taoC6xyv2v8tDLcev4uaGUgV4vdQsWJrGft2kcBRrBY-1778080135513.png"
+ ],
+ "name": "Bittensor",
+ "symbol": "TAO",
+ "marketCap": "513859.107833253416823347",
+ "price": "253.29102729219274125932",
+ "priceChange24hPercent": "-5.84",
+ "volume24h": "3213008.3181698512",
+ "communityRecognized": true,
+ "key": "sol--101:taoC6xyv2v8tDLcev4uaGUgV4vdQsWJrGft2kcBRrBY",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "CWZ6BsdnjkDVTGkmL6bGbJXXig6ceef12KvyGQW14cMt",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-CWZ6BsdnjkDVTGkmL6bGbJXXig6ceef12KvyGQW14cMt-1777993905309.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-CWZ6BsdnjkDVTGkmL6bGbJXXig6ceef12KvyGQW14cMt-1777993905309.png"
+ ],
+ "name": "AntFun",
+ "symbol": "ANTFUN",
+ "marketCap": "146460911.563488316479388631",
+ "price": "0.07758467106362334528",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": true,
+ "key": "sol--101:CWZ6BsdnjkDVTGkmL6bGbJXXig6ceef12KvyGQW14cMt",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "6XEcoa3Yo36h3Kee7VWEVYarZXGSWyCytaMM6Vdmpump",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/8962d5a913044b5b1dfc00ad97248edf897bcaab451282222cb26fff7f00dbf7",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/8962d5a913044b5b1dfc00ad97248edf897bcaab451282222cb26fff7f00dbf7"
+ ],
+ "name": "LAPTOP",
+ "symbol": "LAPTOP",
+ "marketCap": "291460640.98501257716310576",
+ "price": "0.2914641742743823548",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": false,
+ "key": "sol--101:6XEcoa3Yo36h3Kee7VWEVYarZXGSWyCytaMM6Vdmpump",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "4sWNB8zGWHkh6UnmwiEtzNxL4XrN7uK9tosbESbJFfVs",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-4sWNB8zGWHkh6UnmwiEtzNxL4XrN7uK9tosbESbJFfVs-1760026347869.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-4sWNB8zGWHkh6UnmwiEtzNxL4XrN7uK9tosbESbJFfVs-1760026347869.png"
+ ],
+ "name": "Hylo 3x Leveraged SOL",
+ "symbol": "xSOL",
+ "marketCap": "10864904.970999715678546518",
+ "price": "0.06684207650045292303",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": false,
+ "key": "sol--101:4sWNB8zGWHkh6UnmwiEtzNxL4XrN7uK9tosbESbJFfVs",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "XsCPL9dNWBMvFtTmwcCA5v3xWPSMEBCszbQdiLLq6aN",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-XsCPL9dNWBMvFtTmwcCA5v3xWPSMEBCszbQdiLLq6aN-1758104813770.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-XsCPL9dNWBMvFtTmwcCA5v3xWPSMEBCszbQdiLLq6aN-1758104813770.png"
+ ],
+ "name": "Alphabet xStock",
+ "symbol": "GOOGLx",
+ "marketCap": "34924511.355344239332582928",
+ "price": "338.91520691789838497732",
+ "priceChange24hPercent": "0.53",
+ "volume24h": "648646.340409903883266569",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 xStock 代币化发行",
+ "subtitle": "谷歌",
+ "source": "xstock",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/xstock.png",
+ "isOpen": true
+ },
+ "key": "sol--101:XsCPL9dNWBMvFtTmwcCA5v3xWPSMEBCszbQdiLLq6aN",
+ "kind": "stock",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "2zCo6bUowJMvr89ajxuWsPadAqJ2F9akCkxumNsSdgsL",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-2zCo6bUowJMvr89ajxuWsPadAqJ2F9akCkxumNsSdgsL-1784819448907.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-2zCo6bUowJMvr89ajxuWsPadAqJ2F9akCkxumNsSdgsL-1784819448907.png"
+ ],
+ "name": "Hylo 3x Leveraged BTC",
+ "symbol": "xBTC",
+ "marketCap": "838685.045678011158375224",
+ "price": "1.88860655963693248077",
+ "priceChange24hPercent": "-3.92",
+ "volume24h": "9648960.968576289012883613",
+ "communityRecognized": false,
+ "key": "sol--101:2zCo6bUowJMvr89ajxuWsPadAqJ2F9akCkxumNsSdgsL",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "8RDq8d3uD9mD5K75f1dEGyubN6jGArDMZaA8J4MNpump",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/b90aa9cb8975301bb6924ec124111466ea8177e6be04bd055815c3471ddd5865",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/b90aa9cb8975301bb6924ec124111466ea8177e6be04bd055815c3471ddd5865"
+ ],
+ "name": "OnlyPump",
+ "symbol": "ONLYPUMP",
+ "marketCap": "1278764.360847444143365787",
+ "price": "0.00129019682178680519",
+ "priceChange24hPercent": "44322.07",
+ "volume24h": "2021077.48722244683",
+ "communityRecognized": false,
+ "key": "sol--101:8RDq8d3uD9mD5K75f1dEGyubN6jGArDMZaA8J4MNpump",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "Ge9V1kPBbYS2ZEFrXNZoQH49mit7wwdDM7nkMWXKoU13",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/3ba11606482d432ebc4b5c1dd4818bca38010abb3a42010023d5cf8970e3e808",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/3ba11606482d432ebc4b5c1dd4818bca38010abb3a42010023d5cf8970e3e808"
+ ],
+ "name": "NVIDIA",
+ "symbol": "NVDA",
+ "marketCap": "1604937.121712315037175501",
+ "price": "0.00001604937141554999",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": false,
+ "key": "sol--101:Ge9V1kPBbYS2ZEFrXNZoQH49mit7wwdDM7nkMWXKoU13",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "9PtRbAeHbgctGvw3CBn6v6mDeYN9VPW8GzbAUZLLpump",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/9648ca4548877715a330109ae45eca7f0f871fb8925da4e7845d195b0bdee65f",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/9648ca4548877715a330109ae45eca7f0f871fb8925da4e7845d195b0bdee65f"
+ ],
+ "name": "LAPTOP",
+ "symbol": "LAPTOP",
+ "marketCap": "183297253.011303098947812777",
+ "price": "0.18329947563545136492",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": false,
+ "key": "sol--101:9PtRbAeHbgctGvw3CBn6v6mDeYN9VPW8GzbAUZLLpump",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "XsqE9cRRpzxcGKDXj1BJ7Xmg4GRhZoyY1KpmGSxAWT2",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-XsqE9cRRpzxcGKDXj1BJ7Xmg4GRhZoyY1KpmGSxAWT2-1758106345798.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-XsqE9cRRpzxcGKDXj1BJ7Xmg4GRhZoyY1KpmGSxAWT2-1758106345798.png"
+ ],
+ "name": "McDonald's xStock",
+ "symbol": "MCDx",
+ "marketCap": "1408079.851319124295748968",
+ "price": "256.31462582720271173137",
+ "priceChange24hPercent": "-7.59",
+ "volume24h": "2375954.462903037537884393",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 xStock 代币化发行",
+ "subtitle": "麦当劳",
+ "source": "xstock",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/xstock.png",
+ "isOpen": true
+ },
+ "key": "sol--101:XsqE9cRRpzxcGKDXj1BJ7Xmg4GRhZoyY1KpmGSxAWT2",
+ "kind": "stock",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "Xs3eBt7uRfJX8QUs4suhyU8p2M6DoUDrJyWBa8LLZsg",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-Xs3eBt7uRfJX8QUs4suhyU8p2M6DoUDrJyWBa8LLZsg-1758104996614.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-Xs3eBt7uRfJX8QUs4suhyU8p2M6DoUDrJyWBa8LLZsg-1758104996614.png"
+ ],
+ "name": "Amazon.com xStock",
+ "symbol": "AMZNx",
+ "marketCap": "7913177.445307286183162875",
+ "price": "257.64356976163718587775",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 xStock 代币化发行",
+ "subtitle": "亚马逊",
+ "source": "xstock",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/xstock.png",
+ "isOpen": true
+ },
+ "key": "sol--101:Xs3eBt7uRfJX8QUs4suhyU8p2M6DoUDrJyWBa8LLZsg",
+ "kind": "stock",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "AMC1qwR9KhiyrQBRPrxnfo4JfMeMZqEBvt5tgTytNNoc",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-AMC1qwR9KhiyrQBRPrxnfo4JfMeMZqEBvt5tgTytNNoc-1788800722604.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-AMC1qwR9KhiyrQBRPrxnfo4JfMeMZqEBvt5tgTytNNoc-1788800722604.png"
+ ],
+ "name": "AMC Entertainment - Backpack Securities",
+ "symbol": "AMC",
+ "marketCap": "137339.961933871671759057",
+ "price": "2.67350501964207769533",
+ "priceChange24hPercent": "-32.88",
+ "volume24h": "726246.275929027291999682",
+ "communityRecognized": false,
+ "key": "sol--101:AMC1qwR9KhiyrQBRPrxnfo4JfMeMZqEBvt5tgTytNNoc",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "4oMGu2C6ws5o75B4mRruH7j6VLq1E1zjfkVnwUpFpump",
+ "logoUrl": "https://static.oklink.com/cdn/web3/currency/token/large/501-4oMGu2C6ws5o75B4mRruH7j6VLq1E1zjfkVnwUpFpump-107/type=default_90_0?v=1788834416766",
+ "logoUrls": [
+ "https://static.oklink.com/cdn/web3/currency/token/large/501-4oMGu2C6ws5o75B4mRruH7j6VLq1E1zjfkVnwUpFpump-107/type=default_90_0?v=1788834416766"
+ ],
+ "name": "Global Oil Asset Fund",
+ "symbol": "GOAF",
+ "marketCap": "24617835.459750582796729443",
+ "price": "0.02461999250136994203",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": false,
+ "key": "sol--101:4oMGu2C6ws5o75B4mRruH7j6VLq1E1zjfkVnwUpFpump",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "tKUKRvhsHHE4S7e9pkZFjnAbnrPR8VXyFtXrXf1pump",
+ "logoUrl": "https://static.oklink.com/cdn/web3/currency/token/large/501-tKUKRvhsHHE4S7e9pkZFjnAbnrPR8VXyFtXrXf1pump-107/type=default_90_0?v=1788831394642",
+ "logoUrls": [
+ "https://static.oklink.com/cdn/web3/currency/token/large/501-tKUKRvhsHHE4S7e9pkZFjnAbnrPR8VXyFtXrXf1pump-107/type=default_90_0?v=1788831394642"
+ ],
+ "name": "Global Oil Asset Fund",
+ "symbol": "GOAF",
+ "marketCap": "2441910.839910951788086378",
+ "price": "0.00244387749661186325",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": false,
+ "key": "sol--101:tKUKRvhsHHE4S7e9pkZFjnAbnrPR8VXyFtXrXf1pump",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "CFNRDaxFcvRwRSNnA5cHrCCr6AHhk9dNkHWpRUjNupFL",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-CFNRDaxFcvRwRSNnA5cHrCCr6AHhk9dNkHWpRUjNupFL-1786726803397.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-CFNRDaxFcvRwRSNnA5cHrCCr6AHhk9dNkHWpRUjNupFL-1786726803397.png"
+ ],
+ "name": "Raydium Cat",
+ "symbol": "RAYCAT",
+ "marketCap": "1893911.010287750036666526",
+ "price": "0.00195948638071893547",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": false,
+ "key": "sol--101:CFNRDaxFcvRwRSNnA5cHrCCr6AHhk9dNkHWpRUjNupFL",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "Xsv9hRk1z5ystj9MhnA7Lq4vjSsLwzL2nxrwmwtD3re",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-Xsv9hRk1z5ystj9MhnA7Lq4vjSsLwzL2nxrwmwtD3re-1758104319384.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-Xsv9hRk1z5ystj9MhnA7Lq4vjSsLwzL2nxrwmwtD3re-1758104319384.png"
+ ],
+ "name": "Gold xStock",
+ "symbol": "GLDx",
+ "marketCap": "10061471.106234484581859928",
+ "price": "406.92792228575909247763",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 xStock 代币化发行",
+ "subtitle": "黄金ETF",
+ "source": "xstock",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/xstock.png",
+ "isOpen": true
+ },
+ "key": "sol--101:Xsv9hRk1z5ystj9MhnA7Lq4vjSsLwzL2nxrwmwtD3re",
+ "kind": "stock",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "Cu49bzY6R1wXVqeZzJggYcZiz8fHb9P17mbEzutg4Pq1",
+ "logoUrl": "https://static.oklink.com/cdn/web3/currency/token/large/501-Cu49bzY6R1wXVqeZzJggYcZiz8fHb9P17mbEzutg4Pq1-109/type=default_90_0?v=1788837736188",
+ "logoUrls": [
+ "https://static.oklink.com/cdn/web3/currency/token/large/501-Cu49bzY6R1wXVqeZzJggYcZiz8fHb9P17mbEzutg4Pq1-109/type=default_90_0?v=1788837736188"
+ ],
+ "name": "Xtremely Retarded People",
+ "symbol": "XRP",
+ "marketCap": "219234.994074005715984401",
+ "price": "0.00022574850990482328",
+ "priceChange24hPercent": "7473.83",
+ "volume24h": "1428288.67174177718",
+ "communityRecognized": false,
+ "key": "sol--101:Cu49bzY6R1wXVqeZzJggYcZiz8fHb9P17mbEzutg4Pq1",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "7mtBeR8tTtsuojkGziZxzn1GuPeBZH44UBdxwkLopump",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/849174a8bc7837a93979a42f2e648f146724ece15a8b1991a64bd6f4e474a229",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/849174a8bc7837a93979a42f2e648f146724ece15a8b1991a64bd6f4e474a229"
+ ],
+ "name": "StockCat",
+ "symbol": "StockCat",
+ "marketCap": "6119968.148121209288292933",
+ "price": "0.00612191822872152392",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": false,
+ "key": "sol--101:7mtBeR8tTtsuojkGziZxzn1GuPeBZH44UBdxwkLopump",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "dBSMwYCh46fzR26mJ5S5stq8hgFCk4YNKiuc3wDpump",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/208e6372660992411a1210b6fe208eecc6137ba585cd10c85d1929cd0dd5b957",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/208e6372660992411a1210b6fe208eecc6137ba585cd10c85d1929cd0dd5b957"
+ ],
+ "name": "LAPTOP",
+ "symbol": "LAPTOP",
+ "marketCap": "1201833.494998878251640164",
+ "price": "0.00120453149843313602",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": false,
+ "key": "sol--101:dBSMwYCh46fzR26mJ5S5stq8hgFCk4YNKiuc3wDpump",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "Pren1FvFX6J3E4kXhJuCiAD5aDmGEb7qJRncwA8Lkhw",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-Pren1FvFX6J3E4kXhJuCiAD5aDmGEb7qJRncwA8Lkhw-1760025966243.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-Pren1FvFX6J3E4kXhJuCiAD5aDmGEb7qJRncwA8Lkhw-1760025966243.png"
+ ],
+ "name": "Anthropic PreStocks",
+ "symbol": "ANTHROPIC",
+ "marketCap": "7016150.444852688717672937",
+ "price": "950.31252774720350071284",
+ "priceChange24hPercent": "4.73",
+ "volume24h": "7082334.093197675063159074",
+ "communityRecognized": true,
+ "key": "sol--101:Pren1FvFX6J3E4kXhJuCiAD5aDmGEb7qJRncwA8Lkhw",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "Yce8zMKDLLJEWFUghsX4oszsb6vLi3men7zEjf4pump",
+ "logoUrl": "https://static.oklink.com/cdn/web3/currency/token/large/501-Yce8zMKDLLJEWFUghsX4oszsb6vLi3men7zEjf4pump-107/type=default_90_0?v=1788828570767",
+ "logoUrls": [
+ "https://static.oklink.com/cdn/web3/currency/token/large/501-Yce8zMKDLLJEWFUghsX4oszsb6vLi3men7zEjf4pump-107/type=default_90_0?v=1788828570767"
+ ],
+ "name": "World Oil Trust Fund",
+ "symbol": "WOTF",
+ "marketCap": "2638795.328619456944998468",
+ "price": "0.00264074356031892609",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": false,
+ "key": "sol--101:Yce8zMKDLLJEWFUghsX4oszsb6vLi3men7zEjf4pump",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "MEW1gQWJ3nEXg2qgERiKu7FAFj79PHvQVREQUzScPP5",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-MEW1gQWJ3nEXg2qgERiKu7FAFj79PHvQVREQUzScPP5-1758104096089.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-MEW1gQWJ3nEXg2qgERiKu7FAFj79PHvQVREQUzScPP5-1758104096089.png"
+ ],
+ "name": "cat in a dogs world",
+ "symbol": "MEW",
+ "marketCap": "39019919.681995329548095131",
+ "price": "0.00043899101289593032",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": true,
+ "key": "sol--101:MEW1gQWJ3nEXg2qgERiKu7FAFj79PHvQVREQUzScPP5",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "PreweJYECqtQwBtpxHL171nL2K6umo692gTm7Q3rpgF",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-PreweJYECqtQwBtpxHL171nL2K6umo692gTm7Q3rpgF-1760026398838.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-PreweJYECqtQwBtpxHL171nL2K6umo692gTm7Q3rpgF-1760026398838.png"
+ ],
+ "name": "OpenAI PreStocks",
+ "symbol": "OPENAI",
+ "marketCap": "1440213.737147570420238763",
+ "price": "1026.6377008080411145584",
+ "priceChange24hPercent": "-1.59",
+ "volume24h": "4203991.09783469395",
+ "communityRecognized": true,
+ "key": "sol--101:PreweJYECqtQwBtpxHL171nL2K6umo692gTm7Q3rpgF",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "RmtMAYVTTFv2iK9muMrXEoAnSSsZPPgRPbqZCKwNDYk",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-RmtMAYVTTFv2iK9muMrXEoAnSSsZPPgRPbqZCKwNDYk-1786986032590.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-RmtMAYVTTFv2iK9muMrXEoAnSSsZPPgRPbqZCKwNDYk-1786986032590.png"
+ ],
+ "name": "BULLS'S EYE",
+ "symbol": "EYE",
+ "marketCap": "147742.068814700823124318",
+ "price": "0.00014786094452955318",
+ "priceChange24hPercent": "-30.06",
+ "volume24h": "55119.66499369511",
+ "communityRecognized": true,
+ "key": "sol--101:RmtMAYVTTFv2iK9muMrXEoAnSSsZPPgRPbqZCKwNDYk",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "DUZN7M6ezXez9UVrou4N8UEGRkwnbWmXqqZgEKiZCrnN",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-DUZN7M6ezXez9UVrou4N8UEGRkwnbWmXqqZgEKiZCrnN-1788454967021.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-DUZN7M6ezXez9UVrou4N8UEGRkwnbWmXqqZgEKiZCrnN-1788454967021.png"
+ ],
+ "name": "Marketplier",
+ "symbol": "MARKET",
+ "marketCap": "553744.257303653861128357",
+ "price": "0.00057101973343138657",
+ "priceChange24hPercent": "13.63",
+ "volume24h": "207762.706534695611328831",
+ "communityRecognized": false,
+ "key": "sol--101:DUZN7M6ezXez9UVrou4N8UEGRkwnbWmXqqZgEKiZCrnN",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "zrmswgfyBjwCFziMo4S5EQdpx2GWRBpEK3vK434tx22",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/f69d8a15e3fd4a40a8ff2356de86f9c973e5e8994adf9f3df9b47c3b7820411e",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/f69d8a15e3fd4a40a8ff2356de86f9c973e5e8994adf9f3df9b47c3b7820411e"
+ ],
+ "name": "Token",
+ "symbol": "Token",
+ "marketCap": "192034.423280784016747696",
+ "price": "0.00019843566334029236",
+ "priceChange24hPercent": "6488.46",
+ "volume24h": "346987.80552515336",
+ "communityRecognized": false,
+ "key": "sol--101:zrmswgfyBjwCFziMo4S5EQdpx2GWRBpEK3vK434tx22",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "95rMjSVt4tXy2nDjfPDXFbT3bj8D72grhxk5pzD8pump",
+ "logoUrl": "https://static.oklink.com/cdn/web3/currency/token/large/501-95rMjSVt4tXy2nDjfPDXFbT3bj8D72grhxk5pzD8pump-107/type=default_90_0?v=1788834468487",
+ "logoUrls": [
+ "https://static.oklink.com/cdn/web3/currency/token/large/501-95rMjSVt4tXy2nDjfPDXFbT3bj8D72grhxk5pzD8pump-107/type=default_90_0?v=1788834468487"
+ ],
+ "name": "GTA6",
+ "symbol": "GTA 6 Coin",
+ "marketCap": "3457172.104425155912023701",
+ "price": "0.0034603707848543798",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": false,
+ "key": "sol--101:95rMjSVt4tXy2nDjfPDXFbT3bj8D72grhxk5pzD8pump",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "FMqh9mqR6drPZqqW6wPqLHxX4rqNDWGhYLaMfoaJpump",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-FMqh9mqR6drPZqqW6wPqLHxX4rqNDWGhYLaMfoaJpump-1782315064836.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-FMqh9mqR6drPZqqW6wPqLHxX4rqNDWGhYLaMfoaJpump-1782315064836.png"
+ ],
+ "name": "world.xyz",
+ "symbol": "world",
+ "marketCap": "2832118.370936333543706934",
+ "price": "0.00283232497221086057",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": false,
+ "key": "sol--101:FMqh9mqR6drPZqqW6wPqLHxX4rqNDWGhYLaMfoaJpump",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "rBUZDXHWXrCPLfytCVqagvveqzMwB9tYCpZqxSKpump",
+ "logoUrl": "https://static.oklink.com/cdn/web3/currency/token/large/501-rBUZDXHWXrCPLfytCVqagvveqzMwB9tYCpZqxSKpump-107/type=default_90_0?v=1788786466446",
+ "logoUrls": [
+ "https://static.oklink.com/cdn/web3/currency/token/large/501-rBUZDXHWXrCPLfytCVqagvveqzMwB9tYCpZqxSKpump-107/type=default_90_0?v=1788786466446"
+ ],
+ "name": "RST",
+ "symbol": "RST",
+ "marketCap": "276357353.930585846709807917",
+ "price": "0.27636639640813074159",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": false,
+ "key": "sol--101:rBUZDXHWXrCPLfytCVqagvveqzMwB9tYCpZqxSKpump",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "GPRR2u6NS5yBQHWGauoJ9HXgjrTH8dDsrBfTV5zAYvDH",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-GPRR2u6NS5yBQHWGauoJ9HXgjrTH8dDsrBfTV5zAYvDH-1788370277445.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-GPRR2u6NS5yBQHWGauoJ9HXgjrTH8dDsrBfTV5zAYvDH-1788370277445.png"
+ ],
+ "name": "GoPro - Backpack Securities",
+ "symbol": "GPRO",
+ "marketCap": "367215.739871755057607796",
+ "price": "1.68106738019190069462",
+ "priceChange24hPercent": "-1.46",
+ "volume24h": "561738.811637895217205757",
+ "communityRecognized": false,
+ "key": "sol--101:GPRR2u6NS5yBQHWGauoJ9HXgjrTH8dDsrBfTV5zAYvDH",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "Xs3oZwbHvqis4NYcf4YKWmEia2eC84wSiVrcYcTqpH8",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-Xs3oZwbHvqis4NYcf4YKWmEia2eC84wSiVrcYcTqpH8-1781088143961.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-Xs3oZwbHvqis4NYcf4YKWmEia2eC84wSiVrcYcTqpH8-1781088143961.png"
+ ],
+ "name": "SpaceX xStock",
+ "symbol": "SPCXx",
+ "marketCap": "84108278.742033447986004943",
+ "price": "150.19453876292317649802",
+ "priceChange24hPercent": "1.17",
+ "volume24h": "2457334.745042750781305113",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 xStock 代币化发行",
+ "subtitle": "SpaceX",
+ "source": "xstock",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/xstock.png",
+ "isOpen": true
+ },
+ "key": "sol--101:Xs3oZwbHvqis4NYcf4YKWmEia2eC84wSiVrcYcTqpH8",
+ "kind": "stock",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "Cc9K64oaBu1STW17uAr19zuDFaBRLfDu6txXvKmfuHRH",
+ "logoUrl": "https://static.oklink.com/cdn/web3/currency/token/large/501-Cc9K64oaBu1STW17uAr19zuDFaBRLfDu6txXvKmfuHRH-107/type=default_90_0?v=1788835547506",
+ "logoUrls": [
+ "https://static.oklink.com/cdn/web3/currency/token/large/501-Cc9K64oaBu1STW17uAr19zuDFaBRLfDu6txXvKmfuHRH-107/type=default_90_0?v=1788835547506"
+ ],
+ "name": "牛来",
+ "symbol": "牛来",
+ "marketCap": "180737.013822232044522187",
+ "price": "0.00018073701382223204",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": false,
+ "key": "sol--101:Cc9K64oaBu1STW17uAr19zuDFaBRLfDu6txXvKmfuHRH",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "8UNfwwsuCwzVgABzmUChkZGSe9ZCm2dmYfK7ALHLpump",
+ "logoUrl": "https://static.oklink.com/cdn/web3/currency/token/large/501-8UNfwwsuCwzVgABzmUChkZGSe9ZCm2dmYfK7ALHLpump-107/type=default_90_0?v=1788827339608",
+ "logoUrls": [
+ "https://static.oklink.com/cdn/web3/currency/token/large/501-8UNfwwsuCwzVgABzmUChkZGSe9ZCm2dmYfK7ALHLpump-107/type=default_90_0?v=1788827339608"
+ ],
+ "name": "PROJECT ONYX",
+ "symbol": "PONYX",
+ "marketCap": "39935324.889704196475743652",
+ "price": "0.0399381975019444034",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": false,
+ "key": "sol--101:8UNfwwsuCwzVgABzmUChkZGSe9ZCm2dmYfK7ALHLpump",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "DVabFaj9qaZaEKgkJVQGmMmNvNCpunqoTKd3w5NSpump",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/96786d4a78793085bfdefe17fe5cb0ec517ed0a2947dad41e2519b87a3cb5ef2",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/96786d4a78793085bfdefe17fe5cb0ec517ed0a2947dad41e2519b87a3cb5ef2"
+ ],
+ "name": "Charley Davidson",
+ "symbol": "CHARLEY",
+ "marketCap": "25246.560096744536018853",
+ "price": "0.0000264703778694293",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": false,
+ "key": "sol--101:DVabFaj9qaZaEKgkJVQGmMmNvNCpunqoTKd3w5NSpump",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "1QL5r1mmdK2fCkpLm8mKBbyW2rGgXguYFezGV7bpump",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/2ed1420469fdc08d798857a005677567f579edd24a7f3f4b18d53627ad24c326",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/2ed1420469fdc08d798857a005677567f579edd24a7f3f4b18d53627ad24c326"
+ ],
+ "name": "GTA VI",
+ "symbol": "GTA6",
+ "marketCap": "2054594.116228178364305307",
+ "price": "0.00205768265872182517",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": false,
+ "key": "sol--101:1QL5r1mmdK2fCkpLm8mKBbyW2rGgXguYFezGV7bpump",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "HGgCMpbaB1HMqJeJbS2Pnq7uNf5eT5ABuU2JqiNHpump",
+ "logoUrl": "https://static.oklink.com/cdn/web3/currency/token/large/501-HGgCMpbaB1HMqJeJbS2Pnq7uNf5eT5ABuU2JqiNHpump-107/type=default_90_0?v=1788838698695",
+ "logoUrls": [
+ "https://static.oklink.com/cdn/web3/currency/token/large/501-HGgCMpbaB1HMqJeJbS2Pnq7uNf5eT5ABuU2JqiNHpump-107/type=default_90_0?v=1788838698695"
+ ],
+ "name": "OFFICIAL BARRON",
+ "symbol": "BARRON",
+ "marketCap": "9791594.856016764985468988",
+ "price": "0.00979344124798922728",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": false,
+ "key": "sol--101:HGgCMpbaB1HMqJeJbS2Pnq7uNf5eT5ABuU2JqiNHpump",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "9BB6NFEcjBCtnNLFko2FqVQBq8HHM13kCyYcdQbgpump",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-9BB6NFEcjBCtnNLFko2FqVQBq8HHM13kCyYcdQbgpump-1758104080638.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-9BB6NFEcjBCtnNLFko2FqVQBq8HHM13kCyYcdQbgpump-1758104080638.png"
+ ],
+ "name": "Fartcoin ",
+ "symbol": "Fartcoin ",
+ "marketCap": "169844413.049888839356340515",
+ "price": "0.16984879414918682233",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": true,
+ "key": "sol--101:9BB6NFEcjBCtnNLFko2FqVQBq8HHM13kCyYcdQbgpump",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "hSsA7ATLNk1HuRfp6Y4eKTkJhyRuB7CWtJ5grb3pump",
+ "logoUrl": "https://static.oklink.com/cdn/web3/currency/token/large/501-hSsA7ATLNk1HuRfp6Y4eKTkJhyRuB7CWtJ5grb3pump-108/type=default_90_0?v=1788833065397",
+ "logoUrls": [
+ "https://static.oklink.com/cdn/web3/currency/token/large/501-hSsA7ATLNk1HuRfp6Y4eKTkJhyRuB7CWtJ5grb3pump-108/type=default_90_0?v=1788833065397"
+ ],
+ "name": "World Water Reserve",
+ "symbol": "WWR",
+ "marketCap": "11259814.362834348467815718",
+ "price": "0.01126380146167369488",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": false,
+ "key": "sol--101:hSsA7ATLNk1HuRfp6Y4eKTkJhyRuB7CWtJ5grb3pump",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "acfzE6gruCrzEUBWpKdyTxEEQhc4bHNgau5QbBVpump",
+ "logoUrl": "https://static.oklink.com/cdn/web3/currency/token/large/501-acfzE6gruCrzEUBWpKdyTxEEQhc4bHNgau5QbBVpump-107/type=default_90_0?v=1788832488823",
+ "logoUrls": [
+ "https://static.oklink.com/cdn/web3/currency/token/large/501-acfzE6gruCrzEUBWpKdyTxEEQhc4bHNgau5QbBVpump-107/type=default_90_0?v=1788832488823"
+ ],
+ "name": "Minirouter.sh",
+ "symbol": "MINI",
+ "marketCap": "3273201.710335406447822536",
+ "price": "0.00327503042771898793",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": false,
+ "key": "sol--101:acfzE6gruCrzEUBWpKdyTxEEQhc4bHNgau5QbBVpump",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "SiLVFMgD3eD2rgK628NbTBq9MnuJF5FW2CRaVyTB35L",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-SiLVFMgD3eD2rgK628NbTBq9MnuJF5FW2CRaVyTB35L-1786641144146.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-SiLVFMgD3eD2rgK628NbTBq9MnuJF5FW2CRaVyTB35L-1786641144146.png"
+ ],
+ "name": "Dominion Silver",
+ "symbol": "SILV",
+ "marketCap": "6193007.964192806796538243",
+ "price": "66.39192033949276572994",
+ "priceChange24hPercent": "0.68",
+ "volume24h": "1251360.97561624705986135",
+ "communityRecognized": true,
+ "key": "sol--101:SiLVFMgD3eD2rgK628NbTBq9MnuJF5FW2CRaVyTB35L",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "uBSAmmSiSpRgFYi1amFkcdH6o7t7WJd5Ju5dLgkpump",
+ "logoUrl": "https://static.oklink.com/cdn/web3/currency/token/large/501-uBSAmmSiSpRgFYi1amFkcdH6o7t7WJd5Ju5dLgkpump-107/type=default_90_0?v=1788831327813",
+ "logoUrls": [
+ "https://static.oklink.com/cdn/web3/currency/token/large/501-uBSAmmSiSpRgFYi1amFkcdH6o7t7WJd5Ju5dLgkpump-107/type=default_90_0?v=1788831327813"
+ ],
+ "name": "Department of Energy",
+ "symbol": "DOE",
+ "marketCap": "1923106.295125780974755755",
+ "price": "0.00192501120487423714",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": false,
+ "key": "sol--101:uBSAmmSiSpRgFYi1amFkcdH6o7t7WJd5Ju5dLgkpump",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "EEpng77ZPn9FbgbT4xsRjwuxNCcMBYq3HTwEscyTpump",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-EEpng77ZPn9FbgbT4xsRjwuxNCcMBYq3HTwEscyTpump-1788282964797.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-EEpng77ZPn9FbgbT4xsRjwuxNCcMBYq3HTwEscyTpump-1788282964797.png"
+ ],
+ "name": "Justice for HeeHaw",
+ "symbol": "HeeHaw",
+ "marketCap": "1309774.44369591042480328",
+ "price": "0.00133779783887149567",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": false,
+ "key": "sol--101:EEpng77ZPn9FbgbT4xsRjwuxNCcMBYq3HTwEscyTpump",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "Zqp1CGaubH4EUYrv9Cwyh9cL75JrRtMurTURqkepump",
+ "logoUrl": "https://static.oklink.com/cdn/web3/currency/token/large/501-Zqp1CGaubH4EUYrv9Cwyh9cL75JrRtMurTURqkepump-107/type=default_90_0?v=1788830000263",
+ "logoUrls": [
+ "https://static.oklink.com/cdn/web3/currency/token/large/501-Zqp1CGaubH4EUYrv9Cwyh9cL75JrRtMurTURqkepump-107/type=default_90_0?v=1788830000263"
+ ],
+ "name": "PROJECT ONYX",
+ "symbol": "PONYX",
+ "marketCap": "205269383.275982129346905972",
+ "price": "0.20527186753474395893",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": false,
+ "key": "sol--101:Zqp1CGaubH4EUYrv9Cwyh9cL75JrRtMurTURqkepump",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "RPDKY4FQacZ2cbmnGYpgTXC8hWDtjr5zGVeBDzcpump",
+ "logoUrl": "https://static.oklink.com/cdn/web3/currency/token/large/501-RPDKY4FQacZ2cbmnGYpgTXC8hWDtjr5zGVeBDzcpump-107/type=default_90_0?v=1788839740889",
+ "logoUrls": [
+ "https://static.oklink.com/cdn/web3/currency/token/large/501-RPDKY4FQacZ2cbmnGYpgTXC8hWDtjr5zGVeBDzcpump-107/type=default_90_0?v=1788839740889"
+ ],
+ "name": "Anthropic",
+ "symbol": "Anthropic",
+ "marketCap": "15888734.857959915259210213",
+ "price": "0.01589057432356543816",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": false,
+ "key": "sol--101:RPDKY4FQacZ2cbmnGYpgTXC8hWDtjr5zGVeBDzcpump",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "ucH7Xyg8yBuqzf9LGw7zbKJuMcnAGiTksJxy2DZpump",
+ "logoUrl": "https://static.oklink.com/cdn/web3/currency/token/large/501-ucH7Xyg8yBuqzf9LGw7zbKJuMcnAGiTksJxy2DZpump-107/type=default_90_0?v=1788836532323",
+ "logoUrls": [
+ "https://static.oklink.com/cdn/web3/currency/token/large/501-ucH7Xyg8yBuqzf9LGw7zbKJuMcnAGiTksJxy2DZpump-107/type=default_90_0?v=1788836532323"
+ ],
+ "name": "LAPTOP",
+ "symbol": "LAPTOP",
+ "marketCap": "12217954.748682962536395592",
+ "price": "0.01221980041383477198",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": false,
+ "key": "sol--101:ucH7Xyg8yBuqzf9LGw7zbKJuMcnAGiTksJxy2DZpump",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "7AoBuYcGKQYadxc9wmGxpuu29bpC1EDQezkoXACWZRFF",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-7AoBuYcGKQYadxc9wmGxpuu29bpC1EDQezkoXACWZRFF-1787418063946.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-7AoBuYcGKQYadxc9wmGxpuu29bpC1EDQezkoXACWZRFF-1787418063946.png"
+ ],
+ "name": "Capx",
+ "symbol": "CAPX",
+ "marketCap": "226258607.621151612379629928",
+ "price": "0.2262586076365912683",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": false,
+ "key": "sol--101:7AoBuYcGKQYadxc9wmGxpuu29bpC1EDQezkoXACWZRFF",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "TXJQtJkGS6GmXxDaaPsmWBniNrFoftFKyKhPRV2pump",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/61256cce0c5acddbf40d3f9b65572dc6a42f8e6e1c439b521b188f9062eccc2d",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/61256cce0c5acddbf40d3f9b65572dc6a42f8e6e1c439b521b188f9062eccc2d"
+ ],
+ "name": "MrBeast",
+ "symbol": "Beast",
+ "marketCap": "1921019.920353480684498504",
+ "price": "0.00192380797967692799",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": false,
+ "key": "sol--101:TXJQtJkGS6GmXxDaaPsmWBniNrFoftFKyKhPRV2pump",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "AjUPChqae6zNwDmrse83siD7m5qLkKF4QTa66rKcpump",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/9dc7f88d9e1f81c4ceec1a3458572419795ed135630f8601d7f9f48b4f43847a",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/9dc7f88d9e1f81c4ceec1a3458572419795ed135630f8601d7f9f48b4f43847a"
+ ],
+ "name": "WOFI",
+ "symbol": "WOFI",
+ "marketCap": "393706890.751593186250539781",
+ "price": "0.39371023921163209958",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": false,
+ "key": "sol--101:AjUPChqae6zNwDmrse83siD7m5qLkKF4QTa66rKcpump",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "3zPoxaNjenyHs1LHih2RyWRkum9TPiqTktYAvisfpump",
+ "logoUrl": "https://static.oklink.com/cdn/web3/currency/token/large/501-3zPoxaNjenyHs1LHih2RyWRkum9TPiqTktYAvisfpump-107/type=default_90_0?v=1788746248131",
+ "logoUrls": [
+ "https://static.oklink.com/cdn/web3/currency/token/large/501-3zPoxaNjenyHs1LHih2RyWRkum9TPiqTktYAvisfpump-107/type=default_90_0?v=1788746248131"
+ ],
+ "name": "WOFI",
+ "symbol": "WOFI",
+ "marketCap": "15179582.129339502825902181",
+ "price": "0.01518356897898373051",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": false,
+ "key": "sol--101:3zPoxaNjenyHs1LHih2RyWRkum9TPiqTktYAvisfpump",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "BYJufa6WgJYFRCmfdxuUvWP4npfz67FodrLh319pump",
+ "logoUrl": "https://static.oklink.com/cdn/web3/currency/token/large/501-BYJufa6WgJYFRCmfdxuUvWP4npfz67FodrLh319pump-107/type=default_90_0?v=1788763294206",
+ "logoUrls": [
+ "https://static.oklink.com/cdn/web3/currency/token/large/501-BYJufa6WgJYFRCmfdxuUvWP4npfz67FodrLh319pump-107/type=default_90_0?v=1788763294206"
+ ],
+ "name": "Federal Trust Fund System",
+ "symbol": "FTFS",
+ "marketCap": "1379237.938313217482435957",
+ "price": "0.00138235322166024742",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": false,
+ "key": "sol--101:BYJufa6WgJYFRCmfdxuUvWP4npfz67FodrLh319pump",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "126havbiVp1rqGaN4wHQ54Qp5qfNCXHHhjaqzubNKaqd",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/14a038224de8f7ba21ed22a73494390e7337452497d64e6e4d2362344578c325",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/14a038224de8f7ba21ed22a73494390e7337452497d64e6e4d2362344578c325"
+ ],
+ "name": "Linera",
+ "symbol": "LNRA",
+ "marketCap": "184548.651247101740729293",
+ "price": "0.00000184550319134967",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": false,
+ "key": "sol--101:126havbiVp1rqGaN4wHQ54Qp5qfNCXHHhjaqzubNKaqd",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "Dz9mQ9NzkBcCsuGPFJ3r1bS4wgqKMHBPiVuniW8Mbonk",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-Dz9mQ9NzkBcCsuGPFJ3r1bS4wgqKMHBPiVuniW8Mbonk-1758104080638.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-Dz9mQ9NzkBcCsuGPFJ3r1bS4wgqKMHBPiVuniW8Mbonk-1758104080638.png"
+ ],
+ "name": "USELESS COIN",
+ "symbol": "USELESS",
+ "marketCap": "221898830.984786235993999999",
+ "price": "0.22210233333333333333",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": true,
+ "key": "sol--101:Dz9mQ9NzkBcCsuGPFJ3r1bS4wgqKMHBPiVuniW8Mbonk",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "SKRbvo6Gf7GondiT3BbTfuRDPqLWei4j2Qy2NPGZhW3",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-SKRbvo6Gf7GondiT3BbTfuRDPqLWei4j2Qy2NPGZhW3-1769007834351.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-SKRbvo6Gf7GondiT3BbTfuRDPqLWei4j2Qy2NPGZhW3-1769007834351.png"
+ ],
+ "name": "Seeker",
+ "symbol": "SKR",
+ "marketCap": "110810462.772040417287604958",
+ "price": "0.02184649957264364455",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": true,
+ "key": "sol--101:SKRbvo6Gf7GondiT3BbTfuRDPqLWei4j2Qy2NPGZhW3",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "SmzBeaef935WGLMjqnW2zifF5LXpNKWmXGCkFsppump",
+ "logoUrl": "https://static.oklink.com/cdn/web3/currency/token/large/501-SmzBeaef935WGLMjqnW2zifF5LXpNKWmXGCkFsppump-107/type=default_90_0?v=1788835934276",
+ "logoUrls": [
+ "https://static.oklink.com/cdn/web3/currency/token/large/501-SmzBeaef935WGLMjqnW2zifF5LXpNKWmXGCkFsppump-107/type=default_90_0?v=1788835934276"
+ ],
+ "name": "Musk",
+ "symbol": "Musk",
+ "marketCap": "14892800.352592288751959223",
+ "price": "0.01489464477008269358",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": false,
+ "key": "sol--101:SmzBeaef935WGLMjqnW2zifF5LXpNKWmXGCkFsppump",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "LEBrT5bsAtDXaPRH2BPwTwo7tJu1EJEAui8PXkYpump",
+ "logoUrl": "https://static.oklink.com/cdn/web3/currency/token/large/501-LEBrT5bsAtDXaPRH2BPwTwo7tJu1EJEAui8PXkYpump-107/type=default_90_0?v=1788827500660",
+ "logoUrls": [
+ "https://static.oklink.com/cdn/web3/currency/token/large/501-LEBrT5bsAtDXaPRH2BPwTwo7tJu1EJEAui8PXkYpump-107/type=default_90_0?v=1788827500660"
+ ],
+ "name": "World Oil Trust Fund",
+ "symbol": "WOTF",
+ "marketCap": "1555339.731000756069386065",
+ "price": "0.00155733200282465367",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": false,
+ "key": "sol--101:LEBrT5bsAtDXaPRH2BPwTwo7tJu1EJEAui8PXkYpump",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "NBiSF3UaVUFtRzHwAfxyHsBCAZWGEKnMpewAE4oh7BG",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-NBiSF3UaVUFtRzHwAfxyHsBCAZWGEKnMpewAE4oh7BG-1786640418705.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-NBiSF3UaVUFtRzHwAfxyHsBCAZWGEKnMpewAE4oh7BG-1786640418705.png"
+ ],
+ "name": "Nebius Group N.V. - Backpack Securities",
+ "symbol": "NBIS",
+ "marketCap": "421493.517711081192573879",
+ "price": "233.30936452509079712528",
+ "priceChange24hPercent": "3.98",
+ "volume24h": "234805.228460819914458525",
+ "communityRecognized": false,
+ "key": "sol--101:NBiSF3UaVUFtRzHwAfxyHsBCAZWGEKnMpewAE4oh7BG",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "EpXtn6xGoZ4Y45vRjiDUHSCGbBoJD5FaEqZbF98YswH1",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-EpXtn6xGoZ4Y45vRjiDUHSCGbBoJD5FaEqZbF98YswH1-1787245252477.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-EpXtn6xGoZ4Y45vRjiDUHSCGbBoJD5FaEqZbF98YswH1-1787245252477.png"
+ ],
+ "name": "SelfMade by SP3ND",
+ "symbol": "MADE",
+ "marketCap": "772383.661419922627624415",
+ "price": "0.00078805572845691383",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": true,
+ "key": "sol--101:EpXtn6xGoZ4Y45vRjiDUHSCGbBoJD5FaEqZbF98YswH1",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "HZBv3crczgzwLjPENFLhCm2s8qbUgLwKgLgFgniRpump",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/5de29bc6f390a7e5c4153b2bfcc9e35c2ddc6d5c6c38c1fd9ec5f471c843ab42",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/5de29bc6f390a7e5c4153b2bfcc9e35c2ddc6d5c6c38c1fd9ec5f471c843ab42"
+ ],
+ "name": "WOFI",
+ "symbol": "WOFI",
+ "marketCap": "24851546.663796305537469679",
+ "price": "0.02485178955926107635",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": false,
+ "key": "sol--101:HZBv3crczgzwLjPENFLhCm2s8qbUgLwKgLgFgniRpump",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "CbyTNf7UPzvewHh4Zp6umogM2RWahhmGRJWLJnPwpump",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/1ad9ec1405dec394a6e02b7068dbef43c73e1bb5ea5ae72ce5a4928db4d9c21d",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/1ad9ec1405dec394a6e02b7068dbef43c73e1bb5ea5ae72ce5a4928db4d9c21d"
+ ],
+ "name": "BIKE TYSON",
+ "symbol": "biketyson",
+ "marketCap": "392011.531020567229607162",
+ "price": "0.00040752600518006132",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": false,
+ "key": "sol--101:CbyTNf7UPzvewHh4Zp6umogM2RWahhmGRJWLJnPwpump",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "4wJ9JV9ViRUfGh19Ca4NURq69m7eG7tGwoeZnHcpump",
+ "logoUrl": "https://static.oklink.com/cdn/web3/currency/token/large/501-4wJ9JV9ViRUfGh19Ca4NURq69m7eG7tGwoeZnHcpump-107/type=default_90_0?v=1788826286330",
+ "logoUrls": [
+ "https://static.oklink.com/cdn/web3/currency/token/large/501-4wJ9JV9ViRUfGh19Ca4NURq69m7eG7tGwoeZnHcpump-107/type=default_90_0?v=1788826286330"
+ ],
+ "name": "World Oil Trust Fund",
+ "symbol": "WOTF",
+ "marketCap": "7265303.352883766949212646",
+ "price": "0.00726751278409214489",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": false,
+ "key": "sol--101:4wJ9JV9ViRUfGh19Ca4NURq69m7eG7tGwoeZnHcpump",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "AhnTNq2rSkv5cPPgDDRHFAVBWFqNL1xhHx2c7hKpump",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/7131f98032ccc04e29ffb7ee435512e209985e93eead7c3157a6b33f1dcd2565",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/7131f98032ccc04e29ffb7ee435512e209985e93eead7c3157a6b33f1dcd2565"
+ ],
+ "name": "LAPTOP",
+ "symbol": "LAPTOP",
+ "marketCap": "638286854.140334112954108516",
+ "price": "0.63829455417513239849",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": false,
+ "key": "sol--101:AhnTNq2rSkv5cPPgDDRHFAVBWFqNL1xhHx2c7hKpump",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "pJc8sGotPsadcDFgBvuJFu6GpQ4TJgu4HtcPV7bpump",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/956a2b77c762131c653b91a7719449010c5b0157a71dba18824d5b6ad531b8bf",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/956a2b77c762131c653b91a7719449010c5b0157a71dba18824d5b6ad531b8bf"
+ ],
+ "name": "SPACEBALLS",
+ "symbol": "SPACEBALLS",
+ "marketCap": "115354.120218480459760608",
+ "price": "0.00011895758888769784",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": false,
+ "key": "sol--101:pJc8sGotPsadcDFgBvuJFu6GpQ4TJgu4HtcPV7bpump",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "XsvNBAYkrDRNhA7wPHQfX3ZUXZyZLdnCQDfHZ56bzpg",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-XsvNBAYkrDRNhA7wPHQfX3ZUXZyZLdnCQDfHZ56bzpg-1758105602873.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-XsvNBAYkrDRNhA7wPHQfX3ZUXZyZLdnCQDfHZ56bzpg-1758105602873.png"
+ ],
+ "name": "Robinhood xStock",
+ "symbol": "HOODx",
+ "marketCap": "11608834.610499505529101024",
+ "price": "123.0550325048778617499",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 xStock 代币化发行",
+ "subtitle": "罗宾汉",
+ "source": "xstock",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/xstock.png",
+ "isOpen": true
+ },
+ "key": "sol--101:XsvNBAYkrDRNhA7wPHQfX3ZUXZyZLdnCQDfHZ56bzpg",
+ "kind": "stock",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "ETR1nyTNo6hVE7KQ2uDDNrD16qU6rj28db4gug3k1A5s",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/03f53af957289551f9595a45e025447447a11dcbca9522bc976a4e87cf0ba7be",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/03f53af957289551f9595a45e025447447a11dcbca9522bc976a4e87cf0ba7be"
+ ],
+ "name": "AlloX",
+ "symbol": "ALLOX",
+ "marketCap": "152918.774780799257114573",
+ "price": "0.00000152918783491883",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": false,
+ "key": "sol--101:ETR1nyTNo6hVE7KQ2uDDNrD16qU6rj28db4gug3k1A5s",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "DLvpmv8R4oTbC1DixU5yHLbBcmnvfTckGF3XFzLTpump",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-DLvpmv8R4oTbC1DixU5yHLbBcmnvfTckGF3XFzLTpump-1788369202858.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-DLvpmv8R4oTbC1DixU5yHLbBcmnvfTckGF3XFzLTpump-1788369202858.png"
+ ],
+ "name": "apewifdress",
+ "symbol": "APEWIF",
+ "marketCap": "262486.797769519560689222",
+ "price": "0.00027294229923012884",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": true,
+ "key": "sol--101:DLvpmv8R4oTbC1DixU5yHLbBcmnvfTckGF3XFzLTpump",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "2pouN3by7twkiZGy5aEKYUpf78ALDpKRTNu2WsQkpkqt",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-2pouN3by7twkiZGy5aEKYUpf78ALDpKRTNu2WsQkpkqt-1788714470837.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-2pouN3by7twkiZGy5aEKYUpf78ALDpKRTNu2WsQkpkqt-1788714470837.png"
+ ],
+ "name": "Buttensor",
+ "symbol": "BUTT",
+ "marketCap": "2775281.48434082555302534",
+ "price": "0.00277825462178035535",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": true,
+ "key": "sol--101:2pouN3by7twkiZGy5aEKYUpf78ALDpKRTNu2WsQkpkqt",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "5UUH9RTDiSpq6HKS6bp4NdU9PNJpXRXuiw6ShBTBhgH2",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-5UUH9RTDiSpq6HKS6bp4NdU9PNJpXRXuiw6ShBTBhgH2-1758104099246.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-5UUH9RTDiSpq6HKS6bp4NdU9PNJpXRXuiw6ShBTBhgH2-1758104099246.png"
+ ],
+ "name": "TROLL",
+ "symbol": "TROLL",
+ "marketCap": "47790946.24794789349599707",
+ "price": "0.04784983092833138455",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": true,
+ "key": "sol--101:5UUH9RTDiSpq6HKS6bp4NdU9PNJpXRXuiw6ShBTBhgH2",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "2pwCdsf3KmoQFihDDtxMyPwrTJmimTA8sTBBn57robN6",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/387ad3f11ea3d0cfb99f2460f49f8916c2dab635821ad58ffbfffc7c27bbf2ff",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/387ad3f11ea3d0cfb99f2460f49f8916c2dab635821ad58ffbfffc7c27bbf2ff"
+ ],
+ "name": "PIGEON TRUTH",
+ "symbol": "PIGEONS",
+ "marketCap": "332437.193836544137003246",
+ "price": "0.00033243765117637098",
+ "priceChange24hPercent": "6247.63",
+ "volume24h": "1120477.91539396885616206",
+ "communityRecognized": false,
+ "key": "sol--101:2pwCdsf3KmoQFihDDtxMyPwrTJmimTA8sTBBn57robN6",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "GUmbtfjSZkybSFgPibBcvwExEBdXwewJHR5PkTjzpump",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-GUmbtfjSZkybSFgPibBcvwExEBdXwewJHR5PkTjzpump-1787591211649.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-GUmbtfjSZkybSFgPibBcvwExEBdXwewJHR5PkTjzpump-1787591211649.png"
+ ],
+ "name": "Gucci Morty",
+ "symbol": "Morty",
+ "marketCap": "273625.100192616254310048",
+ "price": "0.00028587045567050823",
+ "priceChange24hPercent": "5.16",
+ "volume24h": "121364.52233225408",
+ "communityRecognized": false,
+ "key": "sol--101:GUmbtfjSZkybSFgPibBcvwExEBdXwewJHR5PkTjzpump",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "CSgbRaZ3Gw4TDJvPfCWU3u2kPEQT4JF2v6iB59WwAaMJ",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/d2dc0c132b0cb4f6e97a3bbdeb9fb3aced00ff285c41cae13db9b2edb1224859",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/d2dc0c132b0cb4f6e97a3bbdeb9fb3aced00ff285c41cae13db9b2edb1224859"
+ ],
+ "name": "Baton",
+ "symbol": "BATON",
+ "marketCap": "154107.951097407944104333",
+ "price": "0.00015933796596226775",
+ "priceChange24hPercent": "144.17",
+ "volume24h": "2266313.27507302525",
+ "communityRecognized": false,
+ "key": "sol--101:CSgbRaZ3Gw4TDJvPfCWU3u2kPEQT4JF2v6iB59WwAaMJ",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "6fbgUAM323YmfyA9cE3wozr7UKHhgquW4qBCgGhxHLDt",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/6f197fc8a0fff7decf567fb8951a835c7c7bd0f3c193b2d790af3d400a9fdb25",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/6f197fc8a0fff7decf567fb8951a835c7c7bd0f3c193b2d790af3d400a9fdb25"
+ ],
+ "name": "Prime Cat",
+ "symbol": "PRIMECAT",
+ "marketCap": "211062.448367651928881224",
+ "price": "0.00021106244851708773",
+ "priceChange24hPercent": "-11.71",
+ "volume24h": "642339.777303228594240399",
+ "communityRecognized": false,
+ "key": "sol--101:6fbgUAM323YmfyA9cE3wozr7UKHhgquW4qBCgGhxHLDt",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "DRqXeQA5sKGeksnRTvhTGEwpaqNtHQo8bQqub7pjpump",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/2921c4251783973f1883431eb5230fdccad504aee8793234966d2c8864a4206d",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/2921c4251783973f1883431eb5230fdccad504aee8793234966d2c8864a4206d"
+ ],
+ "name": "vc.fun",
+ "symbol": "VC",
+ "marketCap": "2590223.325839916086385083",
+ "price": "0.00259168693805588981",
+ "priceChange24hPercent": "85205.08",
+ "volume24h": "2127628.09933391676",
+ "communityRecognized": false,
+ "key": "sol--101:DRqXeQA5sKGeksnRTvhTGEwpaqNtHQo8bQqub7pjpump",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "56eTQTFeeB7P3UcCjU6g9gcXEXX8oN3yAVwb329xqymn",
+ "logoUrl": "https://static.oklink.com/cdn/web3/currency/token/large/501-56eTQTFeeB7P3UcCjU6g9gcXEXX8oN3yAVwb329xqymn-107/type=default_90_0?v=1788837928627",
+ "logoUrls": [
+ "https://static.oklink.com/cdn/web3/currency/token/large/501-56eTQTFeeB7P3UcCjU6g9gcXEXX8oN3yAVwb329xqymn-107/type=default_90_0?v=1788837928627"
+ ],
+ "name": "SpaceX",
+ "symbol": "SPCX",
+ "marketCap": "2242391.689156199187656564",
+ "price": "0.00002242391704811804",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": false,
+ "key": "sol--101:56eTQTFeeB7P3UcCjU6g9gcXEXX8oN3yAVwb329xqymn",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "3N7KNXRwdCokLdr88h2FPrtNgyMBKwjkxLQrBAMErvBy",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/822b49ecc68933b8f7ba917f7ce6662718398623600069b770d8467e1ef65909",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/822b49ecc68933b8f7ba917f7ce6662718398623600069b770d8467e1ef65909"
+ ],
+ "name": "Alon Teller Machine",
+ "symbol": "ATM",
+ "marketCap": "17500.148252005563078925",
+ "price": "0.00001750014825200562",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": false,
+ "key": "sol--101:3N7KNXRwdCokLdr88h2FPrtNgyMBKwjkxLQrBAMErvBy",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "KLh7sQxoWY4GhRSqHToeCorCHLEWLS7PbRjWYTFpump",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/7b3a4b3a08b4b382b7165fe747a87bcc165b4d3955be1d74626a76d04230db45",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/7b3a4b3a08b4b382b7165fe747a87bcc165b4d3955be1d74626a76d04230db45"
+ ],
+ "name": "Aura Farming",
+ "symbol": "AURA",
+ "marketCap": "524973.320051223562341447",
+ "price": "0.0005316147455895989",
+ "priceChange24hPercent": "18.63",
+ "volume24h": "533670.32629955008",
+ "communityRecognized": false,
+ "key": "sol--101:KLh7sQxoWY4GhRSqHToeCorCHLEWLS7PbRjWYTFpump",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "FPfi9q1AixdUeWQVPFHJMJQ7a43S78dm6UZ4fzN4pump",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-FPfi9q1AixdUeWQVPFHJMJQ7a43S78dm6UZ4fzN4pump-1786295210474.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-FPfi9q1AixdUeWQVPFHJMJQ7a43S78dm6UZ4fzN4pump-1786295210474.png"
+ ],
+ "name": "9gnosis",
+ "symbol": "nosis",
+ "marketCap": "306063.323882097621475407",
+ "price": "0.00031443043565121607",
+ "priceChange24hPercent": "8.74",
+ "volume24h": "28582.11562038784",
+ "communityRecognized": false,
+ "key": "sol--101:FPfi9q1AixdUeWQVPFHJMJQ7a43S78dm6UZ4fzN4pump",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "3d2UiLwJmRUtgnH5FG7K55GYBmojZmJn5GHPyCUCpump",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/fac45fe6c59a3da6042e6e515cd9b4e1d42cf96f2e1d2fd997311b322c365bf6",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/fac45fe6c59a3da6042e6e515cd9b4e1d42cf96f2e1d2fd997311b322c365bf6"
+ ],
+ "name": "Robinhood Killer",
+ "symbol": "KILLER",
+ "marketCap": "63068.915236774205594382",
+ "price": "0.00006655421360094478",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": false,
+ "key": "sol--101:3d2UiLwJmRUtgnH5FG7K55GYBmojZmJn5GHPyCUCpump",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "AbpWkswGpFNYHatQG3eRTjpQLBoi5EYhbJQ7EspcR23R",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/0cbe60d7253995cacf2a6d839528e4da4b4aacb255dbf8103f9c9a91fc4c008c",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/0cbe60d7253995cacf2a6d839528e4da4b4aacb255dbf8103f9c9a91fc4c008c"
+ ],
+ "name": "Drippy Cat",
+ "symbol": "DripCat",
+ "marketCap": "123951.800721698635174623",
+ "price": "0.00012993824087661078",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": false,
+ "key": "sol--101:AbpWkswGpFNYHatQG3eRTjpQLBoi5EYhbJQ7EspcR23R",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "49nkLrXi8nCZBVKsShDNasEtPe4Vn1mx9Xbr3kTa8pTL",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-49nkLrXi8nCZBVKsShDNasEtPe4Vn1mx9Xbr3kTa8pTL-1786556164775.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-49nkLrXi8nCZBVKsShDNasEtPe4Vn1mx9Xbr3kTa8pTL-1786556164775.png"
+ ],
+ "name": "Sent from my Pumpfun App",
+ "symbol": "App",
+ "marketCap": "290050.045121946116672975",
+ "price": "0.0003177313555863665",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": false,
+ "key": "sol--101:49nkLrXi8nCZBVKsShDNasEtPe4Vn1mx9Xbr3kTa8pTL",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "LLYuwZ33keFihgwoxXsBawy31AiRFLFSva32TYq5TvD",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-LLYuwZ33keFihgwoxXsBawy31AiRFLFSva32TYq5TvD-1787333825011.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-LLYuwZ33keFihgwoxXsBawy31AiRFLFSva32TYq5TvD-1787333825011.png"
+ ],
+ "name": "Eli Lilly and Company - Backpack Securities",
+ "symbol": "LLY",
+ "marketCap": "275626.510340279162671948",
+ "price": "1147.96412125267665952891",
+ "priceChange24hPercent": "-0.13",
+ "volume24h": "558064.553010904634886816",
+ "communityRecognized": false,
+ "key": "sol--101:LLYuwZ33keFihgwoxXsBawy31AiRFLFSva32TYq5TvD",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "dgQorQonJjekhZZttZe9isbqFFsDjXvCGBCMc4pSTNK",
+ "logoUrl": "https://static.oklink.com/cdn/web3/currency/token/large/501-dgQorQonJjekhZZttZe9isbqFFsDjXvCGBCMc4pSTNK-109/type=default_90_0?v=1788832606870",
+ "logoUrls": [
+ "https://static.oklink.com/cdn/web3/currency/token/large/501-dgQorQonJjekhZZttZe9isbqFFsDjXvCGBCMc4pSTNK-109/type=default_90_0?v=1788832606870"
+ ],
+ "name": "CATURN",
+ "symbol": "CATURN",
+ "marketCap": "41110.830725351584742791",
+ "price": "0.00004111119507048669",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": false,
+ "key": "sol--101:dgQorQonJjekhZZttZe9isbqFFsDjXvCGBCMc4pSTNK",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "FZqdw6oSDCbHtKYxmhnfbi97SnyVy8jaYpdCoMrrjKa2",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-FZqdw6oSDCbHtKYxmhnfbi97SnyVy8jaYpdCoMrrjKa2-1788109336336.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-FZqdw6oSDCbHtKYxmhnfbi97SnyVy8jaYpdCoMrrjKa2-1788109336336.png"
+ ],
+ "name": "Pistacio",
+ "symbol": "Pistacio",
+ "marketCap": "478347.141909431315607453",
+ "price": "0.0004902663352054724",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": true,
+ "key": "sol--101:FZqdw6oSDCbHtKYxmhnfbi97SnyVy8jaYpdCoMrrjKa2",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "6PRF6c3Le4w1E35Dn7xMLwBwE87yVHZY37VD8Et2pump",
+ "logoUrl": "https://static.oklink.com/cdn/web3/currency/token/large/501-6PRF6c3Le4w1E35Dn7xMLwBwE87yVHZY37VD8Et2pump-107/type=default_90_0?v=1788839814720",
+ "logoUrls": [
+ "https://static.oklink.com/cdn/web3/currency/token/large/501-6PRF6c3Le4w1E35Dn7xMLwBwE87yVHZY37VD8Et2pump-107/type=default_90_0?v=1788839814720"
+ ],
+ "name": "stank memes",
+ "symbol": "STANK",
+ "marketCap": "14450.545795235662678913",
+ "price": "0.00001481053729413321",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": false,
+ "key": "sol--101:6PRF6c3Le4w1E35Dn7xMLwBwE87yVHZY37VD8Et2pump",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "ApZuxdpzMrbEYTGEzeY9afh5pj9d6qPRJCTgQYiipbKg",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-ApZuxdpzMrbEYTGEzeY9afh5pj9d6qPRJCTgQYiipbKg-1787159398565.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-ApZuxdpzMrbEYTGEzeY9afh5pj9d6qPRJCTgQYiipbKg-1787159398565.png"
+ ],
+ "name": "CyberLeek",
+ "symbol": "CYBERLEEK",
+ "marketCap": "575840.051600828045745536",
+ "price": "0.00078889391430518674",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": true,
+ "key": "sol--101:ApZuxdpzMrbEYTGEzeY9afh5pj9d6qPRJCTgQYiipbKg",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "GiUHYs5Hsv94P8bR9m26DsXsX8E786rQsFsPK6spump",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/9eddbda8acf2b136882f4e42c2f8aa2a215e106d7d83dbcb47fa9feccc5ec1fe",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/9eddbda8acf2b136882f4e42c2f8aa2a215e106d7d83dbcb47fa9feccc5ec1fe"
+ ],
+ "name": "Rich Debt",
+ "symbol": "RICHDEBT",
+ "marketCap": "839374.689400874922873267",
+ "price": "0.00085288292501745959",
+ "priceChange24hPercent": "-19.12",
+ "volume24h": "429254.60571982066",
+ "communityRecognized": false,
+ "key": "sol--101:GiUHYs5Hsv94P8bR9m26DsXsX8E786rQsFsPK6spump",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "Tqj8yFmagrg7oorpQkVGYR52r96RFTamvWfth9bpump",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-Tqj8yFmagrg7oorpQkVGYR52r96RFTamvWfth9bpump-1779721519876.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-Tqj8yFmagrg7oorpQkVGYR52r96RFTamvWfth9bpump-1779721519876.png"
+ ],
+ "name": "Kintara",
+ "symbol": "KINS",
+ "marketCap": "1078546.330872629076110427",
+ "price": "0.00108755743270806868",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": true,
+ "key": "sol--101:Tqj8yFmagrg7oorpQkVGYR52r96RFTamvWfth9bpump",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "DkPQvrx7CDYrL4HfHijz6GqZLYm7Pd4rm1kTiumLFwhS",
+ "logoUrl": "https://static.oklink.com/cdn/web3/currency/token/large/501-DkPQvrx7CDYrL4HfHijz6GqZLYm7Pd4rm1kTiumLFwhS-109/type=default_90_0?v=1787582948481",
+ "logoUrls": [
+ "https://static.oklink.com/cdn/web3/currency/token/large/501-DkPQvrx7CDYrL4HfHijz6GqZLYm7Pd4rm1kTiumLFwhS-109/type=default_90_0?v=1787582948481"
+ ],
+ "name": "Stonk Cat",
+ "symbol": "STONKCAT",
+ "marketCap": "369478.282558321845190458",
+ "price": "0.00038189625850559385",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": false,
+ "key": "sol--101:DkPQvrx7CDYrL4HfHijz6GqZLYm7Pd4rm1kTiumLFwhS",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "E3PDmbvHfaFyzJBjMLXr6aowbMVBS9XeX7jRy1D4pump",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/1d7e9909f533688aa9b6a9e99e02caf4fea6883947163baae8bc365ac4bca854",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/1d7e9909f533688aa9b6a9e99e02caf4fea6883947163baae8bc365ac4bca854"
+ ],
+ "name": "Caliber",
+ "symbol": "CALI",
+ "marketCap": "47231.958374899053684057",
+ "price": "0.00004847768489339015",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": false,
+ "key": "sol--101:E3PDmbvHfaFyzJBjMLXr6aowbMVBS9XeX7jRy1D4pump",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "zj1jpp7QMveWHLs61vL9KMZf254KvW7j4AAmBF8ry2k",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-zj1jpp7QMveWHLs61vL9KMZf254KvW7j4AAmBF8ry2k-1787073763293.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-zj1jpp7QMveWHLs61vL9KMZf254KvW7j4AAmBF8ry2k-1787073763293.png"
+ ],
+ "name": "Bullshit Coin",
+ "symbol": "BULLSHIT",
+ "marketCap": "1306902.667021594627849551",
+ "price": "0.00133615191602051191",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": false,
+ "key": "sol--101:zj1jpp7QMveWHLs61vL9KMZf254KvW7j4AAmBF8ry2k",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "5XZw2LKTyrfvfiskJ78AMpackRjPcyCif1WhUsPDuVqQ",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-5XZw2LKTyrfvfiskJ78AMpackRjPcyCif1WhUsPDuVqQ-1758111740701.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-5XZw2LKTyrfvfiskJ78AMpackRjPcyCif1WhUsPDuVqQ-1758111740701.png"
+ ],
+ "name": "Wrapped BTC",
+ "symbol": "WBTC",
+ "marketCap": "8290927.238752223349579558",
+ "price": "79089.22173279891237352168",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": true,
+ "key": "sol--101:5XZw2LKTyrfvfiskJ78AMpackRjPcyCif1WhUsPDuVqQ",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "XSTuo1fV7HHMhs4BYiwtrWSLsMCJNrooH2AssWTYZqP",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-XSTuo1fV7HHMhs4BYiwtrWSLsMCJNrooH2AssWTYZqP-1784905308143.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-XSTuo1fV7HHMhs4BYiwtrWSLsMCJNrooH2AssWTYZqP-1784905308143.png"
+ ],
+ "name": "XST",
+ "symbol": "XST",
+ "marketCap": "960617.247138841141352099",
+ "price": "0.00096062306465343849",
+ "priceChange24hPercent": "-0.97",
+ "volume24h": "56636.92206937328",
+ "communityRecognized": true,
+ "key": "sol--101:XSTuo1fV7HHMhs4BYiwtrWSLsMCJNrooH2AssWTYZqP",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "AVBN6kXdaw27ySuvMevKYzNTL8d39b7sGQFDCmsvpump",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-AVBN6kXdaw27ySuvMevKYzNTL8d39b7sGQFDCmsvpump-1788195648484.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-AVBN6kXdaw27ySuvMevKYzNTL8d39b7sGQFDCmsvpump-1788195648484.png"
+ ],
+ "name": "PINK COIN",
+ "symbol": "PINK",
+ "marketCap": "128072.951903292332942126",
+ "price": "0.00013228699888000284",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": false,
+ "key": "sol--101:AVBN6kXdaw27ySuvMevKYzNTL8d39b7sGQFDCmsvpump",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "8Piwyxfm1rfdv3KRHrXFCqWZ9TjPeeUhfkS9AJCmwa4j",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/694001959812939f8c832d2ce03aea67c9d08845943cd9dc010c2be8653991ce",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/694001959812939f8c832d2ce03aea67c9d08845943cd9dc010c2be8653991ce"
+ ],
+ "name": "Route",
+ "symbol": "ROUTE",
+ "marketCap": "340961.867045775654766158",
+ "price": "0.00003409618861845258",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": false,
+ "key": "sol--101:8Piwyxfm1rfdv3KRHrXFCqWZ9TjPeeUhfkS9AJCmwa4j",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "33LZGLLvtRDx3uAfJ1CcBSC7pNFqdiCBAvwPsVkBpump",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/587aee7fe9bdef600f1764a3c082d4515a5ad9f30f49bbdd7dfe11b1ec2d4391",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/587aee7fe9bdef600f1764a3c082d4515a5ad9f30f49bbdd7dfe11b1ec2d4391"
+ ],
+ "name": "billboard guy",
+ "symbol": "BILL",
+ "marketCap": "102606.968984252517310013",
+ "price": "0.00010307854394336064",
+ "priceChange24hPercent": "-57.23",
+ "volume24h": "465269.14551989129",
+ "communityRecognized": false,
+ "key": "sol--101:33LZGLLvtRDx3uAfJ1CcBSC7pNFqdiCBAvwPsVkBpump",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "orcaEKTdK7LKz57vaAYr9QeNsVEPfiu6QeMU1kektZE",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-orcaEKTdK7LKz57vaAYr9QeNsVEPfiu6QeMU1kektZE-1758104124917.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-orcaEKTdK7LKz57vaAYr9QeNsVEPfiu6QeMU1kektZE-1758104124917.png"
+ ],
+ "name": "orca",
+ "symbol": "ORCA",
+ "marketCap": "88847954.253392842190092166",
+ "price": "1.46134453763818657079",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": true,
+ "key": "sol--101:orcaEKTdK7LKz57vaAYr9QeNsVEPfiu6QeMU1kektZE",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "E3i7sTY5QYEBh3itepnomZQt7Eh5kzmHFk1vkm2pump",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-E3i7sTY5QYEBh3itepnomZQt7Eh5kzmHFk1vkm2pump-1786556664833.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-E3i7sTY5QYEBh3itepnomZQt7Eh5kzmHFk1vkm2pump-1786556664833.png"
+ ],
+ "name": "creator capital",
+ "symbol": "cc",
+ "marketCap": "739545.370991279808078966",
+ "price": "0.00077617811735732822",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": true,
+ "key": "sol--101:E3i7sTY5QYEBh3itepnomZQt7Eh5kzmHFk1vkm2pump",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "SgceNvzKD9Gh7w5mhWvPaYxZq5Qn8Cdq26oPhqfpump",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/53cc7679261cad8e65d0603090dc7bcba8a6ceb17d7b53c672cdc40e1a840cb6",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/53cc7679261cad8e65d0603090dc7bcba8a6ceb17d7b53c672cdc40e1a840cb6"
+ ],
+ "name": "StockCat",
+ "symbol": "StockCat",
+ "marketCap": "45689.033488753654772613",
+ "price": "0.00004711134617446573",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": false,
+ "key": "sol--101:SgceNvzKD9Gh7w5mhWvPaYxZq5Qn8Cdq26oPhqfpump",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "45mPrFizTwZP4Por6ynbWMMCYKbQAPotar5WsE4Ac9bY",
+ "logoUrl": "https://static.oklink.com/cdn/web3/currency/token/large/501-45mPrFizTwZP4Por6ynbWMMCYKbQAPotar5WsE4Ac9bY-107/type=default_90_0?v=1788837885603",
+ "logoUrls": [
+ "https://static.oklink.com/cdn/web3/currency/token/large/501-45mPrFizTwZP4Por6ynbWMMCYKbQAPotar5WsE4Ac9bY-107/type=default_90_0?v=1788837885603"
+ ],
+ "name": "Mona Lisa",
+ "symbol": "Mona Lisa",
+ "marketCap": "86502.271358201863850262",
+ "price": "0.00008650227135820186",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": false,
+ "key": "sol--101:45mPrFizTwZP4Por6ynbWMMCYKbQAPotar5WsE4Ac9bY",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "3P6WB3hifQ9Z38Ja5qNuaETkgstJUWmP6vf58aYupump",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/88451c8ee52b8d269442ba74ae0115e1a2a7414643d36611a7e7692a508d1667",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/88451c8ee52b8d269442ba74ae0115e1a2a7414643d36611a7e7692a508d1667"
+ ],
+ "name": "CIGR",
+ "symbol": "CIGR",
+ "marketCap": "13367511.433462631375552792",
+ "price": "0.01398381296530120212",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": false,
+ "key": "sol--101:3P6WB3hifQ9Z38Ja5qNuaETkgstJUWmP6vf58aYupump",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "BcHEaaTCvycPwwsJ9yQTXdHP9X2gCLkznDbZ8VySpump",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-BcHEaaTCvycPwwsJ9yQTXdHP9X2gCLkznDbZ8VySpump-1780845541933.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-BcHEaaTCvycPwwsJ9yQTXdHP9X2gCLkznDbZ8VySpump-1780845541933.png"
+ ],
+ "name": "Jotchua",
+ "symbol": "Jotchua",
+ "marketCap": "1667629.942181976472979053",
+ "price": "0.00166788973412663976",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": true,
+ "key": "sol--101:BcHEaaTCvycPwwsJ9yQTXdHP9X2gCLkznDbZ8VySpump",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "DUcjrSmisJATtaQY3K7LvKmCr357uWkjoSGRFnNEpump",
+ "logoUrl": "https://static.oklink.com/cdn/web3/currency/token/large/501-DUcjrSmisJATtaQY3K7LvKmCr357uWkjoSGRFnNEpump-109/type=default_90_0?v=1788237152010",
+ "logoUrls": [
+ "https://static.oklink.com/cdn/web3/currency/token/large/501-DUcjrSmisJATtaQY3K7LvKmCr357uWkjoSGRFnNEpump-109/type=default_90_0?v=1788237152010"
+ ],
+ "name": "DONALD DUCK",
+ "symbol": "FUKYEAH",
+ "marketCap": "84420.810511578428988417",
+ "price": "0.00010946106539682822",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": false,
+ "key": "sol--101:DUcjrSmisJATtaQY3K7LvKmCr357uWkjoSGRFnNEpump",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "G7vQWurMkMMm2dU3iZpXYFTHT9Biio4F4gZCrwFpKNwG",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-G7vQWurMkMMm2dU3iZpXYFTHT9Biio4F4gZCrwFpKNwG-1769612943271.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-G7vQWurMkMMm2dU3iZpXYFTHT9Biio4F4gZCrwFpKNwG-1769612943271.png"
+ ],
+ "name": "Moonbirds",
+ "symbol": "BIRB",
+ "marketCap": "16873768.987134527793675141",
+ "price": "0.05920620697240185191",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": true,
+ "key": "sol--101:G7vQWurMkMMm2dU3iZpXYFTHT9Biio4F4gZCrwFpKNwG",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "TTWofwAge91oFhZs7kpQdyrVRkmevgM88xijGvQFbKo",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/cf7b658ba2dd37cdb3815701f8819d25118b74c703eb1868f959a2e0350a3366",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/cf7b658ba2dd37cdb3815701f8819d25118b74c703eb1868f959a2e0350a3366"
+ ],
+ "name": "Take-Two Interactive Software - Backpack Securities",
+ "symbol": "TTWO",
+ "marketCap": "386910.08758471716526815",
+ "price": "215.80705034658883619117",
+ "priceChange24hPercent": "-0.18",
+ "volume24h": "442025.424254216652773584",
+ "communityRecognized": false,
+ "key": "sol--101:TTWofwAge91oFhZs7kpQdyrVRkmevgM88xijGvQFbKo",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "J3NKxxXZcnNiMjKw9hYb2K4LUxgwB6t1FtPtQVsv3KFr",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-J3NKxxXZcnNiMjKw9hYb2K4LUxgwB6t1FtPtQVsv3KFr-1758104085553.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-J3NKxxXZcnNiMjKw9hYb2K4LUxgwB6t1FtPtQVsv3KFr-1758104085553.png"
+ ],
+ "name": "SPX6900 (Wormhole)",
+ "symbol": "SPX",
+ "marketCap": "43784611.95278649720820325",
+ "price": "0.53348184523597022682",
+ "priceChange24hPercent": "-5.01",
+ "volume24h": "722740.942519839186087474",
+ "communityRecognized": true,
+ "key": "sol--101:J3NKxxXZcnNiMjKw9hYb2K4LUxgwB6t1FtPtQVsv3KFr",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "eYNHsZxBNAG8qbFGaNQZZ5zuRzRNU59VfqpZo9W43GM",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/82f06f3dfa5c5ad9dab76f131460a6bdb7956f6f7d78249c1621fb92fe47d306",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/82f06f3dfa5c5ad9dab76f131460a6bdb7956f6f7d78249c1621fb92fe47d306"
+ ],
+ "name": "NEEGY",
+ "symbol": "NEEGY",
+ "marketCap": "140865.338811542088364795",
+ "price": "0.00017480552822796453",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": false,
+ "key": "sol--101:eYNHsZxBNAG8qbFGaNQZZ5zuRzRNU59VfqpZo9W43GM",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "CFPkPq1eYPR8GLzEo59wUbbMioX4bshaTQiSGzTSpump",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-CFPkPq1eYPR8GLzEo59wUbbMioX4bshaTQiSGzTSpump-1783005606586.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-CFPkPq1eYPR8GLzEo59wUbbMioX4bshaTQiSGzTSpump-1783005606586.png"
+ ],
+ "name": "The Black Table",
+ "symbol": "MENSA",
+ "marketCap": "541070.015238516625159128",
+ "price": "0.00054108642042014937",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": false,
+ "key": "sol--101:CFPkPq1eYPR8GLzEo59wUbbMioX4bshaTQiSGzTSpump",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "CzLSujWBLFsSjncfkh59rUFqvafWcY5tzedWJSuypump",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-CzLSujWBLFsSjncfkh59rUFqvafWcY5tzedWJSuypump-1758104099246.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-CzLSujWBLFsSjncfkh59rUFqvafWcY5tzedWJSuypump-1758104099246.png"
+ ],
+ "name": "Goatseus Maximus",
+ "symbol": "GOAT",
+ "marketCap": "16269788.2523932984888182",
+ "price": "0.01627013028",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": true,
+ "key": "sol--101:CzLSujWBLFsSjncfkh59rUFqvafWcY5tzedWJSuypump",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "XsoBhf2ufR8fTyNSjqfU71DYGaE6Z3SUGAidpzriAA4",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-XsoBhf2ufR8fTyNSjqfU71DYGaE6Z3SUGAidpzriAA4-1758110751941.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-XsoBhf2ufR8fTyNSjqfU71DYGaE6Z3SUGAidpzriAA4-1758110751941.png"
+ ],
+ "name": "Palantir xStock",
+ "symbol": "PLTRx",
+ "marketCap": "2094268.508783606618086425",
+ "price": "174.78809456158453628937",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 xStock 代币化发行",
+ "subtitle": "帕兰提尔",
+ "source": "xstock",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/xstock.png",
+ "isOpen": true
+ },
+ "key": "sol--101:XsoBhf2ufR8fTyNSjqfU71DYGaE6Z3SUGAidpzriAA4",
+ "kind": "stock",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "SV151D5pjygAKA8aJJcKzm4wFnRX5G92Fye94jQJk7g",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-SV151D5pjygAKA8aJJcKzm4wFnRX5G92Fye94jQJk7g-1780758501370.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-SV151D5pjygAKA8aJJcKzm4wFnRX5G92Fye94jQJk7g-1780758501370.png"
+ ],
+ "name": "Scarlet & Violet 151",
+ "symbol": "SV151",
+ "marketCap": "519370.167398984738736426",
+ "price": "0.51951531193556202131",
+ "priceChange24hPercent": "21.32",
+ "volume24h": "978009.34902915672",
+ "communityRecognized": true,
+ "key": "sol--101:SV151D5pjygAKA8aJJcKzm4wFnRX5G92Fye94jQJk7g",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "Grass7B4RdKfBCjTKgSqnXkqjwiGvQyFbuSCUJr3XXjs",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-Grass7B4RdKfBCjTKgSqnXkqjwiGvQyFbuSCUJr3XXjs-1758104080638.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-Grass7B4RdKfBCjTKgSqnXkqjwiGvQyFbuSCUJr3XXjs-1758104080638.png"
+ ],
+ "name": "Grass",
+ "symbol": "GRASS",
+ "marketCap": "83861359.777738400910745264",
+ "price": "0.34382783661427715304",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": true,
+ "key": "sol--101:Grass7B4RdKfBCjTKgSqnXkqjwiGvQyFbuSCUJr3XXjs",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "6UpQcMAb5xMzxc7ZfPaVMgx3KqsvKZdT5U718BzD5We2",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-6UpQcMAb5xMzxc7ZfPaVMgx3KqsvKZdT5U718BzD5We2-1776527084186.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-6UpQcMAb5xMzxc7ZfPaVMgx3KqsvKZdT5U718BzD5We2-1776527084186.png"
+ ],
+ "name": "Wrapped XRP",
+ "symbol": "wXRP",
+ "marketCap": "1.110847047217613393",
+ "price": "1.6107282184655396619",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": true,
+ "key": "sol--101:6UpQcMAb5xMzxc7ZfPaVMgx3KqsvKZdT5U718BzD5We2",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "Ax5dAamJPeuaLpFUzs9FdcpoUhHDcxyjPzxCJQidjups",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/f95a47c5025540e39d7788ebf9f3511466b4ae8fcb8785968865e70e204ad7a8",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/f95a47c5025540e39d7788ebf9f3511466b4ae8fcb8785968865e70e204ad7a8"
+ ],
+ "name": "Minirouter.sh",
+ "symbol": "MINI",
+ "marketCap": "3600621.986623418221404783",
+ "price": "0.00360072868677601077",
+ "priceChange24hPercent": "314.63",
+ "volume24h": "3390539.7770761407",
+ "communityRecognized": false,
+ "key": "sol--101:Ax5dAamJPeuaLpFUzs9FdcpoUhHDcxyjPzxCJQidjups",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "9Pfync3ejPC9eHqVzq3nYQJAhyhjqpnB9UsaSfLxpump",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-9Pfync3ejPC9eHqVzq3nYQJAhyhjqpnB9UsaSfLxpump-1783523508946.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-9Pfync3ejPC9eHqVzq3nYQJAhyhjqpnB9UsaSfLxpump-1783523508946.png"
+ ],
+ "name": "KET",
+ "symbol": "KET",
+ "marketCap": "4577890.825967480937379315",
+ "price": "0.00457795342625807662",
+ "priceChange24hPercent": "28.19",
+ "volume24h": "349524.9398838251",
+ "communityRecognized": true,
+ "key": "sol--101:9Pfync3ejPC9eHqVzq3nYQJAhyhjqpnB9UsaSfLxpump",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "CGEDT9QZDvvH5GmVkWJH2BXiMJqMJySC9ihWyr7Spump",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-CGEDT9QZDvvH5GmVkWJH2BXiMJqMJySC9ihWyr7Spump-1775315205686.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-CGEDT9QZDvvH5GmVkWJH2BXiMJqMJySC9ihWyr7Spump-1775315205686.png"
+ ],
+ "name": "Burnie Senders",
+ "symbol": "BURNIE",
+ "marketCap": "2020186.857678477830863759",
+ "price": "0.00208340766292912291",
+ "priceChange24hPercent": "19.9",
+ "volume24h": "188869.7353699072",
+ "communityRecognized": true,
+ "key": "sol--101:CGEDT9QZDvvH5GmVkWJH2BXiMJqMJySC9ihWyr7Spump",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "TcnKFgDZc6RhAz83JHHbWeZ5wLc2at8iHK6FhsxkTLh",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/659a26dcb16b02312c48826ba8551dc34d13858cff2c00998dbbbb8ef2aab7dd",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/659a26dcb16b02312c48826ba8551dc34d13858cff2c00998dbbbb8ef2aab7dd"
+ ],
+ "name": "Lucia",
+ "symbol": "Lucia",
+ "marketCap": "162909.72264866850184861",
+ "price": "0.00016896152593551026",
+ "priceChange24hPercent": "290.96",
+ "volume24h": "185354.21063484473",
+ "communityRecognized": false,
+ "key": "sol--101:TcnKFgDZc6RhAz83JHHbWeZ5wLc2at8iHK6FhsxkTLh",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "XspzcW1PRtgf6Wj92HCiZdjzKCyFekVD8P5Ueh3dRMX",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-XspzcW1PRtgf6Wj92HCiZdjzKCyFekVD8P5Ueh3dRMX-1758110751941.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-XspzcW1PRtgf6Wj92HCiZdjzKCyFekVD8P5Ueh3dRMX-1758110751941.png"
+ ],
+ "name": "Microsoft xStock",
+ "symbol": "MSFTx",
+ "marketCap": "6926994.726502364733218675",
+ "price": "498.69427200083177370255",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 xStock 代币化发行",
+ "subtitle": "微软",
+ "source": "xstock",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/xstock.png",
+ "isOpen": true
+ },
+ "key": "sol--101:XspzcW1PRtgf6Wj92HCiZdjzKCyFekVD8P5Ueh3dRMX",
+ "kind": "stock",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "SKHYhSjuRWHgikq8eRKbtBbpABgJSkd7ytQV14i9EQ3",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-SKHYhSjuRWHgikq8eRKbtBbpABgJSkd7ytQV14i9EQ3-1783698573353.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-SKHYhSjuRWHgikq8eRKbtBbpABgJSkd7ytQV14i9EQ3-1783698573353.png"
+ ],
+ "name": "SK Hynix - Backpack Securities",
+ "symbol": "SKHY",
+ "marketCap": "2065.580252752758823912",
+ "price": "187.91028051244970984667",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": false,
+ "key": "sol--101:SKHYhSjuRWHgikq8eRKbtBbpABgJSkd7ytQV14i9EQ3",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "FjhTgMeDgSE2bfo9nHsPtvZanJrDGtVye78a1garpump",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/43903a6e42d7da26082fe1fced6cc266194b4a4cedb8b310198a4a44fae28a07",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/43903a6e42d7da26082fe1fced6cc266194b4a4cedb8b310198a4a44fae28a07"
+ ],
+ "name": "Artificial Giga Inu",
+ "symbol": "AGI",
+ "marketCap": "1452965.581715249728851349",
+ "price": "0.00146282233028788114",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": false,
+ "key": "sol--101:FjhTgMeDgSE2bfo9nHsPtvZanJrDGtVye78a1garpump",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "CASHx9KJUStyftLFWGvEVf59SGeG9sh5FfcnZMVPCASH",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-CASHx9KJUStyftLFWGvEVf59SGeG9sh5FfcnZMVPCASH-1760025966243.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-CASHx9KJUStyftLFWGvEVf59SGeG9sh5FfcnZMVPCASH-1760025966243.png"
+ ],
+ "name": "CASH",
+ "symbol": "CASH",
+ "marketCap": "124711689.400422448651148305",
+ "price": "0.99988837741113158728",
+ "priceChange24hPercent": "0",
+ "volume24h": "11354558.40892419169",
+ "communityRecognized": true,
+ "key": "sol--101:CASHx9KJUStyftLFWGvEVf59SGeG9sh5FfcnZMVPCASH",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "5dRHKSymMTTx64YmtdjDqeqt2PPt5MTaTSthToDD94NW",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/1a2da5d48d30a9336100644de066d872b690565bed9fa2f99938fd2ba1428672",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/1a2da5d48d30a9336100644de066d872b690565bed9fa2f99938fd2ba1428672"
+ ],
+ "name": "PONZI",
+ "symbol": "PONZI",
+ "marketCap": "330064.340635341267361856",
+ "price": "0.00033006436926540323",
+ "priceChange24hPercent": "8420.24",
+ "volume24h": "640745.754025529614388169",
+ "communityRecognized": false,
+ "key": "sol--101:5dRHKSymMTTx64YmtdjDqeqt2PPt5MTaTSthToDD94NW",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "ELYfhvSgsdkLvhG9b6ZByrzgwPebegbdX9rLBNH2VNRp",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/f7d427c3a6e0b3049fdf2d54572fa74778a6370c34a63b2cc5de86b8373796a9",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/f7d427c3a6e0b3049fdf2d54572fa74778a6370c34a63b2cc5de86b8373796a9"
+ ],
+ "name": "Pump Cat Coin",
+ "symbol": "PUMPCAT",
+ "marketCap": "171253.544568353382528792",
+ "price": "0.00017125695114007278",
+ "priceChange24hPercent": "1253.13",
+ "volume24h": "2584632.058518308852932757",
+ "communityRecognized": false,
+ "key": "sol--101:ELYfhvSgsdkLvhG9b6ZByrzgwPebegbdX9rLBNH2VNRp",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "7HgfXftRBBqsYtAEYcqjGLQrNJLL6Tww9ek4rE3Apump",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-7HgfXftRBBqsYtAEYcqjGLQrNJLL6Tww9ek4rE3Apump-1778599302397.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-7HgfXftRBBqsYtAEYcqjGLQrNJLL6Tww9ek4rE3Apump-1778599302397.png"
+ ],
+ "name": "Red Kitten Crew",
+ "symbol": "RKC",
+ "marketCap": "1497618.816375190732820852",
+ "price": "0.00158860596795566837",
+ "priceChange24hPercent": "34.74",
+ "volume24h": "121549.79215955782",
+ "communityRecognized": true,
+ "key": "sol--101:7HgfXftRBBqsYtAEYcqjGLQrNJLL6Tww9ek4rE3Apump",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "9RS8C1Tfa3tvG8Wv5cXqfFwcGrFBdzxrkhnjMA6qb6iy",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/2d67baf884600a3e110172cd7ada0c32c57ee1b7680d370e866503cb671f4fca",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/2d67baf884600a3e110172cd7ada0c32c57ee1b7680d370e866503cb671f4fca"
+ ],
+ "name": "Fridge Cigs",
+ "symbol": "CIGS",
+ "marketCap": "52952.221343573536660461",
+ "price": "0.00005295295919677196",
+ "priceChange24hPercent": "-67.42",
+ "volume24h": "160454.379296508361569305",
+ "communityRecognized": false,
+ "key": "sol--101:9RS8C1Tfa3tvG8Wv5cXqfFwcGrFBdzxrkhnjMA6qb6iy",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "EXinYuNbxamDtbpkqR6RQJ9XWgUb5y2rCBMkAWxEazYt",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/a7a81db4476e0a4f0a25f9857418491edc1126c6965b3f855e4803531d5b6e08",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/a7a81db4476e0a4f0a25f9857418491edc1126c6965b3f855e4803531d5b6e08"
+ ],
+ "name": "Sock and pussy 500",
+ "symbol": "SNP500",
+ "marketCap": "104276.515182582737542743",
+ "price": "0.00010427726895958675",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": false,
+ "key": "sol--101:EXinYuNbxamDtbpkqR6RQJ9XWgUb5y2rCBMkAWxEazYt",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "6oHYDbrWRRtBhLTLLibJmPXfek9dGzdCgzfDB4xYpump",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/f6aa7ec428c9954c3b2221c4b73a04c76d5946f84cffbee4acc34fd6968ba488",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/f6aa7ec428c9954c3b2221c4b73a04c76d5946f84cffbee4acc34fd6968ba488"
+ ],
+ "name": "Kestrel Browser",
+ "symbol": "KESTREL",
+ "marketCap": "76617.484540006393216051",
+ "price": "0.00007942793618784602",
+ "priceChange24hPercent": "1099.34",
+ "volume24h": "141019.87180678394",
+ "communityRecognized": false,
+ "key": "sol--101:6oHYDbrWRRtBhLTLLibJmPXfek9dGzdCgzfDB4xYpump",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "DSHAT67JxMPmQzBxzNcUHgnPqMaAYAFqA4nHFyVopump",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/2f3af7bb41cab1208dc50813a26c53fcbf48e174f87f3a410a490b541771a7c3",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/2f3af7bb41cab1208dc50813a26c53fcbf48e174f87f3a410a490b541771a7c3"
+ ],
+ "name": "liquidkitty",
+ "symbol": "liquidkitty",
+ "marketCap": "10884.412790704624140349",
+ "price": "0.00001130864924270607",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": false,
+ "key": "sol--101:DSHAT67JxMPmQzBxzNcUHgnPqMaAYAFqA4nHFyVopump",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "ARBzQTYDCW2KnVEjs1Mc81LekB1ibVFZKbSVmorkoT9d",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/2724ff5119340a7a7472dab58c4a327569c5eef7931dc55d5203e5db094fd864",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/2724ff5119340a7a7472dab58c4a327569c5eef7931dc55d5203e5db094fd864"
+ ],
+ "name": "Arbitrum",
+ "symbol": "ARB",
+ "marketCap": "195065.143011022580130961",
+ "price": "0.1703764890686246388",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": true,
+ "key": "sol--101:ARBzQTYDCW2KnVEjs1Mc81LekB1ibVFZKbSVmorkoT9d",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "DVxaAXi3L2NMgqpBqYmuVJkSK4bVJ1JgjvTmQgTpump",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/bb537c80e3a09221aaddd0a58d5ea051a046dc222efdddac962bb70258799b8f",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/bb537c80e3a09221aaddd0a58d5ea051a046dc222efdddac962bb70258799b8f"
+ ],
+ "name": "NO VALUE",
+ "symbol": "NOVALUE",
+ "marketCap": "2860397.67584547564781245",
+ "price": "0.00288817224787105804",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": false,
+ "key": "sol--101:DVxaAXi3L2NMgqpBqYmuVJkSK4bVJ1JgjvTmQgTpump",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "6NwarBvDkXhByqVp2Qkq5i9XbtA2B3Bwe8SWGu9vpump",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-6NwarBvDkXhByqVp2Qkq5i9XbtA2B3Bwe8SWGu9vpump-1769095360806.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-6NwarBvDkXhByqVp2Qkq5i9XbtA2B3Bwe8SWGu9vpump-1769095360806.png"
+ ],
+ "name": "Cupsey",
+ "symbol": "Cupsey",
+ "marketCap": "8390785.419706750647263133",
+ "price": "0.00839442236586014876",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": true,
+ "key": "sol--101:6NwarBvDkXhByqVp2Qkq5i9XbtA2B3Bwe8SWGu9vpump",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "8U2tRCQZunwjEnEEtLtoKBSnmYPJ7nBodkg6pmqUdcca",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/49b477889b50b2cb277961a270ba2daa5c3b3db9f0c00c3a6c94a90c6fcb891f",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/49b477889b50b2cb277961a270ba2daa5c3b3db9f0c00c3a6c94a90c6fcb891f"
+ ],
+ "name": "Solana & Poors 500",
+ "symbol": "SP500",
+ "marketCap": "63428.500353708866371623",
+ "price": "0.00006557519734568891",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": false,
+ "key": "sol--101:8U2tRCQZunwjEnEEtLtoKBSnmYPJ7nBodkg6pmqUdcca",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "EKpQGSJtjMFqKZ9KQanSqYXRcF8fBopzLHYxdM65zcjm",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-EKpQGSJtjMFqKZ9KQanSqYXRcF8fBopzLHYxdM65zcjm-1758104080638.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-EKpQGSJtjMFqKZ9KQanSqYXRcF8fBopzLHYxdM65zcjm-1758104080638.png"
+ ],
+ "name": "dogwifhat",
+ "symbol": "$WIF",
+ "marketCap": "216833607.666638232419931363",
+ "price": "0.21708569534948936821",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": true,
+ "key": "sol--101:EKpQGSJtjMFqKZ9KQanSqYXRcF8fBopzLHYxdM65zcjm",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "PreANxuXjsy2pvisWWMNB6YaJNzr7681wJJr2rHsfTh",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-PreANxuXjsy2pvisWWMNB6YaJNzr7681wJJr2rHsfTh-1760026347869.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-PreANxuXjsy2pvisWWMNB6YaJNzr7681wJJr2rHsfTh-1760026347869.png"
+ ],
+ "name": "SpaceX PreStocks",
+ "symbol": "SPACEX",
+ "marketCap": "1029589.244565884652461681",
+ "price": "117.76798757161917905495",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": true,
+ "key": "sol--101:PreANxuXjsy2pvisWWMNB6YaJNzr7681wJJr2rHsfTh",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "6zTgfUFjBAVywkEbXc4e1mFysNy4T4wJt7HCFiyXpump",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/5d476d89411bbda2e8c84d707142c419990a2ac1922a60d486960e25ab52d369",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/5d476d89411bbda2e8c84d707142c419990a2ac1922a60d486960e25ab52d369"
+ ],
+ "name": "Bitfart",
+ "symbol": "Bitfart",
+ "marketCap": "14269.702958484246645724",
+ "price": "0.00001524005920287354",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": false,
+ "key": "sol--101:6zTgfUFjBAVywkEbXc4e1mFysNy4T4wJt7HCFiyXpump",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "8sRhsJdypyMSuWpcehmtc2BWaNrDMJxWrd9z4smjpump",
+ "logoUrl": "https://static.oklink.com/cdn/web3/currency/token/large/501-8sRhsJdypyMSuWpcehmtc2BWaNrDMJxWrd9z4smjpump-109/type=default_90_0?v=1788801010584",
+ "logoUrls": [
+ "https://static.oklink.com/cdn/web3/currency/token/large/501-8sRhsJdypyMSuWpcehmtc2BWaNrDMJxWrd9z4smjpump-109/type=default_90_0?v=1788801010584"
+ ],
+ "name": "hoid",
+ "symbol": "hoid",
+ "marketCap": "23521.627006095499031297",
+ "price": "0.0000235216270060955",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": false,
+ "key": "sol--101:8sRhsJdypyMSuWpcehmtc2BWaNrDMJxWrd9z4smjpump",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "61KTwuGCkY6J5wb1GLNvUsWrYGnSfUJ1sNmAJ2X9pump",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/c88da8edbc87fb99168afa73ef80ab63b417d5f0f19842adb426c7346ebfb658",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/c88da8edbc87fb99168afa73ef80ab63b417d5f0f19842adb426c7346ebfb658"
+ ],
+ "name": "Hunter Bidet",
+ "symbol": "BIDET",
+ "marketCap": "43238.24850816225128366",
+ "price": "0.00004444999450327959",
+ "priceChange24hPercent": "1428.07",
+ "volume24h": "906198.70208959624",
+ "communityRecognized": false,
+ "key": "sol--101:61KTwuGCkY6J5wb1GLNvUsWrYGnSfUJ1sNmAJ2X9pump",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "J8PSdNP3QewKq2Z1JJJFDMaqF7KcaiJhR7gbr5KZpump",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-J8PSdNP3QewKq2Z1JJJFDMaqF7KcaiJhR7gbr5KZpump-1772550161045.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-J8PSdNP3QewKq2Z1JJJFDMaqF7KcaiJhR7gbr5KZpump-1772550161045.png"
+ ],
+ "name": "Tung Tung Tung Sahur",
+ "symbol": "TripleT",
+ "marketCap": "8727326.880191006330440166",
+ "price": "0.00872800295600030446",
+ "priceChange24hPercent": "-3.55",
+ "volume24h": "1135808.07330992581",
+ "communityRecognized": true,
+ "key": "sol--101:J8PSdNP3QewKq2Z1JJJFDMaqF7KcaiJhR7gbr5KZpump",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "8H5yfL1GoDETLDaLYZzrgQuZs37eiKJjdfP21b6ypump",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/b5fbc395b6856dcc010801fc6c05e304d7799076767bbca421854113a0e1007a",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/b5fbc395b6856dcc010801fc6c05e304d7799076767bbca421854113a0e1007a"
+ ],
+ "name": "SAAR",
+ "symbol": "SAAR",
+ "marketCap": "911420.909642611661368393",
+ "price": "0.00095726846229586004",
+ "priceChange24hPercent": "10.38",
+ "volume24h": "181155.61632296127",
+ "communityRecognized": false,
+ "key": "sol--101:8H5yfL1GoDETLDaLYZzrgQuZs37eiKJjdfP21b6ypump",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "5GefefPX1mDs6ZJB1apYmz6fCTCiNJpHturZ9bvFpump",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/aff58c35fc25bd05538eff881f8ebe2280d9e68e90e2a46c601cf71bbc71b7fd",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/aff58c35fc25bd05538eff881f8ebe2280d9e68e90e2a46c601cf71bbc71b7fd"
+ ],
+ "name": "Pumpoween",
+ "symbol": "Pumpoween",
+ "marketCap": "273726.125359578958990011",
+ "price": "0.00029114292614482808",
+ "priceChange24hPercent": "140.45",
+ "volume24h": "151154.11455812345",
+ "communityRecognized": false,
+ "key": "sol--101:5GefefPX1mDs6ZJB1apYmz6fCTCiNJpHturZ9bvFpump",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "3SXQSMVWTf6rZaJiXn3tHNpNEKLeTK1FShFR3s4fxSUR",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-3SXQSMVWTf6rZaJiXn3tHNpNEKLeTK1FShFR3s4fxSUR-1786122072043.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-3SXQSMVWTf6rZaJiXn3tHNpNEKLeTK1FShFR3s4fxSUR-1786122072043.png"
+ ],
+ "name": "ethics.ltd",
+ "symbol": "ETHICS",
+ "marketCap": "467403.848340582308606956",
+ "price": "0.00047216103413005763",
+ "priceChange24hPercent": "-47.89",
+ "volume24h": "284471.179437806310733999",
+ "communityRecognized": true,
+ "key": "sol--101:3SXQSMVWTf6rZaJiXn3tHNpNEKLeTK1FShFR3s4fxSUR",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "EHpaxqVVjyyPt2cjfft5SqTkfaEjCF7RUCaFxCrZpump",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/98b25149d158ea81c6ba2e37c4e6e08b641d6739e23308262bc9a6867d6ca9bb",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/98b25149d158ea81c6ba2e37c4e6e08b641d6739e23308262bc9a6867d6ca9bb"
+ ],
+ "name": "WHEEL SMITH",
+ "symbol": "wheelsmith",
+ "marketCap": "65507.631500401091565847",
+ "price": "0.00006697080311158935",
+ "priceChange24hPercent": "88.73",
+ "volume24h": "778056.29329107724",
+ "communityRecognized": false,
+ "key": "sol--101:EHpaxqVVjyyPt2cjfft5SqTkfaEjCF7RUCaFxCrZpump",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "ATaKBKZCAuiPoxq85UiCQc2uJcFrEfxVY6HLUF4FEi9C",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/55975bb305d14828fc7aa821e1219b10cff63c8dd9f62e09a57707708449f2c8",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/55975bb305d14828fc7aa821e1219b10cff63c8dd9f62e09a57707708449f2c8"
+ ],
+ "name": "Just a Stonk Guy",
+ "symbol": "STONKGUY",
+ "marketCap": "274791.265676792347573236",
+ "price": "0.00027479155554589125",
+ "priceChange24hPercent": "8857.92",
+ "volume24h": "720119.020236050033425722",
+ "communityRecognized": false,
+ "key": "sol--101:ATaKBKZCAuiPoxq85UiCQc2uJcFrEfxVY6HLUF4FEi9C",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "CB1YQfUzgsnaCd93cZLdiX1uASW7utWBaYMUsvcwNUBV",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/099870e2b6d87a6011107891ae76bd483fd6553ca9a6eff9e51ec305e6de1924",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/099870e2b6d87a6011107891ae76bd483fd6553ca9a6eff9e51ec305e6de1924"
+ ],
+ "name": "loom",
+ "symbol": "LOOM",
+ "marketCap": "754258.116789264469801056",
+ "price": "0.00077760395183491932",
+ "priceChange24hPercent": "-57.03",
+ "volume24h": "1504327.57550419181",
+ "communityRecognized": false,
+ "key": "sol--101:CB1YQfUzgsnaCd93cZLdiX1uASW7utWBaYMUsvcwNUBV",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "Cwo8S7E1Gbz7vFAysTENW9h8rKepQc9sdRprtmHUR6Nf",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/2a3bd5f1d4419f48ac04f7414732839471a626f88fbc593d475448b1bb440328",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/2a3bd5f1d4419f48ac04f7414732839471a626f88fbc593d475448b1bb440328"
+ ],
+ "name": "Anthropig",
+ "symbol": "Anthropig",
+ "marketCap": "39597.817175606431345428",
+ "price": "0.00004061801465962368",
+ "priceChange24hPercent": "1126.51",
+ "volume24h": "1597139.79721371688",
+ "communityRecognized": false,
+ "key": "sol--101:Cwo8S7E1Gbz7vFAysTENW9h8rKepQc9sdRprtmHUR6Nf",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "9i3NFMa9pqR3suCUhyX3nQE1dy6i5wXafDtppUxYpump",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/4ad7324e6543af740da38ed18307b9bdd15b0ea5c884b97408f73c1ad9869c7e",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/4ad7324e6543af740da38ed18307b9bdd15b0ea5c884b97408f73c1ad9869c7e"
+ ],
+ "name": "Catcoin",
+ "symbol": "CATCOIN",
+ "marketCap": "3719525.083378437358609863",
+ "price": "0.00372161941456153807",
+ "priceChange24hPercent": "32831.24",
+ "volume24h": "499734.90487009407",
+ "communityRecognized": false,
+ "key": "sol--101:9i3NFMa9pqR3suCUhyX3nQE1dy6i5wXafDtppUxYpump",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "Xsa62P5mvPszXL1krVUnU5ar38bBSVcWAB6fmPCo5Zu",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-Xsa62P5mvPszXL1krVUnU5ar38bBSVcWAB6fmPCo5Zu-1758104565242.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-Xsa62P5mvPszXL1krVUnU5ar38bBSVcWAB6fmPCo5Zu-1758104565242.png"
+ ],
+ "name": "Meta xStock",
+ "symbol": "METAx",
+ "marketCap": "9426835.040910042921584587",
+ "price": "613.0954425",
+ "priceChange24hPercent": "-0.28",
+ "volume24h": "398011.860590758843178399",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 xStock 代币化发行",
+ "subtitle": "Meta",
+ "source": "xstock",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/xstock.png",
+ "isOpen": true
+ },
+ "key": "sol--101:Xsa62P5mvPszXL1krVUnU5ar38bBSVcWAB6fmPCo5Zu",
+ "kind": "stock",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "J6HiEgR1Tvf6uTbz7kvMLtVWNypkhkwdsMBoRKLz4WQs",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/c8feff0e0bc8364e324ff76aae466a96461529d01162e3ef4769e9599c950989",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/c8feff0e0bc8364e324ff76aae466a96461529d01162e3ef4769e9599c950989"
+ ],
+ "name": "On The Computer",
+ "symbol": "OTC",
+ "marketCap": "23982.277081660736184677",
+ "price": "0.00002563081863626552",
+ "priceChange24hPercent": "576.42",
+ "volume24h": "1054672.69245094955",
+ "communityRecognized": false,
+ "key": "sol--101:J6HiEgR1Tvf6uTbz7kvMLtVWNypkhkwdsMBoRKLz4WQs",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "CzWAZ8yV9jX6CocTFtmhExwCzhXX8mCH6fjm7YN4ZHdP",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/3d2b95ea6ba5ad8ca1e65a1666a594e775546cbc923ff2def12179e71152ffd0",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/3d2b95ea6ba5ad8ca1e65a1666a594e775546cbc923ff2def12179e71152ffd0"
+ ],
+ "name": "OPTIMUS",
+ "symbol": "OPTIMUS",
+ "marketCap": "181245.346936341502021697",
+ "price": "0.00018685188941703919",
+ "priceChange24hPercent": "187.14",
+ "volume24h": "155614.86752077280524838",
+ "communityRecognized": false,
+ "key": "sol--101:CzWAZ8yV9jX6CocTFtmhExwCzhXX8mCH6fjm7YN4ZHdP",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "GfWLeKfJcvcUMLCJb46NgXXCda7AWm7TMaUWJaZV8jMQ",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/1ff00b6a93d20449b02790e470ee6d49fcbcfd8cd8130bb9120586f954a7642a",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/1ff00b6a93d20449b02790e470ee6d49fcbcfd8cd8130bb9120586f954a7642a"
+ ],
+ "name": "Mag 5 Index",
+ "symbol": "MAG5",
+ "marketCap": "30271.192613958249854331",
+ "price": "0.00003027146409098735",
+ "priceChange24hPercent": "399.27",
+ "volume24h": "189927.93238687872",
+ "communityRecognized": false,
+ "key": "sol--101:GfWLeKfJcvcUMLCJb46NgXXCda7AWm7TMaUWJaZV8jMQ",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "HxQhDGYqyjorgogMJx7YbBHADEDxuHhLnMMmr6VYpyn",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-HxQhDGYqyjorgogMJx7YbBHADEDxuHhLnMMmr6VYpyn-1786035695378.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-HxQhDGYqyjorgogMJx7YbBHADEDxuHhLnMMmr6VYpyn-1786035695378.png"
+ ],
+ "name": "MANLET",
+ "symbol": "MANLET",
+ "marketCap": "915073.412935451519543334",
+ "price": "0.00092450949575228083",
+ "priceChange24hPercent": "-20.88",
+ "volume24h": "468730.792560654631805035",
+ "communityRecognized": true,
+ "key": "sol--101:HxQhDGYqyjorgogMJx7YbBHADEDxuHhLnMMmr6VYpyn",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "847y1VzYhvdx1XdYohCw5q4XVJsdqegjMkp8LGsf4J2x",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/58ad81b616bd69cbc1a1d9541e53f328154fb4a9357fb58476d6bcab1fc57867",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/58ad81b616bd69cbc1a1d9541e53f328154fb4a9357fb58476d6bcab1fc57867"
+ ],
+ "name": "Titcoin",
+ "symbol": "TITCOIN",
+ "marketCap": "77820.589340306112406574",
+ "price": "0.00007782059408739309",
+ "priceChange24hPercent": "2229.21",
+ "volume24h": "490958.756668828949379034",
+ "communityRecognized": false,
+ "key": "sol--101:847y1VzYhvdx1XdYohCw5q4XVJsdqegjMkp8LGsf4J2x",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "ab8kEtgU9AqnJXv66jAHvhdJvHj5DDMNjdJsckupump",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/e5fb48d54702b49bd31d0551378667606ad6bb5e4e33b94fc32179b14469f2d0",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/e5fb48d54702b49bd31d0551378667606ad6bb5e4e33b94fc32179b14469f2d0"
+ ],
+ "name": "Venezuela Oil Fund",
+ "symbol": "VOF",
+ "marketCap": "4651347.237020453619675486",
+ "price": "0.00465448221177504491",
+ "priceChange24hPercent": "39.08",
+ "volume24h": "212306.68666724079",
+ "communityRecognized": false,
+ "key": "sol--101:ab8kEtgU9AqnJXv66jAHvhdJvHj5DDMNjdJsckupump",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "3GXtoGmXaZHYEASkeDxejdrSWpeqqRWxCdzUVAagpump",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/7516fab2e1c15c5fbb5c14d0b66189313ecae6c94975b399af6484b48ba9d9e7",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/7516fab2e1c15c5fbb5c14d0b66189313ecae6c94975b399af6484b48ba9d9e7"
+ ],
+ "name": "Pump Cat",
+ "symbol": "PUMPCAT",
+ "marketCap": "11318.269046546040280381",
+ "price": "0.00001181335742387887",
+ "priceChange24hPercent": "295.41",
+ "volume24h": "1136273.34534778367",
+ "communityRecognized": false,
+ "key": "sol--101:3GXtoGmXaZHYEASkeDxejdrSWpeqqRWxCdzUVAagpump",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "9mEW4vsVNyHuDZHp5SfYNtGWC8o7HEbNt6fbXP4ypump",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/8356346777831140edc501f7c039ec2abceb49e4ee845cb86f3053a51d691863",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/8356346777831140edc501f7c039ec2abceb49e4ee845cb86f3053a51d691863"
+ ],
+ "name": "AiBSURD",
+ "symbol": "AiBSURD",
+ "marketCap": "32619.128696296840615794",
+ "price": "0.00003307922276695176",
+ "priceChange24hPercent": "951.67",
+ "volume24h": "504042.20755370503",
+ "communityRecognized": false,
+ "key": "sol--101:9mEW4vsVNyHuDZHp5SfYNtGWC8o7HEbNt6fbXP4ypump",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "Cm6fNnMk7NfzStP9CZpsQA2v3jjzbcYGAxdJySmHpump",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-Cm6fNnMk7NfzStP9CZpsQA2v3jjzbcYGAxdJySmHpump-1768143840927.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-Cm6fNnMk7NfzStP9CZpsQA2v3jjzbcYGAxdJySmHpump-1768143840927.png"
+ ],
+ "name": "Buttcoin",
+ "symbol": "Buttcoin",
+ "marketCap": "11583372.822348437456589253",
+ "price": "0.01158403712129144678",
+ "priceChange24hPercent": "-1.16",
+ "volume24h": "559870.157955905419105583",
+ "communityRecognized": true,
+ "key": "sol--101:Cm6fNnMk7NfzStP9CZpsQA2v3jjzbcYGAxdJySmHpump",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "rxczFZFvzksquCazjtv9vtEBYW7q4SwiqXkzBcw8NFW",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/dc3415ed541cc40513c86e18cee499750bdd8d96ba538fe8c385312b09ea874f",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/dc3415ed541cc40513c86e18cee499750bdd8d96ba538fe8c385312b09ea874f"
+ ],
+ "name": "NFW",
+ "symbol": "NFW",
+ "marketCap": "3855150.074219889758772884",
+ "price": "0.00385515007421988976",
+ "priceChange24hPercent": "-78.03",
+ "volume24h": "987709.33076513445",
+ "communityRecognized": false,
+ "key": "sol--101:rxczFZFvzksquCazjtv9vtEBYW7q4SwiqXkzBcw8NFW",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "9zwhS3b1oYuUEqWNpu2SPkEH24JMVWFEVQvHuYXZpump",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-9zwhS3b1oYuUEqWNpu2SPkEH24JMVWFEVQvHuYXZpump-1780672047801.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-9zwhS3b1oYuUEqWNpu2SPkEH24JMVWFEVQvHuYXZpump-1780672047801.png"
+ ],
+ "name": "Hunter Biden 2028",
+ "symbol": "HUNTER",
+ "marketCap": "54334.717991925665202019",
+ "price": "0.00005436571502201121",
+ "priceChange24hPercent": "88.85",
+ "volume24h": "122751.15153527124",
+ "communityRecognized": false,
+ "key": "sol--101:9zwhS3b1oYuUEqWNpu2SPkEH24JMVWFEVQvHuYXZpump",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "7ssJZGFT3twGqeYA1kvpoMWwZYvMZvrMEbjRaWgg46BL",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-7ssJZGFT3twGqeYA1kvpoMWwZYvMZvrMEbjRaWgg46BL-1786036266544.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-7ssJZGFT3twGqeYA1kvpoMWwZYvMZvrMEbjRaWgg46BL-1786036266544.png"
+ ],
+ "name": "BUTTHOLE",
+ "symbol": "BUTTHOLE",
+ "marketCap": "1639122.685232262327554182",
+ "price": "0.00166179685736310259",
+ "priceChange24hPercent": "-20.95",
+ "volume24h": "433739.86355773034",
+ "communityRecognized": false,
+ "key": "sol--101:7ssJZGFT3twGqeYA1kvpoMWwZYvMZvrMEbjRaWgg46BL",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "ACQxHBwfVEXLYcfVsPtJVuMQ55bJAPh883WD1by4c5Sa",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/f2658556712f7141a98dbf07e4c75864d9061ee99e4bdca12fb540264b6c32fb",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/f2658556712f7141a98dbf07e4c75864d9061ee99e4bdca12fb540264b6c32fb"
+ ],
+ "name": "haMSTR",
+ "symbol": "haMSTR",
+ "marketCap": "13099.031501152460438166",
+ "price": "0.00001347756414243774",
+ "priceChange24hPercent": "338.4",
+ "volume24h": "665767.43823003477",
+ "communityRecognized": false,
+ "key": "sol--101:ACQxHBwfVEXLYcfVsPtJVuMQ55bJAPh883WD1by4c5Sa",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "BoTx8y9ynfdxf5ZjWtCoBVkff52qKA82ysaLU8ZM6d8T",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-BoTx8y9ynfdxf5ZjWtCoBVkff52qKA82ysaLU8ZM6d8T-1782929032590.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-BoTx8y9ynfdxf5ZjWtCoBVkff52qKA82ysaLU8ZM6d8T-1782929032590.png"
+ ],
+ "name": "RoboStrategy - Backpack Securities",
+ "symbol": "BOT",
+ "marketCap": "1486389.773982698285439982",
+ "price": "27.46903610679901051808",
+ "priceChange24hPercent": "0.81",
+ "volume24h": "872807.600112146001844867",
+ "communityRecognized": false,
+ "key": "sol--101:BoTx8y9ynfdxf5ZjWtCoBVkff52qKA82ysaLU8ZM6d8T",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "GvUCjmWSXA5hrTh9smmNA1AU55YCtP9mDLQcrKA1pump",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-GvUCjmWSXA5hrTh9smmNA1AU55YCtP9mDLQcrKA1pump-1781881725076.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-GvUCjmWSXA5hrTh9smmNA1AU55YCtP9mDLQcrKA1pump-1781881725076.png"
+ ],
+ "name": "WSOP Fantasy Poker",
+ "symbol": "WSOLP",
+ "marketCap": "1468124.185678349887621297",
+ "price": "0.00146813205240955774",
+ "priceChange24hPercent": "-7.83",
+ "volume24h": "111819.71098367997",
+ "communityRecognized": false,
+ "key": "sol--101:GvUCjmWSXA5hrTh9smmNA1AU55YCtP9mDLQcrKA1pump",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "7XQrAYjRJgB1YiwQo9Tv7eQYi96YhNPuKjoT2U14SMET",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/e94d90a7abdd8ac9799fd3a26c9611b313b1fe79558f59aea1f58eea67271804",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/e94d90a7abdd8ac9799fd3a26c9611b313b1fe79558f59aea1f58eea67271804"
+ ],
+ "name": "Doppler Finance",
+ "symbol": "XDP",
+ "marketCap": "150151.141833657634537665",
+ "price": "0.00000150152825035785",
+ "priceChange24hPercent": "245.55",
+ "volume24h": "21339196.24447381449",
+ "communityRecognized": false,
+ "key": "sol--101:7XQrAYjRJgB1YiwQo9Tv7eQYi96YhNPuKjoT2U14SMET",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "7GCihgDB8fe6KNjn2MYtkzZcRjQy3t9GHdC8uHYmW2hr",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-7GCihgDB8fe6KNjn2MYtkzZcRjQy3t9GHdC8uHYmW2hr-1758104099246.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-7GCihgDB8fe6KNjn2MYtkzZcRjQy3t9GHdC8uHYmW2hr-1758104099246.png"
+ ],
+ "name": "POPCAT",
+ "symbol": "POPCAT",
+ "marketCap": "50641526.563133126841381659",
+ "price": "0.05167841729029785272",
+ "priceChange24hPercent": "-1.38",
+ "volume24h": "352512.937030591568935101",
+ "communityRecognized": true,
+ "key": "sol--101:7GCihgDB8fe6KNjn2MYtkzZcRjQy3t9GHdC8uHYmW2hr",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "F8D7kqXEUmheGHefRm1WRReTVSUVQhxL9xfCrrfavCwv",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/7bdfce133c05b8599238ce31d91b954dade60af1d9018fcec2454137d7516fa9",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/7bdfce133c05b8599238ce31d91b954dade60af1d9018fcec2454137d7516fa9"
+ ],
+ "name": "CTO",
+ "symbol": "CTO",
+ "marketCap": "88125.438772778455077232",
+ "price": "0.00009104173877284684",
+ "priceChange24hPercent": "231.09",
+ "volume24h": "612369.06556674673",
+ "communityRecognized": false,
+ "key": "sol--101:F8D7kqXEUmheGHefRm1WRReTVSUVQhxL9xfCrrfavCwv",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "EjAuFtMEP6LQDgLb11JU9bkcskhFYbgd9Q5NRXJppump",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-EjAuFtMEP6LQDgLb11JU9bkcskhFYbgd9Q5NRXJppump-1787591130935.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-EjAuFtMEP6LQDgLb11JU9bkcskhFYbgd9Q5NRXJppump-1787591130935.png"
+ ],
+ "name": "Caesar",
+ "symbol": "Doge2",
+ "marketCap": "94471.355175519001072393",
+ "price": "0.00009804032897504935",
+ "priceChange24hPercent": "31.95",
+ "volume24h": "137682.06891461013",
+ "communityRecognized": false,
+ "key": "sol--101:EjAuFtMEP6LQDgLb11JU9bkcskhFYbgd9Q5NRXJppump",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0xd34a99bc0f67ae1bbd63c660e6d0b0dd03e263b7",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xd34a99bc0f67ae1bbd63c660e6d0b0dd03e263b7-1770962526134.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xd34a99bc0f67ae1bbd63c660e6d0b0dd03e263b7-1770962526134.png"
+ ],
+ "name": "Identity.md",
+ "symbol": "IMD",
+ "marketCap": "10216589.496199146544369432",
+ "price": "3.054251265524185482",
+ "priceChange24hPercent": "19.09",
+ "volume24h": "547691.031158291899731209",
+ "communityRecognized": false,
+ "key": "evm--1:0xd34a99bc0f67ae1bbd63c660e6d0b0dd03e263b7",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0xa0b73e1ff0b80914ab6fe0444e65848c4c34450b",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xa0b73e1ff0b80914ab6fe0444e65848c4c34450b.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xa0b73e1ff0b80914ab6fe0444e65848c4c34450b.png"
+ ],
+ "name": "Cronos",
+ "symbol": "CRO",
+ "marketCap": "5736203223.882101211438214997",
+ "price": "0.05736203223939463244",
+ "priceChange24hPercent": "-0.16",
+ "volume24h": "12395.8297691498531395",
+ "communityRecognized": true,
+ "key": "evm--1:0xa0b73e1ff0b80914ab6fe0444e65848c4c34450b",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x232ce3bd40fcd6f80f3d55a522d03f25df784ee2",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x232ce3bd40fcd6f80f3d55a522d03f25df784ee2-1783322585018.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x232ce3bd40fcd6f80f3d55a522d03f25df784ee2-1783322585018.png"
+ ],
+ "name": "Lighter",
+ "symbol": "LIT",
+ "marketCap": "1160662782.276054865654467756",
+ "price": "4.64265112910421946262",
+ "priceChange24hPercent": "5.45",
+ "volume24h": "754534.006970420231594703",
+ "communityRecognized": true,
+ "key": "evm--1:0x232ce3bd40fcd6f80f3d55a522d03f25df784ee2",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x32708538a107253b51a735a724330a23106ca4ca",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x32708538a107253b51a735a724330a23106ca4ca-1781071464068.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x32708538a107253b51a735a724330a23106ca4ca-1781071464068.png"
+ ],
+ "name": "01",
+ "symbol": "01",
+ "marketCap": "7591728.1926915093572302",
+ "price": "0.38303103971521914096",
+ "priceChange24hPercent": "-4.52",
+ "volume24h": "177566.4915405247242582",
+ "communityRecognized": false,
+ "key": "evm--1:0x32708538a107253b51a735a724330a23106ca4ca",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x514910771af9ca656af840dff83e8264ecf986ca",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x514910771af9ca656af840dff83e8264ecf986ca.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x514910771af9ca656af840dff83e8264ecf986ca.png"
+ ],
+ "name": "ChainLink Token",
+ "symbol": "LINK",
+ "marketCap": "12595838798.640615720251183561",
+ "price": "12.59583966012281479998",
+ "priceChange24hPercent": "-3.84",
+ "volume24h": "5797829.926845522118085494",
+ "communityRecognized": true,
+ "key": "evm--1:0x514910771af9ca656af840dff83e8264ecf986ca",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x1f9840a85d5af5bf1d1762f925bdaddc4201f984",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x1f9840a85d5af5bf1d1762f925bdaddc4201f984.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x1f9840a85d5af5bf1d1762f925bdaddc4201f984.png"
+ ],
+ "name": "Uniswap",
+ "symbol": "UNI",
+ "marketCap": "6982667914.809130319494285264",
+ "price": "6.98270981484155235271",
+ "priceChange24hPercent": "-0.5",
+ "volume24h": "11477372.282655130951397008",
+ "communityRecognized": true,
+ "key": "evm--1:0x1f9840a85d5af5bf1d1762f925bdaddc4201f984",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x0d8775f648430679a709e98d2b0cb6250d2887ef",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x0d8775f648430679a709e98d2b0cb6250d2887ef.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x0d8775f648430679a709e98d2b0cb6250d2887ef.png"
+ ],
+ "name": "BAT",
+ "symbol": "BAT",
+ "marketCap": "113885196.822180145897867722",
+ "price": "0.07595049476386025008",
+ "priceChange24hPercent": "2.31",
+ "volume24h": "26565.198913206884187374",
+ "communityRecognized": true,
+ "key": "evm--1:0x0d8775f648430679a709e98d2b0cb6250d2887ef",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0xe28b3b32b6c345a34ff64674606124dd5aceca30",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xe28b3b32b6c345a34ff64674606124dd5aceca30.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xe28b3b32b6c345a34ff64674606124dd5aceca30.png"
+ ],
+ "name": "Injective Token",
+ "symbol": "INJ",
+ "marketCap": "652548679.90277936730835885",
+ "price": "6.52548679917592222342",
+ "priceChange24hPercent": "18.68",
+ "volume24h": "836877.778700916874043017",
+ "communityRecognized": true,
+ "key": "evm--1:0xe28b3b32b6c345a34ff64674606124dd5aceca30",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x7fc66500c84a76ad7e9c93437bfc5ac33e2ddae9",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x7fc66500c84a76ad7e9c93437bfc5ac33e2ddae9-1768204923952.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x7fc66500c84a76ad7e9c93437bfc5ac33e2ddae9-1768204923952.png"
+ ],
+ "name": "Aave",
+ "symbol": "AAVE",
+ "marketCap": "2097478577.173776740252401922",
+ "price": "131.09241107415034631128",
+ "priceChange24hPercent": "-1.93",
+ "volume24h": "2573623.79015097575942156",
+ "communityRecognized": true,
+ "key": "evm--1:0x7fc66500c84a76ad7e9c93437bfc5ac33e2ddae9",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0xf280b16ef293d8e534e370794ef26bf312694126",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xf280b16ef293d8e534e370794ef26bf312694126-1727226900185.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xf280b16ef293d8e534e370794ef26bf312694126-1727226900185.png"
+ ],
+ "name": "Asteroid Shiba",
+ "symbol": "ASTEROID",
+ "marketCap": "7417961.835628052508944778",
+ "price": "0.00001763284564793091",
+ "priceChange24hPercent": "-16.67",
+ "volume24h": "506150.627601501657999059",
+ "communityRecognized": true,
+ "key": "evm--1:0xf280b16ef293d8e534e370794ef26bf312694126",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0xd533a949740bb3306d119cc777fa900ba034cd52",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xd533a949740bb3306d119cc777fa900ba034cd52.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xd533a949740bb3306d119cc777fa900ba034cd52.png"
+ ],
+ "name": "Curve DAO Token",
+ "symbol": "CRV",
+ "marketCap": "876369329.769418025858573012",
+ "price": "0.36267889083621288676",
+ "priceChange24hPercent": "-6.6",
+ "volume24h": "1483175.798346914450882771",
+ "communityRecognized": true,
+ "key": "evm--1:0xd533a949740bb3306d119cc777fa900ba034cd52",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x00f3c42833c3170159af4e92dbb451fb3f708917",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x00f3c42833c3170159af4e92dbb451fb3f708917-1757751970323.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x00f3c42833c3170159af4e92dbb451fb3f708917-1757751970323.png"
+ ],
+ "name": "ICP",
+ "symbol": "ICP",
+ "marketCap": "1905906.868587494480933083",
+ "price": "3.02813722699095574803",
+ "priceChange24hPercent": "10.3",
+ "volume24h": "1528920.96423519353367398",
+ "communityRecognized": true,
+ "key": "evm--1:0x00f3c42833c3170159af4e92dbb451fb3f708917",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x45804880de22913dafe09f4980848ece6ecbaf78",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x45804880de22913dafe09f4980848ece6ecbaf78.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x45804880de22913dafe09f4980848ece6ecbaf78.png"
+ ],
+ "name": "PAX Gold",
+ "symbol": "PAXG",
+ "marketCap": "1909008770.773613853448246035",
+ "price": "4439.69364949688523130396",
+ "priceChange24hPercent": "0.73",
+ "volume24h": "1576507.371616971145685475",
+ "communityRecognized": true,
+ "key": "evm--1:0x45804880de22913dafe09f4980848ece6ecbaf78",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x8b1484d57abbe239bb280661377363b03c89caea",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x8b1484d57abbe239bb280661377363b03c89caea-1765433140444.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x8b1484d57abbe239bb280661377363b03c89caea-1765433140444.png"
+ ],
+ "name": "ADI",
+ "symbol": "ADI",
+ "marketCap": "77207866.811593967609057552",
+ "price": "8.23071869147612736618",
+ "priceChange24hPercent": "2.87",
+ "volume24h": "780877.75531070346990832",
+ "communityRecognized": true,
+ "key": "evm--1:0x8b1484d57abbe239bb280661377363b03c89caea",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x5afe3855358e112b5647b952709e6165e1c1eeee",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x5afe3855358e112b5647b952709e6165e1c1eeee.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x5afe3855358e112b5647b952709e6165e1c1eeee.png"
+ ],
+ "name": "Safe Token",
+ "symbol": "SAFE",
+ "marketCap": "81163050.466233622609361953",
+ "price": "0.10468500797680307475",
+ "priceChange24hPercent": "5.27",
+ "volume24h": "93487.034726330327338385",
+ "communityRecognized": true,
+ "key": "evm--1:0x5afe3855358e112b5647b952709e6165e1c1eeee",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x33483a58079b4225b10e57958ca28ad7b9cdbaf7",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x33483a58079b4225b10e57958ca28ad7b9cdbaf7-1768539344372.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x33483a58079b4225b10e57958ca28ad7b9cdbaf7-1768539344372.png"
+ ],
+ "name": "BitMine Immersion Technologies (Ondo Tokenized)",
+ "symbol": "BMNRon",
+ "marketCap": "653846.433144777048337471",
+ "price": "25.193887",
+ "priceChange24hPercent": "-0.41",
+ "volume24h": "1544.074190116939362",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "BitMine",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--1:0x33483a58079b4225b10e57958ca28ad7b9cdbaf7",
+ "kind": "stock",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0xd7efb00d12c2c13131fd319336fdf952525da2af",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xd7efb00d12c2c13131fd319336fdf952525da2af.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xd7efb00d12c2c13131fd319336fdf952525da2af.png"
+ ],
+ "name": "Proton",
+ "symbol": "XPR",
+ "marketCap": "28020575.717332916931041973",
+ "price": "0.00280205757173329169",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": true,
+ "key": "evm--1:0xd7efb00d12c2c13131fd319336fdf952525da2af",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0xaea46a60368a7bd060eec7df8cba43b7ef41ad85",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xaea46a60368a7bd060eec7df8cba43b7ef41ad85.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xaea46a60368a7bd060eec7df8cba43b7ef41ad85.png"
+ ],
+ "name": "Fetch",
+ "symbol": "FET",
+ "marketCap": "500674501.700723466328696789",
+ "price": "0.18445231067741700647",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": true,
+ "key": "evm--1:0xaea46a60368a7bd060eec7df8cba43b7ef41ad85",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x111111111117dc0aa78b770fa6a738034120c302",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x111111111117dc0aa78b770fa6a738034120c302.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x111111111117dc0aa78b770fa6a738034120c302.png"
+ ],
+ "name": "1INCH Token",
+ "symbol": "1INCH",
+ "marketCap": "140756864.112418820878878988",
+ "price": "0.09383794371570669218",
+ "priceChange24hPercent": "-1.94",
+ "volume24h": "75295.214815173909091983",
+ "communityRecognized": true,
+ "key": "evm--1:0x111111111117dc0aa78b770fa6a738034120c302",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0xcdf7028ceab81fa0c6971208e83fa7872994bee5",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xcdf7028ceab81fa0c6971208e83fa7872994bee5.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xcdf7028ceab81fa0c6971208e83fa7872994bee5.png"
+ ],
+ "name": "Threshold Network Token",
+ "symbol": "T",
+ "marketCap": "49985445.900066645572746791",
+ "price": "0.00448099021963842632",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": true,
+ "key": "evm--1:0xcdf7028ceab81fa0c6971208e83fa7872994bee5",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x57e114b691db790c35207b2e685d4a43181e6061",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x57e114b691db790c35207b2e685d4a43181e6061.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x57e114b691db790c35207b2e685d4a43181e6061.png"
+ ],
+ "name": "ENA",
+ "symbol": "ENA",
+ "marketCap": "1660396713.548207644778402066",
+ "price": "0.16447204715537113336",
+ "priceChange24hPercent": "-4.96",
+ "volume24h": "696320.149811754105230201",
+ "communityRecognized": true,
+ "key": "evm--1:0x57e114b691db790c35207b2e685d4a43181e6061",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0xcccccccccc33d538dbc2ee4feab0a7a1ff4e8a94",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xcccccccccc33d538dbc2ee4feab0a7a1ff4e8a94-1757752502431.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xcccccccccc33d538dbc2ee4feab0a7a1ff4e8a94-1757752502431.png"
+ ],
+ "name": "Centrifuge",
+ "symbol": "CFG",
+ "marketCap": "49040480.663382475107337512",
+ "price": "0.12892361035323438803",
+ "priceChange24hPercent": "0.91",
+ "volume24h": "339013.767973171020837329",
+ "communityRecognized": true,
+ "key": "evm--1:0xcccccccccc33d538dbc2ee4feab0a7a1ff4e8a94",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0xb58e61c3098d85632df34eecfb899a1ed80921cb",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xb58e61c3098d85632df34eecfb899a1ed80921cb.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xb58e61c3098d85632df34eecfb899a1ed80921cb.png"
+ ],
+ "name": "Frankencoin",
+ "symbol": "ZCHF",
+ "marketCap": "38581402.158042291088377295",
+ "price": "1.23740818388384416664",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": true,
+ "key": "evm--1:0xb58e61c3098d85632df34eecfb899a1ed80921cb",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0xcabd955322dfbf94c084929ac5e9eca3feb5556f",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xcabd955322dfbf94c084929ac5e9eca3feb5556f-1757752473436.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xcabd955322dfbf94c084929ac5e9eca3feb5556f-1757752473436.png"
+ ],
+ "name": "MicroStrategy (Ondo Tokenized)",
+ "symbol": "MSTRon",
+ "marketCap": "7417925.74044011110765801",
+ "price": "141.088235",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "微策略",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--1:0xcabd955322dfbf94c084929ac5e9eca3feb5556f",
+ "kind": "stock",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x643c4e15d7d62ad0abec4a9bd4b001aa3ef52d66",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x643c4e15d7d62ad0abec4a9bd4b001aa3ef52d66-1731566700069.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x643c4e15d7d62ad0abec4a9bd4b001aa3ef52d66-1731566700069.png"
+ ],
+ "name": "Syrup Token",
+ "symbol": "SYRUP",
+ "marketCap": "273349478.378402015871013651",
+ "price": "0.23419532469120226004",
+ "priceChange24hPercent": "6.73",
+ "volume24h": "519730.10890333166973889",
+ "communityRecognized": true,
+ "key": "evm--1:0x643c4e15d7d62ad0abec4a9bd4b001aa3ef52d66",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x9c7beba8f6ef6643abd725e45a4e8387ef260649",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x9c7beba8f6ef6643abd725e45a4e8387ef260649-1721965702833.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x9c7beba8f6ef6643abd725e45a4e8387ef260649-1721965702833.png"
+ ],
+ "name": "Gravity",
+ "symbol": "G",
+ "marketCap": "29477204.382464561744880746",
+ "price": "0.00407554639103855569",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": true,
+ "key": "evm--1:0x9c7beba8f6ef6643abd725e45a4e8387ef260649",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0xa12cc123ba206d4031d1c7f6223d1c2ec249f4f3",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xa12cc123ba206d4031d1c7f6223d1c2ec249f4f3-1765173940271.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xa12cc123ba206d4031d1c7f6223d1c2ec249f4f3-1765173940271.png"
+ ],
+ "name": "Zama",
+ "symbol": "ZAMA",
+ "marketCap": "130340692.466254388020277987",
+ "price": "0.05225030584040281925",
+ "priceChange24hPercent": "-3.5",
+ "volume24h": "656119.66230031805172541",
+ "communityRecognized": true,
+ "key": "evm--1:0xa12cc123ba206d4031d1c7f6223d1c2ec249f4f3",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x8881562783028f5c1bcb985d2283d5e170d88888",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x8881562783028f5c1bcb985d2283d5e170d88888.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x8881562783028f5c1bcb985d2283d5e170d88888.png"
+ ],
+ "name": "Shuffle",
+ "symbol": "SHFL",
+ "marketCap": "144662098.779715619072842785",
+ "price": "0.30441294768927487944",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": true,
+ "key": "evm--1:0x8881562783028f5c1bcb985d2283d5e170d88888",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0xfedc5f4a6c38211c1338aa411018dfaf26612c08",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xfedc5f4a6c38211c1338aa411018dfaf26612c08-1757751374641.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xfedc5f4a6c38211c1338aa411018dfaf26612c08-1757751374641.png"
+ ],
+ "name": "SPDR S&P 500 ETF (Ondo Tokenized)",
+ "symbol": "SPYon",
+ "marketCap": "40646758.370754167177623431",
+ "price": "776.144884509197874782",
+ "priceChange24hPercent": "0.01",
+ "volume24h": "338903.3520433764834046",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "标普500 ETF",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--1:0xfedc5f4a6c38211c1338aa411018dfaf26612c08",
+ "kind": "stock",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0xb72e76ccf005313868db7b48070901a44629da98",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xb72e76ccf005313868db7b48070901a44629da98-1726286400579.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xb72e76ccf005313868db7b48070901a44629da98-1726286400579.png"
+ ],
+ "name": "SquidGrow",
+ "symbol": "SQGROW",
+ "marketCap": "4680586.237884865526974496",
+ "price": "0.00468058623788486553",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": true,
+ "key": "evm--1:0xb72e76ccf005313868db7b48070901a44629da98",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x68b36248477277865c64dfc78884ef80577078f3",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x68b36248477277865c64dfc78884ef80577078f3.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x68b36248477277865c64dfc78884ef80577078f3.png"
+ ],
+ "name": "Everybody",
+ "symbol": "Hold",
+ "marketCap": "3055508.176890996770953605",
+ "price": "0.00010998667127957455",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": false,
+ "key": "evm--1:0x68b36248477277865c64dfc78884ef80577078f3",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x73e0c0d45e048d25fc26fa3159b0aa04bfa4db98",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x73e0c0d45e048d25fc26fa3159b0aa04bfa4db98-1730181600450.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x73e0c0d45e048d25fc26fa3159b0aa04bfa4db98-1730181600450.png"
+ ],
+ "name": "Kraken Wrapped Bitcoin",
+ "symbol": "kBTC",
+ "marketCap": "513558939.389691777520631919",
+ "price": "78896.89444515781472982523",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": true,
+ "key": "evm--1:0x73e0c0d45e048d25fc26fa3159b0aa04bfa4db98",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0xc84782858b7bef5d25182dbac956a6aa463aefe5",
+ "logoUrl": "https://static.oklink.com/cdn/web3/currency/token/large/1-0xc84782858b7bef5d25182dbac956a6aa463aefe5-106/type=default_90_0?v=1788827070648",
+ "logoUrls": [
+ "https://static.oklink.com/cdn/web3/currency/token/large/1-0xc84782858b7bef5d25182dbac956a6aa463aefe5-106/type=default_90_0?v=1788827070648"
+ ],
+ "name": "PRDCTR",
+ "symbol": "PRD",
+ "marketCap": "75127991.272947607548276549",
+ "price": "0.00079082096076786955",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": false,
+ "key": "evm--1:0xc84782858b7bef5d25182dbac956a6aa463aefe5",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x501ebf66d76a96d4fb26ccead42957653e16b8b8",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x501ebf66d76a96d4fb26ccead42957653e16b8b8-1778393097622.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x501ebf66d76a96d4fb26ccead42957653e16b8b8-1778393097622.png"
+ ],
+ "name": "evaUSDT",
+ "symbol": "evaUSDT",
+ "marketCap": "2965373.710763260806931586",
+ "price": "0.99837583686165209406",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": false,
+ "key": "evm--1:0x501ebf66d76a96d4fb26ccead42957653e16b8b8",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x9fc65df3997073b8551ffd617154b5102facbb88",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x9fc65df3997073b8551ffd617154b5102facbb88-1760162469885.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x9fc65df3997073b8551ffd617154b5102facbb88-1760162469885.png"
+ ],
+ "name": "WrappedTXC",
+ "symbol": "wTXC",
+ "marketCap": "101021.681724845995893223",
+ "price": "0.20204336344969199179",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": false,
+ "key": "evm--1:0x9fc65df3997073b8551ffd617154b5102facbb88",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x4d224452801aced8b2f0aebe155379bb5d594381",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x4d224452801aced8b2f0aebe155379bb5d594381.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x4d224452801aced8b2f0aebe155379bb5d594381.png"
+ ],
+ "name": "ApeCoin",
+ "symbol": "APE",
+ "marketCap": "145538261.312580194925814975",
+ "price": "0.14554115661043842365",
+ "priceChange24hPercent": "2.2",
+ "volume24h": "125964.156239051083414528",
+ "communityRecognized": true,
+ "key": "evm--1:0x4d224452801aced8b2f0aebe155379bb5d594381",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0xc9eef266834730340a55b6cc24621b31baf55581",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xc9eef266834730340a55b6cc24621b31baf55581-1781279504821.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xc9eef266834730340a55b6cc24621b31baf55581-1781279504821.png"
+ ],
+ "name": "SpaceX (Ondo Tokenized)",
+ "symbol": "SPCXon",
+ "marketCap": "6617015.6851552296714885",
+ "price": "149.92005",
+ "priceChange24hPercent": "-0.78",
+ "volume24h": "558481.8517326951016132",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "SpaceX",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--1:0xc9eef266834730340a55b6cc24621b31baf55581",
+ "kind": "stock",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0xa1fa7777974312f7d801a8880714a218f76233f8",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xa1fa7777974312f7d801a8880714a218f76233f8-1788588393995.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xa1fa7777974312f7d801a8880714a218f76233f8-1788588393995.png"
+ ],
+ "name": "USDx",
+ "symbol": "USDx",
+ "marketCap": "66392687.266999613826329497",
+ "price": "1.00007427751974395262",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": false,
+ "key": "evm--1:0xa1fa7777974312f7d801a8880714a218f76233f8",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x2d1f7226bd1f780af6b9a49dcc0ae00e8df4bdee",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x2d1f7226bd1f780af6b9a49dcc0ae00e8df4bdee-1757752431638.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x2d1f7226bd1f780af6b9a49dcc0ae00e8df4bdee-1757752431638.png"
+ ],
+ "name": "NVIDIA (Ondo Tokenized)",
+ "symbol": "NVDAon",
+ "marketCap": "18182781.849522944090312949",
+ "price": "233.018432579261589288",
+ "priceChange24hPercent": "0.31",
+ "volume24h": "1151227.73716182259742768",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "英伟达",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--1:0x2d1f7226bd1f780af6b9a49dcc0ae00e8df4bdee",
+ "kind": "stock",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0xe172e9b6cfbeeb5593bdce3f077356fdb33af904",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xe172e9b6cfbeeb5593bdce3f077356fdb33af904-1786601267038.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xe172e9b6cfbeeb5593bdce3f077356fdb33af904-1786601267038.png"
+ ],
+ "name": "Interfold",
+ "symbol": "FOLD",
+ "marketCap": "18062751.219704692925179986",
+ "price": "0.05553989254753694462",
+ "priceChange24hPercent": "-0.31",
+ "volume24h": "564070.49329443444642095",
+ "communityRecognized": false,
+ "key": "evm--1:0xe172e9b6cfbeeb5593bdce3f077356fdb33af904",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x44b28991b167582f18ba0259e0173176ca125505",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x44b28991b167582f18ba0259e0173176ca125505-1776492205735.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x44b28991b167582f18ba0259e0173176ca125505-1776492205735.png"
+ ],
+ "name": "Unipeg",
+ "symbol": "uPEG",
+ "marketCap": "1679504.65137640140809086",
+ "price": "167.97818153759384379331",
+ "priceChange24hPercent": "-13.74",
+ "volume24h": "112373.68960840547005355",
+ "communityRecognized": false,
+ "key": "evm--1:0x44b28991b167582f18ba0259e0173176ca125505",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x118b70df4f06fa5678e7d543e6066e028c8ea0c0",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x118b70df4f06fa5678e7d543e6066e028c8ea0c0-1787292766126.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x118b70df4f06fa5678e7d543e6066e028c8ea0c0-1787292766126.png"
+ ],
+ "name": "Kite",
+ "symbol": "KITE",
+ "marketCap": "1166460722.191782736070208",
+ "price": "0.1195267488",
+ "priceChange24hPercent": "-4.38",
+ "volume24h": "116389.011448",
+ "communityRecognized": true,
+ "key": "evm--1:0x118b70df4f06fa5678e7d543e6066e028c8ea0c0",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x9ff58067bd8d239000010c154c6983a325df138e",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x9ff58067bd8d239000010c154c6983a325df138e.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x9ff58067bd8d239000010c154c6983a325df138e.png"
+ ],
+ "name": "Propchain Token",
+ "symbol": "PROPC",
+ "marketCap": "4337698.488242673103203443",
+ "price": "0.10118003522587297",
+ "priceChange24hPercent": "9.72",
+ "volume24h": "81379.22727350348",
+ "communityRecognized": true,
+ "key": "evm--1:0x9ff58067bd8d239000010c154c6983a325df138e",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0xf6b1117ec07684d3958cad8beb1b302bfd21103f",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xf6b1117ec07684d3958cad8beb1b302bfd21103f-1757751861947.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xf6b1117ec07684d3958cad8beb1b302bfd21103f-1757751861947.png"
+ ],
+ "name": "Tesla (Ondo Tokenized)",
+ "symbol": "TSLAon",
+ "marketCap": "6195761.736132678944775512",
+ "price": "356.316154",
+ "priceChange24hPercent": "-1.35",
+ "volume24h": "229197.7845738287947581",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "特斯拉",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--1:0xf6b1117ec07684d3958cad8beb1b302bfd21103f",
+ "kind": "stock",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x3c3a81e81dc49a522a592e7622a7e711c06bf354",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x3c3a81e81dc49a522a592e7622a7e711c06bf354.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x3c3a81e81dc49a522a592e7622a7e711c06bf354.png"
+ ],
+ "name": "Mantle",
+ "symbol": "MNT",
+ "marketCap": "3879622624.428861321586206571",
+ "price": "0.62380206035725838526",
+ "priceChange24hPercent": "-3.83",
+ "volume24h": "715028.30606147928912897",
+ "communityRecognized": true,
+ "key": "evm--1:0x3c3a81e81dc49a522a592e7622a7e711c06bf354",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x829f4b62eebe12af653b4dd4ffc480966f7d7f09",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x829f4b62eebe12af653b4dd4ffc480966f7d7f09-1777874423255.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x829f4b62eebe12af653b4dd4ffc480966f7d7f09-1777874423255.png"
+ ],
+ "name": "sato",
+ "symbol": "sato",
+ "marketCap": "2511983.201292366762732794",
+ "price": "0.17901016890236116579",
+ "priceChange24hPercent": "-2.43",
+ "volume24h": "44108.32202991652727313",
+ "communityRecognized": true,
+ "key": "evm--1:0x829f4b62eebe12af653b4dd4ffc480966f7d7f09",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x808507121b80c02388fad14726482e061b8da827",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x808507121b80c02388fad14726482e061b8da827.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x808507121b80c02388fad14726482e061b8da827.png"
+ ],
+ "name": "Pendle",
+ "symbol": "PENDLE",
+ "marketCap": "621081372.659827901108210996",
+ "price": "2.20611303111111111322",
+ "priceChange24hPercent": "7.38",
+ "volume24h": "463905.930171333825441635",
+ "communityRecognized": true,
+ "key": "evm--1:0x808507121b80c02388fad14726482e061b8da827",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0xc00e94cb662c3520282e6f5717214004a7f26888",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xc00e94cb662c3520282e6f5717214004a7f26888.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xc00e94cb662c3520282e6f5717214004a7f26888.png"
+ ],
+ "name": "Compound",
+ "symbol": "COMP",
+ "marketCap": "211636333.466615330952598886",
+ "price": "21.16363335436814378722",
+ "priceChange24hPercent": "-0.17",
+ "volume24h": "32970.806969883550348604",
+ "communityRecognized": true,
+ "key": "evm--1:0xc00e94cb662c3520282e6f5717214004a7f26888",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x01a8b61e7b03891a736b5df865e0ef9c511850ad",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x01a8b61e7b03891a736b5df865e0ef9c511850ad-1773727504923.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x01a8b61e7b03891a736b5df865e0ef9c511850ad-1773727504923.png"
+ ],
+ "name": "syBTC",
+ "symbol": "syBTC",
+ "marketCap": "509161.347738062056423757",
+ "price": "78827.53326949563588574375",
+ "priceChange24hPercent": "-1.15",
+ "volume24h": "912132.3048071062944235",
+ "communityRecognized": false,
+ "key": "evm--1:0x01a8b61e7b03891a736b5df865e0ef9c511850ad",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x4a220e6096b25eadb88358cb44068a3248254675",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x4a220e6096b25eadb88358cb44068a3248254675.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x4a220e6096b25eadb88358cb44068a3248254675.png"
+ ],
+ "name": "Quant",
+ "symbol": "QNT",
+ "marketCap": "797969469.930940570527114438",
+ "price": "66.09681001368045678844",
+ "priceChange24hPercent": "-0.65",
+ "volume24h": "205713.741061013652669172",
+ "communityRecognized": true,
+ "key": "evm--1:0x4a220e6096b25eadb88358cb44068a3248254675",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x0bc529c00c6401aef6d220be8c6ea1667f6ad93e",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x0bc529c00c6401aef6d220be8c6ea1667f6ad93e.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x0bc529c00c6401aef6d220be8c6ea1667f6ad93e.png"
+ ],
+ "name": "yearn.finance",
+ "symbol": "YFI",
+ "marketCap": "83040784.511229895484876496",
+ "price": "2264.78984648529688225813",
+ "priceChange24hPercent": "-2.17",
+ "volume24h": "123602.210603885606428619",
+ "communityRecognized": true,
+ "key": "evm--1:0x0bc529c00c6401aef6d220be8c6ea1667f6ad93e",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x8de39b057cc6522230ab19c0205080a8663331ef",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x8de39b057cc6522230ab19c0205080a8663331ef-1770271422305.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x8de39b057cc6522230ab19c0205080a8663331ef-1770271422305.png"
+ ],
+ "name": "wojak",
+ "symbol": "wojak",
+ "marketCap": "15378843.619726731166986711",
+ "price": "0.00000005027187905948",
+ "priceChange24hPercent": "2.97",
+ "volume24h": "112890.951312032035533275",
+ "communityRecognized": true,
+ "key": "evm--1:0x8de39b057cc6522230ab19c0205080a8663331ef",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0xb197e02499e6502733c6bce2eb39013c39a03147",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xb197e02499e6502733c6bce2eb39013c39a03147-1776319310050.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xb197e02499e6502733c6bce2eb39013c39a03147-1776319310050.png"
+ ],
+ "name": "Wrapped PROS",
+ "symbol": "PROS",
+ "marketCap": "317027.363943091846581165",
+ "price": "0.43860362821739935865",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": false,
+ "key": "evm--1:0xb197e02499e6502733c6bce2eb39013c39a03147",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x163f8c2467924be0ae7b5347228cabf260318753",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x163f8c2467924be0ae7b5347228cabf260318753.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x163f8c2467924be0ae7b5347228cabf260318753.png"
+ ],
+ "name": "Worldcoin",
+ "symbol": "WLD",
+ "marketCap": "4740302961.667240564166855584",
+ "price": "0.47403029616672405642",
+ "priceChange24hPercent": "14.08",
+ "volume24h": "247113.603545003493122204",
+ "communityRecognized": true,
+ "key": "evm--1:0x163f8c2467924be0ae7b5347228cabf260318753",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x1789e0043623282d5dcc7f213d703c6d8bafbb04",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x1789e0043623282d5dcc7f213d703c6d8bafbb04-1757750623793.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x1789e0043623282d5dcc7f213d703c6d8bafbb04-1757750623793.png"
+ ],
+ "name": "Linea",
+ "symbol": "LINEA",
+ "marketCap": "62411810.832395445900663721",
+ "price": "0.00277016573143066048",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": true,
+ "key": "evm--1:0x1789e0043623282d5dcc7f213d703c6d8bafbb04",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x85f17cf997934a597031b2e18a9ab6ebd4b9f6a4",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x85f17cf997934a597031b2e18a9ab6ebd4b9f6a4.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x85f17cf997934a597031b2e18a9ab6ebd4b9f6a4.png"
+ ],
+ "name": "NEAR",
+ "symbol": "NEAR",
+ "marketCap": "7622978.845504075352832797",
+ "price": "2.26095015223097112861",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": true,
+ "key": "evm--1:0x85f17cf997934a597031b2e18a9ab6ebd4b9f6a4",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x4e3fbd56cd56c3e72c1403e103b45db9da5b9d2b",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x4e3fbd56cd56c3e72c1403e103b45db9da5b9d2b.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x4e3fbd56cd56c3e72c1403e103b45db9da5b9d2b.png"
+ ],
+ "name": "Convex Token",
+ "symbol": "CVX",
+ "marketCap": "223296148.305160200678174418",
+ "price": "2.23319982805666313798",
+ "priceChange24hPercent": "-4.91",
+ "volume24h": "999917.87649930589265577",
+ "communityRecognized": true,
+ "key": "evm--1:0x4e3fbd56cd56c3e72c1403e103b45db9da5b9d2b",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0xda5e1988097297dcdc1f90d4dfe7909e847cbef6",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xda5e1988097297dcdc1f90d4dfe7909e847cbef6-1756694380364.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xda5e1988097297dcdc1f90d4dfe7909e847cbef6-1756694380364.png"
+ ],
+ "name": "World Liberty Financial",
+ "symbol": "WLFI",
+ "marketCap": "1791219453.864127823673972859",
+ "price": "0.05636829013300601131",
+ "priceChange24hPercent": "-1.61",
+ "volume24h": "42470.909585288266314",
+ "communityRecognized": true,
+ "key": "evm--1:0xda5e1988097297dcdc1f90d4dfe7909e847cbef6",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x66761fa41377003622aee3c7675fc7b5c1c2fac5",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x66761fa41377003622aee3c7675fc7b5c1c2fac5.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x66761fa41377003622aee3c7675fc7b5c1c2fac5.png"
+ ],
+ "name": "Clearpool",
+ "symbol": "CPOOL",
+ "marketCap": "21189064.22374286427785127",
+ "price": "0.02118906422374286428",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": true,
+ "key": "evm--1:0x66761fa41377003622aee3c7675fc7b5c1c2fac5",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x767fe9edc9e0df98e07454847909b5e959d7ca0e",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x767fe9edc9e0df98e07454847909b5e959d7ca0e.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x767fe9edc9e0df98e07454847909b5e959d7ca0e.png"
+ ],
+ "name": "Illuvium",
+ "symbol": "ILV",
+ "marketCap": "24388265.414656277661768815",
+ "price": "3.31967901730497027982",
+ "priceChange24hPercent": "-0.05",
+ "volume24h": "126074.306452358114442",
+ "communityRecognized": true,
+ "key": "evm--1:0x767fe9edc9e0df98e07454847909b5e959d7ca0e",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0xfaba6f8e4a5e8ab82f62fe7c39859fa577269be3",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xfaba6f8e4a5e8ab82f62fe7c39859fa577269be3.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xfaba6f8e4a5e8ab82f62fe7c39859fa577269be3.png"
+ ],
+ "name": "Ondo",
+ "symbol": "ONDO",
+ "marketCap": "1845634866.490616603177547368",
+ "price": "0.37903256120586394904",
+ "priceChange24hPercent": "-1.19",
+ "volume24h": "589998.145119857384026483",
+ "communityRecognized": true,
+ "key": "evm--1:0xfaba6f8e4a5e8ab82f62fe7c39859fa577269be3",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x69af81e73a73b40adf4f3d4223cd9b1ece623074",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x69af81e73a73b40adf4f3d4223cd9b1ece623074.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x69af81e73a73b40adf4f3d4223cd9b1ece623074.png"
+ ],
+ "name": "Mask Network",
+ "symbol": "MASK",
+ "marketCap": "47330858.823747443860373263",
+ "price": "0.4733085882374744386",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": true,
+ "key": "evm--1:0x69af81e73a73b40adf4f3d4223cd9b1ece623074",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0xec53bf9167f50cdeb3ae105f56099aaab9061f83",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xec53bf9167f50cdeb3ae105f56099aaab9061f83-1727837100115.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xec53bf9167f50cdeb3ae105f56099aaab9061f83-1727837100115.png"
+ ],
+ "name": "Eigen",
+ "symbol": "EIGEN",
+ "marketCap": "200518858.285838481625806543",
+ "price": "0.21781991470018400732",
+ "priceChange24hPercent": "2.74",
+ "volume24h": "34849.091442955670049598",
+ "communityRecognized": true,
+ "key": "evm--1:0xec53bf9167f50cdeb3ae105f56099aaab9061f83",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0xdd3b11ef34cd511a2da159034a05fcb94d806686",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xdd3b11ef34cd511a2da159034a05fcb94d806686-1732332192481.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xdd3b11ef34cd511a2da159034a05fcb94d806686-1732332192481.png"
+ ],
+ "name": "Rekt",
+ "symbol": "REKT",
+ "marketCap": "35940618.301550256984789255",
+ "price": "0.0000000854325472475",
+ "priceChange24hPercent": "-12.38",
+ "volume24h": "186781.179178635116666476",
+ "communityRecognized": true,
+ "key": "evm--1:0xdd3b11ef34cd511a2da159034a05fcb94d806686",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x152649ea73beab28c5b49b26eb48f7ead6d4c898",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x152649ea73beab28c5b49b26eb48f7ead6d4c898-1722500864906.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x152649ea73beab28c5b49b26eb48f7ead6d4c898-1722500864906.png"
+ ],
+ "name": "PancakeSwap Token",
+ "symbol": "Cake",
+ "marketCap": "12131398.244215974526374809",
+ "price": "2.22150660119196165068",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": true,
+ "key": "evm--1:0x152649ea73beab28c5b49b26eb48f7ead6d4c898",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x44ff8620b8ca30902395a7bd3f2407e1a091bf73",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x44ff8620b8ca30902395a7bd3f2407e1a091bf73.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x44ff8620b8ca30902395a7bd3f2407e1a091bf73.png"
+ ],
+ "name": "Virtual Protocol",
+ "symbol": "VIRTUAL",
+ "marketCap": "726561123.715143546118405786",
+ "price": "0.72656112371514354612",
+ "priceChange24hPercent": "1.86",
+ "volume24h": "94746.178633703399840606",
+ "communityRecognized": true,
+ "key": "evm--1:0x44ff8620b8ca30902395a7bd3f2407e1a091bf73",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x28561b8a2360f463011c16b6cc0b0cbef8dbbcad",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x28561b8a2360f463011c16b6cc0b0cbef8dbbcad-1727318700166.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x28561b8a2360f463011c16b6cc0b0cbef8dbbcad-1727318700166.png"
+ ],
+ "name": "MOO DENG",
+ "symbol": "MOODENG",
+ "marketCap": "1651353.033391182551390409",
+ "price": "0.00000404239975992842",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": true,
+ "key": "evm--1:0x28561b8a2360f463011c16b6cc0b0cbef8dbbcad",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0xb131f4a55907b10d1f0a50d8ab8fa09ec342cd74",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xb131f4a55907b10d1f0a50d8ab8fa09ec342cd74.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xb131f4a55907b10d1f0a50d8ab8fa09ec342cd74.png"
+ ],
+ "name": "Memecoin",
+ "symbol": "MEME",
+ "marketCap": "35527931.726438188226784692",
+ "price": "0.00055105681722043497",
+ "priceChange24hPercent": "-0.15",
+ "volume24h": "12995.518069717358655828",
+ "communityRecognized": true,
+ "key": "evm--1:0xb131f4a55907b10d1f0a50d8ab8fa09ec342cd74",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0xe76c5b78f93909d34404e9eb4c1f19e7582a5de1",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xe76c5b78f93909d34404e9eb4c1f19e7582a5de1-1781762787714.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xe76c5b78f93909d34404e9eb4c1f19e7582a5de1-1781762787714.png"
+ ],
+ "name": "Humanity",
+ "symbol": "H",
+ "marketCap": "762388797.168415827831652156",
+ "price": "0.07623887971684158278",
+ "priceChange24hPercent": "-0.5",
+ "volume24h": "126513.21581234089",
+ "communityRecognized": true,
+ "key": "evm--1:0xe76c5b78f93909d34404e9eb4c1f19e7582a5de1",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x4691937a7508860f876c9c0a2a617e7d9e945d4b",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x4691937a7508860f876c9c0a2a617e7d9e945d4b.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x4691937a7508860f876c9c0a2a617e7d9e945d4b.png"
+ ],
+ "name": "Wootrade Network",
+ "symbol": "WOO",
+ "marketCap": "21997289.356453419960463444",
+ "price": "0.01164583190173984521",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": true,
+ "key": "evm--1:0x4691937a7508860f876c9c0a2a617e7d9e945d4b",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x759f8b83db57033aed95545694f6ada480b6e987",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x759f8b83db57033aed95545694f6ada480b6e987-1780034717145.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x759f8b83db57033aed95545694f6ada480b6e987-1780034717145.png"
+ ],
+ "name": "Dogeus Maximus",
+ "symbol": "DOGEUS",
+ "marketCap": "206682.064568781002170521",
+ "price": "0.000206682064568781",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": false,
+ "key": "evm--1:0x759f8b83db57033aed95545694f6ada480b6e987",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0xe53ec727dbdeb9e2d5456c3be40cff031ab40a55",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xe53ec727dbdeb9e2d5456c3be40cff031ab40a55.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xe53ec727dbdeb9e2d5456c3be40cff031ab40a55.png"
+ ],
+ "name": "SuperFarm",
+ "symbol": "SUPER",
+ "marketCap": "121150259.345892956767401585",
+ "price": "0.12115049226777985158",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": true,
+ "key": "evm--1:0xe53ec727dbdeb9e2d5456c3be40cff031ab40a55",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x6b3595068778dd592e39a122f4f5a5cf09c90fe2",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x6b3595068778dd592e39a122f4f5a5cf09c90fe2.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x6b3595068778dd592e39a122f4f5a5cf09c90fe2.png"
+ ],
+ "name": "SushiToken",
+ "symbol": "SUSHI",
+ "marketCap": "68988258.86198907047886201",
+ "price": "0.23665443322790596392",
+ "priceChange24hPercent": "-1.55",
+ "volume24h": "124484.419273152820730667",
+ "communityRecognized": true,
+ "key": "evm--1:0x6b3595068778dd592e39a122f4f5a5cf09c90fe2",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x58d97b57bb95320f9a05dc918aef65434969c2b2",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x58d97b57bb95320f9a05dc918aef65434969c2b2-1732155300090.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x58d97b57bb95320f9a05dc918aef65434969c2b2-1732155300090.png"
+ ],
+ "name": "Morpho Token",
+ "symbol": "MORPHO",
+ "marketCap": "1689975371.571344596591133167",
+ "price": "2.45376816154570072525",
+ "priceChange24hPercent": "-5.11",
+ "volume24h": "217364.048106950711074265",
+ "communityRecognized": true,
+ "key": "evm--1:0x58d97b57bb95320f9a05dc918aef65434969c2b2",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x4507cef57c46789ef8d1a19ea45f4216bae2b528",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x4507cef57c46789ef8d1a19ea45f4216bae2b528-1754549170998.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x4507cef57c46789ef8d1a19ea45f4216bae2b528-1754549170998.png"
+ ],
+ "name": "TokenFi",
+ "symbol": "TOKEN",
+ "marketCap": "10837441.055623667327551628",
+ "price": "0.00216748821112473347",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": true,
+ "key": "evm--1:0x4507cef57c46789ef8d1a19ea45f4216bae2b528",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x3632dea96a953c11dac2f00b4a05a32cd1063fae",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x3632dea96a953c11dac2f00b4a05a32cd1063fae-1757752464109.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x3632dea96a953c11dac2f00b4a05a32cd1063fae-1757752464109.png"
+ ],
+ "name": "Circle Internet Group (Ondo Tokenized)",
+ "symbol": "CRCLon",
+ "marketCap": "15687232.40004324195637448",
+ "price": "101.653333",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "Circle Internet Group",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--1:0x3632dea96a953c11dac2f00b4a05a32cd1063fae",
+ "kind": "stock",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0xb528edbef013aff855ac3c50b381f253af13b997",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xb528edbef013aff855ac3c50b381f253af13b997.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xb528edbef013aff855ac3c50b381f253af13b997.png"
+ ],
+ "name": "Aevo",
+ "symbol": "AEVO",
+ "marketCap": "21046597.406811732837059353",
+ "price": "0.02385629309534059658",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": true,
+ "key": "evm--1:0xb528edbef013aff855ac3c50b381f253af13b997",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0xc20059e0317de91738d13af027dfc4a50781b066",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xc20059e0317de91738d13af027dfc4a50781b066-1757666467162.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xc20059e0317de91738d13af027dfc4a50781b066-1757666467162.png"
+ ],
+ "name": "Spark",
+ "symbol": "SPK",
+ "marketCap": "68452227.498357073041652443",
+ "price": "0.02086256511743863588",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": true,
+ "key": "evm--1:0xc20059e0317de91738d13af027dfc4a50781b066",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x0001a500a6b18995b03f44bb040a5ffc28e45cb0",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x0001a500a6b18995b03f44bb040a5ffc28e45cb0.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x0001a500a6b18995b03f44bb040a5ffc28e45cb0.png"
+ ],
+ "name": "Autonolas",
+ "symbol": "OLAS",
+ "marketCap": "14889150.2750985578978088",
+ "price": "0.02815627108303329648",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": true,
+ "key": "evm--1:0x0001a500a6b18995b03f44bb040a5ffc28e45cb0",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x8e870d67f660d95d5be530380d0ec0bd388289e1",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x8e870d67f660d95d5be530380d0ec0bd388289e1.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x8e870d67f660d95d5be530380d0ec0bd388289e1.png"
+ ],
+ "name": "Paxos Standard",
+ "symbol": "USDP",
+ "marketCap": "27404062.797932465447346002",
+ "price": "0.99748418825631508508",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": true,
+ "key": "evm--1:0x8e870d67f660d95d5be530380d0ec0bd388289e1",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x812ba41e071c7b7fa4ebcfb62df5f45f6fa853ee",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x812ba41e071c7b7fa4ebcfb62df5f45f6fa853ee-1729490132076.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x812ba41e071c7b7fa4ebcfb62df5f45f6fa853ee-1729490132076.png"
+ ],
+ "name": "Neiro",
+ "symbol": "Neiro",
+ "marketCap": "37356152.317819854466686123",
+ "price": "0.00008879733846257305",
+ "priceChange24hPercent": "-0.58",
+ "volume24h": "157930.631119095252426847",
+ "communityRecognized": true,
+ "key": "evm--1:0x812ba41e071c7b7fa4ebcfb62df5f45f6fa853ee",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0xb1d1eae60eea9525032a6dcb4c1ce336a1de71be",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xb1d1eae60eea9525032a6dcb4c1ce336a1de71be-1736915881289.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xb1d1eae60eea9525032a6dcb4c1ce336a1de71be-1736915881289.png"
+ ],
+ "name": "Derive",
+ "symbol": "DRV",
+ "marketCap": "127984188.43505609108049628",
+ "price": "0.16119916270213162558",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": true,
+ "key": "evm--1:0xb1d1eae60eea9525032a6dcb4c1ce336a1de71be",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x6de037ef9ad2725eb40118bb1702ebb27e4aeb24",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x6de037ef9ad2725eb40118bb1702ebb27e4aeb24.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x6de037ef9ad2725eb40118bb1702ebb27e4aeb24.png"
+ ],
+ "name": "Render Token",
+ "symbol": "RNDR",
+ "marketCap": "824262821.040543541994980321",
+ "price": "1.54491651271921396845",
+ "priceChange24hPercent": "1.21",
+ "volume24h": "246481.7494313788287383",
+ "communityRecognized": true,
+ "key": "evm--1:0x6de037ef9ad2725eb40118bb1702ebb27e4aeb24",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x6982508145454ce325ddbe47a25d4ec3d2311933",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x6982508145454ce325ddbe47a25d4ec3d2311933.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x6982508145454ce325ddbe47a25d4ec3d2311933.png"
+ ],
+ "name": "Pepe",
+ "symbol": "PEPE",
+ "marketCap": "1493558240.201236645376560347",
+ "price": "0.00000360961340628093",
+ "priceChange24hPercent": "1.26",
+ "volume24h": "1278233.783356008991981907",
+ "communityRecognized": true,
+ "key": "evm--1:0x6982508145454ce325ddbe47a25d4ec3d2311933",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0xaff2565091e7207191dbe340b8528d02fa78d044",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xaff2565091e7207191dbe340b8528d02fa78d044-1776579686042.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xaff2565091e7207191dbe340b8528d02fa78d044-1776579686042.png"
+ ],
+ "name": "Asteroid",
+ "symbol": "ASTEROID",
+ "marketCap": "2160137.135913627904826177",
+ "price": "0.0021601371359136279",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": true,
+ "key": "evm--1:0xaff2565091e7207191dbe340b8528d02fa78d044",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x62d0a8458ed7719fdaf978fe5929c6d342b0bfce",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x62d0a8458ed7719fdaf978fe5929c6d342b0bfce.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x62d0a8458ed7719fdaf978fe5929c6d342b0bfce.png"
+ ],
+ "name": "Beam",
+ "symbol": "BEAM",
+ "marketCap": "78817739.001999896246095768",
+ "price": "0.00153640263642117317",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": true,
+ "key": "evm--1:0x62d0a8458ed7719fdaf978fe5929c6d342b0bfce",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x5886e4d8d6a41a5ea2f3f77f23d7a7e942d581f1",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/83c4bb2e3cda0cf67f98df6bc39151db6bcd2a9628bdb21585d1b0bfce38dc2a",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/83c4bb2e3cda0cf67f98df6bc39151db6bcd2a9628bdb21585d1b0bfce38dc2a"
+ ],
+ "name": "Klik",
+ "symbol": "KLIK",
+ "marketCap": "4134378.928421985789081628",
+ "price": "0.00420796368247015225",
+ "priceChange24hPercent": "11.16",
+ "volume24h": "560460.355933548143825694",
+ "communityRecognized": false,
+ "key": "evm--1:0x5886e4d8d6a41a5ea2f3f77f23d7a7e942d581f1",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x2e44f3f609ff5aa4819b323fd74690f07c3607c4",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x2e44f3f609ff5aa4819b323fd74690f07c3607c4-1731641401028.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x2e44f3f609ff5aa4819b323fd74690f07c3607c4-1731641401028.png"
+ ],
+ "name": "PinLink",
+ "symbol": "Pin",
+ "marketCap": "5160164.512091474449369269",
+ "price": "0.05850086813417833854",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": true,
+ "key": "evm--1:0x2e44f3f609ff5aa4819b323fd74690f07c3607c4",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x12970e6868f88f6557b76120662c1b3e50a646bf",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x12970e6868f88f6557b76120662c1b3e50a646bf.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x12970e6868f88f6557b76120662c1b3e50a646bf.png"
+ ],
+ "name": "Milady",
+ "symbol": "LADYS",
+ "marketCap": "6405808.461562543221833342",
+ "price": "0.00000000721374230671",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": true,
+ "key": "evm--1:0x12970e6868f88f6557b76120662c1b3e50a646bf",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0xa27ec0006e59f245217ff08cd52a7e8b169e62d2",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xa27ec0006e59f245217ff08cd52a7e8b169e62d2-1765087768761.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xa27ec0006e59f245217ff08cd52a7e8b169e62d2-1765087768761.png"
+ ],
+ "name": "AZTEC",
+ "symbol": "AZTEC",
+ "marketCap": "42375716.835073977509763322",
+ "price": "0.01471583647777766656",
+ "priceChange24hPercent": "1.04",
+ "volume24h": "926777.51234274357699664",
+ "communityRecognized": true,
+ "key": "evm--1:0xa27ec0006e59f245217ff08cd52a7e8b169e62d2",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0xfe0c30065b384f05761f15d0cc899d4f9f9cc0eb",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xfe0c30065b384f05761f15d0cc899d4f9f9cc0eb.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xfe0c30065b384f05761f15d0cc899d4f9f9cc0eb.png"
+ ],
+ "name": "ether.fi governance token",
+ "symbol": "ETHFI",
+ "marketCap": "561556279.510491888642734434",
+ "price": "0.58171262185786697948",
+ "priceChange24hPercent": "1.82",
+ "volume24h": "433928.500562283464092055",
+ "communityRecognized": true,
+ "key": "evm--1:0xfe0c30065b384f05761f15d0cc899d4f9f9cc0eb",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x95ad61b0a150d79219dcf64e1e6cc01f0b64c4ce",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x95ad61b0a150d79219dcf64e1e6cc01f0b64c4ce.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x95ad61b0a150d79219dcf64e1e6cc01f0b64c4ce.png"
+ ],
+ "name": "SHIBA INU",
+ "symbol": "SHIB",
+ "marketCap": "3194887723.572087456545692429",
+ "price": "0.00000541923290262557",
+ "priceChange24hPercent": "-0.34",
+ "volume24h": "153533.298125084831499686",
+ "communityRecognized": true,
+ "key": "evm--1:0x95ad61b0a150d79219dcf64e1e6cc01f0b64c4ce",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0xdef1ca1fb7fbcdc777520aa7f396b4e015f497ab",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xdef1ca1fb7fbcdc777520aa7f396b4e015f497ab-1785401482174.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xdef1ca1fb7fbcdc777520aa7f396b4e015f497ab-1785401482174.png"
+ ],
+ "name": "CoW Protocol Token",
+ "symbol": "COW",
+ "marketCap": "133551224.674999546049151586",
+ "price": "0.13355122467506632166",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": true,
+ "key": "evm--1:0xdef1ca1fb7fbcdc777520aa7f396b4e015f497ab",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0xba47214edd2bb43099611b208f75e4b42fdcfedc",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xba47214edd2bb43099611b208f75e4b42fdcfedc-1757666647794.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xba47214edd2bb43099611b208f75e4b42fdcfedc-1757666647794.png"
+ ],
+ "name": "Alphabet Class A (Ondo Tokenized)",
+ "symbol": "GOOGLon",
+ "marketCap": "9918362.873351126445160617",
+ "price": "339.026684219921645772",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "谷歌",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--1:0xba47214edd2bb43099611b208f75e4b42fdcfedc",
+ "kind": "stock",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x0f81001ef0a83ecce5ccebf63eb302c70a39a654",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x0f81001ef0a83ecce5ccebf63eb302c70a39a654-1757750425263.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x0f81001ef0a83ecce5ccebf63eb302c70a39a654-1757750425263.png"
+ ],
+ "name": "Dolomite",
+ "symbol": "DOLO",
+ "marketCap": "7106756.518102218506843324",
+ "price": "0.02696267295816859323",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": true,
+ "key": "evm--1:0x0f81001ef0a83ecce5ccebf63eb302c70a39a654",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x32b4d049fe4c888d2b92eecaf729f44df6b1f36e",
+ "logoUrl": "https://static.oklink.com/cdn/web3/currency/token/large/1-0x32b4d049fe4c888d2b92eecaf729f44df6b1f36e-106/type=default_90_0?v=1788818579586",
+ "logoUrls": [
+ "https://static.oklink.com/cdn/web3/currency/token/large/1-0x32b4d049fe4c888d2b92eecaf729f44df6b1f36e-106/type=default_90_0?v=1788818579586"
+ ],
+ "name": "Robo Token",
+ "symbol": "ROBO",
+ "marketCap": "26324198.104611956403879731",
+ "price": "0.01179928198324157616",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": true,
+ "key": "evm--1:0x32b4d049fe4c888d2b92eecaf729f44df6b1f36e",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0xb50721bcf8d664c30412cfbc6cf7a15145234ad1",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xb50721bcf8d664c30412cfbc6cf7a15145234ad1.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xb50721bcf8d664c30412cfbc6cf7a15145234ad1.png"
+ ],
+ "name": "Arbitrum",
+ "symbol": "ARB",
+ "marketCap": "37965118.588461013168066961",
+ "price": "0.17053056603354301373",
+ "priceChange24hPercent": "-2.86",
+ "volume24h": "181114.247712684896570861",
+ "communityRecognized": true,
+ "key": "evm--1:0xb50721bcf8d664c30412cfbc6cf7a15145234ad1",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x6985884c4392d348587b19cb9eaaf157f13271cd",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x6985884c4392d348587b19cb9eaaf157f13271cd-1721275576234.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x6985884c4392d348587b19cb9eaaf157f13271cd-1721275576234.png"
+ ],
+ "name": "LayerZero",
+ "symbol": "ZRO",
+ "marketCap": "1080149474.7580877145563419",
+ "price": "1.13574633729690438428",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": true,
+ "key": "evm--1:0x6985884c4392d348587b19cb9eaaf157f13271cd",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x292fcdd1b104de5a00250febba9bc6a5092a0076",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x292fcdd1b104de5a00250febba9bc6a5092a0076.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x292fcdd1b104de5a00250febba9bc6a5092a0076.png"
+ ],
+ "name": "HashAI",
+ "symbol": "HashAI",
+ "marketCap": "1114457.189979465254376546",
+ "price": "0.00001317873327440078",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": false,
+ "key": "evm--1:0x292fcdd1b104de5a00250febba9bc6a5092a0076",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x72e4f9f808c49a2a61de9c5896298920dc4eeea9",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x72e4f9f808c49a2a61de9c5896298920dc4eeea9.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x72e4f9f808c49a2a61de9c5896298920dc4eeea9.png"
+ ],
+ "name": "HarryPotterObamaSonic10Inu",
+ "symbol": "BITCOIN",
+ "marketCap": "18075724.889706554310507744",
+ "price": "0.01807937412097600271",
+ "priceChange24hPercent": "-3.14",
+ "volume24h": "40236.492907987937137957",
+ "communityRecognized": true,
+ "key": "evm--1:0x72e4f9f808c49a2a61de9c5896298920dc4eeea9",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0xbe0ed4138121ecfc5c0e56b40517da27e6c5226b",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xbe0ed4138121ecfc5c0e56b40517da27e6c5226b.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xbe0ed4138121ecfc5c0e56b40517da27e6c5226b.png"
+ ],
+ "name": "Aethir Token",
+ "symbol": "ATH",
+ "marketCap": "99263854.029701203925986804",
+ "price": "0.00493144293933574565",
+ "priceChange24hPercent": "5.39",
+ "volume24h": "116477.939412420440733882",
+ "communityRecognized": true,
+ "key": "evm--1:0xbe0ed4138121ecfc5c0e56b40517da27e6c5226b",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0xb2617246d0c6c0087f18703d576831899ca94f01",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xb2617246d0c6c0087f18703d576831899ca94f01.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xb2617246d0c6c0087f18703d576831899ca94f01.png"
+ ],
+ "name": "ZigCoin",
+ "symbol": "ZIG",
+ "marketCap": "94808705.232990788358788257",
+ "price": "0.04740435261649539418",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": true,
+ "key": "evm--1:0xb2617246d0c6c0087f18703d576831899ca94f01",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x3b991130eae3cca364406d718da22fa1c3e7c256",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x3b991130eae3cca364406d718da22fa1c3e7c256-1721965702832.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x3b991130eae3cca364406d718da22fa1c3e7c256-1721965702832.png"
+ ],
+ "name": "Shrub",
+ "symbol": "SHRUB",
+ "marketCap": "1668534.066403978786212648",
+ "price": "0.00177095484417092101",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": false,
+ "key": "evm--1:0x3b991130eae3cca364406d718da22fa1c3e7c256",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x5dd1a7a369e8273371d2dbf9d83356057088082c",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x5dd1a7a369e8273371d2dbf9d83356057088082c-1765831426420.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x5dd1a7a369e8273371d2dbf9d83356057088082c-1765831426420.png"
+ ],
+ "name": "Flying Tulip",
+ "symbol": "FT",
+ "marketCap": "2246721.781190107127622743",
+ "price": "0.10336913148469746443",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": true,
+ "key": "evm--1:0x5dd1a7a369e8273371d2dbf9d83356057088082c",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0xd9fcd98c322942075a5c3860693e9f4f03aae07b",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xd9fcd98c322942075a5c3860693e9f4f03aae07b.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xd9fcd98c322942075a5c3860693e9f4f03aae07b.png"
+ ],
+ "name": "Euler",
+ "symbol": "EUL",
+ "marketCap": "31276632.048784866114926675",
+ "price": "1.30237941457454878927",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": true,
+ "key": "evm--1:0xd9fcd98c322942075a5c3860693e9f4f03aae07b",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0xc18360217d8f7ab5e7c516566761ea12ce7f9d72",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xc18360217d8f7ab5e7c516566761ea12ce7f9d72.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xc18360217d8f7ab5e7c516566761ea12ce7f9d72.png"
+ ],
+ "name": "Ethereum Name Service",
+ "symbol": "ENS",
+ "marketCap": "611785034.978927212090468133",
+ "price": "6.1178503497892721209",
+ "priceChange24hPercent": "-0.13",
+ "volume24h": "36105.99533679980943303",
+ "communityRecognized": true,
+ "key": "evm--1:0xc18360217d8f7ab5e7c516566761ea12ce7f9d72",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0xc944e90c64b2c07662a292be6244bdf05cda44a7",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xc944e90c64b2c07662a292be6244bdf05cda44a7.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xc944e90c64b2c07662a292be6244bdf05cda44a7.png"
+ ],
+ "name": "Graph Token",
+ "symbol": "GRT",
+ "marketCap": "213682635.31538619296014973",
+ "price": "0.01978494773274156975",
+ "priceChange24hPercent": "3.49",
+ "volume24h": "9026.422570863621602184",
+ "communityRecognized": true,
+ "key": "evm--1:0xc944e90c64b2c07662a292be6244bdf05cda44a7",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0xcf91b70017eabde82c9671e30e5502d312ea6eb2",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xcf91b70017eabde82c9671e30e5502d312ea6eb2.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xcf91b70017eabde82c9671e30e5502d312ea6eb2.png"
+ ],
+ "name": "I love puppies",
+ "symbol": "puppies",
+ "marketCap": "7840080.958106169270076012",
+ "price": "0.00000018636243043425",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": false,
+ "key": "evm--1:0xcf91b70017eabde82c9671e30e5502d312ea6eb2",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0xf34960d9d60be18cc1d5afc1a6f012a723a28811",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xf34960d9d60be18cc1d5afc1a6f012a723a28811-1757062012772.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xf34960d9d60be18cc1d5afc1a6f012a723a28811-1757062012772.png"
+ ],
+ "name": "KuCoin Token",
+ "symbol": "KCS",
+ "marketCap": "669663.971359230919270077",
+ "price": "7.00549115229823928288",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": false,
+ "key": "evm--1:0xf34960d9d60be18cc1d5afc1a6f012a723a28811",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x54d2252757e1672eead234d27b1270728ff90581",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x54d2252757e1672eead234d27b1270728ff90581-1721965702832.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x54d2252757e1672eead234d27b1270728ff90581-1721965702832.png"
+ ],
+ "name": "BitgetToken",
+ "symbol": "BGB",
+ "marketCap": "1391805427.795165092456564205",
+ "price": "1.98831610767746309218",
+ "priceChange24hPercent": "-1.77",
+ "volume24h": "36704.114557338605839411",
+ "communityRecognized": true,
+ "key": "evm--1:0x54d2252757e1672eead234d27b1270728ff90581",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x4206931337dc273a630d328da6441786bfad668f",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x4206931337dc273a630d328da6441786bfad668f-1757751938167.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x4206931337dc273a630d328da6441786bfad668f-1757751938167.png"
+ ],
+ "name": "Dogecoin",
+ "symbol": "DOGE",
+ "marketCap": "5157086.429369882677102401",
+ "price": "0.08991800972667650374",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": true,
+ "key": "evm--1:0x4206931337dc273a630d328da6441786bfad668f",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x6033f7f88332b8db6ad452b7c6d5bb643990ae3f",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x6033f7f88332b8db6ad452b7c6d5bb643990ae3f.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x6033f7f88332b8db6ad452b7c6d5bb643990ae3f.png"
+ ],
+ "name": "Lisk",
+ "symbol": "LSK",
+ "marketCap": "24072151.579462374534703265",
+ "price": "0.10327641363543645482",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": true,
+ "key": "evm--1:0x6033f7f88332b8db6ad452b7c6d5bb643990ae3f",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x14c3abf95cb9c93a8b82c1cdcb76d72cb87b2d4c",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x14c3abf95cb9c93a8b82c1cdcb76d72cb87b2d4c-1757665575093.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x14c3abf95cb9c93a8b82c1cdcb76d72cb87b2d4c-1757665575093.png"
+ ],
+ "name": "Apple (Ondo Tokenized)",
+ "symbol": "AAPLon",
+ "marketCap": "5243590.177976232422264391",
+ "price": "320.311828764086964785",
+ "priceChange24hPercent": "-0.51",
+ "volume24h": "126226.7752106128460417",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "苹果",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--1:0x14c3abf95cb9c93a8b82c1cdcb76d72cb87b2d4c",
+ "kind": "stock",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x5ab3d4c385b400f3abb49e80de2faf6a88a7b691",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x5ab3d4c385b400f3abb49e80de2faf6a88a7b691-1786773628094.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x5ab3d4c385b400f3abb49e80de2faf6a88a7b691-1786773628094.png"
+ ],
+ "name": "FLock.io",
+ "symbol": "FLOCK",
+ "marketCap": "23801.192070825717112147",
+ "price": "0.06192209689038530138",
+ "priceChange24hPercent": "-16.21",
+ "volume24h": "26669.7259078713035748",
+ "communityRecognized": false,
+ "key": "evm--1:0x5ab3d4c385b400f3abb49e80de2faf6a88a7b691",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x761d38e5ddf6ccf6cf7c55759d5210750b5d60f3",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x761d38e5ddf6ccf6cf7c55759d5210750b5d60f3.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x761d38e5ddf6ccf6cf7c55759d5210750b5d60f3.png"
+ ],
+ "name": "Dogelon",
+ "symbol": "ELON",
+ "marketCap": "32002713.280310162408172193",
+ "price": "0.00000003200271667338",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": true,
+ "key": "evm--1:0x761d38e5ddf6ccf6cf7c55759d5210750b5d60f3",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x9e32b13ce7f2e80a01932b42553652e053d6ed8e",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x9e32b13ce7f2e80a01932b42553652e053d6ed8e.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x9e32b13ce7f2e80a01932b42553652e053d6ed8e.png"
+ ],
+ "name": "Metis Token",
+ "symbol": "Metis",
+ "marketCap": "31190857.881624647466676241",
+ "price": "3.11908578816246474667",
+ "priceChange24hPercent": "-3.57",
+ "volume24h": "88363.0901474123216716",
+ "communityRecognized": true,
+ "key": "evm--1:0x9e32b13ce7f2e80a01932b42553652e053d6ed8e",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0xfeac2eae96899709a43e252b6b92971d32f9c0f9",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xfeac2eae96899709a43e252b6b92971d32f9c0f9-1721965702832.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xfeac2eae96899709a43e252b6b92971d32f9c0f9-1721965702832.png"
+ ],
+ "name": "ANyONe Protocol",
+ "symbol": "ANYONE",
+ "marketCap": "19334584.547818090106781868",
+ "price": "0.20277495055436214413",
+ "priceChange24hPercent": "32.38",
+ "volume24h": "199541.80112238911568671",
+ "communityRecognized": true,
+ "key": "evm--1:0xfeac2eae96899709a43e252b6b92971d32f9c0f9",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x4d7078ddd6ccfed2f85db5b7d3ff16828d378d48",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x4d7078ddd6ccfed2f85db5b7d3ff16828d378d48-1777528887338.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x4d7078ddd6ccfed2f85db5b7d3ff16828d378d48-1777528887338.png"
+ ],
+ "name": "Gensyn",
+ "symbol": "AI",
+ "marketCap": "9112312.413272017280397296",
+ "price": "0.02062587239460114524",
+ "priceChange24hPercent": "0.84",
+ "volume24h": "53241.17490279844625688",
+ "communityRecognized": true,
+ "key": "evm--1:0x4d7078ddd6ccfed2f85db5b7d3ff16828d378d48",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x299f137e691751087c6bfa6012f7d56a4da61a68",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x299f137e691751087c6bfa6012f7d56a4da61a68-1788588233662.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x299f137e691751087c6bfa6012f7d56a4da61a68-1788588233662.png"
+ ],
+ "name": "stonky.xyz",
+ "symbol": "STONKY",
+ "marketCap": "22945.935935275783986086",
+ "price": "0.00002294593593527578",
+ "priceChange24hPercent": "9.47",
+ "volume24h": "23158.0300591517927217",
+ "communityRecognized": false,
+ "key": "evm--1:0x299f137e691751087c6bfa6012f7d56a4da61a68",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x9f8f72aa9304c8b593d555f12ef6589cc3a579a2",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x9f8f72aa9304c8b593d555f12ef6589cc3a579a2.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x9f8f72aa9304c8b593d555f12ef6589cc3a579a2.png"
+ ],
+ "name": "maker",
+ "symbol": "mkr",
+ "marketCap": "136006467.128762000953566175",
+ "price": "1594.70706898681478602415",
+ "priceChange24hPercent": "-1.65",
+ "volume24h": "67270.990081939739181131",
+ "communityRecognized": false,
+ "key": "evm--1:0x9f8f72aa9304c8b593d555f12ef6589cc3a579a2",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x6b7774cb12ed7573a7586e7d0e62a2a563ddd3f0",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x6b7774cb12ed7573a7586e7d0e62a2a563ddd3f0-1757751313514.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x6b7774cb12ed7573a7586e7d0e62a2a563ddd3f0-1757751313514.png"
+ ],
+ "name": "Sophon",
+ "symbol": "SOPH",
+ "marketCap": "35914621.087024163331722442",
+ "price": "0.00869813628201345224",
+ "priceChange24hPercent": "98.08",
+ "volume24h": "57468.43554965537634186",
+ "communityRecognized": true,
+ "key": "evm--1:0x6b7774cb12ed7573a7586e7d0e62a2a563ddd3f0",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0xcf4d29f14cc585ddd1167f956092852af844e040",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/8e4435c150cb4ada78ce019a188015bf30ad60f917245c32ac6f69eb9aea8dde",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/8e4435c150cb4ada78ce019a188015bf30ad60f917245c32ac6f69eb9aea8dde"
+ ],
+ "name": "Prism",
+ "symbol": "PRISM",
+ "marketCap": "1235349.600642346363882692",
+ "price": "247.06992012846927277654",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": false,
+ "key": "evm--1:0xcf4d29f14cc585ddd1167f956092852af844e040",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0xe41d2489571d322189246dafa5ebde1f4699f498",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xe41d2489571d322189246dafa5ebde1f4699f498.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xe41d2489571d322189246dafa5ebde1f4699f498.png"
+ ],
+ "name": "ZRX",
+ "symbol": "ZRX",
+ "marketCap": "87945333.482793915318585544",
+ "price": "0.10366064329922952868",
+ "priceChange24hPercent": "-0.36",
+ "volume24h": "14548.533609458268915469",
+ "communityRecognized": true,
+ "key": "evm--1:0xe41d2489571d322189246dafa5ebde1f4699f498",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x249130f5e2dd4cf278180c0df8273f3592ad1247",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x249130f5e2dd4cf278180c0df8273f3592ad1247-1757752937038.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x249130f5e2dd4cf278180c0df8273f3592ad1247-1757752937038.png"
+ ],
+ "name": "dmt-nat",
+ "symbol": "dmt-nat",
+ "marketCap": "10070602.838551876939472852",
+ "price": "0.00000008183605223409",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": false,
+ "key": "evm--1:0x249130f5e2dd4cf278180c0df8273f3592ad1247",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0xb812837b81a3a6b81d7cd74cfb19a7f2784555e5",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xb812837b81a3a6b81d7cd74cfb19a7f2784555e5-1757750947113.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xb812837b81a3a6b81d7cd74cfb19a7f2784555e5-1757750947113.png"
+ ],
+ "name": "Microsoft (Ondo Tokenized)",
+ "symbol": "MSFTon",
+ "marketCap": "5078051.010709728608843245",
+ "price": "499.626273087059076169",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "微软",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--1:0xb812837b81a3a6b81d7cd74cfb19a7f2784555e5",
+ "kind": "stock",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0xb753428af26e81097e7fd17f40c88aaa3e04902c",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xb753428af26e81097e7fd17f40c88aaa3e04902c.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xb753428af26e81097e7fd17f40c88aaa3e04902c.png"
+ ],
+ "name": "Spice",
+ "symbol": "SFI",
+ "marketCap": "14919234.601722163145516909",
+ "price": "149.19234601722163145517",
+ "priceChange24hPercent": "-7.6",
+ "volume24h": "14060.1562869130271005",
+ "communityRecognized": false,
+ "key": "evm--1:0xb753428af26e81097e7fd17f40c88aaa3e04902c",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x967da4048cd07ab37855c090aaf366e4ce1b9f48",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x967da4048cd07ab37855c090aaf366e4ce1b9f48.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x967da4048cd07ab37855c090aaf366e4ce1b9f48.png"
+ ],
+ "name": "Ocean Token",
+ "symbol": "OCEAN",
+ "marketCap": "212542658.578105878653802224",
+ "price": "0.15073947416886941748",
+ "priceChange24hPercent": "0.33",
+ "volume24h": "36644.7050352989740875",
+ "communityRecognized": true,
+ "key": "evm--1:0x967da4048cd07ab37855c090aaf366e4ce1b9f48",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0xaa7a9ca87d3694b5755f213b5d04094b8d0f0a6f",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xaa7a9ca87d3694b5755f213b5d04094b8d0f0a6f.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xaa7a9ca87d3694b5755f213b5d04094b8d0f0a6f.png"
+ ],
+ "name": "Trace",
+ "symbol": "TRAC",
+ "marketCap": "152740466.846148294687500017",
+ "price": "0.34149185186286208201",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": true,
+ "key": "evm--1:0xaa7a9ca87d3694b5755f213b5d04094b8d0f0a6f",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x3845badade8e6dff049820680d1f14bd3903a5d0",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x3845badade8e6dff049820680d1f14bd3903a5d0.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x3845badade8e6dff049820680d1f14bd3903a5d0.png"
+ ],
+ "name": "SAND",
+ "symbol": "SAND",
+ "marketCap": "121527159.801150200434141375",
+ "price": "0.04050911306666529185",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": true,
+ "key": "evm--1:0x3845badade8e6dff049820680d1f14bd3903a5d0",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0xf411903cbc70a74d22900a5de66a2dda66507255",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xf411903cbc70a74d22900a5de66a2dda66507255.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xf411903cbc70a74d22900a5de66a2dda66507255.png"
+ ],
+ "name": "VERA",
+ "symbol": "VRA",
+ "marketCap": "4899737.996432691919540587",
+ "price": "0.00001728367513698409",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": true,
+ "key": "evm--1:0xf411903cbc70a74d22900a5de66a2dda66507255",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x9d65ff81a3c488d585bbfb0bfe3c7707c7917f54",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x9d65ff81a3c488d585bbfb0bfe3c7707c7917f54.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x9d65ff81a3c488d585bbfb0bfe3c7707c7917f54.png"
+ ],
+ "name": "SSV Token",
+ "symbol": "SSV",
+ "marketCap": "46613756.160945666344598772",
+ "price": "2.92587376714468440453",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": true,
+ "key": "evm--1:0x9d65ff81a3c488d585bbfb0bfe3c7707c7917f54",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x6f40d4a6237c257fff2db00fa0510deeecd303eb",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x6f40d4a6237c257fff2db00fa0510deeecd303eb.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x6f40d4a6237c257fff2db00fa0510deeecd303eb.png"
+ ],
+ "name": "Fluid",
+ "symbol": "FLUID",
+ "marketCap": "127007712.845487003389319166",
+ "price": "1.27007712845487003389",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": true,
+ "key": "evm--1:0x6f40d4a6237c257fff2db00fa0510deeecd303eb",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x28d38df637db75533bd3f71426f3410a82041544",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x28d38df637db75533bd3f71426f3410a82041544-1757666051889.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x28d38df637db75533bd3f71426f3410a82041544-1757666051889.png"
+ ],
+ "name": "Prompt",
+ "symbol": "PROMPT",
+ "marketCap": "5382704.168164475100106797",
+ "price": "0.02404062911930872189",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": true,
+ "key": "evm--1:0x28d38df637db75533bd3f71426f3410a82041544",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x582d872a1b094fc48f5de31d3b73f2d9be47def1",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x582d872a1b094fc48f5de31d3b73f2d9be47def1.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x582d872a1b094fc48f5de31d3b73f2d9be47def1.png"
+ ],
+ "name": "Wrapped TON Coin",
+ "symbol": "TONCOIN",
+ "marketCap": "13203044.166941529452144303",
+ "price": "1.42080905643997587737",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": true,
+ "key": "evm--1:0x582d872a1b094fc48f5de31d3b73f2d9be47def1",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x1776e1f26f98b1a5df9cd347953a26dd3cb46671",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x1776e1f26f98b1a5df9cd347953a26dd3cb46671.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x1776e1f26f98b1a5df9cd347953a26dd3cb46671.png"
+ ],
+ "name": "Numeraire",
+ "symbol": "NMR",
+ "marketCap": "70680937.364584476149988512",
+ "price": "9.43819583006719285331",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": true,
+ "key": "evm--1:0x1776e1f26f98b1a5df9cd347953a26dd3cb46671",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0xc011a73ee8576fb46f5e1c5751ca3b9fe0af2a6f",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xc011a73ee8576fb46f5e1c5751ca3b9fe0af2a6f.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xc011a73ee8576fb46f5e1c5751ca3b9fe0af2a6f.png"
+ ],
+ "name": "Synthetix Network Token",
+ "symbol": "SNX",
+ "marketCap": "130232023.226110582145209608",
+ "price": "0.22399566076364685059",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": true,
+ "key": "evm--1:0xc011a73ee8576fb46f5e1c5751ca3b9fe0af2a6f",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x6c5ba91642f10282b576d91922ae6448c9d52f4e",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x6c5ba91642f10282b576d91922ae6448c9d52f4e.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x6c5ba91642f10282b576d91922ae6448c9d52f4e.png"
+ ],
+ "name": "Phala",
+ "symbol": "PHA",
+ "marketCap": "26795671.931691333553662769",
+ "price": "0.02679567193169133355",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": true,
+ "key": "evm--1:0x6c5ba91642f10282b576d91922ae6448c9d52f4e",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x50d1c9771902476076ecfc8b2a83ad6b9355a4c9",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x50d1c9771902476076ecfc8b2a83ad6b9355a4c9.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x50d1c9771902476076ecfc8b2a83ad6b9355a4c9.png"
+ ],
+ "name": "FTX Token",
+ "symbol": "FTT",
+ "marketCap": "73531486.653551077736124711",
+ "price": "0.22357124141141900137",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": true,
+ "key": "evm--1:0x50d1c9771902476076ecfc8b2a83ad6b9355a4c9",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x55296f69f40ea6d20e478533c15a6b08b654e758",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x55296f69f40ea6d20e478533c15a6b08b654e758.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x55296f69f40ea6d20e478533c15a6b08b654e758.png"
+ ],
+ "name": "XY Oracle",
+ "symbol": "XYO",
+ "marketCap": "50891906.336154075144461798",
+ "price": "0.00365317179595353189",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": true,
+ "key": "evm--1:0x55296f69f40ea6d20e478533c15a6b08b654e758",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x3b48f83e525268c08426aaa337c3f08f501c824d",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/be7c533498af45f72d35d03413ecc2ca2cb6a3af601c1cd47f3a7c07b88793c1",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/be7c533498af45f72d35d03413ecc2ca2cb6a3af601c1cd47f3a7c07b88793c1"
+ ],
+ "name": "Ethereum Cat",
+ "symbol": "Gio",
+ "marketCap": "232119.066503122231903829",
+ "price": "0.00023211906650312223",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": false,
+ "key": "evm--1:0x3b48f83e525268c08426aaa337c3f08f501c824d",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x467bccd9d29f223bce8043b84e8c8b282827790f",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x467bccd9d29f223bce8043b84e8c8b282827790f.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x467bccd9d29f223bce8043b84e8c8b282827790f.png"
+ ],
+ "name": "Telcoin",
+ "symbol": "TEL",
+ "marketCap": "169668416.934327001657695401",
+ "price": "0.00169668416934327002",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": true,
+ "key": "evm--1:0x467bccd9d29f223bce8043b84e8c8b282827790f",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x455e53cbb86018ac2b8092fdcd39d8444affc3f6",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x455e53cbb86018ac2b8092fdcd39d8444affc3f6.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x455e53cbb86018ac2b8092fdcd39d8444affc3f6.png"
+ ],
+ "name": "Polygon Ecosystem Token",
+ "symbol": "POL",
+ "marketCap": "1019724022.912920713184625191",
+ "price": "0.09520684289491281305",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": true,
+ "key": "evm--1:0x455e53cbb86018ac2b8092fdcd39d8444affc3f6",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0xfdcd8be9dd37cf982472d30eeee4ec50a0296953",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xfdcd8be9dd37cf982472d30eeee4ec50a0296953-1784354408128.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xfdcd8be9dd37cf982472d30eeee4ec50a0296953-1784354408128.png"
+ ],
+ "name": "Investor Brand Network Ai",
+ "symbol": "IBNAi",
+ "marketCap": "498872.75974993140661978",
+ "price": "0.00049887275974993141",
+ "priceChange24hPercent": "-13.14",
+ "volume24h": "11109.616526622592676872",
+ "communityRecognized": false,
+ "key": "evm--1:0xfdcd8be9dd37cf982472d30eeee4ec50a0296953",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x318f96bbfd417e795ee530ec9677a4cea320c8cd",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x318f96bbfd417e795ee530ec9677a4cea320c8cd-1788156202266.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x318f96bbfd417e795ee530ec9677a4cea320c8cd-1788156202266.png"
+ ],
+ "name": "Unistreet 2.0",
+ "symbol": "UNISTREET",
+ "marketCap": "48240.138685214762346042",
+ "price": "0.0499921687803403377",
+ "priceChange24hPercent": "-31.3",
+ "volume24h": "12293.468559",
+ "communityRecognized": false,
+ "key": "evm--1:0x318f96bbfd417e795ee530ec9677a4cea320c8cd",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x712f3378cd1a0476b53f0e29b1a9586e00d78683",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x712f3378cd1a0476b53f0e29b1a9586e00d78683-1765692817340.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x712f3378cd1a0476b53f0e29b1a9586e00d78683-1765692817340.png"
+ ],
+ "name": "Tsutsuji the Cate",
+ "symbol": "CATE",
+ "marketCap": "848472.564957288174973692",
+ "price": "0.00084847256495728817",
+ "priceChange24hPercent": "162.86",
+ "volume24h": "214848.023042261328119048",
+ "communityRecognized": false,
+ "key": "evm--1:0x712f3378cd1a0476b53f0e29b1a9586e00d78683",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x56072c95faa701256059aa122697b133aded9279",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x56072c95faa701256059aa122697b133aded9279-1726634701647.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x56072c95faa701256059aa122697b133aded9279-1726634701647.png"
+ ],
+ "name": "SKY Governance Token",
+ "symbol": "SKY",
+ "marketCap": "1604989935.769843774225190779",
+ "price": "0.06850377826381156803",
+ "priceChange24hPercent": "-1.33",
+ "volume24h": "673716.54982476905655406",
+ "communityRecognized": true,
+ "key": "evm--1:0x56072c95faa701256059aa122697b133aded9279",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x95af4af910c28e8ece4512bfe46f1f33687424ce",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x95af4af910c28e8ece4512bfe46f1f33687424ce-1757750689672.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x95af4af910c28e8ece4512bfe46f1f33687424ce-1757750689672.png"
+ ],
+ "name": "Manyu",
+ "symbol": "MANYU",
+ "marketCap": "4354465.06883104792187347",
+ "price": "0.00000000439300193851",
+ "priceChange24hPercent": "8.51",
+ "volume24h": "102215.354585494923779836",
+ "communityRecognized": true,
+ "key": "evm--1:0x95af4af910c28e8ece4512bfe46f1f33687424ce",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x38e68a37e401f7271568cecaac63c6b1e19130b4",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x38e68a37e401f7271568cecaac63c6b1e19130b4.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x38e68a37e401f7271568cecaac63c6b1e19130b4.png"
+ ],
+ "name": "Banana",
+ "symbol": "BANANA",
+ "marketCap": "16448172.774852108834607465",
+ "price": "4.10052815936691790614",
+ "priceChange24hPercent": "0.52",
+ "volume24h": "200504.56395373226155069",
+ "communityRecognized": true,
+ "key": "evm--1:0x38e68a37e401f7271568cecaac63c6b1e19130b4",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x2b591e99afe9f32eaa6214f7b7629768c40eeb39",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x2b591e99afe9f32eaa6214f7b7629768c40eeb39.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x2b591e99afe9f32eaa6214f7b7629768c40eeb39.png"
+ ],
+ "name": "HEX",
+ "symbol": "HEX",
+ "marketCap": "61931156.656969849434019349",
+ "price": "0.00106244503078276165",
+ "priceChange24hPercent": "-2.66",
+ "volume24h": "212678.054424619355176635",
+ "communityRecognized": false,
+ "key": "evm--1:0x2b591e99afe9f32eaa6214f7b7629768c40eeb39",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0xca14007eff0db1f8135f4c25b34de49ab0d42766",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xca14007eff0db1f8135f4c25b34de49ab0d42766.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xca14007eff0db1f8135f4c25b34de49ab0d42766.png"
+ ],
+ "name": "StarkNet Token",
+ "symbol": "STRK",
+ "marketCap": "312527369.684349208615442257",
+ "price": "0.03118382072463348087",
+ "priceChange24hPercent": "0.72",
+ "volume24h": "35278.15996141759589192",
+ "communityRecognized": true,
+ "key": "evm--1:0xca14007eff0db1f8135f4c25b34de49ab0d42766",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0xbb0e17ef65f82ab018d8edd776e8dd940327b28b",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xbb0e17ef65f82ab018d8edd776e8dd940327b28b.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xbb0e17ef65f82ab018d8edd776e8dd940327b28b.png"
+ ],
+ "name": "Axie Infinity Shard",
+ "symbol": "AXS",
+ "marketCap": "261044477.043066689033016494",
+ "price": "0.96683139645580255197",
+ "priceChange24hPercent": "1.1",
+ "volume24h": "736.5437257528456515",
+ "communityRecognized": true,
+ "key": "evm--1:0xbb0e17ef65f82ab018d8edd776e8dd940327b28b",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0xddb3422497e61e13543bea06989c0789117555c5",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xddb3422497e61e13543bea06989c0789117555c5.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xddb3422497e61e13543bea06989c0789117555c5.png"
+ ],
+ "name": "COTI Token",
+ "symbol": "COTI",
+ "marketCap": "77136918.493486786503852486",
+ "price": "0.0160318280801743775",
+ "priceChange24hPercent": "-8.73",
+ "volume24h": "77971.91379660067684812",
+ "communityRecognized": true,
+ "key": "evm--1:0xddb3422497e61e13543bea06989c0789117555c5",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0xbd31ea8212119f94a611fa969881cba3ea06fa3d",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xbd31ea8212119f94a611fa969881cba3ea06fa3d.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xbd31ea8212119f94a611fa969881cba3ea06fa3d.png"
+ ],
+ "name": "LUNA (Wormhole)",
+ "symbol": "LUNA",
+ "marketCap": "1419522.28027240836218694",
+ "price": "0.00007731640849525585",
+ "priceChange24hPercent": "51.45",
+ "volume24h": "1657877.578540698373936599",
+ "communityRecognized": false,
+ "key": "evm--1:0xbd31ea8212119f94a611fa969881cba3ea06fa3d",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x58b6a8a3302369daec383334672404ee733ab239",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x58b6a8a3302369daec383334672404ee733ab239.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x58b6a8a3302369daec383334672404ee733ab239.png"
+ ],
+ "name": "Livepeer",
+ "symbol": "LPT",
+ "marketCap": "36820629.171768600573514433",
+ "price": "1.47764271127142131681",
+ "priceChange24hPercent": "2.36",
+ "volume24h": "2389.75425617955544864",
+ "communityRecognized": true,
+ "key": "evm--1:0x58b6a8a3302369daec383334672404ee733ab239",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0xcf0c122c6b73ff809c693db761e7baebe62b6a2e",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xcf0c122c6b73ff809c693db761e7baebe62b6a2e.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xcf0c122c6b73ff809c693db761e7baebe62b6a2e.png"
+ ],
+ "name": "FLOKI",
+ "symbol": "FLOKI",
+ "marketCap": "272368739.790512625637129351",
+ "price": "0.00002723687403366149",
+ "priceChange24hPercent": "7.61",
+ "volume24h": "42311.776763498539947228",
+ "communityRecognized": true,
+ "key": "evm--1:0xcf0c122c6b73ff809c693db761e7baebe62b6a2e",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x228bec415ade4b61d7caf0adf8c91eac587ba369",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x228bec415ade4b61d7caf0adf8c91eac587ba369-1769666912652.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x228bec415ade4b61d7caf0adf8c91eac587ba369-1769666912652.png"
+ ],
+ "name": "TRIA",
+ "symbol": "TRIA",
+ "marketCap": "9240836.301789379982083197",
+ "price": "0.00428278481036923162",
+ "priceChange24hPercent": "5.14",
+ "volume24h": "6505.86283535865",
+ "communityRecognized": true,
+ "key": "evm--1:0x228bec415ade4b61d7caf0adf8c91eac587ba369",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x516d31321928700c6b4fb0db0c8c6bc5d6799787",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x516d31321928700c6b4fb0db0c8c6bc5d6799787-1760853997427.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x516d31321928700c6b4fb0db0c8c6bc5d6799787-1760853997427.png"
+ ],
+ "name": "SHX",
+ "symbol": "SHX",
+ "marketCap": "14641334.190400517136272598",
+ "price": "0.00382456929741907849",
+ "priceChange24hPercent": "-8.25",
+ "volume24h": "127295.816173610436143",
+ "communityRecognized": true,
+ "key": "evm--1:0x516d31321928700c6b4fb0db0c8c6bc5d6799787",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0xaaee1a9723aadb7afa2810263653a34ba2c21c7a",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xaaee1a9723aadb7afa2810263653a34ba2c21c7a.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xaaee1a9723aadb7afa2810263653a34ba2c21c7a.png"
+ ],
+ "name": "Mog Coin",
+ "symbol": "Mog",
+ "marketCap": "45373077.614541279484436748",
+ "price": "0.0000001161713880672",
+ "priceChange24hPercent": "7.19",
+ "volume24h": "897644.779743019621760613",
+ "communityRecognized": true,
+ "key": "evm--1:0xaaee1a9723aadb7afa2810263653a34ba2c21c7a",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0xd0580192e98ea6ceb9c7b6191ed2e27560911697",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xd0580192e98ea6ceb9c7b6191ed2e27560911697-1785305021620.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xd0580192e98ea6ceb9c7b6191ed2e27560911697-1785305021620.png"
+ ],
+ "name": "trUSD",
+ "symbol": "trUSD",
+ "marketCap": "66453838.603748551095643387",
+ "price": "1.0000766457551993108",
+ "priceChange24hPercent": "0",
+ "volume24h": "445008.777162",
+ "communityRecognized": true,
+ "key": "evm--1:0xd0580192e98ea6ceb9c7b6191ed2e27560911697",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x940a2db1b7008b6c776d4faaca729d6d4a4aa551",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x940a2db1b7008b6c776d4faaca729d6d4a4aa551.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x940a2db1b7008b6c776d4faaca729d6d4a4aa551.png"
+ ],
+ "name": "Dusk Network",
+ "symbol": "DUSK",
+ "marketCap": "39185463.690359092914573738",
+ "price": "0.07837092738071818583",
+ "priceChange24hPercent": "-0.11",
+ "volume24h": "63386.351877461576226",
+ "communityRecognized": true,
+ "key": "evm--1:0x940a2db1b7008b6c776d4faaca729d6d4a4aa551",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x1151cb3d861920e07a38e03eead12c32178567f6",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x1151cb3d861920e07a38e03eead12c32178567f6.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x1151cb3d861920e07a38e03eead12c32178567f6.png"
+ ],
+ "name": "Bonk",
+ "symbol": "Bonk",
+ "marketCap": "958997.066535357138047833",
+ "price": "0.00000317595720104119",
+ "priceChange24hPercent": "1.15",
+ "volume24h": "692.76949457944382164",
+ "communityRecognized": true,
+ "key": "evm--1:0x1151cb3d861920e07a38e03eead12c32178567f6",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0xffe203b59393593965842439ce1e7d7c78109b46",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xffe203b59393593965842439ce1e7d7c78109b46.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xffe203b59393593965842439ce1e7d7c78109b46.png"
+ ],
+ "name": "Satellite Doge-1 Mission",
+ "symbol": "Doge-1",
+ "marketCap": "255842.964650115866916783",
+ "price": "0.00025584331666859646",
+ "priceChange24hPercent": "-0.88",
+ "volume24h": "8092.4044518245027959",
+ "communityRecognized": false,
+ "key": "evm--1:0xffe203b59393593965842439ce1e7d7c78109b46",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0xf091867ec603a6628ed83d274e835539d82e9cc8",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xf091867ec603a6628ed83d274e835539d82e9cc8.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xf091867ec603a6628ed83d274e835539d82e9cc8.png"
+ ],
+ "name": "Zeta",
+ "symbol": "ZETA",
+ "marketCap": "21400971.506834632538770786",
+ "price": "0.03566828584472438756",
+ "priceChange24hPercent": "-0.73",
+ "volume24h": "1587.18485060379570473",
+ "communityRecognized": true,
+ "key": "evm--1:0xf091867ec603a6628ed83d274e835539d82e9cc8",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x01791f726b4103694969820be083196cc7c045ff",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x01791f726b4103694969820be083196cc7c045ff-1760421978422.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x01791f726b4103694969820be083196cc7c045ff-1760421978422.png"
+ ],
+ "name": "Yield Basis",
+ "symbol": "YB",
+ "marketCap": "26757285.921695782866555835",
+ "price": "0.10412778266096706652",
+ "priceChange24hPercent": "5.63",
+ "volume24h": "49564.700673514190789248",
+ "communityRecognized": true,
+ "key": "evm--1:0x01791f726b4103694969820be083196cc7c045ff",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x0e397938c1aa0680954093495b70a9f5e2249aba",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x0e397938c1aa0680954093495b70a9f5e2249aba-1757750949444.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x0e397938c1aa0680954093495b70a9f5e2249aba-1757750949444.png"
+ ],
+ "name": "Invesco QQQ (Ondo Tokenized)",
+ "symbol": "QQQon",
+ "marketCap": "26048788.076142114499023002",
+ "price": "725.57711182079716042",
+ "priceChange24hPercent": "0.42",
+ "volume24h": "88695.28981372873267",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "纳指ETF",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--1:0x0e397938c1aa0680954093495b70a9f5e2249aba",
+ "kind": "stock",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x526526528f35ac738177003b8773b402b8df8143",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x526526528f35ac738177003b8773b402b8df8143-1781157791300.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x526526528f35ac738177003b8773b402b8df8143-1781157791300.png"
+ ],
+ "name": "Re Protocol",
+ "symbol": "RE",
+ "marketCap": "72709009.721774556329127997",
+ "price": "0.45557023635197090432",
+ "priceChange24hPercent": "1.45",
+ "volume24h": "548.3446152288675665",
+ "communityRecognized": true,
+ "key": "evm--1:0x526526528f35ac738177003b8773b402b8df8143",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xc6911796042b15d7fa4f6cde69e245ddcd3d9c31",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xc6911796042b15d7fa4f6cde69e245ddcd3d9c31-1784781386422.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xc6911796042b15d7fa4f6cde69e245ddcd3d9c31-1784781386422.png"
+ ],
+ "name": "Virtuals Protocol",
+ "symbol": "VIRTUAL",
+ "marketCap": "5995496.587507049618842862",
+ "price": "0.73197010913559321643",
+ "priceChange24hPercent": "2.04",
+ "volume24h": "3442199.326752585428500022",
+ "communityRecognized": true,
+ "key": "evm--4663:0xc6911796042b15d7fa4f6cde69e245ddcd3d9c31",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x03dfbbe0ac4e7bcdafd08ed41a400326b77d8c80",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x03dfbbe0ac4e7bcdafd08ed41a400326b77d8c80-1786795236632.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x03dfbbe0ac4e7bcdafd08ed41a400326b77d8c80-1786795236632.png"
+ ],
+ "name": "Johnson & Johnson • Robinhood Token",
+ "symbol": "JNJ",
+ "marketCap": "472773.77661877394734155",
+ "price": "272.67549793940589857359",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": false,
+ "key": "evm--4663:0x03dfbbe0ac4e7bcdafd08ed41a400326b77d8c80",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x8ea0eb3505f5b3bd2bbea0febae0ce850cc73ecc",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x8ea0eb3505f5b3bd2bbea0febae0ce850cc73ecc-1788523223085.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x8ea0eb3505f5b3bd2bbea0febae0ce850cc73ecc-1788523223085.png"
+ ],
+ "name": "OuroLayer",
+ "symbol": "OURO",
+ "marketCap": "4926817.198886655333428856",
+ "price": "0.00492681719888665533",
+ "priceChange24hPercent": "89.43",
+ "volume24h": "3352185.736400935665362198",
+ "communityRecognized": false,
+ "key": "evm--4663:0x8ea0eb3505f5b3bd2bbea0febae0ce850cc73ecc",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xded852de9fe9ba9b6f27f39e8e81cf851a5c79cc",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xded852de9fe9ba9b6f27f39e8e81cf851a5c79cc-1788264039086.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xded852de9fe9ba9b6f27f39e8e81cf851a5c79cc-1788264039086.png"
+ ],
+ "name": "ROBINCAT",
+ "symbol": "ROBINCAT",
+ "marketCap": "7190591.61911514001329259",
+ "price": "0.00719059161970446676",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": false,
+ "key": "evm--4663:0xded852de9fe9ba9b6f27f39e8e81cf851a5c79cc",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x58ffe4a942d3885baa22d7520691f611ef09e7aa",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x58ffe4a942d3885baa22d7520691f611ef09e7aa-1784793636318.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x58ffe4a942d3885baa22d7520691f611ef09e7aa-1784793636318.png"
+ ],
+ "name": "****************************************************",
+ "symbol": "TSM",
+ "marketCap": "1493062.937174059172916264",
+ "price": "432.78231534519635587615",
+ "priceChange24hPercent": "0.08",
+ "volume24h": "1660334.612905817073333261",
+ "communityRecognized": false,
+ "key": "evm--4663:0x58ffe4a942d3885baa22d7520691f611ef09e7aa",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xb9972ca7188e511174947e3936a5315ac7073277",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xb9972ca7188e511174947e3936a5315ac7073277-1787400211008.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xb9972ca7188e511174947e3936a5315ac7073277-1787400211008.png"
+ ],
+ "name": "Prologue",
+ "symbol": "PROLOGUE",
+ "marketCap": "10867196.245258369257184329",
+ "price": "0.01086719624525836926",
+ "priceChange24hPercent": "42.67",
+ "volume24h": "3337601.041500520556820744",
+ "communityRecognized": true,
+ "key": "evm--4663:0xb9972ca7188e511174947e3936a5315ac7073277",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x649792631ddbc52551fd765a17382b4d375b9b78",
+ "logoUrl": "https://static.oklink.com/cdn/web3/currency/token/large/4663-0x649792631ddbc52551fd765a17382b4d375b9b78-109/type=default_90_0?v=1788838801035",
+ "logoUrls": [
+ "https://static.oklink.com/cdn/web3/currency/token/large/4663-0x649792631ddbc52551fd765a17382b4d375b9b78-109/type=default_90_0?v=1788838801035"
+ ],
+ "name": "Wheel",
+ "symbol": "WHEEL",
+ "marketCap": "315341.094960666346220107",
+ "price": "0.00031534109496066635",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": false,
+ "key": "evm--4663:0x649792631ddbc52551fd765a17382b4d375b9b78",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x2a4a33a2163d005d8e7f1d9ac08d14c98db288d5",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x2a4a33a2163d005d8e7f1d9ac08d14c98db288d5-1788091203238.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x2a4a33a2163d005d8e7f1d9ac08d14c98db288d5-1788091203238.png"
+ ],
+ "name": "Twofold",
+ "symbol": "TWO",
+ "marketCap": "801501.985267976025979418",
+ "price": "0.00080150198526797603",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": false,
+ "key": "evm--4663:0x2a4a33a2163d005d8e7f1d9ac08d14c98db288d5",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x941ae714ec6d8130c7b75d67160ca08f1e7d11dd",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x941ae714ec6d8130c7b75d67160ca08f1e7d11dd-1784793655021.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x941ae714ec6d8130c7b75d67160ca08f1e7d11dd-1784793655021.png"
+ ],
+ "name": "Dell • Robinhood Token",
+ "symbol": "DELL",
+ "marketCap": "524541.224040588729763102",
+ "price": "520.9461926537941054146",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": false,
+ "key": "evm--4663:0x941ae714ec6d8130c7b75d67160ca08f1e7d11dd",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x319c5b3f8e46b70cb00769bc8020b4c08ddbc182",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/60e8ba9e65543c91a6d374d55be40e3da9889a57723bf9ee7899d799d9b77bad",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/60e8ba9e65543c91a6d374d55be40e3da9889a57723bf9ee7899d799d9b77bad"
+ ],
+ "name": "Scribble Network",
+ "symbol": "SCRIB",
+ "marketCap": "219268.473129512491825661",
+ "price": "0.00021926847312951249",
+ "priceChange24hPercent": "4955.48",
+ "volume24h": "5663189.872754040930705865",
+ "communityRecognized": false,
+ "key": "evm--4663:0x319c5b3f8e46b70cb00769bc8020b4c08ddbc182",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x4874845b0d4acffd896dde1e42828a543717af7f",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x4874845b0d4acffd896dde1e42828a543717af7f-1788264008657.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x4874845b0d4acffd896dde1e42828a543717af7f-1788264008657.png"
+ ],
+ "name": "ur mom",
+ "symbol": "urmom",
+ "marketCap": "1390992.305608446453105625",
+ "price": "0.00139099230560844645",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": false,
+ "key": "evm--4663:0x4874845b0d4acffd896dde1e42828a543717af7f",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xf6589f11bc40b669e584073f428b05562f568733",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xf6589f11bc40b669e584073f428b05562f568733-1786795211827.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xf6589f11bc40b669e584073f428b05562f568733-1786795211827.png"
+ ],
+ "name": "Snap • Robinhood Token",
+ "symbol": "SNAP",
+ "marketCap": "1451776.06331411971064837",
+ "price": "5.40733478793026374367",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": false,
+ "key": "evm--4663:0xf6589f11bc40b669e584073f428b05562f568733",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xccee82fe024c36fa15e1005ede3e9e4787e23d09",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xccee82fe024c36fa15e1005ede3e9e4787e23d09-1786795236632.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xccee82fe024c36fa15e1005ede3e9e4787e23d09-1786795236632.png"
+ ],
+ "name": "Hims & Hers Health • Robinhood Token",
+ "symbol": "HIMS",
+ "marketCap": "3699914.235348728047757073",
+ "price": "28.27030663922170740723",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": false,
+ "key": "evm--4663:0xccee82fe024c36fa15e1005ede3e9e4787e23d09",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x2f36ba966bf29f702bb290245406a5b0e3e1a66e",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x2f36ba966bf29f702bb290245406a5b0e3e1a66e-1787918402449.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x2f36ba966bf29f702bb290245406a5b0e3e1a66e-1787918402449.png"
+ ],
+ "name": "Swole Cat",
+ "symbol": "SWOLE",
+ "marketCap": "1945388.58018398822410244",
+ "price": "0.00198323131846031836",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": false,
+ "key": "evm--4663:0x2f36ba966bf29f702bb290245406a5b0e3e1a66e",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x57c0e45cb534413d1c20a4240955d6bb250bb4f1",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x57c0e45cb534413d1c20a4240955d6bb250bb4f1-1785005199051.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x57c0e45cb534413d1c20a4240955d6bb250bb4f1-1785005199051.png"
+ ],
+ "name": "up",
+ "symbol": "UP",
+ "marketCap": "10939824.275003627272484814",
+ "price": "0.54014115573703348966",
+ "priceChange24hPercent": "-13.38",
+ "volume24h": "1174358.45962533006569663823",
+ "communityRecognized": true,
+ "key": "evm--4663:0x57c0e45cb534413d1c20a4240955d6bb250bb4f1",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x7fe995a80075df3dc8ae11a9b82c7fe4202cd87f",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x7fe995a80075df3dc8ae11a9b82c7fe4202cd87f-1785325956569.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x7fe995a80075df3dc8ae11a9b82c7fe4202cd87f-1785325956569.png"
+ ],
+ "name": "Thinking Cat",
+ "symbol": "HMM",
+ "marketCap": "13039576.030590609490030763",
+ "price": "0.01320187144939991148",
+ "priceChange24hPercent": "-15.91",
+ "volume24h": "1717537.55168642575705604436",
+ "communityRecognized": true,
+ "key": "evm--4663:0x7fe995a80075df3dc8ae11a9b82c7fe4202cd87f",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xcacb0e9caccee63ec4d82952e561a291c68bcb68",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xcacb0e9caccee63ec4d82952e561a291c68bcb68-1788091369454.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xcacb0e9caccee63ec4d82952e561a291c68bcb68-1788091369454.png"
+ ],
+ "name": "Golden Goose",
+ "symbol": "GG",
+ "marketCap": "3896619.35742371599884368",
+ "price": "0.003896619357423716",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": false,
+ "key": "evm--4663:0xcacb0e9caccee63ec4d82952e561a291c68bcb68",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x5d6ef090a1461b11c9427ac319260122d1c61e18",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x5d6ef090a1461b11c9427ac319260122d1c61e18-1788353880496.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x5d6ef090a1461b11c9427ac319260122d1c61e18-1788353880496.png"
+ ],
+ "name": "iCoin",
+ "symbol": "ICOIN",
+ "marketCap": "6794960.644377991165801061",
+ "price": "0.00682768607984745341",
+ "priceChange24hPercent": "24.88",
+ "volume24h": "2599801.989203729299101736",
+ "communityRecognized": false,
+ "key": "evm--4663:0x5d6ef090a1461b11c9427ac319260122d1c61e18",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xf0c4bf4c582cb3836e98394b1d4e7b7281101be8",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xf0c4bf4c582cb3836e98394b1d4e7b7281101be8-1784793816237.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xf0c4bf4c582cb3836e98394b1d4e7b7281101be8-1784793816237.png"
+ ],
+ "name": "Roblox • Robinhood Token",
+ "symbol": "RBLX",
+ "marketCap": "878984.023486966066749544",
+ "price": "43.13789657392896344331",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": false,
+ "key": "evm--4663:0xf0c4bf4c582cb3836e98394b1d4e7b7281101be8",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xc35968c7f5475bb03a43c7382526f4118e01c0de",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xc35968c7f5475bb03a43c7382526f4118e01c0de-1785145316583.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xc35968c7f5475bb03a43c7382526f4118e01c0de-1785145316583.png"
+ ],
+ "name": "Robinvista",
+ "symbol": "VISTA",
+ "marketCap": "1460204.861878166770380165",
+ "price": "0.00153509736065304017",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": false,
+ "key": "evm--4663:0xc35968c7f5475bb03a43c7382526f4118e01c0de",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x32ac8c1d7672667d5ebdea22935f7b06fc8d496f",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x32ac8c1d7672667d5ebdea22935f7b06fc8d496f-1788264019087.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x32ac8c1d7672667d5ebdea22935f7b06fc8d496f-1788264019087.png"
+ ],
+ "name": "HOOD",
+ "symbol": "HOOD",
+ "marketCap": "1325766.900758184127268845",
+ "price": "123.39448593926314245221",
+ "priceChange24hPercent": "-3",
+ "volume24h": "5216518.769511768149962521",
+ "communityRecognized": false,
+ "key": "evm--4663:0x32ac8c1d7672667d5ebdea22935f7b06fc8d496f",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x4d21483a44bf67a86b77e3da301411880797d452",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x4d21483a44bf67a86b77e3da301411880797d452-1784793663856.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x4d21483a44bf67a86b77e3da301411880797d452-1784793663856.png"
+ ],
+ "name": "Boeing • Robinhood Token",
+ "symbol": "BA",
+ "marketCap": "257302.994465980552442396",
+ "price": "209.97641150332707627755",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": false,
+ "key": "evm--4663:0x4d21483a44bf67a86b77e3da301411880797d452",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x829b217ad539ccc53b18e53c63873333650e60f9",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/cd97ef7a1d3188b2454c4613e6d5fbf7d21f387cd59055aab3fe022119d55ca2",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/cd97ef7a1d3188b2454c4613e6d5fbf7d21f387cd59055aab3fe022119d55ca2"
+ ],
+ "name": "cyberbeer",
+ "symbol": "cyberbeer",
+ "marketCap": "193829.036784379513561768",
+ "price": "0.00019382903678437951",
+ "priceChange24hPercent": "4043.42",
+ "volume24h": "8747134.564810628784585536",
+ "communityRecognized": false,
+ "key": "evm--4663:0x829b217ad539ccc53b18e53c63873333650e60f9",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x01637b14b7378b99de75a64d50656d98488d9a4d",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x01637b14b7378b99de75a64d50656d98488d9a4d-1784777167517.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x01637b14b7378b99de75a64d50656d98488d9a4d-1784777167517.png"
+ ],
+ "name": "Lady Marian",
+ "symbol": "MARIAN",
+ "marketCap": "628696.510942059642535741",
+ "price": "0.00063887984115372445",
+ "priceChange24hPercent": "-11.58",
+ "volume24h": "104202.168378924491549268",
+ "communityRecognized": false,
+ "key": "evm--4663:0x01637b14b7378b99de75a64d50656d98488d9a4d",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x0339f5459fc690ac85f1782e15782a151b4a9e1b",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x0339f5459fc690ac85f1782e15782a151b4a9e1b-1785758409171.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x0339f5459fc690ac85f1782e15782a151b4a9e1b-1785758409171.png"
+ ],
+ "name": "Robinhood Wallet",
+ "symbol": "WALLET",
+ "marketCap": "26136075.878213180937851308",
+ "price": "0.02765169855905048077",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": false,
+ "key": "evm--4663:0x0339f5459fc690ac85f1782e15782a151b4a9e1b",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x350cadde605e083f58d286e8b3a6b086685fa1ec",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/911e7c6d880430e804a2ae69b44d89d663946caececad6c63a7b0a0bbc6a91d8",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/911e7c6d880430e804a2ae69b44d89d663946caececad6c63a7b0a0bbc6a91d8"
+ ],
+ "name": "Commotitties",
+ "symbol": "Titties",
+ "marketCap": "339691.55347485501300593",
+ "price": "0.00033969155347485501",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": false,
+ "key": "evm--4663:0x350cadde605e083f58d286e8b3a6b086685fa1ec",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x14641000a501bdc736116abf84e6fcea9b90a713",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x14641000a501bdc736116abf84e6fcea9b90a713-1788178423240.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x14641000a501bdc736116abf84e6fcea9b90a713-1788178423240.png"
+ ],
+ "name": "MESH Gateway",
+ "symbol": "MESH",
+ "marketCap": "1208210.549215450362706768",
+ "price": "0.00120821054921545036",
+ "priceChange24hPercent": "4.5",
+ "volume24h": "188144.4713104379707545156",
+ "communityRecognized": false,
+ "key": "evm--4663:0x14641000a501bdc736116abf84e6fcea9b90a713",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x47366e0f257ac009e82bd46fb74e2fb50826ce98",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x47366e0f257ac009e82bd46fb74e2fb50826ce98-1788782573410.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x47366e0f257ac009e82bd46fb74e2fb50826ce98-1788782573410.png"
+ ],
+ "name": "Agent OBS",
+ "symbol": "AOBS",
+ "marketCap": "747177.187161812745613373",
+ "price": "0.00074717718716181275",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": false,
+ "key": "evm--4663:0x47366e0f257ac009e82bd46fb74e2fb50826ce98",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x8005d266423c7ea827372c9c864491e5786600ea",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x8005d266423c7ea827372c9c864491e5786600ea-1784793642266.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x8005d266423c7ea827372c9c864491e5786600ea-1784793642266.png"
+ ],
+ "name": "Eli Lilly • Robinhood Token",
+ "symbol": "LLY",
+ "marketCap": "3656579.752548914628009893",
+ "price": "1147.72362638036987585255",
+ "priceChange24hPercent": "0",
+ "volume24h": "5687139.743953293159041768",
+ "communityRecognized": false,
+ "key": "evm--4663:0x8005d266423c7ea827372c9c864491e5786600ea",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xc6e8c393d46b685c2fb2177f759f2b16eb7a7d54",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xc6e8c393d46b685c2fb2177f759f2b16eb7a7d54-1788610210822.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xc6e8c393d46b685c2fb2177f759f2b16eb7a7d54-1788610210822.png"
+ ],
+ "name": "Artificial Neko",
+ "symbol": "NEKO",
+ "marketCap": "647276.254200479756141281",
+ "price": "0.00064727625420047976",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": false,
+ "key": "evm--4663:0xc6e8c393d46b685c2fb2177f759f2b16eb7a7d54",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xbf3e53713a53e9c3d5d1ddc25dd2c65669244663",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xbf3e53713a53e9c3d5d1ddc25dd2c65669244663-1788004852603.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xbf3e53713a53e9c3d5d1ddc25dd2c65669244663-1788004852603.png"
+ ],
+ "name": "Pussy Cat Club",
+ "symbol": "PCC",
+ "marketCap": "4137640.067734894772920102",
+ "price": "0.00413764006773489477",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": false,
+ "key": "evm--4663:0xbf3e53713a53e9c3d5d1ddc25dd2c65669244663",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x5759a852243a56a48853af1d28fd4e0f33747c9b",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x5759a852243a56a48853af1d28fd4e0f33747c9b-1788610268473.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x5759a852243a56a48853af1d28fd4e0f33747c9b-1788610268473.png"
+ ],
+ "name": "Robinhood Asteroid",
+ "symbol": "18932",
+ "marketCap": "523109.646147250458358492",
+ "price": "0.00052310964614725046",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": false,
+ "key": "evm--4663:0x5759a852243a56a48853af1d28fd4e0f33747c9b",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x6547911e5b8f3cfa9e6bca37ddde3009e83faa2d",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x6547911e5b8f3cfa9e6bca37ddde3009e83faa2d-1787745669587.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x6547911e5b8f3cfa9e6bca37ddde3009e83faa2d-1787745669587.png"
+ ],
+ "name": "Stock Miners Fuel",
+ "symbol": "FUEL",
+ "marketCap": "274019.769547486526300681",
+ "price": "0.00032909145227569654",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": false,
+ "key": "evm--4663:0x6547911e5b8f3cfa9e6bca37ddde3009e83faa2d",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x6b12ec435f15f823ee3c550e9013123e4187429b",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x6b12ec435f15f823ee3c550e9013123e4187429b-1788696318342.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x6b12ec435f15f823ee3c550e9013123e4187429b-1788696318342.png"
+ ],
+ "name": "Rocket",
+ "symbol": "🚀",
+ "marketCap": "351431.232745266008463935",
+ "price": "0.00035143123274526601",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": false,
+ "key": "evm--4663:0x6b12ec435f15f823ee3c550e9013123e4187429b",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xf2e122a481b440c40eee7a7ca6d5eef65a591b76",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xf2e122a481b440c40eee7a7ca6d5eef65a591b76-1788697706307.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xf2e122a481b440c40eee7a7ca6d5eef65a591b76-1788697706307.png"
+ ],
+ "name": "Quantum Cats",
+ "symbol": "QC",
+ "marketCap": "1168948.501236980233192217",
+ "price": "0.00131162658364001449",
+ "priceChange24hPercent": "187.68",
+ "volume24h": "1339991.272153330440401164",
+ "communityRecognized": false,
+ "key": "evm--4663:0xf2e122a481b440c40eee7a7ca6d5eef65a591b76",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x822cc93ffd030293e9842c30bbd678f530701867",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x822cc93ffd030293e9842c30bbd678f530701867-1784780807736.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x822cc93ffd030293e9842c30bbd678f530701867-1784780807736.png"
+ ],
+ "name": "Bloom Energy • Robinhood Token",
+ "symbol": "BE",
+ "marketCap": "624295.128366597621044695",
+ "price": "273.44796879168521540422",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": false,
+ "key": "evm--4663:0x822cc93ffd030293e9842c30bbd678f530701867",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x4e62068525ab11fe768e29dfd00ef909b9803016",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x4e62068525ab11fe768e29dfd00ef909b9803016-1784793635480.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x4e62068525ab11fe768e29dfd00ef909b9803016-1784793635480.png"
+ ],
+ "name": "Lululemon • Robinhood Token",
+ "symbol": "LULU",
+ "marketCap": "1213489.374966781789057352",
+ "price": "100.01053895604716639686",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": false,
+ "key": "evm--4663:0x4e62068525ab11fe768e29dfd00ef909b9803016",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xd18528b39da6464b3662c331a52181ecb15b1e18",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xd18528b39da6464b3662c331a52181ecb15b1e18-1788004841997.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xd18528b39da6464b3662c331a52181ecb15b1e18-1788004841997.png"
+ ],
+ "name": "SAYLORMOON",
+ "symbol": "SAYLORMOON",
+ "marketCap": "2608877.363720267405226701",
+ "price": "0.00260887736372026741",
+ "priceChange24hPercent": "-22.22",
+ "volume24h": "1116047.503440146240335485",
+ "communityRecognized": false,
+ "key": "evm--4663:0xd18528b39da6464b3662c331a52181ecb15b1e18",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x0d257ca40d40090be60c2d2ed5bb3535392838cc",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x0d257ca40d40090be60c2d2ed5bb3535392838cc-1788004841997.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x0d257ca40d40090be60c2d2ed5bb3535392838cc-1788004841997.png"
+ ],
+ "name": "Robinhood10 Index",
+ "symbol": "HOOD10",
+ "marketCap": "405196.485759144889519565",
+ "price": "0.00040906055718335232",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": false,
+ "key": "evm--4663:0x0d257ca40d40090be60c2d2ed5bb3535392838cc",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xee5576fa1bcaa380e591d01245f406f3f384eb01",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xee5576fa1bcaa380e591d01245f406f3f384eb01-1787832045009.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xee5576fa1bcaa380e591d01245f406f3f384eb01-1787832045009.png"
+ ],
+ "name": "Down to Finance",
+ "symbol": "DTF",
+ "marketCap": "8682703.707015428616989098",
+ "price": "0.00868270374727847651",
+ "priceChange24hPercent": "-21.27",
+ "volume24h": "2074057.2942562462486455924",
+ "communityRecognized": false,
+ "key": "evm--4663:0xee5576fa1bcaa380e591d01245f406f3f384eb01",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x8729b8979bbfbaed759b95901c5c076b49c36bf5",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/da52d70d6dd9c8af1a1b501d38668404894673b3ca2fc292ca6d03cbebe09ecc",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/da52d70d6dd9c8af1a1b501d38668404894673b3ca2fc292ca6d03cbebe09ecc"
+ ],
+ "name": "EXIT ENGINE",
+ "symbol": "EXIT",
+ "marketCap": "223764.338597723805524923",
+ "price": "0.00022376433859772381",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": false,
+ "key": "evm--4663:0x8729b8979bbfbaed759b95901c5c076b49c36bf5",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x9fa1c5e90a11294f83a9f135b81ad1b537a5ffdc",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x9fa1c5e90a11294f83a9f135b81ad1b537a5ffdc-1788696957669.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x9fa1c5e90a11294f83a9f135b81ad1b537a5ffdc-1788696957669.png"
+ ],
+ "name": "ZEAL",
+ "symbol": "ZEAL",
+ "marketCap": "1048980.588938960541843968",
+ "price": "0.00104899150394290638",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": false,
+ "key": "evm--4663:0x9fa1c5e90a11294f83a9f135b81ad1b537a5ffdc",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xbbd09f72b025360fee5c928053dca6248d35be54",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xbbd09f72b025360fee5c928053dca6248d35be54-1786881632532.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xbbd09f72b025360fee5c928053dca6248d35be54-1786881632532.png"
+ ],
+ "name": "ON Semiconductor • Robinhood Token",
+ "symbol": "ON",
+ "marketCap": "113275.155798233593657905",
+ "price": "75.60472402777470701443",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": false,
+ "key": "evm--4663:0xbbd09f72b025360fee5c928053dca6248d35be54",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x71dff63057274f5d20330c5f18b5922b97660f9c",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x71dff63057274f5d20330c5f18b5922b97660f9c-1788610210822.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x71dff63057274f5d20330c5f18b5922b97660f9c-1788610210822.png"
+ ],
+ "name": "Artificial Pepe",
+ "symbol": "AP",
+ "marketCap": "1133542.74249571499612414",
+ "price": "0.001133542742495715",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": false,
+ "key": "evm--4663:0x71dff63057274f5d20330c5f18b5922b97660f9c",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x7168563b0e70124f0c7c0cf2f13a8d1861baf4a5",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x7168563b0e70124f0c7c0cf2f13a8d1861baf4a5-1785276114071.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x7168563b0e70124f0c7c0cf2f13a8d1861baf4a5-1785276114071.png"
+ ],
+ "name": "Backed",
+ "symbol": "BACKED",
+ "marketCap": "683975.046016032677877222",
+ "price": "0.00072634119132098617",
+ "priceChange24hPercent": "-29.11",
+ "volume24h": "110998.05371009463281507",
+ "communityRecognized": false,
+ "key": "evm--4663:0x7168563b0e70124f0c7c0cf2f13a8d1861baf4a5",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xfe2f0fb0c00d19786a8abf98d4b1f1ac8763b167",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xfe2f0fb0c00d19786a8abf98d4b1f1ac8763b167-1788350974556.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xfe2f0fb0c00d19786a8abf98d4b1f1ac8763b167-1788350974556.png"
+ ],
+ "name": "OrdoFi",
+ "symbol": "ORDO",
+ "marketCap": "957068.714120997363467696",
+ "price": "0.00114104348297268439",
+ "priceChange24hPercent": "-45.74",
+ "volume24h": "437406.51280425979070913",
+ "communityRecognized": false,
+ "key": "evm--4663:0xfe2f0fb0c00d19786a8abf98d4b1f1ac8763b167",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xa3a273b2b389e718c0c490a4baee9347cd4a007b",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xa3a273b2b389e718c0c490a4baee9347cd4a007b-1788698209882.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xa3a273b2b389e718c0c490a4baee9347cd4a007b-1788698209882.png"
+ ],
+ "name": "TAMPONS",
+ "symbol": "TAMPONS",
+ "marketCap": "291576.350752405479894338",
+ "price": "0.00029157635075240548",
+ "priceChange24hPercent": "24.9",
+ "volume24h": "1451217.642954507984489867",
+ "communityRecognized": false,
+ "key": "evm--4663:0xa3a273b2b389e718c0c490a4baee9347cd4a007b",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xf0568863195770965a6d8abb0aa87f4314b80320",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xf0568863195770965a6d8abb0aa87f4314b80320-1785239850960.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xf0568863195770965a6d8abb0aa87f4314b80320-1785239850960.png"
+ ],
+ "name": "SLIPPY",
+ "symbol": "SLIPPY",
+ "marketCap": "2285143.7736062878747713",
+ "price": "0.0022851443913658089",
+ "priceChange24hPercent": "8.03",
+ "volume24h": "125559.58999912580556649352",
+ "communityRecognized": false,
+ "key": "evm--4663:0xf0568863195770965a6d8abb0aa87f4314b80320",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x6245e67affa44a23077f0ea7f981a8dc743a0c47",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x6245e67affa44a23077f0ea7f981a8dc743a0c47-1785931207872.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x6245e67affa44a23077f0ea7f981a8dc743a0c47-1785931207872.png"
+ ],
+ "name": "frong",
+ "symbol": "FRONG",
+ "marketCap": "5491401.474828610941251233",
+ "price": "0.00549140147482861094",
+ "priceChange24hPercent": "-9.05",
+ "volume24h": "1696846.5958274176329043598",
+ "communityRecognized": false,
+ "key": "evm--4663:0x6245e67affa44a23077f0ea7f981a8dc743a0c47",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xac77646bcff9d52e99800534192e0290933f4094",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xac77646bcff9d52e99800534192e0290933f4094-1787572842778.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xac77646bcff9d52e99800534192e0290933f4094-1787572842778.png"
+ ],
+ "name": "Martians",
+ "symbol": "MARTIANS",
+ "marketCap": "421107.798117296771237422",
+ "price": "0.00042110779812399404",
+ "priceChange24hPercent": "-15.12",
+ "volume24h": "103002.20281301676551478",
+ "communityRecognized": false,
+ "key": "evm--4663:0xac77646bcff9d52e99800534192e0290933f4094",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x69c68e4c00c6f6e4ac027300293a879be1e11e18",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x69c68e4c00c6f6e4ac027300293a879be1e11e18-1785758427663.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x69c68e4c00c6f6e4ac027300293a879be1e11e18-1785758427663.png"
+ ],
+ "name": "ap",
+ "symbol": "AP",
+ "marketCap": "763612.75535946328125007",
+ "price": "0.00076361275535946328",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": false,
+ "key": "evm--4663:0x69c68e4c00c6f6e4ac027300293a879be1e11e18",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xfde6b5d9bb419b10c23268c74e369abff39c0460",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xfde6b5d9bb419b10c23268c74e369abff39c0460-1787054422497.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xfde6b5d9bb419b10c23268c74e369abff39c0460-1787054422497.png"
+ ],
+ "name": "Red Cat • Robinhood Token",
+ "symbol": "RCAT",
+ "marketCap": "174855.222156002873833176",
+ "price": "8.2973151788976736861",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": false,
+ "key": "evm--4663:0xfde6b5d9bb419b10c23268c74e369abff39c0460",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x1a7eaec7d9e7e5123416b7b29ae8bc9b57c00922",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/bb8ec2c78167c1a4d85a02b0f3c174ba8b5463584504e1802dc2d8bea04d425d",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/bb8ec2c78167c1a4d85a02b0f3c174ba8b5463584504e1802dc2d8bea04d425d"
+ ],
+ "name": "Lucky the cat",
+ "symbol": "LUCKY",
+ "marketCap": "805332.57742409533209769",
+ "price": "0.00080533257742409533",
+ "priceChange24hPercent": "15348.81",
+ "volume24h": "2459764.646626775419927531",
+ "communityRecognized": false,
+ "key": "evm--4663:0x1a7eaec7d9e7e5123416b7b29ae8bc9b57c00922",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xf05bcf94c8c020e43de8927b491c6be8b96777e3",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/a1d4ea5354451247f86e166f929ce5bb3ff847ac4adb19417d85ba0180bbda5e",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/a1d4ea5354451247f86e166f929ce5bb3ff847ac4adb19417d85ba0180bbda5e"
+ ],
+ "name": "QUOTRON STRATEGY",
+ "symbol": "QSTRAT",
+ "marketCap": "666696.723084471405430027",
+ "price": "0.00067072104938075594",
+ "priceChange24hPercent": "-36.59",
+ "volume24h": "1402720.123024376116986329",
+ "communityRecognized": false,
+ "key": "evm--4663:0xf05bcf94c8c020e43de8927b491c6be8b96777e3",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xbef75684c43c4ea7bd18dd532a2244674ee8b926",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xbef75684c43c4ea7bd18dd532a2244674ee8b926-1784793814498.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xbef75684c43c4ea7bd18dd532a2244674ee8b926-1784793814498.png"
+ ],
+ "name": "Nano Nuclear Energy • Robinhood Token",
+ "symbol": "NNE",
+ "marketCap": "53259.606818762157509999",
+ "price": "17.73401997464814143035",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": false,
+ "key": "evm--4663:0xbef75684c43c4ea7bd18dd532a2244674ee8b926",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x000b2164a76560323163343431db8be550f164b8",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x000b2164a76560323163343431db8be550f164b8-1788523244923.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x000b2164a76560323163343431db8be550f164b8-1788523244923.png"
+ ],
+ "name": "Chrome Dino",
+ "symbol": "DINO",
+ "marketCap": "601059.844869995937586289",
+ "price": "0.00060105984486999594",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": false,
+ "key": "evm--4663:0x000b2164a76560323163343431db8be550f164b8",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xfa89ed9d12bf74add8253ddfaa426c4d8a0fa603",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xfa89ed9d12bf74add8253ddfaa426c4d8a0fa603-1788609777779.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xfa89ed9d12bf74add8253ddfaa426c4d8a0fa603-1788609777779.png"
+ ],
+ "name": "Shivolink",
+ "symbol": "SLINK",
+ "marketCap": "179369.84960020692323709",
+ "price": "0.00017936984976439931",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": false,
+ "key": "evm--4663:0xfa89ed9d12bf74add8253ddfaa426c4d8a0fa603",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xb7eaecc89d3e2f9fd597d61726ae824900db8360",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xb7eaecc89d3e2f9fd597d61726ae824900db8360-1788610384449.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xb7eaecc89d3e2f9fd597d61726ae824900db8360-1788610384449.png"
+ ],
+ "name": "Stratton Market",
+ "symbol": "STRATTON",
+ "marketCap": "4285202.39674889643268756",
+ "price": "0.00428520239674889643",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": false,
+ "key": "evm--4663:0xb7eaecc89d3e2f9fd597d61726ae824900db8360",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x532c5583671870723ceef573600208af49c87c54",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x532c5583671870723ceef573600208af49c87c54-1787572802676.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x532c5583671870723ceef573600208af49c87c54-1787572802676.png"
+ ],
+ "name": "Canopy Finance",
+ "symbol": "CNPY",
+ "marketCap": "2043406.519085803891568646",
+ "price": "0.00268033834862245422",
+ "priceChange24hPercent": "-4.5",
+ "volume24h": "1150267.74395023183944733235",
+ "communityRecognized": false,
+ "key": "evm--4663:0x532c5583671870723ceef573600208af49c87c54",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xc72f232a6869e6cf34dc06129affd07f8a2a246a",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xc72f232a6869e6cf34dc06129affd07f8a2a246a-1786104032870.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xc72f232a6869e6cf34dc06129affd07f8a2a246a-1786104032870.png"
+ ],
+ "name": "Mancer",
+ "symbol": "MANCER",
+ "marketCap": "5440876.002220110409619299",
+ "price": "0.00217635040088804416",
+ "priceChange24hPercent": "-8.3",
+ "volume24h": "646352.26697227264658006201",
+ "communityRecognized": false,
+ "key": "evm--4663:0xc72f232a6869e6cf34dc06129affd07f8a2a246a",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x84cab63bc87912e71ad199ff14a0ba45de68fef8",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x84cab63bc87912e71ad199ff14a0ba45de68fef8-1786795206969.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x84cab63bc87912e71ad199ff14a0ba45de68fef8-1786795206969.png"
+ ],
+ "name": "SK hynix Inc. American Depositary Shares • Robinhood Token",
+ "symbol": "SKHY",
+ "marketCap": "848170.211121570476232188",
+ "price": "186.8200620928412397607",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": false,
+ "key": "evm--4663:0x84cab63bc87912e71ad199ff14a0ba45de68fef8",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x4d41ccaa0eeb95c6ebc56d53adf637198c901e18",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/68ccb386a4a3267b7da38dc5a978adcedc9f0268e78da7605318a384eda4f855",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/68ccb386a4a3267b7da38dc5a978adcedc9f0268e78da7605318a384eda4f855"
+ ],
+ "name": "SENDER",
+ "symbol": "SENDER",
+ "marketCap": "220679.248263885439238517",
+ "price": "0.00022067924826388544",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": false,
+ "key": "evm--4663:0x4d41ccaa0eeb95c6ebc56d53adf637198c901e18",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x52f380a513112428723abf8afed125824e4a1e18",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x52f380a513112428723abf8afed125824e4a1e18-1788436924257.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x52f380a513112428723abf8afed125824e4a1e18-1788436924257.png"
+ ],
+ "name": "Peptides",
+ "symbol": "PEPTIDES",
+ "marketCap": "349702.092655391272595894",
+ "price": "0.00034970209265539127",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": false,
+ "key": "evm--4663:0x52f380a513112428723abf8afed125824e4a1e18",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x2f219c706e052dc25372a0c59dcc2afe0cab12f3",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x2f219c706e052dc25372a0c59dcc2afe0cab12f3-1788697893292.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x2f219c706e052dc25372a0c59dcc2afe0cab12f3-1788697893292.png"
+ ],
+ "name": "Market Cap",
+ "symbol": "CAP",
+ "marketCap": "211749.197113901086298138",
+ "price": "0.00021174919714704178",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": false,
+ "key": "evm--4663:0x2f219c706e052dc25372a0c59dcc2afe0cab12f3",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xd7321801caae694090694ff55a9323139f043b88",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xd7321801caae694090694ff55a9323139f043b88-1784779777690.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xd7321801caae694090694ff55a9323139f043b88-1784779777690.png"
+ ],
+ "name": "The Juggernaut",
+ "symbol": "JUGGERNAUT",
+ "marketCap": "3019903.208555332697636294",
+ "price": "0.00322096834857655848",
+ "priceChange24hPercent": "-16.17",
+ "volume24h": "623684.55697067497437462766",
+ "communityRecognized": false,
+ "key": "evm--4663:0xd7321801caae694090694ff55a9323139f043b88",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x385b36ff682ab4c76e7c37a66b96aabc466471d5",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x385b36ff682ab4c76e7c37a66b96aabc466471d5-1786017815496.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x385b36ff682ab4c76e7c37a66b96aabc466471d5-1786017815496.png"
+ ],
+ "name": "pools.trade",
+ "symbol": "POOLS",
+ "marketCap": "1556630.67532955837106892",
+ "price": "0.0015566308898872704",
+ "priceChange24hPercent": "-21.88",
+ "volume24h": "890048.23832078131258696",
+ "communityRecognized": false,
+ "key": "evm--4663:0x385b36ff682ab4c76e7c37a66b96aabc466471d5",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x808d280e7749d2fab58c2504fc3d87f0d8606753",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/cfc384c50070ed098c8ebd3084525e0fc3d99a6b95a15c0a4b346a5c678c45b0",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/cfc384c50070ed098c8ebd3084525e0fc3d99a6b95a15c0a4b346a5c678c45b0"
+ ],
+ "name": "HOODIECOIN",
+ "symbol": "HOC",
+ "marketCap": "41092.360086418509240619",
+ "price": "0.00004109236008641851",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": false,
+ "key": "evm--4663:0x808d280e7749d2fab58c2504fc3d87f0d8606753",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x9e7abd3c9139d14e4c86dce0e455aab7a0c2fb3e",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x9e7abd3c9139d14e4c86dce0e455aab7a0c2fb3e-1787400073723.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x9e7abd3c9139d14e4c86dce0e455aab7a0c2fb3e-1787400073723.png"
+ ],
+ "name": "WhiteFiber, Inc. • Robinhood Token",
+ "symbol": "WYFI",
+ "marketCap": "218936.077035330690421699",
+ "price": "19.22009287596069706122",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": false,
+ "key": "evm--4663:0x9e7abd3c9139d14e4c86dce0e455aab7a0c2fb3e",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x9b23573b156b52565012f5ce02cdf60afbaa70be",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x9b23573b156b52565012f5ce02cdf60afbaa70be-1784793671717.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x9b23573b156b52565012f5ce02cdf60afbaa70be-1784793671717.png"
+ ],
+ "name": "Penguin Solutions • Robinhood Token",
+ "symbol": "PENG",
+ "marketCap": "303836.394771971831054679",
+ "price": "51.82782851253503538496",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": false,
+ "key": "evm--4663:0x9b23573b156b52565012f5ce02cdf60afbaa70be",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xb0992820e760d836549ba69bc7598b4af75dee03",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xb0992820e760d836549ba69bc7598b4af75dee03-1784780805755.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xb0992820e760d836549ba69bc7598b4af75dee03-1784780805755.png"
+ ],
+ "name": "Oracle • Robinhood Token",
+ "symbol": "ORCL",
+ "marketCap": "601850.18497312438121263",
+ "price": "161.97745369038217008876",
+ "priceChange24hPercent": "0.19",
+ "volume24h": "7263.78502621010760324",
+ "communityRecognized": false,
+ "key": "evm--4663:0xb0992820e760d836549ba69bc7598b4af75dee03",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xc7db9a7034d061feca50f0a25636bcc83ca717d9",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/10b09533a117502080d981e8e84fcf6e2ab3e7ff05c60c0d04f259f8e0a07585",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/10b09533a117502080d981e8e84fcf6e2ab3e7ff05c60c0d04f259f8e0a07585"
+ ],
+ "name": "Fab",
+ "symbol": "FAB",
+ "marketCap": "836966.571803669544660081",
+ "price": "0.00085387138809895556",
+ "priceChange24hPercent": "3852.96",
+ "volume24h": "3002924.980689038147612283",
+ "communityRecognized": false,
+ "key": "evm--4663:0xc7db9a7034d061feca50f0a25636bcc83ca717d9",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xf16d26703d6d9b2b9bf10b6d5af6594598ec1a68",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/fc7cc3617cd3a98242ad2eed63135659025d934f072e6c065f5000ccd8c601a2",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/fc7cc3617cd3a98242ad2eed63135659025d934f072e6c065f5000ccd8c601a2"
+ ],
+ "name": "StockHooks",
+ "symbol": "STOCKHOOKS",
+ "marketCap": "507455.332637122819860818",
+ "price": "0.00050745533263712282",
+ "priceChange24hPercent": "98.91",
+ "volume24h": "931694.03913717758566582",
+ "communityRecognized": false,
+ "key": "evm--4663:0xf16d26703d6d9b2b9bf10b6d5af6594598ec1a68",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x4927370e1053eb0ed11cfeb9f6972e2460a7f560",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/c34541d62d6a52824b542675bc228d6cb4b415d4ce50598ab258a1a28f75eae8",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/c34541d62d6a52824b542675bc228d6cb4b415d4ce50598ab258a1a28f75eae8"
+ ],
+ "name": "RPG",
+ "symbol": "RPG",
+ "marketCap": "523557.279582898628260673",
+ "price": "0.00052355727958289863",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": false,
+ "key": "evm--4663:0x4927370e1053eb0ed11cfeb9f6972e2460a7f560",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x51250b135174ca09450ec01c4aff73cf69dbb590",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x51250b135174ca09450ec01c4aff73cf69dbb590-1788177871008.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x51250b135174ca09450ec01c4aff73cf69dbb590-1788177871008.png"
+ ],
+ "name": "NovaAI",
+ "symbol": "NOVAAI",
+ "marketCap": "205177250.881058881320231645",
+ "price": "0.20517725088105888132",
+ "priceChange24hPercent": "48.14",
+ "volume24h": "1717220.24027482687030944",
+ "communityRecognized": false,
+ "key": "evm--4663:0x51250b135174ca09450ec01c4aff73cf69dbb590",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xd2a577e92438fd0c1f2485f4fb91b9f866eb1e6c",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xd2a577e92438fd0c1f2485f4fb91b9f866eb1e6c-1788178809817.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xd2a577e92438fd0c1f2485f4fb91b9f866eb1e6c-1788178809817.png"
+ ],
+ "name": "Pepons",
+ "symbol": "PEPONS",
+ "marketCap": "686067.19654221425384943",
+ "price": "0.00068606719654224442",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": false,
+ "key": "evm--4663:0xd2a577e92438fd0c1f2485f4fb91b9f866eb1e6c",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x59cec17c13cc3d34f5fbc31af26d8091da551e18",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/13189bbd4c1e382e43a5ac50c2f9e4bc93712959426d5ce0d5e0972b4b4760c5",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/13189bbd4c1e382e43a5ac50c2f9e4bc93712959426d5ce0d5e0972b4b4760c5"
+ ],
+ "name": "LMI",
+ "symbol": "LMI",
+ "marketCap": "96532.313132967152968751",
+ "price": "0.00009653231313296715",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": false,
+ "key": "evm--4663:0x59cec17c13cc3d34f5fbc31af26d8091da551e18",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x022c90ed10c2172bb9b2d54838bbe5d0827c4af1",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x022c90ed10c2172bb9b2d54838bbe5d0827c4af1-1788523280801.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x022c90ed10c2172bb9b2d54838bbe5d0827c4af1-1788523280801.png"
+ ],
+ "name": "UNICORN",
+ "symbol": "UNICORN",
+ "marketCap": "232202.499958619967511478",
+ "price": "0.00023220249995861997",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": false,
+ "key": "evm--4663:0x022c90ed10c2172bb9b2d54838bbe5d0827c4af1",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x6635c082c14b4206751600d96fe50428815c9fa9",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x6635c082c14b4206751600d96fe50428815c9fa9-1788698209882.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x6635c082c14b4206751600d96fe50428815c9fa9-1788698209882.png"
+ ],
+ "name": "Wood Liquidity",
+ "symbol": "WOOD",
+ "marketCap": "1175297.579973706491685363",
+ "price": "0.00117529757997370649",
+ "priceChange24hPercent": "163.19",
+ "volume24h": "895758.07177326854857835",
+ "communityRecognized": false,
+ "key": "evm--4663:0x6635c082c14b4206751600d96fe50428815c9fa9",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x875bd2fdb280740bf035026057d31c7c33c916ec",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/1137c1b4114dc42826b2abd70a9807f7087e86a0fe0367dd5442e32717bb2542",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/1137c1b4114dc42826b2abd70a9807f7087e86a0fe0367dd5442e32717bb2542"
+ ],
+ "name": "BlendPad",
+ "symbol": "BLEND",
+ "marketCap": "25903.62740039636626527",
+ "price": "0.00002590362740039637",
+ "priceChange24hPercent": "502.53",
+ "volume24h": "3444373.333736733113257344",
+ "communityRecognized": false,
+ "key": "evm--4663:0x875bd2fdb280740bf035026057d31c7c33c916ec",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x71d389c48e29996bd8e20778f87fb915c1ffdcc2",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x71d389c48e29996bd8e20778f87fb915c1ffdcc2-1788697020328.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x71d389c48e29996bd8e20778f87fb915c1ffdcc2-1788697020328.png"
+ ],
+ "name": "Prism Finance",
+ "symbol": "PRISM",
+ "marketCap": "794094.061137476214496407",
+ "price": "0.00079692464931466759",
+ "priceChange24hPercent": "90.4",
+ "volume24h": "4147222.549421664432977738",
+ "communityRecognized": false,
+ "key": "evm--4663:0x71d389c48e29996bd8e20778f87fb915c1ffdcc2",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x7581ec9347669477711d146e0e43bddda474f415",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/822527b93e27c6a55b37012b304113c00dea3b1f88cac9be3ff46cf9f514342c",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/822527b93e27c6a55b37012b304113c00dea3b1f88cac9be3ff46cf9f514342c"
+ ],
+ "name": "Maxi",
+ "symbol": "MAXI",
+ "marketCap": "1838698.208565334132695159",
+ "price": "0.00183869820856533413",
+ "priceChange24hPercent": "6887.75",
+ "volume24h": "1309003.554351184436576324",
+ "communityRecognized": false,
+ "key": "evm--4663:0x7581ec9347669477711d146e0e43bddda474f415",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xee263e06703e63a2d6567002773a5c5fe0e5a0d5",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/91f392c1d47def1fc6928c87a9ba8b40259e5003f5851aa9fbeb135b0248692a",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/91f392c1d47def1fc6928c87a9ba8b40259e5003f5851aa9fbeb135b0248692a"
+ ],
+ "name": "Stratton Capital",
+ "symbol": "STRATCAP",
+ "marketCap": "2446686.062671250207421194",
+ "price": "11.0641295472344482784",
+ "priceChange24hPercent": "121.36",
+ "volume24h": "6185806.34847304233793155",
+ "communityRecognized": false,
+ "key": "evm--4663:0xee263e06703e63a2d6567002773a5c5fe0e5a0d5",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x067d5708e1ae03393368b8d5e2f0b02e75a36ba3",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x067d5708e1ae03393368b8d5e2f0b02e75a36ba3-1785844955438.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x067d5708e1ae03393368b8d5e2f0b02e75a36ba3-1785844955438.png"
+ ],
+ "name": "Lightoor.Fun",
+ "symbol": "Lightoor",
+ "marketCap": "176403.341588914009362488",
+ "price": "0.00000176403341588914",
+ "priceChange24hPercent": "448.59",
+ "volume24h": "1194115.915747252927234137",
+ "communityRecognized": false,
+ "key": "evm--4663:0x067d5708e1ae03393368b8d5e2f0b02e75a36ba3",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xb934cabf87781f7eb13265de4cb2ce090d00c4e3",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/9a05baf0cde6952874e0140285139f92d88e498281cb5c33415e9d9ec0ad1115",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/9a05baf0cde6952874e0140285139f92d88e498281cb5c33415e9d9ec0ad1115"
+ ],
+ "name": "SURPLUS",
+ "symbol": "SURPLUS",
+ "marketCap": "409490.737233662315491123",
+ "price": "0.00040950708955983624",
+ "priceChange24hPercent": "-14.62",
+ "volume24h": "1901602.845422783084270443",
+ "communityRecognized": false,
+ "key": "evm--4663:0xb934cabf87781f7eb13265de4cb2ce090d00c4e3",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x218d0dc56476b05f131bd6cc82b80c7b052fa9b1",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x218d0dc56476b05f131bd6cc82b80c7b052fa9b1-1788697832784.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x218d0dc56476b05f131bd6cc82b80c7b052fa9b1-1788697832784.png"
+ ],
+ "name": "Openbell",
+ "symbol": "BELL",
+ "marketCap": "191750.411215820020418365",
+ "price": "0.00019175041121582002",
+ "priceChange24hPercent": "-44.91",
+ "volume24h": "828285.883307106656046207",
+ "communityRecognized": false,
+ "key": "evm--4663:0x218d0dc56476b05f131bd6cc82b80c7b052fa9b1",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x24dd1df14fda7d40ebf2d66a330951b8625d8f18",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x24dd1df14fda7d40ebf2d66a330951b8625d8f18-1788178600442.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x24dd1df14fda7d40ebf2d66a330951b8625d8f18-1788178600442.png"
+ ],
+ "name": "Hedgehog",
+ "symbol": "Hedge",
+ "marketCap": "91789.941594233403746303",
+ "price": "0.0000917899415942334",
+ "priceChange24hPercent": "1091.88",
+ "volume24h": "351969.863248",
+ "communityRecognized": false,
+ "key": "evm--4663:0x24dd1df14fda7d40ebf2d66a330951b8625d8f18",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xfeaf46c2661002dd1402221b08468b276a8e0863",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/bb543c0dd7a9dfb17e198d36901a380450b243bb770199f59d258d8a1dfbad8b",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/bb543c0dd7a9dfb17e198d36901a380450b243bb770199f59d258d8a1dfbad8b"
+ ],
+ "name": "PENNYSTOCKS",
+ "symbol": "PENNYSTOCKS",
+ "marketCap": "315956.926806816185780966",
+ "price": "0.00031595692680681619",
+ "priceChange24hPercent": "8783.36",
+ "volume24h": "612860.889193080829980406",
+ "communityRecognized": false,
+ "key": "evm--4663:0xfeaf46c2661002dd1402221b08468b276a8e0863",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x9936403a9cc72cf306063e3496ea387428a3aecd",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x9936403a9cc72cf306063e3496ea387428a3aecd-1788264039086.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x9936403a9cc72cf306063e3496ea387428a3aecd-1788264039086.png"
+ ],
+ "name": "ABSOLUTE CINEMA",
+ "symbol": "CINEMA",
+ "marketCap": "614255.405654940701529691",
+ "price": "0.0006142554057120901",
+ "priceChange24hPercent": "-32.73",
+ "volume24h": "468466.425943825304644968",
+ "communityRecognized": false,
+ "key": "evm--4663:0x9936403a9cc72cf306063e3496ea387428a3aecd",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xf24f8f6b08fe87cf062e833a732ad7f636064bc8",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/2d9b8bb9c001a2d7cbc46af5e0d4da0e4b52f57551759110a64378fd4b1af38e",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/2d9b8bb9c001a2d7cbc46af5e0d4da0e4b52f57551759110a64378fd4b1af38e"
+ ],
+ "name": "Premium",
+ "symbol": "PRM",
+ "marketCap": "3163130.749263609894095864",
+ "price": "0.00316313074926360989",
+ "priceChange24hPercent": "65.48",
+ "volume24h": "1568522.261159672049446343",
+ "communityRecognized": false,
+ "key": "evm--4663:0xf24f8f6b08fe87cf062e833a732ad7f636064bc8",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x791e750fa8b2237288a6fe6c47ea81c50093449a",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/7b2c46154b9b72ada1a3e8100998205ed9870675fe74930d04725c0087783dc9",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/7b2c46154b9b72ada1a3e8100998205ed9870675fe74930d04725c0087783dc9"
+ ],
+ "name": "Calico Cat",
+ "symbol": "CALICO",
+ "marketCap": "136792.73839230053464427",
+ "price": "0.00013679273839230053",
+ "priceChange24hPercent": "2768.51",
+ "volume24h": "2117398.614722507411094067",
+ "communityRecognized": false,
+ "key": "evm--4663:0x791e750fa8b2237288a6fe6c47ea81c50093449a",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x75b19a029d6243a847393f6b8874c8d4b69e5ee4",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/5976004e5c829fd019475968b9c62543737aafbf43e7557006a385e5619e34a2",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/5976004e5c829fd019475968b9c62543737aafbf43e7557006a385e5619e34a2"
+ ],
+ "name": "VitaNova",
+ "symbol": "VITA",
+ "marketCap": "2201448.901025334511194173",
+ "price": "0.00220144890102533451",
+ "priceChange24hPercent": "-66.07",
+ "volume24h": "1584615.70845712504497188",
+ "communityRecognized": false,
+ "key": "evm--4663:0x75b19a029d6243a847393f6b8874c8d4b69e5ee4",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x4ad6f2f349b8031dc09145f2d2c4bbd1852a1e18",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/7af8810a95792a9a810ec71378b38f204ded3e12a9b682e83494494a865d13fc",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/7af8810a95792a9a810ec71378b38f204ded3e12a9b682e83494494a865d13fc"
+ ],
+ "name": "CLOUD",
+ "symbol": "CLOUD",
+ "marketCap": "99323.277045682613338444",
+ "price": "0.00009932327704568261",
+ "priceChange24hPercent": "181.44",
+ "volume24h": "451614.37523754931417691",
+ "communityRecognized": false,
+ "key": "evm--4663:0x4ad6f2f349b8031dc09145f2d2c4bbd1852a1e18",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xe766b582fb90511c923bb28f1c9574170bcb2ac4",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xe766b582fb90511c923bb28f1c9574170bcb2ac4-1788353281631.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xe766b582fb90511c923bb28f1c9574170bcb2ac4-1788353281631.png"
+ ],
+ "name": "Retail",
+ "symbol": "RETAIL",
+ "marketCap": "9872.815346999271311759",
+ "price": "0.00000987284775615957",
+ "priceChange24hPercent": "6.98",
+ "volume24h": "2691.984250643873925235",
+ "communityRecognized": false,
+ "key": "evm--4663:0xe766b582fb90511c923bb28f1c9574170bcb2ac4",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0xc6405d7a226e1c18e559be2f335f74c01ad07bf5",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xc6405d7a226e1c18e559be2f335f74c01ad07bf5-1788700788773.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xc6405d7a226e1c18e559be2f335f74c01ad07bf5-1788700788773.png"
+ ],
+ "name": "Stockify",
+ "symbol": "STFY",
+ "marketCap": "3983052.862173553761505087",
+ "price": "0.00398305286217355376",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": false,
+ "key": "evm--8453:0xc6405d7a226e1c18e559be2f335f74c01ad07bf5",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x0f61edbfe6cd86024c0f210c0695b08df55fdfc9",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x0f61edbfe6cd86024c0f210c0695b08df55fdfc9-1787230901831.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x0f61edbfe6cd86024c0f210c0695b08df55fdfc9-1787230901831.png"
+ ],
+ "name": "BaseStonk",
+ "symbol": "BSTONK",
+ "marketCap": "4007938.924999195295310463",
+ "price": "0.00449159458683672726",
+ "priceChange24hPercent": "-41.22",
+ "volume24h": "1125344.527089769304228895",
+ "communityRecognized": false,
+ "key": "evm--8453:0x0f61edbfe6cd86024c0f210c0695b08df55fdfc9",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0xacfe6019ed1a7dc6f7b508c02d1b04ec88cc21bf",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xacfe6019ed1a7dc6f7b508c02d1b04ec88cc21bf-1757667200619.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xacfe6019ed1a7dc6f7b508c02d1b04ec88cc21bf-1757667200619.png"
+ ],
+ "name": "Venice Token",
+ "symbol": "VVV",
+ "marketCap": "856673436.750078298169062052",
+ "price": "17.81036746540506978652",
+ "priceChange24hPercent": "4.72",
+ "volume24h": "9694735.678822404116641892",
+ "communityRecognized": true,
+ "key": "evm--8453:0xacfe6019ed1a7dc6f7b508c02d1b04ec88cc21bf",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x0b3e328455c4059eeb9e3f84b5543f74e24e7e1b",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x0b3e328455c4059eeb9e3f84b5543f74e24e7e1b.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x0b3e328455c4059eeb9e3f84b5543f74e24e7e1b.png"
+ ],
+ "name": "Virtual Protocol",
+ "symbol": "VIRTUAL",
+ "marketCap": "362405803.617855007639245042",
+ "price": "0.72917882068234822303",
+ "priceChange24hPercent": "1.84",
+ "volume24h": "16840670.705694693664953989",
+ "communityRecognized": true,
+ "key": "evm--8453:0x0b3e328455c4059eeb9e3f84b5543f74e24e7e1b",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x940181a94a35a4569e4529a3cdfb74e38fd98631",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x940181a94a35a4569e4529a3cdfb74e38fd98631.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x940181a94a35a4569e4529a3cdfb74e38fd98631.png"
+ ],
+ "name": "Aerodrome",
+ "symbol": "AERO",
+ "marketCap": "658141636.853802284056737422",
+ "price": "0.66687044093601599083",
+ "priceChange24hPercent": "23.48",
+ "volume24h": "46680074.290640295146669344",
+ "communityRecognized": true,
+ "key": "evm--8453:0x940181a94a35a4569e4529a3cdfb74e38fd98631",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x00f3c42833c3170159af4e92dbb451fb3f708917",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x00f3c42833c3170159af4e92dbb451fb3f708917-1757667396668.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x00f3c42833c3170159af4e92dbb451fb3f708917-1757667396668.png"
+ ],
+ "name": "ICP",
+ "symbol": "ICP",
+ "marketCap": "804715.386932750684455888",
+ "price": "3.03139152906059961695",
+ "priceChange24hPercent": "10.35",
+ "volume24h": "2722761.296688561089280021",
+ "communityRecognized": true,
+ "key": "evm--8453:0x00f3c42833c3170159af4e92dbb451fb3f708917",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x5ab3d4c385b400f3abb49e80de2faf6a88a7b691",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x5ab3d4c385b400f3abb49e80de2faf6a88a7b691-1735678408749.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x5ab3d4c385b400f3abb49e80de2faf6a88a7b691-1735678408749.png"
+ ],
+ "name": "FLock.io",
+ "symbol": "FLOCK",
+ "marketCap": "7996244.026812894169753812",
+ "price": "0.06207619062319993757",
+ "priceChange24hPercent": "-16.08",
+ "volume24h": "1839069.158913827140022291",
+ "communityRecognized": true,
+ "key": "evm--8453:0x5ab3d4c385b400f3abb49e80de2faf6a88a7b691",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0xcb585250f852c6c6bf90434ab21a00f02833a4af",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xcb585250f852c6c6bf90434ab21a00f02833a4af-1757667143818.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xcb585250f852c6c6bf90434ab21a00f02833a4af-1757667143818.png"
+ ],
+ "name": "Coinbase Wrapped XRP",
+ "symbol": "cbXRP",
+ "marketCap": "172820953.497926337390032594",
+ "price": "1.39417693988245332438",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": false,
+ "key": "evm--8453:0xcb585250f852c6c6bf90434ab21a00f02833a4af",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x001aad84c21a5cd4d696c56d44866e9703c43f77",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x001aad84c21a5cd4d696c56d44866e9703c43f77-1787144795420.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x001aad84c21a5cd4d696c56d44866e9703c43f77-1787144795420.png"
+ ],
+ "name": "Cluster Protocol",
+ "symbol": "CP",
+ "marketCap": "33358298.59549828667170448",
+ "price": "0.02436527785944727798",
+ "priceChange24hPercent": "14.92",
+ "volume24h": "2900055.075010855556772237",
+ "communityRecognized": true,
+ "key": "evm--8453:0x001aad84c21a5cd4d696c56d44866e9703c43f77",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x1217bfe6c773eec6cc4a38b5dc45b92292b6e189",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x1217bfe6c773eec6cc4a38b5dc45b92292b6e189-1757667084889.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x1217bfe6c773eec6cc4a38b5dc45b92292b6e189-1757667084889.png"
+ ],
+ "name": "OpenUSDT",
+ "symbol": "oUSDT",
+ "marketCap": "277857.038749700708089827",
+ "price": "0.99986595586957288418",
+ "priceChange24hPercent": "-0.01",
+ "volume24h": "427706.656123378385635366",
+ "communityRecognized": false,
+ "key": "evm--8453:0x1217bfe6c773eec6cc4a38b5dc45b92292b6e189",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0xbaa5cc21fd487b8fcc2f632f3f4e8d37262a0842",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xbaa5cc21fd487b8fcc2f632f3f4e8d37262a0842-1732156200557.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xbaa5cc21fd487b8fcc2f632f3f4e8d37262a0842-1732156200557.png"
+ ],
+ "name": "Morpho Token",
+ "symbol": "MORPHO",
+ "marketCap": "73407846.522022346282977983",
+ "price": "2.44896190806995330815",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": true,
+ "key": "evm--8453:0xbaa5cc21fd487b8fcc2f632f3f4e8d37262a0842",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x6985884c4392d348587b19cb9eaaf157f13271cd",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x6985884c4392d348587b19cb9eaaf157f13271cd-1721965709443.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x6985884c4392d348587b19cb9eaaf157f13271cd-1721965709443.png"
+ ],
+ "name": "LayerZero",
+ "symbol": "ZRO",
+ "marketCap": "6920458.000810112126587131",
+ "price": "1.13521434355973562164",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": true,
+ "key": "evm--8453:0x6985884c4392d348587b19cb9eaaf157f13271cd",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x6b2504a03ca4d43d0d73776f6ad46dab2f2a4cfd",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x6b2504a03ca4d43d0d73776f6ad46dab2f2a4cfd-1732331051328.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x6b2504a03ca4d43d0d73776f6ad46dab2f2a4cfd-1732331051328.png"
+ ],
+ "name": "Unit 00 - Rei",
+ "symbol": "REI",
+ "marketCap": "15211379.164992615033789018",
+ "price": "0.01521137916499261503",
+ "priceChange24hPercent": "-12.51",
+ "volume24h": "208650.372209649996184048",
+ "communityRecognized": false,
+ "key": "evm--8453:0x6b2504a03ca4d43d0d73776f6ad46dab2f2a4cfd",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x226a2fa2556c48245e57cd1cba4c6c9e67077dd2",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x226a2fa2556c48245e57cd1cba4c6c9e67077dd2-1757667219038.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x226a2fa2556c48245e57cd1cba4c6c9e67077dd2-1757667219038.png"
+ ],
+ "name": "BIO",
+ "symbol": "BIO",
+ "marketCap": "4967623.345623005329981658",
+ "price": "0.02720951374974361507",
+ "priceChange24hPercent": "0.47",
+ "volume24h": "179510.088921452967651318",
+ "communityRecognized": true,
+ "key": "evm--8453:0x226a2fa2556c48245e57cd1cba4c6c9e67077dd2",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x1111111111166b7fe7bd91427724b487980afc69",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x1111111111166b7fe7bd91427724b487980afc69-1757667250366.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x1111111111166b7fe7bd91427724b487980afc69-1757667250366.png"
+ ],
+ "name": "Zora",
+ "symbol": "ZORA",
+ "marketCap": "37462242.634859692036956299",
+ "price": "0.00838081490900235055",
+ "priceChange24hPercent": "3.71",
+ "volume24h": "1310817.202569941536692314",
+ "communityRecognized": true,
+ "key": "evm--8453:0x1111111111166b7fe7bd91427724b487980afc69",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x9e00fc92493451eba1c63dd3880d68b622037ba3",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x9e00fc92493451eba1c63dd3880d68b622037ba3-1786626056354.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x9e00fc92493451eba1c63dd3880d68b622037ba3-1786626056354.png"
+ ],
+ "name": "A Society For AI Agents",
+ "symbol": "1F916",
+ "marketCap": "1488594.583259108552358875",
+ "price": "0.00001488594583259109",
+ "priceChange24hPercent": "175.97",
+ "volume24h": "266751.138669428709921397",
+ "communityRecognized": false,
+ "key": "evm--8453:0x9e00fc92493451eba1c63dd3880d68b622037ba3",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0xc5fed7c8ccc75d8a72b601a66dffd7a489073f0b",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xc5fed7c8ccc75d8a72b601a66dffd7a489073f0b-1764068796834.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xc5fed7c8ccc75d8a72b601a66dffd7a489073f0b-1764068796834.png"
+ ],
+ "name": "ACU",
+ "symbol": "ACU",
+ "marketCap": "234484.020627272349750803",
+ "price": "0.148385968279971767",
+ "priceChange24hPercent": "9.14",
+ "volume24h": "120524.059741726626434828",
+ "communityRecognized": true,
+ "key": "evm--8453:0xc5fed7c8ccc75d8a72b601a66dffd7a489073f0b",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x98d0baa52b2d063e780de12f615f963fe8537553",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x98d0baa52b2d063e780de12f615f963fe8537553-1757667100599.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x98d0baa52b2d063e780de12f615f963fe8537553-1757667100599.png"
+ ],
+ "name": "KAITO",
+ "symbol": "KAITO",
+ "marketCap": "322471494.213727543377481806",
+ "price": "0.32247149523918689824",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": true,
+ "key": "evm--8453:0x98d0baa52b2d063e780de12f615f963fe8537553",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0xf43eb8de897fbc7f2502483b2bef7bb9ea179229",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xf43eb8de897fbc7f2502483b2bef7bb9ea179229-1757667269982.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xf43eb8de897fbc7f2502483b2bef7bb9ea179229-1757667269982.png"
+ ],
+ "name": "Horizen",
+ "symbol": "ZEN",
+ "marketCap": "128111264.611485623594030233",
+ "price": "6.98909118493305241645",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": true,
+ "key": "evm--8453:0xf43eb8de897fbc7f2502483b2bef7bb9ea179229",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0xac1bd2486aaf3b5c0fc3fd868558b082a531b2b4",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xac1bd2486aaf3b5c0fc3fd868558b082a531b2b4.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xac1bd2486aaf3b5c0fc3fd868558b082a531b2b4.png"
+ ],
+ "name": "Toshi",
+ "symbol": "TOSHI",
+ "marketCap": "52758550.185044143037974778",
+ "price": "0.00012541071969388395",
+ "priceChange24hPercent": "-3.29",
+ "volume24h": "443220.597522642545575572",
+ "communityRecognized": true,
+ "key": "evm--8453:0xac1bd2486aaf3b5c0fc3fd868558b082a531b2b4",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0xc0634090f2fe6c6d75e61be2b949464abb498973",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xc0634090f2fe6c6d75e61be2b949464abb498973-1757667219038.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xc0634090f2fe6c6d75e61be2b949464abb498973-1757667219038.png"
+ ],
+ "name": "Keeta",
+ "symbol": "KTA",
+ "marketCap": "45263371.92738397429739068",
+ "price": "0.07749364985572725103",
+ "priceChange24hPercent": "6.51",
+ "volume24h": "443033.63050307748719886",
+ "communityRecognized": true,
+ "key": "evm--8453:0xc0634090f2fe6c6d75e61be2b949464abb498973",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x624e2e7fdc8903165f64891672267ab0fcb98831",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x624e2e7fdc8903165f64891672267ab0fcb98831-1757667182323.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x624e2e7fdc8903165f64891672267ab0fcb98831-1757667182323.png"
+ ],
+ "name": "SoSoValue",
+ "symbol": "SOSO",
+ "marketCap": "22753679.363260796692054527",
+ "price": "0.30944416257485148625",
+ "priceChange24hPercent": "-0.3",
+ "volume24h": "2090609.8456259988988657",
+ "communityRecognized": true,
+ "key": "evm--8453:0x624e2e7fdc8903165f64891672267ab0fcb98831",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0xa002e475acb822cfa4fb029fc475badd3811ab07",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/8bccbe6026be8958a66780b240b155b52b19b3ce62078ac3e3c8bcd3192cc968",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/8bccbe6026be8958a66780b240b155b52b19b3ce62078ac3e3c8bcd3192cc968"
+ ],
+ "name": "Laptop",
+ "symbol": "LAPTOP",
+ "marketCap": "8623286.318341761949939496",
+ "price": "0.00008623286318341762",
+ "priceChange24hPercent": "34943531696.5",
+ "volume24h": "23102523.475043775449104086",
+ "communityRecognized": false,
+ "key": "evm--8453:0xa002e475acb822cfa4fb029fc475badd3811ab07",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0xb1a03eda10342529bbf8eb700a06c60441fef25d",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xb1a03eda10342529bbf8eb700a06c60441fef25d-1721965709442.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xb1a03eda10342529bbf8eb700a06c60441fef25d-1721965709442.png"
+ ],
+ "name": "Mister Miggles",
+ "symbol": "MIGGLES",
+ "marketCap": "2249547.202230456412465168",
+ "price": "0.00234629751345051729",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": false,
+ "key": "evm--8453:0xb1a03eda10342529bbf8eb700a06c60441fef25d",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x15d0e0c55a3e7ee67152ad7e89acf164253ff68d",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x15d0e0c55a3e7ee67152ad7e89acf164253ff68d-1760785371220.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x15d0e0c55a3e7ee67152ad7e89acf164253ff68d-1760785371220.png"
+ ],
+ "name": "HYPE",
+ "symbol": "HYPE",
+ "marketCap": "2086009.960893256620993528",
+ "price": "83.9613718942313370726",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": false,
+ "key": "evm--8453:0x15d0e0c55a3e7ee67152ad7e89acf164253ff68d",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x8b7dde054be9d180c1be7fae0874697374a49832",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x8b7dde054be9d180c1be7fae0874697374a49832-1776337206327.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x8b7dde054be9d180c1be7fae0874697374a49832-1776337206327.png"
+ ],
+ "name": "Wrapped PROS",
+ "symbol": "PROS",
+ "marketCap": "1897581.171233968020403463",
+ "price": "0.43338949332107910306",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": true,
+ "key": "evm--8453:0x8b7dde054be9d180c1be7fae0874697374a49832",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x11030f79109269d796fd0fb956d6244e502757f7",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x11030f79109269d796fd0fb956d6244e502757f7-1779879981401.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x11030f79109269d796fd0fb956d6244e502757f7-1779879981401.png"
+ ],
+ "name": "CTR",
+ "symbol": "CTR",
+ "marketCap": "10317208.420480187597943854",
+ "price": "0.01019128717917162601",
+ "priceChange24hPercent": "8.48",
+ "volume24h": "983793.694522466725883046",
+ "communityRecognized": true,
+ "key": "evm--8453:0x11030f79109269d796fd0fb956d6244e502757f7",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x3ec2156d4c0a9cbdab4a016633b7bcf6a8d68ea2",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x3ec2156d4c0a9cbdab4a016633b7bcf6a8d68ea2-1757667219038.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x3ec2156d4c0a9cbdab4a016633b7bcf6a8d68ea2-1757667219038.png"
+ ],
+ "name": "DebtReliefBot",
+ "symbol": "DRB",
+ "marketCap": "24160034.358922219351579511",
+ "price": "0.00024162414034483379",
+ "priceChange24hPercent": "-8.88",
+ "volume24h": "1610372.502474621101165845",
+ "communityRecognized": true,
+ "key": "evm--8453:0x3ec2156d4c0a9cbdab4a016633b7bcf6a8d68ea2",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x1aa8fd5bcce2231c6100d55bf8b377cff33acfc3",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x1aa8fd5bcce2231c6100d55bf8b377cff33acfc3-1762772563008.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x1aa8fd5bcce2231c6100d55bf8b377cff33acfc3-1762772563008.png"
+ ],
+ "name": "RaveDAO",
+ "symbol": "RAVE",
+ "marketCap": "5622235.397298745197937301",
+ "price": "0.24997547844193722538",
+ "priceChange24hPercent": "-1.35",
+ "volume24h": "106844.130193",
+ "communityRecognized": true,
+ "key": "evm--8453:0x1aa8fd5bcce2231c6100d55bf8b377cff33acfc3",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0xeb466342c4d449bc9f53a865d5cb90586f405215",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xeb466342c4d449bc9f53a865d5cb90586f405215.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xeb466342c4d449bc9f53a865d5cb90586f405215.png"
+ ],
+ "name": "Axelar Wrapped USDC",
+ "symbol": "axlUSDC",
+ "marketCap": "585937.916993708067716896",
+ "price": "1.00015944756471875019",
+ "priceChange24hPercent": "0.03",
+ "volume24h": "92710.360176724249115312",
+ "communityRecognized": false,
+ "key": "evm--8453:0xeb466342c4d449bc9f53a865d5cb90586f405215",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x9b8df6e244526ab5f6e6400d331db28c8fdddb55",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x9b8df6e244526ab5f6e6400d331db28c8fdddb55-1725084900043.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x9b8df6e244526ab5f6e6400d331db28c8fdddb55-1725084900043.png"
+ ],
+ "name": "Solana (Universal)",
+ "symbol": "uSOL",
+ "marketCap": "2497361.299838751442067724",
+ "price": "103.98362705004751595894",
+ "priceChange24hPercent": "-1.32",
+ "volume24h": "296195.476249392326871448",
+ "communityRecognized": false,
+ "key": "evm--8453:0x9b8df6e244526ab5f6e6400d331db28c8fdddb55",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x9b5e262cf9bb04869ab40b19af91d2dc85761722",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x9b5e262cf9bb04869ab40b19af91d2dc85761722-1766574146201.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x9b5e262cf9bb04869ab40b19af91d2dc85761722-1766574146201.png"
+ ],
+ "name": "Nock",
+ "symbol": "NOCK",
+ "marketCap": "48712814.333334792165153839",
+ "price": "0.03236960146006352686",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": true,
+ "key": "evm--8453:0x9b5e262cf9bb04869ab40b19af91d2dc85761722",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0xed664536023d8e4b1640c394777d34abaff1df8f",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xed664536023d8e4b1640c394777d34abaff1df8f-1772622008103.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xed664536023d8e4b1640c394777d34abaff1df8f-1772622008103.png"
+ ],
+ "name": "Dolphin",
+ "symbol": "POD",
+ "marketCap": "124289193.833143467864730912",
+ "price": "0.24857838767201699449",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": false,
+ "key": "evm--8453:0xed664536023d8e4b1640c394777d34abaff1df8f",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x696f9436b67233384889472cd7cd58a6fb5df4f1",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x696f9436b67233384889472cd7cd58a6fb5df4f1-1757667106590.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x696f9436b67233384889472cd7cd58a6fb5df4f1-1757667106590.png"
+ ],
+ "name": "Avantis",
+ "symbol": "AVNT",
+ "marketCap": "40179028.450264009308708623",
+ "price": "0.11393957875719524502",
+ "priceChange24hPercent": "6.34",
+ "volume24h": "510794.765757306230408891",
+ "communityRecognized": true,
+ "key": "evm--8453:0x696f9436b67233384889472cd7cd58a6fb5df4f1",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x9d0e8f5b25384c7310cb8c6ae32c8fbeb645d083",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x9d0e8f5b25384c7310cb8c6ae32c8fbeb645d083-1737003334236.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x9d0e8f5b25384c7310cb8c6ae32c8fbeb645d083-1737003334236.png"
+ ],
+ "name": "Derive",
+ "symbol": "DRV",
+ "marketCap": "25097941.048713283413694444",
+ "price": "0.16308594967932132455",
+ "priceChange24hPercent": "2",
+ "volume24h": "474908.007853676704332238",
+ "communityRecognized": true,
+ "key": "evm--8453:0x9d0e8f5b25384c7310cb8c6ae32c8fbeb645d083",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x688aee022aa544f150678b8e5720b6b96a9e9a2f",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x688aee022aa544f150678b8e5720b6b96a9e9a2f-1757667109744.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x688aee022aa544f150678b8e5720b6b96a9e9a2f-1757667109744.png"
+ ],
+ "name": "Syrup Token",
+ "symbol": "SYRUP",
+ "marketCap": "995765.586255187201348381",
+ "price": "0.23476840412301995283",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": true,
+ "key": "evm--8453:0x688aee022aa544f150678b8e5720b6b96a9e9a2f",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x853a7c99227499dba9db8c3a02aa691afdebf841",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x853a7c99227499dba9db8c3a02aa691afdebf841-1757667221996.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x853a7c99227499dba9db8c3a02aa691afdebf841-1757667221996.png"
+ ],
+ "name": "Play",
+ "symbol": "PLAY",
+ "marketCap": "13573098.32802464041334227",
+ "price": "0.03634029003487186188",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": true,
+ "key": "evm--8453:0x853a7c99227499dba9db8c3a02aa691afdebf841",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0xff0c532fdb8cd566ae169c1cb157ff2bdc83e105",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xff0c532fdb8cd566ae169c1cb157ff2bdc83e105.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xff0c532fdb8cd566ae169c1cb157ff2bdc83e105.png"
+ ],
+ "name": "Fren Pet",
+ "symbol": "Fren Pet",
+ "marketCap": "18878339.800810462486314897",
+ "price": "2.92578124058293993962",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": false,
+ "key": "evm--8453:0xff0c532fdb8cd566ae169c1cb157ff2bdc83e105",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x1f1c695f6b4a3f8b05f2492cef9474afb6d6ad69",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x1f1c695f6b4a3f8b05f2492cef9474afb6d6ad69-1757667097863.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x1f1c695f6b4a3f8b05f2492cef9474afb6d6ad69-1757667097863.png"
+ ],
+ "name": "Sally",
+ "symbol": "A1C",
+ "marketCap": "3034149.653053263685169522",
+ "price": "0.14448331683909482868",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": false,
+ "key": "evm--8453:0x1f1c695f6b4a3f8b05f2492cef9474afb6d6ad69",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x9eadbe35f3ee3bf3e28180070c429298a1b02f93",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x9eadbe35f3ee3bf3e28180070c429298a1b02f93-1761217472230.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x9eadbe35f3ee3bf3e28180070c429298a1b02f93-1761217472230.png"
+ ],
+ "name": "Limitless Official Token",
+ "symbol": "LMTS",
+ "marketCap": "9428363.910225808664242546",
+ "price": "0.07164482128715735343",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": true,
+ "key": "evm--8453:0x9eadbe35f3ee3bf3e28180070c429298a1b02f93",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x8c0d3adcf8ce094e1ae437557ec90a6374dc9bdd",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x8c0d3adcf8ce094e1ae437557ec90a6374dc9bdd-1773831756184.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x8c0d3adcf8ce094e1ae437557ec90a6374dc9bdd-1773831756184.png"
+ ],
+ "name": "OpenVPP",
+ "symbol": "OVPP",
+ "marketCap": "1990320.340161759129107805",
+ "price": "0.00199032034016175913",
+ "priceChange24hPercent": "-1.4",
+ "volume24h": "161037.434028121150589532",
+ "communityRecognized": false,
+ "key": "evm--8453:0x8c0d3adcf8ce094e1ae437557ec90a6374dc9bdd",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x00000000a22c618fd6b4d7e9a335c4b96b189a38",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x00000000a22c618fd6b4d7e9a335c4b96b189a38-1757667221996.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x00000000a22c618fd6b4d7e9a335c4b96b189a38-1757667221996.png"
+ ],
+ "name": "Towns",
+ "symbol": "TOWNS",
+ "marketCap": "4090459.37900983754196587",
+ "price": "0.00210564529754326876",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": true,
+ "key": "evm--8453:0x00000000a22c618fd6b4d7e9a335c4b96b189a38",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x0a4c9cb2778ab3302996a34befcf9a8bc288c33b",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x0a4c9cb2778ab3302996a34befcf9a8bc288c33b-1760007602606.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x0a4c9cb2778ab3302996a34befcf9a8bc288c33b-1760007602606.png"
+ ],
+ "name": "XSGD",
+ "symbol": "XSGD",
+ "marketCap": "4202455.074304647980570245",
+ "price": "0.79108475026324400256",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": true,
+ "key": "evm--8453:0x0a4c9cb2778ab3302996a34befcf9a8bc288c33b",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0xcb17c9db87b595717c857a08468793f5bab6445f",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xcb17c9db87b595717c857a08468793f5bab6445f-1757667133019.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xcb17c9db87b595717c857a08468793f5bab6445f-1757667133019.png"
+ ],
+ "name": "Coinbase Wrapped LTC",
+ "symbol": "cbLTC",
+ "marketCap": "4477134.492281745058580781",
+ "price": "54.99038996326167868586",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": false,
+ "key": "evm--8453:0xcb17c9db87b595717c857a08468793f5bab6445f",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0xdcf5130274753c8050ab061b1a1dcbf583f5bfd0",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xdcf5130274753c8050ab061b1a1dcbf583f5bfd0.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xdcf5130274753c8050ab061b1a1dcbf583f5bfd0.png"
+ ],
+ "name": "ViciCoin",
+ "symbol": "VCNT",
+ "marketCap": "48862815.659080184046235859",
+ "price": "18.6908805671802385933",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": false,
+ "key": "evm--8453:0xdcf5130274753c8050ab061b1a1dcbf583f5bfd0",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x8bfac1b375bf2894d6f12fb2eb48b1c1a7916789",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x8bfac1b375bf2894d6f12fb2eb48b1c1a7916789-1732851000437.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x8bfac1b375bf2894d6f12fb2eb48b1c1a7916789-1732851000437.png"
+ ],
+ "name": "Mey Network",
+ "symbol": "MEY",
+ "marketCap": "17793323.308762987874558432",
+ "price": "0.06258439091095543351",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": true,
+ "key": "evm--8453:0x8bfac1b375bf2894d6f12fb2eb48b1c1a7916789",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x97be14dd8f994a5364573bc035d85309e7cb34de",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x97be14dd8f994a5364573bc035d85309e7cb34de-1779880010762.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x97be14dd8f994a5364573bc035d85309e7cb34de-1779880010762.png"
+ ],
+ "name": "Jito Staked SOL",
+ "symbol": "JitoSOL",
+ "marketCap": "15080654.56409470908490869",
+ "price": "134.19041931174885348232",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": false,
+ "key": "evm--8453:0x97be14dd8f994a5364573bc035d85309e7cb34de",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x9b56b112bbd6343a8961a093315a9a60b8cb1f36",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x9b56b112bbd6343a8961a093315a9a60b8cb1f36-1776423740509.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x9b56b112bbd6343a8961a093315a9a60b8cb1f36-1776423740509.png"
+ ],
+ "name": "PeaqOFT",
+ "symbol": "PEAQ",
+ "marketCap": "159294.42778572059034922",
+ "price": "0.03002946223770515722",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": false,
+ "key": "evm--8453:0x9b56b112bbd6343a8961a093315a9a60b8cb1f36",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0xb20000000000000000000000c361429c17dd140b",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/667495fccd45b33585b0fc6e2bef89faeecf6a7f6e2955e75490b546623ad30c",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/667495fccd45b33585b0fc6e2bef89faeecf6a7f6e2955e75490b546623ad30c"
+ ],
+ "name": "MEME FACTORY",
+ "symbol": "MEMEF",
+ "marketCap": "22933.496384806927726769",
+ "price": "0.00004680305384654475",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": false,
+ "key": "evm--8453:0xb20000000000000000000000c361429c17dd140b",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x0a23b7c7a8faa3e1827ec9bdc953f06d4ef04b07",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/61256cce0c5acddbf40d3f9b65572dc6a42f8e6e1c439b521b188f9062eccc2d",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/61256cce0c5acddbf40d3f9b65572dc6a42f8e6e1c439b521b188f9062eccc2d"
+ ],
+ "name": "Basecat",
+ "symbol": "Basecat",
+ "marketCap": "16320.648430656507876938",
+ "price": "0.00000016320648430657",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": false,
+ "key": "evm--8453:0x0a23b7c7a8faa3e1827ec9bdc953f06d4ef04b07",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x1ea8deb921aa6015f4938010c848140b98108dd2",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/00a064123e96063064250c614f69bf2c6edb8404c740d069035156a73d12f345",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/00a064123e96063064250c614f69bf2c6edb8404c740d069035156a73d12f345"
+ ],
+ "name": "vAPI Network",
+ "symbol": "vAPI",
+ "marketCap": "4572831.578206145279616954",
+ "price": "0.06901217241789399577",
+ "priceChange24hPercent": "4.24",
+ "volume24h": "36382.8417296863469108",
+ "communityRecognized": false,
+ "key": "evm--8453:0x1ea8deb921aa6015f4938010c848140b98108dd2",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x182fa643e5f29d5eca75e7b9cf9336a3fe4620b2",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x182fa643e5f29d5eca75e7b9cf9336a3fe4620b2-1781780745426.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x182fa643e5f29d5eca75e7b9cf9336a3fe4620b2-1781780745426.png"
+ ],
+ "name": "o1.exchange",
+ "symbol": "O",
+ "marketCap": "86335783.679999984367826181",
+ "price": "0.5395986479999999023",
+ "priceChange24hPercent": "1.54",
+ "volume24h": "776596.431224875497352804",
+ "communityRecognized": true,
+ "key": "evm--8453:0x182fa643e5f29d5eca75e7b9cf9336a3fe4620b2",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x1a44233fae8d50f1aeb3a5d58dd426ff4814cb53",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x1a44233fae8d50f1aeb3a5d58dd426ff4814cb53-1785934801304.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x1a44233fae8d50f1aeb3a5d58dd426ff4814cb53-1785934801304.png"
+ ],
+ "name": "Squid",
+ "symbol": "QUID",
+ "marketCap": "9664218.415965016365917899",
+ "price": "0.06750773707845800003",
+ "priceChange24hPercent": "0.45",
+ "volume24h": "368303.978259",
+ "communityRecognized": true,
+ "key": "evm--8453:0x1a44233fae8d50f1aeb3a5d58dd426ff4814cb53",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0xab6363da0c80cef3ae105bd6241e30872355d021",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xab6363da0c80cef3ae105bd6241e30872355d021-1768648014135.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xab6363da0c80cef3ae105bd6241e30872355d021-1768648014135.png"
+ ],
+ "name": "Roll",
+ "symbol": "ROLL",
+ "marketCap": "18348293.089659240586468118",
+ "price": "0.1183760844494144554",
+ "priceChange24hPercent": "-4.47",
+ "volume24h": "70346.050235889863314287",
+ "communityRecognized": true,
+ "key": "evm--8453:0xab6363da0c80cef3ae105bd6241e30872355d021",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x1bc0c42215582d5a085795f4badbac3ff36d1bcb",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x1bc0c42215582d5a085795f4badbac3ff36d1bcb-1731288600091.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x1bc0c42215582d5a085795f4badbac3ff36d1bcb-1731288600091.png"
+ ],
+ "name": "tokenbot",
+ "symbol": "CLANKER",
+ "marketCap": "12928480.604798781901868544",
+ "price": "13.10836331093307467123",
+ "priceChange24hPercent": "0.16",
+ "volume24h": "206588.414905620129396617",
+ "communityRecognized": true,
+ "key": "evm--8453:0x1bc0c42215582d5a085795f4badbac3ff36d1bcb",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x88fb150bdc53a65fe94dea0c9ba0a6daf8c6e196",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x88fb150bdc53a65fe94dea0c9ba0a6daf8c6e196-1757667313556.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x88fb150bdc53a65fe94dea0c9ba0a6daf8c6e196-1757667313556.png"
+ ],
+ "name": "ChainLink Token",
+ "symbol": "LINK",
+ "marketCap": "2335832.918140703969459741",
+ "price": "12.6508949094410090813",
+ "priceChange24hPercent": "-2.75",
+ "volume24h": "336018.154466173087586042",
+ "communityRecognized": true,
+ "key": "evm--8453:0x88fb150bdc53a65fe94dea0c9ba0a6daf8c6e196",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0xd71bbd77e90a8fb9a23e47f26dc6c30784ba6572",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xd71bbd77e90a8fb9a23e47f26dc6c30784ba6572-1788701572198.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xd71bbd77e90a8fb9a23e47f26dc6c30784ba6572-1788701572198.png"
+ ],
+ "name": "Kuma",
+ "symbol": "KUMA",
+ "marketCap": "103936.364733165399756919",
+ "price": "0.0001124307145261345",
+ "priceChange24hPercent": "-41",
+ "volume24h": "31105.849275450484139986",
+ "communityRecognized": false,
+ "key": "evm--8453:0xd71bbd77e90a8fb9a23e47f26dc6c30784ba6572",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0xa46dfacc9129c62704b75c3e9914a1db3364ba5e",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/ace48847e868bee6f8730809637ad88dcf320d3b44e91ddf0d0683cbd326f498",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/ace48847e868bee6f8730809637ad88dcf320d3b44e91ddf0d0683cbd326f498"
+ ],
+ "name": "Basestocks.fi",
+ "symbol": "BST",
+ "marketCap": "47886.040695560018713052",
+ "price": "0.00004788604070291127",
+ "priceChange24hPercent": "-23.54",
+ "volume24h": "47500.747724880926147802",
+ "communityRecognized": false,
+ "key": "evm--8453:0xa46dfacc9129c62704b75c3e9914a1db3364ba5e",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x352b850b733ab8bab50aed1dab5d22e3186ce984",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x352b850b733ab8bab50aed1dab5d22e3186ce984-1736307000621.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x352b850b733ab8bab50aed1dab5d22e3186ce984-1736307000621.png"
+ ],
+ "name": "1000x by Virtuals",
+ "symbol": "1000X",
+ "marketCap": "1997524.45764131650686302",
+ "price": "0.00203499557670207466",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": false,
+ "key": "evm--8453:0x352b850b733ab8bab50aed1dab5d22e3186ce984",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0xb3e3c89b8d9c88b1fe96856e382959ee6291ebba",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xb3e3c89b8d9c88b1fe96856e382959ee6291ebba-1735353000152.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xb3e3c89b8d9c88b1fe96856e382959ee6291ebba-1735353000152.png"
+ ],
+ "name": "Rekt",
+ "symbol": "REKT",
+ "marketCap": "487697.772010453461088474",
+ "price": "0.00000008549682996415",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": true,
+ "key": "evm--8453:0xb3e3c89b8d9c88b1fe96856e382959ee6291ebba",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x23a2847d772803f9efc64b4277b782b06296fe51",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x23a2847d772803f9efc64b4277b782b06296fe51-1781607721666.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x23a2847d772803f9efc64b4277b782b06296fe51-1781607721666.png"
+ ],
+ "name": "Dot",
+ "symbol": "DOT",
+ "marketCap": "2808658.471634364049829141",
+ "price": "0.00338032684968937133",
+ "priceChange24hPercent": "48.93",
+ "volume24h": "200073.434625603083920394",
+ "communityRecognized": false,
+ "key": "evm--8453:0x23a2847d772803f9efc64b4277b782b06296fe51",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x020eaeee24bcad37cb9a01aa1f8c591c47341ba3",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x020eaeee24bcad37cb9a01aa1f8c591c47341ba3-1788440515710.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x020eaeee24bcad37cb9a01aa1f8c591c47341ba3-1788440515710.png"
+ ],
+ "name": "SETZ",
+ "symbol": "SETZ",
+ "marketCap": "467722.609477382948023255",
+ "price": "0.00000467722609477383",
+ "priceChange24hPercent": "-3.88",
+ "volume24h": "135778.925121308956154589",
+ "communityRecognized": false,
+ "key": "evm--8453:0x020eaeee24bcad37cb9a01aa1f8c591c47341ba3",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x56ab53b77f07da3af732150e8aec4783eb5bba7d",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x56ab53b77f07da3af732150e8aec4783eb5bba7d-1788354128601.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x56ab53b77f07da3af732150e8aec4783eb5bba7d-1788354128601.png"
+ ],
+ "name": "Umia",
+ "symbol": "UMIA",
+ "marketCap": "16429317.110577210198112484",
+ "price": "0.67471943813112648325",
+ "priceChange24hPercent": "1.86",
+ "volume24h": "470582.27882386852253588",
+ "communityRecognized": true,
+ "key": "evm--8453:0x56ab53b77f07da3af732150e8aec4783eb5bba7d",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x0555e30da8f98308edb960aa94c0db47230d2b9c",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x0555e30da8f98308edb960aa94c0db47230d2b9c-1757667160561.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x0555e30da8f98308edb960aa94c0db47230d2b9c-1757667160561.png"
+ ],
+ "name": "Wrapped BTC",
+ "symbol": "WBTC",
+ "marketCap": "5130714.681572329150926017",
+ "price": "78824.44709416919563900666",
+ "priceChange24hPercent": "-0.82",
+ "volume24h": "61221.452020880853505533",
+ "communityRecognized": true,
+ "key": "evm--8453:0x0555e30da8f98308edb960aa94c0db47230d2b9c",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x8ee73c484a26e0a5df2ee2a4960b789967dd0415",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x8ee73c484a26e0a5df2ee2a4960b789967dd0415-1757667273505.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x8ee73c484a26e0a5df2ee2a4960b789967dd0415-1757667273505.png"
+ ],
+ "name": "Curve DAO Token",
+ "symbol": "CRV",
+ "marketCap": "569000.285653014298597697",
+ "price": "0.36268877747502270663",
+ "priceChange24hPercent": "-6.7",
+ "volume24h": "66099.779786522920402679",
+ "communityRecognized": true,
+ "key": "evm--8453:0x8ee73c484a26e0a5df2ee2a4960b789967dd0415",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x5f980dcfc4c0fa3911554cf5ab288ed0eb13dba3",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x5f980dcfc4c0fa3911554cf5ab288ed0eb13dba3-1773486075454.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x5f980dcfc4c0fa3911554cf5ab288ed0eb13dba3-1773486075454.png"
+ ],
+ "name": "gitlawb",
+ "symbol": "GITLAWB",
+ "marketCap": "1610294.761478849110289969",
+ "price": "0.00001615713109050687",
+ "priceChange24hPercent": "-10.17",
+ "volume24h": "87471.860573636612303976",
+ "communityRecognized": false,
+ "key": "evm--8453:0x5f980dcfc4c0fa3911554cf5ab288ed0eb13dba3",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x3722264ab15a1dfce5a5af89e6547f7949a8aba3",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x3722264ab15a1dfce5a5af89e6547f7949a8aba3-1777719665862.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x3722264ab15a1dfce5a5af89e6547f7949a8aba3-1777719665862.png"
+ ],
+ "name": "LienFi",
+ "symbol": "LFI",
+ "marketCap": "4796544.934863510452557522",
+ "price": "0.00007613587050626248",
+ "priceChange24hPercent": "-4.38",
+ "volume24h": "248724.227751251435660598",
+ "communityRecognized": false,
+ "key": "evm--8453:0x3722264ab15a1dfce5a5af89e6547f7949a8aba3",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x30c7235866872213f68cb1f08c37cb9eccb93452",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x30c7235866872213f68cb1f08c37cb9eccb93452-1757667345357.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x30c7235866872213f68cb1f08c37cb9eccb93452-1757667345357.png"
+ ],
+ "name": "Prompt",
+ "symbol": "PROMPT",
+ "marketCap": "3861471.580124962122825535",
+ "price": "0.02396495671913454759",
+ "priceChange24hPercent": "-1.77",
+ "volume24h": "45528.013956690798584494",
+ "communityRecognized": true,
+ "key": "evm--8453:0x30c7235866872213f68cb1f08c37cb9eccb93452",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x6cd905df2ed214b22e0d48ff17cd4200c1c6d8a3",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x6cd905df2ed214b22e0d48ff17cd4200c1c6d8a3-1762340623166.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x6cd905df2ed214b22e0d48ff17cd4200c1c6d8a3-1762340623166.png"
+ ],
+ "name": "Intuition",
+ "symbol": "TRUST",
+ "marketCap": "10129283.497214801500560343",
+ "price": "0.05638411209557375288",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": true,
+ "key": "evm--8453:0x6cd905df2ed214b22e0d48ff17cd4200c1c6d8a3",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0xf5f11bc9be9d6690f795d04d2fc9bdd097008a2b",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/f51dce715644a648b66fb92949956078926f240bddb2af258f35d3f0d8d66241",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/f51dce715644a648b66fb92949956078926f240bddb2af258f35d3f0d8d66241"
+ ],
+ "name": "basedpad.fun",
+ "symbol": "BPAD",
+ "marketCap": "291065.544044616879635393",
+ "price": "0.00034070477080070502",
+ "priceChange24hPercent": "25.22",
+ "volume24h": "141786.305942188290675094",
+ "communityRecognized": false,
+ "key": "evm--8453:0xf5f11bc9be9d6690f795d04d2fc9bdd097008a2b",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x4ed4e862860bed51a9570b96d89af5e1b0efefed",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x4ed4e862860bed51a9570b96d89af5e1b0efefed.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x4ed4e862860bed51a9570b96d89af5e1b0efefed.png"
+ ],
+ "name": "Degen",
+ "symbol": "DEGEN",
+ "marketCap": "39377962.393730743116383433",
+ "price": "0.00108793990733865399",
+ "priceChange24hPercent": "0.71",
+ "volume24h": "50219.469364222144444457",
+ "communityRecognized": true,
+ "key": "evm--8453:0x4ed4e862860bed51a9570b96d89af5e1b0efefed",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0xc52aedec3374422d7510e294cfaa90799595cba3",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xc52aedec3374422d7510e294cfaa90799595cba3-1779274812235.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xc52aedec3374422d7510e294cfaa90799595cba3-1779274812235.png"
+ ],
+ "name": "Surplus Intelligence",
+ "symbol": "Surplus",
+ "marketCap": "3382534.022521815174089763",
+ "price": "0.00003382541330856353",
+ "priceChange24hPercent": "-6.25",
+ "volume24h": "135444.161239600248561147",
+ "communityRecognized": false,
+ "key": "evm--8453:0xc52aedec3374422d7510e294cfaa90799595cba3",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x16ee7ecac70d1028e7712751e2ee6ba808a7dd92",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x16ee7ecac70d1028e7712751e2ee6ba808a7dd92-1766401243503.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x16ee7ecac70d1028e7712751e2ee6ba808a7dd92-1766401243503.png"
+ ],
+ "name": "Sport.fun",
+ "symbol": "FUN",
+ "marketCap": "3685735.113228658036819774",
+ "price": "0.02070637704061043841",
+ "priceChange24hPercent": "-0.76",
+ "volume24h": "112125.21683862657241823",
+ "communityRecognized": true,
+ "key": "evm--8453:0x16ee7ecac70d1028e7712751e2ee6ba808a7dd92",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x54f16bd3996169914c84dbb2a16635100cf48a0a",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x54f16bd3996169914c84dbb2a16635100cf48a0a-1778842983869.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x54f16bd3996169914c84dbb2a16635100cf48a0a-1778842983869.png"
+ ],
+ "name": "Peptai",
+ "symbol": "PEPTAI",
+ "marketCap": "2699930.655241683092524007",
+ "price": "0.26999306552416830925",
+ "priceChange24hPercent": "0.09",
+ "volume24h": "11354.659167837864222443",
+ "communityRecognized": false,
+ "key": "evm--8453:0x54f16bd3996169914c84dbb2a16635100cf48a0a",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0xf1e9baa65d418a9025e1851dd2d37f1ad208bba3",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xf1e9baa65d418a9025e1851dd2d37f1ad208bba3-1780485054872.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xf1e9baa65d418a9025e1851dd2d37f1ad208bba3-1780485054872.png"
+ ],
+ "name": "Ratspeak",
+ "symbol": "Ratspeak",
+ "marketCap": "1368250.772332282499041908",
+ "price": "0.00001425261221181126",
+ "priceChange24hPercent": "-12.38",
+ "volume24h": "159816.190866291736865011",
+ "communityRecognized": false,
+ "key": "evm--8453:0xf1e9baa65d418a9025e1851dd2d37f1ad208bba3",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0xa99f6e6785da0f5d6fb42495fe424bce029eeb3e",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xa99f6e6785da0f5d6fb42495fe424bce029eeb3e-1735017300059.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xa99f6e6785da0f5d6fb42495fe424bce029eeb3e-1735017300059.png"
+ ],
+ "name": "Pendle",
+ "symbol": "PENDLE",
+ "marketCap": "1266732.04833089394230691",
+ "price": "2.18284202595136507002",
+ "priceChange24hPercent": "6.55",
+ "volume24h": "165957.881500387604101375",
+ "communityRecognized": true,
+ "key": "evm--8453:0xa99f6e6785da0f5d6fb42495fe424bce029eeb3e",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0xbf927b841994731c573bdf09ceb0c6b0aa887cdd",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xbf927b841994731c573bdf09ceb0c6b0aa887cdd-1757667322651.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xbf927b841994731c573bdf09ceb0c6b0aa887cdd-1757667322651.png"
+ ],
+ "name": "Velvet",
+ "symbol": "VELVET",
+ "marketCap": "1071823.926949795122170354",
+ "price": "0.0798891941969676081",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": true,
+ "key": "evm--8453:0xbf927b841994731c573bdf09ceb0c6b0aa887cdd",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x6bb7a212910682dcfdbd5bcbb3e28fb4e8da10ee",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x6bb7a212910682dcfdbd5bcbb3e28fb4e8da10ee-1755759133841.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x6bb7a212910682dcfdbd5bcbb3e28fb4e8da10ee-1755759133841.png"
+ ],
+ "name": "Gho Token",
+ "symbol": "GHO",
+ "marketCap": "729190.919650792570499848",
+ "price": "0.99888622132390754508",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": true,
+ "key": "evm--8453:0x6bb7a212910682dcfdbd5bcbb3e28fb4e8da10ee",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0xfb31f85a8367210b2e4ed2360d2da9dc2d2ccc95",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xfb31f85a8367210b2e4ed2360d2da9dc2d2ccc95-1763031927566.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xfb31f85a8367210b2e4ed2360d2da9dc2d2ccc95-1763031927566.png"
+ ],
+ "name": "Edel",
+ "symbol": "EDEL",
+ "marketCap": "6886442.132094868099033462",
+ "price": "0.01033485052099968844",
+ "priceChange24hPercent": "-7.06",
+ "volume24h": "272800.604339746798234553",
+ "communityRecognized": true,
+ "key": "evm--8453:0xfb31f85a8367210b2e4ed2360d2da9dc2d2ccc95",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x74ccbe53f77b08632ce0cb91d3a545bf6b8e0979",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x74ccbe53f77b08632ce0cb91d3a545bf6b8e0979.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x74ccbe53f77b08632ce0cb91d3a545bf6b8e0979.png"
+ ],
+ "name": "Fantom Bomb",
+ "symbol": "fBOMB",
+ "marketCap": "4679667.899266750846660007",
+ "price": "0.01979132007060876161",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": false,
+ "key": "evm--8453:0x74ccbe53f77b08632ce0cb91d3a545bf6b8e0979",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x10c56f005a379f8eafc88ff5c3f40d30f0031ac9",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x10c56f005a379f8eafc88ff5c3f40d30f0031ac9-1777460401433.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x10c56f005a379f8eafc88ff5c3f40d30f0031ac9-1777460401433.png"
+ ],
+ "name": "Strike Robot",
+ "symbol": "SR",
+ "marketCap": "1197736.175990428788176242",
+ "price": "0.00119773617599042879",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": false,
+ "key": "evm--8453:0x10c56f005a379f8eafc88ff5c3f40d30f0031ac9",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x29cc30f9d113b356ce408667aa6433589cecbdca",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x29cc30f9d113b356ce408667aa6433589cecbdca-1768993229461.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x29cc30f9d113b356ce408667aa6433589cecbdca-1768993229461.png"
+ ],
+ "name": "Elsa",
+ "symbol": "ELSA",
+ "marketCap": "11913928.324771431714086724",
+ "price": "0.05203043202363277017",
+ "priceChange24hPercent": "1.17",
+ "volume24h": "326920.592482625273500075",
+ "communityRecognized": true,
+ "key": "evm--8453:0x29cc30f9d113b356ce408667aa6433589cecbdca",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x07ec06ae91ee22302c097a3781cadcf99ac98e2a",
+ "logoUrl": "https://static.oklink.com/cdn/web3/currency/token/large/8453-0x07ec06ae91ee22302c097a3781cadcf99ac98e2a-106/type=default_90_0?v=1788828983305",
+ "logoUrls": [
+ "https://static.oklink.com/cdn/web3/currency/token/large/8453-0x07ec06ae91ee22302c097a3781cadcf99ac98e2a-106/type=default_90_0?v=1788828983305"
+ ],
+ "name": "DEAI",
+ "symbol": "DEAI",
+ "marketCap": "9217681.640564191016015642",
+ "price": "1.80362063170143495462",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": false,
+ "key": "evm--8453:0x07ec06ae91ee22302c097a3781cadcf99ac98e2a",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x63706e401c06ac8513145b7687a14804d17f814b",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x63706e401c06ac8513145b7687a14804d17f814b-1757667080547.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x63706e401c06ac8513145b7687a14804d17f814b-1757667080547.png"
+ ],
+ "name": "Aave Token",
+ "symbol": "AAVE",
+ "marketCap": "4545144.926885475787393735",
+ "price": "130.93372905399936573433",
+ "priceChange24hPercent": "-1.62",
+ "volume24h": "522723.64622119217437831",
+ "communityRecognized": true,
+ "key": "evm--8453:0x63706e401c06ac8513145b7687a14804d17f814b",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x3055913c90fcc1a6ce9a358911721eeb942013a1",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x3055913c90fcc1a6ce9a358911721eeb942013a1-1724908500044.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x3055913c90fcc1a6ce9a358911721eeb942013a1-1724908500044.png"
+ ],
+ "name": "PancakeSwap Token",
+ "symbol": "Cake",
+ "marketCap": "994282.72156555590317458",
+ "price": "2.22862379703736382748",
+ "priceChange24hPercent": "1.99",
+ "volume24h": "185228.92374627792780063",
+ "communityRecognized": true,
+ "key": "evm--8453:0x3055913c90fcc1a6ce9a358911721eeb942013a1",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0xb166e8b140d35d9d8226e40c09f757bac5a4d87d",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xb166e8b140d35d9d8226e40c09f757bac5a4d87d.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xb166e8b140d35d9d8226e40c09f757bac5a4d87d.png"
+ ],
+ "name": "Non-Playable Coin",
+ "symbol": "NPC",
+ "marketCap": "5355719.591537464906403182",
+ "price": "0.01825318252882716056",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": true,
+ "key": "evm--8453:0xb166e8b140d35d9d8226e40c09f757bac5a4d87d",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x532f27101965dd16442e59d40670faf5ebb142e4",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x532f27101965dd16442e59d40670faf5ebb142e4.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x532f27101965dd16442e59d40670faf5ebb142e4.png"
+ ],
+ "name": "Brett",
+ "symbol": "BRETT",
+ "marketCap": "52141259.957469586091513051",
+ "price": "0.00526168934173603467",
+ "priceChange24hPercent": "-2.33",
+ "volume24h": "277285.717870458177733064",
+ "communityRecognized": true,
+ "key": "evm--8453:0x532f27101965dd16442e59d40670faf5ebb142e4",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0xb9a1e52f3ed678b01ff5e256fde43f26f9c01ba3",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/e197c8a7a314decbaf37781a61fd599c28af10d94a6c939ee8c059c102bdc6e6",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/e197c8a7a314decbaf37781a61fd599c28af10d94a6c939ee8c059c102bdc6e6"
+ ],
+ "name": "Homebase",
+ "symbol": "HOME",
+ "marketCap": "1152165.148124647866121165",
+ "price": "0.00001152165148124648",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": false,
+ "key": "evm--8453:0xb9a1e52f3ed678b01ff5e256fde43f26f9c01ba3",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x50da645f148798f68ef2d7db7c1cb22a6819bb2c",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x50da645f148798f68ef2d7db7c1cb22a6819bb2c.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x50da645f148798f68ef2d7db7c1cb22a6819bb2c.png"
+ ],
+ "name": "SPX6900",
+ "symbol": "SPX",
+ "marketCap": "14363785.685294872142258963",
+ "price": "0.54235088153971126766",
+ "priceChange24hPercent": "-3.78",
+ "volume24h": "46122.442773171892035231",
+ "communityRecognized": true,
+ "key": "evm--8453:0x50da645f148798f68ef2d7db7c1cb22a6819bb2c",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x764a726d9ced0433a8d7643335919deb03a9a935",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x764a726d9ced0433a8d7643335919deb03a9a935-1724822100033.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x764a726d9ced0433a8d7643335919deb03a9a935-1724822100033.png"
+ ],
+ "name": "Pocket Network",
+ "symbol": "POKT",
+ "marketCap": "337367.060028771238441248",
+ "price": "0.00769259891575875321",
+ "priceChange24hPercent": "0.88",
+ "volume24h": "21047.2334931335481193",
+ "communityRecognized": true,
+ "key": "evm--8453:0x764a726d9ced0433a8d7643335919deb03a9a935",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x5cda0e1ca4ce2af96315f7f8963c85399c172204",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x5cda0e1ca4ce2af96315f7f8963c85399c172204-1771585371108.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x5cda0e1ca4ce2af96315f7f8963c85399c172204-1771585371108.png"
+ ],
+ "name": "Wrapped Coinbase Global Inc ST0x",
+ "symbol": "wtCOIN",
+ "marketCap": "254186.754760467533453862",
+ "price": "189.26939063034043881527",
+ "priceChange24hPercent": "1.12",
+ "volume24h": "518371.502133036606523431",
+ "communityRecognized": false,
+ "key": "evm--8453:0x5cda0e1ca4ce2af96315f7f8963c85399c172204",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x752c5a95d202972e124390f30a50154409d3c858",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x752c5a95d202972e124390f30a50154409d3c858-1775819380261.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x752c5a95d202972e124390f30a50154409d3c858-1775819380261.png"
+ ],
+ "name": "OFC",
+ "symbol": "OFC",
+ "marketCap": "8538932.214325266439617746",
+ "price": "0.00853893222311206679",
+ "priceChange24hPercent": "4.54",
+ "volume24h": "10287.92199811513521167",
+ "communityRecognized": true,
+ "key": "evm--8453:0x752c5a95d202972e124390f30a50154409d3c858",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0xa749de6c28262b7ffbc5de27dc845dd7ecd2b358",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xa749de6c28262b7ffbc5de27dc845dd7ecd2b358-1766738515943.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xa749de6c28262b7ffbc5de27dc845dd7ecd2b358-1766738515943.png"
+ ],
+ "name": "zkVerify",
+ "symbol": "VFY",
+ "marketCap": "1433487.247413803402996721",
+ "price": "0.00801609748445997526",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": true,
+ "key": "evm--8453:0xa749de6c28262b7ffbc5de27dc845dd7ecd2b358",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0xac485391eb2d7d88253a7f1ef18c37f4242d1a24",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xac485391eb2d7d88253a7f1ef18c37f4242d1a24-1761044406667.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xac485391eb2d7d88253a7f1ef18c37f4242d1a24-1761044406667.png"
+ ],
+ "name": "Lisk",
+ "symbol": "LSK",
+ "marketCap": "149461.02156388111367342",
+ "price": "0.0992662755130416178",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": true,
+ "key": "evm--8453:0xac485391eb2d7d88253a7f1ef18c37f4242d1a24",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x4f9fd6be4a90f2620860d680c0d4d5fb53d1a825",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x4f9fd6be4a90f2620860d680c0d4d5fb53d1a825-1731991500071.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x4f9fd6be4a90f2620860d680c0d4d5fb53d1a825-1731991500071.png"
+ ],
+ "name": "aixbt by Virtuals",
+ "symbol": "AIXBT",
+ "marketCap": "22091112.461957922867079219",
+ "price": "0.02220974753633014417",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": true,
+ "key": "evm--8453:0x4f9fd6be4a90f2620860d680c0d4d5fb53d1a825",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x7be44338b50591868ef8f469d448467b5c99901d",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/a41e01a821db504ce1ae80211e74349b5817274098108a514c485c55a2ce65e8",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/a41e01a821db504ce1ae80211e74349b5817274098108a514c485c55a2ce65e8"
+ ],
+ "name": "Hunter Biden's Laptop",
+ "symbol": "LAPTOP",
+ "marketCap": "21725.925254301478120545",
+ "price": "0.00002172592525430148",
+ "priceChange24hPercent": "421.63",
+ "volume24h": "141188.712827927444965221",
+ "communityRecognized": false,
+ "key": "evm--8453:0x7be44338b50591868ef8f469d448467b5c99901d",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x85635006d808030e97f3174c8ea1b4aa1f1feba3",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x85635006d808030e97f3174c8ea1b4aa1f1feba3-1780484439832.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x85635006d808030e97f3174c8ea1b4aa1f1feba3-1780484439832.png"
+ ],
+ "name": "Venice Deity",
+ "symbol": "VVVeity",
+ "marketCap": "153806.338943495338283455",
+ "price": "0.00000153817289347337",
+ "priceChange24hPercent": "-3.87",
+ "volume24h": "104154.378322767566065452",
+ "communityRecognized": false,
+ "key": "evm--8453:0x85635006d808030e97f3174c8ea1b4aa1f1feba3",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x85eac631c800af804476b140f87039f742c28ba3",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x85eac631c800af804476b140f87039f742c28ba3-1776598570194.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x85eac631c800af804476b140f87039f742c28ba3-1776598570194.png"
+ ],
+ "name": "WOON",
+ "symbol": "WOON",
+ "marketCap": "1235271.967483925046547957",
+ "price": "0.00001235271967483925",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": false,
+ "key": "evm--8453:0x85eac631c800af804476b140f87039f742c28ba3",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x1f16e03c1a5908818f47f6ee7bb16690b40d0671",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x1f16e03c1a5908818f47f6ee7bb16690b40d0671-1760612695963.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x1f16e03c1a5908818f47f6ee7bb16690b40d0671-1760612695963.png"
+ ],
+ "name": "Recall",
+ "symbol": "RECALL",
+ "marketCap": "14205131.13121361987021136",
+ "price": "0.04072844088116470751",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": true,
+ "key": "evm--8453:0x1f16e03c1a5908818f47f6ee7bb16690b40d0671",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0xb3b32f9f8827d4634fe7d973fa1034ec9fddb3b3",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xb3b32f9f8827d4634fe7d973fa1034ec9fddb3b3-1757667425357.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xb3b32f9f8827d4634fe7d973fa1034ec9fddb3b3-1757667425357.png"
+ ],
+ "name": "B3",
+ "symbol": "B3",
+ "marketCap": "46101975.850460289782313152",
+ "price": "0.00046101985491984264",
+ "priceChange24hPercent": "0.37",
+ "volume24h": "86834.574762279229418974",
+ "communityRecognized": true,
+ "key": "evm--8453:0xb3b32f9f8827d4634fe7d973fa1034ec9fddb3b3",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0xb8147ce9b0dac5f8165785dec6494e57748e4b78",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xb8147ce9b0dac5f8165785dec6494e57748e4b78-1757667120022.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xb8147ce9b0dac5f8165785dec6494e57748e4b78-1757667120022.png"
+ ],
+ "name": "DCAI",
+ "symbol": "DCAI",
+ "marketCap": "125383335.476360032019945307",
+ "price": "1.2538333547636003202",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": false,
+ "key": "evm--8453:0xb8147ce9b0dac5f8165785dec6494e57748e4b78",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x407a5fb66cb1b3d50004f7091c08a27b42ba6d6f",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x407a5fb66cb1b3d50004f7091c08a27b42ba6d6f-1772017308704.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x407a5fb66cb1b3d50004f7091c08a27b42ba6d6f-1772017308704.png"
+ ],
+ "name": "Robo Token",
+ "symbol": "ROBO",
+ "marketCap": "482859.304300151549599316",
+ "price": "0.01184959164639701158",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": false,
+ "key": "evm--8453:0x407a5fb66cb1b3d50004f7091c08a27b42ba6d6f",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0xc0041ef357b183448b235a8ea73ce4e4ec8c265f",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xc0041ef357b183448b235a8ea73ce4e4ec8c265f.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xc0041ef357b183448b235a8ea73ce4e4ec8c265f.png"
+ ],
+ "name": "Cookie",
+ "symbol": "COOKIE",
+ "marketCap": "3012881.722110497048734948",
+ "price": "0.01145881385372818061",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": true,
+ "key": "evm--8453:0xc0041ef357b183448b235a8ea73ce4e4ec8c265f",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0xa0a8481fc246cd12f75227abb96220ff5360fad3",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xa0a8481fc246cd12f75227abb96220ff5360fad3-1764500596628.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xa0a8481fc246cd12f75227abb96220ff5360fad3-1764500596628.png"
+ ],
+ "name": "CoinMarketCap 20 Index DTF",
+ "symbol": "CMC20",
+ "marketCap": "610393.638473702936788147",
+ "price": "162.84709535666937316913",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": true,
+ "key": "evm--8453:0xa0a8481fc246cd12f75227abb96220ff5360fad3",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0xa53887f7e7c1bf5010b8627f1c1ba94fe7a5d6e0",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xa53887f7e7c1bf5010b8627f1c1ba94fe7a5d6e0-1770289629072.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xa53887f7e7c1bf5010b8627f1c1ba94fe7a5d6e0-1770289629072.png"
+ ],
+ "name": "Rainbow",
+ "symbol": "RNBW",
+ "marketCap": "6630916.945471507607921933",
+ "price": "0.03157579497843575051",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": true,
+ "key": "evm--8453:0xa53887f7e7c1bf5010b8627f1c1ba94fe7a5d6e0",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x3792dbdd07e87413247df995e692806aa13d3299",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x3792dbdd07e87413247df995e692806aa13d3299.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x3792dbdd07e87413247df995e692806aa13d3299.png"
+ ],
+ "name": "OMI Token",
+ "symbol": "OMI",
+ "marketCap": "13536483.572544776590695353",
+ "price": "0.00023215879228135392",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": true,
+ "key": "evm--8453:0x3792dbdd07e87413247df995e692806aa13d3299",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x7300b37dfdfab110d83290a29dfb31b1740219fe",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x7300b37dfdfab110d83290a29dfb31b1740219fe-1757667130740.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x7300b37dfdfab110d83290a29dfb31b1740219fe-1757667130740.png"
+ ],
+ "name": "Mamo",
+ "symbol": "MAMO",
+ "marketCap": "4652254.344445816854784532",
+ "price": "0.00770879703989104838",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": true,
+ "key": "evm--8453:0x7300b37dfdfab110d83290a29dfb31b1740219fe",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0xa4a2e2ca3fbfe21aed83471d28b6f65a233c6e00",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xa4a2e2ca3fbfe21aed83471d28b6f65a233c6e00-1757667327909.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xa4a2e2ca3fbfe21aed83471d28b6f65a233c6e00-1757667327909.png"
+ ],
+ "name": "Ribbita by Virtuals",
+ "symbol": "TIBBIR",
+ "marketCap": "224197561.980597949193001739",
+ "price": "0.22430166357366588333",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": true,
+ "key": "evm--8453:0xa4a2e2ca3fbfe21aed83471d28b6f65a233c6e00",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x0c5142bc58f9a61ab8c3d2085dd2f4e550c5ce0b",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x0c5142bc58f9a61ab8c3d2085dd2f4e550c5ce0b-1728807300368.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x0c5142bc58f9a61ab8c3d2085dd2f4e550c5ce0b-1728807300368.png"
+ ],
+ "name": "RUSSELL",
+ "symbol": "RUSSELL",
+ "marketCap": "1805023.424568616554592883",
+ "price": "0.00185896412604427428",
+ "priceChange24hPercent": "-12.41",
+ "volume24h": "122934.689735867653794216",
+ "communityRecognized": false,
+ "key": "evm--8453:0x0c5142bc58f9a61ab8c3d2085dd2f4e550c5ce0b",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0xef5997c2cf2f6c138196f8a6203afc335206b3c1",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xef5997c2cf2f6c138196f8a6203afc335206b3c1-1758117888754.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xef5997c2cf2f6c138196f8a6203afc335206b3c1-1758117888754.png"
+ ],
+ "name": "OWB",
+ "symbol": "OWB",
+ "marketCap": "1567724.87847029871586087",
+ "price": "0.01100155708872840071",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": false,
+ "key": "evm--8453:0xef5997c2cf2f6c138196f8a6203afc335206b3c1",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0xf3df0a31ec5ea438150987805e841f960b9471b6",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xf3df0a31ec5ea438150987805e841f960b9471b6-1734879841001.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xf3df0a31ec5ea438150987805e841f960b9471b6-1734879841001.png"
+ ],
+ "name": "WOO",
+ "symbol": "WOO",
+ "marketCap": "184946.393995983051197898",
+ "price": "0.01163383334587447762",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": true,
+ "key": "evm--8453:0xf3df0a31ec5ea438150987805e841f960b9471b6",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x6c240dda6b5c336df09a4d011139beaaa1ea2aa2",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x6c240dda6b5c336df09a4d011139beaaa1ea2aa2-1757667219038.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x6c240dda6b5c336df09a4d011139beaaa1ea2aa2-1757667219038.png"
+ ],
+ "name": "ether.fi governance token",
+ "symbol": "ETHFI",
+ "marketCap": "574801.053385841664420322",
+ "price": "0.58217113569314292645",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": true,
+ "key": "evm--8453:0x6c240dda6b5c336df09a4d011139beaaa1ea2aa2",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0xbcff5af58099311135f183f1230f5f16bfacf464",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xbcff5af58099311135f183f1230f5f16bfacf464-1781607642159.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xbcff5af58099311135f183f1230f5f16bfacf464-1781607642159.png"
+ ],
+ "name": "Siren Coin",
+ "symbol": "SIREN",
+ "marketCap": "1241714.107341937439187951",
+ "price": "0.00248342821468387488",
+ "priceChange24hPercent": "2.69",
+ "volume24h": "3948.346294899878683905",
+ "communityRecognized": false,
+ "key": "evm--8453:0xbcff5af58099311135f183f1230f5f16bfacf464",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x6cb927b413068609853a539016f31deff6e9aba3",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x6cb927b413068609853a539016f31deff6e9aba3-1787922051197.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x6cb927b413068609853a539016f31deff6e9aba3-1787922051197.png"
+ ],
+ "name": "PrinterInkCoin",
+ "symbol": "PrinterInkCoin",
+ "marketCap": "83004.463937169341562813",
+ "price": "83004.4639371703004303805",
+ "priceChange24hPercent": "-8.73",
+ "volume24h": "2401.7037412564622665",
+ "communityRecognized": false,
+ "key": "evm--8453:0x6cb927b413068609853a539016f31deff6e9aba3",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0xfcd17ac4c4bf6a72c93018096f3fc09e66573ff9",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xfcd17ac4c4bf6a72c93018096f3fc09e66573ff9-1786712490719.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xfcd17ac4c4bf6a72c93018096f3fc09e66573ff9-1786712490719.png"
+ ],
+ "name": "Wrapped SK hynix Inc. ADR ST0x",
+ "symbol": "wtSKHY",
+ "marketCap": "27294.717298037084174171",
+ "price": "186.81340182767331365864",
+ "priceChange24hPercent": "4.81",
+ "volume24h": "4601.01130620169552348",
+ "communityRecognized": false,
+ "key": "evm--8453:0xfcd17ac4c4bf6a72c93018096f3fc09e66573ff9",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0xfcb58396bc4d188cd812d1f19d98ac2a58f38dbe",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/f5794d279776dfb3a4e91d35d504681f2e85c87f7a68600b62a076c2d88db65e",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/f5794d279776dfb3a4e91d35d504681f2e85c87f7a68600b62a076c2d88db65e"
+ ],
+ "name": "Cutecat",
+ "symbol": "CUTECAT",
+ "marketCap": "53319.500482584085143988",
+ "price": "0.00005331950048258409",
+ "priceChange24hPercent": "-67.74",
+ "volume24h": "76586.800605678154782679",
+ "communityRecognized": false,
+ "key": "evm--8453:0xfcb58396bc4d188cd812d1f19d98ac2a58f38dbe",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x296eb9c4d8fcbd00fbc6d5027e4202bf955fa76f",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x296eb9c4d8fcbd00fbc6d5027e4202bf955fa76f-1780830412474.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x296eb9c4d8fcbd00fbc6d5027e4202bf955fa76f-1780830412474.png"
+ ],
+ "name": "PEAK",
+ "symbol": "PEAK",
+ "marketCap": "219305.216308303990266927",
+ "price": "0.00029240695507773865",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": false,
+ "key": "evm--8453:0x296eb9c4d8fcbd00fbc6d5027e4202bf955fa76f",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0xf3081494b87e8d5fb7960f066e931d1d0e6e3d67",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xf3081494b87e8d5fb7960f066e931d1d0e6e3d67-1787230913021.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xf3081494b87e8d5fb7960f066e931d1d0e6e3d67-1787230913021.png"
+ ],
+ "name": "Bittensor",
+ "symbol": "TAO",
+ "marketCap": "419294.298216799183892678",
+ "price": "256.9401350839333271334",
+ "priceChange24hPercent": "-4.37",
+ "volume24h": "255047.805294",
+ "communityRecognized": false,
+ "key": "evm--8453:0xf3081494b87e8d5fb7960f066e931d1d0e6e3d67",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0xbf8e8f0e8866a7052f948c16508644347c57aba3",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xbf8e8f0e8866a7052f948c16508644347c57aba3-1773486075454.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xbf8e8f0e8866a7052f948c16508644347c57aba3-1773486075454.png"
+ ],
+ "name": "aeon",
+ "symbol": "aeon",
+ "marketCap": "1651073.629258943048542362",
+ "price": "0.00001651073638746874",
+ "priceChange24hPercent": "-2.18",
+ "volume24h": "47148.047323247077780986",
+ "communityRecognized": false,
+ "key": "evm--8453:0xbf8e8f0e8866a7052f948c16508644347c57aba3",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0xdd468a1ddc392dcdbef6db6e34e89aa338f9f186",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xdd468a1ddc392dcdbef6db6e34e89aa338f9f186-1774436602836.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xdd468a1ddc392dcdbef6db6e34e89aa338f9f186-1774436602836.png"
+ ],
+ "name": "Mezo USD",
+ "symbol": "MUSD",
+ "marketCap": "1172505.02352292020766745",
+ "price": "0.98987899805982649907",
+ "priceChange24hPercent": "-0.09",
+ "volume24h": "39021.91431490874444357",
+ "communityRecognized": false,
+ "key": "evm--8453:0xdd468a1ddc392dcdbef6db6e34e89aa338f9f186",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x2615a94df961278dcbc41fb0a54fec5f10a693ae",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x2615a94df961278dcbc41fb0a54fec5f10a693ae-1731723300159.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x2615a94df961278dcbc41fb0a54fec5f10a693ae-1731723300159.png"
+ ],
+ "name": "XRP (Universal)",
+ "symbol": "uXRP",
+ "marketCap": "2384466.984734847885614263",
+ "price": "1.38849992992956514409",
+ "priceChange24hPercent": "-1.05",
+ "volume24h": "15794.136033663759170143",
+ "communityRecognized": false,
+ "key": "evm--8453:0x2615a94df961278dcbc41fb0a54fec5f10a693ae",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x5577a294ae5a21446a11b0e4100ca83803995720",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x5577a294ae5a21446a11b0e4100ca83803995720-1788701221016.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x5577a294ae5a21446a11b0e4100ca83803995720-1788701221016.png"
+ ],
+ "name": "Pump (Bankr Bridged)",
+ "symbol": "ba3PUMP",
+ "marketCap": "74247.325451718472425612",
+ "price": "0.00436796742123381222",
+ "priceChange24hPercent": "9.62",
+ "volume24h": "26968.826531",
+ "communityRecognized": false,
+ "key": "evm--8453:0x5577a294ae5a21446a11b0e4100ca83803995720",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0xab964f7b7b6391bd6c4e8512ef00d01f255d9c0d",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xab964f7b7b6391bd6c4e8512ef00d01f255d9c0d-1730011500051.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xab964f7b7b6391bd6c4e8512ef00d01f255d9c0d-1730011500051.png"
+ ],
+ "name": "Prefrontal Cortex Convo Agent by Virtuals",
+ "symbol": "CONVO",
+ "marketCap": "746296.730078480786006529",
+ "price": "0.00081289772020289598",
+ "priceChange24hPercent": "0.8",
+ "volume24h": "1894.31246618316957649",
+ "communityRecognized": false,
+ "key": "evm--8453:0xab964f7b7b6391bd6c4e8512ef00d01f255d9c0d",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x79bbf4508b1391af3a0f4b30bb5fc4aa9ab0e07c",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x79bbf4508b1391af3a0f4b30bb5fc4aa9ab0e07c-1735965900062.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x79bbf4508b1391af3a0f4b30bb5fc4aa9ab0e07c-1735965900062.png"
+ ],
+ "name": "HeyAnon",
+ "symbol": "Anon",
+ "marketCap": "418216.063825616955509474",
+ "price": "0.26379025810398659701",
+ "priceChange24hPercent": "2.05",
+ "volume24h": "3225.4600349511227186",
+ "communityRecognized": true,
+ "key": "evm--8453:0x79bbf4508b1391af3a0f4b30bb5fc4aa9ab0e07c",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x85e90a5430af45776548adb82ee4cd9e33b08077",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x85e90a5430af45776548adb82ee4cd9e33b08077.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x85e90a5430af45776548adb82ee4cd9e33b08077.png"
+ ],
+ "name": "DINO",
+ "symbol": "DINO",
+ "marketCap": "1704817.310523718185209533",
+ "price": "0.00017048173105237182",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": false,
+ "key": "evm--8453:0x85e90a5430af45776548adb82ee4cd9e33b08077",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0xa1f72459dfa10bad200ac160ecd78c6b77a747be",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xa1f72459dfa10bad200ac160ecd78c6b77a747be-1769857806006.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xa1f72459dfa10bad200ac160ecd78c6b77a747be-1769857806006.png"
+ ],
+ "name": "CLAWNCH",
+ "symbol": "CLAWNCH",
+ "marketCap": "257196.824494973779747974",
+ "price": "0.00000258374597075594",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": false,
+ "key": "evm--8453:0xa1f72459dfa10bad200ac160ecd78c6b77a747be",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0xf83f2488376b072d4095852fc27c1d7788615d49",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/089b77ee67537414ac666b5d3a9cd70ef266a276abd6d64544c6aceae5aef2d5",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/089b77ee67537414ac666b5d3a9cd70ef266a276abd6d64544c6aceae5aef2d5"
+ ],
+ "name": "Google Wizard Cat",
+ "symbol": "MOMO",
+ "marketCap": "30568.953610554281228635",
+ "price": "0.0000323246535435723",
+ "priceChange24hPercent": "-21.3",
+ "volume24h": "21602.428085467033190945",
+ "communityRecognized": false,
+ "key": "evm--8453:0xf83f2488376b072d4095852fc27c1d7788615d49",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x9a26f5433671751c3276a065f57e5a02d2817973",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x9a26f5433671751c3276a065f57e5a02d2817973.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x9a26f5433671751c3276a065f57e5a02d2817973.png"
+ ],
+ "name": "Keyboard Cat",
+ "symbol": "KEYCAT",
+ "marketCap": "7188849.093615804048017137",
+ "price": "0.00071889730093917319",
+ "priceChange24hPercent": "-4.58",
+ "volume24h": "114197.215287111714126963",
+ "communityRecognized": true,
+ "key": "evm--8453:0x9a26f5433671751c3276a065f57e5a02d2817973",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x39cd7417080695f4e49b64f6f243b7804a0ea8ef",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x39cd7417080695f4e49b64f6f243b7804a0ea8ef-1779447867556.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x39cd7417080695f4e49b64f6f243b7804a0ea8ef-1779447867556.png"
+ ],
+ "name": "LSteak",
+ "symbol": "LSTEAK",
+ "marketCap": "167994.877415679392584726",
+ "price": "0.86017433297763662756",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": false,
+ "key": "evm--8453:0x39cd7417080695f4e49b64f6f243b7804a0ea8ef",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x4dcdf3451dfc114991283c2e5b72823d69882ba3",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/1ccd3933dca97d9cb594193ce6db2f19dfe7b63f8ca7881de4a1889207091161",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/1ccd3933dca97d9cb594193ce6db2f19dfe7b63f8ca7881de4a1889207091161"
+ ],
+ "name": "Free Bots",
+ "symbol": "Bots",
+ "marketCap": "273462.850508281296945587",
+ "price": "0.00000273462850508281",
+ "priceChange24hPercent": "-28.42",
+ "volume24h": "29431.748206013919983197",
+ "communityRecognized": false,
+ "key": "evm--8453:0x4dcdf3451dfc114991283c2e5b72823d69882ba3",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x7f2f00e54dcaa8b248bdfd75da2ae859d4d8ff3e",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x7f2f00e54dcaa8b248bdfd75da2ae859d4d8ff3e-1784027379406.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x7f2f00e54dcaa8b248bdfd75da2ae859d4d8ff3e-1784027379406.png"
+ ],
+ "name": "TAOT",
+ "symbol": "TAOT",
+ "marketCap": "80494506.833981288667786697",
+ "price": "0.32197802733592515467",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": false,
+ "key": "evm--8453:0x7f2f00e54dcaa8b248bdfd75da2ae859d4d8ff3e",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x2b11834ed1feaed4b4b3a86a6f571315e25a884d",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x2b11834ed1feaed4b4b3a86a6f571315e25a884d-1757667143818.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x2b11834ed1feaed4b4b3a86a6f571315e25a884d-1757667143818.png"
+ ],
+ "name": "Moca",
+ "symbol": "MOCA",
+ "marketCap": "883914.75335487484221987",
+ "price": "0.00878012335575261709",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": true,
+ "key": "evm--8453:0x2b11834ed1feaed4b4b3a86a6f571315e25a884d",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0xc08cd26474722ce93f4d0c34d16201461c10aa8c",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xc08cd26474722ce93f4d0c34d16201461c10aa8c-1728540000079.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xc08cd26474722ce93f4d0c34d16201461c10aa8c-1728540000079.png"
+ ],
+ "name": "CARV",
+ "symbol": "CARV",
+ "marketCap": "20688732.303840038554893076",
+ "price": "0.0366654931973830941",
+ "priceChange24hPercent": "-0.67",
+ "volume24h": "10914.62542704126118987",
+ "communityRecognized": true,
+ "key": "evm--8453:0xc08cd26474722ce93f4d0c34d16201461c10aa8c",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x768be13e1680b5ebe0024c42c896e3db59ec0149",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x768be13e1680b5ebe0024c42c896e3db59ec0149.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x768be13e1680b5ebe0024c42c896e3db59ec0149.png"
+ ],
+ "name": "SKI MASK DOG",
+ "symbol": "SKI",
+ "marketCap": "3064102.474366209906374827",
+ "price": "0.00309693917488133549",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": true,
+ "key": "evm--8453:0x768be13e1680b5ebe0024c42c896e3db59ec0149",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x53f39e5c53ee40bbc3da97c3b47bd2968d110a8d",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x53f39e5c53ee40bbc3da97c3b47bd2968d110a8d-1787317544384.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x53f39e5c53ee40bbc3da97c3b47bd2968d110a8d-1787317544384.png"
+ ],
+ "name": "Aligned Token",
+ "symbol": "ALIGN",
+ "marketCap": "3139670.813946540830622204",
+ "price": "0.00784258933830054385",
+ "priceChange24hPercent": "-0.56",
+ "volume24h": "169934.217343103536801189",
+ "communityRecognized": false,
+ "key": "evm--8453:0x53f39e5c53ee40bbc3da97c3b47bd2968d110a8d",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x16332535e2c27da578bc2e82beb09ce9d3c8eb07",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x16332535e2c27da578bc2e82beb09ce9d3c8eb07-1770809039917.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x16332535e2c27da578bc2e82beb09ce9d3c8eb07-1770809039917.png"
+ ],
+ "name": "ClawBank",
+ "symbol": "ClawBank",
+ "marketCap": "1127623.030737907936545092",
+ "price": "0.00001127623030748278",
+ "priceChange24hPercent": "11.53",
+ "volume24h": "23197.446369960471906024",
+ "communityRecognized": false,
+ "key": "evm--8453:0x16332535e2c27da578bc2e82beb09ce9d3c8eb07",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x5875eee11cf8398102fdad704c9e96607675467a",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x5875eee11cf8398102fdad704c9e96607675467a-1734160500375.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x5875eee11cf8398102fdad704c9e96607675467a-1734160500375.png"
+ ],
+ "name": "Savings USDS",
+ "symbol": "sUSDS",
+ "marketCap": "224856276.435445889192414198",
+ "price": "1.10882688596123185365",
+ "priceChange24hPercent": "0",
+ "volume24h": "580602.0130741898130165",
+ "communityRecognized": false,
+ "key": "evm--8453:0x5875eee11cf8398102fdad704c9e96607675467a",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0xb0ffa8000886e57f86dd5264b9582b2ad87b2b91",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xb0ffa8000886e57f86dd5264b9582b2ad87b2b91.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xb0ffa8000886e57f86dd5264b9582b2ad87b2b91.png"
+ ],
+ "name": "Wormhole Token",
+ "symbol": "W",
+ "marketCap": "747202.032675757312870102",
+ "price": "0.01015341300646277109",
+ "priceChange24hPercent": "-2.18",
+ "volume24h": "10521.81271051950609171",
+ "communityRecognized": true,
+ "key": "evm--8453:0xb0ffa8000886e57f86dd5264b9582b2ad87b2b91",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0xad46308a6f6999bacc099f3029b77c352e772ba3",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xad46308a6f6999bacc099f3029b77c352e772ba3-1788181476321.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xad46308a6f6999bacc099f3029b77c352e772ba3-1788181476321.png"
+ ],
+ "name": "defi-native",
+ "symbol": "defi-native",
+ "marketCap": "221632.306685117066459175",
+ "price": "0.00000221632306685117",
+ "priceChange24hPercent": "-24.43",
+ "volume24h": "48893.910339512711910722",
+ "communityRecognized": false,
+ "key": "evm--8453:0xad46308a6f6999bacc099f3029b77c352e772ba3",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x54330d28ca3357f294334bdc454a032e7f353416",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x54330d28ca3357f294334bdc454a032e7f353416-1757667273505.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x54330d28ca3357f294334bdc454a032e7f353416-1757667273505.png"
+ ],
+ "name": "Autonolas",
+ "symbol": "OLAS",
+ "marketCap": "339122.668987486467211949",
+ "price": "0.02781867477389578371",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": true,
+ "key": "evm--8453:0x54330d28ca3357f294334bdc454a032e7f353416",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x937a1cfaf0a3d9f5dc4d0927f72ee5e3e5f82a00",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x937a1cfaf0a3d9f5dc4d0927f72ee5e3e5f82a00-1757667355659.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x937a1cfaf0a3d9f5dc4d0927f72ee5e3e5f82a00-1757667355659.png"
+ ],
+ "name": "Cocoro",
+ "symbol": "Cocoro",
+ "marketCap": "1445193.941644469913353986",
+ "price": "0.0018127236646528315",
+ "priceChange24hPercent": "0.82",
+ "volume24h": "3103.429595095123467",
+ "communityRecognized": false,
+ "key": "evm--8453:0x937a1cfaf0a3d9f5dc4d0927f72ee5e3e5f82a00",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x920e753d8d7d5b598063c89b6f06288803448d06",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x920e753d8d7d5b598063c89b6f06288803448d06-1764673316643.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x920e753d8d7d5b598063c89b6f06288803448d06-1764673316643.png"
+ ],
+ "name": "PlanetIX",
+ "symbol": "AIX",
+ "marketCap": "1077085.549400390153811558",
+ "price": "0.00456585650445269247",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": false,
+ "key": "evm--8453:0x920e753d8d7d5b598063c89b6f06288803448d06",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x9ce4331dad842609b77be76a322aebc0bb323222",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/df8152a4eb67e65d907729c55d663d70251b222ea9dd85017bf40b64b70f1a81",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/df8152a4eb67e65d907729c55d663d70251b222ea9dd85017bf40b64b70f1a81"
+ ],
+ "name": "Nikola",
+ "symbol": "NIKOLA",
+ "marketCap": "6953.704556166932065958",
+ "price": "0.00000695370455616693",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": false,
+ "key": "evm--8453:0x9ce4331dad842609b77be76a322aebc0bb323222",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0xfbb75a59193a3525a8825bebe7d4b56899e2f7e1",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xfbb75a59193a3525a8825bebe7d4b56899e2f7e1.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xfbb75a59193a3525a8825bebe7d4b56899e2f7e1.png"
+ ],
+ "name": "ResearchCoin",
+ "symbol": "RSC",
+ "marketCap": "4991675.144629933201031277",
+ "price": "0.06002978882278599682",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": true,
+ "key": "evm--8453:0xfbb75a59193a3525a8825bebe7d4b56899e2f7e1",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0xff7f8f301f7a706e3cfd3d2275f5dc0b9ee8009b",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xff7f8f301f7a706e3cfd3d2275f5dc0b9ee8009b-1761760480675.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xff7f8f301f7a706e3cfd3d2275f5dc0b9ee8009b-1761760480675.png"
+ ],
+ "name": "Folks Finance",
+ "symbol": "FOLKS",
+ "marketCap": "358586.329645390364851485",
+ "price": "1.96133514851485148515",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": true,
+ "key": "evm--8453:0xff7f8f301f7a706e3cfd3d2275f5dc0b9ee8009b",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0xb200000000000000000000b8d3746d2e56596578",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/1dfc02b96f20f13bb84403a9a744f8a15ff2f0fdf60058db1653fbff834b2681",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/1dfc02b96f20f13bb84403a9a744f8a15ff2f0fdf60058db1653fbff834b2681"
+ ],
+ "name": "KittehCoin",
+ "symbol": "MEOW",
+ "marketCap": "158275.668599828043508142",
+ "price": "0.0001582756686239103",
+ "priceChange24hPercent": "-41.14",
+ "volume24h": "23163.578763630122288456",
+ "communityRecognized": false,
+ "key": "evm--8453:0xb200000000000000000000b8d3746d2e56596578",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x50caaef23732c1017cb7e37e3106824689757fb9",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/a09de3e352fbf06167f4d88ac1a086db1e836af00985d4451152ccf25d6c8f30",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/a09de3e352fbf06167f4d88ac1a086db1e836af00985d4451152ccf25d6c8f30"
+ ],
+ "name": "basedpair.fund",
+ "symbol": "BPAIR",
+ "marketCap": "99438.483363916435955976",
+ "price": "0.00009943848336391644",
+ "priceChange24hPercent": "3122.76",
+ "volume24h": "866915.141234104784947172",
+ "communityRecognized": false,
+ "key": "evm--8453:0x50caaef23732c1017cb7e37e3106824689757fb9",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x1a91df4a970ebab1bb4af32eb6d10509028ee4b8",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x1a91df4a970ebab1bb4af32eb6d10509028ee4b8-1785409249772.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x1a91df4a970ebab1bb4af32eb6d10509028ee4b8-1785409249772.png"
+ ],
+ "name": "Wrapped Roundhill Memory ETF ST0x",
+ "symbol": "wtDRAM",
+ "marketCap": "14512.647542038476768878",
+ "price": "62.30018887897584405404",
+ "priceChange24hPercent": "5.19",
+ "volume24h": "3866.763212",
+ "communityRecognized": false,
+ "key": "evm--8453:0x1a91df4a970ebab1bb4af32eb6d10509028ee4b8",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x0fb07c88bc6d195c196279523957c004eb868248",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x0fb07c88bc6d195c196279523957c004eb868248-1779188488767.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x0fb07c88bc6d195c196279523957c004eb868248-1779188488767.png"
+ ],
+ "name": "SPARK",
+ "symbol": "SPARK",
+ "marketCap": "1501239.948544950930622826",
+ "price": "0.00151517173971451816",
+ "priceChange24hPercent": "-4.18",
+ "volume24h": "12591.90129532060919965",
+ "communityRecognized": false,
+ "key": "evm--8453:0x0fb07c88bc6d195c196279523957c004eb868248",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x18a8bd1fe17a1bb9ffb39ecd83e9489cfd17a022",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x18a8bd1fe17a1bb9ffb39ecd83e9489cfd17a022.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x18a8bd1fe17a1bb9ffb39ecd83e9489cfd17a022.png"
+ ],
+ "name": "Andy",
+ "symbol": "ANDY",
+ "marketCap": "340449.867112796212627146",
+ "price": "0.00034044990115778633",
+ "priceChange24hPercent": "-4.24",
+ "volume24h": "1154.71366234070497299",
+ "communityRecognized": false,
+ "key": "evm--8453:0x18a8bd1fe17a1bb9ffb39ecd83e9489cfd17a022",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0xfca95aeb5bf44ae355806a5ad14659c940dc6bf7",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xfca95aeb5bf44ae355806a5ad14659c940dc6bf7-1757667238026.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xfca95aeb5bf44ae355806a5ad14659c940dc6bf7-1757667238026.png"
+ ],
+ "name": "SHIBA INU",
+ "symbol": "SHIB",
+ "marketCap": "567212.699294624132990433",
+ "price": "0.00000000084235115413",
+ "priceChange24hPercent": "3.14",
+ "volume24h": "4389.865785422797173257",
+ "communityRecognized": false,
+ "key": "evm--8453:0xfca95aeb5bf44ae355806a5ad14659c940dc6bf7",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x0480dfeb876221ad9ab90d4687efd6d5d6c839c2",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/106dcd9b4b3f940c4e4881bc73705a8da4d0cf92fcea7833b56eb52add1b05d8",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/106dcd9b4b3f940c4e4881bc73705a8da4d0cf92fcea7833b56eb52add1b05d8"
+ ],
+ "name": "TZ Token",
+ "symbol": "TZ",
+ "marketCap": "878103.146534744075076858",
+ "price": "0.00778025027141945722",
+ "priceChange24hPercent": "127.09",
+ "volume24h": "9253.0940257094353022",
+ "communityRecognized": false,
+ "key": "evm--8453:0x0480dfeb876221ad9ab90d4687efd6d5d6c839c2",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x9e1028f5f1d5ede59748ffcee5532509976840e0",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x9e1028f5f1d5ede59748ffcee5532509976840e0-1725440265752.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x9e1028f5f1d5ede59748ffcee5532509976840e0-1725440265752.png"
+ ],
+ "name": "Compound",
+ "symbol": "COMP",
+ "marketCap": "199615.180593075020149228",
+ "price": "20.94241040349455886221",
+ "priceChange24hPercent": "-1.03",
+ "volume24h": "3681.48643037193628792",
+ "communityRecognized": true,
+ "key": "evm--8453:0x9e1028f5f1d5ede59748ffcee5532509976840e0",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0xb200000000000000000000dfea18f58cd9adbc01",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xb200000000000000000000dfea18f58cd9adbc01-1785236436954.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xb200000000000000000000dfea18f58cd9adbc01-1785236436954.png"
+ ],
+ "name": "HAYLORD",
+ "symbol": "HAYLORD",
+ "marketCap": "90072.303504673097690079",
+ "price": "0.00009007445865899228",
+ "priceChange24hPercent": "-17.56",
+ "volume24h": "5568.474298472664525299",
+ "communityRecognized": false,
+ "key": "evm--8453:0xb200000000000000000000dfea18f58cd9adbc01",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x0db510e79909666d6dec7f5e49370838c16d950f",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x0db510e79909666d6dec7f5e49370838c16d950f-1732156200557.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x0db510e79909666d6dec7f5e49370838c16d950f-1732156200557.png"
+ ],
+ "name": "Super Anon",
+ "symbol": "ANON",
+ "marketCap": "95456.980371849575501603",
+ "price": "0.00009943433454551863",
+ "priceChange24hPercent": "-34.67",
+ "volume24h": "9374.17874155452356465",
+ "communityRecognized": false,
+ "key": "evm--8453:0x0db510e79909666d6dec7f5e49370838c16d950f",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0xff8104251e7761163fac3211ef5583fb3f8583d6",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xff8104251e7761163fac3211ef5583fb3f8583d6-1763809280868.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xff8104251e7761163fac3211ef5583fb3f8583d6-1763809280868.png"
+ ],
+ "name": "REPPO",
+ "symbol": "REPPO",
+ "marketCap": "5799466.451661356484227306",
+ "price": "0.01455197070421824568",
+ "priceChange24hPercent": "-5.08",
+ "volume24h": "163000.225390821282757456",
+ "communityRecognized": true,
+ "key": "evm--8453:0xff8104251e7761163fac3211ef5583fb3f8583d6",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x2a06a17cbc6d0032cac2c6696da90f29d39a1a29",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x2a06a17cbc6d0032cac2c6696da90f29d39a1a29-1721965709443.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x2a06a17cbc6d0032cac2c6696da90f29d39a1a29-1721965709443.png"
+ ],
+ "name": "HarryPotterObamaSonic10Inu",
+ "symbol": "BITCOIN",
+ "marketCap": "185314.822400857885619373",
+ "price": "0.01846990070738081723",
+ "priceChange24hPercent": "-2.99",
+ "volume24h": "852.309434501528077404",
+ "communityRecognized": true,
+ "key": "evm--8453:0x2a06a17cbc6d0032cac2c6696da90f29d39a1a29",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x04d5ddf5f3a8939889f11e97f8c4bb48317f1938",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x04d5ddf5f3a8939889f11e97f8c4bb48317f1938.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x04d5ddf5f3a8939889f11e97f8c4bb48317f1938.png"
+ ],
+ "name": "USDz",
+ "symbol": "USDz",
+ "marketCap": "6508097.593572206532910646",
+ "price": "0.97203590042322726602",
+ "priceChange24hPercent": "-0.51",
+ "volume24h": "3531.797370040485878988",
+ "communityRecognized": false,
+ "key": "evm--8453:0x04d5ddf5f3a8939889f11e97f8c4bb48317f1938",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x731814e491571a2e9ee3c5b1f7f3b962ee8f4870",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x731814e491571a2e9ee3c5b1f7f3b962ee8f4870-1732255200084.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x731814e491571a2e9ee3c5b1f7f3b962ee8f4870-1732255200084.png"
+ ],
+ "name": "VaderAI by Virtuals",
+ "symbol": "VADER",
+ "marketCap": "1155562.237046156324449546",
+ "price": "0.00117814834661054795",
+ "priceChange24hPercent": "0.05",
+ "volume24h": "1367.01471006136721301",
+ "communityRecognized": true,
+ "key": "evm--8453:0x731814e491571a2e9ee3c5b1f7f3b962ee8f4870",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x0c41f1fc9022feb69af6dc666abfe73c9ffda7ce",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x0c41f1fc9022feb69af6dc666abfe73c9ffda7ce-1721965709443.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x0c41f1fc9022feb69af6dc666abfe73c9ffda7ce-1721965709443.png"
+ ],
+ "name": "Bitcoin on Base",
+ "symbol": "BTCB",
+ "marketCap": "1031384.607671964330598667",
+ "price": "0.06598982383836983192",
+ "priceChange24hPercent": "-0.6",
+ "volume24h": "755.692200617929753361",
+ "communityRecognized": false,
+ "key": "evm--8453:0x0c41f1fc9022feb69af6dc666abfe73c9ffda7ce",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x2da56acb9ea78330f947bd57c54119debda7af71",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x2da56acb9ea78330f947bd57c54119debda7af71.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x2da56acb9ea78330f947bd57c54119debda7af71.png"
+ ],
+ "name": "Mog Coin",
+ "symbol": "Mog",
+ "marketCap": "12418641.041767454461119291",
+ "price": "0.00000011241219122351",
+ "priceChange24hPercent": "3.35",
+ "volume24h": "1787.034495800511379502",
+ "communityRecognized": true,
+ "key": "evm--8453:0x2da56acb9ea78330f947bd57c54119debda7af71",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0xf6e932ca12afa26665dc4dde7e27be02a7c02e50",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xf6e932ca12afa26665dc4dde7e27be02a7c02e50.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xf6e932ca12afa26665dc4dde7e27be02a7c02e50.png"
+ ],
+ "name": "Mochi",
+ "symbol": "MOCHI",
+ "marketCap": "1009663.729761957087688081",
+ "price": "0.00000107682532530098",
+ "priceChange24hPercent": "-7.97",
+ "volume24h": "6103.551166516511728666",
+ "communityRecognized": true,
+ "key": "evm--8453:0xf6e932ca12afa26665dc4dde7e27be02a7c02e50",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0xeb6d78148f001f3aa2f588997c5e102e489ad341",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xeb6d78148f001f3aa2f588997c5e102e489ad341-1732156200557.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xeb6d78148f001f3aa2f588997c5e102e489ad341-1732156200557.png"
+ ],
+ "name": "Super Champs",
+ "symbol": "CHAMP",
+ "marketCap": "476152.138799022390088434",
+ "price": "0.00047615213889824946",
+ "priceChange24hPercent": "-1.96",
+ "volume24h": "828.72855682584115933",
+ "communityRecognized": false,
+ "key": "evm--8453:0xeb6d78148f001f3aa2f588997c5e102e489ad341",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sui--mainnet",
+ "address": "0xdeeb7a4662eec9f2f3def03fb937a663dddaa2e215b8078a284d026b7946c270::deep::DEEP",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-onchain/sui--mainnet/tokens/0xdeeb7a4662eec9f2f3def03fb937a663dddaa2e215b8078a284d026b7946c270::deep::DEEP.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-onchain/sui--mainnet/tokens/0xdeeb7a4662eec9f2f3def03fb937a663dddaa2e215b8078a284d026b7946c270::deep::DEEP.png"
+ ],
+ "name": "DeepBook Token",
+ "symbol": "DEEP",
+ "marketCap": "92513275.605854737610588388",
+ "price": "0.01610275176958694093",
+ "priceChange24hPercent": "1.23",
+ "volume24h": "1856105.338736893040506281",
+ "communityRecognized": true,
+ "key": "sui--mainnet:0xdeeb7a4662eec9f2f3def03fb937a663dddaa2e215b8078a284d026b7946c270::deep::DEEP",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Sui",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sui.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sui--mainnet",
+ "address": "0x0041f9f9344cac094454cd574e333c4fdb132d7bcc9379bcd4aab485b2a63942::wbtc::WBTC",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/dd32930dcb280ef60957dbbdfb568248af2b960919f965b4f05f9a20085fd567",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/dd32930dcb280ef60957dbbdfb568248af2b960919f965b4f05f9a20085fd567"
+ ],
+ "name": "Wrapped BTC",
+ "symbol": "WBTC",
+ "price": "78672.01719550714950392535",
+ "priceChange24hPercent": "-1.05",
+ "volume24h": "445589.11192097956093179",
+ "communityRecognized": false,
+ "key": "sui--mainnet:0x0041f9f9344cac094454cd574e333c4fdb132d7bcc9379bcd4aab485b2a63942::wbtc::WBTC",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Sui",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sui.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sui--mainnet",
+ "address": "0x356a26eb9e012a68958082340d4c4116e7f55615cf27affcff209cf0ae544f59::wal::WAL",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-onchain/sui--mainnet/tokens/0x356a26eb9e012a68958082340d4c4116e7f55615cf27affcff209cf0ae544f59::wal::WAL.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-onchain/sui--mainnet/tokens/0x356a26eb9e012a68958082340d4c4116e7f55615cf27affcff209cf0ae544f59::wal::WAL.png"
+ ],
+ "name": "WAL Token",
+ "symbol": "WAL",
+ "marketCap": "70091456.868764486884665164",
+ "price": "0.0279225656083281303",
+ "priceChange24hPercent": "-0.33",
+ "volume24h": "596982.218140996572",
+ "communityRecognized": true,
+ "key": "sui--mainnet:0x356a26eb9e012a68958082340d4c4116e7f55615cf27affcff209cf0ae544f59::wal::WAL",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Sui",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sui.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sui--mainnet",
+ "address": "0x9f854b3ad20f8161ec0886f15f4a1752bf75d22261556f14cc8d3a1c5d50e529::magma::MAGMA",
+ "logoUrl": "https://coin-images.coingecko.com/coins/images/71100/large/magma.png?1765796989",
+ "logoUrls": [
+ "https://coin-images.coingecko.com/coins/images/71100/large/magma.png?1765796989"
+ ],
+ "name": "Magma Token",
+ "symbol": "MAGMA",
+ "marketCap": "240069477.224090492204218893",
+ "price": "0.2400694772240904922",
+ "priceChange24hPercent": "-5.56",
+ "volume24h": "3340111.7716962504039",
+ "communityRecognized": true,
+ "key": "sui--mainnet:0x9f854b3ad20f8161ec0886f15f4a1752bf75d22261556f14cc8d3a1c5d50e529::magma::MAGMA",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Sui",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sui.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sui--mainnet",
+ "address": "0xee962a61432231c2ede6946515beb02290cb516ad087bb06a731e922b2a5f57a::us::US",
+ "logoUrl": "https://coin-images.coingecko.com/coins/images/70693/large/us-icon.png?1763129786",
+ "logoUrls": [
+ "https://coin-images.coingecko.com/coins/images/70693/large/us-icon.png?1763129786"
+ ],
+ "name": "Talus Token",
+ "symbol": "US",
+ "marketCap": "150420240",
+ "price": "0.015042024",
+ "priceChange24hPercent": "-6.66",
+ "volume24h": "133956.198902",
+ "communityRecognized": true,
+ "key": "sui--mainnet:0xee962a61432231c2ede6946515beb02290cb516ad087bb06a731e922b2a5f57a::us::US",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Sui",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sui.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sui--mainnet",
+ "address": "0x0a48f85a3905cfa49a652bdb074d9e9fabad27892d54afaa5c9e0adeb7ac3cdf::swarm_network_token::SWARM_NETWORK_TOKEN",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/7058e87db0ac657acd1dbdb4b48557476288f95d851dfd4db1ce0b572949c5e4",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/7058e87db0ac657acd1dbdb4b48557476288f95d851dfd4db1ce0b572949c5e4"
+ ],
+ "name": "Swarm Network",
+ "symbol": "TRUTH",
+ "marketCap": "123507894.153172941395107111",
+ "price": "0.01235078941531729414",
+ "priceChange24hPercent": "0.17",
+ "volume24h": "47000.943745",
+ "communityRecognized": true,
+ "key": "sui--mainnet:0x0a48f85a3905cfa49a652bdb074d9e9fabad27892d54afaa5c9e0adeb7ac3cdf::swarm_network_token::SWARM_NETWORK_TOKEN",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Sui",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sui.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sui--mainnet",
+ "address": "0x76a49ebaf991fa2d4cb6a352af14425d453fe2ba6802b5ed2361b227150b6689::take::TAKE",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-onchain/sui--mainnet/tokens/0x76a49ebaf991fa2d4cb6a352af14425d453fe2ba6802b5ed2361b227150b6689::take::TAKE.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-onchain/sui--mainnet/tokens/0x76a49ebaf991fa2d4cb6a352af14425d453fe2ba6802b5ed2361b227150b6689::take::TAKE.png"
+ ],
+ "name": "TAKE",
+ "symbol": "TAKE",
+ "marketCap": "62751511.293141534725371733",
+ "price": "0.06275151129314153473",
+ "priceChange24hPercent": "6.82",
+ "volume24h": "26317.4912063823739",
+ "communityRecognized": false,
+ "key": "sui--mainnet:0x76a49ebaf991fa2d4cb6a352af14425d453fe2ba6802b5ed2361b227150b6689::take::TAKE",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Sui",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sui.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sui--mainnet",
+ "address": "0x5145494a5f5100e645e4b0aa950fa6b68f614e8c59e17bc5ded3495123a79178::ns::NS",
+ "logoUrl": "https://coin-images.coingecko.com/coins/images/40110/large/NS_coin.png?1725704829",
+ "logoUrls": [
+ "https://coin-images.coingecko.com/coins/images/40110/large/NS_coin.png?1725704829"
+ ],
+ "name": "SuiNS Token",
+ "symbol": "NS",
+ "marketCap": "6994217.161972698047605592",
+ "price": "0.0139884343239453961",
+ "priceChange24hPercent": "4.73",
+ "volume24h": "107065.6799735782368",
+ "communityRecognized": true,
+ "key": "sui--mainnet:0x5145494a5f5100e645e4b0aa950fa6b68f614e8c59e17bc5ded3495123a79178::ns::NS",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Sui",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sui.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sui--mainnet",
+ "address": "0x06864a6f921804860930db6ddbe2e16acdf8504495ea7481637a1c8b9a8fe54b::cetus::CETUS",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/cdf55a5f44dc4e2c64bb1ae6616312b2bb287f952bc7ca7897d61e11dda56e66",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/cdf55a5f44dc4e2c64bb1ae6616312b2bb287f952bc7ca7897d61e11dda56e66"
+ ],
+ "name": "Cetus Token",
+ "symbol": "CETUS",
+ "marketCap": "22788423.740342889693112432",
+ "price": "0.02278842374034288969",
+ "priceChange24hPercent": "-2.21",
+ "volume24h": "366935.626039658608233329",
+ "communityRecognized": true,
+ "key": "sui--mainnet:0x06864a6f921804860930db6ddbe2e16acdf8504495ea7481637a1c8b9a8fe54b::cetus::CETUS",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Sui",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sui.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sui--mainnet",
+ "address": "0xf22da9a24ad027cccb5f2d496cbe91de953d363513db08a3a734d361c7c17503::LOFI::LOFI",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-onchain/sui--mainnet/tokens/0xf22da9a24ad027cccb5f2d496cbe91de953d363513db08a3a734d361c7c17503::LOFI::LOFI.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-onchain/sui--mainnet/tokens/0xf22da9a24ad027cccb5f2d496cbe91de953d363513db08a3a734d361c7c17503::LOFI::LOFI.png"
+ ],
+ "name": "LOFI",
+ "symbol": "LOFI",
+ "marketCap": "3578553.114208961018635224",
+ "price": "0.00357855311420896102",
+ "priceChange24hPercent": "-7.66",
+ "volume24h": "8105.1861001749461",
+ "communityRecognized": true,
+ "key": "sui--mainnet:0xf22da9a24ad027cccb5f2d496cbe91de953d363513db08a3a734d361c7c17503::LOFI::LOFI",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Sui",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sui.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sui--mainnet",
+ "address": "0x9d297676e7a4b771ab023291377b2adfaa4938fb9080b8d12430e4b108b836a9::xaum::XAUM",
+ "logoUrl": "https://coin-images.coingecko.com/coins/images/51962/large/xaum_200px_logo_1x.png?1733560735",
+ "logoUrls": [
+ "https://coin-images.coingecko.com/coins/images/51962/large/xaum_200px_logo_1x.png?1733560735"
+ ],
+ "name": "Matrixdock Gold",
+ "symbol": "XAUM",
+ "marketCap": "11743861.665257931866038303",
+ "price": "4391.70761054848089842575",
+ "priceChange24hPercent": "0.63",
+ "volume24h": "56504.8667400401744",
+ "communityRecognized": false,
+ "key": "sui--mainnet:0x9d297676e7a4b771ab023291377b2adfaa4938fb9080b8d12430e4b108b836a9::xaum::XAUM",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Sui",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sui.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sui--mainnet",
+ "address": "0x7016aae72cfc67f2fadf55769c0a7dd54291a583b63051a5ed71081cce836ac6::sca::SCA",
+ "logoUrl": "https://coin-images.coingecko.com/coins/images/34648/large/sca.png?1705592307",
+ "logoUrls": [
+ "https://coin-images.coingecko.com/coins/images/34648/large/sca.png?1705592307"
+ ],
+ "name": "Scallop",
+ "symbol": "SCA",
+ "price": "0.00422250648978846478",
+ "priceChange24hPercent": "-4.04",
+ "volume24h": "33679.2962463032831",
+ "communityRecognized": true,
+ "key": "sui--mainnet:0x7016aae72cfc67f2fadf55769c0a7dd54291a583b63051a5ed71081cce836ac6::sca::SCA",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Sui",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sui.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sui--mainnet",
+ "address": "0x3a304c7feba2d819ea57c3542d68439ca2c386ba02159c740f7b406e592c62ea::haedal::HAEDAL",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-onchain/sui--mainnet/tokens/0x3a304c7feba2d819ea57c3542d68439ca2c386ba02159c740f7b406e592c62ea::haedal::HAEDAL.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-onchain/sui--mainnet/tokens/0x3a304c7feba2d819ea57c3542d68439ca2c386ba02159c740f7b406e592c62ea::haedal::HAEDAL.png"
+ ],
+ "name": "Haedal",
+ "symbol": "HAEDAL",
+ "marketCap": "18441763.345992663927178135",
+ "price": "0.01844176334599266393",
+ "priceChange24hPercent": "-0.85",
+ "volume24h": "19537.329320271251",
+ "communityRecognized": true,
+ "key": "sui--mainnet:0x3a304c7feba2d819ea57c3542d68439ca2c386ba02159c740f7b406e592c62ea::haedal::HAEDAL",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Sui",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sui.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sui--mainnet",
+ "address": "0x35169bc93e1fddfcf3a82a9eae726d349689ed59e4b065369af8789fe59f8608::mmt::MMT",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-onchain/sui--mainnet/tokens/0x35169bc93e1fddfcf3a82a9eae726d349689ed59e4b065369af8789fe59f8608::mmt::MMT.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-onchain/sui--mainnet/tokens/0x35169bc93e1fddfcf3a82a9eae726d349689ed59e4b065369af8789fe59f8608::mmt::MMT.png"
+ ],
+ "name": "MMT",
+ "symbol": "MMT",
+ "marketCap": "34672768.243454849205575237",
+ "price": "0.16988508396667849449",
+ "priceChange24hPercent": "1.96",
+ "volume24h": "36171.9156932429238",
+ "communityRecognized": true,
+ "key": "sui--mainnet:0x35169bc93e1fddfcf3a82a9eae726d349689ed59e4b065369af8789fe59f8608::mmt::MMT",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Sui",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sui.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sui--mainnet",
+ "address": "0xf8bfaf1cfefdc539a00e0bc37213c8f339cb411a6b0c4c023ed92f36c68d0fb6::bluwhale_ai::BLUWHALE_AI",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-onchain/sui--mainnet/tokens/0xf8bfaf1cfefdc539a00e0bc37213c8f339cb411a6b0c4c023ed92f36c68d0fb6::bluwhale_ai::BLUWHALE_AI.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-onchain/sui--mainnet/tokens/0xf8bfaf1cfefdc539a00e0bc37213c8f339cb411a6b0c4c023ed92f36c68d0fb6::bluwhale_ai::BLUWHALE_AI.png"
+ ],
+ "name": "Bluwhale AI",
+ "symbol": "BLUAI",
+ "price": "0.01095241776245544669",
+ "priceChange24hPercent": "-10.79",
+ "volume24h": "51106.5696978378788",
+ "communityRecognized": false,
+ "key": "sui--mainnet:0xf8bfaf1cfefdc539a00e0bc37213c8f339cb411a6b0c4c023ed92f36c68d0fb6::bluwhale_ai::BLUWHALE_AI",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Sui",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sui.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sui--mainnet",
+ "address": "0x8993129d72e733985f7f1a00396cbd055bad6f817fee36576ce483c8bbb8b87b::sudeng::SUDENG",
+ "logoUrl": "https://coin-images.coingecko.com/coins/images/50450/large/sudeng.png?1753214629",
+ "logoUrls": [
+ "https://coin-images.coingecko.com/coins/images/50450/large/sudeng.png?1753214629"
+ ],
+ "name": "sudeng",
+ "symbol": "HIPPO",
+ "marketCap": "1269279.203587223743234456",
+ "price": "0.00012692792035872237",
+ "priceChange24hPercent": "7.13",
+ "volume24h": "7077.797347581268",
+ "communityRecognized": true,
+ "key": "sui--mainnet:0x8993129d72e733985f7f1a00396cbd055bad6f817fee36576ce483c8bbb8b87b::sudeng::SUDENG",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Sui",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sui.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sui--mainnet",
+ "address": "0x7262fb2f7a3a14c888c438a3cd9b912469a58cf60f367352c46584262e8299aa::ika::IKA",
+ "logoUrl": "https://coin-images.coingecko.com/coins/images/67598/large/ika.jpg?1753770879",
+ "logoUrls": [
+ "https://coin-images.coingecko.com/coins/images/67598/large/ika.jpg?1753770879"
+ ],
+ "name": "IKA Token",
+ "symbol": "IKA",
+ "marketCap": "20828325.608959615203374421",
+ "price": "0.00208283256089596152",
+ "priceChange24hPercent": "-0.01",
+ "volume24h": "10609.6108824912421",
+ "communityRecognized": true,
+ "key": "sui--mainnet:0x7262fb2f7a3a14c888c438a3cd9b912469a58cf60f367352c46584262e8299aa::ika::IKA",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Sui",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sui.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sui--mainnet",
+ "address": "0x03bc8959a87448e241edbf2a4fae18c740698253773496e50bae8c8b3e0d5b3e::agi::AGI",
+ "logoUrl": "https://static.oklink.com/cdn/web3/currency/token/large/784-0x03bc8959a87448e241edbf2a4fae18c740698253773496e50bae8c8b3e0d5b3e::agi::AGI-107/type=default_90_0?v=1788835349047",
+ "logoUrls": [
+ "https://static.oklink.com/cdn/web3/currency/token/large/784-0x03bc8959a87448e241edbf2a4fae18c740698253773496e50bae8c8b3e0d5b3e::agi::AGI-107/type=default_90_0?v=1788835349047"
+ ],
+ "name": "Artificial Giga Inu",
+ "symbol": "AGI",
+ "marketCap": "11597.781268305266816045",
+ "price": "0.00001159778126830527",
+ "priceChange24hPercent": "31.51",
+ "volume24h": "1349.934282792892",
+ "communityRecognized": false,
+ "key": "sui--mainnet:0x03bc8959a87448e241edbf2a4fae18c740698253773496e50bae8c8b3e0d5b3e::agi::AGI",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Sui",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sui.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sui--mainnet",
+ "address": "0xe1b45a0e641b9955a20aa0ad1c1f4ad86aad8afb07296d4085e349a50e90bdca::blue::BLUE",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-onchain/sui--mainnet/tokens/0xe1b45a0e641b9955a20aa0ad1c1f4ad86aad8afb07296d4085e349a50e90bdca::blue::BLUE.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-onchain/sui--mainnet/tokens/0xe1b45a0e641b9955a20aa0ad1c1f4ad86aad8afb07296d4085e349a50e90bdca::blue::BLUE.png"
+ ],
+ "name": "Bluefin",
+ "symbol": "BLUE",
+ "price": "0.00992499258730470741",
+ "priceChange24hPercent": "-0.43",
+ "volume24h": "23698.3066880735811",
+ "communityRecognized": true,
+ "key": "sui--mainnet:0xe1b45a0e641b9955a20aa0ad1c1f4ad86aad8afb07296d4085e349a50e90bdca::blue::BLUE",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Sui",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sui.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sui--mainnet",
+ "address": "0x7a479e7a6e75323ac9125656a9ca795e11ea42165ac4206af44d1b66e9563be9::svbtc::SVBTC",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/c0ae94109b30c82bf49ccbcc253ff5fdc79b754d162e60378948e95ca0f6bf35",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/c0ae94109b30c82bf49ccbcc253ff5fdc79b754d162e60378948e95ca0f6bf35"
+ ],
+ "name": "Svalbard BTC",
+ "symbol": "SVBTC",
+ "price": "79624.61353778783962307395",
+ "priceChange24hPercent": "-0.75",
+ "volume24h": "2038.67269403777806",
+ "communityRecognized": false,
+ "key": "sui--mainnet:0x7a479e7a6e75323ac9125656a9ca795e11ea42165ac4206af44d1b66e9563be9::svbtc::SVBTC",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Sui",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sui.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sui--mainnet",
+ "address": "0xfa7ac3951fdca92c5200d468d31a365eb03b2be9936fde615e69f0c1274ad3a0::BLUB::BLUB",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-onchain/sui--mainnet/tokens/0xfa7ac3951fdca92c5200d468d31a365eb03b2be9936fde615e69f0c1274ad3a0::BLUB::BLUB.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-onchain/sui--mainnet/tokens/0xfa7ac3951fdca92c5200d468d31a365eb03b2be9936fde615e69f0c1274ad3a0::BLUB::BLUB.png"
+ ],
+ "name": "BLUB",
+ "symbol": "BLUB",
+ "marketCap": "1083555.260918580712322302",
+ "price": "0.00000000257566203361",
+ "priceChange24hPercent": "4.82",
+ "volume24h": "1251.3170607745699",
+ "communityRecognized": false,
+ "key": "sui--mainnet:0xfa7ac3951fdca92c5200d468d31a365eb03b2be9936fde615e69f0c1274ad3a0::BLUB::BLUB",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Sui",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sui.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sui--mainnet",
+ "address": "0xa99b8952d4f7d947ea77fe0ecdcc9e5fc0bcab2841d6e2a5aa00c3044e5544b5::navx::NAVX",
+ "logoUrl": "https://uni-test.onekey-asset.com/server-service-onchain/sui--mainnet/tokens/0xa99b8952d4f7d947ea77fe0ecdcc9e5fc0bcab2841d6e2a5aa00c3044e5544b5::navx::NAVX.png",
+ "logoUrls": [
+ "https://uni-test.onekey-asset.com/server-service-onchain/sui--mainnet/tokens/0xa99b8952d4f7d947ea77fe0ecdcc9e5fc0bcab2841d6e2a5aa00c3044e5544b5::navx::NAVX.png"
+ ],
+ "name": "NAVX Token",
+ "symbol": "NAVX",
+ "marketCap": "10123900.670334838697998109",
+ "price": "0.0101239006703348387",
+ "priceChange24hPercent": "-2.31",
+ "volume24h": "18264.8914064400753",
+ "communityRecognized": true,
+ "key": "sui--mainnet:0xa99b8952d4f7d947ea77fe0ecdcc9e5fc0bcab2841d6e2a5aa00c3044e5544b5::navx::NAVX",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Sui",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sui.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sui--mainnet",
+ "address": "0x41d587e5336f1c86cad50d38a7136db99333bb9bda91cea4ba69115defeb1402::sui_usde::SUI_USDE",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-onchain/sui--mainnet/tokens/0x41d587e5336f1c86cad50d38a7136db99333bb9bda91cea4ba69115defeb1402::sui_usde::SUI_USDE.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-onchain/sui--mainnet/tokens/0x41d587e5336f1c86cad50d38a7136db99333bb9bda91cea4ba69115defeb1402::sui_usde::SUI_USDE.png"
+ ],
+ "name": "eSui Dollar",
+ "symbol": "suiUSDe",
+ "marketCap": "13080284.243158565661478599",
+ "price": "0.99878404669260700389",
+ "priceChange24hPercent": "-0.12",
+ "volume24h": "219303.571929",
+ "communityRecognized": false,
+ "key": "sui--mainnet:0x41d587e5336f1c86cad50d38a7136db99333bb9bda91cea4ba69115defeb1402::sui_usde::SUI_USDE",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Sui",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sui.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sui--mainnet",
+ "address": "0xfe3afec26c59e874f3c1d60b8203cb3852d2bb2aa415df9548b8d688e6683f93::alpha::ALPHA",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-onchain/sui--mainnet/tokens/0xfe3afec26c59e874f3c1d60b8203cb3852d2bb2aa415df9548b8d688e6683f93::alpha::ALPHA.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-onchain/sui--mainnet/tokens/0xfe3afec26c59e874f3c1d60b8203cb3852d2bb2aa415df9548b8d688e6683f93::alpha::ALPHA.png"
+ ],
+ "name": "ALPHA Token",
+ "symbol": "ALPHA",
+ "marketCap": "1112950.757654235099893792",
+ "price": "0.7419671717694900666",
+ "priceChange24hPercent": "3.18",
+ "volume24h": "672.8727283613171",
+ "communityRecognized": false,
+ "key": "sui--mainnet:0xfe3afec26c59e874f3c1d60b8203cb3852d2bb2aa415df9548b8d688e6683f93::alpha::ALPHA",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Sui",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sui.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sui--mainnet",
+ "address": "0x50c9c77f29de11a2abdbe60e0869a026dc47c94bfc4e7d461c80313b079d44d2::warped::WARPED",
+ "logoUrl": "https://coin-images.coingecko.com/coins/images/33307/large/WarpedGames_Logo_Main_Isotype_Color-TransparentBG.png?1763209428",
+ "logoUrls": [
+ "https://coin-images.coingecko.com/coins/images/33307/large/WarpedGames_Logo_Main_Isotype_Color-TransparentBG.png?1763209428"
+ ],
+ "name": "Warped",
+ "symbol": "WARPED",
+ "price": "0.00007392100128069132",
+ "priceChange24hPercent": "3.33",
+ "volume24h": "778.5976849585288",
+ "communityRecognized": false,
+ "key": "sui--mainnet:0x50c9c77f29de11a2abdbe60e0869a026dc47c94bfc4e7d461c80313b079d44d2::warped::WARPED",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Sui",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sui.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sui--mainnet",
+ "address": "0xc466c28d87b3d5cd34f3d5c088751532d71a38d93a8aae4551dd56272cfb4355::manifest::MANIFEST",
+ "logoUrl": "data:image/jpeg;base64,/9j/4AAQSkZJRgABAQAAAQABAAD/4gHYSUNDX1BST0ZJTEUAAQEAAAHIAAAAAAQwAABtbnRyUkdCIFhZWiAH4AABAAEAAAAAAABhY3NwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAA9tYAAQAAAADTLQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlkZXNjAAAA8AAAACRyWFlaAAABFAAAABRnWFlaAAABKAAAABRiWFlaAAABPAAAABR3dHB0AAABUAAAABRyVFJDAAABZAAAAChnVFJDAAABZAAAAChiVFJDAAABZAAAAChjcHJ0AAABjAAAADxtbHVjAAAAAAAAAAEAAAAMZW5VUwAAAAgAAAAcAHMAUgBHAEJYWVogAAAAAAAAb6IAADj1AAADkFhZWiAAAAAAAABimQAAt4UAABjaWFlaIAAAAAAAACSgAAAPhAAAts9YWVogAAAAAAAA9tYAAQAAAADTLXBhcmEAAAAAAAQAAAACZmYAAPKnAAANWQAAE9AAAApbAAAAAAAAAABtbHVjAAAAAAAAAAEAAAAMZW5VUwAAACAAAAAcAEcAbwBvAGcAbABlACAASQBuAGMALgAgADIAMAAxADb/2wBDAAYEBQYFBAYGBQYHBwYIChAKCgkJChQODwwQFxQYGBcUFhYaHSUfGhsjHBYWICwgIyYnKSopGR8tMC0oMCUoKSj/2wBDAQcHBwoIChMKChMoGhYaKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCj/wAARCAD6APMDASIAAhEBAxEB/8QAHQABAAEFAQEBAAAAAAAAAAAAAAUDBAYHCAIBCf/EAEwQAAEDAwMBBAUHBwkFCQAAAAEAAgMEBREGEiExBxNRcRQiQWGRFiMygZOh0hVCU1SxwdEIJDNDYnKCkvAXUnOU4TQ3dYOEssLT8f/EABcBAQEBAQAAAAAAAAAAAAAAAAABAgP/xAAhEQEBAQACAgICAwAAAAAAAAAAARECEgMhEzEEMkFRkf/aAAwDAQACEQMRAD8A6pRFgdf2uaHoL6+0VV+hZWRy9xJ828xsfnG10gbtBz4nhBniLGdVa80xpR8TL/eaSkmlxshLi6R2eAdjQXY9+MK91JqiyaZoG1l/udLQU7s7TM/Bf7cNHVx9wBQTKKysl1o73aaW52yYT0NVGJYZQ0t3tPQ4IB+KxG+9reibHeJbXcr5HHWQu2StZFJI2J3g5zWloPmeEGdosE1B2t6I0/XCju18jgnMbJQGwSyNLXDLSHNaQcg+KP7WtEssDbyb3H+T3zGnY/uZNz5AAS1rNu44BHQYQZ2ig9I6rsur7aa7T1dHWUzXlji0FpY7wc1wBB8wpxAREQEREBERAREQEREBERAREQEREBERAREQEREA9Fy1qqi1BpnSNx7O5tPRVc2orpK233FtSwiUPkD97o/pgtA5PQcc+PUqg5dL22bVsOo545JbnBTmmhc95LImE5O1vQE+09ccINYfygdP2+g7KKqr9Ep33Nhoqd1YYx3rmtlYMF3XHuWd9otmttw0ZdKyuoaaoqqS2VJp5ZYw50RMRyWk9DwOngpfV2m7fquxy2m8Rvko5Xse5rHlpy1wcOR7wFf3CghuFrqbfUgmnqIXQSAHBLXNLTz5FBiHYh/3RaU/8Pi/9q1doGeqpuyXVlTFZaW8VEl2rvynBUVHcZj53EuwTnAHHvW+dPWak0/Y6O021jmUdJEIYmucXENHTk9Vh937JdN3K41tUXXOljr3mSspaStkigqXHqXsacHPt6ZQYDruopa/+T3pero6EUNPLU0Bipu8MndM7wYbuPJ49pWy9V0dqku9smhZb36tggldaYqyVzGEkDedreox1OCQpO96Ps9409S2Oqpi220z4nxRROLAwxnLAMewYVLWOibTqxtG65CpiqqJxdTVVLM6GaEkYO1zTnkIMD7CDUM1Jr2O9wxQaiNwjkrI6Y5pwCz1DH7eRnOeVuJY5o3R1p0jBUstTJ3TVUne1NTUSullmfjGXOdyVkaAiIgIiICIiAiIgIiICIiAiIgIiICIiAiIgIiICtqS4UdZNURUlVBPLTu2TMjkDjG7wcB0PmrlY3baKa3alvFSyjd6NVejtYY9o6B25xGegzygm2V9I9zWtqYS50roWgPHMjc5aPeNp49xVytc6o01Wu1HXV9DFWOpXNppO7pphG5zzIWzlnIw7u44hnI43AdSqEFPqyBkEIhr3l0cb2yOma4RANmGx5Lsl3MWTzk85OEGzUWttU0twpqKw26l/K81Q+mqC5tPWOEhl2tLXOeXDIDj4/VhUq2k1ZLN6I1tcGh0veVDJw1r2PkhIDTu3AhglHQY5x7EGypp4oGtM0jIw5wYC44y48AeZVRaun09d6uplpaiO6ujFa1zpnVp7t0QmBYYxu3NIYOSNp69Sci0qLZrA1FDHH+U2tjgdFJK2p3Et2yAdXgbs7OSCTwdw5QbcRapt9s1X+UbQ6c3GKmicOBMXdJcuMgMp4LMcHfjnGFd6kt+qJLvdH2v08PcJe5kbUYhMRgwxjW7uH97znA8/Yg2PJPFHLFHJIxskpIY0nBcQMkDx4BKqZwtTXywagdc6k26O6GeDv8A0WpfV7oww02xgaHPyH7yeSM85J5U/oy13eOuMl0fX+ixQH0dk8xzuc924OG927jbjcTjPGOUGbQTRVELZYJGyROGWvacg+RVQkAZK1DJp/UlvtopqCO4uilihL2sqz83JmbdtG9pA5i4DgOh5wQch0hR3+G/zSXZtY6GSjG98suWCXbH6rWhxB538hrcc53ZygzmnniqYI56eRksMjQ9j2HLXNIyCD7Qqi0rbrBqmm07QUlPFd6anhhpI6iH0ndIZGwzNkMZEgwzcYOA4D1enjKGzatkuNd39Tcj3gjZvZNtYWboM7cP9VwAk6NH53JyEG1kWCVNuu8Wm6SleLlOyK5T98yGpIqJKXfL3QEhcD7YT9LOAfJQNXatWSOmbF+VGVLosd6awFnd+jNbsGCB3nfZO7aPbzzhBs6ruVFRTwQ1dXBBNOdsTJJA10hyBhoPXqPirtarq9KXc3qkqojXv9ElLIpHVjie6NVC/By71h3fedc8AD2BVZ9OX+eGKR9RdGzmKmdIGVz2jvHTnv8AgOwB3fsHA9nKDZ6psnifNJEyRrpYwC9gPLc9MhauFn1ay704ZUV7aeEPZA4zb2gCWXHeZf62YzHyQ4+R5U/2d22toqm5T11NXwmdkAzWT969z2tIeQdzsDJ4/YgzZERAREQEREBERAREQEREBERB8LQXAkDI6FfURAREQEREBERAREQEREBERAREQEREBERAREQEREBERAREQEREBERAREQEREBERAREQEREBERAREQEREBERAREQEREBERAREQEREBERAREQEREBERAREQEREBERAREQEREBERAREQEREBERAREQEREBERAREQEREBERAREQEREBERAREQEREBERAREQEREBERAREQEREBERAREQEREBERAREQEREBERAREQERYHr7tHt2l4ZIoS2prgPoA+q0+8/uTNGeLy+RjBl72tHvOFyffe0HXV9L3QXB1BTO+ixmIuPqG5ay1LdtS08odcrtWkP8AoltS47vvW/jqa70kudDH/SVlM3zlaP3qib7ah1uVGP8Azm/xX50S3a5TPAbX1Tnk4wZnfvKnaKwahq4RKy7BjT1/nLyR5gLXxp2d+MvVsecMuFI4+6Zv8VdxTwzDMUrHj+y4FfnzcLdfrXb6mqfe5iyFuTgud14AyfNTvZrJXS281L7tLFUySYjDqlzTge0YOeql8eHZ3ai5w032kai0/Xx0lzmNwpsZ2zO3Ox4h/X45W89N6ott+ofSKSYMc3HeRSENcw+/+KxeNiy6nEUcb3bvykyg9LjNW8ZbGDnP19Ff97H3mze3fjO3PPwUV6REQEREBERAREQEREBERAREQEReJ5WQQvllcGRsBc5xPAAQe0Whu0rtjqrf6ZHp+WkayJje7dnfLK5x6BpGBj2rC9Lau11eMVV9vk1LTHkMZhjnDyHRbnCpsdWqC1jqKPTVmkrn081S4cNiiaSXHGcceS1L8vjRQhkdRJK4dXySFxPxUFc+0uZ2d9Qce52E6GskvHaRqGp0s2aptJtM1Q520bjnZ+aCXYw7xH7Oi1q+2XCV/plZR1k0j/Wae4eWt+7lVJe0dkErpYRE2YjBkAG4+Z6lRdX2lVdU/aJnuz0aDwtyYi8norg6N0goatzQM8RO58lrm9W+8VF1dVV1qrW07M7GmM/UMYWx6TULzGZK+vbGQ3f3TDl23xPgP2+zK+3C8VM5jbQ3G3wwPpHVW99Qdxx+Zx9F/uyVrWb6aJraadspdLG+NxOfXGP2q8ob1PR5AmftPHqPwR9avtV3WuguXE2S5oeTsaHc+JxnK+WHUNdLUd1LCKqPGXbnbA0eO7oE7Kj75f57hSMovntu/cXOlLtw9481lplpLJa6Q1E7GtETduOcuxkjj35VK5Uck9HHNaN9ZO4kPjpiX7OOpxnA8z/0h6PTV1qKqOSta8tjOQ1zs8qW6ZidptZ0UlTFukjABx83A8n/AKrZcU1HV28slhZOx7OYZW8PHXDgf9BYNQWCq3AhoaVLGgqIMROkDXvHAJxlBtrs00jom8RzflO3UcVbG/EELKh7BG08/N4cPHn25W0tN6OodP3B81sLo6Ug7YXPfIQT1O5ziT5Lga7NuNFd3iKeYP3cFjiumuxbtEuVukttj1ZNUVDKwhkFXIBhjz0YTnJB6ZIxlcuUaldDoiLKiIiAiIgIiICIiAiIgIiIC152iakbDM62hm+nDA6Utd9J2foHwGOVk+t7yNPaUuV1cCW0sJkOOq5W112iUohZLA587J+TLE8EZ8/Fa4z+Uqx1fIJ7uZKaGnE8rvnZcNY1jQOgHifHzUDcrnVMA3VkRHTbG4kqAq9T22qyXemNceuSD+5RFRcqF59SWUf3gurLJ7jdmspoBBVmWVw9ePbtDD4bieT9WPesbnlrqhxfJPCB7G983j71Gy1MJztm+IVs+Vh6SNyp7F1USysfh0gcf7Lsqma6VvDHbfJWzWvleGxje4nADeVc/km4YyaSYebcKexkljudENOzU8lQI6+SUvldIPptwA0A+7n4qTOrbRRQgRWulq6ttOKcHae7z+kOcZd/BYA6lmY8se3Y4dQ4gEK7orZLKc7mAeaey4unCa8Vck9RPE2SR2XOeT+wAlTbo6SxWwbqc3Dfh7nhjmxnHBwSBnGR8fNerLbadtTBFJOzfI9rByCeTjoqfp1yu8UVFbIzJSwOeMgtyAQWuHQdQ7xWaqS0nVUc1zjktJNtu23+jY7DJWkfQ88Y58T06kT981FUR1rhStjgYcHGwOOcDPJ961nE19DVS18DJGkSFoDgOPacj2cftWTaprQ+vZJnLpGNe7jHJGSrF5TE3FqO5OP/AGwjyYwfuVKtv9fjea2bLeR62Asap53vOGNJ8lWrKSudBuFPLtPtLThaxlJxFlfdKeVwHzj2n4lW9Nf6qs1k4ulIgMuyNo6MDTiPHwCjbPVTU1ypopiWt7xvBHiVI2aAVmq7WynhYIGuax4Iw/cCeTzz5rNWO/7dMai300x6yRNefrAKuFbWxnd22lZgjbE0YPUcBXK5tCIiAiIgIiICIiAiJlARfMryXgDkoMR7Y4DUdluqIx1NBKfg3P7lwVFdIrda7dTm2UFQ2aEve+aMlzjud7QR4L9CtTQ091stZbppdkdTGY3nGctPUeRXOWtOySyPZF308MMdM3bG+CQRnHXkO4WuKVoX0m3TRlzrFQD3tkmH/wA1avZbnnm2hg/sTv8A3krK7nYdN2+odTnUEsZbx/QiUfFpUXLarMDmDU1O7w3072q6IZ1HbXdKapaf+OPwqi630vJayYecgP7lMG0wf1V/trh7y4fuXx1tLGcXS1v8pT/BXRY2u0x1BfGKqWAdcdc/sU7T6SgcNzrlOT4AKIpXspqndLVwlo9kZzlS0OoKSAfSfJ7gQFNoxi90LqGpLdxdg4yVbUspB6qU1BcYrk/dDG2Px3PBUfSskYRgxN955WvuJib03IXXqkxyd+R5gZXuxV9bZJ56mqD2vgO5jC4ZHJacA+z1lTtNdQ0VxiqLjVFwjBLY4Y+pwRyfBTeoIZb4IqizMpZqcM2iJnDmctJBHhwosRNc9tTDbW0hLqp875pi08gOxtH3O+Knq9tudWfORVVXUMaGubGwuAIHO7/9VrabZ6AIpqljH3BoO2FnO12T6zvAAHgf6F9HY7vcHNM1ROcDA9bbx9SnGY35efyXXuG4yUzA6loYKVnQPkeMjzxlw+KsbleTJE4TXKJgHTuYw4fec/cp2j7Ou/INQXOz4klT9D2X2447ynDvMLTnjSVyr4TNG+nqJ5pWuBLnjAGDnhbZ7I7XQXTV9vulTXwNpu9Er4nfSY4Zz9XJ+5ZrQdl9lGN1tgd/eZlZbZtE0NvH8zpIoM9e7YG5Uqt2U14t07R3NZA4ez1wr5krHjLHtcPccrV9vsTi4Nja4nwCyiisFRFtJmDCPAnhYwZUioU0b44mtkeXuH5x9qrBRX1ERAREQEREBMIiDyW5VvNTGQY3kK6RBCVNl74H508rX+sOyCn1C90pq5GSEdCSW/BbbRXaOVrp/JtqXOJgqGn3tKx6q/k5Xlmdkx/y5XZSK9qY4im/k939nSVv1tKtHdgWoh/WQ/AruggH2LyWNPVo+Cvepjhb/YJqAdZYfvXpnYNex9KVn1BdzGGI9Y2fBefRof0TP8qdxxHH2EXT86QferyHsHrP6yYjyJXaHo0H6Jn+VPRoP0TP8qdxx/B2CRnBmfK4/wB4qYoOw6hgIOyXP/Ed/FdUejQ/omfBPRof0TPgp2HP1t7L6WibiKBrfq6qfpdEMjxiP7luIU8Q/q2/Bewxo6NA8gnYazpdI4wGwk/Upyk0g0AGRzWe4DJWZYRTVQEemaRo+k/P1KuyxQMIIc4+eFMImihT0zYRhuMe5oCrYX1FAREQEREBERAREQEREBERAREQEREBERAREQEREBERAREQEREBERAREQEREBERAREQEREBERAREQEREBERAREQEREBERAREQEREBERAREQEREBERAREQEREBEJx1XjvGf7w+KDEe0OouVBLYqq33KSmhdcqemmgbGwiZskgBySCRxnphZirepipqlrG1EcMoY8SNDwHbXDkOGehHiq3eM/3m/FDHpF8a9ruhBTcPEIIy+PlaImwTyMlcHBkcYGXuxwSTwAPapGDf3LO9IMm0biOmfaqdTTU1Vt9Jhhm29O8YHY+Kqt2taGtwAOAAg9ImQfavm4eIQWN3LxHGI5nxuLjhrNodJ6pO0F3A8fqXuzzPntdLLMd0jowXH345VaohgqY9lRHHKzrte0OH3qowMjYGMDWtAwAOAEHpEyPFfMjxQWd3qX0tG50TXGRxDGkNLtpP5xA9g6rxYKh1TaKWV73SPLBuc4YJPir/I8QvMbWRsDWBrWjoBwAg9omR4pkeKCzuz5I6B5gOJCWtB3AdXAdTx7V4s8zpIZGSF5lieWP3ODueDwQBkYI9ivJWxyxuZIGvY4YLXDIK8wRQ08YjgYyOMdGsAAH1IKqJkeKZA9qChX1HotFNOW7u7YXY8cK1s1RNLG+KrH85jxvIOWnPIwr921zS12CDwQfaqdPBBTM2U8ccTM52saGj7kFZF8yPFfchAPRUafJc873OaDgZ93X/XuVXI8UaA0YGAEH1EyiAiIgp1ELKiCSGUZjkaWuGcZB4KwIdjuiG/RtEv/AD1R/wDYtgopZL9t8PJz4frcYG3sk0Y3papR/wCtqPxqq3ss0iOlsk/5yf8AGs3RTpx/p2n5n5E+vJf9qG07pm16dZMy0U7oGzEF4Mr35x0+kSqbtJWVziTSOJJyfn5PxKdRWST1HDnz5eTl253agfkjZP1N328n4k+SNk/U3fbyfiU8irKOtlloLW976GExueMOJkc7I+slWs+lrPPNJNLSudI9xc4988ZJ/wASm0QQPyRsn6m77eT8SfJGyfqbvt5PxKeRBF22w2621BmooDHIW7STI93HkSfBU6zTVqramSoqaZz5nnLnd68Z4x0BwphEED8kbJ+pu+3k/EnyRsn6m77eT8SnkQRNBp210FUyopKdzJm5w4yvd1GOhOF9uGnrZcal1RWU7pJSAC4Svb09wOFKoggfkjZP1R328n4k+SNk/VHfbyfiU8iCGpNM2mkqY56emcyWM5a7vnnH1E4Va52K33OdstbA6SRrdoIkc3j6iFJoggfkjZP1R328n4l9bpOzN6Ujvt5PxKdRBEwaetkEjZIqdzXtIIPevOD8VeVdBT1hYahheW9PWIx8CrpEFi200bfoxEf43fxVVtDTt+iwj/EVcogptgjb0H3qoiICIiD/2Q==",
+ "logoUrls": [
+ "data:image/jpeg;base64,/9j/4AAQSkZJRgABAQAAAQABAAD/4gHYSUNDX1BST0ZJTEUAAQEAAAHIAAAAAAQwAABtbnRyUkdCIFhZWiAH4AABAAEAAAAAAABhY3NwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAA9tYAAQAAAADTLQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlkZXNjAAAA8AAAACRyWFlaAAABFAAAABRnWFlaAAABKAAAABRiWFlaAAABPAAAABR3dHB0AAABUAAAABRyVFJDAAABZAAAAChnVFJDAAABZAAAAChiVFJDAAABZAAAAChjcHJ0AAABjAAAADxtbHVjAAAAAAAAAAEAAAAMZW5VUwAAAAgAAAAcAHMAUgBHAEJYWVogAAAAAAAAb6IAADj1AAADkFhZWiAAAAAAAABimQAAt4UAABjaWFlaIAAAAAAAACSgAAAPhAAAts9YWVogAAAAAAAA9tYAAQAAAADTLXBhcmEAAAAAAAQAAAACZmYAAPKnAAANWQAAE9AAAApbAAAAAAAAAABtbHVjAAAAAAAAAAEAAAAMZW5VUwAAACAAAAAcAEcAbwBvAGcAbABlACAASQBuAGMALgAgADIAMAAxADb/2wBDAAYEBQYFBAYGBQYHBwYIChAKCgkJChQODwwQFxQYGBcUFhYaHSUfGhsjHBYWICwgIyYnKSopGR8tMC0oMCUoKSj/2wBDAQcHBwoIChMKChMoGhYaKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCj/wAARCAD6APMDASIAAhEBAxEB/8QAHQABAAEFAQEBAAAAAAAAAAAAAAUDBAYHCAIBCf/EAEwQAAEDAwMBBAUHBwkFCQAAAAEAAgMEBREGEiExBxNRcRQiQWGRFiMygZOh0hVCU1SxwdEIJDNDYnKCkvAXUnOU4TQ3dYOEssLT8f/EABcBAQEBAQAAAAAAAAAAAAAAAAABAgP/xAAhEQEBAQACAgICAwAAAAAAAAAAARECEgMhEzEEMkFRkf/aAAwDAQACEQMRAD8A6pRFgdf2uaHoL6+0VV+hZWRy9xJ828xsfnG10gbtBz4nhBniLGdVa80xpR8TL/eaSkmlxshLi6R2eAdjQXY9+MK91JqiyaZoG1l/udLQU7s7TM/Bf7cNHVx9wBQTKKysl1o73aaW52yYT0NVGJYZQ0t3tPQ4IB+KxG+9reibHeJbXcr5HHWQu2StZFJI2J3g5zWloPmeEGdosE1B2t6I0/XCju18jgnMbJQGwSyNLXDLSHNaQcg+KP7WtEssDbyb3H+T3zGnY/uZNz5AAS1rNu44BHQYQZ2ig9I6rsur7aa7T1dHWUzXlji0FpY7wc1wBB8wpxAREQEREBERAREQEREBERAREQEREBERAREQEREA9Fy1qqi1BpnSNx7O5tPRVc2orpK233FtSwiUPkD97o/pgtA5PQcc+PUqg5dL22bVsOo545JbnBTmmhc95LImE5O1vQE+09ccINYfygdP2+g7KKqr9Ep33Nhoqd1YYx3rmtlYMF3XHuWd9otmttw0ZdKyuoaaoqqS2VJp5ZYw50RMRyWk9DwOngpfV2m7fquxy2m8Rvko5Xse5rHlpy1wcOR7wFf3CghuFrqbfUgmnqIXQSAHBLXNLTz5FBiHYh/3RaU/8Pi/9q1doGeqpuyXVlTFZaW8VEl2rvynBUVHcZj53EuwTnAHHvW+dPWak0/Y6O021jmUdJEIYmucXENHTk9Vh937JdN3K41tUXXOljr3mSspaStkigqXHqXsacHPt6ZQYDruopa/+T3pero6EUNPLU0Bipu8MndM7wYbuPJ49pWy9V0dqku9smhZb36tggldaYqyVzGEkDedreox1OCQpO96Ps9409S2Oqpi220z4nxRROLAwxnLAMewYVLWOibTqxtG65CpiqqJxdTVVLM6GaEkYO1zTnkIMD7CDUM1Jr2O9wxQaiNwjkrI6Y5pwCz1DH7eRnOeVuJY5o3R1p0jBUstTJ3TVUne1NTUSullmfjGXOdyVkaAiIgIiICIiAiIgIiICIiAiIgIiICIiAiIgIiICtqS4UdZNURUlVBPLTu2TMjkDjG7wcB0PmrlY3baKa3alvFSyjd6NVejtYY9o6B25xGegzygm2V9I9zWtqYS50roWgPHMjc5aPeNp49xVytc6o01Wu1HXV9DFWOpXNppO7pphG5zzIWzlnIw7u44hnI43AdSqEFPqyBkEIhr3l0cb2yOma4RANmGx5Lsl3MWTzk85OEGzUWttU0twpqKw26l/K81Q+mqC5tPWOEhl2tLXOeXDIDj4/VhUq2k1ZLN6I1tcGh0veVDJw1r2PkhIDTu3AhglHQY5x7EGypp4oGtM0jIw5wYC44y48AeZVRaun09d6uplpaiO6ujFa1zpnVp7t0QmBYYxu3NIYOSNp69Sci0qLZrA1FDHH+U2tjgdFJK2p3Et2yAdXgbs7OSCTwdw5QbcRapt9s1X+UbQ6c3GKmicOBMXdJcuMgMp4LMcHfjnGFd6kt+qJLvdH2v08PcJe5kbUYhMRgwxjW7uH97znA8/Yg2PJPFHLFHJIxskpIY0nBcQMkDx4BKqZwtTXywagdc6k26O6GeDv8A0WpfV7oww02xgaHPyH7yeSM85J5U/oy13eOuMl0fX+ixQH0dk8xzuc924OG927jbjcTjPGOUGbQTRVELZYJGyROGWvacg+RVQkAZK1DJp/UlvtopqCO4uilihL2sqz83JmbdtG9pA5i4DgOh5wQch0hR3+G/zSXZtY6GSjG98suWCXbH6rWhxB538hrcc53ZygzmnniqYI56eRksMjQ9j2HLXNIyCD7Qqi0rbrBqmm07QUlPFd6anhhpI6iH0ndIZGwzNkMZEgwzcYOA4D1enjKGzatkuNd39Tcj3gjZvZNtYWboM7cP9VwAk6NH53JyEG1kWCVNuu8Wm6SleLlOyK5T98yGpIqJKXfL3QEhcD7YT9LOAfJQNXatWSOmbF+VGVLosd6awFnd+jNbsGCB3nfZO7aPbzzhBs6ruVFRTwQ1dXBBNOdsTJJA10hyBhoPXqPirtarq9KXc3qkqojXv9ElLIpHVjie6NVC/By71h3fedc8AD2BVZ9OX+eGKR9RdGzmKmdIGVz2jvHTnv8AgOwB3fsHA9nKDZ6psnifNJEyRrpYwC9gPLc9MhauFn1ay704ZUV7aeEPZA4zb2gCWXHeZf62YzHyQ4+R5U/2d22toqm5T11NXwmdkAzWT969z2tIeQdzsDJ4/YgzZERAREQEREBERAREQEREBERB8LQXAkDI6FfURAREQEREBERAREQEREBERAREQEREBERAREQEREBERAREQEREBERAREQEREBERAREQEREBERAREQEREBERAREQEREBERAREQEREBERAREQEREBERAREQEREBERAREQEREBERAREQEREBERAREQEREBERAREQEREBERAREQEREBERAREQEREBERAREQEREBERAREQEREBERAREQEREBERAREQEREBERAREQERYHr7tHt2l4ZIoS2prgPoA+q0+8/uTNGeLy+RjBl72tHvOFyffe0HXV9L3QXB1BTO+ixmIuPqG5ay1LdtS08odcrtWkP8AoltS47vvW/jqa70kudDH/SVlM3zlaP3qib7ah1uVGP8Azm/xX50S3a5TPAbX1Tnk4wZnfvKnaKwahq4RKy7BjT1/nLyR5gLXxp2d+MvVsecMuFI4+6Zv8VdxTwzDMUrHj+y4FfnzcLdfrXb6mqfe5iyFuTgud14AyfNTvZrJXS281L7tLFUySYjDqlzTge0YOeql8eHZ3ai5w032kai0/Xx0lzmNwpsZ2zO3Ox4h/X45W89N6ott+ofSKSYMc3HeRSENcw+/+KxeNiy6nEUcb3bvykyg9LjNW8ZbGDnP19Ff97H3mze3fjO3PPwUV6REQEREBERAREQEREBERAREQEReJ5WQQvllcGRsBc5xPAAQe0Whu0rtjqrf6ZHp+WkayJje7dnfLK5x6BpGBj2rC9Lau11eMVV9vk1LTHkMZhjnDyHRbnCpsdWqC1jqKPTVmkrn081S4cNiiaSXHGcceS1L8vjRQhkdRJK4dXySFxPxUFc+0uZ2d9Qce52E6GskvHaRqGp0s2aptJtM1Q520bjnZ+aCXYw7xH7Oi1q+2XCV/plZR1k0j/Wae4eWt+7lVJe0dkErpYRE2YjBkAG4+Z6lRdX2lVdU/aJnuz0aDwtyYi8norg6N0goatzQM8RO58lrm9W+8VF1dVV1qrW07M7GmM/UMYWx6TULzGZK+vbGQ3f3TDl23xPgP2+zK+3C8VM5jbQ3G3wwPpHVW99Qdxx+Zx9F/uyVrWb6aJraadspdLG+NxOfXGP2q8ob1PR5AmftPHqPwR9avtV3WuguXE2S5oeTsaHc+JxnK+WHUNdLUd1LCKqPGXbnbA0eO7oE7Kj75f57hSMovntu/cXOlLtw9481lplpLJa6Q1E7GtETduOcuxkjj35VK5Uck9HHNaN9ZO4kPjpiX7OOpxnA8z/0h6PTV1qKqOSta8tjOQ1zs8qW6ZidptZ0UlTFukjABx83A8n/AKrZcU1HV28slhZOx7OYZW8PHXDgf9BYNQWCq3AhoaVLGgqIMROkDXvHAJxlBtrs00jom8RzflO3UcVbG/EELKh7BG08/N4cPHn25W0tN6OodP3B81sLo6Ug7YXPfIQT1O5ziT5Lga7NuNFd3iKeYP3cFjiumuxbtEuVukttj1ZNUVDKwhkFXIBhjz0YTnJB6ZIxlcuUaldDoiLKiIiAiIgIiICIiAiIgIiIC152iakbDM62hm+nDA6Utd9J2foHwGOVk+t7yNPaUuV1cCW0sJkOOq5W112iUohZLA587J+TLE8EZ8/Fa4z+Uqx1fIJ7uZKaGnE8rvnZcNY1jQOgHifHzUDcrnVMA3VkRHTbG4kqAq9T22qyXemNceuSD+5RFRcqF59SWUf3gurLJ7jdmspoBBVmWVw9ePbtDD4bieT9WPesbnlrqhxfJPCB7G983j71Gy1MJztm+IVs+Vh6SNyp7F1USysfh0gcf7Lsqma6VvDHbfJWzWvleGxje4nADeVc/km4YyaSYebcKexkljudENOzU8lQI6+SUvldIPptwA0A+7n4qTOrbRRQgRWulq6ttOKcHae7z+kOcZd/BYA6lmY8se3Y4dQ4gEK7orZLKc7mAeaey4unCa8Vck9RPE2SR2XOeT+wAlTbo6SxWwbqc3Dfh7nhjmxnHBwSBnGR8fNerLbadtTBFJOzfI9rByCeTjoqfp1yu8UVFbIzJSwOeMgtyAQWuHQdQ7xWaqS0nVUc1zjktJNtu23+jY7DJWkfQ88Y58T06kT981FUR1rhStjgYcHGwOOcDPJ961nE19DVS18DJGkSFoDgOPacj2cftWTaprQ+vZJnLpGNe7jHJGSrF5TE3FqO5OP/AGwjyYwfuVKtv9fjea2bLeR62Asap53vOGNJ8lWrKSudBuFPLtPtLThaxlJxFlfdKeVwHzj2n4lW9Nf6qs1k4ulIgMuyNo6MDTiPHwCjbPVTU1ypopiWt7xvBHiVI2aAVmq7WynhYIGuax4Iw/cCeTzz5rNWO/7dMai300x6yRNefrAKuFbWxnd22lZgjbE0YPUcBXK5tCIiAiIgIiICIiAiJlARfMryXgDkoMR7Y4DUdluqIx1NBKfg3P7lwVFdIrda7dTm2UFQ2aEve+aMlzjud7QR4L9CtTQ091stZbppdkdTGY3nGctPUeRXOWtOySyPZF308MMdM3bG+CQRnHXkO4WuKVoX0m3TRlzrFQD3tkmH/wA1avZbnnm2hg/sTv8A3krK7nYdN2+odTnUEsZbx/QiUfFpUXLarMDmDU1O7w3072q6IZ1HbXdKapaf+OPwqi630vJayYecgP7lMG0wf1V/trh7y4fuXx1tLGcXS1v8pT/BXRY2u0x1BfGKqWAdcdc/sU7T6SgcNzrlOT4AKIpXspqndLVwlo9kZzlS0OoKSAfSfJ7gQFNoxi90LqGpLdxdg4yVbUspB6qU1BcYrk/dDG2Px3PBUfSskYRgxN955WvuJib03IXXqkxyd+R5gZXuxV9bZJ56mqD2vgO5jC4ZHJacA+z1lTtNdQ0VxiqLjVFwjBLY4Y+pwRyfBTeoIZb4IqizMpZqcM2iJnDmctJBHhwosRNc9tTDbW0hLqp875pi08gOxtH3O+Knq9tudWfORVVXUMaGubGwuAIHO7/9VrabZ6AIpqljH3BoO2FnO12T6zvAAHgf6F9HY7vcHNM1ROcDA9bbx9SnGY35efyXXuG4yUzA6loYKVnQPkeMjzxlw+KsbleTJE4TXKJgHTuYw4fec/cp2j7Ou/INQXOz4klT9D2X2447ynDvMLTnjSVyr4TNG+nqJ5pWuBLnjAGDnhbZ7I7XQXTV9vulTXwNpu9Er4nfSY4Zz9XJ+5ZrQdl9lGN1tgd/eZlZbZtE0NvH8zpIoM9e7YG5Uqt2U14t07R3NZA4ez1wr5krHjLHtcPccrV9vsTi4Nja4nwCyiisFRFtJmDCPAnhYwZUioU0b44mtkeXuH5x9qrBRX1ERAREQEREBMIiDyW5VvNTGQY3kK6RBCVNl74H508rX+sOyCn1C90pq5GSEdCSW/BbbRXaOVrp/JtqXOJgqGn3tKx6q/k5Xlmdkx/y5XZSK9qY4im/k939nSVv1tKtHdgWoh/WQ/AruggH2LyWNPVo+Cvepjhb/YJqAdZYfvXpnYNex9KVn1BdzGGI9Y2fBefRof0TP8qdxxHH2EXT86QferyHsHrP6yYjyJXaHo0H6Jn+VPRoP0TP8qdxx/B2CRnBmfK4/wB4qYoOw6hgIOyXP/Ed/FdUejQ/omfBPRof0TPgp2HP1t7L6WibiKBrfq6qfpdEMjxiP7luIU8Q/q2/Bewxo6NA8gnYazpdI4wGwk/Upyk0g0AGRzWe4DJWZYRTVQEemaRo+k/P1KuyxQMIIc4+eFMImihT0zYRhuMe5oCrYX1FAREQEREBERAREQEREBERAREQEREBERAREQEREBERAREQEREBERAREQEREBERAREQEREBERAREQEREBERAREQEREBERAREQEREBERAREQEREBERAREQEREBEJx1XjvGf7w+KDEe0OouVBLYqq33KSmhdcqemmgbGwiZskgBySCRxnphZirepipqlrG1EcMoY8SNDwHbXDkOGehHiq3eM/3m/FDHpF8a9ruhBTcPEIIy+PlaImwTyMlcHBkcYGXuxwSTwAPapGDf3LO9IMm0biOmfaqdTTU1Vt9Jhhm29O8YHY+Kqt2taGtwAOAAg9ImQfavm4eIQWN3LxHGI5nxuLjhrNodJ6pO0F3A8fqXuzzPntdLLMd0jowXH345VaohgqY9lRHHKzrte0OH3qowMjYGMDWtAwAOAEHpEyPFfMjxQWd3qX0tG50TXGRxDGkNLtpP5xA9g6rxYKh1TaKWV73SPLBuc4YJPir/I8QvMbWRsDWBrWjoBwAg9omR4pkeKCzuz5I6B5gOJCWtB3AdXAdTx7V4s8zpIZGSF5lieWP3ODueDwQBkYI9ivJWxyxuZIGvY4YLXDIK8wRQ08YjgYyOMdGsAAH1IKqJkeKZA9qChX1HotFNOW7u7YXY8cK1s1RNLG+KrH85jxvIOWnPIwr921zS12CDwQfaqdPBBTM2U8ccTM52saGj7kFZF8yPFfchAPRUafJc873OaDgZ93X/XuVXI8UaA0YGAEH1EyiAiIgp1ELKiCSGUZjkaWuGcZB4KwIdjuiG/RtEv/AD1R/wDYtgopZL9t8PJz4frcYG3sk0Y3papR/wCtqPxqq3ss0iOlsk/5yf8AGs3RTpx/p2n5n5E+vJf9qG07pm16dZMy0U7oGzEF4Mr35x0+kSqbtJWVziTSOJJyfn5PxKdRWST1HDnz5eTl253agfkjZP1N328n4k+SNk/U3fbyfiU8irKOtlloLW976GExueMOJkc7I+slWs+lrPPNJNLSudI9xc4988ZJ/wASm0QQPyRsn6m77eT8SfJGyfqbvt5PxKeRBF22w2621BmooDHIW7STI93HkSfBU6zTVqramSoqaZz5nnLnd68Z4x0BwphEED8kbJ+pu+3k/EnyRsn6m77eT8SnkQRNBp210FUyopKdzJm5w4yvd1GOhOF9uGnrZcal1RWU7pJSAC4Svb09wOFKoggfkjZP1R328n4k+SNk/VHfbyfiU8iCGpNM2mkqY56emcyWM5a7vnnH1E4Va52K33OdstbA6SRrdoIkc3j6iFJoggfkjZP1R328n4l9bpOzN6Ujvt5PxKdRBEwaetkEjZIqdzXtIIPevOD8VeVdBT1hYahheW9PWIx8CrpEFi200bfoxEf43fxVVtDTt+iwj/EVcogptgjb0H3qoiICIiD/2Q=="
+ ],
+ "name": "MANIFEST",
+ "symbol": "MANIFEST",
+ "marketCap": "800692.517293559405863505",
+ "price": "0.00080069254652534955",
+ "priceChange24hPercent": "5.01",
+ "volume24h": "6155.2167946372431",
+ "communityRecognized": false,
+ "key": "sui--mainnet:0xc466c28d87b3d5cd34f3d5c088751532d71a38d93a8aae4551dd56272cfb4355::manifest::MANIFEST",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Sui",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sui.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sui--mainnet",
+ "address": "0xea65bb5a79ff34ca83e2995f9ff6edd0887b08da9b45bf2e31f930d3efb82866::s::S",
+ "logoUrl": "https://coin-images.coingecko.com/coins/images/53004/large/1000276184.jpg?1734984802",
+ "logoUrls": [
+ "https://coin-images.coingecko.com/coins/images/53004/large/1000276184.jpg?1734984802"
+ ],
+ "name": "Agent S",
+ "symbol": "S",
+ "marketCap": "67679.880309046658171453",
+ "price": "0.00006767988030904666",
+ "priceChange24hPercent": "-8.46",
+ "volume24h": "552.52752868109",
+ "communityRecognized": false,
+ "key": "sui--mainnet:0xea65bb5a79ff34ca83e2995f9ff6edd0887b08da9b45bf2e31f930d3efb82866::s::S",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Sui",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sui.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sui--mainnet",
+ "address": "0x0c104ec7de77b382a4af29075515956e34754744e418879db5bf138d95afebbe::usad::USAD",
+ "logoUrl": "https://static.oklink.com/cdn/web3/currency/token/large/784-0x0c104ec7de77b382a4af29075515956e34754744e418879db5bf138d95afebbe::usad::USAD-107/type=default_90_0?v=1788825667532",
+ "logoUrls": [
+ "https://static.oklink.com/cdn/web3/currency/token/large/784-0x0c104ec7de77b382a4af29075515956e34754744e418879db5bf138d95afebbe::usad::USAD-107/type=default_90_0?v=1788825667532"
+ ],
+ "name": "USAD",
+ "symbol": "USAD",
+ "marketCap": "1000128.770761923936398342",
+ "price": "1.0001287707619239364",
+ "priceChange24hPercent": "0.01",
+ "volume24h": "3572.893357",
+ "communityRecognized": false,
+ "key": "sui--mainnet:0x0c104ec7de77b382a4af29075515956e34754744e418879db5bf138d95afebbe::usad::USAD",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Sui",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sui.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sui--mainnet",
+ "address": "0xf00eb7ab086967a33c04a853ad960e5c6b0955ef5a47d50b376d83856dc1215e::axol::AXOL",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-onchain/sui--mainnet/tokens/0xf00eb7ab086967a33c04a853ad960e5c6b0955ef5a47d50b376d83856dc1215e::axol::AXOL.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-onchain/sui--mainnet/tokens/0xf00eb7ab086967a33c04a853ad960e5c6b0955ef5a47d50b376d83856dc1215e::axol::AXOL.png"
+ ],
+ "name": "AXOLcoin",
+ "symbol": "AXOL",
+ "marketCap": "387907.943891996434099068",
+ "price": "0.00038790794389199643",
+ "priceChange24hPercent": "-1.21",
+ "volume24h": "1220.0829099930829",
+ "communityRecognized": false,
+ "key": "sui--mainnet:0xf00eb7ab086967a33c04a853ad960e5c6b0955ef5a47d50b376d83856dc1215e::axol::AXOL",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Sui",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sui.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sui--mainnet",
+ "address": "0x0ee60b2540f5373903679500d0f88710cbb106d47c6dae028fb9c4795a835dda::coin::COIN",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/18ab5020b95a10b3b7b27299a0692107dca74946e2fca5e1b90ea7ccbd9855b6",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/18ab5020b95a10b3b7b27299a0692107dca74946e2fca5e1b90ea7ccbd9855b6"
+ ],
+ "name": "SPX6900",
+ "symbol": "SPX",
+ "price": "0.54084682917478229442",
+ "priceChange24hPercent": "-6.33",
+ "volume24h": "1192.9540489458472",
+ "communityRecognized": false,
+ "key": "sui--mainnet:0x0ee60b2540f5373903679500d0f88710cbb106d47c6dae028fb9c4795a835dda::coin::COIN",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Sui",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sui.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sui--mainnet",
+ "address": "0x2e5d480ddfeb8a593184a078eb59bc0c4d2bb7d6ce2b00e9972a963f50501348::uspd::USPD",
+ "logoUrl": "https://arweave.net/v69wXs5gA-zerxEoYO4ySCtry0PO2wMntPdYz7C04L8",
+ "logoUrls": [
+ "https://arweave.net/v69wXs5gA-zerxEoYO4ySCtry0PO2wMntPdYz7C04L8"
+ ],
+ "name": "USPD",
+ "symbol": "USPD",
+ "marketCap": "10000525.029274163850280993",
+ "price": "1.00005250292741638503",
+ "priceChange24hPercent": "0",
+ "volume24h": "2352",
+ "communityRecognized": false,
+ "key": "sui--mainnet:0x2e5d480ddfeb8a593184a078eb59bc0c4d2bb7d6ce2b00e9972a963f50501348::uspd::USPD",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Sui",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sui.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sui--mainnet",
+ "address": "0x97c7571f4406cdd7a95f3027075ab80d3e9c937c2a567690d31e14ab1872ccee::xmn::XMN",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-onchain/sui--mainnet/tokens/0x97c7571f4406cdd7a95f3027075ab80d3e9c937c2a567690d31e14ab1872ccee::xmn::XMN.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-onchain/sui--mainnet/tokens/0x97c7571f4406cdd7a95f3027075ab80d3e9c937c2a567690d31e14ab1872ccee::xmn::XMN.png"
+ ],
+ "name": "xMoney Token",
+ "symbol": "XMN",
+ "marketCap": "1584157.272351532090879832",
+ "price": "0.00059288453226252521",
+ "priceChange24hPercent": "-4.53",
+ "volume24h": "2343.4791109758709",
+ "communityRecognized": true,
+ "key": "sui--mainnet:0x97c7571f4406cdd7a95f3027075ab80d3e9c937c2a567690d31e14ab1872ccee::xmn::XMN",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Sui",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sui.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sui--mainnet",
+ "address": "0x63e89267aad1dcbd9fb84e7686db54bd128cb25ce4e9f1fda97fc716c4b73682::suipump::SUIPUMP",
+ "logoUrl": "https://i.imgur.com/4o1xcLy.jpeg",
+ "logoUrls": [
+ "https://i.imgur.com/4o1xcLy.jpeg"
+ ],
+ "name": "Suicat",
+ "symbol": "SUICAT",
+ "marketCap": "142575.612546260045177857",
+ "price": "0.00015471631381885697",
+ "priceChange24hPercent": "-2.51",
+ "volume24h": "10918.1488156463664",
+ "communityRecognized": false,
+ "key": "sui--mainnet:0x63e89267aad1dcbd9fb84e7686db54bd128cb25ce4e9f1fda97fc716c4b73682::suipump::SUIPUMP",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Sui",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sui.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sui--mainnet",
+ "address": "0x0a672389b7b73df60d40666ac9545433d59d3128086b9e3a425a66bbffdf4dc5::susn::SUSN",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/c55d204e4397b89a633b73082f8a820e85de339ca73c738b068520e2cd47d038",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/c55d204e4397b89a633b73082f8a820e85de339ca73c738b068520e2cd47d038"
+ ],
+ "name": "Staked USN",
+ "symbol": "sUSN",
+ "price": "1.22031971347382757343",
+ "priceChange24hPercent": "0",
+ "volume24h": "5002.118081",
+ "communityRecognized": false,
+ "key": "sui--mainnet:0x0a672389b7b73df60d40666ac9545433d59d3128086b9e3a425a66bbffdf4dc5::susn::SUSN",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Sui",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sui.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sui--mainnet",
+ "address": "0x76cb819b01abed502bee8a702b4c2d547532c12f25001c9dea795a5e631c26f1::fud::FUD",
+ "logoUrl": "data:image/webp;base64,UklGRkAkAABXRUJQVlA4TDMkAAAvf8KfANWK27aRJKlKyj/q+frWOjMiJiCv/fuS4YscG7cQ56O5NumsCeIRMhUB7+mogsqVMKDQ1ld8S9g+4SlbxS3KuhM97JVVZH/qaxIvwcvkyRXqlnWkla1tcQ1Q7Vs3+4V0VhQPW2VGgEBAIECH5KhlVeXtvAAoa3+u/XYmkoGkw3nvMGyA0+f7Dw4lZ9ujSNJV8yh5FI5CXw3/k53hwI6eB8sKmgoJCEr0SA/e9YDtTUrUBiEbSVqUMflxfKFDGRRGkSRFSimthED6SAD2fI6U/suibaVuLTRjcBBwXEIejUpbb/2R5Wrb0zhbTVvILIWleG0/H9j+fvD7pH5XCI2bRBin5467FJj0KilkJElalEbZfw/7UAbFLCNJg3L+FI9w3335KP2XBUl23DbDxyIoAgs7d4DH96Djy5sDQHobV9umpXgpWgqXkAUk52gpWsps7bCrq6uqi0Z+KhQ1H40xQSY8MOlJD/OdCISgHvkH4SHoMIQkSdKgFEqhtMl9Ai/AogzKoDCGJElQodTzLHbQG+EQCqX/sGjbpludwyAbR4ukIpIe9/FDO7ZtuW2kUBiKQkEoCkWhKBRkoioSBO4591yW+OcenucB6hE90eCnGnU9oEfYhbJBtpFqcofy6I9yKAbZRirK/Cke5d6k/7JoW43b6goWCBBaGetI2M0bvj774+aXvvYfwn/Cf8J/wn/Cf8J/wn/Cf8J/wn/Cf8J/wn/Cf8J/wn/Cf8J/wn/Cf54xyJv/Qb5HSsC/9b25H+SCtznaAqcfq6vVe7MeZLvNWWoD2gLkceizWN0vszfLfd++NfzBbnPnaaUNKAvcY4TqYJGv8ttfaP1+2BU7ygzlPTQlKn+zzNmADeLKWyBtsMiJ2S09zcUEHe3Ou9oNeFwqxa78NS+DP0ZaCaQ9RXQh8MuNophfYQ+6tRvyuNRlq7Y/Ukq0EjhShNMrqaVsr+ucX1zY0R701m7I4/Ie59Oe7d1oEHcJ2FHfO8JWSkf0SOp9z8jT3m22KX/Lr1SXLdp4RQDE980biYoacoYUndTlvSu0xA65tYqAA+Qc1L2wH27gKgspujl0jhZjhGVZAETuXT4GecvvEDORbQFoZTxbl49B/l75mSGInZ9F8AOS8cB87CFmRTUGd5tAbk/87tOxJ4NhL7PkD1kKd11xbU5yuy3kUdw57mQyCqDt5TDdF0cdXhdz8Pz+xWXTc8d8IEB287jzmH2Raw98MOdionQMd9RDvrXY0+735f9mLEpy4+gLMUQFj/isehhqQMGhqCO3+1TUXT3ytrEt0tijgONOgFY//T4GSXVysa0rUNLvi9FZBOk69ug/2r9kPQ5zUFTb+v0rYsi496HG8UhcDY49ZyZ6OMt6XEeqh59txAh6X0ttQvb8OgLpHogRHvw4j7CVYusgDzgOawtZbpNw98Weryca8EQnYoiRWew0mMwi5S62iUf2/EdDfLc1hB2mkLZ7NDjiGHvzbDDhWgyOPo5xSwHZJKR1QybxyzHHc0GJjbhg0t+LwWSyFvDPEhnFP8ceS06beg4p9PfYXkJ72kzN0kytDWBqaCplmGpN07SEENlaNEUF53QPo9APG014IevvytXHxmZT42LTwKRRHQNELeSRZsooPh8KjpKNYUmUu0+NP5sabzY9mDSRB0AbVAsV6OsWETaQ4w1Lzay7H3xq3sMm8WEwDSApUY7V6wIXcmEDhXzgZLukTOuj3Nx4Yg+ACYku4OX+hZnsdO5bVfwimnYgDV8MiJfW9+ECEq0OsqYlXpbJZvKlukvHMAKP58iTmLtvqSPH++HiEsU6Ada3LyIvFduaQnDnWEkghhHVULFf6ccnTpfqI8vaNAAXehHvBbISoqCoDVn0RkEU4/pO7oJVNVNDDuORuaiB4Y4ue2/wIPzdT/Pu7bYtNkbbd7VNIy0WGe2uyphdsN+7zHdfcyY7qnyP4qSliNhFkTftvvxohXXExnN9/OOE9F5k4jNBFJldAKMnAr6RhO7HSobqWxG7FALk7v2dYUFdLRCLPPD3q0j8lQyiyPSTBZluWdKLGnfTy68LYqdfy2uzmJ6mMyy4CwAfvnzhjowj/nco/xTtAJjhBjF66kWLhHegX8lDJF2WnIA9AFRbY0I721c/MUfGIRb0Inh2+aLaWnTDruYIElnE3NZV7Y9PfrzFnPcsQAZAbK1phbx3McbxtBv26/ABVffTi+9/ao9WQbG6qN/EiZAPIJF7yteLq6/6LtdmXdDSNnBXbKuMRgC8fx9Za1jG25bu4K5qMP51O2Zz+yU2+YuUigFiThKqplXxck0gp3cmEYr8Wn2Xc6He1pZbU4msZbA0RP55fUIvpiDM5FhRtDE8zCC7Mk9kIS/+vJweajfUWUOJyA1tHRsO3w1ZA4ETSCWImYsVAjaEljGk/wKQrN2oR9uGW3KnRFx33GmZlzRMvhuy9kfAXrYdY2byz2RY1c0hJlGeXoKvycyb2hnjWU+ZOfcC/OvrzY49yGNnaymnGsDSJJpRA5khMuvYGWPx8+fnzBbJj14pNqMRtGkqMCXwbe2OGjEec9duui2F4iV3raantU/fAcQg/LxiEtjDR+e1nsqhEeSKLZpR78Nxlp7YfvqOKTSknGb4XuaozFljKaKbuZ0sDL3f5WhiQ09tn14oKGRUAUsF5iiSbx1rKnp7e5VtahyG+/3DLyvJIxHSbn8hqUAcVTUkLpmvwMEtA4J49zAiL0XzR/JvO66XKXH9haQCzXoYGOc2K+LYbze9+xjITNwDvCh+Kc0jgyXjgFRgXbz3LeujHehOLbj1WxGAz00Q7gn7HBCUu/5CUYFlLQfeqU3BAlsTyHNtmYlHFmxNcgNiYMUJEaCvF4mhTFY7whyZ7SZ9GwU16FHBkmYxc50MnwKN0+vQsM+sBwrOW6FuawVwIIIvig8H89h+MQEEFTg5yqbhupmvMARJ+P5+SQpGxqp4ZWKJCeBXiZNjERnYzmJHpwgjE3uZ7u1Ko1Fiw990B7zN+fbAszVtH3QZSHUkA0Puo2btoahXqTq5JGNbyUTbQMOhacctqh1dSYR57YBdbyOwLqeUqpU+GbpKjAe24qFzdrRXA47URuKYxuxo84qm6LzSiWIb8H7zbepBK+pUymRZd+wOlt7xgxJNpSYNbSwTlOLotpwQqgpdx5C/npAw23Np6EBXVxkPXZjafej9tMGXpmTUFAxUyZBPOYIBz7mpC7deGX0XKtpvO9pq7OnLAUiiAudclAYDvWw4Wf4iSUMaHLoeAKsbmv/GGdFHgJi6AWpcG06kG+tztCN9SYtD2WNfBRhGBDM07f8yApKHPf9DU92gkT27f9gfhH6WnbPToYtT98vPvEZgXiqwO8c0H2V06uKlDs+2888tn6/GFLHyu6hnXZzxH+arKaD0eNtA/MY/5aCEcFrqeBhmKZsu2NZLpsWhG2lNZTgG7th6oVA0VwElhLOKLgiH7R3Zwm9lpgO4yQbhSMK9YGAS9VnKjYRwTB0SeOcsK+fFKglKZJTeRJ1Mo7BzAqb4SQapQ5zTFHgW2VYp5hUi00Dxmi/wxKdifZnCyWKIAtXVJ6PUIZo/hj2TvWO3oIt3aYRwLkblw9iajU8d82EMqT9KHYL5n9q9WxtZrsHexqag4NwTNeQ7d+3bJ5MjPz9GHaL527A0FPKruy4WnAKhoHXX5LaEtjc58vMjtFAxMH9ow9tGmlbwSRYbNVjl69qz29vcGPH8adhwBhwJXIctNPI8Is+jNa2IsO2C3xdjz2/n0Aa+mZKh6ZDCGTUeqEDvcdExYOd9OrRbqIHh5wetQ5BlHcbGB1Ug72NjxuoASU074UPv0cZQg3z5+XFZotP2PQPm2LAJ+CRbrP3oyBW67oJLi5Zh58elQ5Tb2s7QT8Ri7odKxOuW9kj+fHVrDDs/KB3ifK1z6Z4Y2XSJjxGHQ/L6Cgw7PyTqBDYSsmLvx9n3e5q8boUnmptt2MKB+NpQeGy80mBf9A5U92BEsaN3a6OIuSTDkdKQwNc2bsAfXWPO9So+kPtj9sMGntorNN+j8vv03RMC5+1maTzyVLECe86h6l6JwcPUO7Yl1BImifNQBxlE0sdjE5Hq/q3Beu2GGK5wEvuVYY/RHEN9FR1xzOCRGOe8pzXNwXotihkWHYKbfcZdFdI1mciyd5xUmbPiCxrWVJx5pkuGoUMOnxuFlFYsyogjzrCuptyg80FwduDwqNGWfYS67oI5sWAbMYMmR+DsAHKWTCvMadBINRhCDcwaRQymugTMdTI8He5de33QilUkFqkbaE6saAKm3TvCfAw6JHBsdLpYpKwjkGhGyxCSo1FP0XwNiJGo3+3+1SO6jkhiBbuvyQ9PDkcduBlpd0Nd9zeUuJlKE8pPurMDytah46nR6kK7LsKOSEka8KFFmg+Ls8PeWRVXFctdtLHEEm9DDeuNUQIBRl1vmpJgP2A3i+4QEeHJqDg7PABamiJccTb96lfZ0gd7W2WH2AK4N6KI3s0w1SE1GukaALWp44Rc21d1iB2Hnx+Q20x6212L5eZyr/17N++fQldiV8QGjIPE4QrncZuJsXqzGOG+tOiRi7FrCgfEFS45woImzaIN6MwC7gft5iBJyKdXnAVuRBHcoWZvB9VuDaEvPjjWDFtAKjBLs0B+cmNbajNZrs4sCH3xwcGGPJkaRLLiToHgEGFhjphbsDR5aiBuNy8RFTjEFS70NhMDNNXuCKHBgbs5yrot6HuCOecSDNJuWtNw9pyl956RVkST4BA8H4bYljYNBcNyiYElobbKrj1io9/wfDKT2uiZP9Sq3THx6ADUYyZZgY5+w/OpTGqj/cTbolUlRoiOLgbZ3Wd09BueT2JWEWO0USfGiI4QHM00OiF4PomhVfVlLKrUYvAJTyGCg5neGseRBK3BEZdOmCZVy60LQx4CUUQLsB0OPJ+8dMI8OSvaGDKOiLX6fXM7+HzyngU/uuOiHF3TAPN+u0gi1P7zgFbmH/9xSFs6YXAKvIYki10Ja94HQsyiwY4c8OVHZQs5QadA6UFwLoYMJWJNVZl92pEDYT5ZK+mgyH1clF4QRYYSwaYy9ely8PkkraSDLd8KBjGyxBLBYhLBISQX9Apc0OWDXhAlSzARK6YiOIwEmlbxBGfRvF2RgtKxClJ9ThblbkMclBir5vqDseao2p9SSRIXemuJk57/Gmr1cXQ6nL8CIUlraMO3XDC6PGIZalQk3t5dC11uUXFy02/gmFWw/Nox9kiZSgq7lzpJii561wPzQoGJi7f3OI4pZWQ4ZTLG3hJnRxWafgMnECy+sSMPNKH2+uSoGrVqB/8p0JViPo238zKQLm4s59sIxFlBQndABaqAiPhBZfqP5dZ6nhw180ExO3iyJ6xZYWNGC/t0rIarSQsQEEgSKXlG+FGFEzxpodAy65RakZQxcLwJOwt2RdbzaAPsHPDkgknRW6AoicXcaEeRaIhUdhwog55mqjxM9ssELqrPb5LMQa72QXzsW+ucy945qFD2JSfm8szi2dMYaH2OIeQgN0mg+Z4c9SoZZnQdRlUZek1zzWPEt15nPI+hra88KBKlUDsja2V7N3P7N0VWBmOgue88DIPHz9phqGJor1dmkjDLjzf5TS1wCg5xeqvHkmwMtJ8S5EO1SMdaqkOCPPU5yIEC0eKqWbVw+o6YeizHxkHTfIQ8p5TKRXaVcCkhLxmADCgObQCQ49qLVDh9hTHH5NhY6PHo+hHtVEI+14LQj0cIMgTGoR6v2uHVIhduP6qxDjb8vePa7FpBKS0Cvswl14LQuw6A9ZUBhaHRtemAnirUflJj/Va882gAdRQPPIaW7OHlNBOWRQ3A0NLNKQlt1KAbZXNL9AhR+7ei2DPAfZaIqjx37DWODAYlvtz50jPMmaOKwL0pdtyR0Nd11W+lcNoZ6o/oY403A0MBbRNrlxgmg1DlrFytFPgq505aVGTkEOQYlDt2Ppb6sPBe7hF8uJDjBKEF0Lqhb63gfVxWMWydIcxUo51uBubL7TqWOcWg1VHOHovTkkrvpMH7tWYOnztZeFLUQLJSU9uQGP0twMFF570HMtMLZ8ldIxtQM9UBu8YlyvwWTCmZV7MOLu2mGo2F73XOXzL9Dq8/ENFN3ucZcvD0nsKcojpQFyElY6AE6nWIbnq/JRctPNkCfTIoopLJz8C5HMEpq5K2BCkp45gg8xp3OHdxhzV5aJl40dN6STAnBycSMxMskq93cKZxM97odmjH/hAz8KhRIgDn5UZ2dvszgR0DXq+ksScnzegMg0N34LGYhppPHTkW1yn52W1LcSwTOxL2MjeX4JBahW+IwSG36pW9QUxDzVuxy1BUUoV5JjaGvc7NyVkpXBMZHL057r25iEE15DaWAD47hiksOFKJjLnPp1sGsRqw5c4bNAPPiKkobl9ahwcPj53CqAxkIKNCJeoxylGfLY/vumu4Qy8p7pG0ebO9SODB6/M2ab0bZhfh5QUPCAlHfWtBAK8HdOZtQk5FYetSaSOBq/KwchkN4rqd4cICgDJs1rQOu4BvLZgK8IenPPCguAtP+DUkSgMJLBN/NjFmJykRkhYAqKrGdbGgFjSRUeLQ03IuyKbadi6jugbyJwS2lcxQBgfCt33EsZOocX5qeHynUe33VXWyFIYd1Hb6RPN6PpfhIQFqjck6J5mRIFcoNIIfwKe0Pb5gx8dXSuASnUHQKcO2g9lmnaMMzjXkUbSJUPaHBwEwqVVCjGcbotrzBYQFegreAFaOqXc8JNiADmD0RQYn2lFVRY0bd2+AKQPbbpegmoH29lCbDQs49SAV3N+isi5x01x8fuygWWSwZBaSRmcogwC8CTBvAaopQ+ZiQ1IOfhITgSx65yU1vg94JHiI0LInlBR2wytaWq4we0OheUgtZdg7ycuABsTuLwGN8t/gmapLcT7MaILyVjw5Z5BTeuIBnRsKWcsFZndoNEuSlYJ9AppbfuxYBqL9r6rFbmGW46vrFQPMxDQXa8ICLmxMc6YO/7FjfwQi/lqegT/K/2J9fJGHKy44oXJL9SWY1mSlxEjPT+M5g1Y/pA7+ZkzKMO/FU9d72FYAmpSLF+d5QN4izA9vKJQPzMgtlCUenueZmRtAJGk88rf9NQ1sGFr+dPrs/FyrAE2COconL8Nq+4skqDMzFuDkiIjcQlni9fM84WzSUTDbi/Daj6rGcZ7H0fJ2S6zxZ6aQgCaBqdiSjD5Oe4+ucSDtF7O+lzCVMiqSdKhC9snBsxoQII8i3Et9G7AX+R7++IvIcZfMA85oVYXX7iJwp5ZuWolY3LNcrQOZz10uGmHxmSGjElvrXXz8bD2TixqLBcosuvY+AEld8et7jozKc6RtDO6UeA9mVQFCD27oZyAlpQ+6PgdWa7KxtdoG75lcnPLPM1PT9bYP7HVo04DdJJCTHm3/wcTWajuOWUhTYMUKv+pIYx3Y91CbsNefOL/XMB5pXtVoGCJRVzr4QiCPakvrwL6H3ARwUXq/A30m+t5oNA6NqLbmgKv/SHeRgSfV6d+ewHEUowUNrz4YjeahEdUHFhhW33khA3tflxz9ClJdyb5qPocGohFlQEaR1eH9r77sXQYRAzTAQWtZPhttIipRWYrMYnuRr4W2JfW7RSpZrxuRedYlBNaBq58g2kxUomaQiFF0ITxd3da7sVSu8NhRYP3xDBSPYPhCTDNANaFjBEIA0XgT7rPweCOOlWhnWAOw83AWkg2by5X6kQl9BlWFjhEhQI38QwhIif6/d/pJnbTzZS1+nzl//RzoB6sr7G/GlKBPFYLKBpBDfAmRACovJ60HX7RTwIUH/rFmfbG1jCAep8DZjh1DLykq/yhEERhqgLys/M+gkwsFxDPQvu+QVdHuoF/XF0zLEjISIuLTTKKKUs0p0TowqmKDErzwDWTYm3GsCeHl5TPglxcQN9RMxMS3fbpJVenYeQBSFVhdEH+c0oSFRybD3uSKrnFdr8haNl0RJKY0H6FPKSFfeCOqAEI0AKN43SpwYT9Obk7wv2mdW9c14ktr2xA+ReznM67VzgfsuW+aCkEwHYA8iFbOhLqwj7jSK6fPvNw/2supYVgfzce9FyRL4N9vm1A3TLGHQTWj0BlxGRsvFKZd3F4B2KGnbdsAw7wheeOu6husoNCCpLUvpRvtpx6zwvmb/sDkhT7GKUsgDEG004B+4aa8wQq6TDH2ARNXu/YBPzQqZ6yBnJ7wm07po5U2zTDMG5I37rm8wQ6ak5U09oRfAQuQn4GVKGfw5wp7lZ+ixdMEmrudVkFY3rwPYVxIUrgD5BwhWz3TGRWTO9ca9CptnnMGzd1Oqy7MLfv1Re0higsktXkGnGyeYp/jZ3JSzhdvIXC/UrIaOt7claX1TjzXkTTUUGsHcPGcgIIp3nxhAkMfDqShyzT3QqQ2BId8AaC7Abh/anamgHKWBJn9nE6rHvT24YT4gF4aPZzDFBXbVexoeZCSp+MDDreHPLlpChleDOet3tKEH/mSohdNSiEcj98oAYn9eT7Y0q0CXnV/O/N5L56D7SdoBncPBQMl3VNp8O/+v082sXLfpKFA9wi9GjhxiD3dcX5tSHyY75GCWd7TB1yPKY7EpsEuP3eqr69cMPQwMZdjVU+D6FzWmdWxUy50AGZ0TOibiD07zzENrNOF5papd6VUrGOi1zsyI3tkfCnn10N5eIVTofzORfSid6qeWEjcnLEhgRkVQp1egoCvXJCGOSxVCeYn2kEq0JKrk1QpEdWh8/zTdz+QdkT//SWwkV2t05wqQrOsl+pVSVBn/W4HZBQ/FvG9VgulFM331bRxx44Nwms1OQxcNfBZHVGRLgX+ux3g6378g6vPUnSf9zsXYM4fKDq+TtqPVenoiHrwWehdsdUsZvtluz0T9ODp8LCyeuT3LX6A9/1QQXb4Md5z89AJ6KCvHIAvi7tNwCvv3ZUJztCVP8XBes0ChlD3wAl2l1CKwHFVr5KdANMoMV+z1d3m6dvry/nUN/YxOJO/N0j2SACd4xSnIobZt3jQui+OiCrKLKws3oJ3AkBSTqs0TXKAZx1ZBL7n0xH6MjkB7huSJxeT7D2Lef+cyLpGbEUWcN0rKciDmZJ1EGBFZfxejI/4gkM2+AO0z6fVPgZbuwFn+SGM94SN7LwdGnneApec5v3owtVPvFgMD8DOu0nxVrk0DcH2sAP6bPOpZ6yAhf6eeMu5kQoGJSvYpa+MQmiXN+CqPCQCH1wdwQ0g9gfToncxt5jZIO9Nkd7TaynZy+ytRWbQaU+04CZhwDfdslSA3y7LQDggIsfZ09I0d5hHw+lv9uF9WJa3FeAFe09Kydx3zAq+CYB23kbEZjH3Iz4kWJh1EGwD5XfoYDJ/E3fttIXTs02XZs1DnaZo9GgLwEYLHUob0E3r6Rmh1aQoOL3eMvSFQnHhEBOyi55kP5/yFATaQPG2kSBaKNGgme709MzlUzqYM+nCuCBnAEDcD48E8dzZfhIEn/4HxW1AkDyOOgIZeKFEqVR7mHvcRgG7C8ka0EbFPdZFtr5xZ8THfTtsNCxLVZo5EqdnPmUhWRf3bHHY8PYyFMf6qsUCvKgDw6RFjbwfQHMgbLRLWZCgljuio4lLh0pPb2BJ2ux5X0B+3F8/6qj3hQze5YFWOu4/lPhfme39u8EljtIb8F0uZTryLGQerjV5aXCdAQ++IjwuVtp3Lp71cb5IbWPX5XXPdnj0FeOQqPu7eVHOs/0U7r/QyftA11qMev9PBxpXKQwMyNwbhzzijPZJaJtzfWg8KeMQzJrCM5NR+8o4n3KxEmI8PDDUZgMzVa0pVaITbkjfHEGAhP2Ndk0IPCll+o1+1x3ybe831VjnxBgz8sDRHQu2rBmebhBHX+phwWZ6zYSHhPAg6zKHuvujstdFwyMoH97X6N1UFy6YkRFQ3jkPurOhzYqIWwASCsdA6F9yZjGb1DKu31U9kH2EBnLtmOSJNlY/e95DPnlfWboDktus+/uJmHcHo/QvKUSWeHaF+qOaBiKVDmFNzXlhlPeaob8duMVX9vuJpL8w52mkikhx//U1mgZiPofkw77sMi89ATyjxHTZEb5NkxYqX7jsq4CYaP68wwjWPeEbFTTp8uQpZsmg11vtANoDlBwFLK5RBryAJ70oJgksqkb6gRJkdHsQP/Hsb7RVelJLAlhMbU5RQiagde98MbgbUY9S4tvAWo5qoC8M1j2mMKifgEcC8BLlXrEd8CEaWqqgCcK67yQG9ZN1aUwhFdYyLmrGnpAq+7QLroWfcFS786fbHfO6C88GzG38UngC2y7iJ150lDr3XCzRugJYNl7uS8uXYtRBT2Dds1JKG6ItutO0WXzbWbKnGO67NZFlR2gD3zwdF2c9AHnea9Fdb+TMI0J1YbxLosCe0Apv2/BpQgClweVLbjmWZZLpbjqe9QRg4FEwPEQMUAER0O1mXzyL5VOTXzA87wG9cCfQ+TfYY4922odv9LkjIEyfe9W1fClJxQFYQX4D/+ex+EtT+0Hfx0fElh31S4kbYkKD/JmUsvDjp3+znR8/NLUYvhQZiFwuAFLyhj5OvoOsm6nsm4/0fVDRRTIiORKAlL4BiL14VQvPmhINrmwH8F2Aop9CiErVF4CG6gZLLAhCsvEQVbGWW507zKXorHIXyoLQMEBaO2gSuNuzeFrc2Yp9WmFScqWqbuQ3DPjfbKSPE/6cBaXi3OMwTLFn/iGSKE+JoGE0l3UAdtxgqU+PPK84NNjhlhWmPiWDhqFceNQ+T+q8z1ehSoMd5bbOGUnbI3HpYcVIiWDmucVVraQT5cb4Y0dl4AlO5SPltnaotyw/brRI/WtPbW1Vh97IWC4JqLRK5R/sT3Aqo6qhTqi8tubFjRVJoWKLq+LiWkSP5DhNl4TyjPE39ic4ygnjC1SNt0d0NBb4u+qJFgniQsvl0FxqXKvpvrd1TIacmR/M7ZLzBNjWxLjHVYOGOmrz5cWMBDDzsks25x+uEaZktzgjqmjL/v0SxY0EMfOyg34DYLuBGLsaumRzPwCR6u/93IHblc/6G7ruSYcERr5pbcru+QRwIE9lRzDyDX1fKDBI4l4NIXCBO73dGYw8sr8CYeQR+f6FA10CvSoEUfLnGESJq5JgZM6I4o1nTVBXfXR3Og/2HMUp9EkXFKfMW8M4xd4axNA399Yc5p7Jnz+8O3+FP+EYhtGmr99BON/Qrk3DysrEXW4eWQi3KNovDmHYRyCHYWZ9hHKAfWRyGbzHDYYbQGkfkYw9Yr7djooxpmbH0oS+ww2CKOigH+MiCFwRhwMi5xFvKl0lo+vuxcfK1cwhLR0TnuRHQsXzTPTRaWRwPmJAq0EJUsbb1RrIbVAgCwcx0Mml8rhPEiA1UGuLW+U4dlzuqMO62sAyqOJwQ7YF2ScC9lQqFJcDspkIW1vuZNxwRtcjHjwbsFp1eLgcUX0S0i/11ZDVCoMiuht1CPXVoNUqVal0NWouLvjDP8Qq3YwK2egZQTwcC5s6nQQbwQfz8HAo5FBSI6YiNIUsYB5N3amSoQ1HpdhI1QGpk1o4KsVGMYM6AHWSgRS1kWwURlAHnU54DGajZQ+mcAgr4dnodrAFLCW+EicVup1sgUgpFSxFuUCjVCkMdAFFKRIY64L+Bw6BHtKFofJkKPqefxqGNhTm2sh41C4N+ceFwlwc6TJS3du6c6AwV0diRap7WXeNFObsCLgBHRF7z/KP6nYTYw6PkKoVe0/yk7pZzOlVTwNi70X+IdG6/QDB7I2r1wj465PkRajbB1SjO1BA6CcKutvkdfsGex0woY8oQw0Cfh9hD5kg9AwlBwm/r7CXhSL0B2UpNL/PICJCn1AQ5l+Eq1x06FD8ihDInxf+9dU7DcNQeYqXEdqMlNrrqnesgaX4GQE0yizZ+K+s/xr8EvvbRJbiawRSLV10zcqolSigQfG3O4AS0oiLrgsrvRoUxroUpJeg+CIBFS0VFz2uQxHxnasG8Con+pJeTf9lEYdivQan22EkyyiKzxaVkNjlFnHYJcucbnObUERlXly0VMRKiVoiS/HWRVjmy0VzgXcBeSBFL1XdwcjiKz3gxWV+v8pKYmiTR+GCA1HS3I/jQcvmRPPCshvBUj9ZOlGtBVci1da1ll/JmNssofg7r7GlzhLDJF5wKlchli4/lUQsPxUZ7y2AVbbgXpappo+OxTzWfIZfEZJe9SwLv/xeeN6bhCiqhV5xNKnmPI6DfhrHnGtN9OqjKfN8a5B9i4W+U5gUYwyCFGNkV1+O9jLguY3Uwh8B8iOhCFefj46/326OAI0jwfjqG7pBHQkfb37pa/8h/Cf8J/wn/Cf8J/wn/Cf8J/wn/Cf8J/wn/Cf8J/wn/Cf8J/wn/Cf85xmTfAQA",
+ "logoUrls": [
+ "data:image/webp;base64,UklGRkAkAABXRUJQVlA4TDMkAAAvf8KfANWK27aRJKlKyj/q+frWOjMiJiCv/fuS4YscG7cQ56O5NumsCeIRMhUB7+mogsqVMKDQ1ld8S9g+4SlbxS3KuhM97JVVZH/qaxIvwcvkyRXqlnWkla1tcQ1Q7Vs3+4V0VhQPW2VGgEBAIECH5KhlVeXtvAAoa3+u/XYmkoGkw3nvMGyA0+f7Dw4lZ9ujSNJV8yh5FI5CXw3/k53hwI6eB8sKmgoJCEr0SA/e9YDtTUrUBiEbSVqUMflxfKFDGRRGkSRFSimthED6SAD2fI6U/suibaVuLTRjcBBwXEIejUpbb/2R5Wrb0zhbTVvILIWleG0/H9j+fvD7pH5XCI2bRBin5467FJj0KilkJElalEbZfw/7UAbFLCNJg3L+FI9w3335KP2XBUl23DbDxyIoAgs7d4DH96Djy5sDQHobV9umpXgpWgqXkAUk52gpWsps7bCrq6uqi0Z+KhQ1H40xQSY8MOlJD/OdCISgHvkH4SHoMIQkSdKgFEqhtMl9Ai/AogzKoDCGJElQodTzLHbQG+EQCqX/sGjbpludwyAbR4ukIpIe9/FDO7ZtuW2kUBiKQkEoCkWhKBRkoioSBO4591yW+OcenucB6hE90eCnGnU9oEfYhbJBtpFqcofy6I9yKAbZRirK/Cke5d6k/7JoW43b6goWCBBaGetI2M0bvj774+aXvvYfwn/Cf8J/wn/Cf8J/wn/Cf8J/wn/Cf8J/wn/Cf8J/wn/Cf8J/wn/Cf54xyJv/Qb5HSsC/9b25H+SCtznaAqcfq6vVe7MeZLvNWWoD2gLkceizWN0vszfLfd++NfzBbnPnaaUNKAvcY4TqYJGv8ttfaP1+2BU7ygzlPTQlKn+zzNmADeLKWyBtsMiJ2S09zcUEHe3Ou9oNeFwqxa78NS+DP0ZaCaQ9RXQh8MuNophfYQ+6tRvyuNRlq7Y/Ukq0EjhShNMrqaVsr+ucX1zY0R701m7I4/Ie59Oe7d1oEHcJ2FHfO8JWSkf0SOp9z8jT3m22KX/Lr1SXLdp4RQDE980biYoacoYUndTlvSu0xA65tYqAA+Qc1L2wH27gKgspujl0jhZjhGVZAETuXT4GecvvEDORbQFoZTxbl49B/l75mSGInZ9F8AOS8cB87CFmRTUGd5tAbk/87tOxJ4NhL7PkD1kKd11xbU5yuy3kUdw57mQyCqDt5TDdF0cdXhdz8Pz+xWXTc8d8IEB287jzmH2Raw98MOdionQMd9RDvrXY0+735f9mLEpy4+gLMUQFj/isehhqQMGhqCO3+1TUXT3ytrEt0tijgONOgFY//T4GSXVysa0rUNLvi9FZBOk69ug/2r9kPQ5zUFTb+v0rYsi496HG8UhcDY49ZyZ6OMt6XEeqh59txAh6X0ttQvb8OgLpHogRHvw4j7CVYusgDzgOawtZbpNw98Weryca8EQnYoiRWew0mMwi5S62iUf2/EdDfLc1hB2mkLZ7NDjiGHvzbDDhWgyOPo5xSwHZJKR1QybxyzHHc0GJjbhg0t+LwWSyFvDPEhnFP8ceS06beg4p9PfYXkJ72kzN0kytDWBqaCplmGpN07SEENlaNEUF53QPo9APG014IevvytXHxmZT42LTwKRRHQNELeSRZsooPh8KjpKNYUmUu0+NP5sabzY9mDSRB0AbVAsV6OsWETaQ4w1Lzay7H3xq3sMm8WEwDSApUY7V6wIXcmEDhXzgZLukTOuj3Nx4Yg+ACYku4OX+hZnsdO5bVfwimnYgDV8MiJfW9+ECEq0OsqYlXpbJZvKlukvHMAKP58iTmLtvqSPH++HiEsU6Ada3LyIvFduaQnDnWEkghhHVULFf6ccnTpfqI8vaNAAXehHvBbISoqCoDVn0RkEU4/pO7oJVNVNDDuORuaiB4Y4ue2/wIPzdT/Pu7bYtNkbbd7VNIy0WGe2uyphdsN+7zHdfcyY7qnyP4qSliNhFkTftvvxohXXExnN9/OOE9F5k4jNBFJldAKMnAr6RhO7HSobqWxG7FALk7v2dYUFdLRCLPPD3q0j8lQyiyPSTBZluWdKLGnfTy68LYqdfy2uzmJ6mMyy4CwAfvnzhjowj/nco/xTtAJjhBjF66kWLhHegX8lDJF2WnIA9AFRbY0I721c/MUfGIRb0Inh2+aLaWnTDruYIElnE3NZV7Y9PfrzFnPcsQAZAbK1phbx3McbxtBv26/ABVffTi+9/ao9WQbG6qN/EiZAPIJF7yteLq6/6LtdmXdDSNnBXbKuMRgC8fx9Za1jG25bu4K5qMP51O2Zz+yU2+YuUigFiThKqplXxck0gp3cmEYr8Wn2Xc6He1pZbU4msZbA0RP55fUIvpiDM5FhRtDE8zCC7Mk9kIS/+vJweajfUWUOJyA1tHRsO3w1ZA4ETSCWImYsVAjaEljGk/wKQrN2oR9uGW3KnRFx33GmZlzRMvhuy9kfAXrYdY2byz2RY1c0hJlGeXoKvycyb2hnjWU+ZOfcC/OvrzY49yGNnaymnGsDSJJpRA5khMuvYGWPx8+fnzBbJj14pNqMRtGkqMCXwbe2OGjEec9duui2F4iV3raantU/fAcQg/LxiEtjDR+e1nsqhEeSKLZpR78Nxlp7YfvqOKTSknGb4XuaozFljKaKbuZ0sDL3f5WhiQ09tn14oKGRUAUsF5iiSbx1rKnp7e5VtahyG+/3DLyvJIxHSbn8hqUAcVTUkLpmvwMEtA4J49zAiL0XzR/JvO66XKXH9haQCzXoYGOc2K+LYbze9+xjITNwDvCh+Kc0jgyXjgFRgXbz3LeujHehOLbj1WxGAz00Q7gn7HBCUu/5CUYFlLQfeqU3BAlsTyHNtmYlHFmxNcgNiYMUJEaCvF4mhTFY7whyZ7SZ9GwU16FHBkmYxc50MnwKN0+vQsM+sBwrOW6FuawVwIIIvig8H89h+MQEEFTg5yqbhupmvMARJ+P5+SQpGxqp4ZWKJCeBXiZNjERnYzmJHpwgjE3uZ7u1Ko1Fiw990B7zN+fbAszVtH3QZSHUkA0Puo2btoahXqTq5JGNbyUTbQMOhacctqh1dSYR57YBdbyOwLqeUqpU+GbpKjAe24qFzdrRXA47URuKYxuxo84qm6LzSiWIb8H7zbepBK+pUymRZd+wOlt7xgxJNpSYNbSwTlOLotpwQqgpdx5C/npAw23Np6EBXVxkPXZjafej9tMGXpmTUFAxUyZBPOYIBz7mpC7deGX0XKtpvO9pq7OnLAUiiAudclAYDvWw4Wf4iSUMaHLoeAKsbmv/GGdFHgJi6AWpcG06kG+tztCN9SYtD2WNfBRhGBDM07f8yApKHPf9DU92gkT27f9gfhH6WnbPToYtT98vPvEZgXiqwO8c0H2V06uKlDs+2888tn6/GFLHyu6hnXZzxH+arKaD0eNtA/MY/5aCEcFrqeBhmKZsu2NZLpsWhG2lNZTgG7th6oVA0VwElhLOKLgiH7R3Zwm9lpgO4yQbhSMK9YGAS9VnKjYRwTB0SeOcsK+fFKglKZJTeRJ1Mo7BzAqb4SQapQ5zTFHgW2VYp5hUi00Dxmi/wxKdifZnCyWKIAtXVJ6PUIZo/hj2TvWO3oIt3aYRwLkblw9iajU8d82EMqT9KHYL5n9q9WxtZrsHexqag4NwTNeQ7d+3bJ5MjPz9GHaL527A0FPKruy4WnAKhoHXX5LaEtjc58vMjtFAxMH9ow9tGmlbwSRYbNVjl69qz29vcGPH8adhwBhwJXIctNPI8Is+jNa2IsO2C3xdjz2/n0Aa+mZKh6ZDCGTUeqEDvcdExYOd9OrRbqIHh5wetQ5BlHcbGB1Ug72NjxuoASU074UPv0cZQg3z5+XFZotP2PQPm2LAJ+CRbrP3oyBW67oJLi5Zh58elQ5Tb2s7QT8Ri7odKxOuW9kj+fHVrDDs/KB3ifK1z6Z4Y2XSJjxGHQ/L6Cgw7PyTqBDYSsmLvx9n3e5q8boUnmptt2MKB+NpQeGy80mBf9A5U92BEsaN3a6OIuSTDkdKQwNc2bsAfXWPO9So+kPtj9sMGntorNN+j8vv03RMC5+1maTzyVLECe86h6l6JwcPUO7Yl1BImifNQBxlE0sdjE5Hq/q3Beu2GGK5wEvuVYY/RHEN9FR1xzOCRGOe8pzXNwXotihkWHYKbfcZdFdI1mciyd5xUmbPiCxrWVJx5pkuGoUMOnxuFlFYsyogjzrCuptyg80FwduDwqNGWfYS67oI5sWAbMYMmR+DsAHKWTCvMadBINRhCDcwaRQymugTMdTI8He5de33QilUkFqkbaE6saAKm3TvCfAw6JHBsdLpYpKwjkGhGyxCSo1FP0XwNiJGo3+3+1SO6jkhiBbuvyQ9PDkcduBlpd0Nd9zeUuJlKE8pPurMDytah46nR6kK7LsKOSEka8KFFmg+Ls8PeWRVXFctdtLHEEm9DDeuNUQIBRl1vmpJgP2A3i+4QEeHJqDg7PABamiJccTb96lfZ0gd7W2WH2AK4N6KI3s0w1SE1GukaALWp44Rc21d1iB2Hnx+Q20x6212L5eZyr/17N++fQldiV8QGjIPE4QrncZuJsXqzGOG+tOiRi7FrCgfEFS45woImzaIN6MwC7gft5iBJyKdXnAVuRBHcoWZvB9VuDaEvPjjWDFtAKjBLs0B+cmNbajNZrs4sCH3xwcGGPJkaRLLiToHgEGFhjphbsDR5aiBuNy8RFTjEFS70NhMDNNXuCKHBgbs5yrot6HuCOecSDNJuWtNw9pyl956RVkST4BA8H4bYljYNBcNyiYElobbKrj1io9/wfDKT2uiZP9Sq3THx6ADUYyZZgY5+w/OpTGqj/cTbolUlRoiOLgbZ3Wd09BueT2JWEWO0USfGiI4QHM00OiF4PomhVfVlLKrUYvAJTyGCg5neGseRBK3BEZdOmCZVy60LQx4CUUQLsB0OPJ+8dMI8OSvaGDKOiLX6fXM7+HzyngU/uuOiHF3TAPN+u0gi1P7zgFbmH/9xSFs6YXAKvIYki10Ja94HQsyiwY4c8OVHZQs5QadA6UFwLoYMJWJNVZl92pEDYT5ZK+mgyH1clF4QRYYSwaYy9ely8PkkraSDLd8KBjGyxBLBYhLBISQX9Apc0OWDXhAlSzARK6YiOIwEmlbxBGfRvF2RgtKxClJ9ThblbkMclBir5vqDseao2p9SSRIXemuJk57/Gmr1cXQ6nL8CIUlraMO3XDC6PGIZalQk3t5dC11uUXFy02/gmFWw/Nox9kiZSgq7lzpJii561wPzQoGJi7f3OI4pZWQ4ZTLG3hJnRxWafgMnECy+sSMPNKH2+uSoGrVqB/8p0JViPo238zKQLm4s59sIxFlBQndABaqAiPhBZfqP5dZ6nhw180ExO3iyJ6xZYWNGC/t0rIarSQsQEEgSKXlG+FGFEzxpodAy65RakZQxcLwJOwt2RdbzaAPsHPDkgknRW6AoicXcaEeRaIhUdhwog55mqjxM9ssELqrPb5LMQa72QXzsW+ucy945qFD2JSfm8szi2dMYaH2OIeQgN0mg+Z4c9SoZZnQdRlUZek1zzWPEt15nPI+hra88KBKlUDsja2V7N3P7N0VWBmOgue88DIPHz9phqGJor1dmkjDLjzf5TS1wCg5xeqvHkmwMtJ8S5EO1SMdaqkOCPPU5yIEC0eKqWbVw+o6YeizHxkHTfIQ8p5TKRXaVcCkhLxmADCgObQCQ49qLVDh9hTHH5NhY6PHo+hHtVEI+14LQj0cIMgTGoR6v2uHVIhduP6qxDjb8vePa7FpBKS0Cvswl14LQuw6A9ZUBhaHRtemAnirUflJj/Va882gAdRQPPIaW7OHlNBOWRQ3A0NLNKQlt1KAbZXNL9AhR+7ei2DPAfZaIqjx37DWODAYlvtz50jPMmaOKwL0pdtyR0Nd11W+lcNoZ6o/oY403A0MBbRNrlxgmg1DlrFytFPgq505aVGTkEOQYlDt2Ppb6sPBe7hF8uJDjBKEF0Lqhb63gfVxWMWydIcxUo51uBubL7TqWOcWg1VHOHovTkkrvpMH7tWYOnztZeFLUQLJSU9uQGP0twMFF570HMtMLZ8ldIxtQM9UBu8YlyvwWTCmZV7MOLu2mGo2F73XOXzL9Dq8/ENFN3ucZcvD0nsKcojpQFyElY6AE6nWIbnq/JRctPNkCfTIoopLJz8C5HMEpq5K2BCkp45gg8xp3OHdxhzV5aJl40dN6STAnBycSMxMskq93cKZxM97odmjH/hAz8KhRIgDn5UZ2dvszgR0DXq+ksScnzegMg0N34LGYhppPHTkW1yn52W1LcSwTOxL2MjeX4JBahW+IwSG36pW9QUxDzVuxy1BUUoV5JjaGvc7NyVkpXBMZHL057r25iEE15DaWAD47hiksOFKJjLnPp1sGsRqw5c4bNAPPiKkobl9ahwcPj53CqAxkIKNCJeoxylGfLY/vumu4Qy8p7pG0ebO9SODB6/M2ab0bZhfh5QUPCAlHfWtBAK8HdOZtQk5FYetSaSOBq/KwchkN4rqd4cICgDJs1rQOu4BvLZgK8IenPPCguAtP+DUkSgMJLBN/NjFmJykRkhYAqKrGdbGgFjSRUeLQ03IuyKbadi6jugbyJwS2lcxQBgfCt33EsZOocX5qeHynUe33VXWyFIYd1Hb6RPN6PpfhIQFqjck6J5mRIFcoNIIfwKe0Pb5gx8dXSuASnUHQKcO2g9lmnaMMzjXkUbSJUPaHBwEwqVVCjGcbotrzBYQFegreAFaOqXc8JNiADmD0RQYn2lFVRY0bd2+AKQPbbpegmoH29lCbDQs49SAV3N+isi5x01x8fuygWWSwZBaSRmcogwC8CTBvAaopQ+ZiQ1IOfhITgSx65yU1vg94JHiI0LInlBR2wytaWq4we0OheUgtZdg7ycuABsTuLwGN8t/gmapLcT7MaILyVjw5Z5BTeuIBnRsKWcsFZndoNEuSlYJ9AppbfuxYBqL9r6rFbmGW46vrFQPMxDQXa8ICLmxMc6YO/7FjfwQi/lqegT/K/2J9fJGHKy44oXJL9SWY1mSlxEjPT+M5g1Y/pA7+ZkzKMO/FU9d72FYAmpSLF+d5QN4izA9vKJQPzMgtlCUenueZmRtAJGk88rf9NQ1sGFr+dPrs/FyrAE2COconL8Nq+4skqDMzFuDkiIjcQlni9fM84WzSUTDbi/Daj6rGcZ7H0fJ2S6zxZ6aQgCaBqdiSjD5Oe4+ucSDtF7O+lzCVMiqSdKhC9snBsxoQII8i3Et9G7AX+R7++IvIcZfMA85oVYXX7iJwp5ZuWolY3LNcrQOZz10uGmHxmSGjElvrXXz8bD2TixqLBcosuvY+AEld8et7jozKc6RtDO6UeA9mVQFCD27oZyAlpQ+6PgdWa7KxtdoG75lcnPLPM1PT9bYP7HVo04DdJJCTHm3/wcTWajuOWUhTYMUKv+pIYx3Y91CbsNefOL/XMB5pXtVoGCJRVzr4QiCPakvrwL6H3ARwUXq/A30m+t5oNA6NqLbmgKv/SHeRgSfV6d+ewHEUowUNrz4YjeahEdUHFhhW33khA3tflxz9ClJdyb5qPocGohFlQEaR1eH9r77sXQYRAzTAQWtZPhttIipRWYrMYnuRr4W2JfW7RSpZrxuRedYlBNaBq58g2kxUomaQiFF0ITxd3da7sVSu8NhRYP3xDBSPYPhCTDNANaFjBEIA0XgT7rPweCOOlWhnWAOw83AWkg2by5X6kQl9BlWFjhEhQI38QwhIif6/d/pJnbTzZS1+nzl//RzoB6sr7G/GlKBPFYLKBpBDfAmRACovJ60HX7RTwIUH/rFmfbG1jCAep8DZjh1DLykq/yhEERhqgLys/M+gkwsFxDPQvu+QVdHuoF/XF0zLEjISIuLTTKKKUs0p0TowqmKDErzwDWTYm3GsCeHl5TPglxcQN9RMxMS3fbpJVenYeQBSFVhdEH+c0oSFRybD3uSKrnFdr8haNl0RJKY0H6FPKSFfeCOqAEI0AKN43SpwYT9Obk7wv2mdW9c14ktr2xA+ReznM67VzgfsuW+aCkEwHYA8iFbOhLqwj7jSK6fPvNw/2supYVgfzce9FyRL4N9vm1A3TLGHQTWj0BlxGRsvFKZd3F4B2KGnbdsAw7wheeOu6husoNCCpLUvpRvtpx6zwvmb/sDkhT7GKUsgDEG004B+4aa8wQq6TDH2ARNXu/YBPzQqZ6yBnJ7wm07po5U2zTDMG5I37rm8wQ6ak5U09oRfAQuQn4GVKGfw5wp7lZ+ixdMEmrudVkFY3rwPYVxIUrgD5BwhWz3TGRWTO9ca9CptnnMGzd1Oqy7MLfv1Re0higsktXkGnGyeYp/jZ3JSzhdvIXC/UrIaOt7claX1TjzXkTTUUGsHcPGcgIIp3nxhAkMfDqShyzT3QqQ2BId8AaC7Abh/anamgHKWBJn9nE6rHvT24YT4gF4aPZzDFBXbVexoeZCSp+MDDreHPLlpChleDOet3tKEH/mSohdNSiEcj98oAYn9eT7Y0q0CXnV/O/N5L56D7SdoBncPBQMl3VNp8O/+v082sXLfpKFA9wi9GjhxiD3dcX5tSHyY75GCWd7TB1yPKY7EpsEuP3eqr69cMPQwMZdjVU+D6FzWmdWxUy50AGZ0TOibiD07zzENrNOF5papd6VUrGOi1zsyI3tkfCnn10N5eIVTofzORfSid6qeWEjcnLEhgRkVQp1egoCvXJCGOSxVCeYn2kEq0JKrk1QpEdWh8/zTdz+QdkT//SWwkV2t05wqQrOsl+pVSVBn/W4HZBQ/FvG9VgulFM331bRxx44Nwms1OQxcNfBZHVGRLgX+ux3g6378g6vPUnSf9zsXYM4fKDq+TtqPVenoiHrwWehdsdUsZvtluz0T9ODp8LCyeuT3LX6A9/1QQXb4Md5z89AJ6KCvHIAvi7tNwCvv3ZUJztCVP8XBes0ChlD3wAl2l1CKwHFVr5KdANMoMV+z1d3m6dvry/nUN/YxOJO/N0j2SACd4xSnIobZt3jQui+OiCrKLKws3oJ3AkBSTqs0TXKAZx1ZBL7n0xH6MjkB7huSJxeT7D2Lef+cyLpGbEUWcN0rKciDmZJ1EGBFZfxejI/4gkM2+AO0z6fVPgZbuwFn+SGM94SN7LwdGnneApec5v3owtVPvFgMD8DOu0nxVrk0DcH2sAP6bPOpZ6yAhf6eeMu5kQoGJSvYpa+MQmiXN+CqPCQCH1wdwQ0g9gfToncxt5jZIO9Nkd7TaynZy+ytRWbQaU+04CZhwDfdslSA3y7LQDggIsfZ09I0d5hHw+lv9uF9WJa3FeAFe09Kydx3zAq+CYB23kbEZjH3Iz4kWJh1EGwD5XfoYDJ/E3fttIXTs02XZs1DnaZo9GgLwEYLHUob0E3r6Rmh1aQoOL3eMvSFQnHhEBOyi55kP5/yFATaQPG2kSBaKNGgme709MzlUzqYM+nCuCBnAEDcD48E8dzZfhIEn/4HxW1AkDyOOgIZeKFEqVR7mHvcRgG7C8ka0EbFPdZFtr5xZ8THfTtsNCxLVZo5EqdnPmUhWRf3bHHY8PYyFMf6qsUCvKgDw6RFjbwfQHMgbLRLWZCgljuio4lLh0pPb2BJ2ux5X0B+3F8/6qj3hQze5YFWOu4/lPhfme39u8EljtIb8F0uZTryLGQerjV5aXCdAQ++IjwuVtp3Lp71cb5IbWPX5XXPdnj0FeOQqPu7eVHOs/0U7r/QyftA11qMev9PBxpXKQwMyNwbhzzijPZJaJtzfWg8KeMQzJrCM5NR+8o4n3KxEmI8PDDUZgMzVa0pVaITbkjfHEGAhP2Ndk0IPCll+o1+1x3ybe831VjnxBgz8sDRHQu2rBmebhBHX+phwWZ6zYSHhPAg6zKHuvujstdFwyMoH97X6N1UFy6YkRFQ3jkPurOhzYqIWwASCsdA6F9yZjGb1DKu31U9kH2EBnLtmOSJNlY/e95DPnlfWboDktus+/uJmHcHo/QvKUSWeHaF+qOaBiKVDmFNzXlhlPeaob8duMVX9vuJpL8w52mkikhx//U1mgZiPofkw77sMi89ATyjxHTZEb5NkxYqX7jsq4CYaP68wwjWPeEbFTTp8uQpZsmg11vtANoDlBwFLK5RBryAJ70oJgksqkb6gRJkdHsQP/Hsb7RVelJLAlhMbU5RQiagde98MbgbUY9S4tvAWo5qoC8M1j2mMKifgEcC8BLlXrEd8CEaWqqgCcK67yQG9ZN1aUwhFdYyLmrGnpAq+7QLroWfcFS786fbHfO6C88GzG38UngC2y7iJ150lDr3XCzRugJYNl7uS8uXYtRBT2Dds1JKG6ItutO0WXzbWbKnGO67NZFlR2gD3zwdF2c9AHnea9Fdb+TMI0J1YbxLosCe0Apv2/BpQgClweVLbjmWZZLpbjqe9QRg4FEwPEQMUAER0O1mXzyL5VOTXzA87wG9cCfQ+TfYY4922odv9LkjIEyfe9W1fClJxQFYQX4D/+ex+EtT+0Hfx0fElh31S4kbYkKD/JmUsvDjp3+znR8/NLUYvhQZiFwuAFLyhj5OvoOsm6nsm4/0fVDRRTIiORKAlL4BiL14VQvPmhINrmwH8F2Aop9CiErVF4CG6gZLLAhCsvEQVbGWW507zKXorHIXyoLQMEBaO2gSuNuzeFrc2Yp9WmFScqWqbuQ3DPjfbKSPE/6cBaXi3OMwTLFn/iGSKE+JoGE0l3UAdtxgqU+PPK84NNjhlhWmPiWDhqFceNQ+T+q8z1ehSoMd5bbOGUnbI3HpYcVIiWDmucVVraQT5cb4Y0dl4AlO5SPltnaotyw/brRI/WtPbW1Vh97IWC4JqLRK5R/sT3Aqo6qhTqi8tubFjRVJoWKLq+LiWkSP5DhNl4TyjPE39ic4ygnjC1SNt0d0NBb4u+qJFgniQsvl0FxqXKvpvrd1TIacmR/M7ZLzBNjWxLjHVYOGOmrz5cWMBDDzsks25x+uEaZktzgjqmjL/v0SxY0EMfOyg34DYLuBGLsaumRzPwCR6u/93IHblc/6G7ruSYcERr5pbcru+QRwIE9lRzDyDX1fKDBI4l4NIXCBO73dGYw8sr8CYeQR+f6FA10CvSoEUfLnGESJq5JgZM6I4o1nTVBXfXR3Og/2HMUp9EkXFKfMW8M4xd4axNA399Yc5p7Jnz+8O3+FP+EYhtGmr99BON/Qrk3DysrEXW4eWQi3KNovDmHYRyCHYWZ9hHKAfWRyGbzHDYYbQGkfkYw9Yr7djooxpmbH0oS+ww2CKOigH+MiCFwRhwMi5xFvKl0lo+vuxcfK1cwhLR0TnuRHQsXzTPTRaWRwPmJAq0EJUsbb1RrIbVAgCwcx0Mml8rhPEiA1UGuLW+U4dlzuqMO62sAyqOJwQ7YF2ScC9lQqFJcDspkIW1vuZNxwRtcjHjwbsFp1eLgcUX0S0i/11ZDVCoMiuht1CPXVoNUqVal0NWouLvjDP8Qq3YwK2egZQTwcC5s6nQQbwQfz8HAo5FBSI6YiNIUsYB5N3amSoQ1HpdhI1QGpk1o4KsVGMYM6AHWSgRS1kWwURlAHnU54DGajZQ+mcAgr4dnodrAFLCW+EicVup1sgUgpFSxFuUCjVCkMdAFFKRIY64L+Bw6BHtKFofJkKPqefxqGNhTm2sh41C4N+ceFwlwc6TJS3du6c6AwV0diRap7WXeNFObsCLgBHRF7z/KP6nYTYw6PkKoVe0/yk7pZzOlVTwNi70X+IdG6/QDB7I2r1wj465PkRajbB1SjO1BA6CcKutvkdfsGex0woY8oQw0Cfh9hD5kg9AwlBwm/r7CXhSL0B2UpNL/PICJCn1AQ5l+Eq1x06FD8ihDInxf+9dU7DcNQeYqXEdqMlNrrqnesgaX4GQE0yizZ+K+s/xr8EvvbRJbiawRSLV10zcqolSigQfG3O4AS0oiLrgsrvRoUxroUpJeg+CIBFS0VFz2uQxHxnasG8Con+pJeTf9lEYdivQan22EkyyiKzxaVkNjlFnHYJcucbnObUERlXly0VMRKiVoiS/HWRVjmy0VzgXcBeSBFL1XdwcjiKz3gxWV+v8pKYmiTR+GCA1HS3I/jQcvmRPPCshvBUj9ZOlGtBVci1da1ll/JmNssofg7r7GlzhLDJF5wKlchli4/lUQsPxUZ7y2AVbbgXpappo+OxTzWfIZfEZJe9SwLv/xeeN6bhCiqhV5xNKnmPI6DfhrHnGtN9OqjKfN8a5B9i4W+U5gUYwyCFGNkV1+O9jLguY3Uwh8B8iOhCFefj46/326OAI0jwfjqG7pBHQkfb37pa/8h/Cf8J/wn/Cf8J/wn/Cf8J/wn/Cf8J/wn/Cf8J/wn/Cf8J/wn/Cf85xmTfAQA"
+ ],
+ "name": "FUD",
+ "symbol": "FUD",
+ "marketCap": "858235.252223350016963688",
+ "price": "0.00000000858235252223",
+ "priceChange24hPercent": "1.32",
+ "volume24h": "1576.5409843159956",
+ "communityRecognized": false,
+ "key": "sui--mainnet:0x76cb819b01abed502bee8a702b4c2d547532c12f25001c9dea795a5e631c26f1::fud::FUD",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Sui",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sui.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sui--mainnet",
+ "address": "0x1ef4c0b20340b8c6a59438204467ca71e1e7cbe918526f9c2c6c5444517cd5ca::chirp::CHIRP",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-onchain/sui--mainnet/tokens/0x1ef4c0b20340b8c6a59438204467ca71e1e7cbe918526f9c2c6c5444517cd5ca::chirp::CHIRP.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-onchain/sui--mainnet/tokens/0x1ef4c0b20340b8c6a59438204467ca71e1e7cbe918526f9c2c6c5444517cd5ca::chirp::CHIRP.png"
+ ],
+ "name": "Chirp Token",
+ "symbol": "CHIRP",
+ "price": "0.00454766668974760772",
+ "priceChange24hPercent": "-9.41",
+ "volume24h": "2363.470077211408",
+ "communityRecognized": true,
+ "key": "sui--mainnet:0x1ef4c0b20340b8c6a59438204467ca71e1e7cbe918526f9c2c6c5444517cd5ca::chirp::CHIRP",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Sui",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sui.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sui--mainnet",
+ "address": "0x04deb377c33bfced1ab81cde96918e2538fe78735777150b0064ccf7df5e1c81::tato::TATO",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/ae1e1edfed1c6895a4972e05cb896e571f9b272ae1dec942da83edad0f94dbd4",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/ae1e1edfed1c6895a4972e05cb896e571f9b272ae1dec942da83edad0f94dbd4"
+ ],
+ "name": "Pawtato",
+ "symbol": "TATO",
+ "marketCap": "3890285.30892192071166272",
+ "price": "0.00389028530892192071",
+ "priceChange24hPercent": "-17.68",
+ "volume24h": "1472.7240418640979",
+ "communityRecognized": false,
+ "key": "sui--mainnet:0x04deb377c33bfced1ab81cde96918e2538fe78735777150b0064ccf7df5e1c81::tato::TATO",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Sui",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sui.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sui--mainnet",
+ "address": "0xdeb831e796f16f8257681c0d5d4108fa94333060300b2459133a96631bf470b8::suitrump::SUITRUMP",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-onchain/sui--mainnet/tokens/0xdeb831e796f16f8257681c0d5d4108fa94333060300b2459133a96631bf470b8::suitrump::SUITRUMP.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-onchain/sui--mainnet/tokens/0xdeb831e796f16f8257681c0d5d4108fa94333060300b2459133a96631bf470b8::suitrump::SUITRUMP.png"
+ ],
+ "name": "SUI TRUMP",
+ "symbol": "SUITRUMP",
+ "marketCap": "120480.436235751322821342",
+ "price": "0.00001204804362357513",
+ "priceChange24hPercent": "-0.05",
+ "volume24h": "2800.2999514658579",
+ "communityRecognized": false,
+ "key": "sui--mainnet:0xdeb831e796f16f8257681c0d5d4108fa94333060300b2459133a96631bf470b8::suitrump::SUITRUMP",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Sui",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sui.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sui--mainnet",
+ "address": "0xb2f40a50fec54e308e69c71271b04a30fc470b1db683dff9e64c752bc1f6384d::coin::COIN",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/05dcd6cc613a756b01c4672aa48d19eb192012c9b514b8445c662393145ffa9d",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/05dcd6cc613a756b01c4672aa48d19eb192012c9b514b8445c662393145ffa9d"
+ ],
+ "name": "Yelay",
+ "symbol": "YLAY",
+ "price": "0.00332105223675389084",
+ "priceChange24hPercent": "0.51",
+ "volume24h": "1309.3629765352053",
+ "communityRecognized": false,
+ "key": "sui--mainnet:0xb2f40a50fec54e308e69c71271b04a30fc470b1db683dff9e64c752bc1f6384d::coin::COIN",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Sui",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sui.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sui--mainnet",
+ "address": "0x32a976482bf4154961bf20bfa3567a80122fdf8e8f8b28d752b609d8640f7846::miu::MIU",
+ "logoUrl": "https://miucoin.io/favicon.ico",
+ "logoUrls": [
+ "https://miucoin.io/favicon.ico"
+ ],
+ "name": "MIU",
+ "symbol": "MIU",
+ "marketCap": "1759614.449419802719106139",
+ "price": "0.00000000195512716602",
+ "priceChange24hPercent": "-0.22",
+ "volume24h": "2739.0617148347229",
+ "communityRecognized": true,
+ "key": "sui--mainnet:0x32a976482bf4154961bf20bfa3567a80122fdf8e8f8b28d752b609d8640f7846::miu::MIU",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Sui",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sui.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sui--mainnet",
+ "address": "0x335c08f644f8ac5fe86f2ed480afac90917812f89c3c092fe8d3265dbb25cc59::suipump::SUIPUMP",
+ "logoUrl": "https://i.imgur.com/CELtWka.jpeg",
+ "logoUrls": [
+ "https://i.imgur.com/CELtWka.jpeg"
+ ],
+ "name": "SERPENT",
+ "symbol": "SERP",
+ "marketCap": "12829.598023170297344076",
+ "price": "0.00001491813723624453",
+ "priceChange24hPercent": "-22.76",
+ "volume24h": "880.6003127227789",
+ "communityRecognized": false,
+ "key": "sui--mainnet:0x335c08f644f8ac5fe86f2ed480afac90917812f89c3c092fe8d3265dbb25cc59::suipump::SUIPUMP",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Sui",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sui.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sui--mainnet",
+ "address": "0x5d1f47ea69bb0de31c313d7acf89b890dbb8991ea8e03c6c355171f84bb1ba4a::turbos::TURBOS",
+ "logoUrl": "https://uni-test.onekey-asset.com/server-service-onchain/sui--mainnet/tokens/0x5d1f47ea69bb0de31c313d7acf89b890dbb8991ea8e03c6c355171f84bb1ba4a::turbos::TURBOS.png",
+ "logoUrls": [
+ "https://uni-test.onekey-asset.com/server-service-onchain/sui--mainnet/tokens/0x5d1f47ea69bb0de31c313d7acf89b890dbb8991ea8e03c6c355171f84bb1ba4a::turbos::TURBOS.png"
+ ],
+ "name": "Turbos",
+ "symbol": "TURBOS",
+ "marketCap": "1097933.055945639250945092",
+ "price": "0.00010979330559456393",
+ "priceChange24hPercent": "2.47",
+ "volume24h": "2559.4112843402603",
+ "communityRecognized": true,
+ "key": "sui--mainnet:0x5d1f47ea69bb0de31c313d7acf89b890dbb8991ea8e03c6c355171f84bb1ba4a::turbos::TURBOS",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Sui",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sui.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sui--mainnet",
+ "address": "0x1a8f4bc33f8ef7fbc851f156857aa65d397a6a6fd27a7ac2ca717b51f2fd9489::alkimi::ALKIMI",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-onchain/sui--mainnet/tokens/0x1a8f4bc33f8ef7fbc851f156857aa65d397a6a6fd27a7ac2ca717b51f2fd9489::alkimi::ALKIMI.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-onchain/sui--mainnet/tokens/0x1a8f4bc33f8ef7fbc851f156857aa65d397a6a6fd27a7ac2ca717b51f2fd9489::alkimi::ALKIMI.png"
+ ],
+ "name": "Alkimi",
+ "symbol": "ALKIMI",
+ "marketCap": "651036.968711831539727253",
+ "price": "0.00065103696871183154",
+ "priceChange24hPercent": "7.44",
+ "volume24h": "1570.0331590012545",
+ "communityRecognized": false,
+ "key": "sui--mainnet:0x1a8f4bc33f8ef7fbc851f156857aa65d397a6a6fd27a7ac2ca717b51f2fd9489::alkimi::ALKIMI",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Sui",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sui.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sui--mainnet",
+ "address": "0x3766e534b5dc6cdb7defd998debf19f72565f4a7b8224e36b050f690b71a8819::boom::BOOM",
+ "logoUrl": "https://ipfs.io/ipfs/bafybeidcrjtdybxdkgxbi55ghmwpkcxkj2gwvzgchqx6ht2xxrqmatnfsi",
+ "logoUrls": [
+ "https://ipfs.io/ipfs/bafybeidcrjtdybxdkgxbi55ghmwpkcxkj2gwvzgchqx6ht2xxrqmatnfsi"
+ ],
+ "name": "Boom Bots AI",
+ "symbol": "BOOM",
+ "marketCap": "35857.214852677736318886",
+ "price": "0.00003585721485267774",
+ "priceChange24hPercent": "6.27",
+ "volume24h": "706.9095430923938",
+ "communityRecognized": false,
+ "key": "sui--mainnet:0x3766e534b5dc6cdb7defd998debf19f72565f4a7b8224e36b050f690b71a8819::boom::BOOM",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Sui",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sui.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sui--mainnet",
+ "address": "0xf54752c9be1cf8a4c2c590f3c3b05be4fec5b7f726325d51e46919a986555494::usbd::USBD",
+ "logoUrl": "https://arweave.net/uzoJjF81rkPVrkrT3Vf4OzyHQrh3h0JOTz48i0saREM",
+ "logoUrls": [
+ "https://arweave.net/uzoJjF81rkPVrkrT3Vf4OzyHQrh3h0JOTz48i0saREM"
+ ],
+ "name": "USBD",
+ "symbol": "USBD",
+ "marketCap": "10001236.211015193925087459",
+ "price": "1.00012362110151939251",
+ "priceChange24hPercent": "0",
+ "volume24h": "2376",
+ "communityRecognized": false,
+ "key": "sui--mainnet:0xf54752c9be1cf8a4c2c590f3c3b05be4fec5b7f726325d51e46919a986555494::usbd::USBD",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Sui",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sui.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0x12992613fdd35abe95dec5a4964331b1ee23b50d",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/4b23fb99949e84e6442b058824036a6796df1ad762e1435b2e9bf54ec7b26aed",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/4b23fb99949e84e6442b058824036a6796df1ad762e1435b2e9bf54ec7b26aed"
+ ],
+ "name": "Berkshire Hathaway xStock",
+ "symbol": "BRK.Bx",
+ "marketCap": "1090408119220.225",
+ "price": "503.3609",
+ "priceChange24hPercent": "-0.81",
+ "volume24h": "26446.7646014565371456",
+ "communityRecognized": false,
+ "key": "evm--196:0x12992613fdd35abe95dec5a4964331b1ee23b50d",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0x58100046a4afcd4ee4fadbd4244f3f895a341c56",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/4fd969289568ffbf56842450e095b49af94d061e07a3df17bf9395cf1c78b898",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/4fd969289568ffbf56842450e095b49af94d061e07a3df17bf9395cf1c78b898"
+ ],
+ "name": "SK hynix xStock",
+ "symbol": "SKHYx",
+ "marketCap": "1242473212815.12",
+ "price": "188.030225",
+ "priceChange24hPercent": "5.54",
+ "volume24h": "47845.96306419900393384",
+ "communityRecognized": false,
+ "key": "evm--196:0x58100046a4afcd4ee4fadbd4244f3f895a341c56",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0xfebded1b0986a8ee107f5ab1a1c5a813491deceb",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/6e71c4111bb41fb57e0d90d614c3c0e8339ad259da31d58876bc1e4dc0f968d3",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/6e71c4111bb41fb57e0d90d614c3c0e8339ad259da31d58876bc1e4dc0f968d3"
+ ],
+ "name": "Circle xStock",
+ "symbol": "CRCLx",
+ "marketCap": "27201638329.312",
+ "price": "101.665425",
+ "priceChange24hPercent": "-2.26",
+ "volume24h": "128379.79137347113549557",
+ "communityRecognized": false,
+ "key": "evm--196:0xfebded1b0986a8ee107f5ab1a1c5a813491deceb",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0x9d275685dc284c8eb1c79f6aba7a63dc75ec890a",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/f7766b51eba9fdbfea502dade3edb7d75bd7be4f06d88da48c993803ac207dd1",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/f7766b51eba9fdbfea502dade3edb7d75bd7be4f06d88da48c993803ac207dd1"
+ ],
+ "name": "Apple xStock",
+ "symbol": "AAPLx",
+ "marketCap": "4700614851020",
+ "price": "319.2050825",
+ "priceChange24hPercent": "-0.49",
+ "volume24h": "62202.102101037250128705",
+ "communityRecognized": false,
+ "key": "evm--196:0x9d275685dc284c8eb1c79f6aba7a63dc75ec890a",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0xb77d57b65b67b45c89b9626eeeece90adc8ceeee",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/63fe1b3bd826064cefff99d1b9f790f346c4dc61301c9695cd92612e1a758ae5",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/63fe1b3bd826064cefff99d1b9f790f346c4dc61301c9695cd92612e1a758ae5"
+ ],
+ "name": "XLore",
+ "symbol": "XLORE",
+ "marketCap": "25675.519747364235465714",
+ "price": "0.00002567551974736424",
+ "priceChange24hPercent": "272.63",
+ "volume24h": "17264.3205779396823626",
+ "communityRecognized": false,
+ "key": "evm--196:0xb77d57b65b67b45c89b9626eeeece90adc8ceeee",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0xeaad46f4146ded5a47b55aa7f6c48c191deaec88",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/9129ae59a1eadcefc57e4314cef2907d779cc0697cb7925e5524868a34919df6",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/9129ae59a1eadcefc57e4314cef2907d779cc0697cb7925e5524868a34919df6"
+ ],
+ "name": "Marvell xStock",
+ "symbol": "MRVLx",
+ "marketCap": "194743209654",
+ "price": "228.750125",
+ "priceChange24hPercent": "2.29",
+ "volume24h": "34249.47564289200812",
+ "communityRecognized": false,
+ "key": "evm--196:0xeaad46f4146ded5a47b55aa7f6c48c191deaec88",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0x70bf3e2b75d8832d7f790a87fffc1fa9d63dc5bb",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-onchain/evm--196/tokens/0x70bf3e2b75d8832d7f790a87fffc1fa9d63dc5bb.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-onchain/evm--196/tokens/0x70bf3e2b75d8832d7f790a87fffc1fa9d63dc5bb.png"
+ ],
+ "name": "DOGSHIT",
+ "symbol": "DOGSHIT",
+ "marketCap": "2237067.781213217688276395",
+ "price": "0.0000487548632937951",
+ "priceChange24hPercent": "8.25",
+ "volume24h": "17661.974070039285232023",
+ "communityRecognized": false,
+ "key": "evm--196:0x70bf3e2b75d8832d7f790a87fffc1fa9d63dc5bb",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0xf86b7a4629b276a9cbf2c04e869ff6273940df0d",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/912ee7862f0e5c0577105c8818ceb6ad8e60d72d8770b32b3c1be112758195c7",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/912ee7862f0e5c0577105c8818ceb6ad8e60d72d8770b32b3c1be112758195c7"
+ ],
+ "name": "X Infinity",
+ "symbol": "Infinity",
+ "marketCap": "25320.493857924392767737",
+ "price": "0.00002532049385792439",
+ "priceChange24hPercent": "138.5",
+ "volume24h": "2963.23530458",
+ "communityRecognized": false,
+ "key": "evm--196:0xf86b7a4629b276a9cbf2c04e869ff6273940df0d",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0x3cfbcebf998a27007326d18cffa5ba9cad041111",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-onchain/evm--196/tokens/0x3cfbcebf998a27007326d18cffa5ba9cad041111.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-onchain/evm--196/tokens/0x3cfbcebf998a27007326d18cffa5ba9cad041111.png"
+ ],
+ "name": "PANGJU",
+ "symbol": "PANGJU",
+ "marketCap": "1058021.776301474865265633",
+ "price": "0.00118278270721894853",
+ "priceChange24hPercent": "1.37",
+ "volume24h": "2072.3789887427451996",
+ "communityRecognized": false,
+ "key": "evm--196:0x3cfbcebf998a27007326d18cffa5ba9cad041111",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0x6d482cec5f9dd1f05ccee9fd3ff79b246170f8e2",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/d61bfa6be9b8bd77e8bf544df65dded913bd8232a94c5b0c1fa1c408249ba8b2",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/d61bfa6be9b8bd77e8bf544df65dded913bd8232a94c5b0c1fa1c408249ba8b2"
+ ],
+ "name": "Palantir xStock",
+ "symbol": "PLTRx",
+ "marketCap": "400579260410",
+ "price": "174.1653375",
+ "priceChange24hPercent": "-1.23",
+ "volume24h": "118426.6464332719456999",
+ "communityRecognized": false,
+ "key": "evm--196:0x6d482cec5f9dd1f05ccee9fd3ff79b246170f8e2",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0x548308e91ec9f285c7bff05295badbd56a6e4971",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/efe6b0307875bbf4ef200c09455dda858e2aac3eebb73734b85692cb2d3873e4",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/efe6b0307875bbf4ef200c09455dda858e2aac3eebb73734b85692cb2d3873e4"
+ ],
+ "name": "Oracle xStock",
+ "symbol": "ORCLx",
+ "marketCap": "460080190280",
+ "price": "165.2902",
+ "priceChange24hPercent": "2.33",
+ "volume24h": "19130.665509",
+ "communityRecognized": false,
+ "key": "evm--196:0x548308e91ec9f285c7bff05295badbd56a6e4971",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0xa753a7395cae905cd615da0b82a53e0560f250af",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/42ad7708d2687a1bf5d184a656106f73dc08b9914b7e48b49ad31e7065dff7ba",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/42ad7708d2687a1bf5d184a656106f73dc08b9914b7e48b49ad31e7065dff7ba"
+ ],
+ "name": "Nasdaq xStock",
+ "symbol": "QQQx",
+ "marketCap": "511222723932.57",
+ "price": "723.1650525",
+ "priceChange24hPercent": "0.39",
+ "volume24h": "144124.426661351399708961",
+ "communityRecognized": false,
+ "key": "evm--196:0xa753a7395cae905cd615da0b82a53e0560f250af",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0x3522513e5f146a2006e2901b05f16b2821485e19",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/066cb4195b4adf0e8ba32bfcd644dc4e800bd8389c9adcd62a3e526ea5a3d27f",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/066cb4195b4adf0e8ba32bfcd644dc4e800bd8389c9adcd62a3e526ea5a3d27f"
+ ],
+ "name": "AMD xStock",
+ "symbol": "AMDx",
+ "marketCap": "776576511200",
+ "price": "488.051125",
+ "priceChange24hPercent": "1.35",
+ "volume24h": "17842.46415932288711804",
+ "communityRecognized": false,
+ "key": "evm--196:0x3522513e5f146a2006e2901b05f16b2821485e19",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0xa49e20536132223d412b656dc3dfbf98303b1111",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/8028a4b3b054b0457942ab3f94f8a399e769e7481e61146f7d9208c85699a3b2",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/8028a4b3b054b0457942ab3f94f8a399e769e7481e61146f7d9208c85699a3b2"
+ ],
+ "name": "MAS",
+ "symbol": "MAS",
+ "marketCap": "146211.06067782257496662",
+ "price": "0.000148420258594152",
+ "priceChange24hPercent": "-4.19",
+ "volume24h": "1169.39221637973141618",
+ "communityRecognized": false,
+ "key": "evm--196:0xa49e20536132223d412b656dc3dfbf98303b1111",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0x3a0a47a9c2713a7049d1052cc8ebd39c41570580",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/fdd4008d93c1eb55a0c7075452b37045f2cab8956865849f173c999003dc91c3",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/fdd4008d93c1eb55a0c7075452b37045f2cab8956865849f173c999003dc91c3"
+ ],
+ "name": "Pop Mart International xStock",
+ "symbol": "POPMTx",
+ "marketCap": "26195642517.61172346",
+ "price": "19.98810943596885588402",
+ "priceChange24hPercent": "-0.35",
+ "volume24h": "39500.046381541135890947",
+ "communityRecognized": false,
+ "key": "evm--196:0x3a0a47a9c2713a7049d1052cc8ebd39c41570580",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0x64c1c1a6453abb3ebbfc69e3e8f8e75953abd46a",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/2a61b97559e6415b60fb3da1e39565de846c68f3fbe677b480dc3b26afa18f87",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/2a61b97559e6415b60fb3da1e39565de846c68f3fbe677b480dc3b26afa18f87"
+ ],
+ "name": "Hong Kong Exchanges and Clearing xStock",
+ "symbol": "HKEXCx",
+ "marketCap": "64937846752.11317855",
+ "price": "51.32253065962188",
+ "priceChange24hPercent": "-1.46",
+ "volume24h": "18981.76760947851047264",
+ "communityRecognized": false,
+ "key": "evm--196:0x64c1c1a6453abb3ebbfc69e3e8f8e75953abd46a",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0x6c54dd1187bf84b7ed9f786e9eb5d25f0d9beeee",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/4f0a55ec3fc985320a4ce2f2b094eb6d157feb5d6791d1c2f21a6f050c0ea43a",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/4f0a55ec3fc985320a4ce2f2b094eb6d157feb5d6791d1c2f21a6f050c0ea43a"
+ ],
+ "name": "XCAT",
+ "symbol": "XCAT",
+ "marketCap": "49528.407191216687709309",
+ "price": "0.00004952840719121669",
+ "priceChange24hPercent": "389.46",
+ "volume24h": "26436.064684941356598086",
+ "communityRecognized": false,
+ "key": "evm--196:0x6c54dd1187bf84b7ed9f786e9eb5d25f0d9beeee",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0xd624079f9062aab098d28a05bad2f19614e6c5ac",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/9afc4a78a26974f2c12e7e5afe1454f7e8746a11cb7183bd944373f4c5aab0bf",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/9afc4a78a26974f2c12e7e5afe1454f7e8746a11cb7183bd944373f4c5aab0bf"
+ ],
+ "name": "GPU",
+ "symbol": "GPU",
+ "marketCap": "78281.636953461080269251",
+ "price": "0.00009236203314283411",
+ "priceChange24hPercent": "47.59",
+ "volume24h": "25637.353230300948373587",
+ "communityRecognized": false,
+ "key": "evm--196:0xd624079f9062aab098d28a05bad2f19614e6c5ac",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0x5621737f42dae558b81269fcb9e9e70c19aa6b35",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/595188dee4eab51d28c130b807bf2d62db007ae91da21987b5eb1e20060df698",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/595188dee4eab51d28c130b807bf2d62db007ae91da21987b5eb1e20060df698"
+ ],
+ "name": "Microsoft xStock",
+ "symbol": "MSFTx",
+ "marketCap": "3709121629400",
+ "price": "496.8452325",
+ "priceChange24hPercent": "-0.71",
+ "volume24h": "15938.35204448461",
+ "communityRecognized": false,
+ "key": "evm--196:0x5621737f42dae558b81269fcb9e9e70c19aa6b35",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0x41c8044fb5ba79d3032afa660868dfdfa3f17777",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/6722b2d36900b90f026fc221c2e21969fca97e5a99c6134a91156ca0378be984",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/6722b2d36900b90f026fc221c2e21969fca97e5a99c6134a91156ca0378be984"
+ ],
+ "name": "AI Xplosion",
+ "symbol": "X",
+ "marketCap": "3538428.030667218300440461",
+ "price": "0.00596896275652608686",
+ "priceChange24hPercent": "2.08",
+ "volume24h": "25357.106857273091561362",
+ "communityRecognized": false,
+ "key": "evm--196:0x41c8044fb5ba79d3032afa660868dfdfa3f17777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0xe92f673ca36c5e2efd2de7628f815f84807e803f",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/9420336004bb86f7b03b2f1aa63f93b33b1c424465f44445976df384a45b4ccf",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/9420336004bb86f7b03b2f1aa63f93b33b1c424465f44445976df384a45b4ccf"
+ ],
+ "name": "Alphabet xStock",
+ "symbol": "GOOGLx",
+ "marketCap": "4098876173566.626",
+ "price": "338.2051125",
+ "priceChange24hPercent": "-0.1",
+ "volume24h": "24018.864325714755734",
+ "communityRecognized": false,
+ "key": "evm--196:0xe92f673ca36c5e2efd2de7628f815f84807e803f",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0x96702be57cd9777f835117a809c7124fe4ec989a",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/2b54a3825421e09678281a433260cded6223ed15ce3b5cc88fe2db05f751d08e",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/2b54a3825421e09678281a433260cded6223ed15ce3b5cc88fe2db05f751d08e"
+ ],
+ "name": "Meta xStock",
+ "symbol": "METAx",
+ "marketCap": "1566956441720.43",
+ "price": "613.140435",
+ "priceChange24hPercent": "-0.08",
+ "volume24h": "8796.619989",
+ "communityRecognized": false,
+ "key": "evm--196:0x96702be57cd9777f835117a809c7124fe4ec989a",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0x9e3bf4ecfc44eedd624f26656b6736a3f093b073",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/c8018122e31e618b053616c4001d7e0b7b3315875db1314eef74350eb4d6c766",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/c8018122e31e618b053616c4001d7e0b7b3315875db1314eef74350eb4d6c766"
+ ],
+ "name": "TSMC xStock",
+ "symbol": "TSMx",
+ "marketCap": "2219554116000",
+ "price": "433.62095",
+ "priceChange24hPercent": "0.42",
+ "volume24h": "10400.462145586295823",
+ "communityRecognized": false,
+ "key": "evm--196:0x9e3bf4ecfc44eedd624f26656b6736a3f093b073",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0x2782df1cc877f720c81b4f6568db64563f1d3aa3",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/4ef634bb7afd8d8754c1249d7e1ed5b5d1cc5e522e15b9baf6c2fcd9430af16b",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/4ef634bb7afd8d8754c1249d7e1ed5b5d1cc5e522e15b9baf6c2fcd9430af16b"
+ ],
+ "name": "Dell Technologies Inc. xStock",
+ "symbol": "DELLx",
+ "marketCap": "347171419609.893",
+ "price": "528.9091375",
+ "priceChange24hPercent": "0.52",
+ "volume24h": "8712.15154254770632",
+ "communityRecognized": false,
+ "key": "evm--196:0x2782df1cc877f720c81b4f6568db64563f1d3aa3",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0x8fa39ff32b316e2296630aa05bdd6a4a2e4b7598",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/7467b82fba63d95d7b352f81c3e0ea67a04430b870ba0e02aacecb5c85ec220a",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/7467b82fba63d95d7b352f81c3e0ea67a04430b870ba0e02aacecb5c85ec220a"
+ ],
+ "name": "Mixue xStock",
+ "symbol": "MIXUx",
+ "marketCap": "9887015835.259728",
+ "price": "26.082403883391864",
+ "priceChange24hPercent": "-1.22",
+ "volume24h": "4887.074588724002603573",
+ "communityRecognized": false,
+ "key": "evm--196:0x8fa39ff32b316e2296630aa05bdd6a4a2e4b7598",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0xe5f6d3b2405abdfe6f660e63202b25d23763160d",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/c8e7d6a17329a183f305a423a0fbede00933e97270713df33b760d012af42bd0",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/c8e7d6a17329a183f305a423a0fbede00933e97270713df33b760d012af42bd0"
+ ],
+ "name": "Gamestop xStock",
+ "symbol": "GMEx",
+ "marketCap": "8613526060.629",
+ "price": "19.1950375",
+ "priceChange24hPercent": "-0.45",
+ "volume24h": "10398.300817829772659",
+ "communityRecognized": false,
+ "key": "evm--196:0xe5f6d3b2405abdfe6f660e63202b25d23763160d",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0x0024af2ca56e822ad487c0bedc52a82028a55f86",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/b4007beb48f81f8713c6f0e2b8360c048b0396d3d50957cd5e8050b58d5e3264",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/b4007beb48f81f8713c6f0e2b8360c048b0396d3d50957cd5e8050b58d5e3264"
+ ],
+ "name": "Meituan xStock",
+ "symbol": "MEITx",
+ "marketCap": "58206641880.65815776",
+ "price": "10.410520811835679",
+ "priceChange24hPercent": "-0.12",
+ "volume24h": "69602.557482869199485315",
+ "communityRecognized": false,
+ "key": "evm--196:0x0024af2ca56e822ad487c0bedc52a82028a55f86",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0xc0b417e7f83db438631eb5e096684dd742e5294f",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/1d489b8abd7f01a91100a066bf3c24282552c6f50e89256c76157f1600cf43cc",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/1d489b8abd7f01a91100a066bf3c24282552c6f50e89256c76157f1600cf43cc"
+ ],
+ "name": "ASML xStock",
+ "symbol": "ASMLx",
+ "marketCap": "659384661542.53",
+ "price": "1751.238075",
+ "priceChange24hPercent": "1.69",
+ "volume24h": "9718.831564",
+ "communityRecognized": false,
+ "key": "evm--196:0xc0b417e7f83db438631eb5e096684dd742e5294f",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0x38bac69cbbd28156796e4163b2b6dcb81e336565",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/3c14283bd16e45b209be014cd676be5a14401be216a73317090043b9d314a368",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/3c14283bd16e45b209be014cd676be5a14401be216a73317090043b9d314a368"
+ ],
+ "name": "Broadcom xStock",
+ "symbol": "AVGOx",
+ "marketCap": "1698651120780",
+ "price": "362.7851375",
+ "priceChange24hPercent": "0.38",
+ "volume24h": "16540.875851",
+ "communityRecognized": false,
+ "key": "evm--196:0x38bac69cbbd28156796e4163b2b6dcb81e336565",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0x364f210f430ec2448fc68a49203040f6124096f0",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/165861d2690f5a62acc1451fc0c6a428ab2e7750b39ff554a57c9ce69e480f40",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/165861d2690f5a62acc1451fc0c6a428ab2e7750b39ff554a57c9ce69e480f40"
+ ],
+ "name": "Coinbase xStock",
+ "symbol": "COINx",
+ "marketCap": "48800870987.904",
+ "price": "183.665725",
+ "priceChange24hPercent": "-1.16",
+ "volume24h": "63074.1956789166306928",
+ "communityRecognized": false,
+ "key": "evm--196:0x364f210f430ec2448fc68a49203040f6124096f0",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0xaeb681b69e5094e04d11bcef51a71358a374c3ed",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/dc3c929308c02add1043b5cb331b3d62e5f8ab03cb41543dab6ac16ef307f566",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/dc3c929308c02add1043b5cb331b3d62e5f8ab03cb41543dab6ac16ef307f566"
+ ],
+ "name": "Bitmine xStock",
+ "symbol": "BMNRx",
+ "marketCap": "14220624115.402",
+ "price": "25.200025",
+ "priceChange24hPercent": "-3.05",
+ "volume24h": "27778.793651588678476",
+ "communityRecognized": false,
+ "key": "evm--196:0xaeb681b69e5094e04d11bcef51a71358a374c3ed",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0x00880ec7de7397e4e25ad5fbd69d97db91e90372",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-onchain/evm--196/tokens/0x00880ec7de7397e4e25ad5fbd69d97db91e90372.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-onchain/evm--196/tokens/0x00880ec7de7397e4e25ad5fbd69d97db91e90372.png"
+ ],
+ "name": "欧易人生",
+ "symbol": "欧易人生",
+ "marketCap": "90422.46986929614550427",
+ "price": "0.00009042246986929615",
+ "priceChange24hPercent": "24.58",
+ "volume24h": "16435.995203396375607523",
+ "communityRecognized": false,
+ "key": "evm--196:0x00880ec7de7397e4e25ad5fbd69d97db91e90372",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0xe1385fdd5ffb10081cd52c56584f25efa9084015",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/067e78bb7b4527217818a7e40c19c0f1f19717350e97271f5656c9abade91b43",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/067e78bb7b4527217818a7e40c19c0f1f19717350e97271f5656c9abade91b43"
+ ],
+ "name": "Robinhood xStock",
+ "symbol": "HOODx",
+ "marketCap": "109777950661.5",
+ "price": "122.9851725",
+ "priceChange24hPercent": "-2.65",
+ "volume24h": "36816.330449572533565",
+ "communityRecognized": false,
+ "key": "evm--196:0xe1385fdd5ffb10081cd52c56584f25efa9084015",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0x0361d9e8a923d0fe9b8877d9bc9f38abffb46f74",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/19a7eb01db73949d00e179a0bdd013e9fa6c0faa6ded23dac4e00e4cb9796092",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/19a7eb01db73949d00e179a0bdd013e9fa6c0faa6ded23dac4e00e4cb9796092"
+ ],
+ "name": "Nebius xStock",
+ "symbol": "NBISx",
+ "marketCap": "54070560000",
+ "price": "232.450125",
+ "priceChange24hPercent": "3.72",
+ "volume24h": "6732.56186335874507937",
+ "communityRecognized": false,
+ "key": "evm--196:0x0361d9e8a923d0fe9b8877d9bc9f38abffb46f74",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0x3557ba345b01efa20a1bddc61f573bfd87195081",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/c7562b5c972efdf12e909d86d747e213ce40a4d796452f3bb3ac18a626846b5e",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/c7562b5c972efdf12e909d86d747e213ce40a4d796452f3bb3ac18a626846b5e"
+ ],
+ "name": "Amazon.com xStock",
+ "symbol": "AMZNx",
+ "marketCap": "2778537415800",
+ "price": "258.290285",
+ "priceChange24hPercent": "-0.02",
+ "volume24h": "24202.636335178423222",
+ "communityRecognized": false,
+ "key": "evm--196:0x3557ba345b01efa20a1bddc61f573bfd87195081",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0x5c8a4613fb70f5e685e714fef1f14dee82b88ee0",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/7c19f617e45d5a81d04d2ee8e7d42e9b1095876d0ab3c90c0504c031f5d45d25",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/7c19f617e45d5a81d04d2ee8e7d42e9b1095876d0ab3c90c0504c031f5d45d25"
+ ],
+ "name": "Xlayer Cat",
+ "symbol": "XCAT",
+ "marketCap": "38098.869484026706595522",
+ "price": "0.00003844588604629254",
+ "priceChange24hPercent": "19.73",
+ "volume24h": "6349.197314118286261339",
+ "communityRecognized": false,
+ "key": "evm--196:0x5c8a4613fb70f5e685e714fef1f14dee82b88ee0",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0xdcc1a2699441079da889b1f49e12b69cc791129b",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/8011b1ac08943d66f15ff68caf40cbe99610ddae9549ff3f9055e7e37e349149",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/8011b1ac08943d66f15ff68caf40cbe99610ddae9549ff3f9055e7e37e349149"
+ ],
+ "name": "Coca-Cola xStock",
+ "symbol": "KOx",
+ "marketCap": "379162124808.75",
+ "price": "87.8951125",
+ "priceChange24hPercent": "-1.08",
+ "volume24h": "12794.812243",
+ "communityRecognized": false,
+ "key": "evm--196:0xdcc1a2699441079da889b1f49e12b69cc791129b",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0x17d8186ed8f68059124190d147174d0f6697dc40",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/a51ffba34a1084ded8d12997930eb670516fcd756cb2573fa3433b15987378f2",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/a51ffba34a1084ded8d12997930eb670516fcd756cb2573fa3433b15987378f2"
+ ],
+ "name": "Merck xStock",
+ "symbol": "MRKx",
+ "marketCap": "372883544320",
+ "price": "148.450625",
+ "priceChange24hPercent": "1.2",
+ "volume24h": "40556.311375039724248",
+ "communityRecognized": false,
+ "key": "evm--196:0x17d8186ed8f68059124190d147174d0f6697dc40",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0xefd30445a4ec1f4b3e0a6f4d9bdbd215f805047f",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/ece3df68db44eceb1e7423a7fb86a9a3970f161632224aa635e64bffe91fe8d2",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/ece3df68db44eceb1e7423a7fb86a9a3970f161632224aa635e64bffe91fe8d2"
+ ],
+ "name": "Moderna xStock",
+ "symbol": "MRNAx",
+ "marketCap": "57557777160",
+ "price": "144.9755375",
+ "priceChange24hPercent": "-0.02",
+ "volume24h": "26470.4860006230798426",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 xStock 代币化发行",
+ "subtitle": "莫德纳",
+ "source": "xstock",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/xstock.png",
+ "isOpen": true
+ },
+ "key": "evm--196:0xefd30445a4ec1f4b3e0a6f4d9bdbd215f805047f",
+ "kind": "stock",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0xc80f3ea9516fabde1383cd082cf8ed88587df888",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/0f684026d4a60ca8a0939eafa3e17ddcad83bc7c879e223b5d79b363d25dff0d",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/0f684026d4a60ca8a0939eafa3e17ddcad83bc7c879e223b5d79b363d25dff0d"
+ ],
+ "name": "OEOE",
+ "symbol": "OEOE",
+ "marketCap": "1283613.249589773053397235",
+ "price": "0.0000128498615702151",
+ "priceChange24hPercent": "0.79",
+ "volume24h": "14358.605401480039266273",
+ "communityRecognized": false,
+ "key": "evm--196:0xc80f3ea9516fabde1383cd082cf8ed88587df888",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0xac2a03492dee554e6d2f3d48a8f0c8db7866eeee",
+ "logoUrl": "https://static.oklink.com/cdn/web3/currency/token/large/196-0xac2a03492dee554e6d2f3d48a8f0c8db7866eeee-107/type=default_90_0?v=1788817257816",
+ "logoUrls": [
+ "https://static.oklink.com/cdn/web3/currency/token/large/196-0xac2a03492dee554e6d2f3d48a8f0c8db7866eeee-107/type=default_90_0?v=1788817257816"
+ ],
+ "name": "xstocks",
+ "symbol": "XSTOCKS",
+ "marketCap": "12801.052736750042860564",
+ "price": "0.00001280105273675004",
+ "priceChange24hPercent": "173.65",
+ "volume24h": "9279.797039291647918",
+ "communityRecognized": false,
+ "key": "evm--196:0xac2a03492dee554e6d2f3d48a8f0c8db7866eeee",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0x87669801a1fad6dad9db70d27ac752f452989667",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-onchain/evm--196/tokens/0x87669801a1fad6dad9db70d27ac752f452989667.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-onchain/evm--196/tokens/0x87669801a1fad6dad9db70d27ac752f452989667.png"
+ ],
+ "name": "牛马",
+ "symbol": "NIUMA",
+ "marketCap": "27109.336674980742774547",
+ "price": "0.00002785893036425397",
+ "priceChange24hPercent": "39.15",
+ "volume24h": "11936.605458546878108496",
+ "communityRecognized": false,
+ "key": "evm--196:0x87669801a1fad6dad9db70d27ac752f452989667",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0x16d91d1615fc55b76d5f92365bd60c069b46ef78",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-onchain/evm--196/tokens/0x16d91d1615fc55b76d5f92365bd60c069b46ef78.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-onchain/evm--196/tokens/0x16d91d1615fc55b76d5f92365bd60c069b46ef78.png"
+ ],
+ "name": "Banmao",
+ "symbol": "banmao",
+ "marketCap": "28414.687579224636528566",
+ "price": "0.0000284847172880104",
+ "priceChange24hPercent": "24.09",
+ "volume24h": "2686.50327027554712591",
+ "communityRecognized": false,
+ "key": "evm--196:0x16d91d1615fc55b76d5f92365bd60c069b46ef78",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0xee64c2d7453acfb3b19f0687c71e7f0a749f69b8",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/d14cd751dbea71ef63a0351e7b86b6aa07ef7f459fd3435dbe7651b047ff3c21",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/d14cd751dbea71ef63a0351e7b86b6aa07ef7f459fd3435dbe7651b047ff3c21"
+ ],
+ "name": "万事OK",
+ "symbol": "万事OK",
+ "marketCap": "104379.16764525734482144",
+ "price": "0.00010437916764525734",
+ "priceChange24hPercent": "31.06",
+ "volume24h": "9134.109337208058494407",
+ "communityRecognized": false,
+ "key": "evm--196:0xee64c2d7453acfb3b19f0687c71e7f0a749f69b8",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0x980855ca48b601df572e6877ff908c8bed38bcb5",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/bf00724b949f3f484d223243696968feff0df66ae28492f1ec8ae93295652824",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/bf00724b949f3f484d223243696968feff0df66ae28492f1ec8ae93295652824"
+ ],
+ "name": "OKOX",
+ "symbol": "OKOX",
+ "marketCap": "75946.41383350847163502",
+ "price": "0.00000084983276165868",
+ "priceChange24hPercent": "30.04",
+ "volume24h": "23361.511708988277766311",
+ "communityRecognized": false,
+ "key": "evm--196:0x980855ca48b601df572e6877ff908c8bed38bcb5",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0xdadfb355c6110eda0908740d52c834d6c2bcddc7",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/568dbbdfa7b0ed189b88da15b00219e8ec4056d16c9d28af6f666d7da15da737",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/568dbbdfa7b0ed189b88da15b00219e8ec4056d16c9d28af6f666d7da15da737"
+ ],
+ "name": "Russell 2000 xStock",
+ "symbol": "IWMx",
+ "marketCap": "81285109300.551",
+ "price": "295.580075",
+ "priceChange24hPercent": "0.54",
+ "volume24h": "1463.864494",
+ "communityRecognized": false,
+ "key": "evm--196:0xdadfb355c6110eda0908740d52c834d6c2bcddc7",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0x80a77a372c1e12accda84299492f404902e2da67",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/bcf8b8bb964d87465780296b7d0fe5fd9857eb4e40bbea3f0f41f52fa077f622",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/bcf8b8bb964d87465780296b7d0fe5fd9857eb4e40bbea3f0f41f52fa077f622"
+ ],
+ "name": "McDonald's xStock",
+ "symbol": "MCDx",
+ "marketCap": "181908009156",
+ "price": "255.7355625",
+ "priceChange24hPercent": "-4.88",
+ "volume24h": "22518.2551727312349791",
+ "communityRecognized": false,
+ "key": "evm--196:0x80a77a372c1e12accda84299492f404902e2da67",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0xde916b8089cbd5e52551bd933c3ea2ea5c903465",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/031633d93faf43e0b472d54512b88d46fdc1e847186413281db534f1428da671",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/031633d93faf43e0b472d54512b88d46fdc1e847186413281db534f1428da671"
+ ],
+ "name": "Intercontinental Exchange xStock",
+ "symbol": "ICEx",
+ "marketCap": "90664731105",
+ "price": "163.1854125",
+ "priceChange24hPercent": "0",
+ "volume24h": "28797.5142559527890641",
+ "communityRecognized": false,
+ "key": "evm--196:0xde916b8089cbd5e52551bd933c3ea2ea5c903465",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0xfa8a6a57fc83e416cf45b04b7b92b4f48da9e7b8",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/70ac3b3367653b286de88b317d8ff48a8356ca5db6d2a60398fa28590d9fad1c",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/70ac3b3367653b286de88b317d8ff48a8356ca5db6d2a60398fa28590d9fad1c"
+ ],
+ "name": "Kuaishou Technology xStock",
+ "symbol": "KUAIx",
+ "marketCap": "18537097923.67330205",
+ "price": "4.301952006705016",
+ "priceChange24hPercent": "0.1",
+ "volume24h": "5793.254660388746136",
+ "communityRecognized": false,
+ "key": "evm--196:0xfa8a6a57fc83e416cf45b04b7b92b4f48da9e7b8",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0xd9913208647671fe0f48f7f260076b2c6f310aac",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/10cbe5f579c8b2677c4cc0e2f415be18e15e117a539541898b3b4a669aaf5fca",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/10cbe5f579c8b2677c4cc0e2f415be18e15e117a539541898b3b4a669aaf5fca"
+ ],
+ "name": "International Business Machines xStock",
+ "symbol": "IBMx",
+ "marketCap": "220937017938",
+ "price": "234.6351625",
+ "priceChange24hPercent": "-0.15",
+ "volume24h": "8347.00035",
+ "communityRecognized": false,
+ "key": "evm--196:0xd9913208647671fe0f48f7f260076b2c6f310aac",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0x88bead696b4ec24a7490369fcc7f8851c21071de",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-onchain/evm--196/tokens/0x88bead696b4ec24a7490369fcc7f8851c21071de.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-onchain/evm--196/tokens/0x88bead696b4ec24a7490369fcc7f8851c21071de.png"
+ ],
+ "name": "XFist",
+ "symbol": "XFist",
+ "marketCap": "625586.2941931617217913",
+ "price": "0.00074274755849551985",
+ "priceChange24hPercent": "-0.06",
+ "volume24h": "6530.084252472727664198",
+ "communityRecognized": false,
+ "key": "evm--196:0x88bead696b4ec24a7490369fcc7f8851c21071de",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0xdcc83b32b6b4e95a61951bfcc9d71967515c0fca",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-onchain/evm--196/tokens/0xdcc83b32b6b4e95a61951bfcc9d71967515c0fca.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-onchain/evm--196/tokens/0xdcc83b32b6b4e95a61951bfcc9d71967515c0fca.png"
+ ],
+ "name": "Xwizard",
+ "symbol": "Xwizard",
+ "marketCap": "64373.763754182690661023",
+ "price": "0.00006463261725861246",
+ "priceChange24hPercent": "32.61",
+ "volume24h": "9474.607974786559122612",
+ "communityRecognized": false,
+ "key": "evm--196:0xdcc83b32b6b4e95a61951bfcc9d71967515c0fca",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0x903358faf7c6304afbd560e9e29b12ab1b8fddc5",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-onchain/evm--196/tokens/0x903358faf7c6304afbd560e9e29b12ab1b8fddc5.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-onchain/evm--196/tokens/0x903358faf7c6304afbd560e9e29b12ab1b8fddc5.png"
+ ],
+ "name": "DOG",
+ "symbol": "DOG",
+ "marketCap": "179959.587871729497076434",
+ "price": "0.00000398798741122777",
+ "priceChange24hPercent": "1.09",
+ "volume24h": "1208.054306411747001921",
+ "communityRecognized": false,
+ "key": "evm--196:0x903358faf7c6304afbd560e9e29b12ab1b8fddc5",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0xfbfc1fd14eec970276c8a3bf5e6131cd751cc0b9",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/497f2721aad80f357bef758c1806cd82b11f20d661c7f4350745936336f14e41",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/497f2721aad80f357bef758c1806cd82b11f20d661c7f4350745936336f14e41"
+ ],
+ "name": "IREN xStock",
+ "symbol": "IRENx",
+ "marketCap": "15840188668.152",
+ "price": "45.32005",
+ "priceChange24hPercent": "3.26",
+ "volume24h": "4709.51406467286356",
+ "communityRecognized": false,
+ "key": "evm--196:0xfbfc1fd14eec970276c8a3bf5e6131cd751cc0b9",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0x52ce422d81e62a2c4bb87653d66f2235c73b152e",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/0c226f6df2f05c986e13f692b7873d79de9670a446f6e33166de79e517d463b7",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/0c226f6df2f05c986e13f692b7873d79de9670a446f6e33166de79e517d463b7"
+ ],
+ "name": "Reddit xStock",
+ "symbol": "RDDTx",
+ "marketCap": "29744572388.44",
+ "price": "154.53115",
+ "priceChange24hPercent": "-0.24",
+ "volume24h": "2829.606892236080626464",
+ "communityRecognized": false,
+ "key": "evm--196:0x52ce422d81e62a2c4bb87653d66f2235c73b152e",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0xca8ac5be2743cf964bdbef0e1aa2f128b906f70f",
+ "logoUrl": "https://static.oklink.com/cdn/web3/currency/token/large/196-0xca8ac5be2743cf964bdbef0e1aa2f128b906f70f-107/type=default_90_0?v=1788811664071",
+ "logoUrls": [
+ "https://static.oklink.com/cdn/web3/currency/token/large/196-0xca8ac5be2743cf964bdbef0e1aa2f128b906f70f-107/type=default_90_0?v=1788811664071"
+ ],
+ "name": "StarCoin",
+ "symbol": "StarCoin",
+ "marketCap": "9715.408589437403201311",
+ "price": "0.00001011091476145655",
+ "priceChange24hPercent": "5.8",
+ "volume24h": "1176.618420574696835",
+ "communityRecognized": false,
+ "key": "evm--196:0xca8ac5be2743cf964bdbef0e1aa2f128b906f70f",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0x2852d3037d6cc555fd798a5e6aa2a7893b49eeee",
+ "logoUrl": "https://static.oklink.com/cdn/web3/currency/token/large/196-0x2852d3037d6cc555fd798a5e6aa2a7893b49eeee-107/type=default_90_0?v=1788818155405",
+ "logoUrls": [
+ "https://static.oklink.com/cdn/web3/currency/token/large/196-0x2852d3037d6cc555fd798a5e6aa2a7893b49eeee-107/type=default_90_0?v=1788818155405"
+ ],
+ "name": "星星人",
+ "symbol": "星星人",
+ "marketCap": "11385.699877158866891309",
+ "price": "0.00001138569987715887",
+ "priceChange24hPercent": "150.78",
+ "volume24h": "3952.646546875528556",
+ "communityRecognized": false,
+ "key": "evm--196:0x2852d3037d6cc555fd798a5e6aa2a7893b49eeee",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0x77584b2805a204f56c4b250a6c8d314c713abbbb",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/ad9a30f3d8d04e764ab248c996fb94d0384ef9e42853c1e720bdfb670ae1272a",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/ad9a30f3d8d04e764ab248c996fb94d0384ef9e42853c1e720bdfb670ae1272a"
+ ],
+ "name": "Jacket",
+ "symbol": "JACKET",
+ "marketCap": "16210.869208021211848583",
+ "price": "0.00001621086920802121",
+ "priceChange24hPercent": "120.46",
+ "volume24h": "4722.500893416603136701",
+ "communityRecognized": false,
+ "key": "evm--196:0x77584b2805a204f56c4b250a6c8d314c713abbbb",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0xdec2975ff2f100a6c89132a7a86fbda922af2024",
+ "logoUrl": "https://static.oklink.com/cdn/web3/currency/token/large/196-0xdec2975ff2f100a6c89132a7a86fbda922af2024-107/type=default_90_0?v=1788810878389",
+ "logoUrls": [
+ "https://static.oklink.com/cdn/web3/currency/token/large/196-0xdec2975ff2f100a6c89132a7a86fbda922af2024-107/type=default_90_0?v=1788810878389"
+ ],
+ "name": "xStocks",
+ "symbol": "xStocks",
+ "marketCap": "7889.082576707145007957",
+ "price": "0.00000845563538712872",
+ "priceChange24hPercent": "-0.89",
+ "volume24h": "572.3139372771015066",
+ "communityRecognized": false,
+ "key": "evm--196:0xdec2975ff2f100a6c89132a7a86fbda922af2024",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0x39c31fc6038490ea4bf8a21ca18cd18f33b8d3fb",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/4b4c7dee54480f4936747a023135ea81e5cf071b251058881fbc60403f85a3ba",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/4b4c7dee54480f4936747a023135ea81e5cf071b251058881fbc60403f85a3ba"
+ ],
+ "name": "Super Micro Computer, Inc. xStock",
+ "symbol": "SMCIx",
+ "marketCap": "25576711547",
+ "price": "40.0850625",
+ "priceChange24hPercent": "-1.94",
+ "volume24h": "2338.376685462390486446",
+ "communityRecognized": false,
+ "key": "evm--196:0x39c31fc6038490ea4bf8a21ca18cd18f33b8d3fb",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0x0f24bf9dd317e6eb539b569675032f910667a67e",
+ "logoUrl": "https://static.oklink.com/cdn/web3/currency/token/large/196-0x0f24bf9dd317e6eb539b569675032f910667a67e-107/type=default_90_0?v=1788818147771",
+ "logoUrls": [
+ "https://static.oklink.com/cdn/web3/currency/token/large/196-0x0f24bf9dd317e6eb539b569675032f910667a67e-107/type=default_90_0?v=1788818147771"
+ ],
+ "name": "万事OK",
+ "symbol": "万事OK",
+ "marketCap": "7639.250155164540329255",
+ "price": "0.00000782209020296959",
+ "priceChange24hPercent": "13.96",
+ "volume24h": "1883.12390374460215",
+ "communityRecognized": false,
+ "key": "evm--196:0x0f24bf9dd317e6eb539b569675032f910667a67e",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0x2ac1c6cc718fea1ba859b0c17205b061aa393333",
+ "logoUrl": "https://static.oklink.com/cdn/web3/currency/token/large/196-0x2ac1c6cc718fea1ba859b0c17205b061aa393333-107/type=default_90_0?v=1788816671379",
+ "logoUrls": [
+ "https://static.oklink.com/cdn/web3/currency/token/large/196-0x2ac1c6cc718fea1ba859b0c17205b061aa393333-107/type=default_90_0?v=1788816671379"
+ ],
+ "name": "PLAY",
+ "symbol": "PLAY",
+ "marketCap": "26602.670202176452588741",
+ "price": "0.00002660267020217645",
+ "priceChange24hPercent": "51.3",
+ "volume24h": "4248.16448473995451955",
+ "communityRecognized": false,
+ "key": "evm--196:0x2ac1c6cc718fea1ba859b0c17205b061aa393333",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0x443153a1d062fb1229791377915c7d68040e7777",
+ "logoUrl": "https://static.oklink.com/cdn/web3/currency/token/large/196-0x443153a1d062fb1229791377915c7d68040e7777-107/type=default_90_0?v=1788812875202",
+ "logoUrls": [
+ "https://static.oklink.com/cdn/web3/currency/token/large/196-0x443153a1d062fb1229791377915c7d68040e7777-107/type=default_90_0?v=1788812875202"
+ ],
+ "name": "万事OK",
+ "symbol": "万事OK",
+ "marketCap": "10450.983823174205735866",
+ "price": "0.00001045098382317421",
+ "priceChange24hPercent": "-24.63",
+ "volume24h": "1888.371706991704676444",
+ "communityRecognized": false,
+ "key": "evm--196:0x443153a1d062fb1229791377915c7d68040e7777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0x4b54acf3b4f5642be2a734f4dc3f71661ee9eeee",
+ "logoUrl": "https://static.oklink.com/cdn/web3/currency/token/large/196-0x4b54acf3b4f5642be2a734f4dc3f71661ee9eeee-107/type=default_90_0?v=1788821151301",
+ "logoUrls": [
+ "https://static.oklink.com/cdn/web3/currency/token/large/196-0x4b54acf3b4f5642be2a734f4dc3f71661ee9eeee-107/type=default_90_0?v=1788821151301"
+ ],
+ "name": "RUOK",
+ "symbol": "RUOK",
+ "marketCap": "39235.83914135017880351",
+ "price": "0.00003923583914135018",
+ "priceChange24hPercent": "3.91",
+ "volume24h": "510.2968397279001815",
+ "communityRecognized": false,
+ "key": "evm--196:0x4b54acf3b4f5642be2a734f4dc3f71661ee9eeee",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0x0f8a6683a166444254d304871af443cb84c6eeee",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/ea842b45aefa5e5877b7c38cb28017b8ddd765b1ee36f8a9e57453a121b3d11e",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/ea842b45aefa5e5877b7c38cb28017b8ddd765b1ee36f8a9e57453a121b3d11e"
+ ],
+ "name": "BODHI",
+ "symbol": "BODHI",
+ "marketCap": "64479.837506727002203208",
+ "price": "0.000064479837506727",
+ "priceChange24hPercent": "38.89",
+ "volume24h": "3471.80394103962896206",
+ "communityRecognized": false,
+ "key": "evm--196:0x0f8a6683a166444254d304871af443cb84c6eeee",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0xe489d8a976c4ba6177489ad6f2b115acd227af6b",
+ "logoUrl": "https://static.oklink.com/cdn/web3/currency/token/large/196-0xe489d8a976c4ba6177489ad6f2b115acd227af6b-107/type=default_90_0?v=1788810878410",
+ "logoUrls": [
+ "https://static.oklink.com/cdn/web3/currency/token/large/196-0xe489d8a976c4ba6177489ad6f2b115acd227af6b-107/type=default_90_0?v=1788810878410"
+ ],
+ "name": "万事OK",
+ "symbol": "万事OK",
+ "marketCap": "9766.214196048241146022",
+ "price": "0.00001032401077840166",
+ "priceChange24hPercent": "69.85",
+ "volume24h": "1039.2076419685854738",
+ "communityRecognized": false,
+ "key": "evm--196:0xe489d8a976c4ba6177489ad6f2b115acd227af6b",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0xfce797247eb4d41b93798f06eafd1b499c38e133",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/8d9f014749325d425dc89b99f520e5da757f98dadf73dee5d8c96cea979c6db0",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/8d9f014749325d425dc89b99f520e5da757f98dadf73dee5d8c96cea979c6db0"
+ ],
+ "name": "3",
+ "symbol": "3",
+ "marketCap": "16579.514281725846208783",
+ "price": "0.00001657951428172585",
+ "priceChange24hPercent": "21.87",
+ "volume24h": "509.588955352188027881",
+ "communityRecognized": false,
+ "key": "evm--196:0xfce797247eb4d41b93798f06eafd1b499c38e133",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0x76a9ccfc8fc493e27ad570c955ba9e046591115c",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/c5cee4fd5bc37532a2459b350c53297d61e9f59cf2fea7045f05f8682d764d4d",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/c5cee4fd5bc37532a2459b350c53297d61e9f59cf2fea7045f05f8682d764d4d"
+ ],
+ "name": "Star",
+ "symbol": "Star",
+ "marketCap": "57096.322236815782955526",
+ "price": "0.00019032107539152645",
+ "priceChange24hPercent": "26.25",
+ "volume24h": "8781.9552755188342401",
+ "communityRecognized": false,
+ "key": "evm--196:0x76a9ccfc8fc493e27ad570c955ba9e046591115c",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0x19abc302ac083925a52c2d5f394dc85fce35f89e",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/3fb16ed12f41a2204a82f2d5de7e7633b3cae0b39c075271dfb467032a23e233",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/3fb16ed12f41a2204a82f2d5de7e7633b3cae0b39c075271dfb467032a23e233"
+ ],
+ "name": "招财",
+ "symbol": "招财",
+ "marketCap": "22492.848779139542876682",
+ "price": "0.00002249284877913954",
+ "priceChange24hPercent": "41.14",
+ "volume24h": "2764.061787163312301",
+ "communityRecognized": false,
+ "key": "evm--196:0x19abc302ac083925a52c2d5f394dc85fce35f89e",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0xbd2da32a6049b90e9baff4329e1ffe17e4a19b59",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/9d0b4ffd81a9e19a1bfc80ca3b049521ce33bfc428bb7fefec0e4ec1a1fd36ea",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/9d0b4ffd81a9e19a1bfc80ca3b049521ce33bfc428bb7fefec0e4ec1a1fd36ea"
+ ],
+ "name": "ICEBULL",
+ "symbol": "ICEBULL",
+ "marketCap": "32218.860461398849234395",
+ "price": "0.00003308719064409835",
+ "priceChange24hPercent": "125.49",
+ "volume24h": "9728.0302752244643872",
+ "communityRecognized": false,
+ "key": "evm--196:0xbd2da32a6049b90e9baff4329e1ffe17e4a19b59",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0xb899567d73ed11b0234926735ac8eb8b6668eeee",
+ "logoUrl": "https://static.oklink.com/cdn/web3/currency/token/large/196-0xb899567d73ed11b0234926735ac8eb8b6668eeee-107/type=default_90_0?v=1788816872456",
+ "logoUrls": [
+ "https://static.oklink.com/cdn/web3/currency/token/large/196-0xb899567d73ed11b0234926735ac8eb8b6668eeee-107/type=default_90_0?v=1788816872456"
+ ],
+ "name": "eeeee",
+ "symbol": "EEEEE",
+ "marketCap": "3260.375188929308289466",
+ "price": "0.00000326037518892931",
+ "priceChange24hPercent": "73.89",
+ "volume24h": "1934.0169103005732721",
+ "communityRecognized": false,
+ "key": "evm--196:0xb899567d73ed11b0234926735ac8eb8b6668eeee",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0xa413c00935f17abca771e39a73240a8df9aa7ea4",
+ "logoUrl": "https://static.oklink.com/cdn/web3/currency/token/large/196-0xa413c00935f17abca771e39a73240a8df9aa7ea4-107/type=default_90_0?v=1788817468126",
+ "logoUrls": [
+ "https://static.oklink.com/cdn/web3/currency/token/large/196-0xa413c00935f17abca771e39a73240a8df9aa7ea4-107/type=default_90_0?v=1788817468126"
+ ],
+ "name": "星星人",
+ "symbol": "星星人",
+ "marketCap": "17998.118517358218835941",
+ "price": "0.00001839344191089342",
+ "priceChange24hPercent": "43.38",
+ "volume24h": "2713.77627300217183222",
+ "communityRecognized": false,
+ "key": "evm--196:0xa413c00935f17abca771e39a73240a8df9aa7ea4",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0x4122a43daecd13cfb2543ad339470fd87bc11111",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/4838afe55c0f1efbd5f1b0df4b496514a996c4ceeea56b77c55f3b640600e5d5",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/4838afe55c0f1efbd5f1b0df4b496514a996c4ceeea56b77c55f3b640600e5d5"
+ ],
+ "name": "OKIE",
+ "symbol": "OKIE",
+ "marketCap": "15774.648142931350237233",
+ "price": "0.00001577464814293135",
+ "priceChange24hPercent": "28.13",
+ "volume24h": "772.577870019013595476",
+ "communityRecognized": false,
+ "key": "evm--196:0x4122a43daecd13cfb2543ad339470fd87bc11111",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0xbddbc3645411f2479972d7014d266f089961eaa7",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/c9a8a20a3b3194e0e6fd1bc059f56d4bb6cbf33bcd808d2c7f679dfc7c301060",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/c9a8a20a3b3194e0e6fd1bc059f56d4bb6cbf33bcd808d2c7f679dfc7c301060"
+ ],
+ "name": "OKX人生",
+ "symbol": "OKX人生",
+ "marketCap": "8993.619419200745598803",
+ "price": "0.00000899361941920075",
+ "priceChange24hPercent": "10.42",
+ "volume24h": "759.2777471684050914",
+ "communityRecognized": false,
+ "key": "evm--196:0xbddbc3645411f2479972d7014d266f089961eaa7",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0xbb9a906f1a8906d548c5d94b7079fa31bf09eeee",
+ "logoUrl": "https://static.oklink.com/cdn/web3/currency/token/large/196-0xbb9a906f1a8906d548c5d94b7079fa31bf09eeee-107/type=default_90_0?v=1788817524239",
+ "logoUrls": [
+ "https://static.oklink.com/cdn/web3/currency/token/large/196-0xbb9a906f1a8906d548c5d94b7079fa31bf09eeee-107/type=default_90_0?v=1788817524239"
+ ],
+ "name": "Xcat",
+ "symbol": "XCAT",
+ "marketCap": "7696.640152371809470203",
+ "price": "0.00000769664015237181",
+ "priceChange24hPercent": "-87.1",
+ "volume24h": "12985.482593026526254953",
+ "communityRecognized": false,
+ "key": "evm--196:0xbb9a906f1a8906d548c5d94b7079fa31bf09eeee",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0x8afef3f9a3506731afbbdbe0e844ac2246ec1111",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/5334d97a49e68503fbc62629a9272d347e518bb2727f81de4a59a3556484e3ea",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/5334d97a49e68503fbc62629a9272d347e518bb2727f81de4a59a3556484e3ea"
+ ],
+ "name": "GMCAT",
+ "symbol": "XCAT",
+ "marketCap": "12374.486795921348574193",
+ "price": "0.00001237448679592135",
+ "priceChange24hPercent": "-17.82",
+ "volume24h": "1484.4594175824436222",
+ "communityRecognized": false,
+ "key": "evm--196:0x8afef3f9a3506731afbbdbe0e844ac2246ec1111",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0x36baf1bc081d2671343f05f46e0a49f2eae34844",
+ "logoUrl": "https://static.oklink.com/cdn/web3/currency/token/large/196-0x36baf1bc081d2671343f05f46e0a49f2eae34844-107/type=default_90_0?v=1788817164719",
+ "logoUrls": [
+ "https://static.oklink.com/cdn/web3/currency/token/large/196-0x36baf1bc081d2671343f05f46e0a49f2eae34844-107/type=default_90_0?v=1788817164719"
+ ],
+ "name": "AreYouOK",
+ "symbol": "AreYouOK",
+ "marketCap": "7302.470978987093980323",
+ "price": "0.00000751865720220248",
+ "priceChange24hPercent": "35.52",
+ "volume24h": "1047.55657737108688",
+ "communityRecognized": false,
+ "key": "evm--196:0x36baf1bc081d2671343f05f46e0a49f2eae34844",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0x5f8a1c74c112865bd05dbe4752c7608332719062",
+ "logoUrl": "https://coin-images.coingecko.com/coins/images/102172528/large/deJAAA.png?1773764620",
+ "logoUrls": [
+ "https://coin-images.coingecko.com/coins/images/102172528/large/deJAAA.png?1773764620"
+ ],
+ "name": "JAAA deRWA",
+ "symbol": "deJAAA",
+ "marketCap": "59241.186015134550933529",
+ "price": "1.04405457631200157476",
+ "priceChange24hPercent": "-0.04",
+ "volume24h": "6024.941383",
+ "communityRecognized": false,
+ "key": "evm--196:0x5f8a1c74c112865bd05dbe4752c7608332719062",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0x19130a800ed206f24d27d6cf405880127be73d12",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/44ddee54aba45f59d888c311a5d14318e2b439f385372ddcaed83607d77afb39",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/44ddee54aba45f59d888c311a5d14318e2b439f385372ddcaed83607d77afb39"
+ ],
+ "name": "ok马",
+ "symbol": "ok马",
+ "marketCap": "3706.102862499643829716",
+ "price": "0.00000370610286249964",
+ "priceChange24hPercent": "19.48",
+ "volume24h": "741.754694577204565",
+ "communityRecognized": false,
+ "key": "evm--196:0x19130a800ed206f24d27d6cf405880127be73d12",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--42161",
+ "address": "0x0c1c1c109fe34733fca54b82d7b46b75cfb71f6e",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x0c1c1c109fe34733fca54b82d7b46b75cfb71f6e-1775532435873.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x0c1c1c109fe34733fca54b82d7b46b75cfb71f6e-1775532435873.png"
+ ],
+ "name": "Chip",
+ "symbol": "CHIP",
+ "marketCap": "508894251.264119017641851862",
+ "price": "0.05088942512641190176",
+ "priceChange24hPercent": "-11.05",
+ "volume24h": "918539.942234562349819789",
+ "communityRecognized": true,
+ "key": "evm--42161:0x0c1c1c109fe34733fca54b82d7b46b75cfb71f6e",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Arbitrum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--42161",
+ "address": "0xfc5a1a6eb076a2c7ad06ed22c90d7e710e35ad0a",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0xfc5a1a6eb076a2c7ad06ed22c90d7e710e35ad0a.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0xfc5a1a6eb076a2c7ad06ed22c90d7e710e35ad0a.png"
+ ],
+ "name": "GMX",
+ "symbol": "GMX",
+ "marketCap": "92939227.81910695297091323",
+ "price": "8.46009862290991960361",
+ "priceChange24hPercent": "7.56",
+ "volume24h": "470965.439235175953904733",
+ "communityRecognized": true,
+ "key": "evm--42161:0xfc5a1a6eb076a2c7ad06ed22c90d7e710e35ad0a",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Arbitrum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--42161",
+ "address": "0x3b8db18e69d6686ad9371a423afe3dd1065c94f1",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x3b8db18e69d6686ad9371a423afe3dd1065c94f1-1770897698828.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x3b8db18e69d6686ad9371a423afe3dd1065c94f1-1770897698828.png"
+ ],
+ "name": "Espresso",
+ "symbol": "ESP",
+ "marketCap": "6687476.711883537129304927",
+ "price": "0.08811077978879592203",
+ "priceChange24hPercent": "-3.4",
+ "volume24h": "593660.9268",
+ "communityRecognized": true,
+ "key": "evm--42161:0x3b8db18e69d6686ad9371a423afe3dd1065c94f1",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Arbitrum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--42161",
+ "address": "0x6c84a8f1c29108f47a79964b5fe888d4f4d0de40",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x6c84a8f1c29108f47a79964b5fe888d4f4d0de40.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x6c84a8f1c29108f47a79964b5fe888d4f4d0de40.png"
+ ],
+ "name": "Arbitrum tBTC v2",
+ "symbol": "tBTC",
+ "marketCap": "7742238.644706631209182891",
+ "price": "78812.45926109961927074949",
+ "priceChange24hPercent": "-0.96",
+ "volume24h": "142008.084792781149231303",
+ "communityRecognized": true,
+ "key": "evm--42161:0x6c84a8f1c29108f47a79964b5fe888d4f4d0de40",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Arbitrum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--42161",
+ "address": "0x6fbbbd8bfb1cd3986b1d05e7861a0f62f87db74b",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x6fbbbd8bfb1cd3986b1d05e7861a0f62f87db74b-1757710862100.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x6fbbbd8bfb1cd3986b1d05e7861a0f62f87db74b-1757710862100.png"
+ ],
+ "name": "Vision",
+ "symbol": "VSN",
+ "marketCap": "4060007.462251900086812706",
+ "price": "0.04051347640630231184",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": true,
+ "key": "evm--42161:0x6fbbbd8bfb1cd3986b1d05e7861a0f62f87db74b",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Arbitrum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--42161",
+ "address": "0x0c880f6761f1af8d9aa9c466984b80dab9a8c9e8",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x0c880f6761f1af8d9aa9c466984b80dab9a8c9e8.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x0c880f6761f1af8d9aa9c466984b80dab9a8c9e8.png"
+ ],
+ "name": "Pendle",
+ "symbol": "PENDLE",
+ "marketCap": "31736673.874710957304832133",
+ "price": "2.18917687182949833929",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": true,
+ "key": "evm--42161:0x0c880f6761f1af8d9aa9c466984b80dab9a8c9e8",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Arbitrum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--42161",
+ "address": "0xe93307b8faa1c9d5cae6f9fe96f91549fb651a20",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0xe93307b8faa1c9d5cae6f9fe96f91549fb651a20-1757710926440.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0xe93307b8faa1c9d5cae6f9fe96f91549fb651a20-1757710926440.png"
+ ],
+ "name": "Ontomir Chain",
+ "symbol": "OTM",
+ "marketCap": "14498704.24748112376300758",
+ "price": "0.01450314236714422484",
+ "priceChange24hPercent": "1.09",
+ "volume24h": "1915.73271512099",
+ "communityRecognized": false,
+ "key": "evm--42161:0xe93307b8faa1c9d5cae6f9fe96f91549fb651a20",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Arbitrum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--42161",
+ "address": "0xba5ddd1f9d7f570dc94a51479a000e3bce967196",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0xba5ddd1f9d7f570dc94a51479a000e3bce967196-1730187900049.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0xba5ddd1f9d7f570dc94a51479a000e3bce967196-1730187900049.png"
+ ],
+ "name": "Aave Token",
+ "symbol": "AAVE",
+ "marketCap": "6647234.28374377825806918",
+ "price": "130.65192025812917367061",
+ "priceChange24hPercent": "-1.79",
+ "volume24h": "241891.363481710228785752",
+ "communityRecognized": true,
+ "key": "evm--42161:0xba5ddd1f9d7f570dc94a51479a000e3bce967196",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Arbitrum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--42161",
+ "address": "0x6491c05a82219b8d1479057361ff1654749b876b",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x6491c05a82219b8d1479057361ff1654749b876b-1740406003460.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x6491c05a82219b8d1479057361ff1654749b876b-1740406003460.png"
+ ],
+ "name": "USDS Stablecoin",
+ "symbol": "USDS",
+ "marketCap": "99766513.932485329619852804",
+ "price": "1",
+ "priceChange24hPercent": "0",
+ "volume24h": "29710.712897",
+ "communityRecognized": true,
+ "key": "evm--42161:0x6491c05a82219b8d1479057361ff1654749b876b",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Arbitrum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--42161",
+ "address": "0x9623063377ad1b27544c965ccd7342f7ea7e88c7",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x9623063377ad1b27544c965ccd7342f7ea7e88c7.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x9623063377ad1b27544c965ccd7342f7ea7e88c7.png"
+ ],
+ "name": "Graph Token",
+ "symbol": "GRT",
+ "marketCap": "67232424.034516182922398782",
+ "price": "0.01985957690951329285",
+ "priceChange24hPercent": "3.57",
+ "volume24h": "28444.941913545508999066",
+ "communityRecognized": true,
+ "key": "evm--42161:0x9623063377ad1b27544c965ccd7342f7ea7e88c7",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Arbitrum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--42161",
+ "address": "0x289ba1701c2f088cf0faf8b3705246331cb8a839",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x289ba1701c2f088cf0faf8b3705246331cb8a839.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x289ba1701c2f088cf0faf8b3705246331cb8a839.png"
+ ],
+ "name": "Livepeer Token",
+ "symbol": "LPT",
+ "marketCap": "55102696.596664608848262225",
+ "price": "1.48059396134498743063",
+ "priceChange24hPercent": "3.47",
+ "volume24h": "54154.008617366431231267",
+ "communityRecognized": true,
+ "key": "evm--42161:0x289ba1701c2f088cf0faf8b3705246331cb8a839",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Arbitrum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--42161",
+ "address": "0xf97f4df75117a78c1a5a0dbb814af92458539fb4",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0xf97f4df75117a78c1a5a0dbb814af92458539fb4.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0xf97f4df75117a78c1a5a0dbb814af92458539fb4.png"
+ ],
+ "name": "ChainLink Token",
+ "symbol": "LINK",
+ "marketCap": "24572297.821287148828297363",
+ "price": "12.63515389871756360695",
+ "priceChange24hPercent": "-2.65",
+ "volume24h": "1085222.708385733398909609",
+ "communityRecognized": true,
+ "key": "evm--42161:0xf97f4df75117a78c1a5a0dbb814af92458539fb4",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Arbitrum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--42161",
+ "address": "0x768d4b20869771a93946b5101a6a2e886f020c4e",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x768d4b20869771a93946b5101a6a2e886f020c4e-1787148086340.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x768d4b20869771a93946b5101a6a2e886f020c4e-1787148086340.png"
+ ],
+ "name": "Nola",
+ "symbol": "NOLA",
+ "marketCap": "129195.406437475016933982",
+ "price": "0.00013020424833405769",
+ "priceChange24hPercent": "-37.38",
+ "volume24h": "45683.05589549757529852",
+ "communityRecognized": false,
+ "key": "evm--42161:0x768d4b20869771a93946b5101a6a2e886f020c4e",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Arbitrum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--42161",
+ "address": "0x018d6a98555686be1ca5b6896ef6c42cf67e2bd1",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x018d6a98555686be1ca5b6896ef6c42cf67e2bd1-1787148176821.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x018d6a98555686be1ca5b6896ef6c42cf67e2bd1-1787148176821.png"
+ ],
+ "name": "ODYS",
+ "symbol": "ODYS",
+ "marketCap": "2098824.415097710825781924",
+ "price": "0.00227237588323107215",
+ "priceChange24hPercent": "-15.84",
+ "volume24h": "331141.746350486639411158",
+ "communityRecognized": false,
+ "key": "evm--42161:0x018d6a98555686be1ca5b6896ef6c42cf67e2bd1",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Arbitrum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--42161",
+ "address": "0xa78d8321b20c4ef90ecd72f2588aa985a4bdb684",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0xa78d8321b20c4ef90ecd72f2588aa985a4bdb684-1757710835027.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0xa78d8321b20c4ef90ecd72f2588aa985a4bdb684-1757710835027.png"
+ ],
+ "name": "Autonomi",
+ "symbol": "ANT",
+ "marketCap": "12551149.011426415098319624",
+ "price": "0.03677332878221718571",
+ "priceChange24hPercent": "-1.26",
+ "volume24h": "10928.353636",
+ "communityRecognized": true,
+ "key": "evm--42161:0xa78d8321b20c4ef90ecd72f2588aa985a4bdb684",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Arbitrum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--42161",
+ "address": "0x12c2de43878fb1a06c1ead481f11e0c693a719c7",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x12c2de43878fb1a06c1ead481f11e0c693a719c7-1787839253326.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x12c2de43878fb1a06c1ead481f11e0c693a719c7-1787839253326.png"
+ ],
+ "name": "DGrid AI",
+ "symbol": "DGAI",
+ "marketCap": "138776.650429957423403476",
+ "price": "0.76042051299130562656",
+ "priceChange24hPercent": "-3.29",
+ "volume24h": "24923.60714754198",
+ "communityRecognized": false,
+ "key": "evm--42161:0x12c2de43878fb1a06c1ead481f11e0c693a719c7",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Arbitrum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--42161",
+ "address": "0x11e969e9b3f89cb16d686a03cd8508c9fc0361af",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x11e969e9b3f89cb16d686a03cd8508c9fc0361af-1722405600166.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x11e969e9b3f89cb16d686a03cd8508c9fc0361af-1722405600166.png"
+ ],
+ "name": "Axelar Wrapped LAVA",
+ "symbol": "LAVA",
+ "marketCap": "4008753.952315927471404755",
+ "price": "0.0198693598066631468",
+ "priceChange24hPercent": "3.47",
+ "volume24h": "69317.888040306403650972",
+ "communityRecognized": true,
+ "key": "evm--42161:0x11e969e9b3f89cb16d686a03cd8508c9fc0361af",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Arbitrum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--42161",
+ "address": "0x7189fb5b6504bbff6a852b13b7b82a3c118fdc27",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x7189fb5b6504bbff6a852b13b7b82a3c118fdc27-1725608700102.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x7189fb5b6504bbff6a852b13b7b82a3c118fdc27-1725608700102.png"
+ ],
+ "name": "ether.fi governance token",
+ "symbol": "ETHFI",
+ "marketCap": "4368951.962322253775535884",
+ "price": "0.58139539783106568428",
+ "priceChange24hPercent": "2.15",
+ "volume24h": "42543.642591590381828253",
+ "communityRecognized": true,
+ "key": "evm--42161:0x7189fb5b6504bbff6a852b13b7b82a3c118fdc27",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Arbitrum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--42161",
+ "address": "0xc87b37a581ec3257b734886d9d3a581f5a9d056c",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0xc87b37a581ec3257b734886d9d3a581f5a9d056c-1721965710424.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0xc87b37a581ec3257b734886d9d3a581f5a9d056c-1721965710424.png"
+ ],
+ "name": "Aethir Token",
+ "symbol": "ATH",
+ "marketCap": "16503708.171423844176464432",
+ "price": "0.00485709691084718493",
+ "priceChange24hPercent": "4.42",
+ "volume24h": "55052.66581009133455152",
+ "communityRecognized": true,
+ "key": "evm--42161:0xc87b37a581ec3257b734886d9d3a581f5a9d056c",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Arbitrum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--42161",
+ "address": "0x7f9fbf9bdd3f4105c478b996b648fe6e828a1e98",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x7f9fbf9bdd3f4105c478b996b648fe6e828a1e98-1757710890936.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x7f9fbf9bdd3f4105c478b996b648fe6e828a1e98-1757710890936.png"
+ ],
+ "name": "ApeCoin",
+ "symbol": "APE",
+ "marketCap": "1255447.805854874312494248",
+ "price": "0.14468481827062816675",
+ "priceChange24hPercent": "1.79",
+ "volume24h": "40735.352243110147208114",
+ "communityRecognized": false,
+ "key": "evm--42161:0x7f9fbf9bdd3f4105c478b996b648fe6e828a1e98",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Arbitrum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--42161",
+ "address": "0x25118290e6a5f4139381d072181157035864099d",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x25118290e6a5f4139381d072181157035864099d-1757710924947.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x25118290e6a5f4139381d072181157035864099d-1757710924947.png"
+ ],
+ "name": "RAIN",
+ "symbol": "RAIN",
+ "marketCap": "11541089900.561632556761781838",
+ "price": "0.01627318307034835231",
+ "priceChange24hPercent": "-2.31",
+ "volume24h": "1134443.652039829437488924",
+ "communityRecognized": true,
+ "key": "evm--42161:0x25118290e6a5f4139381d072181157035864099d",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Arbitrum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--42161",
+ "address": "0x1b896893dfc86bb67cf57767298b9073d2c1ba2c",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x1b896893dfc86bb67cf57767298b9073d2c1ba2c-1724912307590.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x1b896893dfc86bb67cf57767298b9073d2c1ba2c-1724912307590.png"
+ ],
+ "name": "PancakeSwap Token",
+ "symbol": "Cake",
+ "marketCap": "369627.789656010860936126",
+ "price": "2.2308467702452560381",
+ "priceChange24hPercent": "2.29",
+ "volume24h": "78077.751834374965239337",
+ "communityRecognized": true,
+ "key": "evm--42161:0x1b896893dfc86bb67cf57767298b9073d2c1ba2c",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Arbitrum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--42161",
+ "address": "0x6985884c4392d348587b19cb9eaaf157f13271cd",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x6985884c4392d348587b19cb9eaaf157f13271cd-1721965710424.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x6985884c4392d348587b19cb9eaaf157f13271cd-1721965710424.png"
+ ],
+ "name": "LayerZero",
+ "symbol": "ZRO",
+ "marketCap": "30273537.014651866762832537",
+ "price": "1.13443141892464951896",
+ "priceChange24hPercent": "4.85",
+ "volume24h": "101352.458239946686887181",
+ "communityRecognized": true,
+ "key": "evm--42161:0x6985884c4392d348587b19cb9eaaf157f13271cd",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Arbitrum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--42161",
+ "address": "0x11cdb42b0eb46d95f990bedd4695a6e3fa034978",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x11cdb42b0eb46d95f990bedd4695a6e3fa034978.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x11cdb42b0eb46d95f990bedd4695a6e3fa034978.png"
+ ],
+ "name": "Curve DAO Token",
+ "symbol": "CRV",
+ "marketCap": "7023690.648108841229641943",
+ "price": "0.36256763767456545319",
+ "priceChange24hPercent": "-6.37",
+ "volume24h": "148585.189506728043972942",
+ "communityRecognized": true,
+ "key": "evm--42161:0x11cdb42b0eb46d95f990bedd4695a6e3fa034978",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Arbitrum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--42161",
+ "address": "0xfa7f8980b0f1e64a2062791cc3b0871572f1f7f0",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0xfa7f8980b0f1e64a2062791cc3b0871572f1f7f0.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0xfa7f8980b0f1e64a2062791cc3b0871572f1f7f0.png"
+ ],
+ "name": "Uniswap",
+ "symbol": "UNI",
+ "marketCap": "7198139.162124000350955165",
+ "price": "6.975687114045285319",
+ "priceChange24hPercent": "-0.27",
+ "volume24h": "382252.319007389896350143",
+ "communityRecognized": true,
+ "key": "evm--42161:0xfa7f8980b0f1e64a2062791cc3b0871572f1f7f0",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Arbitrum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--42161",
+ "address": "0x4e200fe2f3efb977d5fd9c430a41531fb04d97b8",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x4e200fe2f3efb977d5fd9c430a41531fb04d97b8-1724720313181.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x4e200fe2f3efb977d5fd9c430a41531fb04d97b8-1724720313181.png"
+ ],
+ "name": "Orderly Network",
+ "symbol": "ORDER",
+ "marketCap": "395338.853829734703871074",
+ "price": "0.03388351962239447458",
+ "priceChange24hPercent": "-1.85",
+ "volume24h": "7666.894736254276206",
+ "communityRecognized": true,
+ "key": "evm--42161:0x4e200fe2f3efb977d5fd9c430a41531fb04d97b8",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Arbitrum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--42161",
+ "address": "0xf197ffc28c23e0309b5559e7a166f2c6164c80aa",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0xf197ffc28c23e0309b5559e7a166f2c6164c80aa-1757710815737.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0xf197ffc28c23e0309b5559e7a166f2c6164c80aa-1757710815737.png"
+ ],
+ "name": "MXNB",
+ "symbol": "MXNB",
+ "marketCap": "1790982.539831641043253445",
+ "price": "0.05924019341647328138",
+ "priceChange24hPercent": "-0.06",
+ "volume24h": "11588.05053528469",
+ "communityRecognized": true,
+ "key": "evm--42161:0xf197ffc28c23e0309b5559e7a166f2c6164c80aa",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Arbitrum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--42161",
+ "address": "0x70f2eadf1ca1969ff42b0c78e9da519e8937cbaf",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x70f2eadf1ca1969ff42b0c78e9da519e8937cbaf-1778155221753.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x70f2eadf1ca1969ff42b0c78e9da519e8937cbaf-1778155221753.png"
+ ],
+ "name": "Edge",
+ "symbol": "EDGE",
+ "marketCap": "77546.748703124826188717",
+ "price": "0.595207182833753024",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": false,
+ "key": "evm--42161:0x70f2eadf1ca1969ff42b0c78e9da519e8937cbaf",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Arbitrum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--42161",
+ "address": "0x3212dc0f8c834e4de893532d27cc9b6001684db0",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x3212dc0f8c834e4de893532d27cc9b6001684db0-1727935200067.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x3212dc0f8c834e4de893532d27cc9b6001684db0-1727935200067.png"
+ ],
+ "name": "Pear",
+ "symbol": "PEAR",
+ "marketCap": "6626424.598038379813811556",
+ "price": "0.0135427491609043494",
+ "priceChange24hPercent": "0.56",
+ "volume24h": "31791.67409942359112446",
+ "communityRecognized": false,
+ "key": "evm--42161:0x3212dc0f8c834e4de893532d27cc9b6001684db0",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Arbitrum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--42161",
+ "address": "0x539bde0d7dbd336b79148aa742883198bbf60342",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x539bde0d7dbd336b79148aa742883198bbf60342.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x539bde0d7dbd336b79148aa742883198bbf60342.png"
+ ],
+ "name": "MAGIC",
+ "symbol": "MAGIC",
+ "marketCap": "14452691.267626230854837321",
+ "price": "0.04609731363893508407",
+ "priceChange24hPercent": "-2.42",
+ "volume24h": "11227.916295510089701031",
+ "communityRecognized": true,
+ "key": "evm--42161:0x539bde0d7dbd336b79148aa742883198bbf60342",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Arbitrum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--42161",
+ "address": "0xfa38fa85186b721389b7051a60df1ad590a70ba3",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/4a563ac1c0cd1b7ed43429ee1ad5750a8ca22c0eaaa08d0427a8a86e8a2348f0",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/4a563ac1c0cd1b7ed43429ee1ad5750a8ca22c0eaaa08d0427a8a86e8a2348f0"
+ ],
+ "name": "First Deploy On Arbitrum",
+ "symbol": "FIRST",
+ "marketCap": "35095.849703212305470109",
+ "price": "0.00000035095849703212",
+ "priceChange24hPercent": "-17.75",
+ "volume24h": "2624.804711555109629587",
+ "communityRecognized": false,
+ "key": "evm--42161:0xfa38fa85186b721389b7051a60df1ad590a70ba3",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Arbitrum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--42161",
+ "address": "0x37a52a6da7b7e71c0da0b175b78687d5b040beea",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x37a52a6da7b7e71c0da0b175b78687d5b040beea-1788444135936.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x37a52a6da7b7e71c0da0b175b78687d5b040beea-1788444135936.png"
+ ],
+ "name": "Arbitration",
+ "symbol": "ARBITRATION",
+ "marketCap": "8459.636708484715868017",
+ "price": "0.00000845963670848472",
+ "priceChange24hPercent": "-25.17",
+ "volume24h": "919.09969139695181",
+ "communityRecognized": false,
+ "key": "evm--42161:0x37a52a6da7b7e71c0da0b175b78687d5b040beea",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Arbitrum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--42161",
+ "address": "0xe004f86692780ec2717ef402233fde9d23d654d8",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/001b4443aa4251ef1afd763fa2e5f4ac5e9650e5de92230c40b57b32250badeb",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/001b4443aa4251ef1afd763fa2e5f4ac5e9650e5de92230c40b57b32250badeb"
+ ],
+ "name": "Dylan Utility And Community Token",
+ "symbol": "DUCT",
+ "marketCap": "5322802.267597208374875373",
+ "price": "0.49285206181455633101",
+ "priceChange24hPercent": "-2.24",
+ "volume24h": "1780.070063",
+ "communityRecognized": false,
+ "key": "evm--42161:0xe004f86692780ec2717ef402233fde9d23d654d8",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Arbitrum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--42161",
+ "address": "0x46850ad61c2b7d64d08c9c754f45254596696984",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x46850ad61c2b7d64d08c9c754f45254596696984-1757710832422.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x46850ad61c2b7d64d08c9c754f45254596696984-1757710832422.png"
+ ],
+ "name": "PayPal USD",
+ "symbol": "PYUSD",
+ "marketCap": "330793069.043443156557180605",
+ "price": "1.00094379917013639327",
+ "priceChange24hPercent": "0.14",
+ "volume24h": "7218.78465219283100836",
+ "communityRecognized": true,
+ "key": "evm--42161:0x46850ad61c2b7d64d08c9c754f45254596696984",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Arbitrum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--42161",
+ "address": "0x1337420ded5adb9980cfc35f8f2b054ea86f8ab1",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x1337420ded5adb9980cfc35f8f2b054ea86f8ab1-1757710920821.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x1337420ded5adb9980cfc35f8f2b054ea86f8ab1-1757710920821.png"
+ ],
+ "name": "Subsquid",
+ "symbol": "SQD",
+ "marketCap": "45829594.199520642925710478",
+ "price": "0.0353538399622595066",
+ "priceChange24hPercent": "1.76",
+ "volume24h": "16786.285028782573597422",
+ "communityRecognized": true,
+ "key": "evm--42161:0x1337420ded5adb9980cfc35f8f2b054ea86f8ab1",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Arbitrum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--42161",
+ "address": "0x45d9831d8751b2325f3dbf48db748723726e1c8c",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x45d9831d8751b2325f3dbf48db748723726e1c8c-1729731600083.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x45d9831d8751b2325f3dbf48db748723726e1c8c-1729731600083.png"
+ ],
+ "name": "EverValueCoin",
+ "symbol": "EVA",
+ "marketCap": "788137490.195577935467959369",
+ "price": "42.90448085830819672131",
+ "priceChange24hPercent": "0",
+ "volume24h": "87019.35260362388466324",
+ "communityRecognized": false,
+ "key": "evm--42161:0x45d9831d8751b2325f3dbf48db748723726e1c8c",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Arbitrum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--42161",
+ "address": "0x13a7dedb7169a17be92b0e3c7c2315b46f4772b3",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x13a7dedb7169a17be92b0e3c7c2315b46f4772b3.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x13a7dedb7169a17be92b0e3c7c2315b46f4772b3.png"
+ ],
+ "name": "Boop",
+ "symbol": "Boop",
+ "marketCap": "1190538.473958257656273895",
+ "price": "0.00001195350529697295",
+ "priceChange24hPercent": "11.75",
+ "volume24h": "10310.93230941847832329",
+ "communityRecognized": false,
+ "key": "evm--42161:0x13a7dedb7169a17be92b0e3c7c2315b46f4772b3",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Arbitrum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--42161",
+ "address": "0x6efa9b8883dfb78fd75cd89d8474c44c3cbda469",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x6efa9b8883dfb78fd75cd89d8474c44c3cbda469-1757710918968.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x6efa9b8883dfb78fd75cd89d8474c44c3cbda469-1757710918968.png"
+ ],
+ "name": "DIA",
+ "symbol": "DIA",
+ "marketCap": "6465076.433496962284543805",
+ "price": "0.98808491522567703109",
+ "priceChange24hPercent": "-2.17",
+ "volume24h": "7176.83744206977",
+ "communityRecognized": false,
+ "key": "evm--42161:0x6efa9b8883dfb78fd75cd89d8474c44c3cbda469",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Arbitrum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--42161",
+ "address": "0xcafcd85d8ca7ad1e1c6f82f651fa15e33aefd07b",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0xcafcd85d8ca7ad1e1c6f82f651fa15e33aefd07b.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0xcafcd85d8ca7ad1e1c6f82f651fa15e33aefd07b.png"
+ ],
+ "name": "Wootrade Network",
+ "symbol": "WOO",
+ "marketCap": "5577920.384921111537235997",
+ "price": "0.01167521549125799348",
+ "priceChange24hPercent": "-1.35",
+ "volume24h": "10226.29710388270347382",
+ "communityRecognized": true,
+ "key": "evm--42161:0xcafcd85d8ca7ad1e1c6f82f651fa15e33aefd07b",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Arbitrum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--42161",
+ "address": "0x2ac2b254bc18cd4999f64773a966e4f4869c34ee",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x2ac2b254bc18cd4999f64773a966e4f4869c34ee.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x2ac2b254bc18cd4999f64773a966e4f4869c34ee.png"
+ ],
+ "name": "Penpie Token",
+ "symbol": "PNP",
+ "marketCap": "1905052.757956561115843216",
+ "price": "0.19788777604659666785",
+ "priceChange24hPercent": "0.73",
+ "volume24h": "1204.93447271314483867",
+ "communityRecognized": false,
+ "key": "evm--42161:0x2ac2b254bc18cd4999f64773a966e4f4869c34ee",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Arbitrum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--42161",
+ "address": "0x13ad51ed4f1b7e9dc168d8a00cb3f4ddd85efa60",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x13ad51ed4f1b7e9dc168d8a00cb3f4ddd85efa60.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x13ad51ed4f1b7e9dc168d8a00cb3f4ddd85efa60.png"
+ ],
+ "name": "Lido DAO Token",
+ "symbol": "LDO",
+ "marketCap": "642809.302583038521921132",
+ "price": "0.39202826763761491353",
+ "priceChange24hPercent": "-2.4",
+ "volume24h": "23757.655176761473497",
+ "communityRecognized": true,
+ "key": "evm--42161:0x13ad51ed4f1b7e9dc168d8a00cb3f4ddd85efa60",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Arbitrum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--42161",
+ "address": "0xec70dcb4a1efa46b8f2d97c310c9c4790ba5ffa8",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0xec70dcb4a1efa46b8f2d97c310c9c4790ba5ffa8.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0xec70dcb4a1efa46b8f2d97c310c9c4790ba5ffa8.png"
+ ],
+ "name": "Rocket Pool ETH",
+ "symbol": "rETH",
+ "marketCap": "12910584.693706639301067408",
+ "price": "2911.50391931770106431134",
+ "priceChange24hPercent": "0.07",
+ "volume24h": "11572.424598354541392774",
+ "communityRecognized": false,
+ "key": "evm--42161:0xec70dcb4a1efa46b8f2d97c310c9c4790ba5ffa8",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Arbitrum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--42161",
+ "address": "0xbfbcfe8873fe28dfa25f1099282b088d52bbad9c",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0xbfbcfe8873fe28dfa25f1099282b088d52bbad9c.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0xbfbcfe8873fe28dfa25f1099282b088d52bbad9c.png"
+ ],
+ "name": "Equilibria Token",
+ "symbol": "EQB",
+ "marketCap": "2729428.024320068755886178",
+ "price": "0.09044694690968462614",
+ "priceChange24hPercent": "5.68",
+ "volume24h": "10203.6079429206258929",
+ "communityRecognized": false,
+ "key": "evm--42161:0xbfbcfe8873fe28dfa25f1099282b088d52bbad9c",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Arbitrum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--42161",
+ "address": "0x092baadb7def4c3981454dd9c0a0d7ff07bcfc86",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x092baadb7def4c3981454dd9c0a0d7ff07bcfc86.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x092baadb7def4c3981454dd9c0a0d7ff07bcfc86.png"
+ ],
+ "name": "MOR",
+ "symbol": "MOR",
+ "marketCap": "5933377.061531320325789881",
+ "price": "1.94021021351471402509",
+ "priceChange24hPercent": "-0.9",
+ "volume24h": "14209.792066099576033882",
+ "communityRecognized": false,
+ "key": "evm--42161:0x092baadb7def4c3981454dd9c0a0d7ff07bcfc86",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Arbitrum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--42161",
+ "address": "0x764a726d9ced0433a8d7643335919deb03a9a935",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x764a726d9ced0433a8d7643335919deb03a9a935-1724832900070.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x764a726d9ced0433a8d7643335919deb03a9a935-1724832900070.png"
+ ],
+ "name": "Pocket Network",
+ "symbol": "POKT",
+ "marketCap": "26555.793594618378611066",
+ "price": "0.00768153721316803285",
+ "priceChange24hPercent": "-0.29",
+ "volume24h": "1208.28586325763055",
+ "communityRecognized": true,
+ "key": "evm--42161:0x764a726d9ced0433a8d7643335919deb03a9a935",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Arbitrum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--42161",
+ "address": "0x55ff62567f09906a85183b866df84bf599a4bf70",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x55ff62567f09906a85183b866df84bf599a4bf70.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x55ff62567f09906a85183b866df84bf599a4bf70.png"
+ ],
+ "name": "Kromatika",
+ "symbol": "KROM",
+ "marketCap": "33412.686827224405245415",
+ "price": "0.0045312108008592817",
+ "priceChange24hPercent": "-3.01",
+ "volume24h": "3249.944924512778059",
+ "communityRecognized": false,
+ "key": "evm--42161:0x55ff62567f09906a85183b866df84bf599a4bf70",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Arbitrum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--42161",
+ "address": "0x4cb9a7ae498cedcbb5eae9f25736ae7d428c9d66",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x4cb9a7ae498cedcbb5eae9f25736ae7d428c9d66.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x4cb9a7ae498cedcbb5eae9f25736ae7d428c9d66.png"
+ ],
+ "name": "Xai",
+ "symbol": "XAI",
+ "marketCap": "16169573.756369843788767525",
+ "price": "0.00769817242054811653",
+ "priceChange24hPercent": "-1.28",
+ "volume24h": "1833.70064083146478335",
+ "communityRecognized": true,
+ "key": "evm--42161:0x4cb9a7ae498cedcbb5eae9f25736ae7d428c9d66",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Arbitrum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--42161",
+ "address": "0xf63b14f5ee5574e3f337b2796bbdf6dcfb4e2cb7",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0xf63b14f5ee5574e3f337b2796bbdf6dcfb4e2cb7-1757710924947.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0xf63b14f5ee5574e3f337b2796bbdf6dcfb4e2cb7-1757710924947.png"
+ ],
+ "name": "KIP Protocol",
+ "symbol": "KIP",
+ "marketCap": "33832.297151902617541054",
+ "price": "0.00001724762640453732",
+ "priceChange24hPercent": "-23.6",
+ "volume24h": "698.591348496140216",
+ "communityRecognized": false,
+ "key": "evm--42161:0xf63b14f5ee5574e3f337b2796bbdf6dcfb4e2cb7",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Arbitrum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--42161",
+ "address": "0x61a1ff55c5216b636a294a07d77c6f4df10d3b56",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x61a1ff55c5216b636a294a07d77c6f4df10d3b56.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x61a1ff55c5216b636a294a07d77c6f4df10d3b56.png"
+ ],
+ "name": "ApeX Token",
+ "symbol": "APEX",
+ "marketCap": "63385881.3344087087072126",
+ "price": "0.26018367874096263835",
+ "priceChange24hPercent": "-0.18",
+ "volume24h": "3687.2172390612522579",
+ "communityRecognized": true,
+ "key": "evm--42161:0x61a1ff55c5216b636a294a07d77c6f4df10d3b56",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Arbitrum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--42161",
+ "address": "0x785c6ea7ed61cc6ba159aa4f8b48070eea3e814f",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x785c6ea7ed61cc6ba159aa4f8b48070eea3e814f-1788444037857.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x785c6ea7ed61cc6ba159aa4f8b48070eea3e814f-1788444037857.png"
+ ],
+ "name": "Arbitrum Original Name",
+ "symbol": "ARBITRATION",
+ "marketCap": "19474.959938896017705613",
+ "price": "0.00001949925703719026",
+ "priceChange24hPercent": "-9.3",
+ "volume24h": "1152.11243385658363",
+ "communityRecognized": false,
+ "key": "evm--42161:0x785c6ea7ed61cc6ba159aa4f8b48070eea3e814f",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Arbitrum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--42161",
+ "address": "0x155f0dd04424939368972f4e1838687d6a831151",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x155f0dd04424939368972f4e1838687d6a831151.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x155f0dd04424939368972f4e1838687d6a831151.png"
+ ],
+ "name": "ArbiDoge",
+ "symbol": "ADoge",
+ "marketCap": "1031643.187999704402282144",
+ "price": "0.00000012895562417791",
+ "priceChange24hPercent": "89.15",
+ "volume24h": "135934.744997610804099658",
+ "communityRecognized": false,
+ "key": "evm--42161:0x155f0dd04424939368972f4e1838687d6a831151",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Arbitrum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--42161",
+ "address": "0x3bfff63ad8e058efbe939509d2353f7f13c5fd7b",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/8e4435c150cb4ada78ce019a188015bf30ad60f917245c32ac6f69eb9aea8dde",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/8e4435c150cb4ada78ce019a188015bf30ad60f917245c32ac6f69eb9aea8dde"
+ ],
+ "name": "Hunter Patrick",
+ "symbol": "PATRICK",
+ "marketCap": "5332.021934298386117514",
+ "price": "0.00000533202193429839",
+ "priceChange24hPercent": "3.38",
+ "volume24h": "678.407354653263444",
+ "communityRecognized": false,
+ "key": "evm--42161:0x3bfff63ad8e058efbe939509d2353f7f13c5fd7b",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Arbitrum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--42161",
+ "address": "0xb0f66bdb39acbb043308eb9dbe78f5bb47ea5430",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0xb0f66bdb39acbb043308eb9dbe78f5bb47ea5430-1744643626274.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0xb0f66bdb39acbb043308eb9dbe78f5bb47ea5430-1744643626274.png"
+ ],
+ "name": "Hydranet",
+ "symbol": "HDN",
+ "marketCap": "9081087.066145545025868755",
+ "price": "0.044379113947125",
+ "priceChange24hPercent": "-22.06",
+ "volume24h": "13177.1123170786086546",
+ "communityRecognized": true,
+ "key": "evm--42161:0xb0f66bdb39acbb043308eb9dbe78f5bb47ea5430",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Arbitrum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--42161",
+ "address": "0xc08cd26474722ce93f4d0c34d16201461c10aa8c",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0xc08cd26474722ce93f4d0c34d16201461c10aa8c-1728615600107.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0xc08cd26474722ce93f4d0c34d16201461c10aa8c-1728615600107.png"
+ ],
+ "name": "CARV",
+ "symbol": "CARV",
+ "marketCap": "5975453.973599458156404806",
+ "price": "0.03590759116894916672",
+ "priceChange24hPercent": "1.68",
+ "volume24h": "1183.7724603150653351",
+ "communityRecognized": true,
+ "key": "evm--42161:0xc08cd26474722ce93f4d0c34d16201461c10aa8c",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Arbitrum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--42161",
+ "address": "0x25d887ce7a35172c62febfd67a1856f20faebb00",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x25d887ce7a35172c62febfd67a1856f20faebb00.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x25d887ce7a35172c62febfd67a1856f20faebb00.png"
+ ],
+ "name": "Pepe",
+ "symbol": "PEPE",
+ "marketCap": "489129.802625327578546894",
+ "price": "0.00000358107477298656",
+ "priceChange24hPercent": "0.13",
+ "volume24h": "820.24722719262504897",
+ "communityRecognized": true,
+ "key": "evm--42161:0x25d887ce7a35172c62febfd67a1856f20faebb00",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Arbitrum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--42161",
+ "address": "0x38f9bf9dce51833ec7f03c9dc218197999999999",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x38f9bf9dce51833ec7f03c9dc218197999999999-1725527883668.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x38f9bf9dce51833ec7f03c9dc218197999999999-1725527883668.png"
+ ],
+ "name": "Nya",
+ "symbol": "NYA",
+ "marketCap": "98766.184402125354228878",
+ "price": "0.00000005279361214116",
+ "priceChange24hPercent": "0.45",
+ "volume24h": "683.05643768515029",
+ "communityRecognized": false,
+ "key": "evm--42161:0x38f9bf9dce51833ec7f03c9dc218197999999999",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Arbitrum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--42161",
+ "address": "0x4a24b101728e07a52053c13fb4db2bcf490cabc3",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x4a24b101728e07a52053c13fb4db2bcf490cabc3-1731821400042.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x4a24b101728e07a52053c13fb4db2bcf490cabc3-1731821400042.png"
+ ],
+ "name": "Arbius",
+ "symbol": "AIUS",
+ "marketCap": "93716.589492248411611092",
+ "price": "0.29741762004007734539",
+ "priceChange24hPercent": "-2.94",
+ "volume24h": "562.50878918255861",
+ "communityRecognized": false,
+ "key": "evm--42161:0x4a24b101728e07a52053c13fb4db2bcf490cabc3",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Arbitrum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--42161",
+ "address": "0x06e90a57d1ece8752d6ce92d1ad348ead5eae4f4",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x06e90a57d1ece8752d6ce92d1ad348ead5eae4f4-1721965710424.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x06e90a57d1ece8752d6ce92d1ad348ead5eae4f4-1721965710424.png"
+ ],
+ "name": "Real Smurf Cat",
+ "symbol": "шайлушай",
+ "marketCap": "7218.098663220908479347",
+ "price": "0.00000521708932321159",
+ "priceChange24hPercent": "-4.26",
+ "volume24h": "866.390909815153964",
+ "communityRecognized": false,
+ "key": "evm--42161:0x06e90a57d1ece8752d6ce92d1ad348ead5eae4f4",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Arbitrum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--42161",
+ "address": "0xd74f5255d557944cf7dd0e45ff521520002d5748",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0xd74f5255d557944cf7dd0e45ff521520002d5748.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0xd74f5255d557944cf7dd0e45ff521520002d5748.png"
+ ],
+ "name": "Sperax USD",
+ "symbol": "USDs",
+ "marketCap": "514695.225822091205015705",
+ "price": "0.9996161638973387688",
+ "priceChange24hPercent": "0.02",
+ "volume24h": "560.714359282762164908",
+ "communityRecognized": false,
+ "key": "evm--42161:0xd74f5255d557944cf7dd0e45ff521520002d5748",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Arbitrum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--42161",
+ "address": "0x3082cc23568ea640225c2467653db90e9250aaa0",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x3082cc23568ea640225c2467653db90e9250aaa0.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x3082cc23568ea640225c2467653db90e9250aaa0.png"
+ ],
+ "name": "Radiant",
+ "symbol": "RDNT",
+ "marketCap": "501016.269886953557180701",
+ "price": "0.00051932860140373297",
+ "priceChange24hPercent": "0.08",
+ "volume24h": "2115.393419769690675355",
+ "communityRecognized": false,
+ "key": "evm--42161:0x3082cc23568ea640225c2467653db90e9250aaa0",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Arbitrum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--42161",
+ "address": "0x6beadfcc25f6bc71c158a4bff85bf2f1746d2ca7",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x6beadfcc25f6bc71c158a4bff85bf2f1746d2ca7-1787234431476.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x6beadfcc25f6bc71c158a4bff85bf2f1746d2ca7-1787234431476.png"
+ ],
+ "name": "Arbitrum Dog",
+ "symbol": "MILES",
+ "marketCap": "66804.475191978796128863",
+ "price": "0.00006883627430631028",
+ "priceChange24hPercent": "-14.42",
+ "volume24h": "11916.11769425740413464",
+ "communityRecognized": false,
+ "key": "evm--42161:0x6beadfcc25f6bc71c158a4bff85bf2f1746d2ca7",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Arbitrum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--42161",
+ "address": "0x55279f3c138521b0395bc8b76d123e94f1d935b2",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x55279f3c138521b0395bc8b76d123e94f1d935b2-1777896016692.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x55279f3c138521b0395bc8b76d123e94f1d935b2-1777896016692.png"
+ ],
+ "name": "BarkX Token",
+ "symbol": "BARKX",
+ "marketCap": "389124980.196245313336663946",
+ "price": "0.38912886781030959124",
+ "priceChange24hPercent": "0.07",
+ "volume24h": "1968.39397935333",
+ "communityRecognized": false,
+ "key": "evm--42161:0x55279f3c138521b0395bc8b76d123e94f1d935b2",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Arbitrum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--42161",
+ "address": "0x21dd43ae7e10c013a20fddd5a5d632bff340e96b",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x21dd43ae7e10c013a20fddd5a5d632bff340e96b-1788444023595.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x21dd43ae7e10c013a20fddd5a5d632bff340e96b-1788444023595.png"
+ ],
+ "name": "rainbow kitty",
+ "symbol": "KITTY",
+ "marketCap": "29770.755618654212230435",
+ "price": "0.00002977075561865421",
+ "priceChange24hPercent": "-36.57",
+ "volume24h": "3209.9812303034818799",
+ "communityRecognized": false,
+ "key": "evm--42161:0x21dd43ae7e10c013a20fddd5a5d632bff340e96b",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Arbitrum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--42161",
+ "address": "0x8d9ba570d6cb60c7e3e0f31343efe75ab8e65fb1",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x8d9ba570d6cb60c7e3e0f31343efe75ab8e65fb1.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x8d9ba570d6cb60c7e3e0f31343efe75ab8e65fb1.png"
+ ],
+ "name": "Governance OHM",
+ "symbol": "gOHM",
+ "marketCap": "2131361.512840803789728365",
+ "price": "5416.02832619891149335995",
+ "priceChange24hPercent": "-0.21",
+ "volume24h": "858.54785705585592",
+ "communityRecognized": false,
+ "key": "evm--42161:0x8d9ba570d6cb60c7e3e0f31343efe75ab8e65fb1",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Arbitrum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--42161",
+ "address": "0x4974e700f1deb8a6825a9bd87347a53d46378304",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x4974e700f1deb8a6825a9bd87347a53d46378304-1788444018543.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x4974e700f1deb8a6825a9bd87347a53d46378304-1788444018543.png"
+ ],
+ "name": "ArbiNYAN",
+ "symbol": "NYAN",
+ "marketCap": "36357.992613942747863931",
+ "price": "0.00003635799261394275",
+ "priceChange24hPercent": "-34.93",
+ "volume24h": "3599.6197441742306549",
+ "communityRecognized": false,
+ "key": "evm--42161:0x4974e700f1deb8a6825a9bd87347a53d46378304",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Arbitrum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--42161",
+ "address": "0x35ca1e5a9b1c09fa542fa18d1ba4d61c8edff852",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x35ca1e5a9b1c09fa542fa18d1ba4d61c8edff852.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x35ca1e5a9b1c09fa542fa18d1ba4d61c8edff852.png"
+ ],
+ "name": "Schrodi",
+ "symbol": "SCHRODI",
+ "marketCap": "93584.657466389675681009",
+ "price": "0.00238845434249565232",
+ "priceChange24hPercent": "2.06",
+ "volume24h": "998.5936192864862175",
+ "communityRecognized": false,
+ "key": "evm--42161:0x35ca1e5a9b1c09fa542fa18d1ba4d61c8edff852",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Arbitrum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--42161",
+ "address": "0x02f92800f57bcd74066f5709f1daa1a4302df875",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x02f92800f57bcd74066f5709f1daa1a4302df875-1734142549057.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x02f92800f57bcd74066f5709f1daa1a4302df875-1734142549057.png"
+ ],
+ "name": "Peapods",
+ "symbol": "PEAS",
+ "marketCap": "852835.393139048419156737",
+ "price": "2.06009093050198672783",
+ "priceChange24hPercent": "-1.75",
+ "volume24h": "3101.614476807563088",
+ "communityRecognized": false,
+ "key": "evm--42161:0x02f92800f57bcd74066f5709f1daa1a4302df875",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Arbitrum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--42161",
+ "address": "0x7b3ee24b4fbf4ec443058f88957ddf8fc51070fd",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x7b3ee24b4fbf4ec443058f88957ddf8fc51070fd-1788444154257.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x7b3ee24b4fbf4ec443058f88957ddf8fc51070fd-1788444154257.png"
+ ],
+ "name": "llamatrum",
+ "symbol": "LLAMATRUM",
+ "marketCap": "23568.11602669789116352",
+ "price": "0.00002356811602669789",
+ "priceChange24hPercent": "-8.27",
+ "volume24h": "4265.8702320091791628",
+ "communityRecognized": false,
+ "key": "evm--42161:0x7b3ee24b4fbf4ec443058f88957ddf8fc51070fd",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Arbitrum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--42161",
+ "address": "0xd7a892f28dedc74e6b7b33f93be08abfc394a360",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0xd7a892f28dedc74e6b7b33f93be08abfc394a360.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0xd7a892f28dedc74e6b7b33f93be08abfc394a360.png"
+ ],
+ "name": "Crypto Index Pool",
+ "symbol": "CIP",
+ "marketCap": "105073.649018303284356081",
+ "price": "0.01050736490183032844",
+ "priceChange24hPercent": "-8.1",
+ "volume24h": "1803.3920885233232703",
+ "communityRecognized": false,
+ "key": "evm--42161:0xd7a892f28dedc74e6b7b33f93be08abfc394a360",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Arbitrum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--42161",
+ "address": "0x1b0b39772b9f5d36700cf6269ec5c901c357fe0a",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x1b0b39772b9f5d36700cf6269ec5c901c357fe0a-1788444143896.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x1b0b39772b9f5d36700cf6269ec5c901c357fe0a-1788444143896.png"
+ ],
+ "name": "Arbitrum Cat",
+ "symbol": "NOLA",
+ "marketCap": "11305.635173943647500484",
+ "price": "0.00001172175462606889",
+ "priceChange24hPercent": "2.27",
+ "volume24h": "739.873186257157992",
+ "communityRecognized": false,
+ "key": "evm--42161:0x1b0b39772b9f5d36700cf6269ec5c901c357fe0a",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Arbitrum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--42161",
+ "address": "0xbfc6620459762a6e485ebf1cf7e532e06253b62f",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0xbfc6620459762a6e485ebf1cf7e532e06253b62f-1758888031702.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0xbfc6620459762a6e485ebf1cf7e532e06253b62f-1758888031702.png"
+ ],
+ "name": "DAOcademy",
+ "symbol": "BURN",
+ "marketCap": "164423726.397815114031787121",
+ "price": "0.16442372751655939325",
+ "priceChange24hPercent": "-8.68",
+ "volume24h": "6339.067265",
+ "communityRecognized": false,
+ "key": "evm--42161:0xbfc6620459762a6e485ebf1cf7e532e06253b62f",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Arbitrum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--42161",
+ "address": "0xa057bf62b7760ae11d782dab5e081728bcda7017",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0xa057bf62b7760ae11d782dab5e081728bcda7017-1758888114809.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0xa057bf62b7760ae11d782dab5e081728bcda7017-1758888114809.png"
+ ],
+ "name": "TMX",
+ "symbol": "TMX",
+ "marketCap": "20186186.697454088923654171",
+ "price": "1.00930933487270444618",
+ "priceChange24hPercent": "-18.94",
+ "volume24h": "1946.5155699047",
+ "communityRecognized": false,
+ "key": "evm--42161:0xa057bf62b7760ae11d782dab5e081728bcda7017",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Arbitrum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--42161",
+ "address": "0x46777c76dbbe40fabb2aab99e33ce20058e76c59",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x46777c76dbbe40fabb2aab99e33ce20058e76c59-1757710811333.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x46777c76dbbe40fabb2aab99e33ce20058e76c59-1757710811333.png"
+ ],
+ "name": "Layer3",
+ "symbol": "L3",
+ "marketCap": "6412.084032053902711861",
+ "price": "0.00350028296654304905",
+ "priceChange24hPercent": "-5.09",
+ "volume24h": "1731.451103539445006485",
+ "communityRecognized": true,
+ "key": "evm--42161:0x46777c76dbbe40fabb2aab99e33ce20058e76c59",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Arbitrum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--42161",
+ "address": "0x5144443dabdaa076a215364f7d55f261dcae66cb",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x5144443dabdaa076a215364f7d55f261dcae66cb-1788444143896.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x5144443dabdaa076a215364f7d55f261dcae66cb-1788444143896.png"
+ ],
+ "name": "KISUNE",
+ "symbol": "KISUNE",
+ "marketCap": "15837.302610505766162991",
+ "price": "0.00001589381807545232",
+ "priceChange24hPercent": "-9.1",
+ "volume24h": "1713.887729681037484681",
+ "communityRecognized": false,
+ "key": "evm--42161:0x5144443dabdaa076a215364f7d55f261dcae66cb",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Arbitrum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--42161",
+ "address": "0xd77b108d4f6cefaa0cae9506a934e825becca46e",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0xd77b108d4f6cefaa0cae9506a934e825becca46e.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0xd77b108d4f6cefaa0cae9506a934e825becca46e.png"
+ ],
+ "name": "WINR",
+ "symbol": "WINR",
+ "marketCap": "2217302.11898435084970524",
+ "price": "0.00311085214646158907",
+ "priceChange24hPercent": "7.99",
+ "volume24h": "11537.216698658236936572",
+ "communityRecognized": false,
+ "key": "evm--42161:0xd77b108d4f6cefaa0cae9506a934e825becca46e",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Arbitrum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--42161",
+ "address": "0x07ecf4448d9a9e5538e9ec4f99584c34f5f59e1f",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/8356346777831140edc501f7c039ec2abceb49e4ee845cb86f3053a51d691863",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/8356346777831140edc501f7c039ec2abceb49e4ee845cb86f3053a51d691863"
+ ],
+ "name": "Arbiters",
+ "symbol": "Arbiters",
+ "marketCap": "9618.07275095134966631",
+ "price": "0.00000961807275095135",
+ "priceChange24hPercent": "3.8",
+ "volume24h": "746.86260649183641",
+ "communityRecognized": false,
+ "key": "evm--42161:0x07ecf4448d9a9e5538e9ec4f99584c34f5f59e1f",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Arbitrum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--42161",
+ "address": "0x2416092f143378750bb29b79ed961ab195cceea5",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x2416092f143378750bb29b79ed961ab195cceea5.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x2416092f143378750bb29b79ed961ab195cceea5.png"
+ ],
+ "name": "Renzo Restaked ETH",
+ "symbol": "ezETH",
+ "marketCap": "4764363.742381796879957607",
+ "price": "2693.63179284874163709004",
+ "priceChange24hPercent": "-0.58",
+ "volume24h": "8846.2634504628320401",
+ "communityRecognized": false,
+ "key": "evm--42161:0x2416092f143378750bb29b79ed961ab195cceea5",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Arbitrum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--42161",
+ "address": "0x37d5b1379f32c3d99b82e65fe71a9e498fe02a97",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/e5d074215722a4dfe148173744b349bcfb10f04ef9d6e0c9b70f00f71e1ab63f",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/e5d074215722a4dfe148173744b349bcfb10f04ef9d6e0c9b70f00f71e1ab63f"
+ ],
+ "name": "RickRoll",
+ "symbol": "RICKROLL",
+ "marketCap": "12171.918656302774044634",
+ "price": "0.00001217191865630277",
+ "priceChange24hPercent": "-37.74",
+ "volume24h": "2527.962205836508282",
+ "communityRecognized": false,
+ "key": "evm--42161:0x37d5b1379f32c3d99b82e65fe71a9e498fe02a97",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Arbitrum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--42161",
+ "address": "0x40461291347e1ecbb09499f3371d3f17f10d7159",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x40461291347e1ecbb09499f3371d3f17f10d7159-1779763671184.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x40461291347e1ecbb09499f3371d3f17f10d7159-1779763671184.png"
+ ],
+ "name": "XAUt0",
+ "symbol": "XAUt0",
+ "marketCap": "587901.935490545729166666",
+ "price": "4435.04599291666666666667",
+ "priceChange24hPercent": "0.83",
+ "volume24h": "3160.94552656077",
+ "communityRecognized": true,
+ "key": "evm--42161:0x40461291347e1ecbb09499f3371d3f17f10d7159",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Arbitrum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--42161",
+ "address": "0x3ed03e95dd894235090b3d4a49e0c3239edce59e",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x3ed03e95dd894235090b3d4a49e0c3239edce59e-1721965710424.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x3ed03e95dd894235090b3d4a49e0c3239edce59e-1721965710424.png"
+ ],
+ "name": "MYRC",
+ "symbol": "MYRC",
+ "marketCap": "1009559.105785801499943332",
+ "price": "0.24625863458842758628",
+ "priceChange24hPercent": "-0.21",
+ "volume24h": "11975.93768484153",
+ "communityRecognized": false,
+ "key": "evm--42161:0x3ed03e95dd894235090b3d4a49e0c3239edce59e",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Arbitrum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--42161",
+ "address": "0x1d1498166ddceee616a6d99868e1e0677300056f",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x1d1498166ddceee616a6d99868e1e0677300056f.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x1d1498166ddceee616a6d99868e1e0677300056f.png"
+ ],
+ "name": "xSpace Token",
+ "symbol": "xSPACE",
+ "marketCap": "22676.967330487382401474",
+ "price": "0.00185316579985400093",
+ "priceChange24hPercent": "-7.68",
+ "volume24h": "826.5066687675538756",
+ "communityRecognized": false,
+ "key": "evm--42161:0x1d1498166ddceee616a6d99868e1e0677300056f",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Arbitrum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--42161",
+ "address": "0xff7f8f301f7a706e3cfd3d2275f5dc0b9ee8009b",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0xff7f8f301f7a706e3cfd3d2275f5dc0b9ee8009b-1762171246720.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0xff7f8f301f7a706e3cfd3d2275f5dc0b9ee8009b-1762171246720.png"
+ ],
+ "name": "Folks Finance",
+ "symbol": "FOLKS",
+ "marketCap": "29028.994156739151370399",
+ "price": "2.00088373189560330351",
+ "priceChange24hPercent": "1.19",
+ "volume24h": "856.224665",
+ "communityRecognized": true,
+ "key": "evm--42161:0xff7f8f301f7a706e3cfd3d2275f5dc0b9ee8009b",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Arbitrum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--42161",
+ "address": "0x09199d9a5f4448d0848e4395d065e1ad9c4a1f74",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x09199d9a5f4448d0848e4395d065e1ad9c4a1f74.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x09199d9a5f4448d0848e4395d065e1ad9c4a1f74.png"
+ ],
+ "name": "Bonk",
+ "symbol": "Bonk",
+ "marketCap": "41119.356963848175023069",
+ "price": "0.00000314195512469096",
+ "priceChange24hPercent": "0.49",
+ "volume24h": "531.884897621274952",
+ "communityRecognized": true,
+ "key": "evm--42161:0x09199d9a5f4448d0848e4395d065e1ad9c4a1f74",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Arbitrum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--42161",
+ "address": "0x6694340fc020c5e6b96567843da2df01b2ce1eb6",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x6694340fc020c5e6b96567843da2df01b2ce1eb6.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x6694340fc020c5e6b96567843da2df01b2ce1eb6.png"
+ ],
+ "name": "StargateToken",
+ "symbol": "STG",
+ "marketCap": "1755611.398811649906572112",
+ "price": "0.1633803765089336477",
+ "priceChange24hPercent": "-3.12",
+ "volume24h": "2207.340438640139828627",
+ "communityRecognized": true,
+ "key": "evm--42161:0x6694340fc020c5e6b96567843da2df01b2ce1eb6",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Arbitrum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--42161",
+ "address": "0xf1a88250532a4a66a2420a8cbb434da82e1e2ca1",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0xf1a88250532a4a66a2420a8cbb434da82e1e2ca1-1757710819094.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0xf1a88250532a4a66a2420a8cbb434da82e1e2ca1-1757710819094.png"
+ ],
+ "name": "agETHWrapper",
+ "symbol": "agETH",
+ "marketCap": "114898.314267213264376304",
+ "price": "2550.92901786897159950072",
+ "priceChange24hPercent": "0.65",
+ "volume24h": "710.0739557420964733",
+ "communityRecognized": false,
+ "key": "evm--42161:0xf1a88250532a4a66a2420a8cbb434da82e1e2ca1",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Arbitrum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--42161",
+ "address": "0x354a6da3fcde098f8389cad84b0182725c6c91de",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x354a6da3fcde098f8389cad84b0182725c6c91de.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x354a6da3fcde098f8389cad84b0182725c6c91de.png"
+ ],
+ "name": "Compound",
+ "symbol": "COMP",
+ "marketCap": "194242.572696285191427466",
+ "price": "21.01546896192997093494",
+ "priceChange24hPercent": "4.33",
+ "volume24h": "598.41923930963024421",
+ "communityRecognized": true,
+ "key": "evm--42161:0x354a6da3fcde098f8389cad84b0182725c6c91de",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Arbitrum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--42161",
+ "address": "0x88a269df8fe7f53e590c561954c52fccc8ec0cfb",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x88a269df8fe7f53e590c561954c52fccc8ec0cfb.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x88a269df8fe7f53e590c561954c52fccc8ec0cfb.png"
+ ],
+ "name": "Ninja Squad Token",
+ "symbol": "NST",
+ "marketCap": "5033779.170913142883192011",
+ "price": "1.34581253099304675466",
+ "priceChange24hPercent": "-2.7",
+ "volume24h": "11596.8009166665543374",
+ "communityRecognized": true,
+ "key": "evm--42161:0x88a269df8fe7f53e590c561954c52fccc8ec0cfb",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Arbitrum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--42161",
+ "address": "0x3d9907f9a368ad0a51be60f7da3b97cf940982d8",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x3d9907f9a368ad0a51be60f7da3b97cf940982d8.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x3d9907f9a368ad0a51be60f7da3b97cf940982d8.png"
+ ],
+ "name": "Camelot token",
+ "symbol": "GRAIL",
+ "marketCap": "1120713.632591532004884205",
+ "price": "41.74602062512149253293",
+ "priceChange24hPercent": "-3.34",
+ "volume24h": "4359.273714328568883916",
+ "communityRecognized": false,
+ "key": "evm--42161:0x3d9907f9a368ad0a51be60f7da3b97cf940982d8",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Arbitrum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--42161",
+ "address": "0x5e7d1e09146bf69e88975f279cee75b359da7606",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x5e7d1e09146bf69e88975f279cee75b359da7606-1788444002452.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x5e7d1e09146bf69e88975f279cee75b359da7606-1788444002452.png"
+ ],
+ "name": "Odyssey",
+ "symbol": "ODYSSEY",
+ "marketCap": "16583.012251186173873714",
+ "price": "0.00001658301225118617",
+ "priceChange24hPercent": "-21.69",
+ "volume24h": "740.73252063152089",
+ "communityRecognized": false,
+ "key": "evm--42161:0x5e7d1e09146bf69e88975f279cee75b359da7606",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Arbitrum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--42161",
+ "address": "0x31e22e11124c907eadc5248314c56f504bca70a1",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/667495fccd45b33585b0fc6e2bef89faeecf6a7f6e2955e75490b546623ad30c",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/667495fccd45b33585b0fc6e2bef89faeecf6a7f6e2955e75490b546623ad30c"
+ ],
+ "name": "Make Arbitrum Great Again",
+ "symbol": "MAGA",
+ "marketCap": "10799.952557556201676775",
+ "price": "0.00001081162495856033",
+ "priceChange24hPercent": "-1.93",
+ "volume24h": "700.30770918903296",
+ "communityRecognized": false,
+ "key": "evm--42161:0x31e22e11124c907eadc5248314c56f504bca70a1",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Arbitrum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--42161",
+ "address": "0x09e18590e8f76b6cf471b3cd75fe1a1a9d2b2c2b",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x09e18590e8f76b6cf471b3cd75fe1a1a9d2b2c2b.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x09e18590e8f76b6cf471b3cd75fe1a1a9d2b2c2b.png"
+ ],
+ "name": "AIDOGE",
+ "symbol": "AIDOGE",
+ "marketCap": "2042101.293381646181995312",
+ "price": "0.00000000001170554466",
+ "priceChange24hPercent": "-0.92",
+ "volume24h": "2403.632965887296591279",
+ "communityRecognized": true,
+ "key": "evm--42161:0x09e18590e8f76b6cf471b3cd75fe1a1a9d2b2c2b",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Arbitrum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--42161",
+ "address": "0x32a996b4f9c464b76faf0c4991b91c4aa18459f9",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x32a996b4f9c464b76faf0c4991b91c4aa18459f9-1787234418964.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x32a996b4f9c464b76faf0c4991b91c4aa18459f9-1787234418964.png"
+ ],
+ "name": "Arbitrum Pepe",
+ "symbol": "ARBI",
+ "marketCap": "19033.230969695089560474",
+ "price": "0.00001948149935253948",
+ "priceChange24hPercent": "-18.3",
+ "volume24h": "1205.55951189373718254",
+ "communityRecognized": false,
+ "key": "evm--42161:0x32a996b4f9c464b76faf0c4991b91c4aa18459f9",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Arbitrum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--42161",
+ "address": "0xd3af44bde72976c8e930b73c0228609434536037",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0xd3af44bde72976c8e930b73c0228609434536037-1757710924947.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0xd3af44bde72976c8e930b73c0228609434536037-1757710924947.png"
+ ],
+ "name": "Nola the Arb cat",
+ "symbol": "NOLA",
+ "marketCap": "17659.50976129998868419",
+ "price": "0.00000004197748879531",
+ "priceChange24hPercent": "15.95",
+ "volume24h": "841.4013134725064928",
+ "communityRecognized": false,
+ "key": "evm--42161:0xd3af44bde72976c8e930b73c0228609434536037",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Arbitrum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--42161",
+ "address": "0x4f604735c1cf31399c6e711d5962b2b3e0225ad3",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x4f604735c1cf31399c6e711d5962b2b3e0225ad3.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x4f604735c1cf31399c6e711d5962b2b3e0225ad3.png"
+ ],
+ "name": "Glo Dollar",
+ "symbol": "USDGLO",
+ "marketCap": "69610.099693059236487201",
+ "price": "0.99731206445390933569",
+ "priceChange24hPercent": "0",
+ "volume24h": "570.331086",
+ "communityRecognized": false,
+ "key": "evm--42161:0x4f604735c1cf31399c6e711d5962b2b3e0225ad3",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Arbitrum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--42161",
+ "address": "0x7e7a7c916c19a45769f6bdaf91087f93c6c12f78",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x7e7a7c916c19a45769f6bdaf91087f93c6c12f78-1727315100322.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x7e7a7c916c19a45769f6bdaf91087f93c6c12f78-1727315100322.png"
+ ],
+ "name": "Eigenpie",
+ "symbol": "EGP",
+ "marketCap": "176698.545652822490926718",
+ "price": "0.03019960205894982928",
+ "priceChange24hPercent": "-5.89",
+ "volume24h": "636.88315113556541517",
+ "communityRecognized": false,
+ "key": "evm--42161:0x7e7a7c916c19a45769f6bdaf91087f93c6c12f78",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Arbitrum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--42161",
+ "address": "0xcb8b5cd20bdcaea9a010ac1f8d835824f5c87a04",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0xcb8b5cd20bdcaea9a010ac1f8d835824f5c87a04-1721965710424.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0xcb8b5cd20bdcaea9a010ac1f8d835824f5c87a04-1721965710424.png"
+ ],
+ "name": "CoW Protocol Token",
+ "symbol": "COW",
+ "marketCap": "111959.178961314059472693",
+ "price": "0.13166228195570536562",
+ "priceChange24hPercent": "1.24",
+ "volume24h": "1963.2184693131569567",
+ "communityRecognized": true,
+ "key": "evm--42161:0xcb8b5cd20bdcaea9a010ac1f8d835824f5c87a04",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Arbitrum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--42161",
+ "address": "0xfeb4dfc8c4cf7ed305bb08065d08ec6ee6728429",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0xfeb4dfc8c4cf7ed305bb08065d08ec6ee6728429-1757710882317.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0xfeb4dfc8c4cf7ed305bb08065d08ec6ee6728429-1757710882317.png"
+ ],
+ "name": "Paxos Gold",
+ "symbol": "PAXG",
+ "marketCap": "56249.609189319542019961",
+ "price": "4371.56298135646237443535",
+ "priceChange24hPercent": "0.2",
+ "volume24h": "785.954371",
+ "communityRecognized": false,
+ "key": "evm--42161:0xfeb4dfc8c4cf7ed305bb08065d08ec6ee6728429",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Arbitrum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--42161",
+ "address": "0xd4d42f0b6def4ce0383636770ef773390d85c61a",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0xd4d42f0b6def4ce0383636770ef773390d85c61a.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0xd4d42f0b6def4ce0383636770ef773390d85c61a.png"
+ ],
+ "name": "SushiToken",
+ "symbol": "SUSHI",
+ "marketCap": "303313.450830809361090098",
+ "price": "0.2349355736060361049",
+ "priceChange24hPercent": "-0.77",
+ "volume24h": "1046.08976859543025123",
+ "communityRecognized": true,
+ "key": "evm--42161:0xd4d42f0b6def4ce0383636770ef773390d85c61a",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Arbitrum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--10",
+ "address": "0x9560e827af36c94d2ac33a39bce1fe78631088db",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--10/tokens/address-0x9560e827af36c94d2ac33a39bce1fe78631088db.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--10/tokens/address-0x9560e827af36c94d2ac33a39bce1fe78631088db.png"
+ ],
+ "name": "VelodromeV2",
+ "symbol": "VELO",
+ "marketCap": "25917076.149564967999627505",
+ "price": "0.02831840585888096192",
+ "priceChange24hPercent": "14.1",
+ "volume24h": "729758.371958050077730906",
+ "communityRecognized": true,
+ "key": "evm--10:0x9560e827af36c94d2ac33a39bce1fe78631088db",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Optimism",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/optimism.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--10",
+ "address": "0x6985884c4392d348587b19cb9eaaf157f13271cd",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--10/tokens/address-0x6985884c4392d348587b19cb9eaaf157f13271cd-1721965703643.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--10/tokens/address-0x6985884c4392d348587b19cb9eaaf157f13271cd-1721965703643.png"
+ ],
+ "name": "LayerZero",
+ "symbol": "ZRO",
+ "marketCap": "5460332.739188066036985872",
+ "price": "1.13509788320369447826",
+ "priceChange24hPercent": "4.89",
+ "volume24h": "79847.875249522366352153",
+ "communityRecognized": true,
+ "key": "evm--10:0x6985884c4392d348587b19cb9eaaf157f13271cd",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Optimism",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/optimism.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--10",
+ "address": "0x8700daec35af8ff88c16bdf0418774cb3d7599b4",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--10/tokens/address-0x8700daec35af8ff88c16bdf0418774cb3d7599b4.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--10/tokens/address-0x8700daec35af8ff88c16bdf0418774cb3d7599b4.png"
+ ],
+ "name": "Synthetix Network Token",
+ "symbol": "SNX",
+ "marketCap": "7203825.158060332406936461",
+ "price": "0.22341208973883970495",
+ "priceChange24hPercent": "-1.38",
+ "volume24h": "12668.026107869794018219",
+ "communityRecognized": true,
+ "key": "evm--10:0x8700daec35af8ff88c16bdf0418774cb3d7599b4",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Optimism",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/optimism.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--10",
+ "address": "0xdc6ff44d5d932cbd77b52e5612ba0529dc6226f1",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--10/tokens/address-0xdc6ff44d5d932cbd77b52e5612ba0529dc6226f1.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--10/tokens/address-0xdc6ff44d5d932cbd77b52e5612ba0529dc6226f1.png"
+ ],
+ "name": "Worldcoin",
+ "symbol": "WLD",
+ "marketCap": "202255819.362581590102960587",
+ "price": "0.47389475195535496497",
+ "priceChange24hPercent": "13.79",
+ "volume24h": "77280.988154969216548683",
+ "communityRecognized": true,
+ "key": "evm--10:0xdc6ff44d5d932cbd77b52e5612ba0529dc6226f1",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Optimism",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/optimism.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--10",
+ "address": "0x9dabae7274d28a45f0b65bf8ed201a5731492ca0",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--10/tokens/address-0x9dabae7274d28a45f0b65bf8ed201a5731492ca0-1757692802327.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--10/tokens/address-0x9dabae7274d28a45f0b65bf8ed201a5731492ca0-1757692802327.png"
+ ],
+ "name": "Metronome Synth USD",
+ "symbol": "msUSD",
+ "marketCap": "816197.994530550167238399",
+ "price": "0.63315566563972652525",
+ "priceChange24hPercent": "13.04",
+ "volume24h": "99984.641985708306556492",
+ "communityRecognized": false,
+ "key": "evm--10:0x9dabae7274d28a45f0b65bf8ed201a5731492ca0",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Optimism",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/optimism.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--10",
+ "address": "0xc55e93c62874d8100dbd2dfe307edc1036ad5434",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--10/tokens/address-0xc55e93c62874d8100dbd2dfe307edc1036ad5434.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--10/tokens/address-0xc55e93c62874d8100dbd2dfe307edc1036ad5434.png"
+ ],
+ "name": "Moo BIFI",
+ "symbol": "mooBIFI",
+ "marketCap": "1001600.150579386110502647",
+ "price": "82.02353297447595715005",
+ "priceChange24hPercent": "8.15",
+ "volume24h": "10197.792932813562196919",
+ "communityRecognized": false,
+ "key": "evm--10:0xc55e93c62874d8100dbd2dfe307edc1036ad5434",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Optimism",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/optimism.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--10",
+ "address": "0xcb8fa9a76b8e203d8c3797bf438d8fb81ea3326a",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--10/tokens/address-0xcb8fa9a76b8e203d8c3797bf438d8fb81ea3326a.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--10/tokens/address-0xcb8fa9a76b8e203d8c3797bf438d8fb81ea3326a.png"
+ ],
+ "name": "Alchemix USD",
+ "symbol": "alUSD",
+ "marketCap": "1539674.982213425161225596",
+ "price": "0.95293725761716897959",
+ "priceChange24hPercent": "0.02",
+ "volume24h": "33052.883567148441651487",
+ "communityRecognized": false,
+ "key": "evm--10:0xcb8fa9a76b8e203d8c3797bf438d8fb81ea3326a",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Optimism",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/optimism.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--10",
+ "address": "0xedf38688b27036816a50185caa430d5479e1c63e",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--10/tokens/address-0xedf38688b27036816a50185caa430d5479e1c63e-1757692832783.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--10/tokens/address-0xedf38688b27036816a50185caa430d5479e1c63e-1757692832783.png"
+ ],
+ "name": "Overtime DAO Token",
+ "symbol": "OVER",
+ "marketCap": "5906368.768083219576202251",
+ "price": "0.22690393484978549413",
+ "priceChange24hPercent": "0.02",
+ "volume24h": "4833.9265050818590976",
+ "communityRecognized": false,
+ "key": "evm--10:0xedf38688b27036816a50185caa430d5479e1c63e",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Optimism",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/optimism.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--10",
+ "address": "0xdcb612005417dc906ff72c87df732e5a90d49e11",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--10/tokens/address-0xdcb612005417dc906ff72c87df732e5a90d49e11-1778914801472.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--10/tokens/address-0xdcb612005417dc906ff72c87df732e5a90d49e11-1778914801472.png"
+ ],
+ "name": "EURC",
+ "symbol": "EURC",
+ "marketCap": "2361346.222106918169127038",
+ "price": "1.16297858437045177771",
+ "priceChange24hPercent": "0.23",
+ "volume24h": "54365.025934",
+ "communityRecognized": false,
+ "key": "evm--10:0xdcb612005417dc906ff72c87df732e5a90d49e11",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Optimism",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/optimism.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--10",
+ "address": "0x1f514a61bcde34f94bc39731235690ab9da737f7",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--10/tokens/address-0x1f514a61bcde34f94bc39731235690ab9da737f7.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--10/tokens/address-0x1f514a61bcde34f94bc39731235690ab9da737f7.png"
+ ],
+ "name": "Tarot",
+ "symbol": "TAROT",
+ "marketCap": "1273901.551984265986960545",
+ "price": "0.03108282316391265836",
+ "priceChange24hPercent": "2.7",
+ "volume24h": "5000.399520554663258262",
+ "communityRecognized": false,
+ "key": "evm--10:0x1f514a61bcde34f94bc39731235690ab9da737f7",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Optimism",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/optimism.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--10",
+ "address": "0x3c8b650257cfb5f272f799f5e2b4e65093a11a05",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--10/tokens/address-0x3c8b650257cfb5f272f799f5e2b4e65093a11a05-1757692807156.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--10/tokens/address-0x3c8b650257cfb5f272f799f5e2b4e65093a11a05-1757692807156.png"
+ ],
+ "name": "Velodrome",
+ "symbol": "VELO",
+ "marketCap": "56789076.927286531592830146",
+ "price": "0.02841661772365588957",
+ "priceChange24hPercent": "10.97",
+ "volume24h": "4124.425519342489494393",
+ "communityRecognized": true,
+ "key": "evm--10:0x3c8b650257cfb5f272f799f5e2b4e65093a11a05",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Optimism",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/optimism.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--10",
+ "address": "0xb5b2dc7fd34c249f4be7fb1fcea07950784229e0",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--10/tokens/address-0xb5b2dc7fd34c249f4be7fb1fcea07950784229e0-1757692809631.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--10/tokens/address-0xb5b2dc7fd34c249f4be7fb1fcea07950784229e0-1757692809631.png"
+ ],
+ "name": "Savings USDS",
+ "symbol": "sUSDS",
+ "marketCap": "5124974.953992443372177536",
+ "price": "1.10887682915011144491",
+ "priceChange24hPercent": "0.01",
+ "volume24h": "3320.55237",
+ "communityRecognized": false,
+ "key": "evm--10:0xb5b2dc7fd34c249f4be7fb1fcea07950784229e0",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Optimism",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/optimism.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--10",
+ "address": "0x1610e3c85dd44af31ed7f33a63642012dca0c5a5",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--10/tokens/address-0x1610e3c85dd44af31ed7f33a63642012dca0c5a5-1757692816113.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--10/tokens/address-0x1610e3c85dd44af31ed7f33a63642012dca0c5a5-1757692816113.png"
+ ],
+ "name": "Metronome Synth ETH",
+ "symbol": "msETH",
+ "marketCap": "624236.251129162225275058",
+ "price": "1583.12364696910413337343",
+ "priceChange24hPercent": "12.98",
+ "volume24h": "124911.031069451579171897",
+ "communityRecognized": false,
+ "key": "evm--10:0x1610e3c85dd44af31ed7f33a63642012dca0c5a5",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Optimism",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/optimism.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--10",
+ "address": "0x10398abc267496e49106b07dd6be13364d10dc71",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--10/tokens/address-0x10398abc267496e49106b07dd6be13364d10dc71.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--10/tokens/address-0x10398abc267496e49106b07dd6be13364d10dc71.png"
+ ],
+ "name": "HAI Index Token",
+ "symbol": "HAI",
+ "marketCap": "354394.426039268477362887",
+ "price": "1.2150340968437998364",
+ "priceChange24hPercent": "-1.18",
+ "volume24h": "1843.328980852805454726",
+ "communityRecognized": false,
+ "key": "evm--10:0x10398abc267496e49106b07dd6be13364d10dc71",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Optimism",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/optimism.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--10",
+ "address": "0x03569cc076654f82679c4ba2124d64774781b01d",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--10/tokens/address-0x03569cc076654f82679c4ba2124d64774781b01d-1757692835782.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--10/tokens/address-0x03569cc076654f82679c4ba2124d64774781b01d-1757692835782.png"
+ ],
+ "name": "BOLD Stablecoin",
+ "symbol": "BOLD",
+ "marketCap": "118573.822389220754708244",
+ "price": "1.000152687482749499",
+ "priceChange24hPercent": "0.07",
+ "volume24h": "5592.069664",
+ "communityRecognized": false,
+ "key": "evm--10:0x03569cc076654f82679c4ba2124d64774781b01d",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Optimism",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/optimism.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--10",
+ "address": "0xe0080d2f853ecddbd81a643dc10da075df26fd3f",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--10/tokens/address-0xe0080d2f853ecddbd81a643dc10da075df26fd3f-1778914801472.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--10/tokens/address-0xe0080d2f853ecddbd81a643dc10da075df26fd3f-1778914801472.png"
+ ],
+ "name": "ether.fi governance token",
+ "symbol": "ETHFI",
+ "marketCap": "15783272.624549076189089715",
+ "price": "0.58056712586543310556",
+ "priceChange24hPercent": "1.65",
+ "volume24h": "30656.489581413855830257",
+ "communityRecognized": false,
+ "key": "evm--10:0xe0080d2f853ecddbd81a643dc10da075df26fd3f",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Optimism",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/optimism.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--10",
+ "address": "0x6fd9d7ad17242c41f7131d257212c54a0e816691",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--10/tokens/address-0x6fd9d7ad17242c41f7131d257212c54a0e816691.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--10/tokens/address-0x6fd9d7ad17242c41f7131d257212c54a0e816691.png"
+ ],
+ "name": "Uniswap",
+ "symbol": "UNI",
+ "marketCap": "539182.862838142979001256",
+ "price": "6.95885363148874366076",
+ "priceChange24hPercent": "-0.06",
+ "volume24h": "5852.435974479257136159",
+ "communityRecognized": true,
+ "key": "evm--10:0x6fd9d7ad17242c41f7131d257212c54a0e816691",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Optimism",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/optimism.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--10",
+ "address": "0xc40f949f8a4e094d1b49a23ea9241d289b7b2819",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--10/tokens/address-0xc40f949f8a4e094d1b49a23ea9241d289b7b2819.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--10/tokens/address-0xc40f949f8a4e094d1b49a23ea9241d289b7b2819.png"
+ ],
+ "name": "LUSD Stablecoin",
+ "symbol": "LUSD",
+ "marketCap": "126729.719958763787002425",
+ "price": "1.00249988835190172364",
+ "priceChange24hPercent": "0.12",
+ "volume24h": "1781.513276787404403572",
+ "communityRecognized": false,
+ "key": "evm--10:0xc40f949f8a4e094d1b49a23ea9241d289b7b2819",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Optimism",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/optimism.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--10",
+ "address": "0x0994206dfe8de6ec6920ff4d779b0d950605fb53",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--10/tokens/address-0x0994206dfe8de6ec6920ff4d779b0d950605fb53.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--10/tokens/address-0x0994206dfe8de6ec6920ff4d779b0d950605fb53.png"
+ ],
+ "name": "Curve DAO Token",
+ "symbol": "CRV",
+ "marketCap": "2336410.823637845157564664",
+ "price": "0.36279891293152368952",
+ "priceChange24hPercent": "-6.76",
+ "volume24h": "14120.060894953005278765",
+ "communityRecognized": true,
+ "key": "evm--10:0x0994206dfe8de6ec6920ff4d779b0d950605fb53",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Optimism",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/optimism.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--10",
+ "address": "0x76fb31fb4af56892a25e32cfc43de717950c9278",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--10/tokens/address-0x76fb31fb4af56892a25e32cfc43de717950c9278.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--10/tokens/address-0x76fb31fb4af56892a25e32cfc43de717950c9278.png"
+ ],
+ "name": "Aave Token",
+ "symbol": "AAVE",
+ "marketCap": "678155.706440160805849917",
+ "price": "131.55407221220801857395",
+ "priceChange24hPercent": "-1.09",
+ "volume24h": "13151.958588383216415833",
+ "communityRecognized": true,
+ "key": "evm--10:0x76fb31fb4af56892a25e32cfc43de717950c9278",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Optimism",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/optimism.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--10",
+ "address": "0x3e29d3a9316dab217754d13b28646b76607c5f04",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--10/tokens/address-0x3e29d3a9316dab217754d13b28646b76607c5f04.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--10/tokens/address-0x3e29d3a9316dab217754d13b28646b76607c5f04.png"
+ ],
+ "name": "Alchemix ETH",
+ "symbol": "alETH",
+ "marketCap": "4033217.781668885428525178",
+ "price": "2407.5919968324739555058",
+ "priceChange24hPercent": "-0.43",
+ "volume24h": "30825.441891761287358581",
+ "communityRecognized": false,
+ "key": "evm--10:0x3e29d3a9316dab217754d13b28646b76607c5f04",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Optimism",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/optimism.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--10",
+ "address": "0x1e925de1c68ef83bd98ee3e130ef14a50309c01b",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--10/tokens/address-0x1e925de1c68ef83bd98ee3e130ef14a50309c01b.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--10/tokens/address-0x1e925de1c68ef83bd98ee3e130ef14a50309c01b.png"
+ ],
+ "name": "exactly",
+ "symbol": "EXA",
+ "marketCap": "823314.784898117827501239",
+ "price": "0.15391078953271145392",
+ "priceChange24hPercent": "0.39",
+ "volume24h": "589.033432703707441459",
+ "communityRecognized": false,
+ "key": "evm--10:0x1e925de1c68ef83bd98ee3e130ef14a50309c01b",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Optimism",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/optimism.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--10",
+ "address": "0x296f55f8fb28e498b858d0bcda06d955b2cb3f97",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--10/tokens/address-0x296f55f8fb28e498b858d0bcda06d955b2cb3f97.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--10/tokens/address-0x296f55f8fb28e498b858d0bcda06d955b2cb3f97.png"
+ ],
+ "name": "StargateToken",
+ "symbol": "STG",
+ "marketCap": "391662.921097294912302183",
+ "price": "0.16398482837731751825",
+ "priceChange24hPercent": "-3.9",
+ "volume24h": "1498.444743459360217422",
+ "communityRecognized": true,
+ "key": "evm--10:0x296f55f8fb28e498b858d0bcda06d955b2cb3f97",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Optimism",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/optimism.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--10",
+ "address": "0x1217bfe6c773eec6cc4a38b5dc45b92292b6e189",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--10/tokens/address-0x1217bfe6c773eec6cc4a38b5dc45b92292b6e189-1757665165750.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--10/tokens/address-0x1217bfe6c773eec6cc4a38b5dc45b92292b6e189-1757665165750.png"
+ ],
+ "name": "OpenUSDT",
+ "symbol": "oUSDT",
+ "marketCap": "148557.5931954145324212",
+ "price": "1.00073434215115907918",
+ "priceChange24hPercent": "0.07",
+ "volume24h": "1638.155069611779813067",
+ "communityRecognized": false,
+ "key": "evm--10:0x1217bfe6c773eec6cc4a38b5dc45b92292b6e189",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Optimism",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/optimism.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--10",
+ "address": "0x74ccbe53f77b08632ce0cb91d3a545bf6b8e0979",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--10/tokens/address-0x74ccbe53f77b08632ce0cb91d3a545bf6b8e0979.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--10/tokens/address-0x74ccbe53f77b08632ce0cb91d3a545bf6b8e0979.png"
+ ],
+ "name": "Fantom Bomb",
+ "symbol": "fBOMB",
+ "marketCap": "589095.268974747240238733",
+ "price": "0.01899031025927439857",
+ "priceChange24hPercent": "6",
+ "volume24h": "1844.58783479698902445",
+ "communityRecognized": false,
+ "key": "evm--10:0x74ccbe53f77b08632ce0cb91d3a545bf6b8e0979",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Optimism",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/optimism.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--10",
+ "address": "0x5a7facb970d094b6c7ff1df0ea68d99e6e73cbff",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--10/tokens/address-0x5a7facb970d094b6c7ff1df0ea68d99e6e73cbff-1757692837376.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--10/tokens/address-0x5a7facb970d094b6c7ff1df0ea68d99e6e73cbff-1757692837376.png"
+ ],
+ "name": "Wrapped eETH",
+ "symbol": "weETH",
+ "marketCap": "27699614.477469299855750224",
+ "price": "2742.4791611237875388352",
+ "priceChange24hPercent": "-0.18",
+ "volume24h": "2418.730857054042708239",
+ "communityRecognized": true,
+ "key": "evm--10:0x5a7facb970d094b6c7ff1df0ea68d99e6e73cbff",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Optimism",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/optimism.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--10",
+ "address": "0xef4461891dfb3ac8572ccf7c794664a8dd927945",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--10/tokens/address-0xef4461891dfb3ac8572ccf7c794664a8dd927945-1757665165750.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--10/tokens/address-0xef4461891dfb3ac8572ccf7c794664a8dd927945-1757665165750.png"
+ ],
+ "name": "WalletConnect",
+ "symbol": "WCT",
+ "marketCap": "17923728.451283942930465124",
+ "price": "0.03966236682157598025",
+ "priceChange24hPercent": "0.22",
+ "volume24h": "1017.863411971035648575",
+ "communityRecognized": true,
+ "key": "evm--10:0xef4461891dfb3ac8572ccf7c794664a8dd927945",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Optimism",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/optimism.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--10",
+ "address": "0x33bca143d9b41322479e8d26072a00a352404721",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--10/tokens/address-0x33bca143d9b41322479e8d26072a00a352404721-1757692807156.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--10/tokens/address-0x33bca143d9b41322479e8d26072a00a352404721-1757692807156.png"
+ ],
+ "name": "Metronome Synth OP",
+ "symbol": "msOP",
+ "marketCap": "6746.358680785621395438",
+ "price": "0.0681562710015196971",
+ "priceChange24hPercent": "6.83",
+ "volume24h": "611.107237469017500155",
+ "communityRecognized": false,
+ "key": "evm--10:0x33bca143d9b41322479e8d26072a00a352404721",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Optimism",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/optimism.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--10",
+ "address": "0x3417e54a51924c225330f8770514ad5560b9098d",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--10/tokens/address-0x3417e54a51924c225330f8770514ad5560b9098d-1757692832783.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--10/tokens/address-0x3417e54a51924c225330f8770514ad5560b9098d-1757692832783.png"
+ ],
+ "name": "REDKoin",
+ "symbol": "RED",
+ "marketCap": "58359.945366702894103262",
+ "price": "0.03644107796924155963",
+ "priceChange24hPercent": "7.88",
+ "volume24h": "1737.13604521599315717",
+ "communityRecognized": false,
+ "key": "evm--10:0x3417e54a51924c225330f8770514ad5560b9098d",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Optimism",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/optimism.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--10",
+ "address": "0x676f784d19c7f1ac6c6beaeaac78b02a73427852",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--10/tokens/address-0x676f784d19c7f1ac6c6beaeaac78b02a73427852-1757692816113.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--10/tokens/address-0x676f784d19c7f1ac6c6beaeaac78b02a73427852-1757692816113.png"
+ ],
+ "name": "OptimismPrime",
+ "symbol": "OPP",
+ "marketCap": "335645.812349520480231095",
+ "price": "0.00033564581237061846",
+ "priceChange24hPercent": "0.96",
+ "volume24h": "1196.812410842447547762",
+ "communityRecognized": false,
+ "key": "evm--10:0x676f784d19c7f1ac6c6beaeaac78b02a73427852",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Optimism",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/optimism.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--10",
+ "address": "0x1d1498166ddceee616a6d99868e1e0677300056f",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--10/tokens/address-0x1d1498166ddceee616a6d99868e1e0677300056f.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--10/tokens/address-0x1d1498166ddceee616a6d99868e1e0677300056f.png"
+ ],
+ "name": "xSpace Token",
+ "symbol": "xSPACE",
+ "marketCap": "21798.290043756858332039",
+ "price": "0.0018512108100565675",
+ "priceChange24hPercent": "-8.51",
+ "volume24h": "1351.250136123618679955",
+ "communityRecognized": false,
+ "key": "evm--10:0x1d1498166ddceee616a6d99868e1e0677300056f",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Optimism",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/optimism.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--10",
+ "address": "0x87eee96d50fb761ad85b1c982d28a042169d61b1",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--10/tokens/address-0x87eee96d50fb761ad85b1c982d28a042169d61b1-1722664800374.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--10/tokens/address-0x87eee96d50fb761ad85b1c982d28a042169d61b1-1722664800374.png"
+ ],
+ "name": "rsETHWrapper",
+ "symbol": "wrsETH",
+ "marketCap": "75317.380767912886763375",
+ "price": "2636.93317756300091855383",
+ "priceChange24hPercent": "-1.24",
+ "volume24h": "1055.717049504285981629",
+ "communityRecognized": false,
+ "key": "evm--10:0x87eee96d50fb761ad85b1c982d28a042169d61b1",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Optimism",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/optimism.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--10",
+ "address": "0xd4dd9e2f021bb459d5a5f6c24c12fe09c5d45553",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--10/tokens/address-0xd4dd9e2f021bb459d5a5f6c24c12fe09c5d45553-1757692809631.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--10/tokens/address-0xd4dd9e2f021bb459d5a5f6c24c12fe09c5d45553-1757692809631.png"
+ ],
+ "name": "Frankencoin",
+ "symbol": "ZCHF",
+ "marketCap": "317134.204899812708438603",
+ "price": "1.2366991468975444842",
+ "priceChange24hPercent": "0.03",
+ "volume24h": "7171.404964",
+ "communityRecognized": true,
+ "key": "evm--10:0xd4dd9e2f021bb459d5a5f6c24c12fe09c5d45553",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Optimism",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/optimism.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--10",
+ "address": "0x2e3d870790dc77a83dd1d18184acc7439a53f475",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--10/tokens/address-0x2e3d870790dc77a83dd1d18184acc7439a53f475.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--10/tokens/address-0x2e3d870790dc77a83dd1d18184acc7439a53f475.png"
+ ],
+ "name": "Frax",
+ "symbol": "FRAX",
+ "marketCap": "579282.681178762855014945",
+ "price": "0.99862306822114578934",
+ "priceChange24hPercent": "0.07",
+ "volume24h": "1272.770287492642448812",
+ "communityRecognized": false,
+ "key": "evm--10:0x2e3d870790dc77a83dd1d18184acc7439a53f475",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Optimism",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/optimism.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--10",
+ "address": "0xae0c7d4be1f07c5cf2994da2884a6d698f516286",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--10/tokens/address-0xae0c7d4be1f07c5cf2994da2884a6d698f516286-1765350002865.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--10/tokens/address-0xae0c7d4be1f07c5cf2994da2884a6d698f516286-1765350002865.png"
+ ],
+ "name": "FINDEX Liquidity Token",
+ "symbol": "FNX",
+ "marketCap": "31208971.887639278652437136",
+ "price": "0.30674905680564680125",
+ "priceChange24hPercent": "0.01",
+ "volume24h": "6245.066668",
+ "communityRecognized": false,
+ "key": "evm--10:0xae0c7d4be1f07c5cf2994da2884a6d698f516286",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Optimism",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/optimism.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--10",
+ "address": "0x350a791bfc2c21f9ed5d10980dad2e2638ffa7f6",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--10/tokens/address-0x350a791bfc2c21f9ed5d10980dad2e2638ffa7f6.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--10/tokens/address-0x350a791bfc2c21f9ed5d10980dad2e2638ffa7f6.png"
+ ],
+ "name": "ChainLink Token",
+ "symbol": "LINK",
+ "marketCap": "2290535.929278699270060352",
+ "price": "12.61465571745546039412",
+ "priceChange24hPercent": "-2.59",
+ "volume24h": "20957.447166981550274892",
+ "communityRecognized": true,
+ "key": "evm--10:0x350a791bfc2c21f9ed5d10980dad2e2638ffa7f6",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Optimism",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/optimism.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--43114",
+ "address": "0x6e84a6216ea6dacc71ee8e6b0a5b7322eebc0fdd",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--43114/tokens/address-0x6e84a6216ea6dacc71ee8e6b0a5b7322eebc0fdd.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--43114/tokens/address-0x6e84a6216ea6dacc71ee8e6b0a5b7322eebc0fdd.png"
+ ],
+ "name": "JoeToken",
+ "symbol": "JOE",
+ "marketCap": "16216093.691790962936922873",
+ "price": "0.03245114411394785082",
+ "priceChange24hPercent": "-1.37",
+ "volume24h": "65155.627135954243682384",
+ "communityRecognized": true,
+ "key": "evm--43114:0x6e84a6216ea6dacc71ee8e6b0a5b7322eebc0fdd",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Avalanche",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/avalanche.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--43114",
+ "address": "0x2775d5105276781b4b85ba6ea6a6653beed1dd32",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--43114/tokens/address-0x2775d5105276781b4b85ba6ea6a6653beed1dd32-1779763686396.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--43114/tokens/address-0x2775d5105276781b4b85ba6ea6a6653beed1dd32-1779763686396.png"
+ ],
+ "name": "XAUt0",
+ "symbol": "XAUt0",
+ "marketCap": "1853868.995903617675151515",
+ "price": "4437.55322484848484848485",
+ "priceChange24hPercent": "0.61",
+ "volume24h": "10646.014896598135440226",
+ "communityRecognized": true,
+ "key": "evm--43114:0x2775d5105276781b4b85ba6ea6a6653beed1dd32",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Avalanche",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/avalanche.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--43114",
+ "address": "0x420fca0121dc28039145009570975747295f2329",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--43114/tokens/address-0x420fca0121dc28039145009570975747295f2329.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--43114/tokens/address-0x420fca0121dc28039145009570975747295f2329.png"
+ ],
+ "name": "COQINU",
+ "symbol": "COQ",
+ "marketCap": "7469659.97717693358924177",
+ "price": "0.00000010763214605306",
+ "priceChange24hPercent": "8.38",
+ "volume24h": "48644.687131159167098826",
+ "communityRecognized": true,
+ "key": "evm--43114:0x420fca0121dc28039145009570975747295f2329",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Avalanche",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/avalanche.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--43114",
+ "address": "0x60781c2586d68229fde47564546784ab3faca982",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--43114/tokens/address-0x60781c2586d68229fde47564546784ab3faca982.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--43114/tokens/address-0x60781c2586d68229fde47564546784ab3faca982.png"
+ ],
+ "name": "Pangolin",
+ "symbol": "PNG",
+ "marketCap": "6028713.131942965222591779",
+ "price": "0.02544437345627135933",
+ "priceChange24hPercent": "5.85",
+ "volume24h": "227573.450800357475187755",
+ "communityRecognized": true,
+ "key": "evm--43114:0x60781c2586d68229fde47564546784ab3faca982",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Avalanche",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/avalanche.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--43114",
+ "address": "0x26e9dbe75aed331e41272bece932ff1b48926ca9",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--43114/tokens/address-0x26e9dbe75aed331e41272bece932ff1b48926ca9-1760101231419.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--43114/tokens/address-0x26e9dbe75aed331e41272bece932ff1b48926ca9-1760101231419.png"
+ ],
+ "name": "Pharaoh Liquid Staking Token",
+ "symbol": "p33",
+ "marketCap": "11174047.621937762225207501",
+ "price": "0.070399015684057314",
+ "priceChange24hPercent": "-0.13",
+ "volume24h": "31339.75800029999145228",
+ "communityRecognized": false,
+ "key": "evm--43114:0x26e9dbe75aed331e41272bece932ff1b48926ca9",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Avalanche",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/avalanche.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--43114",
+ "address": "0x63a72806098bd3d9520cc43356dd78afe5d386d9",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--43114/tokens/address-0x63a72806098bd3d9520cc43356dd78afe5d386d9.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--43114/tokens/address-0x63a72806098bd3d9520cc43356dd78afe5d386d9.png"
+ ],
+ "name": "Aave Token",
+ "symbol": "AAVE.e",
+ "marketCap": "1012609.721941762223463635",
+ "price": "130.75082586220030263555",
+ "priceChange24hPercent": "-1.63",
+ "volume24h": "12112.27228285332194151",
+ "communityRecognized": true,
+ "key": "evm--43114:0x63a72806098bd3d9520cc43356dd78afe5d386d9",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Avalanche",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/avalanche.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--43114",
+ "address": "0xd1c3f94de7e5b45fa4edbba472491a9f4b166fc4",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--43114/tokens/address-0xd1c3f94de7e5b45fa4edbba472491a9f4b166fc4.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--43114/tokens/address-0xd1c3f94de7e5b45fa4edbba472491a9f4b166fc4.png"
+ ],
+ "name": "Avalaunch",
+ "symbol": "XAVA",
+ "marketCap": "20851815.995132315916909132",
+ "price": "0.20851815995151863952",
+ "priceChange24hPercent": "-0.4",
+ "volume24h": "5076.005656552225171042",
+ "communityRecognized": true,
+ "key": "evm--43114:0xd1c3f94de7e5b45fa4edbba472491a9f4b166fc4",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Avalanche",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/avalanche.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--43114",
+ "address": "0x8729438eb15e2c8b576fcc6aecda6a148776c0f5",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--43114/tokens/address-0x8729438eb15e2c8b576fcc6aecda6a148776c0f5.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--43114/tokens/address-0x8729438eb15e2c8b576fcc6aecda6a148776c0f5.png"
+ ],
+ "name": "BENQI",
+ "symbol": "QI",
+ "marketCap": "9157852.587866574500308649",
+ "price": "0.00127192399780169725",
+ "priceChange24hPercent": "0.63",
+ "volume24h": "15693.378401291649005906",
+ "communityRecognized": true,
+ "key": "evm--43114:0x8729438eb15e2c8b576fcc6aecda6a148776c0f5",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Avalanche",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/avalanche.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--43114",
+ "address": "0xff7f8f301f7a706e3cfd3d2275f5dc0b9ee8009b",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--43114/tokens/address-0xff7f8f301f7a706e3cfd3d2275f5dc0b9ee8009b-1761760026374.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--43114/tokens/address-0xff7f8f301f7a706e3cfd3d2275f5dc0b9ee8009b-1761760026374.png"
+ ],
+ "name": "Folks Finance",
+ "symbol": "FOLKS",
+ "marketCap": "2103140.268474267885890269",
+ "price": "1.96279711163838183035",
+ "priceChange24hPercent": "-1.3",
+ "volume24h": "7184.144201091429108601",
+ "communityRecognized": true,
+ "key": "evm--43114:0xff7f8f301f7a706e3cfd3d2275f5dc0b9ee8009b",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Avalanche",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/avalanche.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--43114",
+ "address": "0x50b7545627a5162f82a992c33b87adc75187b218",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--43114/tokens/address-0x50b7545627a5162f82a992c33b87adc75187b218.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--43114/tokens/address-0x50b7545627a5162f82a992c33b87adc75187b218.png"
+ ],
+ "name": "Wrapped BTC",
+ "symbol": "WBTC.e",
+ "marketCap": "24795078.781017361465957177",
+ "price": "78532.51432281109252330286",
+ "priceChange24hPercent": "-1.29",
+ "volume24h": "11963.090618656748556634",
+ "communityRecognized": false,
+ "key": "evm--43114:0x50b7545627a5162f82a992c33b87adc75187b218",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Avalanche",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/avalanche.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--43114",
+ "address": "0xd586e7f844cea2f87f50152665bcbc2c279d8d70",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--43114/tokens/address-0xd586e7f844cea2f87f50152665bcbc2c279d8d70.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--43114/tokens/address-0xd586e7f844cea2f87f50152665bcbc2c279d8d70.png"
+ ],
+ "name": "Dai Stablecoin",
+ "symbol": "DAI.e",
+ "marketCap": "10684326.990104146454170628",
+ "price": "0.99811635472741452563",
+ "priceChange24hPercent": "-0.31",
+ "volume24h": "33117.60255880560843107",
+ "communityRecognized": false,
+ "key": "evm--43114:0xd586e7f844cea2f87f50152665bcbc2c279d8d70",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Avalanche",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/avalanche.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--43114",
+ "address": "0x997ddaa07d716995de90577c123db411584e5e46",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--43114/tokens/address-0x997ddaa07d716995de90577c123db411584e5e46.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--43114/tokens/address-0x997ddaa07d716995de90577c123db411584e5e46.png"
+ ],
+ "name": "JEWEL",
+ "symbol": "JEWEL",
+ "marketCap": "527477.579476852803929965",
+ "price": "0.0085454187726347291",
+ "priceChange24hPercent": "2.58",
+ "volume24h": "1597.50349023016051509",
+ "communityRecognized": false,
+ "key": "evm--43114:0x997ddaa07d716995de90577c123db411584e5e46",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Avalanche",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/avalanche.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--43114",
+ "address": "0x9913ba363073ca3e9ea0cd296e36b75af9e40bef",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--43114/tokens/address-0x9913ba363073ca3e9ea0cd296e36b75af9e40bef.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--43114/tokens/address-0x9913ba363073ca3e9ea0cd296e36b75af9e40bef.png"
+ ],
+ "name": "TRESR",
+ "symbol": "TRESR",
+ "marketCap": "73752.46963243803495157",
+ "price": "0.00024387514429674478",
+ "priceChange24hPercent": "22.39",
+ "volume24h": "742.37927373848720642",
+ "communityRecognized": false,
+ "key": "evm--43114:0x9913ba363073ca3e9ea0cd296e36b75af9e40bef",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Avalanche",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/avalanche.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--43114",
+ "address": "0x26debd39d5ed069770406fca10a0e4f8d2c743eb",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--43114/tokens/address-0x26debd39d5ed069770406fca10a0e4f8d2c743eb-1744239437538.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--43114/tokens/address-0x26debd39d5ed069770406fca10a0e4f8d2c743eb-1744239437538.png"
+ ],
+ "name": "GUNZ",
+ "symbol": "GUN",
+ "marketCap": "1960463.085041956591796587",
+ "price": "0.00304451105009735912",
+ "priceChange24hPercent": "-1.03",
+ "volume24h": "1049.425543558929856779",
+ "communityRecognized": true,
+ "key": "evm--43114:0x26debd39d5ed069770406fca10a0e4f8d2c743eb",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Avalanche",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/avalanche.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--43114",
+ "address": "0x464281c0ce5aee44f3d8886e2c62c3623242c724",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--43114/tokens/address-0x464281c0ce5aee44f3d8886e2c62c3623242c724-1757804409724.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--43114/tokens/address-0x464281c0ce5aee44f3d8886e2c62c3623242c724-1757804409724.png"
+ ],
+ "name": "Bullseye Bot Token from PulseCha",
+ "symbol": "BLSEYE🎯",
+ "marketCap": "4233.335816497354163718",
+ "price": "0.00000065820132293838",
+ "priceChange24hPercent": "-29.6",
+ "volume24h": "1196.638574170997676196",
+ "communityRecognized": false,
+ "key": "evm--43114:0x464281c0ce5aee44f3d8886e2c62c3623242c724",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Avalanche",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/avalanche.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--43114",
+ "address": "0xe7c3d8c9a439fede00d2600032d5db0be71c3c29",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--43114/tokens/address-0xe7c3d8c9a439fede00d2600032d5db0be71c3c29-1761570016715.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--43114/tokens/address-0xe7c3d8c9a439fede00d2600032d5db0be71c3c29-1761570016715.png"
+ ],
+ "name": "JPY Coin",
+ "symbol": "JPYC",
+ "marketCap": "2806170.838961432170927837",
+ "price": "0.00649955587773830177",
+ "priceChange24hPercent": "1.63",
+ "volume24h": "4401.650982",
+ "communityRecognized": false,
+ "key": "evm--43114:0xe7c3d8c9a439fede00d2600032d5db0be71c3c29",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Avalanche",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/avalanche.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--43114",
+ "address": "0xc7b5d72c836e718cda8888eaf03707faef675079",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--43114/tokens/address-0xc7b5d72c836e718cda8888eaf03707faef675079.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--43114/tokens/address-0xc7b5d72c836e718cda8888eaf03707faef675079.png"
+ ],
+ "name": "TrustSwap Token",
+ "symbol": "SWAP.e",
+ "marketCap": "92469.452342092320583512",
+ "price": "0.04112808274726484063",
+ "priceChange24hPercent": "-4.52",
+ "volume24h": "503.287043065707217506",
+ "communityRecognized": true,
+ "key": "evm--43114:0xc7b5d72c836e718cda8888eaf03707faef675079",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Avalanche",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/avalanche.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--43114",
+ "address": "0x6985884c4392d348587b19cb9eaaf157f13271cd",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--43114/tokens/address-0x6985884c4392d348587b19cb9eaaf157f13271cd-1721961429011.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--43114/tokens/address-0x6985884c4392d348587b19cb9eaaf157f13271cd-1721961429011.png"
+ ],
+ "name": "LayerZero",
+ "symbol": "ZRO",
+ "marketCap": "1233327.331931955851943049",
+ "price": "1.14318424818692951736",
+ "priceChange24hPercent": "5.49",
+ "volume24h": "1455.851161329635511151",
+ "communityRecognized": true,
+ "key": "evm--43114:0x6985884c4392d348587b19cb9eaaf157f13271cd",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Avalanche",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/avalanche.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--43114",
+ "address": "0x62d0a8458ed7719fdaf978fe5929c6d342b0bfce",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--43114/tokens/address-0x62d0a8458ed7719fdaf978fe5929c6d342b0bfce-1726799400060.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--43114/tokens/address-0x62d0a8458ed7719fdaf978fe5929c6d342b0bfce-1726799400060.png"
+ ],
+ "name": "Beam",
+ "symbol": "BEAM",
+ "marketCap": "187552.073012296507445273",
+ "price": "0.00155022363837447566",
+ "priceChange24hPercent": "-2.46",
+ "volume24h": "1365.949087925280771799",
+ "communityRecognized": true,
+ "key": "evm--43114:0x62d0a8458ed7719fdaf978fe5929c6d342b0bfce",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Avalanche",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/avalanche.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--43114",
+ "address": "0x13a466998ce03db73abc2d4df3bbd845ed1f28e7",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--43114/tokens/address-0x13a466998ce03db73abc2d4df3bbd845ed1f28e7-1760014821726.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--43114/tokens/address-0x13a466998ce03db73abc2d4df3bbd845ed1f28e7-1760014821726.png"
+ ],
+ "name": "Pharaoh",
+ "symbol": "PHAR",
+ "marketCap": "1434723.020791277910820458",
+ "price": "0.04541291897528300906",
+ "priceChange24hPercent": "0.6",
+ "volume24h": "13992.226525568791580181",
+ "communityRecognized": false,
+ "key": "evm--43114:0x13a466998ce03db73abc2d4df3bbd845ed1f28e7",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Avalanche",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/avalanche.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--43114",
+ "address": "0xbc78d84ba0c46dfe32cf2895a19939c86b81a777",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--43114/tokens/address-0xbc78d84ba0c46dfe32cf2895a19939c86b81a777-1727418600039.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--43114/tokens/address-0xbc78d84ba0c46dfe32cf2895a19939c86b81a777-1727418600039.png"
+ ],
+ "name": "Solv BTC",
+ "symbol": "SolvBTC",
+ "marketCap": "2549241.268367809258425122",
+ "price": "79563.90279316235347228077",
+ "priceChange24hPercent": "-0.36",
+ "volume24h": "913.0248629358580488",
+ "communityRecognized": false,
+ "key": "evm--43114:0xbc78d84ba0c46dfe32cf2895a19939c86b81a777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Avalanche",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/avalanche.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--43114",
+ "address": "0xb8d7710f7d8349a506b75dd184f05777c82dad0c",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--43114/tokens/address-0xb8d7710f7d8349a506b75dd184f05777c82dad0c-1730340901126.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--43114/tokens/address-0xb8d7710f7d8349a506b75dd184f05777c82dad0c-1730340901126.png"
+ ],
+ "name": "ArenaToken",
+ "symbol": "ARENA",
+ "marketCap": "5642903.518465073786335538",
+ "price": "0.00088382004696710177",
+ "priceChange24hPercent": "-0.76",
+ "volume24h": "17884.98751569901112984",
+ "communityRecognized": false,
+ "key": "evm--43114:0xb8d7710f7d8349a506b75dd184f05777c82dad0c",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Avalanche",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/avalanche.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--43114",
+ "address": "0x8d88e48465f30acfb8dac0b3e35c9d6d7d36abaf",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--43114/tokens/address-0x8d88e48465f30acfb8dac0b3e35c9d6d7d36abaf.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--43114/tokens/address-0x8d88e48465f30acfb8dac0b3e35c9d6d7d36abaf.png"
+ ],
+ "name": "Canary",
+ "symbol": "CNR",
+ "marketCap": "114575.047047476108740814",
+ "price": "0.00023313300497583872",
+ "priceChange24hPercent": "3.36",
+ "volume24h": "1015.834709458475198871",
+ "communityRecognized": false,
+ "key": "evm--43114:0x8d88e48465f30acfb8dac0b3e35c9d6d7d36abaf",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Avalanche",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/avalanche.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--43114",
+ "address": "0x321e7092a180bb43555132ec53aaa65a5bf84251",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--43114/tokens/address-0x321e7092a180bb43555132ec53aaa65a5bf84251.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--43114/tokens/address-0x321e7092a180bb43555132ec53aaa65a5bf84251.png"
+ ],
+ "name": "Governance OHM",
+ "symbol": "gOHM",
+ "marketCap": "3378078.985281365979233697",
+ "price": "5446.90945776313655329415",
+ "priceChange24hPercent": "0.68",
+ "volume24h": "5394.644410413141865112",
+ "communityRecognized": false,
+ "key": "evm--43114:0x321e7092a180bb43555132ec53aaa65a5bf84251",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Avalanche",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/avalanche.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--43114",
+ "address": "0xb6314518b61b4864162c7ae7fdc36261e0a14c4b",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--43114/tokens/address-0xb6314518b61b4864162c7ae7fdc36261e0a14c4b-1780750801138.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--43114/tokens/address-0xb6314518b61b4864162c7ae7fdc36261e0a14c4b-1780750801138.png"
+ ],
+ "name": "YOM",
+ "symbol": "YOM",
+ "marketCap": "10989683.198110600427226987",
+ "price": "0.0146529109308141339",
+ "priceChange24hPercent": "-7.99",
+ "volume24h": "3986.86431266304",
+ "communityRecognized": false,
+ "key": "evm--43114:0xb6314518b61b4864162c7ae7fdc36261e0a14c4b",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Avalanche",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/avalanche.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--43114",
+ "address": "0xe8385cecb013561b69beb63ff59f4d10734881f3",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--43114/tokens/address-0xe8385cecb013561b69beb63ff59f4d10734881f3.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--43114/tokens/address-0xe8385cecb013561b69beb63ff59f4d10734881f3.png"
+ ],
+ "name": "Gecko Inu",
+ "symbol": "GEC",
+ "marketCap": "89415.114015795559955829",
+ "price": "0.00000000135088459605",
+ "priceChange24hPercent": "9.55",
+ "volume24h": "529.821841424521583976",
+ "communityRecognized": false,
+ "key": "evm--43114:0xe8385cecb013561b69beb63ff59f4d10734881f3",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Avalanche",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/avalanche.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--43114",
+ "address": "0x6c14c1898c843ff66ca51e87244690bbc28df215",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--43114/tokens/address-0x6c14c1898c843ff66ca51e87244690bbc28df215-1721961429011.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--43114/tokens/address-0x6c14c1898c843ff66ca51e87244690bbc28df215-1721961429011.png"
+ ],
+ "name": "Orange",
+ "symbol": "ORNG",
+ "marketCap": "1055071.54397706789160406",
+ "price": "0.00350522107633577373",
+ "priceChange24hPercent": "1.83",
+ "volume24h": "1052.453021498804440192",
+ "communityRecognized": false,
+ "key": "evm--43114:0x6c14c1898c843ff66ca51e87244690bbc28df215",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Avalanche",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/avalanche.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--43114",
+ "address": "0x130966628846bfd36ff31a822705796e8cb8c18d",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--43114/tokens/address-0x130966628846bfd36ff31a822705796e8cb8c18d.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--43114/tokens/address-0x130966628846bfd36ff31a822705796e8cb8c18d.png"
+ ],
+ "name": "Magic Internet Money",
+ "symbol": "MIM",
+ "marketCap": "356918.937201203609182646",
+ "price": "0.05289856923560128018",
+ "priceChange24hPercent": "2.58",
+ "volume24h": "785.250522421191272473",
+ "communityRecognized": false,
+ "key": "evm--43114:0x130966628846bfd36ff31a822705796e8cb8c18d",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Avalanche",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/avalanche.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--43114",
+ "address": "0xa77e70d0af1ac7ff86726740db1bd065c3566937",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--43114/tokens/address-0xa77e70d0af1ac7ff86726740db1bd065c3566937.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--43114/tokens/address-0xa77e70d0af1ac7ff86726740db1bd065c3566937.png"
+ ],
+ "name": "w3ULL",
+ "symbol": "w3ULL",
+ "marketCap": "275179.656750379360838022",
+ "price": "0.00006282251229313067",
+ "priceChange24hPercent": "9.09",
+ "volume24h": "3254.708632561213136607",
+ "communityRecognized": false,
+ "key": "evm--43114:0xa77e70d0af1ac7ff86726740db1bd065c3566937",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Avalanche",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/avalanche.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--43114",
+ "address": "0xf20d962a6c8f70c731bd838a3a388d7d48fa6e15",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--43114/tokens/address-0xf20d962a6c8f70c731bd838a3a388d7d48fa6e15-1757718032020.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--43114/tokens/address-0xf20d962a6c8f70c731bd838a3a388d7d48fa6e15-1757718032020.png"
+ ],
+ "name": "Ether",
+ "symbol": "ETH",
+ "marketCap": "1030134.369456201794584701",
+ "price": "2731.77727510047298079741",
+ "priceChange24hPercent": "2.48",
+ "volume24h": "763.028959326121147673",
+ "communityRecognized": false,
+ "key": "evm--43114:0xf20d962a6c8f70c731bd838a3a388d7d48fa6e15",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Avalanche",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/avalanche.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--43114",
+ "address": "0xd402298a793948698b9a63311404fbbee944eafd",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--43114/tokens/address-0xd402298a793948698b9a63311404fbbee944eafd.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--43114/tokens/address-0xd402298a793948698b9a63311404fbbee944eafd.png"
+ ],
+ "name": "SHRAPToken",
+ "symbol": "SHRAP",
+ "marketCap": "560678.818574319898283465",
+ "price": "0.00036210205795185118",
+ "priceChange24hPercent": "0",
+ "volume24h": "4395.402476584344908095",
+ "communityRecognized": false,
+ "key": "evm--43114:0xd402298a793948698b9a63311404fbbee944eafd",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Avalanche",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/avalanche.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--43114",
+ "address": "0x5947bb275c521040051d82396192181b413227a3",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--43114/tokens/address-0x5947bb275c521040051d82396192181b413227a3.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--43114/tokens/address-0x5947bb275c521040051d82396192181b413227a3.png"
+ ],
+ "name": "Chainlink Token",
+ "symbol": "LINK.e",
+ "marketCap": "4632345.710475913410945382",
+ "price": "12.63704353396364581009",
+ "priceChange24hPercent": "-1.68",
+ "volume24h": "7811.5954043533366691",
+ "communityRecognized": true,
+ "key": "evm--43114:0x5947bb275c521040051d82396192181b413227a3",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Avalanche",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/avalanche.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--43114",
+ "address": "0x88f89be3e9b1dc1c5f208696fb9cabfcc684bd5f",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--43114/tokens/address-0x88f89be3e9b1dc1c5f208696fb9cabfcc684bd5f.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--43114/tokens/address-0x88f89be3e9b1dc1c5f208696fb9cabfcc684bd5f.png"
+ ],
+ "name": "Fold",
+ "symbol": "FLD",
+ "marketCap": "486370.770427068882955724",
+ "price": "0.00035683517627626765",
+ "priceChange24hPercent": "0.75",
+ "volume24h": "1786.10243148749699034",
+ "communityRecognized": false,
+ "key": "evm--43114:0x88f89be3e9b1dc1c5f208696fb9cabfcc684bd5f",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Avalanche",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/avalanche.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--43114",
+ "address": "0x4f94b8aef08c92fefe416af073f1df1e284438ec",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--43114/tokens/address-0x4f94b8aef08c92fefe416af073f1df1e284438ec.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--43114/tokens/address-0x4f94b8aef08c92fefe416af073f1df1e284438ec.png"
+ ],
+ "name": "Landwolf",
+ "symbol": "WOLF",
+ "marketCap": "127356.513327389673901219",
+ "price": "0.00000023155890858287",
+ "priceChange24hPercent": "1.39",
+ "volume24h": "2681.845990630685833835",
+ "communityRecognized": false,
+ "key": "evm--43114:0x4f94b8aef08c92fefe416af073f1df1e284438ec",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Avalanche",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/avalanche.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--43114",
+ "address": "0xffff003a6bad9b743d658048742935fffe2b6ed7",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--43114/tokens/address-0xffff003a6bad9b743d658048742935fffe2b6ed7-1757667111630.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--43114/tokens/address-0xffff003a6bad9b743d658048742935fffe2b6ed7-1757667111630.png"
+ ],
+ "name": "yellow ket",
+ "symbol": "KET",
+ "marketCap": "711520.52589374009041036",
+ "price": "0.0007115472109502123",
+ "priceChange24hPercent": "4.26",
+ "volume24h": "1521.153525166249580698",
+ "communityRecognized": false,
+ "key": "evm--43114:0xffff003a6bad9b743d658048742935fffe2b6ed7",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Avalanche",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/avalanche.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--43114",
+ "address": "0x9209e7ebd056d72c5996220e99df6049253debcf",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--43114/tokens/address-0x9209e7ebd056d72c5996220e99df6049253debcf-1757718012130.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--43114/tokens/address-0x9209e7ebd056d72c5996220e99df6049253debcf-1757718012130.png"
+ ],
+ "name": "MEOW",
+ "symbol": "MEOW",
+ "marketCap": "105537.075722204254040689",
+ "price": "0.00001055370758072729",
+ "priceChange24hPercent": "15.9",
+ "volume24h": "1722.261710175851237775",
+ "communityRecognized": false,
+ "key": "evm--43114:0x9209e7ebd056d72c5996220e99df6049253debcf",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Avalanche",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/avalanche.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--43114",
+ "address": "0x62edc0692bd897d2295872a9ffcac5425011c661",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--43114/tokens/address-0x62edc0692bd897d2295872a9ffcac5425011c661.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--43114/tokens/address-0x62edc0692bd897d2295872a9ffcac5425011c661.png"
+ ],
+ "name": "GMX",
+ "symbol": "GMX",
+ "marketCap": "5346776.126771555345973126",
+ "price": "8.48673387044177637046",
+ "priceChange24hPercent": "5.84",
+ "volume24h": "816.122351010094094312",
+ "communityRecognized": true,
+ "key": "evm--43114:0x62edc0692bd897d2295872a9ffcac5425011c661",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Avalanche",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/avalanche.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--43114",
+ "address": "0xb2f85b7ab3c2b6f62df06de6ae7d09c010a5096e",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--43114/tokens/address-0xb2f85b7ab3c2b6f62df06de6ae7d09c010a5096e-1721961429011.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--43114/tokens/address-0xb2f85b7ab3c2b6f62df06de6ae7d09c010a5096e-1721961429011.png"
+ ],
+ "name": "XSGD",
+ "symbol": "XSGD",
+ "marketCap": "1263573.110021113759427558",
+ "price": "0.78919730708875688877",
+ "priceChange24hPercent": "0.09",
+ "volume24h": "1413.558287",
+ "communityRecognized": true,
+ "key": "evm--43114:0xb2f85b7ab3c2b6f62df06de6ae7d09c010a5096e",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Avalanche",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/avalanche.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--43114",
+ "address": "0xacfb898cff266e53278cc0124fc2c7c94c8cb9a5",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--43114/tokens/address-0xacfb898cff266e53278cc0124fc2c7c94c8cb9a5.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--43114/tokens/address-0xacfb898cff266e53278cc0124fc2c7c94c8cb9a5.png"
+ ],
+ "name": "AVAX HAS NO CHILL",
+ "symbol": "NOCHILL",
+ "marketCap": "385620.427433343057973613",
+ "price": "0.00024900424720456078",
+ "priceChange24hPercent": "-0.35",
+ "volume24h": "6478.543914348844115566",
+ "communityRecognized": false,
+ "key": "evm--43114:0xacfb898cff266e53278cc0124fc2c7c94c8cb9a5",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Avalanche",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/avalanche.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0xe7c3d8c9a439fede00d2600032d5db0be71c3c29",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0xe7c3d8c9a439fede00d2600032d5db0be71c3c29-1761559288530.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0xe7c3d8c9a439fede00d2600032d5db0be71c3c29-1761559288530.png"
+ ],
+ "name": "JPY Coin",
+ "symbol": "JPYC",
+ "marketCap": "24443427.601717534211631843",
+ "price": "0.00649970907167416028",
+ "priceChange24hPercent": "1.78",
+ "volume24h": "378929.9695847574586729",
+ "communityRecognized": false,
+ "key": "evm--137:0xe7c3d8c9a439fede00d2600032d5db0be71c3c29",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0x1bdf71ede1a4777db1eebe7232bcda20d6fc1610",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0x1bdf71ede1a4777db1eebe7232bcda20d6fc1610-1757692869876.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0x1bdf71ede1a4777db1eebe7232bcda20d6fc1610-1757692869876.png"
+ ],
+ "name": "WhaleBit",
+ "symbol": "CES",
+ "marketCap": "102629513.761082236269134959",
+ "price": "0.24313139727854461669",
+ "priceChange24hPercent": "-4.15",
+ "volume24h": "1304681.84536358105",
+ "communityRecognized": true,
+ "key": "evm--137:0x1bdf71ede1a4777db1eebe7232bcda20d6fc1610",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0x98965474ecbec2f532f1f780ee37b0b05f77ca55",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0x98965474ecbec2f532f1f780ee37b0b05f77ca55-1757693116824.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0x98965474ecbec2f532f1f780ee37b0b05f77ca55-1757693116824.png"
+ ],
+ "name": "SUPER TRUST",
+ "symbol": "SUT",
+ "marketCap": "112734150.636696368984956195",
+ "price": "0.59836474382660707829",
+ "priceChange24hPercent": "1.99",
+ "volume24h": "179296.95892849074960358",
+ "communityRecognized": false,
+ "key": "evm--137:0x98965474ecbec2f532f1f780ee37b0b05f77ca55",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0x3bf668fe1ec79a84ca8481cead5dbb30d61cc685",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0x3bf668fe1ec79a84ca8481cead5dbb30d61cc685-1757692891566.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0x3bf668fe1ec79a84ca8481cead5dbb30d61cc685-1757692891566.png"
+ ],
+ "name": "teleBTC",
+ "symbol": "TELEBTC",
+ "marketCap": "180294.530846634627591488",
+ "price": "78712.60019609620443291212",
+ "priceChange24hPercent": "-0.91",
+ "volume24h": "375842.66950768640061206",
+ "communityRecognized": false,
+ "key": "evm--137:0x3bf668fe1ec79a84ca8481cead5dbb30d61cc685",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0x6631ee651da438db2be611b5a44dfe2ca04590c5",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/8356346777831140edc501f7c039ec2abceb49e4ee845cb86f3053a51d691863",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/8356346777831140edc501f7c039ec2abceb49e4ee845cb86f3053a51d691863"
+ ],
+ "name": "A",
+ "symbol": "A",
+ "marketCap": "147914423.723158144923750494",
+ "price": "0.98760879831624551039",
+ "priceChange24hPercent": "0.91",
+ "volume24h": "89473.172987249119406353",
+ "communityRecognized": false,
+ "key": "evm--137:0x6631ee651da438db2be611b5a44dfe2ca04590c5",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0xdc3326e71d45186f113a2f448984ca0e8d201995",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0xdc3326e71d45186f113a2f448984ca0e8d201995.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0xdc3326e71d45186f113a2f448984ca0e8d201995.png"
+ ],
+ "name": "XSGD",
+ "symbol": "XSGD",
+ "marketCap": "1680261.629252040113109561",
+ "price": "0.78861799537956301873",
+ "priceChange24hPercent": "-0.06",
+ "volume24h": "211012.52206829138374914",
+ "communityRecognized": true,
+ "key": "evm--137:0xdc3326e71d45186f113a2f448984ca0e8d201995",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0xac0f66379a6d7801d7726d5a943356a172549adb",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0xac0f66379a6d7801d7726d5a943356a172549adb.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0xac0f66379a6d7801d7726d5a943356a172549adb.png"
+ ],
+ "name": "Geodnet Token",
+ "symbol": "GEOD",
+ "marketCap": "101221600.002375794954718207",
+ "price": "0.22765667658969214727",
+ "priceChange24hPercent": "0.22",
+ "volume24h": "63995.6749818880004997",
+ "communityRecognized": true,
+ "key": "evm--137:0xac0f66379a6d7801d7726d5a943356a172549adb",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0x4c18406fa690faa53e5efa899a971557251af72d",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0x4c18406fa690faa53e5efa899a971557251af72d-1770631371215.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0x4c18406fa690faa53e5efa899a971557251af72d-1770631371215.png"
+ ],
+ "name": "InfinityDAO",
+ "symbol": "IDL",
+ "marketCap": "7764484.414290576852370746",
+ "price": "0.39868965419877236516",
+ "priceChange24hPercent": "-4.24",
+ "volume24h": "38890.76460666058",
+ "communityRecognized": false,
+ "key": "evm--137:0x4c18406fa690faa53e5efa899a971557251af72d",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0xd93f7e271cb87c23aaa73edc008a79646d1f9912",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0xd93f7e271cb87c23aaa73edc008a79646d1f9912.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0xd93f7e271cb87c23aaa73edc008a79646d1f9912.png"
+ ],
+ "name": "Wrapped SOL",
+ "symbol": "SOL",
+ "marketCap": "1629401.414467845901680993",
+ "price": "103.99812231108721101388",
+ "priceChange24hPercent": "-1.69",
+ "volume24h": "13237.532530053866677387",
+ "communityRecognized": false,
+ "key": "evm--137:0xd93f7e271cb87c23aaa73edc008a79646d1f9912",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0xd2e57e7019a8faea8b3e4a3738ee5b269975008a",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0xd2e57e7019a8faea8b3e4a3738ee5b269975008a-1729570500059.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0xd2e57e7019a8faea8b3e4a3738ee5b269975008a-1729570500059.png"
+ ],
+ "name": "THAT",
+ "symbol": "THAT",
+ "marketCap": "1213724.432332450646864224",
+ "price": "0.0022528796377803397",
+ "priceChange24hPercent": "0.03",
+ "volume24h": "16281.203418",
+ "communityRecognized": false,
+ "key": "evm--137:0xd2e57e7019a8faea8b3e4a3738ee5b269975008a",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0xc9bef791701d868f34bd7f918f169af72ccb83bc",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/f46fc270d9b2a625d60dd58f5ded27ffbb202ba1909d5017df55876dbaa4417e",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/f46fc270d9b2a625d60dd58f5ded27ffbb202ba1909d5017df55876dbaa4417e"
+ ],
+ "name": "Jztcoin",
+ "symbol": "JZT",
+ "marketCap": "103885175.005882781271357985",
+ "price": "0.10388517500588278127",
+ "priceChange24hPercent": "0.24",
+ "volume24h": "4241.60504285033",
+ "communityRecognized": false,
+ "key": "evm--137:0xc9bef791701d868f34bd7f918f169af72ccb83bc",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0xc708d6f2153933daa50b2d0758955be0a93a8fec",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0xc708d6f2153933daa50b2d0758955be0a93a8fec.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0xc708d6f2153933daa50b2d0758955be0a93a8fec.png"
+ ],
+ "name": "Verse (FXERC20)",
+ "symbol": "fxVERSE",
+ "marketCap": "337094.927500264884231456",
+ "price": "0.0000171890708635654",
+ "priceChange24hPercent": "-20.49",
+ "volume24h": "5935.560076611679619862",
+ "communityRecognized": false,
+ "key": "evm--137:0xc708d6f2153933daa50b2d0758955be0a93a8fec",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0x933479ba627356f7efaba030504bf1c65cffca5a",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0x933479ba627356f7efaba030504bf1c65cffca5a-1776852016386.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0x933479ba627356f7efaba030504bf1c65cffca5a-1776852016386.png"
+ ],
+ "name": "Cortik AI",
+ "symbol": "CTK",
+ "marketCap": "200208.031194181372843309",
+ "price": "6.33860989014828276117",
+ "priceChange24hPercent": "0.22",
+ "volume24h": "19162.29167309012",
+ "communityRecognized": false,
+ "key": "evm--137:0x933479ba627356f7efaba030504bf1c65cffca5a",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0xed39e7bf06e946007a44b29b85a329311bbc3dc2",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/4a563ac1c0cd1b7ed43429ee1ad5750a8ca22c0eaaa08d0427a8a86e8a2348f0",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/4a563ac1c0cd1b7ed43429ee1ad5750a8ca22c0eaaa08d0427a8a86e8a2348f0"
+ ],
+ "name": "FishFi",
+ "symbol": "FFI",
+ "marketCap": "40151994.904488677658932914",
+ "price": "3.65018135495351615081",
+ "priceChange24hPercent": "-6.05",
+ "volume24h": "9927.96153215194",
+ "communityRecognized": false,
+ "key": "evm--137:0xed39e7bf06e946007a44b29b85a329311bbc3dc2",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0xdf7837de1f2fa4631d716cf2502f8b230f1dcc32",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0xdf7837de1f2fa4631d716cf2502f8b230f1dcc32.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0xdf7837de1f2fa4631d716cf2502f8b230f1dcc32.png"
+ ],
+ "name": "Telcoin (PoS)",
+ "symbol": "TEL",
+ "marketCap": "63446531.295290128142852777",
+ "price": "0.00169521049094186295",
+ "priceChange24hPercent": "-1.73",
+ "volume24h": "98668.395133089760587077",
+ "communityRecognized": true,
+ "key": "evm--137:0xdf7837de1f2fa4631d716cf2502f8b230f1dcc32",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0x0566c506477cd2d8df4e0123512dbc344bd9d111",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0x0566c506477cd2d8df4e0123512dbc344bd9d111-1721961418666.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0x0566c506477cd2d8df4e0123512dbc344bd9d111-1721961418666.png"
+ ],
+ "name": "MyLovelyCoin",
+ "symbol": "MLC",
+ "marketCap": "1775925.02719985815247497",
+ "price": "0.01841069064345258363",
+ "priceChange24hPercent": "-2.56",
+ "volume24h": "9247.88110333296",
+ "communityRecognized": true,
+ "key": "evm--137:0x0566c506477cd2d8df4e0123512dbc344bd9d111",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0x8a16d4bf8a0a716017e8d2262c4ac32927797a2f",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0x8a16d4bf8a0a716017e8d2262c4ac32927797a2f.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0x8a16d4bf8a0a716017e8d2262c4ac32927797a2f.png"
+ ],
+ "name": "ViciCoin",
+ "symbol": "VCNT",
+ "marketCap": "56341672.339934344824973497",
+ "price": "18.4917285984225713782",
+ "priceChange24hPercent": "-1.27",
+ "volume24h": "41761.36943407185",
+ "communityRecognized": false,
+ "key": "evm--137:0x8a16d4bf8a0a716017e8d2262c4ac32927797a2f",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0xd9d12f43918363cea1c0b62d16f1f81b8eae91e0",
+ "logoUrl": "https://static.oklink.com/cdn/web3/currency/token/large/137-0xd9d12f43918363cea1c0b62d16f1f81b8eae91e0-106/type=default_90_0?v=1788826922914",
+ "logoUrls": [
+ "https://static.oklink.com/cdn/web3/currency/token/large/137-0xd9d12f43918363cea1c0b62d16f1f81b8eae91e0-106/type=default_90_0?v=1788826922914"
+ ],
+ "name": "Auralith",
+ "symbol": "AURA",
+ "marketCap": "8175246.762813974855121683",
+ "price": "0.96152262286196505172",
+ "priceChange24hPercent": "-1.49",
+ "volume24h": "236865.10165131641850403",
+ "communityRecognized": false,
+ "key": "evm--137:0xd9d12f43918363cea1c0b62d16f1f81b8eae91e0",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0x6a92b1e99de09f71cd96bc91f934826d96b8b26e",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0x6a92b1e99de09f71cd96bc91f934826d96b8b26e-1757693028865.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0x6a92b1e99de09f71cd96bc91f934826d96b8b26e-1757693028865.png"
+ ],
+ "name": "AS Token",
+ "symbol": "AS",
+ "marketCap": "161591045.868495256456006356",
+ "price": "0.63424647922090259007",
+ "priceChange24hPercent": "-0.97",
+ "volume24h": "455094.619350416123658208",
+ "communityRecognized": false,
+ "key": "evm--137:0x6a92b1e99de09f71cd96bc91f934826d96b8b26e",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0x4ed141110f6eeeaba9a1df36d8c26f684d2475dc",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0x4ed141110f6eeeaba9a1df36d8c26f684d2475dc.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0x4ed141110f6eeeaba9a1df36d8c26f684d2475dc.png"
+ ],
+ "name": "BRZ Token",
+ "symbol": "BRZ",
+ "marketCap": "10893038.176603565874588272",
+ "price": "0.19270249392855010706",
+ "priceChange24hPercent": "-0.39",
+ "volume24h": "36244.68212224468",
+ "communityRecognized": false,
+ "key": "evm--137:0x4ed141110f6eeeaba9a1df36d8c26f684d2475dc",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0xd6df932a45c0f255f85145f286ea0b292b21c90b",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0xd6df932a45c0f255f85145f286ea0b292b21c90b.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0xd6df932a45c0f255f85145f286ea0b292b21c90b.png"
+ ],
+ "name": "Aave",
+ "symbol": "AAVE",
+ "marketCap": "7925094.280157481218873094",
+ "price": "131.07000397014700417932",
+ "priceChange24hPercent": "-1.92",
+ "volume24h": "372659.022683112303797195",
+ "communityRecognized": true,
+ "key": "evm--137:0xd6df932a45c0f255f85145f286ea0b292b21c90b",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0x53e0bca35ec356bd5dddfebbd1fc0fd03fabad39",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0x53e0bca35ec356bd5dddfebbd1fc0fd03fabad39.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0x53e0bca35ec356bd5dddfebbd1fc0fd03fabad39.png"
+ ],
+ "name": "ChainLink Token",
+ "symbol": "LINK",
+ "marketCap": "14336666.92152876537317919",
+ "price": "12.63533410905304877436",
+ "priceChange24hPercent": "-3.5",
+ "volume24h": "1126364.749121072490224238",
+ "communityRecognized": true,
+ "key": "evm--137:0x53e0bca35ec356bd5dddfebbd1fc0fd03fabad39",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0x2c72d25530191ebd244eb6325e1892480b0e6e28",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0x2c72d25530191ebd244eb6325e1892480b0e6e28-1769767410884.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0x2c72d25530191ebd244eb6325e1892480b0e6e28-1769767410884.png"
+ ],
+ "name": "AI Powered Finance",
+ "symbol": "AIPF",
+ "marketCap": "26979395.425896153684254366",
+ "price": "0.39361791408640350877",
+ "priceChange24hPercent": "-2.64",
+ "volume24h": "233099.419427171168378844",
+ "communityRecognized": true,
+ "key": "evm--137:0x2c72d25530191ebd244eb6325e1892480b0e6e28",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0xb33eaad8d922b1083446dc23f610c2567fb5180f",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0xb33eaad8d922b1083446dc23f610c2567fb5180f.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0xb33eaad8d922b1083446dc23f610c2567fb5180f.png"
+ ],
+ "name": "Uniswap",
+ "symbol": "UNI",
+ "marketCap": "1777734.344075039053059514",
+ "price": "6.99266360721089294278",
+ "priceChange24hPercent": "-0.12",
+ "volume24h": "92219.258252572105310516",
+ "communityRecognized": true,
+ "key": "evm--137:0xb33eaad8d922b1083446dc23f610c2567fb5180f",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0x99a57e6c8558bc6689f894e068733adf83c19725",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/c55d204e4397b89a633b73082f8a820e85de339ca73c738b068520e2cd47d038",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/c55d204e4397b89a633b73082f8a820e85de339ca73c738b068520e2cd47d038"
+ ],
+ "name": "Staked Longinus",
+ "symbol": "sLGNS",
+ "marketCap": "6217549229.371844468571077015",
+ "price": "1.08799261886958409834",
+ "priceChange24hPercent": "-3.24",
+ "volume24h": "1519719.321346947782180448",
+ "communityRecognized": false,
+ "key": "evm--137:0x99a57e6c8558bc6689f894e068733adf83c19725",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0xcc44674022a792794d219847362bb95c661937a9",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0xcc44674022a792794d219847362bb95c661937a9-1757692998946.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0xcc44674022a792794d219847362bb95c661937a9-1757692998946.png"
+ ],
+ "name": "ROUTINE COIN",
+ "symbol": "ROU",
+ "marketCap": "188711.722946753915506629",
+ "price": "0.00028370879872665185",
+ "priceChange24hPercent": "-4.41",
+ "volume24h": "3757.85126636235",
+ "communityRecognized": false,
+ "key": "evm--137:0xcc44674022a792794d219847362bb95c661937a9",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0x430ef9263e76dae63c84292c3409d61c598e9682",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0x430ef9263e76dae63c84292c3409d61c598e9682.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0x430ef9263e76dae63c84292c3409d61c598e9682.png"
+ ],
+ "name": "PYR Token",
+ "symbol": "PYR",
+ "marketCap": "1005071.124072698028333448",
+ "price": "0.03265167502379426382",
+ "priceChange24hPercent": "34.3",
+ "volume24h": "16518.537816004412364916",
+ "communityRecognized": true,
+ "key": "evm--137:0x430ef9263e76dae63c84292c3409d61c598e9682",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0x172370d5cd63279efa6d502dab29171933a610af",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0x172370d5cd63279efa6d502dab29171933a610af.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0x172370d5cd63279efa6d502dab29171933a610af.png"
+ ],
+ "name": "curve dao token",
+ "symbol": "CRV",
+ "marketCap": "1632290.197175355485953284",
+ "price": "0.36467997347744169385",
+ "priceChange24hPercent": "-6.2",
+ "volume24h": "15649.326606170294008422",
+ "communityRecognized": true,
+ "key": "evm--137:0x172370d5cd63279efa6d502dab29171933a610af",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0x18ec0a6e18e5bc3784fdd3a3634b31245ab704f6",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0x18ec0a6e18e5bc3784fdd3a3634b31245ab704f6.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0x18ec0a6e18e5bc3784fdd3a3634b31245ab704f6.png"
+ ],
+ "name": "Monerium EUR emoney",
+ "symbol": "EURe",
+ "marketCap": "2107339.13481401694897234",
+ "price": "1.16186481",
+ "priceChange24hPercent": "0.01",
+ "volume24h": "24446.649281",
+ "communityRecognized": false,
+ "key": "evm--137:0x18ec0a6e18e5bc3784fdd3a3634b31245ab704f6",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0xc011a7e12a19f7b1f670d46f03b03f3342e82dfb",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/bd9eb6b1c9281d45ba248e79adcd6eb734bcfe50ec6c606e8d4bec8bcfe8e4bb",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/bd9eb6b1c9281d45ba248e79adcd6eb734bcfe50ec6c606e8d4bec8bcfe8e4bb"
+ ],
+ "name": "Polymarket USD",
+ "symbol": "pUSD",
+ "marketCap": "174225527.44245581151656545",
+ "price": "0.999879000362998911",
+ "priceChange24hPercent": "-0.02",
+ "volume24h": "17146.57184952069811786",
+ "communityRecognized": false,
+ "key": "evm--137:0xc011a7e12a19f7b1f670d46f03b03f3342e82dfb",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0x1c954e8fe737f99f68fa1ccda3e51ebdb291948c",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0x1c954e8fe737f99f68fa1ccda3e51ebdb291948c.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0x1c954e8fe737f99f68fa1ccda3e51ebdb291948c.png"
+ ],
+ "name": "Kyber Network Crystal v2",
+ "symbol": "KNC",
+ "marketCap": "319991.204475614624164736",
+ "price": "0.12646029937468362759",
+ "priceChange24hPercent": "7.19",
+ "volume24h": "1634.077855756275789091",
+ "communityRecognized": true,
+ "key": "evm--137:0x1c954e8fe737f99f68fa1ccda3e51ebdb291948c",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0xf4c3fac9c98aa62474998e299495b699dfdb00eb",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0xf4c3fac9c98aa62474998e299495b699dfdb00eb-1766311205275.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0xf4c3fac9c98aa62474998e299495b699dfdb00eb-1766311205275.png"
+ ],
+ "name": "HandlPay",
+ "symbol": "HANDL",
+ "marketCap": "95106.495491580299944677",
+ "price": "0.00241294177343791",
+ "priceChange24hPercent": "2.94",
+ "volume24h": "9972.561676",
+ "communityRecognized": true,
+ "key": "evm--137:0xf4c3fac9c98aa62474998e299495b699dfdb00eb",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0xc3c7d422809852031b44ab29eec9f1eff2a58756",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0xc3c7d422809852031b44ab29eec9f1eff2a58756.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0xc3c7d422809852031b44ab29eec9f1eff2a58756.png"
+ ],
+ "name": "Lido DAO Token (PoS)",
+ "symbol": "LDO",
+ "marketCap": "533915.584611736806529973",
+ "price": "0.39343641401252841635",
+ "priceChange24hPercent": "-2.86",
+ "volume24h": "25444.699578472942619294",
+ "communityRecognized": true,
+ "key": "evm--137:0xc3c7d422809852031b44ab29eec9f1eff2a58756",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0x27ab6e82f3458edbc0703db2756391b899ce6324",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0x27ab6e82f3458edbc0703db2756391b899ce6324.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0x27ab6e82f3458edbc0703db2756391b899ce6324.png"
+ ],
+ "name": "Reental Utility Token",
+ "symbol": "RNT",
+ "marketCap": "40768758.309536211064381903",
+ "price": "0.31065252673961887536",
+ "priceChange24hPercent": "0.18",
+ "volume24h": "7861.27767933122",
+ "communityRecognized": true,
+ "key": "evm--137:0x27ab6e82f3458edbc0703db2756391b899ce6324",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0x6f8a06447ff6fcf75d803135a7de15ce88c1d4ec",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/a00a8ff95e7fdc663ced70cf56892ebf868d03ab715855d8e94b18952ed5f3f4",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/a00a8ff95e7fdc663ced70cf56892ebf868d03ab715855d8e94b18952ed5f3f4"
+ ],
+ "name": "SHIBA INU (PoS)",
+ "symbol": "SHIB",
+ "marketCap": "203707.014880439518407575",
+ "price": "0.00000538316177093019",
+ "priceChange24hPercent": "-0.97",
+ "volume24h": "949.967990101380912705",
+ "communityRecognized": false,
+ "key": "evm--137:0x6f8a06447ff6fcf75d803135a7de15ce88c1d4ec",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0xb5c064f955d8e7f38fe0460c556a72987494ee17",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0xb5c064f955d8e7f38fe0460c556a72987494ee17.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0xb5c064f955d8e7f38fe0460c556a72987494ee17.png"
+ ],
+ "name": "QuickSwap",
+ "symbol": "QUICK",
+ "marketCap": "7524643.243810049637406575",
+ "price": "0.00916038114628262619",
+ "priceChange24hPercent": "2.1",
+ "volume24h": "89692.065188141946365769",
+ "communityRecognized": true,
+ "key": "evm--137:0xb5c064f955d8e7f38fe0460c556a72987494ee17",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0xbbba073c31bf03b8acf7c28ef0738decf3695683",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0xbbba073c31bf03b8acf7c28ef0738decf3695683.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0xbbba073c31bf03b8acf7c28ef0738decf3695683.png"
+ ],
+ "name": "SAND",
+ "symbol": "SAND",
+ "marketCap": "5368070.133602941054486424",
+ "price": "0.04046327753985329944",
+ "priceChange24hPercent": "1.6",
+ "volume24h": "10990.380283016228635886",
+ "communityRecognized": true,
+ "key": "evm--137:0xbbba073c31bf03b8acf7c28ef0738decf3695683",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0xf0949dd87d2531d665010d6274f06a357669457a",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0xf0949dd87d2531d665010d6274f06a357669457a-1721961418666.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0xf0949dd87d2531d665010d6274f06a357669457a-1721961418666.png"
+ ],
+ "name": "RealityMetaverse(PoS)",
+ "symbol": "RMV",
+ "marketCap": "1537686.7863105487370292",
+ "price": "0.00222659193270916736",
+ "priceChange24hPercent": "-2.76",
+ "volume24h": "9719.89736233264316366",
+ "communityRecognized": true,
+ "key": "evm--137:0xf0949dd87d2531d665010d6274f06a357669457a",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0x311434160d7537be358930def317afb606c0d737",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0x311434160d7537be358930def317afb606c0d737.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0x311434160d7537be358930def317afb606c0d737.png"
+ ],
+ "name": "Nakamoto.Games",
+ "symbol": "NAKA",
+ "marketCap": "3863093.748395067016982722",
+ "price": "0.05944659072950479471",
+ "priceChange24hPercent": "11.82",
+ "volume24h": "15351.414858775582765892",
+ "communityRecognized": true,
+ "key": "evm--137:0x311434160d7537be358930def317afb606c0d737",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0xab5f7a0e20b0d056aed4aa4528c78da45be7308b",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0xab5f7a0e20b0d056aed4aa4528c78da45be7308b.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0xab5f7a0e20b0d056aed4aa4528c78da45be7308b.png"
+ ],
+ "name": "Imported GBYTE",
+ "symbol": "GBYTE",
+ "marketCap": "265999.108767073581311922",
+ "price": "4.86808970602870897656",
+ "priceChange24hPercent": "21.39",
+ "volume24h": "3283.07921988381600935",
+ "communityRecognized": false,
+ "key": "evm--137:0xab5f7a0e20b0d056aed4aa4528c78da45be7308b",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0xcccf7c6552437ab1504c384c6ed4501daa3a9ac6",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0xcccf7c6552437ab1504c384c6ed4501daa3a9ac6-1757692857151.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0xcccf7c6552437ab1504c384c6ed4501daa3a9ac6-1757692857151.png"
+ ],
+ "name": "ATT",
+ "symbol": "ATT",
+ "marketCap": "2505892.116499737696669608",
+ "price": "0.02001898358516549649",
+ "priceChange24hPercent": "-13.81",
+ "volume24h": "2138.01819166864",
+ "communityRecognized": false,
+ "key": "evm--137:0xcccf7c6552437ab1504c384c6ed4501daa3a9ac6",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0xb87904db461005fc716a6bf9f2d451c33b10b80b",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0xb87904db461005fc716a6bf9f2d451c33b10b80b.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0xb87904db461005fc716a6bf9f2d451c33b10b80b.png"
+ ],
+ "name": "Alongside Crypto Market Index (PoS)",
+ "symbol": "AMKT",
+ "marketCap": "129468.940392048431255964",
+ "price": "216.59924970203585765505",
+ "priceChange24hPercent": "25.08",
+ "volume24h": "882.7013922958899824",
+ "communityRecognized": false,
+ "key": "evm--137:0xb87904db461005fc716a6bf9f2d451c33b10b80b",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0x7abe9edf5c544a04da83e9110cf46dbc4759170c",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0x7abe9edf5c544a04da83e9110cf46dbc4759170c-1728440100060.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0x7abe9edf5c544a04da83e9110cf46dbc4759170c-1728440100060.png"
+ ],
+ "name": "WPAY",
+ "symbol": "WPAY",
+ "marketCap": "7211833.075816483922910751",
+ "price": "0.60503579591201138981",
+ "priceChange24hPercent": "9.88",
+ "volume24h": "2764.9149461819010113",
+ "communityRecognized": false,
+ "key": "evm--137:0x7abe9edf5c544a04da83e9110cf46dbc4759170c",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0xf50d05a1402d0adafa880d36050736f9f6ee7dee",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0xf50d05a1402d0adafa880d36050736f9f6ee7dee.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0xf50d05a1402d0adafa880d36050736f9f6ee7dee.png"
+ ],
+ "name": "Fluid",
+ "symbol": "FLUID",
+ "marketCap": "767312.86492979727622853",
+ "price": "1.27934685981064854389",
+ "priceChange24hPercent": "0.45",
+ "volume24h": "4250.197580896204618222",
+ "communityRecognized": true,
+ "key": "evm--137:0xf50d05a1402d0adafa880d36050736f9f6ee7dee",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0x0dc4f92879b7670e5f4e4e6e3c801d229129d90d",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0x0dc4f92879b7670e5f4e4e6e3c801d229129d90d-1773050503107.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0x0dc4f92879b7670e5f4e4e6e3c801d229129d90d-1773050503107.png"
+ ],
+ "name": "Peso Argentino",
+ "symbol": "wARS",
+ "marketCap": "28427.179181669618007468",
+ "price": "0.00063847003875",
+ "priceChange24hPercent": "0.69",
+ "volume24h": "1498.936076",
+ "communityRecognized": false,
+ "key": "evm--137:0x0dc4f92879b7670e5f4e4e6e3c801d229129d90d",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0x553d3d295e0f695b9228246232edf400ed3560b5",
+ "logoUrl": "https://static.oklink.com/cdn/web3/currency/token/large/137-0x553d3d295e0f695b9228246232edf400ed3560b5-106/type=default_90_0?v=1788805445791",
+ "logoUrls": [
+ "https://static.oklink.com/cdn/web3/currency/token/large/137-0x553d3d295e0f695b9228246232edf400ed3560b5-106/type=default_90_0?v=1788805445791"
+ ],
+ "name": "Paxos Gold (PoS)",
+ "symbol": "PAXG",
+ "marketCap": "804423.012897933116798528",
+ "price": "4407.33738931006301199162",
+ "priceChange24hPercent": "0.2",
+ "volume24h": "1547.194813945001682021",
+ "communityRecognized": false,
+ "key": "evm--137:0x553d3d295e0f695b9228246232edf400ed3560b5",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0x14913815bcfde78baead2111f463d038ac9c2949",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0x14913815bcfde78baead2111f463d038ac9c2949-1768816960659.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0x14913815bcfde78baead2111f463d038ac9c2949-1768816960659.png"
+ ],
+ "name": "eUSD",
+ "symbol": "eUSD",
+ "marketCap": "3057456.026641190015510061",
+ "price": "1.00000236361805634015",
+ "priceChange24hPercent": "0",
+ "volume24h": "47624.141951",
+ "communityRecognized": false,
+ "key": "evm--137:0x14913815bcfde78baead2111f463d038ac9c2949",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0xe6a537a407488807f0bbeb0038b79004f19dddfb",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0xe6a537a407488807f0bbeb0038b79004f19dddfb-1725521400084.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0xe6a537a407488807f0bbeb0038b79004f19dddfb-1725521400084.png"
+ ],
+ "name": "BRLA Token",
+ "symbol": "BRLA",
+ "marketCap": "3584698.967294983318620213",
+ "price": "0.19257686861903408893",
+ "priceChange24hPercent": "-0.32",
+ "volume24h": "74590.4269478271",
+ "communityRecognized": false,
+ "key": "evm--137:0xe6a537a407488807f0bbeb0038b79004f19dddfb",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0xa3fa99a148fa48d14ed51d610c367c61876997f1",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0xa3fa99a148fa48d14ed51d610c367c61876997f1.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0xa3fa99a148fa48d14ed51d610c367c61876997f1.png"
+ ],
+ "name": "miMATIC",
+ "symbol": "miMATIC",
+ "marketCap": "209540954.899823010123377089",
+ "price": "0.97797561746716640383",
+ "priceChange24hPercent": "-5.29",
+ "volume24h": "2621.434429264317203446",
+ "communityRecognized": false,
+ "key": "evm--137:0xa3fa99a148fa48d14ed51d610c367c61876997f1",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0x7919f27cc85f99dec8b98325aca5287f9f769f38",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/8356346777831140edc501f7c039ec2abceb49e4ee845cb86f3053a51d691863",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/8356346777831140edc501f7c039ec2abceb49e4ee845cb86f3053a51d691863"
+ ],
+ "name": "ATXM Token",
+ "symbol": "ATXM",
+ "marketCap": "120871850.777688071932167767",
+ "price": "0.0577684664504925428",
+ "priceChange24hPercent": "-7.88",
+ "volume24h": "2184.55906950711019684",
+ "communityRecognized": false,
+ "key": "evm--137:0x7919f27cc85f99dec8b98325aca5287f9f769f38",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0x3a58a54c066fdc0f2d55fc9c89f0415c92ebf3c4",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0x3a58a54c066fdc0f2d55fc9c89f0415c92ebf3c4.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0x3a58a54c066fdc0f2d55fc9c89f0415c92ebf3c4.png"
+ ],
+ "name": "Staked MATIC (PoS)",
+ "symbol": "stMATIC",
+ "marketCap": "221301.770339625262655507",
+ "price": "0.10988819050221397351",
+ "priceChange24hPercent": "-1.72",
+ "volume24h": "2131.575907257437975833",
+ "communityRecognized": false,
+ "key": "evm--137:0x3a58a54c066fdc0f2d55fc9c89f0415c92ebf3c4",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0x6966fec28ae7f598bd29c788def80f56ffa12de9",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/e866368e6e855438c7b2518700e7e474af19aaaeadb30238d768cce9a7e2c397",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/e866368e6e855438c7b2518700e7e474af19aaaeadb30238d768cce9a7e2c397"
+ ],
+ "name": "Universe Meta",
+ "symbol": "UVM",
+ "marketCap": "689258074.1728",
+ "price": "0.3820721032",
+ "priceChange24hPercent": "-0.39",
+ "volume24h": "2480.41063043085",
+ "communityRecognized": false,
+ "key": "evm--137:0x6966fec28ae7f598bd29c788def80f56ffa12de9",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0x831753dd7087cac61ab5644b308642cc1c33dc13",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0x831753dd7087cac61ab5644b308642cc1c33dc13.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0x831753dd7087cac61ab5644b308642cc1c33dc13.png"
+ ],
+ "name": "Quickswap",
+ "symbol": "QUICK",
+ "marketCap": "2307124.091562111597367649",
+ "price": "10.27437347767383872865",
+ "priceChange24hPercent": "-0.61",
+ "volume24h": "4698.980700192454526765",
+ "communityRecognized": false,
+ "key": "evm--137:0x831753dd7087cac61ab5644b308642cc1c33dc13",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0xd125443f38a69d776177c2b9c041f462936f8218",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0xd125443f38a69d776177c2b9c041f462936f8218.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0xd125443f38a69d776177c2b9c041f462936f8218.png"
+ ],
+ "name": "FireBotToken",
+ "symbol": "FBX",
+ "marketCap": "3511637.104177861931904335",
+ "price": "0.2690661506798128381",
+ "priceChange24hPercent": "-1.24",
+ "volume24h": "2508.1996708157244494",
+ "communityRecognized": false,
+ "key": "evm--137:0xd125443f38a69d776177c2b9c041f462936f8218",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0xc289a1684a04faaf926204235588f5fc1d5e458e",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/1d062e5bd8e6d1165f4447f433c63cacf60e76ce9d661d96db5f756dc1ca0457",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/1d062e5bd8e6d1165f4447f433c63cacf60e76ce9d661d96db5f756dc1ca0457"
+ ],
+ "name": "GreenSatoshiToken",
+ "symbol": "GST",
+ "marketCap": "181994.115046749758416666",
+ "price": "0.00620125666944444444",
+ "priceChange24hPercent": "-0.51",
+ "volume24h": "1540.16886779137",
+ "communityRecognized": false,
+ "key": "evm--137:0xc289a1684a04faaf926204235588f5fc1d5e458e",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0x1ef5bb23e0b91c2e8480a4a2b71feb4607cb32f1",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/849174a8bc7837a93979a42f2e648f146724ece15a8b1991a64bd6f4e474a229",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/849174a8bc7837a93979a42f2e648f146724ece15a8b1991a64bd6f4e474a229"
+ ],
+ "name": "SGT (PoS)",
+ "symbol": "SGT",
+ "marketCap": "448961.012318469197460172",
+ "price": "0.03242547213283691908",
+ "priceChange24hPercent": "-6.06",
+ "volume24h": "3131.761124894923162",
+ "communityRecognized": false,
+ "key": "evm--137:0x1ef5bb23e0b91c2e8480a4a2b71feb4607cb32f1",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0xba777ae3a3c91fcd83ef85bfe65410592bdd0f7c",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0xba777ae3a3c91fcd83ef85bfe65410592bdd0f7c.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0xba777ae3a3c91fcd83ef85bfe65410592bdd0f7c.png"
+ ],
+ "name": "BitCone",
+ "symbol": "CONE",
+ "marketCap": "104003.896663162580145981",
+ "price": "0.00000017706347855699",
+ "priceChange24hPercent": "4.41",
+ "volume24h": "527.7451109486741985",
+ "communityRecognized": false,
+ "key": "evm--137:0xba777ae3a3c91fcd83ef85bfe65410592bdd0f7c",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0x53df32548214f51821cf1fe4368109ac5ddea1ff",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0x53df32548214f51821cf1fe4368109ac5ddea1ff.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0x53df32548214f51821cf1fe4368109ac5ddea1ff.png"
+ ],
+ "name": "Sponge",
+ "symbol": "SPONGE",
+ "marketCap": "172322.383543185231737872",
+ "price": "0.00000114881589809985",
+ "priceChange24hPercent": "-4.84",
+ "volume24h": "593.3691890127008151",
+ "communityRecognized": false,
+ "key": "evm--137:0x53df32548214f51821cf1fe4368109ac5ddea1ff",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0x6a8ec2d9bfbdd20a7f5a4e89d640f7e7ceba4499",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0x6a8ec2d9bfbdd20a7f5a4e89d640f7e7ceba4499.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0x6a8ec2d9bfbdd20a7f5a4e89d640f7e7ceba4499.png"
+ ],
+ "name": "MSQUARE",
+ "symbol": "MSQ",
+ "marketCap": "2081660.121745083744123805",
+ "price": "0.08032202125921905467",
+ "priceChange24hPercent": "2.92",
+ "volume24h": "1202.35335206996444675",
+ "communityRecognized": false,
+ "key": "evm--137:0x6a8ec2d9bfbdd20a7f5a4e89d640f7e7ceba4499",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0x0b3f868e0be5597d5db7feb59e1cadbb0fdda50a",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0x0b3f868e0be5597d5db7feb59e1cadbb0fdda50a.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0x0b3f868e0be5597d5db7feb59e1cadbb0fdda50a.png"
+ ],
+ "name": "SushiToken",
+ "symbol": "SUSHI",
+ "marketCap": "147402.683670041922466216",
+ "price": "0.23836145014048635001",
+ "priceChange24hPercent": "-2.46",
+ "volume24h": "1041.264653946425273796",
+ "communityRecognized": true,
+ "key": "evm--137:0x0b3f868e0be5597d5db7feb59e1cadbb0fdda50a",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0xc2f3afa9d98c769c648bd19646392eeabb0e7a2c",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/6eca696379a0dfdff4d9537c6ca41b6d7c503f11595aaa0a4a5d349b386f23ec",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/6eca696379a0dfdff4d9537c6ca41b6d7c503f11595aaa0a4a5d349b386f23ec"
+ ],
+ "name": "CP CENTER POINT",
+ "symbol": "CP",
+ "marketCap": "792391.510735284724218539",
+ "price": "0.00005283696345598006",
+ "priceChange24hPercent": "0.28",
+ "volume24h": "531.42168406541",
+ "communityRecognized": false,
+ "key": "evm--137:0xc2f3afa9d98c769c648bd19646392eeabb0e7a2c",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0x692ac1e363ae34b6b489148152b12e2785a3d8d6",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0x692ac1e363ae34b6b489148152b12e2785a3d8d6.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0x692ac1e363ae34b6b489148152b12e2785a3d8d6.png"
+ ],
+ "name": "Polytrade (PoS)",
+ "symbol": "TRADE",
+ "marketCap": "2461046.381425906418001084",
+ "price": "0.03637267357480917379",
+ "priceChange24hPercent": "-1.26",
+ "volume24h": "4715.876126795994307001",
+ "communityRecognized": true,
+ "key": "evm--137:0x692ac1e363ae34b6b489148152b12e2785a3d8d6",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0x6985884c4392d348587b19cb9eaaf157f13271cd",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0x6985884c4392d348587b19cb9eaaf157f13271cd-1721961418666.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0x6985884c4392d348587b19cb9eaaf157f13271cd-1721961418666.png"
+ ],
+ "name": "LayerZero",
+ "symbol": "ZRO",
+ "marketCap": "2794802.335061283642335025",
+ "price": "1.12347014369659746736",
+ "priceChange24hPercent": "3.44",
+ "volume24h": "2323.77273806611678719",
+ "communityRecognized": true,
+ "key": "evm--137:0x6985884c4392d348587b19cb9eaaf157f13271cd",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0xdc685acc53ca2a760029cab2f6a587482aa9cf57",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/849174a8bc7837a93979a42f2e648f146724ece15a8b1991a64bd6f4e474a229",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/849174a8bc7837a93979a42f2e648f146724ece15a8b1991a64bd6f4e474a229"
+ ],
+ "name": "SNI",
+ "symbol": "SNI",
+ "marketCap": "3363806.043107769423558897",
+ "price": "0.23039767418546365915",
+ "priceChange24hPercent": "0.72",
+ "volume24h": "708.821135",
+ "communityRecognized": false,
+ "key": "evm--137:0xdc685acc53ca2a760029cab2f6a587482aa9cf57",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0xeb7eab87837f4dad1bb80856db9e4506fc441f3d",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0xeb7eab87837f4dad1bb80856db9e4506fc441f3d.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0xeb7eab87837f4dad1bb80856db9e4506fc441f3d.png"
+ ],
+ "name": "MEE Governance Token",
+ "symbol": "MEE",
+ "marketCap": "888681.076388626511023946",
+ "price": "0.00031572806368140781",
+ "priceChange24hPercent": "-0.01",
+ "volume24h": "2027.9673737165897129",
+ "communityRecognized": true,
+ "key": "evm--137:0xeb7eab87837f4dad1bb80856db9e4506fc441f3d",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0xfe302b8666539d5046cd9aa0707bb327f5f94c22",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0xfe302b8666539d5046cd9aa0707bb327f5f94c22.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0xfe302b8666539d5046cd9aa0707bb327f5f94c22.png"
+ ],
+ "name": "Senspark",
+ "symbol": "SEN",
+ "marketCap": "493052.709061416570804523",
+ "price": "0.00495035141640685108",
+ "priceChange24hPercent": "-6.82",
+ "volume24h": "1390.12976195897079174",
+ "communityRecognized": false,
+ "key": "evm--137:0xfe302b8666539d5046cd9aa0707bb327f5f94c22",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0x714db550b574b3e927af3d93e26127d15721d4c2",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0x714db550b574b3e927af3d93e26127d15721d4c2.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0x714db550b574b3e927af3d93e26127d15721d4c2.png"
+ ],
+ "name": "GreenMetaverseToken",
+ "symbol": "GMT",
+ "marketCap": "13980512.756708647296069628",
+ "price": "0.00756554590715177033",
+ "priceChange24hPercent": "0.12",
+ "volume24h": "5947.92182506237267526",
+ "communityRecognized": true,
+ "key": "evm--137:0x714db550b574b3e927af3d93e26127d15721d4c2",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0x2b9e7ccdf0f4e5b24757c1e1a80e311e34cb10c7",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0x2b9e7ccdf0f4e5b24757c1e1a80e311e34cb10c7.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0x2b9e7ccdf0f4e5b24757c1e1a80e311e34cb10c7.png"
+ ],
+ "name": "Mask Network (PoS)",
+ "symbol": "MASK",
+ "marketCap": "67368.780099474195811121",
+ "price": "0.47283457747636122508",
+ "priceChange24hPercent": "0.91",
+ "volume24h": "643.6859934877506413",
+ "communityRecognized": true,
+ "key": "evm--137:0x2b9e7ccdf0f4e5b24757c1e1a80e311e34cb10c7",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0x27f6c8289550fce67f6b50bed1f519966afe5287",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0x27f6c8289550fce67f6b50bed1f519966afe5287-1764410441511.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0x27f6c8289550fce67f6b50bed1f519966afe5287-1764410441511.png"
+ ],
+ "name": "tGBP",
+ "symbol": "tGBP",
+ "marketCap": "62796.772673562729044834",
+ "price": "1.35290448343079922027",
+ "priceChange24hPercent": "0.08",
+ "volume24h": "1498.96898",
+ "communityRecognized": true,
+ "key": "evm--137:0x27f6c8289550fce67f6b50bed1f519966afe5287",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0xb6c3c00d730acca326db40e418353f04f7444e2b",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/e70528379734ffb25a4a1833667c7b42ec80ff076fc396ca36a68f259cdf43a6",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/e70528379734ffb25a4a1833667c7b42ec80ff076fc396ca36a68f259cdf43a6"
+ ],
+ "name": "first choice coin",
+ "symbol": "fcc",
+ "marketCap": "12121774.624865976397186185",
+ "price": "0.01318113937907895048",
+ "priceChange24hPercent": "-5.13",
+ "volume24h": "5388.91435377720044233",
+ "communityRecognized": false,
+ "key": "evm--137:0xb6c3c00d730acca326db40e418353f04f7444e2b",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0x1ba17c639bdaecd8dc4aac37df062d17ee43a1b8",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0x1ba17c639bdaecd8dc4aac37df062d17ee43a1b8.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0x1ba17c639bdaecd8dc4aac37df062d17ee43a1b8.png"
+ ],
+ "name": "Wrapped Ixs Token",
+ "symbol": "WIXS",
+ "marketCap": "942852.986968246467454584",
+ "price": "0.05805120826084204563",
+ "priceChange24hPercent": "3.78",
+ "volume24h": "1407.503047845081424",
+ "communityRecognized": true,
+ "key": "evm--137:0x1ba17c639bdaecd8dc4aac37df062d17ee43a1b8",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0x1379e8886a944d2d9d440b3d88df536aea08d9f3",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0x1379e8886a944d2d9d440b3d88df536aea08d9f3.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0x1379e8886a944d2d9d440b3d88df536aea08d9f3.png"
+ ],
+ "name": "Mysterium (PoS)",
+ "symbol": "MYST",
+ "marketCap": "960420.934937887799447238",
+ "price": "0.10219057526290518886",
+ "priceChange24hPercent": "-0.39",
+ "volume24h": "3300.952939602259627344",
+ "communityRecognized": true,
+ "key": "evm--137:0x1379e8886a944d2d9d440b3d88df536aea08d9f3",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0xe261d618a959afffd53168cd07d12e37b26761db",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0xe261d618a959afffd53168cd07d12e37b26761db.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0xe261d618a959afffd53168cd07d12e37b26761db.png"
+ ],
+ "name": "Dimo",
+ "symbol": "DIMO",
+ "marketCap": "4006145.102245400750580664",
+ "price": "0.00792448945622439973",
+ "priceChange24hPercent": "-1.08",
+ "volume24h": "1652.309775489503765783",
+ "communityRecognized": true,
+ "key": "evm--137:0xe261d618a959afffd53168cd07d12e37b26761db",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0x38f9bf9dce51833ec7f03c9dc218197999999999",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0x38f9bf9dce51833ec7f03c9dc218197999999999-1725590700047.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0x38f9bf9dce51833ec7f03c9dc218197999999999-1725590700047.png"
+ ],
+ "name": "Nya",
+ "symbol": "NYA",
+ "marketCap": "51989.36953092473622967",
+ "price": "0.00000005241470085016",
+ "priceChange24hPercent": "-2.14",
+ "volume24h": "2284.249375093960448",
+ "communityRecognized": false,
+ "key": "evm--137:0x38f9bf9dce51833ec7f03c9dc218197999999999",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0xe5417af564e4bfda1c483642db72007871397896",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0xe5417af564e4bfda1c483642db72007871397896.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0xe5417af564e4bfda1c483642db72007871397896.png"
+ ],
+ "name": "Gains Network",
+ "symbol": "GNS",
+ "marketCap": "2236003.539753683804306458",
+ "price": "0.48467911741655762553",
+ "priceChange24hPercent": "-0.12",
+ "volume24h": "1443.90465368072085347",
+ "communityRecognized": true,
+ "key": "evm--137:0xe5417af564e4bfda1c483642db72007871397896",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0xbf7970d56a150cd0b60bd08388a4a75a27777777",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0xbf7970d56a150cd0b60bd08388a4a75a27777777.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0xbf7970d56a150cd0b60bd08388a4a75a27777777.png"
+ ],
+ "name": "BET",
+ "symbol": "BET",
+ "marketCap": "62855752.896517742882508698",
+ "price": "0.00008081453943856467",
+ "priceChange24hPercent": "8.65",
+ "volume24h": "12571.123161192529896106",
+ "communityRecognized": false,
+ "key": "evm--137:0xbf7970d56a150cd0b60bd08388a4a75a27777777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0xe1b3eb06806601828976e491914e3de18b5d6b28",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0xe1b3eb06806601828976e491914e3de18b5d6b28.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0xe1b3eb06806601828976e491914e3de18b5d6b28.png"
+ ],
+ "name": "zkRace",
+ "symbol": "ZERC",
+ "marketCap": "28077.956126739889110056",
+ "price": "0.00284161013784698974",
+ "priceChange24hPercent": "1.8",
+ "volume24h": "539.560194",
+ "communityRecognized": false,
+ "key": "evm--137:0xe1b3eb06806601828976e491914e3de18b5d6b28",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0x9ff62d1fc52a907b6dcba8077c2ddca6e6a9d3e1",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0x9ff62d1fc52a907b6dcba8077c2ddca6e6a9d3e1.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0x9ff62d1fc52a907b6dcba8077c2ddca6e6a9d3e1.png"
+ ],
+ "name": "Forta",
+ "symbol": "FORT",
+ "marketCap": "446626.257720089216020598",
+ "price": "0.01515274766894209687",
+ "priceChange24hPercent": "1.12",
+ "volume24h": "858.514853445948094",
+ "communityRecognized": true,
+ "key": "evm--137:0x9ff62d1fc52a907b6dcba8077c2ddca6e6a9d3e1",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0xba05176748347944cc26900c821abfebebc57415",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/f726c684810fa3c317fc93c5be53f978bd8c53c43e640ba1356f234c0f0904b0",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/f726c684810fa3c317fc93c5be53f978bd8c53c43e640ba1356f234c0f0904b0"
+ ],
+ "name": "OneX Smart Gold",
+ "symbol": "OSG",
+ "marketCap": "619442.460996450741023983",
+ "price": "1.00570937847101621421",
+ "priceChange24hPercent": "-0.87",
+ "volume24h": "1001.9891512574668665",
+ "communityRecognized": false,
+ "key": "evm--137:0xba05176748347944cc26900c821abfebebc57415",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0xa3f751662e282e83ec3cbc387d225ca56dd63d3a",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0xa3f751662e282e83ec3cbc387d225ca56dd63d3a-1723183200091.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0xa3f751662e282e83ec3cbc387d225ca56dd63d3a-1723183200091.png"
+ ],
+ "name": "Ape and Pepe",
+ "symbol": "APEPE",
+ "marketCap": "249226463.050670249855448417",
+ "price": "0.00000118679268228029",
+ "priceChange24hPercent": "0.88",
+ "volume24h": "1221.28299694548263132",
+ "communityRecognized": true,
+ "key": "evm--137:0xa3f751662e282e83ec3cbc387d225ca56dd63d3a",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0xd0258a3fd00f38aa8090dfee343f10a9d4d30d3f",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0xd0258a3fd00f38aa8090dfee343f10a9d4d30d3f.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0xd0258a3fd00f38aa8090dfee343f10a9d4d30d3f.png"
+ ],
+ "name": "VOXEL Token",
+ "symbol": "VOXEL",
+ "marketCap": "1193491.207877706693448291",
+ "price": "0.0049061869477051728",
+ "priceChange24hPercent": "27.07",
+ "volume24h": "577.475387462652267226",
+ "communityRecognized": true,
+ "key": "evm--137:0xd0258a3fd00f38aa8090dfee343f10a9d4d30d3f",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0x5c067c80c00ecd2345b05e83a3e758ef799c40b5",
+ "logoUrl": "https://static.oklink.com/cdn/web3/currency/token/large/137-0x5c067c80c00ecd2345b05e83a3e758ef799c40b5-106/type=default_90_0?v=1788809868649",
+ "logoUrls": [
+ "https://static.oklink.com/cdn/web3/currency/token/large/137-0x5c067c80c00ecd2345b05e83a3e758ef799c40b5-106/type=default_90_0?v=1788809868649"
+ ],
+ "name": "BRL1",
+ "symbol": "BRL1",
+ "marketCap": "3031563.212751056774899649",
+ "price": "0.192420125656275366",
+ "priceChange24hPercent": "-0.79",
+ "volume24h": "618.1488252056993018",
+ "communityRecognized": true,
+ "key": "evm--137:0x5c067c80c00ecd2345b05e83a3e758ef799c40b5",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0x614389eaae0a6821dc49062d56bda3d9d45fa2ff",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0x614389eaae0a6821dc49062d56bda3d9d45fa2ff.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0x614389eaae0a6821dc49062d56bda3d9d45fa2ff.png"
+ ],
+ "name": "Orbs (PoS)",
+ "symbol": "ORBS",
+ "marketCap": "1366639.891978126425889516",
+ "price": "0.00615243880464579283",
+ "priceChange24hPercent": "-0.14",
+ "volume24h": "1865.812723666426436397",
+ "communityRecognized": true,
+ "key": "evm--137:0x614389eaae0a6821dc49062d56bda3d9d45fa2ff",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0x5fe2b58c013d7601147dcdd68c143a77499f5531",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0x5fe2b58c013d7601147dcdd68c143a77499f5531.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0x5fe2b58c013d7601147dcdd68c143a77499f5531.png"
+ ],
+ "name": "Graph Token",
+ "symbol": "GRT",
+ "marketCap": "699276.313288875238624224",
+ "price": "0.01980015884952093439",
+ "priceChange24hPercent": "3.62",
+ "volume24h": "774.607343945883014548",
+ "communityRecognized": true,
+ "key": "evm--137:0x5fe2b58c013d7601147dcdd68c143a77499f5531",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0xee997788f625809332baabb3110bcf1ba7400824",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0xee997788f625809332baabb3110bcf1ba7400824-1757692954398.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0xee997788f625809332baabb3110bcf1ba7400824-1757692954398.png"
+ ],
+ "name": "Felysyum",
+ "symbol": "FELY",
+ "marketCap": "11791465.22844275334515573",
+ "price": "0.26941303249968217247",
+ "priceChange24hPercent": "0.53",
+ "volume24h": "9985.92284583887",
+ "communityRecognized": false,
+ "key": "evm--137:0xee997788f625809332baabb3110bcf1ba7400824",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0xaa71306d5356e0ad648e8229c41c21df0e8f3a4e",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0xaa71306d5356e0ad648e8229c41c21df0e8f3a4e-1778148496792.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0xaa71306d5356e0ad648e8229c41c21df0e8f3a4e-1778148496792.png"
+ ],
+ "name": "Stakefundex",
+ "symbol": "SDX",
+ "marketCap": "3066066.488202380124938053",
+ "price": "0.3356932979055250163",
+ "priceChange24hPercent": "-2.42",
+ "volume24h": "3072.89592993881",
+ "communityRecognized": false,
+ "key": "evm--137:0xaa71306d5356e0ad648e8229c41c21df0e8f3a4e",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0x45c32fa6df82ead1e2ef74d17b76547eddfaff89",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0x45c32fa6df82ead1e2ef74d17b76547eddfaff89.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0x45c32fa6df82ead1e2ef74d17b76547eddfaff89.png"
+ ],
+ "name": "Frax",
+ "symbol": "FRAX",
+ "marketCap": "479164.753586247060386207",
+ "price": "0.98093700045503987903",
+ "priceChange24hPercent": "-0.24",
+ "volume24h": "1311.50055358944479777",
+ "communityRecognized": false,
+ "key": "evm--137:0x45c32fa6df82ead1e2ef74d17b76547eddfaff89",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0x3bd21588994e5b28d40ccda6413f3b5598e62fbb",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/f726c684810fa3c317fc93c5be53f978bd8c53c43e640ba1356f234c0f0904b0",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/f726c684810fa3c317fc93c5be53f978bd8c53c43e640ba1356f234c0f0904b0"
+ ],
+ "name": "OIL Token",
+ "symbol": "OIL",
+ "marketCap": "11127745.358389779858026335",
+ "price": "0.01112937766824220561",
+ "priceChange24hPercent": "-5.28",
+ "volume24h": "628.37713265548",
+ "communityRecognized": false,
+ "key": "evm--137:0x3bd21588994e5b28d40ccda6413f3b5598e62fbb",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0x6ab4e20f36ca48b61ecd66c0450fdf665fa130be",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0x6ab4e20f36ca48b61ecd66c0450fdf665fa130be.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0x6ab4e20f36ca48b61ecd66c0450fdf665fa130be.png"
+ ],
+ "name": "Dolz (PoS)",
+ "symbol": "DOLZ",
+ "marketCap": "1241527.299835934264521981",
+ "price": "0.00750138050055669142",
+ "priceChange24hPercent": "0.46",
+ "volume24h": "1768.86550238785",
+ "communityRecognized": false,
+ "key": "evm--137:0x6ab4e20f36ca48b61ecd66c0450fdf665fa130be",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0xecdcb5b88f8e3c15f95c720c51c71c9e2080525d",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0xecdcb5b88f8e3c15f95c720c51c71c9e2080525d.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0xecdcb5b88f8e3c15f95c720c51c71c9e2080525d.png"
+ ],
+ "name": "Wrapped BNB",
+ "symbol": "WBNB",
+ "marketCap": "169917.772234948504129209",
+ "price": "701.06815388879422293813",
+ "priceChange24hPercent": "-9.05",
+ "volume24h": "954.161183010154828309",
+ "communityRecognized": false,
+ "key": "evm--137:0xecdcb5b88f8e3c15f95c720c51c71c9e2080525d",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0xdc4f4ed9872571d5ec8986a502a0d88f3a175f1e",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0xdc4f4ed9872571d5ec8986a502a0d88f3a175f1e-1721961418666.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0xdc4f4ed9872571d5ec8986a502a0d88f3a175f1e-1721961418666.png"
+ ],
+ "name": "DEZ",
+ "symbol": "$DEZ",
+ "marketCap": "679390.047962420007992116",
+ "price": "0.00067939866243569346",
+ "priceChange24hPercent": "2.08",
+ "volume24h": "1337.3849614576554741",
+ "communityRecognized": false,
+ "key": "evm--137:0xdc4f4ed9872571d5ec8986a502a0d88f3a175f1e",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0x692597b009d13c4049a947cab2239b7d6517875f",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0x692597b009d13c4049a947cab2239b7d6517875f.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0x692597b009d13c4049a947cab2239b7d6517875f.png"
+ ],
+ "name": "Wrapped UST Token",
+ "symbol": "USTC",
+ "marketCap": "23073.144708740383977662",
+ "price": "0.00544812189781779185",
+ "priceChange24hPercent": "2.64",
+ "volume24h": "2316.103836258738897024",
+ "communityRecognized": false,
+ "key": "evm--137:0x692597b009d13c4049a947cab2239b7d6517875f",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0x1d1498166ddceee616a6d99868e1e0677300056f",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0x1d1498166ddceee616a6d99868e1e0677300056f-1729500300212.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0x1d1498166ddceee616a6d99868e1e0677300056f-1729500300212.png"
+ ],
+ "name": "xSpace Token",
+ "symbol": "xSPACE",
+ "marketCap": "52823.85472406049626286",
+ "price": "0.00185650015883472412",
+ "priceChange24hPercent": "-8.74",
+ "volume24h": "1921.74098509388526811",
+ "communityRecognized": false,
+ "key": "evm--137:0x1d1498166ddceee616a6d99868e1e0677300056f",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0xe0aea583266584dafbb3f9c3211d5588c73fea8d",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0xe0aea583266584dafbb3f9c3211d5588c73fea8d-1757692882447.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0xe0aea583266584dafbb3f9c3211d5588c73fea8d-1757692882447.png"
+ ],
+ "name": "Monerium EURe",
+ "symbol": "EURe",
+ "marketCap": "2107016.803062213410297621",
+ "price": "1.16168069009623177141",
+ "priceChange24hPercent": "0.09",
+ "volume24h": "3099.80768287228",
+ "communityRecognized": false,
+ "key": "evm--137:0xe0aea583266584dafbb3f9c3211d5588c73fea8d",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0x03b54a6e9a984069379fae1a4fc4dbae93b3bccd",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0x03b54a6e9a984069379fae1a4fc4dbae93b3bccd.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0x03b54a6e9a984069379fae1a4fc4dbae93b3bccd.png"
+ ],
+ "name": "Wrapped liquid staked Ether 2.0 (PoS)",
+ "symbol": "wstETH",
+ "marketCap": "14994686.131009842196854023",
+ "price": "3087.70032074415026828344",
+ "priceChange24hPercent": "-0.75",
+ "volume24h": "6033.07889246597139875",
+ "communityRecognized": false,
+ "key": "evm--137:0x03b54a6e9a984069379fae1a4fc4dbae93b3bccd",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0x385eeac5cb85a38a9a07a70c73e0a3271cfb54a7",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0x385eeac5cb85a38a9a07a70c73e0a3271cfb54a7.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0x385eeac5cb85a38a9a07a70c73e0a3271cfb54a7.png"
+ ],
+ "name": "Aavegotchi GHST Token (PoS)",
+ "symbol": "GHST",
+ "marketCap": "444880.213870490180818536",
+ "price": "0.06115715419188546493",
+ "priceChange24hPercent": "-2.47",
+ "volume24h": "2009.601386474322039771",
+ "communityRecognized": true,
+ "key": "evm--137:0x385eeac5cb85a38a9a07a70c73e0a3271cfb54a7",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0x2ab0e9e4ee70fff1fb9d67031e44f6410170d00e",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0x2ab0e9e4ee70fff1fb9d67031e44f6410170d00e.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0x2ab0e9e4ee70fff1fb9d67031e44f6410170d00e.png"
+ ],
+ "name": "XEN Crypto",
+ "symbol": "mXEN",
+ "marketCap": "70970.23651976218184546",
+ "price": "0.00000000002874688303",
+ "priceChange24hPercent": "-1.36",
+ "volume24h": "1120.924658973984890708",
+ "communityRecognized": false,
+ "key": "evm--137:0x2ab0e9e4ee70fff1fb9d67031e44f6410170d00e",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--143",
+ "address": "0x0555e30da8f98308edb960aa94c0db47230d2b9c",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/5968315662ba0d4336c57cc4cca4142a71a707e9682a8df77810db2b956b020e",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/5968315662ba0d4336c57cc4cca4142a71a707e9682a8df77810db2b956b020e"
+ ],
+ "name": "Wrapped BTC",
+ "symbol": "WBTC",
+ "marketCap": "4090648.044943985364873138",
+ "price": "78660.19068464980579675124",
+ "priceChange24hPercent": "-0.83",
+ "volume24h": "3186874.394862348493354727",
+ "communityRecognized": true,
+ "key": "evm--143:0x0555e30da8f98308edb960aa94c0db47230d2b9c",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Monad",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1763967402446.0.5985474006975384.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--143",
+ "address": "0xd18b7ec58cdf4876f6afebd3ed1730e4ce10414b",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/6c54fb39500a051b95685a52de48e09b4b2c9a615eb1e8e7a77f9a47196f35f3",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/6c54fb39500a051b95685a52de48e09b4b2c9a615eb1e8e7a77f9a47196f35f3"
+ ],
+ "name": "Coinbase Wrapped BTC",
+ "symbol": "cbBTC",
+ "marketCap": "12516825.387912744537306148",
+ "price": "78755.03791710164638087184",
+ "priceChange24hPercent": "-0.87",
+ "volume24h": "889657.175144815136614337",
+ "communityRecognized": false,
+ "key": "evm--143:0xd18b7ec58cdf4876f6afebd3ed1730e4ce10414b",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Monad",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1763967402446.0.5985474006975384.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--143",
+ "address": "0xe7cd86e13ac4309349f30b3435a9d337750fc82d",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-onchain/evm--143/tokens/0xe7cd86e13ac4309349f30b3435a9d337750fc82d.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-onchain/evm--143/tokens/0xe7cd86e13ac4309349f30b3435a9d337750fc82d.png"
+ ],
+ "name": "USDT",
+ "symbol": "USDT",
+ "marketCap": "54800222.395357559238745297",
+ "price": "0.99986320543511601096",
+ "priceChange24hPercent": "0",
+ "volume24h": "319531.124017445053353051",
+ "communityRecognized": true,
+ "key": "evm--143:0xe7cd86e13ac4309349f30b3435a9d337750fc82d",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Monad",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1763967402446.0.5985474006975384.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--143",
+ "address": "0x3bd359c1119da7da1d913d1c4d2b7c461115433a",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/d4daeeb446598199b99edb6ba6f23ef5c9387b3bfd0d7f56d16c50899ad95063",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/d4daeeb446598199b99edb6ba6f23ef5c9387b3bfd0d7f56d16c50899ad95063"
+ ],
+ "name": "Wrapped MON",
+ "symbol": "WMON",
+ "marketCap": "8818411.642951553583417692",
+ "price": "0.0262563238442512319",
+ "priceChange24hPercent": "-0.05",
+ "volume24h": "3094348.396146486137719245",
+ "communityRecognized": false,
+ "key": "evm--143:0x3bd359c1119da7da1d913d1c4d2b7c461115433a",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Monad",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1763967402446.0.5985474006975384.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--143",
+ "address": "0xaca92e438df0b2401ff60da7e4337b687a2435da",
+ "logoUrl": "https://coin-images.coingecko.com/coins/images/68451/large/MetaMask-mUSD-Icon-200x200.png?1755878384",
+ "logoUrls": [
+ "https://coin-images.coingecko.com/coins/images/68451/large/MetaMask-mUSD-Icon-200x200.png?1755878384"
+ ],
+ "name": "MetaMask USD",
+ "symbol": "mUSD",
+ "marketCap": "8820144.539537013772",
+ "price": "1.000022",
+ "priceChange24hPercent": "0",
+ "volume24h": "945682.766118",
+ "communityRecognized": false,
+ "key": "evm--143:0xaca92e438df0b2401ff60da7e4337b687a2435da",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Monad",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1763967402446.0.5985474006975384.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--143",
+ "address": "0x01bff41798a0bcf287b996046ca68b395dbc1071",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/cc053877e9dc9d2870f0a3e9816d9c7c3044d7bd54ca96352f8626aaab3f20eb",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/cc053877e9dc9d2870f0a3e9816d9c7c3044d7bd54ca96352f8626aaab3f20eb"
+ ],
+ "name": "XAUt0",
+ "symbol": "XAUt0",
+ "marketCap": "16632790.988710435948476691",
+ "price": "4440.72480820567722990334",
+ "priceChange24hPercent": "0.95",
+ "volume24h": "33484.78232407604",
+ "communityRecognized": true,
+ "key": "evm--143:0x01bff41798a0bcf287b996046ca68b395dbc1071",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Monad",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1763967402446.0.5985474006975384.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--143",
+ "address": "0x0a332311633c0625f63cfc51ee33fc49826e0a3c",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/8356346777831140edc501f7c039ec2abceb49e4ee845cb86f3053a51d691863",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/8356346777831140edc501f7c039ec2abceb49e4ee845cb86f3053a51d691863"
+ ],
+ "name": "aPriori",
+ "symbol": "APR",
+ "marketCap": "2989182.115568541878759974",
+ "price": "0.18681754721432041708",
+ "priceChange24hPercent": "-4.82",
+ "volume24h": "61625.77973193191171564",
+ "communityRecognized": false,
+ "key": "evm--143:0x0a332311633c0625f63cfc51ee33fc49826e0a3c",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Monad",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1763967402446.0.5985474006975384.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--143",
+ "address": "0x00000000efe302beaa2b3e6e1b18d08d69a9012a",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-onchain/evm--143/tokens/0x00000000efe302beaa2b3e6e1b18d08d69a9012a.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-onchain/evm--143/tokens/0x00000000efe302beaa2b3e6e1b18d08d69a9012a.png"
+ ],
+ "name": "AUSD",
+ "symbol": "AUSD",
+ "marketCap": "192676884.06533397991250719",
+ "price": "1.00006408979615196059",
+ "priceChange24hPercent": "0.27",
+ "volume24h": "720830.233991712171598415",
+ "communityRecognized": true,
+ "key": "evm--143:0x00000000efe302beaa2b3e6e1b18d08d69a9012a",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Monad",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1763967402446.0.5985474006975384.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--143",
+ "address": "0x1111b3ded9f1fe1801ad4ebef8e2788183a24111",
+ "logoUrl": "https://static.oklink.com/cdn/web3/currency/token/large/143-0x1111b3ded9f1fe1801ad4ebef8e2788183a24111-105/type=default_90_0?v=1788808612988",
+ "logoUrls": [
+ "https://static.oklink.com/cdn/web3/currency/token/large/143-0x1111b3ded9f1fe1801ad4ebef8e2788183a24111-105/type=default_90_0?v=1788808612988"
+ ],
+ "name": "Newrails Euro",
+ "symbol": "EURW",
+ "marketCap": "281396.464024513392064332",
+ "price": "1.16225267988690133206",
+ "priceChange24hPercent": "0.11",
+ "volume24h": "975839.999692090331155942",
+ "communityRecognized": false,
+ "key": "evm--143:0x1111b3ded9f1fe1801ad4ebef8e2788183a24111",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Monad",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1763967402446.0.5985474006975384.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--143",
+ "address": "0xb53c4fb340aa926b2ac9954a1bb6dc83fd2b8a01",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/001b4443aa4251ef1afd763fa2e5f4ac5e9650e5de92230c40b57b32250badeb",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/001b4443aa4251ef1afd763fa2e5f4ac5e9650e5de92230c40b57b32250badeb"
+ ],
+ "name": "DOGGG",
+ "symbol": "DOGGG",
+ "marketCap": "48503.058993553095742479",
+ "price": "0.0000485030589935531",
+ "priceChange24hPercent": "-51.66",
+ "volume24h": "23478.43488646182691954",
+ "communityRecognized": false,
+ "key": "evm--143:0xb53c4fb340aa926b2ac9954a1bb6dc83fd2b8a01",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Monad",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1763967402446.0.5985474006975384.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--143",
+ "address": "0x11ed3b12d99d508f926c870fb44f472001842c96",
+ "logoUrl": "https://coin-images.coingecko.com/coins/images/102173673/large/IGNLOGO.png?1780836328",
+ "logoUrls": [
+ "https://coin-images.coingecko.com/coins/images/102173673/large/IGNLOGO.png?1780836328"
+ ],
+ "name": "Ignis",
+ "symbol": "IGN",
+ "marketCap": "31452.165945819630984011",
+ "price": "0.00031452165945819631",
+ "priceChange24hPercent": "-17.51",
+ "volume24h": "2090.706917171900572554",
+ "communityRecognized": false,
+ "key": "evm--143:0x11ed3b12d99d508f926c870fb44f472001842c96",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Monad",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1763967402446.0.5985474006975384.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--143",
+ "address": "0x350035555e10d9afaf1566aaebfced5ba6c27777",
+ "logoUrl": "https://static.oklink.com/cdn/web3/currency/token/large/143-0x350035555e10d9afaf1566aaebfced5ba6c27777-105/type=default_90_0?v=1788808427631",
+ "logoUrls": [
+ "https://static.oklink.com/cdn/web3/currency/token/large/143-0x350035555e10d9afaf1566aaebfced5ba6c27777-105/type=default_90_0?v=1788808427631"
+ ],
+ "name": "Chog",
+ "symbol": "CHOG",
+ "marketCap": "1547982.268355718344032364",
+ "price": "0.00154798226835571834",
+ "priceChange24hPercent": "-23.72",
+ "volume24h": "8125.876900619327360176",
+ "communityRecognized": false,
+ "key": "evm--143:0x350035555e10d9afaf1566aaebfced5ba6c27777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Monad",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1763967402446.0.5985474006975384.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--143",
+ "address": "0xfc421ad3c883bf9e7c4f42de845c4e4405799e73",
+ "logoUrl": "https://static.oklink.com/cdn/web3/currency/token/large/143-0xfc421ad3c883bf9e7c4f42de845c4e4405799e73-105/type=default_90_0?v=1788808999724",
+ "logoUrls": [
+ "https://static.oklink.com/cdn/web3/currency/token/large/143-0xfc421ad3c883bf9e7c4f42de845c4e4405799e73-105/type=default_90_0?v=1788808999724"
+ ],
+ "name": "Gho Token",
+ "symbol": "GHO",
+ "marketCap": "56173914.311656018271721552",
+ "price": "0.9993357654392514117",
+ "priceChange24hPercent": "0",
+ "volume24h": "109230.694406",
+ "communityRecognized": false,
+ "key": "evm--143:0xfc421ad3c883bf9e7c4f42de845c4e4405799e73",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Monad",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1763967402446.0.5985474006975384.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--143",
+ "address": "0x1b68626dca36c7fe922fd2d55e4f631d962de19c",
+ "logoUrl": "https://static.oklink.com/cdn/web3/currency/token/large/143-0x1b68626dca36c7fe922fd2d55e4f631d962de19c-105/type=default_90_0?v=1788808388837",
+ "logoUrls": [
+ "https://static.oklink.com/cdn/web3/currency/token/large/143-0x1b68626dca36c7fe922fd2d55e4f631d962de19c-105/type=default_90_0?v=1788808388837"
+ ],
+ "name": "ShMonad",
+ "symbol": "shMON",
+ "marketCap": "8892420.06758843785341307",
+ "price": "0.04234598759183881817",
+ "priceChange24hPercent": "-0.34",
+ "volume24h": "23878.64155727265640257",
+ "communityRecognized": false,
+ "key": "evm--143:0x1b68626dca36c7fe922fd2d55e4f631d962de19c",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Monad",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1763967402446.0.5985474006975384.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--143",
+ "address": "0x0bb150dfa86ea5d7742f07fefcd8e8eda81d64ef",
+ "logoUrl": "https://static.oklink.com/cdn/web3/currency/token/large/143-0x0bb150dfa86ea5d7742f07fefcd8e8eda81d64ef-105/type=default_90_0?v=1788809236532",
+ "logoUrls": [
+ "https://static.oklink.com/cdn/web3/currency/token/large/143-0x0bb150dfa86ea5d7742f07fefcd8e8eda81d64ef-105/type=default_90_0?v=1788809236532"
+ ],
+ "name": "Saturn USD",
+ "symbol": "USDat",
+ "marketCap": "27580150.559776504516397301",
+ "price": "0.9996947397892063272",
+ "priceChange24hPercent": "0",
+ "volume24h": "3715.262197",
+ "communityRecognized": false,
+ "key": "evm--143:0x0bb150dfa86ea5d7742f07fefcd8e8eda81d64ef",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Monad",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1763967402446.0.5985474006975384.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--143",
+ "address": "0x81a224f8a62f52bde942dbf23a56df77a10b7777",
+ "logoUrl": "https://coin-images.coingecko.com/coins/images/102172808/large/wi13repazwee6wximmko4nk8jfbo.?1775837251",
+ "logoUrls": [
+ "https://coin-images.coingecko.com/coins/images/102172808/large/wi13repazwee6wximmko4nk8jfbo.?1775837251"
+ ],
+ "name": "emonad",
+ "symbol": "emo",
+ "marketCap": "982059.937280161536566462",
+ "price": "0.00098205993728016154",
+ "priceChange24hPercent": "-24.21",
+ "volume24h": "1600.135385481460908036",
+ "communityRecognized": false,
+ "key": "evm--143:0x81a224f8a62f52bde942dbf23a56df77a10b7777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Monad",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1763967402446.0.5985474006975384.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--143",
+ "address": "0xa3227c5969757783154c60bf0bc1944180ed81b9",
+ "logoUrl": "https://static.oklink.com/cdn/web3/currency/token/large/143-0xa3227c5969757783154c60bf0bc1944180ed81b9-105/type=default_90_0?v=1788808388919",
+ "logoUrls": [
+ "https://static.oklink.com/cdn/web3/currency/token/large/143-0xa3227c5969757783154c60bf0bc1944180ed81b9-105/type=default_90_0?v=1788808388919"
+ ],
+ "name": "Kintsu Staked Monad",
+ "symbol": "sMON",
+ "marketCap": "2329395.663892163595255939",
+ "price": "0.02899222269343586255",
+ "priceChange24hPercent": "0.06",
+ "volume24h": "15861.11443772276192695",
+ "communityRecognized": false,
+ "key": "evm--143:0xa3227c5969757783154c60bf0bc1944180ed81b9",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Monad",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1763967402446.0.5985474006975384.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--143",
+ "address": "0x1001ff13bf368aa4fa85f21043648079f00e1001",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/0780d04341f5581c24dac7624892b74b21b3a53c8f6fd93dc80fe0d6eebb6dde",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/0780d04341f5581c24dac7624892b74b21b3a53c8f6fd93dc80fe0d6eebb6dde"
+ ],
+ "name": "LeverUp",
+ "symbol": "LV",
+ "marketCap": "5866201.265751021412772805",
+ "price": "0.06518022252870899007",
+ "priceChange24hPercent": "-3.15",
+ "volume24h": "793.05362444854349586",
+ "communityRecognized": false,
+ "key": "evm--143:0x1001ff13bf368aa4fa85f21043648079f00e1001",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Monad",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1763967402446.0.5985474006975384.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--143",
+ "address": "0xad96c3dffcd6374294e2573a7fbba96097cc8d7c",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-onchain/evm--143/tokens/0xad96c3dffcd6374294e2573a7fbba96097cc8d7c.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-onchain/evm--143/tokens/0xad96c3dffcd6374294e2573a7fbba96097cc8d7c.png"
+ ],
+ "name": "Pixie Dust",
+ "symbol": "DUST",
+ "marketCap": "123783.879654840781587094",
+ "price": "0.04107549947207048637",
+ "priceChange24hPercent": "-2.53",
+ "volume24h": "909.671239",
+ "communityRecognized": false,
+ "key": "evm--143:0xad96c3dffcd6374294e2573a7fbba96097cc8d7c",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Monad",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1763967402446.0.5985474006975384.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--143",
+ "address": "0x6f8b615425de5cca4ef1fc3270a114a94f000601",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/df8152a4eb67e65d907729c55d663d70251b222ea9dd85017bf40b64b70f1a81",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/df8152a4eb67e65d907729c55d663d70251b222ea9dd85017bf40b64b70f1a81"
+ ],
+ "name": "NAD",
+ "symbol": "NAD",
+ "marketCap": "10774.46482568564585905",
+ "price": "0.00001077446482568565",
+ "priceChange24hPercent": "3.54",
+ "volume24h": "3270.7124256599573345",
+ "communityRecognized": false,
+ "key": "evm--143:0x6f8b615425de5cca4ef1fc3270a114a94f000601",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Monad",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1763967402446.0.5985474006975384.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--143",
+ "address": "0x111111d2bf19e43c34263401e0cad979ed1cdb61",
+ "logoUrl": "https://static.oklink.com/cdn/web3/currency/token/large/143-0x111111d2bf19e43c34263401e0cad979ed1cdb61-105/type=default_90_0?v=1788808460486",
+ "logoUrls": [
+ "https://static.oklink.com/cdn/web3/currency/token/large/143-0x111111d2bf19e43c34263401e0cad979ed1cdb61-105/type=default_90_0?v=1788808460486"
+ ],
+ "name": "World Liberty Financial USD",
+ "symbol": "USD1",
+ "marketCap": "43425.179725432075622687",
+ "price": "0.99338757493081029955",
+ "priceChange24hPercent": "-0.15",
+ "volume24h": "1809.297082880645198177",
+ "communityRecognized": true,
+ "key": "evm--143:0x111111d2bf19e43c34263401e0cad979ed1cdb61",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Monad",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1763967402446.0.5985474006975384.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--143",
+ "address": "0x91b81bfbe3a747230f0529aa28d8b2bc898e6d56",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/228a2ee34330ef7b219d03f0c98aabdd0b3a4c7d8f79adafab2fa234687db384",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/228a2ee34330ef7b219d03f0c98aabdd0b3a4c7d8f79adafab2fa234687db384"
+ ],
+ "name": "LeverUp MON",
+ "symbol": "LVMON",
+ "marketCap": "1982751.751972521106597793",
+ "price": "0.02617278107566637706",
+ "priceChange24hPercent": "0.25",
+ "volume24h": "36668.76726537938649433",
+ "communityRecognized": false,
+ "key": "evm--143:0x91b81bfbe3a747230f0529aa28d8b2bc898e6d56",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Monad",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1763967402446.0.5985474006975384.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--143",
+ "address": "0x788571e0e5067adea87e6ba22a2b738ffdf48888",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/e866368e6e855438c7b2518700e7e474af19aaaeadb30238d768cce9a7e2c397",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/e866368e6e855438c7b2518700e7e474af19aaaeadb30238d768cce9a7e2c397"
+ ],
+ "name": "UNIT",
+ "symbol": "UNIT",
+ "marketCap": "88425.667246320484268411",
+ "price": "0.00008842566724632048",
+ "priceChange24hPercent": "-45.72",
+ "volume24h": "9308.789899119870101174",
+ "communityRecognized": false,
+ "key": "evm--143:0x788571e0e5067adea87e6ba22a2b738ffdf48888",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Monad",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1763967402446.0.5985474006975384.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--143",
+ "address": "0x371c7ec6d8039ff7933a2aa28eb827ffe1f52f07",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/f46fc270d9b2a625d60dd58f5ded27ffbb202ba1909d5017df55876dbaa4417e",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/f46fc270d9b2a625d60dd58f5ded27ffbb202ba1909d5017df55876dbaa4417e"
+ ],
+ "name": "JoeToken",
+ "symbol": "JOE",
+ "marketCap": "392717.951317195527297807",
+ "price": "0.03226950169038667341",
+ "priceChange24hPercent": "-3.41",
+ "volume24h": "975.067012728675591",
+ "communityRecognized": false,
+ "key": "evm--143:0x371c7ec6d8039ff7933a2aa28eb827ffe1f52f07",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Monad",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1763967402446.0.5985474006975384.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--143",
+ "address": "0x8498312a6b3cbd158bf0c93abdcf29e6e4f55081",
+ "logoUrl": "https://static.oklink.com/cdn/web3/currency/token/large/143-0x8498312a6b3cbd158bf0c93abdcf29e6e4f55081-105/type=default_90_0?v=1788808562572",
+ "logoUrls": [
+ "https://static.oklink.com/cdn/web3/currency/token/large/143-0x8498312a6b3cbd158bf0c93abdcf29e6e4f55081-105/type=default_90_0?v=1788808562572"
+ ],
+ "name": "gMON",
+ "symbol": "gMON",
+ "marketCap": "1225059.804936763428162776",
+ "price": "0.02894069294175735333",
+ "priceChange24hPercent": "0.29",
+ "volume24h": "695.16967858029365186",
+ "communityRecognized": false,
+ "key": "evm--143:0x8498312a6b3cbd158bf0c93abdcf29e6e4f55081",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Monad",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1763967402446.0.5985474006975384.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--146",
+ "address": "0x000000000eccff26b795f73fb0a70d48da657fef",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/e866368e6e855438c7b2518700e7e474af19aaaeadb30238d768cce9a7e2c397",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/e866368e6e855438c7b2518700e7e474af19aaaeadb30238d768cce9a7e2c397"
+ ],
+ "name": "US Sonic Dollar",
+ "symbol": "USSD",
+ "marketCap": "963380.500865416969720696",
+ "price": "0.99968297218329685566",
+ "priceChange24hPercent": "0",
+ "volume24h": "52519.86249931736374423",
+ "communityRecognized": false,
+ "key": "evm--146:0x000000000eccff26b795f73fb0a70d48da657fef",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Sonic Mainnet",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1735787974946.0.09719711646964435.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--146",
+ "address": "0x3333111a391cc08fa51353e9195526a70b333333",
+ "logoUrl": "https://coin-images.coingecko.com/coins/images/54526/large/shadow_liquid_staking_token17400.jpg?1740148577",
+ "logoUrls": [
+ "https://coin-images.coingecko.com/coins/images/54526/large/shadow_liquid_staking_token17400.jpg?1740148577"
+ ],
+ "name": "Shadow Liquid Staking Token",
+ "symbol": "x33",
+ "marketCap": "870342.18968746282137767",
+ "price": "2.50555170584723762264",
+ "priceChange24hPercent": "-1",
+ "volume24h": "4655.90458602868068751",
+ "communityRecognized": false,
+ "key": "evm--146:0x3333111a391cc08fa51353e9195526a70b333333",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Sonic Mainnet",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1735787974946.0.09719711646964435.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--146",
+ "address": "0xedf8b632b537d5993adb5e2e15882cd791c284cb",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/0d72215a3f7fa710345560e4e23b6841e920a6a26e4931fb55811fc8565aa54e",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/0d72215a3f7fa710345560e4e23b6841e920a6a26e4931fb55811fc8565aa54e"
+ ],
+ "name": "Fantom Bomb",
+ "symbol": "fBOMB",
+ "marketCap": "572158.457509263902005414",
+ "price": "0.01897370827725336675",
+ "priceChange24hPercent": "3.25",
+ "volume24h": "2888.844039402333008741",
+ "communityRecognized": false,
+ "key": "evm--146:0xedf8b632b537d5993adb5e2e15882cd791c284cb",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Sonic Mainnet",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1735787974946.0.09719711646964435.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--146",
+ "address": "0x0555e30da8f98308edb960aa94c0db47230d2b9c",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-onchain/evm--146/tokens/0x0555e30da8f98308edb960aa94c0db47230d2b9c.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-onchain/evm--146/tokens/0x0555e30da8f98308edb960aa94c0db47230d2b9c.png"
+ ],
+ "name": "Wrapped BTC",
+ "symbol": "WBTC",
+ "marketCap": "745337.158259784683861101",
+ "price": "78825.15562213927586671204",
+ "priceChange24hPercent": "-0.92",
+ "volume24h": "14694.875756580594651747",
+ "communityRecognized": false,
+ "key": "evm--146:0x0555e30da8f98308edb960aa94c0db47230d2b9c",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Sonic Mainnet",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1735787974946.0.09719711646964435.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--146",
+ "address": "0x3333b97138d4b086720b5ae8a7844b1345a33333",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/18ab5020b95a10b3b7b27299a0692107dca74946e2fca5e1b90ea7ccbd9855b6",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/18ab5020b95a10b3b7b27299a0692107dca74946e2fca5e1b90ea7ccbd9855b6"
+ ],
+ "name": "Shadow",
+ "symbol": "SHADOW",
+ "marketCap": "168184.112185142507180853",
+ "price": "0.86660229739200976225",
+ "priceChange24hPercent": "-5.35",
+ "volume24h": "10244.273899429182589479",
+ "communityRecognized": true,
+ "key": "evm--146:0x3333b97138d4b086720b5ae8a7844b1345a33333",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Sonic Mainnet",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1735787974946.0.09719711646964435.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--146",
+ "address": "0x9fdbc3f8abc05fa8f3ad3c17d2f806c1230c4564",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/ed981c29db52bb80a99295ace81ad4b7decc73743dafd9b49cdf8ec58d0ef990",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/ed981c29db52bb80a99295ace81ad4b7decc73743dafd9b49cdf8ec58d0ef990"
+ ],
+ "name": "GOGGLES",
+ "symbol": "GOGLZ",
+ "marketCap": "111485.227412158226859278",
+ "price": "0.00291278698590272285",
+ "priceChange24hPercent": "-4.12",
+ "volume24h": "1890.187265995754024821",
+ "communityRecognized": false,
+ "key": "evm--146:0x9fdbc3f8abc05fa8f3ad3c17d2f806c1230c4564",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Sonic Mainnet",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1735787974946.0.09719711646964435.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--146",
+ "address": "0x17af1df44444ab9091622e4aa66db5bb34e51ad5",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/f9e38abf542202d5305609559f94332ada746aad5ea30383a5c94e93c14b544a",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/f9e38abf542202d5305609559f94332ada746aad5ea30383a5c94e93c14b544a"
+ ],
+ "name": "Tin Hat Cat",
+ "symbol": "THC",
+ "marketCap": "87097.979384433320385947",
+ "price": "0.00373277070875580053",
+ "priceChange24hPercent": "-21.67",
+ "volume24h": "1776.834993742093648943",
+ "communityRecognized": false,
+ "key": "evm--146:0x17af1df44444ab9091622e4aa66db5bb34e51ad5",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Sonic Mainnet",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1735787974946.0.09719711646964435.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--146",
+ "address": "0x674a430f531847a6f8976a900f8ace765f896a1b",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/1d062e5bd8e6d1165f4447f433c63cacf60e76ce9d661d96db5f756dc1ca0457",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/1d062e5bd8e6d1165f4447f433c63cacf60e76ce9d661d96db5f756dc1ca0457"
+ ],
+ "name": "GSNAKE",
+ "symbol": "GSNAKE",
+ "marketCap": "41302.153435818024515023",
+ "price": "0.66390540483280232962",
+ "priceChange24hPercent": "-7.45",
+ "volume24h": "521.08316900262054995",
+ "communityRecognized": false,
+ "key": "evm--146:0x674a430f531847a6f8976a900f8ace765f896a1b",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Sonic Mainnet",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1735787974946.0.09719711646964435.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--146",
+ "address": "0x70e7f1d907e30efb18fe1dd8a1d75c09a98177d3",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-onchain/evm--146/tokens/0x70e7f1d907e30efb18fe1dd8a1d75c09a98177d3.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-onchain/evm--146/tokens/0x70e7f1d907e30efb18fe1dd8a1d75c09a98177d3.png"
+ ],
+ "name": "JEFE TOKEN",
+ "symbol": "JEFE",
+ "marketCap": "282363.761429050716296043",
+ "price": "0.02823637614290507163",
+ "priceChange24hPercent": "-0.56",
+ "volume24h": "3278.404008506733500924",
+ "communityRecognized": false,
+ "key": "evm--146:0x70e7f1d907e30efb18fe1dd8a1d75c09a98177d3",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Sonic Mainnet",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1735787974946.0.09719711646964435.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--146",
+ "address": "0xddf26b42c1d903de8962d3f79a74a501420d5f19",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/0ab3109cd5ae10ce455ba3faa360d721d2f82fc48b7d2c9189a94721b031fcdd",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/0ab3109cd5ae10ce455ba3faa360d721d2f82fc48b7d2c9189a94721b031fcdd"
+ ],
+ "name": "Equalizer on Sonic",
+ "symbol": "EQUAL",
+ "marketCap": "89769.982390104452759111",
+ "price": "0.07338665007058547033",
+ "priceChange24hPercent": "-4.87",
+ "volume24h": "1004.153679881586151328",
+ "communityRecognized": false,
+ "key": "evm--146:0xddf26b42c1d903de8962d3f79a74a501420d5f19",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Sonic Mainnet",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1735787974946.0.09719711646964435.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--59144",
+ "address": "0xf5c6825015280cdfd0b56903f9f8b5a2233476f5",
+ "logoUrl": "https://uni-test.onekey-asset.com/server-service-onchain/evm--59144/tokens/0xf5c6825015280cdfd0b56903f9f8b5a2233476f5.png",
+ "logoUrls": [
+ "https://uni-test.onekey-asset.com/server-service-onchain/evm--59144/tokens/0xf5c6825015280cdfd0b56903f9f8b5a2233476f5.png"
+ ],
+ "name": "Binance Coin",
+ "symbol": "BNB",
+ "marketCap": "34099.596666940775739603",
+ "price": "726.7860125779168854699",
+ "priceChange24hPercent": "-4.66",
+ "volume24h": "86096.2911254720330837",
+ "communityRecognized": false,
+ "key": "evm--59144:0xf5c6825015280cdfd0b56903f9f8b5a2233476f5",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Linea",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/linea.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--59144",
+ "address": "0x2416092f143378750bb29b79ed961ab195cceea5",
+ "logoUrl": "https://uni-test.onekey-asset.com/server-service-onchain/evm--59144/tokens/0x2416092f143378750bb29b79ed961ab195cceea5.png",
+ "logoUrls": [
+ "https://uni-test.onekey-asset.com/server-service-onchain/evm--59144/tokens/0x2416092f143378750bb29b79ed961ab195cceea5.png"
+ ],
+ "name": "Renzo Restaked ETH",
+ "symbol": "ezETH",
+ "marketCap": "18564824.533014698131500249",
+ "price": "2709.73839055047425502607",
+ "priceChange24hPercent": "0.12",
+ "volume24h": "2255.4004732384650633",
+ "communityRecognized": false,
+ "key": "evm--59144:0x2416092f143378750bb29b79ed961ab195cceea5",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Linea",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/linea.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--59144",
+ "address": "0x1bf74c010e6320bab11e2e5a532b5ac15e0b8aa6",
+ "logoUrl": "https://uni-test.onekey-asset.com/server-service-onchain/evm--59144/tokens/0x1bf74c010e6320bab11e2e5a532b5ac15e0b8aa6.png",
+ "logoUrls": [
+ "https://uni-test.onekey-asset.com/server-service-onchain/evm--59144/tokens/0x1bf74c010e6320bab11e2e5a532b5ac15e0b8aa6.png"
+ ],
+ "name": "Wrapped eETH",
+ "symbol": "weETH",
+ "marketCap": "187025130.987454160750694571",
+ "price": "2749.7722945282476439587",
+ "priceChange24hPercent": "-0.85",
+ "volume24h": "8088.752057287611412561",
+ "communityRecognized": false,
+ "key": "evm--59144:0x1bf74c010e6320bab11e2e5a532b5ac15e0b8aa6",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Linea",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/linea.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--59144",
+ "address": "0xaca92e438df0b2401ff60da7e4337b687a2435da",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/e684e97d2f97e70cfa597f03f01edb830ca052e1f95b01150f2b04d6e45284f9",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/e684e97d2f97e70cfa597f03f01edb830ca052e1f95b01150f2b04d6e45284f9"
+ ],
+ "name": "MetaMask USD",
+ "symbol": "mUSD",
+ "marketCap": "6690048.777984052516753466",
+ "price": "1.00103133382588450445",
+ "priceChange24hPercent": "0.13",
+ "volume24h": "119049.76791047813906629",
+ "communityRecognized": false,
+ "key": "evm--59144:0xaca92e438df0b2401ff60da7e4337b687a2435da",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Linea",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/linea.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--59144",
+ "address": "0x1789e0043623282d5dcc7f213d703c6d8bafbb04",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/1c2ae3cfc659b57b04439cb5cbdb828bf369b576054ee0db61a27a21d01a60dc",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/1c2ae3cfc659b57b04439cb5cbdb828bf369b576054ee0db61a27a21d01a60dc"
+ ],
+ "name": "Linea",
+ "symbol": "LINEA",
+ "marketCap": "60669231.510370424772582059",
+ "price": "0.00269280890908269238",
+ "priceChange24hPercent": "-4.19",
+ "volume24h": "17063.12092459870802234",
+ "communityRecognized": true,
+ "key": "evm--59144:0x1789e0043623282d5dcc7f213d703c6d8bafbb04",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Linea",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/linea.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--59144",
+ "address": "0x3aab2285ddcddad8edf438c1bab47e1a9d05a9b4",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/c802a6fcafec3dfa9c65b50627684bdb9290e69792e3a18afb41ea0b6920ec08",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/c802a6fcafec3dfa9c65b50627684bdb9290e69792e3a18afb41ea0b6920ec08"
+ ],
+ "name": "Wrapped BTC",
+ "symbol": "WBTC",
+ "marketCap": "2762598.270993107137875899",
+ "price": "79098.82106999039992577646",
+ "priceChange24hPercent": "-0.5",
+ "volume24h": "4662.3041698607580155",
+ "communityRecognized": false,
+ "key": "evm--59144:0x3aab2285ddcddad8edf438c1bab47e1a9d05a9b4",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Linea",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/linea.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--59144",
+ "address": "0xe4eeb461ad1e4ef8b8ef71a33694ccd84af051c4",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/cd7a5ccaa6f188efdf48ccabe9a1702ac4e9ad31c8b7a88641c5e4028f74fe03",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/cd7a5ccaa6f188efdf48ccabe9a1702ac4e9ad31c8b7a88641c5e4028f74fe03"
+ ],
+ "name": "Etherex Liquid Staking Token",
+ "symbol": "REX33",
+ "marketCap": "1228802.684319646725852364",
+ "price": "0.01134992240641364756",
+ "priceChange24hPercent": "-4.26",
+ "volume24h": "6133.170765",
+ "communityRecognized": false,
+ "key": "evm--59144:0xe4eeb461ad1e4ef8b8ef71a33694ccd84af051c4",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Linea",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/linea.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--59144",
+ "address": "0xeb466342c4d449bc9f53a865d5cb90586f405215",
+ "logoUrl": "https://uni-test.onekey-asset.com/server-service-onchain/evm--59144/tokens/0xeb466342c4d449bc9f53a865d5cb90586f405215.png",
+ "logoUrls": [
+ "https://uni-test.onekey-asset.com/server-service-onchain/evm--59144/tokens/0xeb466342c4d449bc9f53a865d5cb90586f405215.png"
+ ],
+ "name": "Axelar Wrapped USDC",
+ "symbol": "axlUSDC",
+ "marketCap": "67441.045999306686850929",
+ "price": "1.00030927499430282905",
+ "priceChange24hPercent": "0.02",
+ "volume24h": "1083.2174893134692682",
+ "communityRecognized": false,
+ "key": "evm--59144:0xeb466342c4d449bc9f53a865d5cb90586f405215",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Linea",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/linea.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--59144",
+ "address": "0x4af15ec2a0bd43db75dd04e62faa3b8ef36b00d5",
+ "logoUrl": "https://uni-test.onekey-asset.com/server-service-onchain/evm--59144/tokens/0x4af15ec2a0bd43db75dd04e62faa3b8ef36b00d5.png",
+ "logoUrls": [
+ "https://uni-test.onekey-asset.com/server-service-onchain/evm--59144/tokens/0x4af15ec2a0bd43db75dd04e62faa3b8ef36b00d5.png"
+ ],
+ "name": "Dai Stablecoin",
+ "symbol": "DAI",
+ "marketCap": "103839.264178327327318126",
+ "price": "0.99902190514014454062",
+ "priceChange24hPercent": "-0.02",
+ "volume24h": "3818.16097905465862435",
+ "communityRecognized": false,
+ "key": "evm--59144:0x4af15ec2a0bd43db75dd04e62faa3b8ef36b00d5",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Linea",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/linea.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "ton--mainnet",
+ "address": "EQDTBhs52jXA9S7P3xuSvCohgYqbklQdJQLQ98A3Nld7QNMP",
+ "logoUrl": "https://coin-images.coingecko.com/coins/images/102174625/large/h91pak9vhxj88ke7jw8zo9tt7ydf.?1784279201",
+ "logoUrls": [
+ "https://coin-images.coingecko.com/coins/images/102174625/large/h91pak9vhxj88ke7jw8zo9tt7ydf.?1784279201"
+ ],
+ "name": "SIXSEVEN",
+ "symbol": "67",
+ "marketCap": "21449596.055597643039823567",
+ "price": "0.02144959605559764304",
+ "priceChange24hPercent": "1.56",
+ "volume24h": "134023.38087022816",
+ "communityRecognized": false,
+ "key": "ton--mainnet:EQDTBhs52jXA9S7P3xuSvCohgYqbklQdJQLQ98A3Nld7QNMP",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "TON",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/ton.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "ton--mainnet",
+ "address": "EQC7vuKEYLdC72YhUWt3AUVA-Oi66Q1DxTHXH7r6pXaV50j7",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-onchain/ton--mainnet/tokens/EQC7vuKEYLdC72YhUWt3AUVA-Oi66Q1DxTHXH7r6pXaV50j7.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-onchain/ton--mainnet/tokens/EQC7vuKEYLdC72YhUWt3AUVA-Oi66Q1DxTHXH7r6pXaV50j7.png"
+ ],
+ "name": "Baby Yoda",
+ "symbol": "Yoda",
+ "marketCap": "574994.183524627914972327",
+ "price": "0.00057499418435836948",
+ "priceChange24hPercent": "0.45",
+ "volume24h": "9264.73324113924",
+ "communityRecognized": false,
+ "key": "ton--mainnet:EQC7vuKEYLdC72YhUWt3AUVA-Oi66Q1DxTHXH7r6pXaV50j7",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "TON",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/ton.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "ton--mainnet",
+ "address": "EQAIb6KmdfdDR7CN1GBqVJuP25iCnLKCvBlJ07Evuu2dzP5f",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-onchain/ton--mainnet/tokens/EQAIb6KmdfdDR7CN1GBqVJuP25iCnLKCvBlJ07Evuu2dzP5f.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-onchain/ton--mainnet/tokens/EQAIb6KmdfdDR7CN1GBqVJuP25iCnLKCvBlJ07Evuu2dzP5f.png"
+ ],
+ "name": "Ethena USDe",
+ "symbol": "USDe",
+ "marketCap": "160995644.217860694437020699",
+ "price": "0.99870106743476554904",
+ "priceChange24hPercent": "-0.04",
+ "volume24h": "11413.827145746148",
+ "communityRecognized": true,
+ "key": "ton--mainnet:EQAIb6KmdfdDR7CN1GBqVJuP25iCnLKCvBlJ07Evuu2dzP5f",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "TON",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/ton.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "ton--mainnet",
+ "address": "EQDZvDW7Cf33YjMpeVr771PMrYgymGFyibTdcL4y-unuFtmA",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-onchain/ton--mainnet/tokens/EQDZvDW7Cf33YjMpeVr771PMrYgymGFyibTdcL4y-unuFtmA.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-onchain/ton--mainnet/tokens/EQDZvDW7Cf33YjMpeVr771PMrYgymGFyibTdcL4y-unuFtmA.png"
+ ],
+ "name": "BUDDY BEAR",
+ "symbol": "BUDDY",
+ "marketCap": "488389.837955969319188313",
+ "price": "0.04883898379559693192",
+ "priceChange24hPercent": "-1.9",
+ "volume24h": "6156.04931263086",
+ "communityRecognized": false,
+ "key": "ton--mainnet:EQDZvDW7Cf33YjMpeVr771PMrYgymGFyibTdcL4y-unuFtmA",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "TON",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/ton.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "ton--mainnet",
+ "address": "EQBKRSNRkeP1-2jcg5T_f__0s5Hj-vrbfNLMQy8dnZs7xd_p",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-onchain/ton--mainnet/tokens/EQBKRSNRkeP1-2jcg5T_f__0s5Hj-vrbfNLMQy8dnZs7xd_p.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-onchain/ton--mainnet/tokens/EQBKRSNRkeP1-2jcg5T_f__0s5Hj-vrbfNLMQy8dnZs7xd_p.png"
+ ],
+ "name": "Hot Cherry",
+ "symbol": "CHERRY",
+ "marketCap": "1297502.417995430064698877",
+ "price": "0.0000129750241799543",
+ "priceChange24hPercent": "0.33",
+ "volume24h": "7312.39894917743",
+ "communityRecognized": false,
+ "key": "ton--mainnet:EQBKRSNRkeP1-2jcg5T_f__0s5Hj-vrbfNLMQy8dnZs7xd_p",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "TON",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/ton.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "ton--mainnet",
+ "address": "EQBE_gBrU3mPI9hHjlJoR_kYyrhQgyCFD6EUWfa42W8T7EBP",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-onchain/ton--mainnet/tokens/EQBE_gBrU3mPI9hHjlJoR_kYyrhQgyCFD6EUWfa42W8T7EBP.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-onchain/ton--mainnet/tokens/EQBE_gBrU3mPI9hHjlJoR_kYyrhQgyCFD6EUWfa42W8T7EBP.png"
+ ],
+ "name": "TAC token",
+ "symbol": "TAC",
+ "marketCap": "10126610.691135926914662207",
+ "price": "0.00225648066181251985",
+ "priceChange24hPercent": "-12.69",
+ "volume24h": "9200.82514322781",
+ "communityRecognized": true,
+ "key": "ton--mainnet:EQBE_gBrU3mPI9hHjlJoR_kYyrhQgyCFD6EUWfa42W8T7EBP",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "TON",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/ton.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "ton--mainnet",
+ "address": "EQB6Ql1JE7Hq0JuropLYschcu-WNt2vMmWF2-8mEMrK68nJn",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-onchain/ton--mainnet/tokens/EQB6Ql1JE7Hq0JuropLYschcu-WNt2vMmWF2-8mEMrK68nJn.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-onchain/ton--mainnet/tokens/EQB6Ql1JE7Hq0JuropLYschcu-WNt2vMmWF2-8mEMrK68nJn.png"
+ ],
+ "name": "Gentleman",
+ "symbol": "MAN",
+ "marketCap": "66360.016001597012450766",
+ "price": "0.00006636013198068195",
+ "priceChange24hPercent": "-22.74",
+ "volume24h": "2188.64333048425",
+ "communityRecognized": false,
+ "key": "ton--mainnet:EQB6Ql1JE7Hq0JuropLYschcu-WNt2vMmWF2-8mEMrK68nJn",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "TON",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/ton.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "ton--mainnet",
+ "address": "EQAtwo6qMNwtr0iTA9eKVZ32cuACFJ0VKd78GrBWOe83-X1P",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-onchain/ton--mainnet/tokens/EQAtwo6qMNwtr0iTA9eKVZ32cuACFJ0VKd78GrBWOe83-X1P.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-onchain/ton--mainnet/tokens/EQAtwo6qMNwtr0iTA9eKVZ32cuACFJ0VKd78GrBWOe83-X1P.png"
+ ],
+ "name": "Groyper",
+ "symbol": "GROYP",
+ "marketCap": "2064559.490478437374688874",
+ "price": "0.04208547572663362007",
+ "priceChange24hPercent": "-15.43",
+ "volume24h": "25411.93389440318",
+ "communityRecognized": false,
+ "key": "ton--mainnet:EQAtwo6qMNwtr0iTA9eKVZ32cuACFJ0VKd78GrBWOe83-X1P",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "TON",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/ton.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "ton--mainnet",
+ "address": "EQB1fyBAA9qQDP6LEGaF3cbU-Xbr-p6ESBZGnqlHkHIHAJZv",
+ "logoUrl": "https://xstocks-metadata.backed.fi/logos/tokens/SPYx.png",
+ "logoUrls": [
+ "https://xstocks-metadata.backed.fi/logos/tokens/SPYx.png"
+ ],
+ "name": "SP500 xStock",
+ "symbol": "SPYx",
+ "marketCap": "29074799.519039552098816811",
+ "price": "769.87380471472281848315",
+ "priceChange24hPercent": "0.29",
+ "volume24h": "2167.96749913076",
+ "communityRecognized": false,
+ "key": "ton--mainnet:EQB1fyBAA9qQDP6LEGaF3cbU-Xbr-p6ESBZGnqlHkHIHAJZv",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "TON",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/ton.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "ton--mainnet",
+ "address": "EQA2kCVNwVsil2EM2mB0SkXytxCqQjS4mttjDpnXmwG9T6bO",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-onchain/ton--mainnet/tokens/EQA2kCVNwVsil2EM2mB0SkXytxCqQjS4mttjDpnXmwG9T6bO.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-onchain/ton--mainnet/tokens/EQA2kCVNwVsil2EM2mB0SkXytxCqQjS4mttjDpnXmwG9T6bO.png"
+ ],
+ "name": "STON",
+ "symbol": "STON",
+ "marketCap": "16823673.965443634411206895",
+ "price": "0.4492409869545753464",
+ "priceChange24hPercent": "0.68",
+ "volume24h": "15364.98002953259",
+ "communityRecognized": false,
+ "key": "ton--mainnet:EQA2kCVNwVsil2EM2mB0SkXytxCqQjS4mttjDpnXmwG9T6bO",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "TON",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/ton.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "ton--mainnet",
+ "address": "EQAvlWFDxGF2lXm67y4yzC17wYKD9A0guwPkMs1gOsM__NOT",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-onchain/ton--mainnet/tokens/EQAvlWFDxGF2lXm67y4yzC17wYKD9A0guwPkMs1gOsM__NOT.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-onchain/ton--mainnet/tokens/EQAvlWFDxGF2lXm67y4yzC17wYKD9A0guwPkMs1gOsM__NOT.png"
+ ],
+ "name": "Notcoin",
+ "symbol": "NOT",
+ "marketCap": "46196935.669849185546110065",
+ "price": "0.00046462025748837209",
+ "priceChange24hPercent": "2",
+ "volume24h": "12060.39221768793",
+ "communityRecognized": true,
+ "key": "ton--mainnet:EQAvlWFDxGF2lXm67y4yzC17wYKD9A0guwPkMs1gOsM__NOT",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "TON",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/ton.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "ton--mainnet",
+ "address": "EQACLXDwit01stiqK9FvYiJo15luVzfD5zU8uwDSq6JXxbP8",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-onchain/ton--mainnet/tokens/EQACLXDwit01stiqK9FvYiJo15luVzfD5zU8uwDSq6JXxbP8.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-onchain/ton--mainnet/tokens/EQACLXDwit01stiqK9FvYiJo15luVzfD5zU8uwDSq6JXxbP8.png"
+ ],
+ "name": "Spintria",
+ "symbol": "SP",
+ "marketCap": "201062.453928576261125612",
+ "price": "0.00389925949743134637",
+ "priceChange24hPercent": "-2.5",
+ "volume24h": "10102.93010752357",
+ "communityRecognized": false,
+ "key": "ton--mainnet:EQACLXDwit01stiqK9FvYiJo15luVzfD5zU8uwDSq6JXxbP8",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "TON",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/ton.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "ton--mainnet",
+ "address": "EQD-cvR0Nz6XAyRBvbhz-abTrRC6sI5tvHvvpeQraV9UAAD7",
+ "logoUrl": "https://coin-images.coingecko.com/coins/images/50236/large/cati.png?1726638258",
+ "logoUrls": [
+ "https://coin-images.coingecko.com/coins/images/50236/large/cati.png?1726638258"
+ ],
+ "name": "Catizen",
+ "symbol": "CATI",
+ "marketCap": "27762864.764570841591731444",
+ "price": "0.06118560739853156334",
+ "priceChange24hPercent": "7.38",
+ "volume24h": "18772.14578613455",
+ "communityRecognized": true,
+ "key": "ton--mainnet:EQD-cvR0Nz6XAyRBvbhz-abTrRC6sI5tvHvvpeQraV9UAAD7",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "TON",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/ton.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "ton--mainnet",
+ "address": "EQC4Dx5Mqy9qhqHpH0cl_U8hejBnchNXZn_L0_Oj2zLY5B3P",
+ "logoUrl": "https://raw.githubusercontent.com/TheCoinOnTon/TheCoin/main/coin%20logo%20png.png",
+ "logoUrls": [
+ "https://raw.githubusercontent.com/TheCoinOnTon/TheCoin/main/coin%20logo%20png.png"
+ ],
+ "name": "The Coin",
+ "symbol": "COIN",
+ "marketCap": "25286.369626610303164682",
+ "price": "0.0000252863696266103",
+ "priceChange24hPercent": "-19.77",
+ "volume24h": "1583.23213452253",
+ "communityRecognized": false,
+ "key": "ton--mainnet:EQC4Dx5Mqy9qhqHpH0cl_U8hejBnchNXZn_L0_Oj2zLY5B3P",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "TON",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/ton.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "ton--mainnet",
+ "address": "EQBZ_cafPyDr5KUTs0aNxh0ZTDhkpEZONmLJA2SNGlLm4Cko",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-onchain/ton--mainnet/tokens/EQBZ_cafPyDr5KUTs0aNxh0ZTDhkpEZONmLJA2SNGlLm4Cko.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-onchain/ton--mainnet/tokens/EQBZ_cafPyDr5KUTs0aNxh0ZTDhkpEZONmLJA2SNGlLm4Cko.png"
+ ],
+ "name": "Resistance Dog",
+ "symbol": "REDO",
+ "marketCap": "5270649.506781309661657659",
+ "price": "0.05270650025683336607",
+ "priceChange24hPercent": "-8.96",
+ "volume24h": "47760.70210364247",
+ "communityRecognized": true,
+ "key": "ton--mainnet:EQBZ_cafPyDr5KUTs0aNxh0ZTDhkpEZONmLJA2SNGlLm4Cko",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "TON",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/ton.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "ton--mainnet",
+ "address": "EQCvxJy4eG8hyHBFsZ7eePxrRsUQSFE_jpptRAYBmcG_DOGS",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-onchain/ton--mainnet/tokens/EQCvxJy4eG8hyHBFsZ7eePxrRsUQSFE_jpptRAYBmcG_DOGS.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-onchain/ton--mainnet/tokens/EQCvxJy4eG8hyHBFsZ7eePxrRsUQSFE_jpptRAYBmcG_DOGS.png"
+ ],
+ "name": "Dogs",
+ "symbol": "DOGS",
+ "marketCap": "24290532.681262277521994229",
+ "price": "0.0000470063525520315",
+ "priceChange24hPercent": "4.23",
+ "volume24h": "7216.8125667808",
+ "communityRecognized": true,
+ "key": "ton--mainnet:EQCvxJy4eG8hyHBFsZ7eePxrRsUQSFE_jpptRAYBmcG_DOGS",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "TON",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/ton.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "ton--mainnet",
+ "address": "EQCpkuD6gpAdXWJDOLKyxx6ngDDcXz2AS85jWyDWa3qTVXYQ",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-onchain/ton--mainnet/tokens/EQCpkuD6gpAdXWJDOLKyxx6ngDDcXz2AS85jWyDWa3qTVXYQ.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-onchain/ton--mainnet/tokens/EQCpkuD6gpAdXWJDOLKyxx6ngDDcXz2AS85jWyDWa3qTVXYQ.png"
+ ],
+ "name": "YOGAFERMA",
+ "symbol": "AUM",
+ "marketCap": "272751.865212240303938053",
+ "price": "0.00027275213796437827",
+ "priceChange24hPercent": "28.13",
+ "volume24h": "1583.93997452996",
+ "communityRecognized": false,
+ "key": "ton--mainnet:EQCpkuD6gpAdXWJDOLKyxx6ngDDcXz2AS85jWyDWa3qTVXYQ",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "TON",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/ton.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "ton--mainnet",
+ "address": "EQC47093oX5Xhb0xuk2lCr2RhS8rj-vul61u4W2UH5ORmG_O",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-onchain/ton--mainnet/tokens/EQC47093oX5Xhb0xuk2lCr2RhS8rj-vul61u4W2UH5ORmG_O.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-onchain/ton--mainnet/tokens/EQC47093oX5Xhb0xuk2lCr2RhS8rj-vul61u4W2UH5ORmG_O.png"
+ ],
+ "name": "Grm",
+ "symbol": "GRM",
+ "marketCap": "1949306.441425182472192292",
+ "price": "0.00080083738604487406",
+ "priceChange24hPercent": "-16.11",
+ "volume24h": "13043.972656397537",
+ "communityRecognized": true,
+ "key": "ton--mainnet:EQC47093oX5Xhb0xuk2lCr2RhS8rj-vul61u4W2UH5ORmG_O",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "TON",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/ton.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "ton--mainnet",
+ "address": "EQA1R_LuQCLHlMgOo1S4G7Y7W1cd0FrAkbA10Zq7rddKxi9k",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-onchain/ton--mainnet/tokens/EQA1R_LuQCLHlMgOo1S4G7Y7W1cd0FrAkbA10Zq7rddKxi9k.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-onchain/ton--mainnet/tokens/EQA1R_LuQCLHlMgOo1S4G7Y7W1cd0FrAkbA10Zq7rddKxi9k.png"
+ ],
+ "name": "XAUt0",
+ "symbol": "XAUt0",
+ "marketCap": "21041195.218392782733143306",
+ "price": "4404.94940136622763908001",
+ "priceChange24hPercent": "-0.97",
+ "volume24h": "2605.97114227823",
+ "communityRecognized": true,
+ "key": "ton--mainnet:EQA1R_LuQCLHlMgOo1S4G7Y7W1cd0FrAkbA10Zq7rddKxi9k",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "TON",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/ton.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "ton--mainnet",
+ "address": "EQB4zZusHsbU2vVTPqjhlokIOoiZhEdCMT703CWEzhTOo__X",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-onchain/ton--mainnet/tokens/EQB4zZusHsbU2vVTPqjhlokIOoiZhEdCMT703CWEzhTOo__X.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-onchain/ton--mainnet/tokens/EQB4zZusHsbU2vVTPqjhlokIOoiZhEdCMT703CWEzhTOo__X.png"
+ ],
+ "name": "X Empire",
+ "symbol": "X",
+ "marketCap": "4842751.060204379288249644",
+ "price": "0.0000070184798234",
+ "priceChange24hPercent": "4.74",
+ "volume24h": "2364.62901217262",
+ "communityRecognized": true,
+ "key": "ton--mainnet:EQB4zZusHsbU2vVTPqjhlokIOoiZhEdCMT703CWEzhTOo__X",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "TON",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/ton.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "ton--mainnet",
+ "address": "EQCFVNlRb-NHHDQfv3Q9xvDXBLJlay855_xREsq5ZDX6KN-w",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-onchain/ton--mainnet/tokens/EQCFVNlRb-NHHDQfv3Q9xvDXBLJlay855_xREsq5ZDX6KN-w.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-onchain/ton--mainnet/tokens/EQCFVNlRb-NHHDQfv3Q9xvDXBLJlay855_xREsq5ZDX6KN-w.png"
+ ],
+ "name": "My Wallet Coin",
+ "symbol": "MY",
+ "marketCap": "2019082.542229796784835871",
+ "price": "0.04038167991940547767",
+ "priceChange24hPercent": "-0.91",
+ "volume24h": "630.74131098727",
+ "communityRecognized": false,
+ "key": "ton--mainnet:EQCFVNlRb-NHHDQfv3Q9xvDXBLJlay855_xREsq5ZDX6KN-w",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "TON",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/ton.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "ton--mainnet",
+ "address": "EQC7js8NLX3v57ZuRmuusNtMSBdki4va_qyL7sAwdmosf_xK",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-onchain/ton--mainnet/tokens/EQC7js8NLX3v57ZuRmuusNtMSBdki4va_qyL7sAwdmosf_xK.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-onchain/ton--mainnet/tokens/EQC7js8NLX3v57ZuRmuusNtMSBdki4va_qyL7sAwdmosf_xK.png"
+ ],
+ "name": "Amocucinare",
+ "symbol": "AMORE",
+ "marketCap": "387979.091570069734679715",
+ "price": "0.00040753558935934549",
+ "priceChange24hPercent": "-3.4",
+ "volume24h": "928.79200959409",
+ "communityRecognized": true,
+ "key": "ton--mainnet:EQC7js8NLX3v57ZuRmuusNtMSBdki4va_qyL7sAwdmosf_xK",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "TON",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/ton.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "ton--mainnet",
+ "address": "EQA6G0uVERDZTkLNa0drWBna1F5TSbogy7UXEWU5ERHz4uJL",
+ "logoUrl": "https://coin-images.coingecko.com/coins/images/102174344/large/photo_2026-06-21_14-13-09.jpg?1783349960",
+ "logoUrls": [
+ "https://coin-images.coingecko.com/coins/images/102174344/large/photo_2026-06-21_14-13-09.jpg?1783349960"
+ ],
+ "name": "Pepe Grinch",
+ "symbol": "GRINCH",
+ "marketCap": "87271.337326526318096636",
+ "price": "0.00008727133732652632",
+ "priceChange24hPercent": "-12.95",
+ "volume24h": "1271.99482534275",
+ "communityRecognized": false,
+ "key": "ton--mainnet:EQA6G0uVERDZTkLNa0drWBna1F5TSbogy7UXEWU5ERHz4uJL",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "TON",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/ton.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "ton--mainnet",
+ "address": "EQCwe0g3cEFhsz4VK5nrtOZBkFeSISxhCVUqvON7Im__SOON",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-onchain/ton--mainnet/tokens/EQCwe0g3cEFhsz4VK5nrtOZBkFeSISxhCVUqvON7Im__SOON.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-onchain/ton--mainnet/tokens/EQCwe0g3cEFhsz4VK5nrtOZBkFeSISxhCVUqvON7Im__SOON.png"
+ ],
+ "name": "TON Station",
+ "symbol": "MRSOON",
+ "marketCap": "172981.198217050194793735",
+ "price": "0.00000262648732075077",
+ "priceChange24hPercent": "14.03",
+ "volume24h": "808.84326690577",
+ "communityRecognized": false,
+ "key": "ton--mainnet:EQCwe0g3cEFhsz4VK5nrtOZBkFeSISxhCVUqvON7Im__SOON",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "TON",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/ton.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "ton--mainnet",
+ "address": "EQAhZDXKDDqF2bFuWAGly5FxfgVthjOKfvbyTfzTvK8yhIUb",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-onchain/ton--mainnet/tokens/EQAhZDXKDDqF2bFuWAGly5FxfgVthjOKfvbyTfzTvK8yhIUb.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-onchain/ton--mainnet/tokens/EQAhZDXKDDqF2bFuWAGly5FxfgVthjOKfvbyTfzTvK8yhIUb.png"
+ ],
+ "name": "AVTOP",
+ "symbol": "AVTOP",
+ "marketCap": "765770.306589150260074433",
+ "price": "0.00076577030658915026",
+ "priceChange24hPercent": "-0.81",
+ "volume24h": "667.03720598584",
+ "communityRecognized": false,
+ "key": "ton--mainnet:EQAhZDXKDDqF2bFuWAGly5FxfgVthjOKfvbyTfzTvK8yhIUb",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "TON",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/ton.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "ton--mainnet",
+ "address": "EQAmZFuDbV0Ze8yR3lh3v0n8FISN-s3Yi7M8URCT--qc_t8x",
+ "logoUrl": "ipfs://QmZZXEx9Coi9f81CRy4d4MNtmoSfJNJjAAQMQmfp3FK2ct",
+ "logoUrls": [
+ "ipfs://QmZZXEx9Coi9f81CRy4d4MNtmoSfJNJjAAQMQmfp3FK2ct"
+ ],
+ "name": "PeepoPepe",
+ "symbol": "PEEPO",
+ "marketCap": "80030.7218015",
+ "price": "0.0000800307218015",
+ "priceChange24hPercent": "-0.73",
+ "volume24h": "810.5755023627",
+ "communityRecognized": false,
+ "key": "ton--mainnet:EQAmZFuDbV0Ze8yR3lh3v0n8FISN-s3Yi7M8URCT--qc_t8x",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "TON",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/ton.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "ton--mainnet",
+ "address": "EQAX9J60va-0wIDMdqGLRMf7imJvG0Ytyi3Yxnq9y-nbNCq2",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-onchain/ton--mainnet/tokens/EQAX9J60va-0wIDMdqGLRMf7imJvG0Ytyi3Yxnq9y-nbNCq2.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-onchain/ton--mainnet/tokens/EQAX9J60va-0wIDMdqGLRMf7imJvG0Ytyi3Yxnq9y-nbNCq2.png"
+ ],
+ "name": "Paper Plane",
+ "symbol": "PLANE",
+ "marketCap": "384628.411324546412546182",
+ "price": "0.00384628411324546413",
+ "priceChange24hPercent": "-13.97",
+ "volume24h": "5444.36601145269",
+ "communityRecognized": false,
+ "key": "ton--mainnet:EQAX9J60va-0wIDMdqGLRMf7imJvG0Ytyi3Yxnq9y-nbNCq2",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "TON",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/ton.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "ton--mainnet",
+ "address": "EQAKBA1_-wWP31MjbFp-CiU7RZYsUetkVoHTHTuYgR8KhuPE",
+ "logoUrl": "https://i.ibb.co/7tB3xnbj/photo-2025-08-01-23-11-37.jpg",
+ "logoUrls": [
+ "https://i.ibb.co/7tB3xnbj/photo-2025-08-01-23-11-37.jpg"
+ ],
+ "name": "GRAMCAT",
+ "symbol": "GRAMCAT",
+ "marketCap": "41159.54660196302663237",
+ "price": "0.00041159546601963027",
+ "priceChange24hPercent": "-21.72",
+ "volume24h": "5059.21028373529",
+ "communityRecognized": false,
+ "key": "ton--mainnet:EQAKBA1_-wWP31MjbFp-CiU7RZYsUetkVoHTHTuYgR8KhuPE",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "TON",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/ton.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "ton--mainnet",
+ "address": "EQBsosmcZrD6FHijA7qWGLw5wo_aH8UN435hi935jJ_STORM",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-onchain/ton--mainnet/tokens/EQBsosmcZrD6FHijA7qWGLw5wo_aH8UN435hi935jJ_STORM.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-onchain/ton--mainnet/tokens/EQBsosmcZrD6FHijA7qWGLw5wo_aH8UN435hi935jJ_STORM.png"
+ ],
+ "name": "STORM",
+ "symbol": "STORM",
+ "marketCap": "925812.304320762173310263",
+ "price": "0.00358523635833183614",
+ "priceChange24hPercent": "-1.81",
+ "volume24h": "3784.76866080957",
+ "communityRecognized": true,
+ "key": "ton--mainnet:EQBsosmcZrD6FHijA7qWGLw5wo_aH8UN435hi935jJ_STORM",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "TON",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/ton.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "ton--mainnet",
+ "address": "EQATcUc69sGSCCMSadsVUKdGwM1BMKS-HKCWGPk60xZGgwsK",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-onchain/ton--mainnet/tokens/EQATcUc69sGSCCMSadsVUKdGwM1BMKS-HKCWGPk60xZGgwsK.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-onchain/ton--mainnet/tokens/EQATcUc69sGSCCMSadsVUKdGwM1BMKS-HKCWGPk60xZGgwsK.png"
+ ],
+ "name": "TON FISH MEMECOIN",
+ "symbol": "FISH",
+ "marketCap": "435123.324914055811393092",
+ "price": "0.00000000144658558746",
+ "priceChange24hPercent": "-2.84",
+ "volume24h": "957.09879693658",
+ "communityRecognized": false,
+ "key": "ton--mainnet:EQATcUc69sGSCCMSadsVUKdGwM1BMKS-HKCWGPk60xZGgwsK",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "TON",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/ton.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "ton--mainnet",
+ "address": "EQB6sr58v9C3ZIjPgJJkTsZBn1-9cTDYPFjd8OdtVmXVm7m2",
+ "logoUrl": "https://i.ibb.co/s9qGj4Sb/photo-2026-09-07-15-07-57.jpg",
+ "logoUrls": [
+ "https://i.ibb.co/s9qGj4Sb/photo-2026-09-07-15-07-57.jpg"
+ ],
+ "name": "DOBBYX",
+ "symbol": "DBX",
+ "marketCap": "213103.965481175117609036",
+ "price": "0.00021310396548117512",
+ "priceChange24hPercent": "28476.04",
+ "volume24h": "11473.15682968138",
+ "communityRecognized": false,
+ "key": "ton--mainnet:EQB6sr58v9C3ZIjPgJJkTsZBn1-9cTDYPFjd8OdtVmXVm7m2",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "TON",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/ton.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "ton--mainnet",
+ "address": "EQDgxL39gVj4_QXjeaOyXaRPol7n0HulTKHOmU7dr23mm2Ng",
+ "logoUrl": "https://raw.githubusercontent.com/DiamondClB/diamond/refs/heads/main/diamond_final.png",
+ "logoUrls": [
+ "https://raw.githubusercontent.com/DiamondClB/diamond/refs/heads/main/diamond_final.png"
+ ],
+ "name": "Diamond",
+ "symbol": "DIAMOND",
+ "marketCap": "155090.196429061878049361",
+ "price": "0.00738524744900294657",
+ "priceChange24hPercent": "-5.38",
+ "volume24h": "719.83069618447",
+ "communityRecognized": false,
+ "key": "ton--mainnet:EQDgxL39gVj4_QXjeaOyXaRPol7n0HulTKHOmU7dr23mm2Ng",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "TON",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/ton.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "ton--mainnet",
+ "address": "EQDK-ITrmdWfns6Ibse9xdw_K5VARAihGiaMev0kkqEzU9-m",
+ "logoUrl": "https://gattogame.github.io/Gatto/500x500.png",
+ "logoUrls": [
+ "https://gattogame.github.io/Gatto/500x500.png"
+ ],
+ "name": "Gatto Game Token",
+ "symbol": "GTON",
+ "marketCap": "718691.420021052631578947",
+ "price": "0.03992730111228070175",
+ "priceChange24hPercent": "-7.42",
+ "volume24h": "599.01463423083",
+ "communityRecognized": false,
+ "key": "ton--mainnet:EQDK-ITrmdWfns6Ibse9xdw_K5VARAihGiaMev0kkqEzU9-m",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "TON",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/ton.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "ton--mainnet",
+ "address": "EQCAj5oiRRrXokYsg_B-e0KG9xMwh5upr5I8HQzErm0_BLUM",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-onchain/ton--mainnet/tokens/EQCAj5oiRRrXokYsg_B-e0KG9xMwh5upr5I8HQzErm0_BLUM.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-onchain/ton--mainnet/tokens/EQCAj5oiRRrXokYsg_B-e0KG9xMwh5upr5I8HQzErm0_BLUM.png"
+ ],
+ "name": "Blum",
+ "symbol": "BLUM",
+ "marketCap": "228349.591368772819232894",
+ "price": "0.0012890354364986187",
+ "priceChange24hPercent": "-6.22",
+ "volume24h": "1083.09804187914",
+ "communityRecognized": true,
+ "key": "ton--mainnet:EQCAj5oiRRrXokYsg_B-e0KG9xMwh5upr5I8HQzErm0_BLUM",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "TON",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/ton.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "ton--mainnet",
+ "address": "EQB420yQsZobGcy0VYDfSKHpG2QQlw-j1f_tPu1J488I__PX",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-onchain/ton--mainnet/tokens/EQB420yQsZobGcy0VYDfSKHpG2QQlw-j1f_tPu1J488I__PX.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-onchain/ton--mainnet/tokens/EQB420yQsZobGcy0VYDfSKHpG2QQlw-j1f_tPu1J488I__PX.png"
+ ],
+ "name": "Not Pixel",
+ "symbol": "PX",
+ "marketCap": "2851805.086357855087266293",
+ "price": "0.0141654019874",
+ "priceChange24hPercent": "2.52",
+ "volume24h": "7179.20967224257",
+ "communityRecognized": true,
+ "key": "ton--mainnet:EQB420yQsZobGcy0VYDfSKHpG2QQlw-j1f_tPu1J488I__PX",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "TON",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/ton.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "ton--mainnet",
+ "address": "EQD6fdBx0HP13JfcVocPgQCjKqpKXh3hXSMVGVHe5yRA1fb_",
+ "logoUrl": "https://i.postimg.cc/SxPL3Xc5/logo.jpg",
+ "logoUrls": [
+ "https://i.postimg.cc/SxPL3Xc5/logo.jpg"
+ ],
+ "name": "Fast UP",
+ "symbol": "FAST",
+ "marketCap": "35247.615188685677556058",
+ "price": "0.00035247615188685678",
+ "priceChange24hPercent": "-19.43",
+ "volume24h": "1120.34736505423",
+ "communityRecognized": false,
+ "key": "ton--mainnet:EQD6fdBx0HP13JfcVocPgQCjKqpKXh3hXSMVGVHe5yRA1fb_",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "TON",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/ton.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "ton--mainnet",
+ "address": "EQAmAb3d7dEP8fMWOf42Jzxu8DyG_fCK9ndfLs1XhjlN5HU9",
+ "logoUrl": "ipfs://QmX8uC4Dk4yEcSjaTz5LwbzdsowoMUxSNs96CaM2pdtbjz",
+ "logoUrls": [
+ "ipfs://QmX8uC4Dk4yEcSjaTz5LwbzdsowoMUxSNs96CaM2pdtbjz"
+ ],
+ "name": "LOCKIN",
+ "symbol": "LOCKIN",
+ "marketCap": "48787.413579117174403571",
+ "price": "0.00004878741357911717",
+ "priceChange24hPercent": "3.13",
+ "volume24h": "20239.49749761153",
+ "communityRecognized": false,
+ "key": "ton--mainnet:EQAmAb3d7dEP8fMWOf42Jzxu8DyG_fCK9ndfLs1XhjlN5HU9",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "TON",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/ton.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "ton--mainnet",
+ "address": "EQAkiDve5SHF5UdE_5hqnr7T0dOJIZXeqROa3ka5Xf5hQ19n",
+ "logoUrl": "https://diamond-club.cc/assets/token-metadata/17c861603a799b0c57afae05632597e04b545e83913a087559e509e548747fba.png",
+ "logoUrls": [
+ "https://diamond-club.cc/assets/token-metadata/17c861603a799b0c57afae05632597e04b545e83913a087559e509e548747fba.png"
+ ],
+ "name": "Game Realm Incentive Mechanism",
+ "symbol": "GRIM",
+ "marketCap": "3610316.751789999999999999",
+ "price": "0.01719198453233333333",
+ "priceChange24hPercent": "27.11",
+ "volume24h": "3198.07505313276",
+ "communityRecognized": false,
+ "key": "ton--mainnet:EQAkiDve5SHF5UdE_5hqnr7T0dOJIZXeqROa3ka5Xf5hQ19n",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "TON",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/ton.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "ton--mainnet",
+ "address": "EQBw_rcP4aRenaV1Vo-w0bkCrrxEktXopRrZTWNovQh7FJ5w",
+ "logoUrl": "https://i.ibb.co/WWHSjWjC/IMG-2491-jpeg.jpg",
+ "logoUrls": [
+ "https://i.ibb.co/WWHSjWjC/IMG-2491-jpeg.jpg"
+ ],
+ "name": "Mira",
+ "symbol": "Mira",
+ "marketCap": "31250.095652478535825847",
+ "price": "0.00031250095652478536",
+ "priceChange24hPercent": "-4.24",
+ "volume24h": "600.325337382",
+ "communityRecognized": false,
+ "key": "ton--mainnet:EQBw_rcP4aRenaV1Vo-w0bkCrrxEktXopRrZTWNovQh7FJ5w",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "TON",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/ton.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "ton--mainnet",
+ "address": "EQCDuRLTylau8yKEkx1AMLpHAy6Vog_5D6aC4HNkyG8JN-me",
+ "logoUrl": "https://cdn.city-holder.com/token/token_logo.png",
+ "logoUrls": [
+ "https://cdn.city-holder.com/token/token_logo.png"
+ ],
+ "name": "CITY",
+ "symbol": "HOLDER",
+ "marketCap": "255008.296467935142773587",
+ "price": "0.00255008299535684986",
+ "priceChange24hPercent": "-5.79",
+ "volume24h": "532.43684392004",
+ "communityRecognized": false,
+ "key": "ton--mainnet:EQCDuRLTylau8yKEkx1AMLpHAy6Vog_5D6aC4HNkyG8JN-me",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "TON",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/ton.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "ton--mainnet",
+ "address": "EQBSS2nSuO-vYy8g1kgCYVA7Mi4hpYZaUbwG1ZIRf_KBR4_q",
+ "logoUrl": "https://i.ibb.co/NdgnGMpr/Durik.png",
+ "logoUrls": [
+ "https://i.ibb.co/NdgnGMpr/Durik.png"
+ ],
+ "name": "DURIKOVICH",
+ "symbol": "DURIKOVICH",
+ "marketCap": "34968.657895563346719761",
+ "price": "0.00034968921910923774",
+ "priceChange24hPercent": "-6.85",
+ "volume24h": "727.38815722913",
+ "communityRecognized": false,
+ "key": "ton--mainnet:EQBSS2nSuO-vYy8g1kgCYVA7Mi4hpYZaUbwG1ZIRf_KBR4_q",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "TON",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/ton.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "ton--mainnet",
+ "address": "EQCQUbMUqcm6NYr6QdfIl3R3SE28wUpoX51Za604x9BSbA6y",
+ "logoUrl": "https://plushpepecoin.github.io/logo200.png",
+ "logoUrls": [
+ "https://plushpepecoin.github.io/logo200.png"
+ ],
+ "name": "Plush Pepe",
+ "symbol": "PLUSHPEPE",
+ "marketCap": "406238.055689732581709042",
+ "price": "0.00040623805568973258",
+ "priceChange24hPercent": "-11.11",
+ "volume24h": "1032.27701876314",
+ "communityRecognized": false,
+ "key": "ton--mainnet:EQCQUbMUqcm6NYr6QdfIl3R3SE28wUpoX51Za604x9BSbA6y",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "TON",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/ton.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "ton--mainnet",
+ "address": "EQBKMfjX_a_dsOLm-juxyVZytFP7_KKnzGv6J01kGc72gVBp",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-onchain/ton--mainnet/tokens/EQBKMfjX_a_dsOLm-juxyVZytFP7_KKnzGv6J01kGc72gVBp.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-onchain/ton--mainnet/tokens/EQBKMfjX_a_dsOLm-juxyVZytFP7_KKnzGv6J01kGc72gVBp.png"
+ ],
+ "name": "Evaa protocol",
+ "symbol": "EVAA",
+ "marketCap": "4092933.964696472420377643",
+ "price": "0.61845743147545387324",
+ "priceChange24hPercent": "-6.87",
+ "volume24h": "6193.47877374344",
+ "communityRecognized": true,
+ "key": "ton--mainnet:EQBKMfjX_a_dsOLm-juxyVZytFP7_KKnzGv6J01kGc72gVBp",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "TON",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/ton.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "ton--mainnet",
+ "address": "EQCThzitzPXm2dH9psaVkZlkAcHqzCJjcBpD29b5closNeq-",
+ "logoUrl": "https://i.postimg.cc/NMsNyCwb/jetton.webp",
+ "logoUrls": [
+ "https://i.postimg.cc/NMsNyCwb/jetton.webp"
+ ],
+ "name": "PLATHO",
+ "symbol": "ATH",
+ "marketCap": "363164.386173423798649552",
+ "price": "0.00376267136673816097",
+ "priceChange24hPercent": "-7.38",
+ "volume24h": "3265.07339571771",
+ "communityRecognized": false,
+ "key": "ton--mainnet:EQCThzitzPXm2dH9psaVkZlkAcHqzCJjcBpD29b5closNeq-",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "TON",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/ton.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "ton--mainnet",
+ "address": "EQDc_nrm5oOVCVQM8GRJ5q_hr1jgpNQjsGkIGE-uztt26_Ep",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-onchain/ton--mainnet/tokens/EQDc_nrm5oOVCVQM8GRJ5q_hr1jgpNQjsGkIGE-uztt26_Ep.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-onchain/ton--mainnet/tokens/EQDc_nrm5oOVCVQM8GRJ5q_hr1jgpNQjsGkIGE-uztt26_Ep.png"
+ ],
+ "name": "Ecorpay",
+ "symbol": "ECOR",
+ "marketCap": "228596319.850129904458841649",
+ "price": "0.02285963198501299045",
+ "priceChange24hPercent": "-5.47",
+ "volume24h": "18573.18310546416",
+ "communityRecognized": false,
+ "key": "ton--mainnet:EQDc_nrm5oOVCVQM8GRJ5q_hr1jgpNQjsGkIGE-uztt26_Ep",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "TON",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/ton.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "ton--mainnet",
+ "address": "EQBvYQ3TyUYTjQxZa6UPbjwVzjnC5U3PRiXhpIu-HPMYMtTX",
+ "logoUrl": "https://coin-images.coingecko.com/coins/images/102173345/large/fast.jpg?1779100483",
+ "logoUrls": [
+ "https://coin-images.coingecko.com/coins/images/102173345/large/fast.jpg?1779100483"
+ ],
+ "name": "Gotta Go Fast",
+ "symbol": "FAST",
+ "marketCap": "51843.933950409616962503",
+ "price": "0.00005184393395040962",
+ "priceChange24hPercent": "-10.88",
+ "volume24h": "1517.50876059279",
+ "communityRecognized": false,
+ "key": "ton--mainnet:EQBvYQ3TyUYTjQxZa6UPbjwVzjnC5U3PRiXhpIu-HPMYMtTX",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "TON",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/ton.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "ton--mainnet",
+ "address": "EQAOyf4n-7wTtTI45LGQwfacEfnkpOa9v6bjpwgeCHX5WW8y",
+ "logoUrl": "https://coin-images.coingecko.com/coins/images/102173156/large/dog.jpg?1778136988",
+ "logoUrls": [
+ "https://coin-images.coingecko.com/coins/images/102173156/large/dog.jpg?1778136988"
+ ],
+ "name": "Durovs Dog",
+ "symbol": "PYONYA",
+ "marketCap": "99675.078720807634679225",
+ "price": "0.00009967507872080763",
+ "priceChange24hPercent": "-9.58",
+ "volume24h": "1489.77857670736",
+ "communityRecognized": false,
+ "key": "ton--mainnet:EQAOyf4n-7wTtTI45LGQwfacEfnkpOa9v6bjpwgeCHX5WW8y",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "TON",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/ton.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "ton--mainnet",
+ "address": "EQAQXlWJvGbbFfE8F3oS8s87lIgdovS455IsWFaRdmJetTon",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-onchain/ton--mainnet/tokens/EQAQXlWJvGbbFfE8F3oS8s87lIgdovS455IsWFaRdmJetTon.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-onchain/ton--mainnet/tokens/EQAQXlWJvGbbFfE8F3oS8s87lIgdovS455IsWFaRdmJetTon.png"
+ ],
+ "name": "JetTon",
+ "symbol": "JETTON",
+ "marketCap": "898577.395747995472191728",
+ "price": "0.02082893277202823121",
+ "priceChange24hPercent": "-0.68",
+ "volume24h": "673.27622423614",
+ "communityRecognized": true,
+ "key": "ton--mainnet:EQAQXlWJvGbbFfE8F3oS8s87lIgdovS455IsWFaRdmJetTon",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "TON",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/ton.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "ton--mainnet",
+ "address": "EQCMk4_OujCnk46jApHnIRbmTtYTkSmfujV9X8Ye0qvsHVKh",
+ "logoUrl": "https://gateway.pinata.cloud/ipfs/bafybeibfzke4a2yueebdebtllix6eee3jujyuxtibht6d52jephnaccwhy/xauh-logo.png",
+ "logoUrls": [
+ "https://gateway.pinata.cloud/ipfs/bafybeibfzke4a2yueebdebtllix6eee3jujyuxtibht6d52jephnaccwhy/xauh-logo.png"
+ ],
+ "name": "Herculis Gold Coin",
+ "symbol": "XAUH",
+ "marketCap": "465248.725668566962102441",
+ "price": "142.69727063572796176164",
+ "priceChange24hPercent": "0.29",
+ "volume24h": "776.4554269662",
+ "communityRecognized": false,
+ "key": "ton--mainnet:EQCMk4_OujCnk46jApHnIRbmTtYTkSmfujV9X8Ye0qvsHVKh",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "TON",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/ton.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "ton--mainnet",
+ "address": "EQB9rFI92eYlakDHzgn9bYwhqwGTRejWZ-78QDx5ASZlk6Ha",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-onchain/ton--mainnet/tokens/EQB9rFI92eYlakDHzgn9bYwhqwGTRejWZ-78QDx5ASZlk6Ha.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-onchain/ton--mainnet/tokens/EQB9rFI92eYlakDHzgn9bYwhqwGTRejWZ-78QDx5ASZlk6Ha.png"
+ ],
+ "name": "Tony McDuck",
+ "symbol": "$TONY",
+ "marketCap": "14571.042247847920840706",
+ "price": "0.0000158380893998347",
+ "priceChange24hPercent": "17.7",
+ "volume24h": "3161.09223618812",
+ "communityRecognized": false,
+ "key": "ton--mainnet:EQB9rFI92eYlakDHzgn9bYwhqwGTRejWZ-78QDx5ASZlk6Ha",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "TON",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/ton.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "ton--mainnet",
+ "address": "EQD0laik0FgHV8aNfRhebi8GDG2rpDyKGXem0MBfya_Ew1-8",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-onchain/ton--mainnet/tokens/EQD0laik0FgHV8aNfRhebi8GDG2rpDyKGXem0MBfya_Ew1-8.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-onchain/ton--mainnet/tokens/EQD0laik0FgHV8aNfRhebi8GDG2rpDyKGXem0MBfya_Ew1-8.png"
+ ],
+ "name": "GoMining",
+ "symbol": "GOMINING",
+ "marketCap": "7171403.020319942004925555",
+ "price": "0.35857015101599710025",
+ "priceChange24hPercent": "0.01",
+ "volume24h": "2082.98811354387",
+ "communityRecognized": true,
+ "key": "ton--mainnet:EQD0laik0FgHV8aNfRhebi8GDG2rpDyKGXem0MBfya_Ew1-8",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "TON",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/ton.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "ton--mainnet",
+ "address": "EQBng_Ux8DLKeaLZ4kN4eec-U-SJ1fMtYvqQANtL0oxKRQh_",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-onchain/ton--mainnet/tokens/EQBng_Ux8DLKeaLZ4kN4eec-U-SJ1fMtYvqQANtL0oxKRQh_.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-onchain/ton--mainnet/tokens/EQBng_Ux8DLKeaLZ4kN4eec-U-SJ1fMtYvqQANtL0oxKRQh_.png"
+ ],
+ "name": "sTONks",
+ "symbol": "sTONks",
+ "marketCap": "113068.686267137895441986",
+ "price": "0.00376895620890459651",
+ "priceChange24hPercent": "5",
+ "volume24h": "1466.75709588858",
+ "communityRecognized": false,
+ "key": "ton--mainnet:EQBng_Ux8DLKeaLZ4kN4eec-U-SJ1fMtYvqQANtL0oxKRQh_",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "TON",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/ton.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x390a684ef9cade28a7ad0dfa61ab1eb3842618c4",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x390a684ef9cade28a7ad0dfa61ab1eb3842618c4-1760515427269.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x390a684ef9cade28a7ad0dfa61ab1eb3842618c4-1760515427269.png"
+ ],
+ "name": "Apple (Ondo Tokenized)",
+ "symbol": "AAPLon",
+ "marketCap": "4699513299320",
+ "price": "320.298481855554072365",
+ "priceChange24hPercent": "-0.5",
+ "volume24h": "12673014673.480001",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "苹果",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x390a684ef9cade28a7ad0dfa61ab1eb3842618c4",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x8b872732b07be325a8803cdb480d9d20b6f8d11b",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x8b872732b07be325a8803cdb480d9d20b6f8d11b-1760923370870.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x8b872732b07be325a8803cdb480d9d20b6f8d11b-1760923370870.png"
+ ],
+ "name": "iShares Silver Trust (Ondo Tokenized)",
+ "symbol": "SLVon",
+ "marketCap": "32192820451",
+ "price": "60.613516",
+ "priceChange24hPercent": "3.36",
+ "volume24h": "751852335.96",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "白银ETF",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x8b872732b07be325a8803cdb480d9d20b6f8d11b",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x992879cd8ce0c312d98648875b5a8d6d042cbf34",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x992879cd8ce0c312d98648875b5a8d6d042cbf34-1760923032790.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x992879cd8ce0c312d98648875b5a8d6d042cbf34-1760923032790.png"
+ ],
+ "name": "Circle Internet Group (Ondo Tokenized)",
+ "symbol": "CRCLon",
+ "marketCap": "27277014302",
+ "price": "101.983108",
+ "priceChange24hPercent": "-1.98",
+ "volume24h": "1440248998.5",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "Circle Internet Group",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x992879cd8ce0c312d98648875b5a8d6d042cbf34",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xa9ee28c80f960b889dfbd1902055218cba016f75",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xa9ee28c80f960b889dfbd1902055218cba016f75-1760923276163.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xa9ee28c80f960b889dfbd1902055218cba016f75-1760923276163.png"
+ ],
+ "name": "NVIDIA (Ondo Tokenized)",
+ "symbol": "NVDAon",
+ "marketCap": "5579549560000",
+ "price": "233.18030531293853192",
+ "priceChange24hPercent": "0.56",
+ "volume24h": "31179783471.2",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "英伟达",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0xa9ee28c80f960b889dfbd1902055218cba016f75",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x8b6acf6041a81567f012ff6a4c6d96d5818d74bf",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x8b6acf6041a81567f012ff6a4c6d96d5818d74bf-1760923255049.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x8b6acf6041a81567f012ff6a4c6d96d5818d74bf-1760923255049.png"
+ ],
+ "name": "Micron Technology (Ondo Tokenized)",
+ "symbol": "MUon",
+ "marketCap": "1148126580100",
+ "price": "1055.805608023373639527",
+ "priceChange24hPercent": "1.28",
+ "volume24h": "35834308520.21",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "美光科技",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x8b6acf6041a81567f012ff6a4c6d96d5818d74bf",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x7313ea16493b2f55054df0131a3a14b043ec8992",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x7313ea16493b2f55054df0131a3a14b043ec8992-1760923249909.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x7313ea16493b2f55054df0131a3a14b043ec8992-1760923249909.png"
+ ],
+ "name": "MicroStrategy (Ondo Tokenized)",
+ "symbol": "MSTRon",
+ "marketCap": "47239382400",
+ "price": "141.505263",
+ "priceChange24hPercent": "-1.98",
+ "volume24h": "3878826420.0000005",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "微策略",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x7313ea16493b2f55054df0131a3a14b043ec8992",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x4553cfe1c09f37f38b12dc509f676964e392f8fc",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x4553cfe1c09f37f38b12dc509f676964e392f8fc-1760686410256.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x4553cfe1c09f37f38b12dc509f676964e392f8fc-1760686410256.png"
+ ],
+ "name": "Amazon (Ondo Tokenized)",
+ "symbol": "AMZNon",
+ "marketCap": "2780817921000",
+ "price": "258.279748",
+ "priceChange24hPercent": "-0.11",
+ "volume24h": "7949159751.12",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "亚马逊",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x4553cfe1c09f37f38b12dc509f676964e392f8fc",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x6a708ead771238919d85930b5a0f10454e1c331a",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x6a708ead771238919d85930b5a0f10454e1c331a-1760921581963.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x6a708ead771238919d85930b5a0f10454e1c331a-1760921581963.png"
+ ],
+ "name": "SPDR S&P 500 ETF (Ondo Tokenized)",
+ "symbol": "SPYon",
+ "marketCap": "820435829283",
+ "price": "776.141056177460214449",
+ "priceChange24hPercent": "0.01",
+ "volume24h": "25385765084.670002",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "标普500 ETF",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x6a708ead771238919d85930b5a0f10454e1c331a",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x0cde6936d305d5b34667fc46425e852efd73559a",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x0cde6936d305d5b34667fc46425e852efd73559a-1760923339182.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x0cde6936d305d5b34667fc46425e852efd73559a-1760923339182.png"
+ ],
+ "name": "Invesco QQQ (Ondo Tokenized)",
+ "symbol": "QQQon",
+ "marketCap": "512284401576",
+ "price": "725.686548519952709569",
+ "priceChange24hPercent": "0.32",
+ "volume24h": "23632988800.960003",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "纳指ETF",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x0cde6936d305d5b34667fc46425e852efd73559a",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xd5964f3fcee8d649995ab88f04b8982539c282d2",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xd5964f3fcee8d649995ab88f04b8982539c282d2-1760922996465.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xd5964f3fcee8d649995ab88f04b8982539c282d2-1760922996465.png"
+ ],
+ "name": "Alibaba (Ondo Tokenized)",
+ "symbol": "BABAon",
+ "marketCap": "271421798529",
+ "price": "112.499497934947570659",
+ "priceChange24hPercent": "-1.46",
+ "volume24h": "810668853.4399999",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "阿里巴巴",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0xd5964f3fcee8d649995ab88f04b8982539c282d2",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x19601179a60f55ff6636f5d1a8b6671053bd60a8",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x19601179a60f55ff6636f5d1a8b6671053bd60a8-1760923113456.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x19601179a60f55ff6636f5d1a8b6671053bd60a8-1760923113456.png"
+ ],
+ "name": "Robinhood Markets (Ondo Tokenized)",
+ "symbol": "HOODon",
+ "marketCap": "109786941485",
+ "price": "123.076667",
+ "priceChange24hPercent": "0.85",
+ "volume24h": "2897993280.95",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "罗宾汉",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x19601179a60f55ff6636f5d1a8b6671053bd60a8",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x091fc7778e6932d4009b087b191d1ee3bac5729a",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x091fc7778e6932d4009b087b191d1ee3bac5729a-1760923100804.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x091fc7778e6932d4009b087b191d1ee3bac5729a-1760923100804.png"
+ ],
+ "name": "Alphabet Class A (Ondo Tokenized)",
+ "symbol": "GOOGLon",
+ "marketCap": "4096080585860",
+ "price": "338.962258099649311085",
+ "priceChange24hPercent": "-0.2",
+ "volume24h": "7848657585.66",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "谷歌",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x091fc7778e6932d4009b087b191d1ee3bac5729a",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xf8589b526fdd65f7f301c605a6e04f0f1b4b3620",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xf8589b526fdd65f7f301c605a6e04f0f1b4b3620-1761749966569.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xf8589b526fdd65f7f301c605a6e04f0f1b4b3620-1761749966569.png"
+ ],
+ "name": "Coinbase (Ondo Tokenized)",
+ "symbol": "COINon",
+ "marketCap": "48714333394",
+ "price": "183.831667",
+ "priceChange24hPercent": "-1.12",
+ "volume24h": "1509934590.08",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "Coinbase",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0xf8589b526fdd65f7f301c605a6e04f0f1b4b3620",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xe42cfb20e00912409b77a602b5bdcff3c7acc5f4",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xe42cfb20e00912409b77a602b5bdcff3c7acc5f4-1768032381719.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xe42cfb20e00912409b77a602b5bdcff3c7acc5f4-1768032381719.png"
+ ],
+ "name": "ProShares UltraPro QQQ (Ondo Tokenized)",
+ "symbol": "TQQQon",
+ "marketCap": "44436706139",
+ "price": "73.845438057857333962",
+ "priceChange24hPercent": "1.87",
+ "volume24h": "3426881608.8",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "三倍做多纳指ETF",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0xe42cfb20e00912409b77a602b5bdcff3c7acc5f4",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xcb2a0f46f67dc4c58a316f1c008edef5c2311795",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xcb2a0f46f67dc4c58a316f1c008edef5c2311795-1760923121884.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xcb2a0f46f67dc4c58a316f1c008edef5c2311795-1760923121884.png"
+ ],
+ "name": "iShares Gold Trust (Ondo Tokenized)",
+ "symbol": "IAUon",
+ "marketCap": "65795429989",
+ "price": "83.510002",
+ "priceChange24hPercent": "0.23",
+ "volume24h": "415966081.39",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "iShares黄金ETF",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0xcb2a0f46f67dc4c58a316f1c008edef5c2311795",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x9351abd19f42101dd36025e495b98e910b255d78",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x9351abd19f42101dd36025e495b98e910b255d78-1760923318304.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x9351abd19f42101dd36025e495b98e910b255d78-1760923318304.png"
+ ],
+ "name": "Palantir Technologies (Ondo Tokenized)",
+ "symbol": "PLTRon",
+ "marketCap": "400273883100",
+ "price": "174.182857",
+ "priceChange24hPercent": "-0.31",
+ "volume24h": "4874798157.84",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "帕兰提尔",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x9351abd19f42101dd36025e495b98e910b255d78",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xec93fe7ff4b09ca3ccafbc4cc9615e62be412780",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xec93fe7ff4b09ca3ccafbc4cc9615e62be412780-1768378372330.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xec93fe7ff4b09ca3ccafbc4cc9615e62be412780-1768378372330.png"
+ ],
+ "name": "Global X Copper Miners ETF (Ondo Tokenized)",
+ "symbol": "COPXon",
+ "marketCap": "8398061634",
+ "price": "90.741202370238771614",
+ "priceChange24hPercent": "--",
+ "volume24h": "120614154.66",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "铜矿ETF",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0xec93fe7ff4b09ca3ccafbc4cc9615e62be412780",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x9f16e46c73b43bdb70861247d537bee4ea18f639",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x9f16e46c73b43bdb70861247d537bee4ea18f639-1760922831860.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x9f16e46c73b43bdb70861247d537bee4ea18f639-1760922831860.png"
+ ],
+ "name": "AMD (Ondo Tokenized)",
+ "symbol": "AMDon",
+ "marketCap": "778725642000",
+ "price": "487.975263",
+ "priceChange24hPercent": "1.18",
+ "volume24h": "9397976816.94",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "超威半导体",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x9f16e46c73b43bdb70861247d537bee4ea18f639",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x6bfe75d1ad432050ea973c3a3dcd88f02e2444c3",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x6bfe75d1ad432050ea973c3a3dcd88f02e2444c3-1760923244592.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x6bfe75d1ad432050ea973c3a3dcd88f02e2444c3-1760923244592.png"
+ ],
+ "name": "Microsoft (Ondo Tokenized)",
+ "symbol": "MSFTon",
+ "marketCap": "3710547335000",
+ "price": "499.708647472892879635",
+ "priceChange24hPercent": "-0.72",
+ "volume24h": "9045448472.6",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "微软",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x6bfe75d1ad432050ea973c3a3dcd88f02e2444c3",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x7048f5227b032326cc8dbc53cf3fddd947a2c757",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x7048f5227b032326cc8dbc53cf3fddd947a2c757-1760923261006.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x7048f5227b032326cc8dbc53cf3fddd947a2c757-1760923261006.png"
+ ],
+ "name": "Netflix (Ondo Tokenized)",
+ "symbol": "NFLXon",
+ "marketCap": "325828304922",
+ "price": "778.72424",
+ "priceChange24hPercent": "-0.54",
+ "volume24h": "3144868282.5",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "奈飞",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x7048f5227b032326cc8dbc53cf3fddd947a2c757",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xc145dc2ebdbe8ead1fecdebf46c76eb1fdd0104d",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xc145dc2ebdbe8ead1fecdebf46c76eb1fdd0104d-1768184402429.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xc145dc2ebdbe8ead1fecdebf46c76eb1fdd0104d-1768184402429.png"
+ ],
+ "name": "Carvana (Ondo Tokenized)",
+ "symbol": "CVNAon",
+ "price": "-",
+ "priceChange24hPercent": "-",
+ "communityRecognized": false,
+ "key": "evm--56:0xc145dc2ebdbe8ead1fecdebf46c76eb1fdd0104d",
+ "kind": "token",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x3385cb29cca0ac66f5d2354d13ef977b49a2510f",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x3385cb29cca0ac66f5d2354d13ef977b49a2510f-1760923604445.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x3385cb29cca0ac66f5d2354d13ef977b49a2510f-1760923604445.png"
+ ],
+ "name": "UnitedHealth (Ondo Tokenized)",
+ "symbol": "UNHon",
+ "marketCap": "360660468605",
+ "price": "402.98451011334612462",
+ "priceChange24hPercent": "-0.26",
+ "volume24h": "1916737036.1399999",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "联合健康",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x3385cb29cca0ac66f5d2354d13ef977b49a2510f",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x03e4bd1ea53f1da84513da0319d1f03dd1bbcf93",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x03e4bd1ea53f1da84513da0319d1f03dd1bbcf93-1760923286694.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x03e4bd1ea53f1da84513da0319d1f03dd1bbcf93-1760923286694.png"
+ ],
+ "name": "Oracle (Ondo Tokenized)",
+ "symbol": "ORCLon",
+ "marketCap": "457505050100",
+ "price": "166.481535598340633943",
+ "priceChange24hPercent": "2.21",
+ "volume24h": "4138044844.8500004",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "甲骨文",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x03e4bd1ea53f1da84513da0319d1f03dd1bbcf93",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x2494b603319d4d9f9715c9f4496d9e0364b59d93",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x2494b603319d4d9f9715c9f4496d9e0364b59d93-1760680411667.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x2494b603319d4d9f9715c9f4496d9e0364b59d93-1760680411667.png"
+ ],
+ "name": "Tesla (Ondo Tokenized)",
+ "symbol": "TSLAon",
+ "marketCap": "1398455741268",
+ "price": "356.443455",
+ "priceChange24hPercent": "0.17",
+ "volume24h": "23021647442.719997",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "特斯拉",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x2494b603319d4d9f9715c9f4496d9e0364b59d93",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x0ed2e3180edf393e6bf8db124bd15ddd54de150a",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x0ed2e3180edf393e6bf8db124bd15ddd54de150a-1760922985968.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x0ed2e3180edf393e6bf8db124bd15ddd54de150a-1760922985968.png"
+ ],
+ "name": "Broadcom (Ondo Tokenized)",
+ "symbol": "AVGOon",
+ "marketCap": "1702714094100",
+ "price": "364.792451018770787223",
+ "priceChange24hPercent": "0.24",
+ "volume24h": "11761598227.175",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "博通",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x0ed2e3180edf393e6bf8db124bd15ddd54de150a",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x25ffda07f585c39848db6573e533d7585679c52d",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x25ffda07f585c39848db6573e533d7585679c52d-1760923217550.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x25ffda07f585c39848db6573e533d7585679c52d-1760923217550.png"
+ ],
+ "name": "Mastercard (Ondo Tokenized)",
+ "symbol": "MAon",
+ "marketCap": "507988021560",
+ "price": "577.919566836818062189",
+ "priceChange24hPercent": "-0.72",
+ "volume24h": "1015977201.5400001",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "万事达",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x25ffda07f585c39848db6573e533d7585679c52d",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x34304f2f7cc487eb4186e6d69f5905a613474aa2",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x34304f2f7cc487eb4186e6d69f5905a613474aa2-1761709115472.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x34304f2f7cc487eb4186e6d69f5905a613474aa2-1761709115472.png"
+ ],
+ "name": "Cisco Systems (Ondo Tokenized)",
+ "symbol": "CSCOon",
+ "marketCap": "430404665418",
+ "price": "110.75473913211509356",
+ "priceChange24hPercent": "0.07",
+ "volume24h": "1351570474.8",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "思科",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x34304f2f7cc487eb4186e6d69f5905a613474aa2",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x5fa699c0c1319b8d86489af77dfde4fa97b47df8",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x5fa699c0c1319b8d86489af77dfde4fa97b47df8-1769105965919.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x5fa699c0c1319b8d86489af77dfde4fa97b47df8-1769105965919.png"
+ ],
+ "name": "BitGo Holdings (Ondo Tokenized)",
+ "symbol": "BTGOon",
+ "marketCap": "781859397",
+ "price": "7.235",
+ "priceChange24hPercent": "--",
+ "volume24h": "10028338.5",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "BitGo",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x5fa699c0c1319b8d86489af77dfde4fa97b47df8",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x50356167a4dbc38bea6779c045e24e25facedfdc",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x50356167a4dbc38bea6779c045e24e25facedfdc-1760923391964.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x50356167a4dbc38bea6779c045e24e25facedfdc-1760923391964.png"
+ ],
+ "name": "Spotify (Ondo Tokenized)",
+ "symbol": "SPOTon",
+ "marketCap": "111515040318",
+ "price": "534.766667",
+ "priceChange24hPercent": "-1.69",
+ "volume24h": "742202629.56",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "Spotify",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x50356167a4dbc38bea6779c045e24e25facedfdc",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x317bf42b43a394860718266dec445dcc9fd9da49",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x317bf42b43a394860718266dec445dcc9fd9da49-1761792505227.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x317bf42b43a394860718266dec445dcc9fd9da49-1761792505227.png"
+ ],
+ "name": "JPMorgan Chase (Ondo Tokenized)",
+ "symbol": "JPMon",
+ "marketCap": "960979466400",
+ "price": "360.974460173899799822",
+ "priceChange24hPercent": "-0.66",
+ "volume24h": "1745667647.6",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "摩根大通",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x317bf42b43a394860718266dec445dcc9fd9da49",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x405f38b90bebf1259062cf29da299f3398662bcb",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x405f38b90bebf1259062cf29da299f3398662bcb-1761605541805.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x405f38b90bebf1259062cf29da299f3398662bcb-1761605541805.png"
+ ],
+ "name": "Coca-Cola (Ondo Tokenized)",
+ "symbol": "KOon",
+ "marketCap": "378925484617",
+ "price": "89.628986243018856634",
+ "priceChange24hPercent": "-0.24",
+ "volume24h": "1283321428.49",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "可口可乐",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x405f38b90bebf1259062cf29da299f3398662bcb",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xc37042a7a4fa510d8884a433762ab87257b91965",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xc37042a7a4fa510d8884a433762ab87257b91965-1760923413025.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xc37042a7a4fa510d8884a433762ab87257b91965-1760923413025.png"
+ ],
+ "name": "Taiwan Semiconductor Manufacturing (Ondo Tokenized)",
+ "symbol": "TSMon",
+ "marketCap": "2224533136800",
+ "price": "438.018182406245951052",
+ "priceChange24hPercent": "0.37",
+ "volume24h": "5261764083.780001",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "台积电",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0xc37042a7a4fa510d8884a433762ab87257b91965",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xd09f7b75b9659b864c6f82bb00ff096f9d277998",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xd09f7b75b9659b864c6f82bb00ff096f9d277998-1760923206785.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xd09f7b75b9659b864c6f82bb00ff096f9d277998-1760923206785.png"
+ ],
+ "name": "Lockheed (Ondo Tokenized)",
+ "symbol": "LMTon",
+ "marketCap": "121229896480",
+ "price": "537.114604097175250464",
+ "priceChange24hPercent": "-0.19",
+ "volume24h": "495034902.88",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "洛克希德马丁",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0xd09f7b75b9659b864c6f82bb00ff096f9d277998",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x341d31b2be1fee9c00e395a62ba41837f4322eed",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x341d31b2be1fee9c00e395a62ba41837f4322eed-1760923201079.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x341d31b2be1fee9c00e395a62ba41837f4322eed-1760923201079.png"
+ ],
+ "name": "Eli Lilly (Ondo Tokenized)",
+ "symbol": "LLYon",
+ "marketCap": "1081307016200",
+ "price": "1149.397318656767340512",
+ "priceChange24hPercent": "-0.16",
+ "volume24h": "2468999720.4",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "礼来",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x341d31b2be1fee9c00e395a62ba41837f4322eed",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x5a20886b575058dd7299785f0ea9b1172942a3e0",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x5a20886b575058dd7299785f0ea9b1172942a3e0-1760922274158.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x5a20886b575058dd7299785f0ea9b1172942a3e0-1760922274158.png"
+ ],
+ "name": "Abbott (Ondo Tokenized)",
+ "symbol": "ABTon",
+ "marketCap": "187435126855",
+ "price": "109.426019691944889332",
+ "priceChange24hPercent": "-1.04",
+ "volume24h": "744744194.56",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "雅培",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x5a20886b575058dd7299785f0ea9b1172942a3e0",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xe6837794fbc6dd024733a1a31f86061296fa2752",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xe6837794fbc6dd024733a1a31f86061296fa2752-1767888357216.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xe6837794fbc6dd024733a1a31f86061296fa2752-1767888357216.png"
+ ],
+ "name": "CrowdStrike (Ondo Tokenized)",
+ "symbol": "CRWDon",
+ "marketCap": "216991052568",
+ "price": "854.08",
+ "priceChange24hPercent": "0.11",
+ "volume24h": "1796128480.1",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "CrowdStrike",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0xe6837794fbc6dd024733a1a31f86061296fa2752",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x918008c3d29496c37b478b611967beaca365af36",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x918008c3d29496c37b478b611967beaca365af36-1760923132407.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x918008c3d29496c37b478b611967beaca365af36-1760923132407.png"
+ ],
+ "name": "iShares Core MSCI EAFE ETF (Ondo Tokenized)",
+ "symbol": "IEFAon",
+ "marketCap": "191069877912",
+ "price": "103.705170809433201477",
+ "priceChange24hPercent": "2.45",
+ "volume24h": "562851547.16",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x918008c3d29496c37b478b611967beaca365af36",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x43d0b380c33cd004a6a69abd61843881a2de4113",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x43d0b380c33cd004a6a69abd61843881a2de4113-1760923365671.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x43d0b380c33cd004a6a69abd61843881a2de4113-1760923365671.png"
+ ],
+ "name": "Shopify (Ondo Tokenized)",
+ "symbol": "SHOPon",
+ "marketCap": "188276717956",
+ "price": "143.536364",
+ "priceChange24hPercent": "-1.23",
+ "volume24h": "1001972823.39",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "Shopify",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x43d0b380c33cd004a6a69abd61843881a2de4113",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x7af44d51d1fb88c5b74fc71d3cba649bb8099d14",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x7af44d51d1fb88c5b74fc71d3cba649bb8099d14-1760922282064.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x7af44d51d1fb88c5b74fc71d3cba649bb8099d14-1760922282064.png"
+ ],
+ "name": "Accenture (Ondo Tokenized)",
+ "symbol": "ACNon",
+ "marketCap": "114261830592",
+ "price": "190.128369050462170162",
+ "priceChange24hPercent": "-1.11",
+ "volume24h": "906653876.64",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "埃森哲",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x7af44d51d1fb88c5b74fc71d3cba649bb8099d14",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x400f1e257f86d25578a0928c94dc95115f09d5c9",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x400f1e257f86d25578a0928c94dc95115f09d5c9-1760923313303.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x400f1e257f86d25578a0928c94dc95115f09d5c9-1760923313303.png"
+ ],
+ "name": "Procter & Gamble (Ondo Tokenized)",
+ "symbol": "PGon",
+ "marketCap": "348094704645",
+ "price": "149.056417400228133746",
+ "priceChange24hPercent": "-0.73",
+ "volume24h": "812032397.19",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "宝洁",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x400f1e257f86d25578a0928c94dc95115f09d5c9",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x374d03a6c0d5bd4be0a5117ebe1b49d52ac8a53f",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x374d03a6c0d5bd4be0a5117ebe1b49d52ac8a53f-1760923323445.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x374d03a6c0d5bd4be0a5117ebe1b49d52ac8a53f-1760923323445.png"
+ ],
+ "name": "PayPal (Ondo Tokenized)",
+ "symbol": "PYPLon",
+ "marketCap": "47016136560",
+ "price": "55.089444788561474573",
+ "priceChange24hPercent": "-0.45",
+ "volume24h": "716925445.2",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "贝宝",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x374d03a6c0d5bd4be0a5117ebe1b49d52ac8a53f",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xd3113a0ad20a46f6a662c63fe8e637f7713e59c7",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xd3113a0ad20a46f6a662c63fe8e637f7713e59c7-1760923043289.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xd3113a0ad20a46f6a662c63fe8e637f7713e59c7-1760923043289.png"
+ ],
+ "name": "Chevron (Ondo Tokenized)",
+ "symbol": "CVXon",
+ "marketCap": "415308348000",
+ "price": "214.127850846968341467",
+ "priceChange24hPercent": "-0.1",
+ "volume24h": "1122138299.52",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "雪佛龙",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0xd3113a0ad20a46f6a662c63fe8e637f7713e59c7",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x08ce97f3d5cf11e577d091ab048bc5e2eae3fabb",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x08ce97f3d5cf11e577d091ab048bc5e2eae3fabb-1760922826243.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x08ce97f3d5cf11e577d091ab048bc5e2eae3fabb-1760922826243.png"
+ ],
+ "name": "iShares Core US Aggregate Bond ETF (Ondo Tokenized)",
+ "symbol": "AGGon",
+ "marketCap": "136630691995",
+ "price": "100.726707821448173787",
+ "priceChange24hPercent": "-0.05",
+ "volume24h": "757482021",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x08ce97f3d5cf11e577d091ab048bc5e2eae3fabb",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x94d7754541b829a87321d56121bc544167ac490d",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x94d7754541b829a87321d56121bc544167ac490d-1760923360145.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x94d7754541b829a87321d56121bc544167ac490d-1760923360145.png"
+ ],
+ "name": "Starbucks (Ondo Tokenized)",
+ "symbol": "SBUXon",
+ "marketCap": "119095800000",
+ "price": "105.675635276984189824",
+ "priceChange24hPercent": "-0.61",
+ "volume24h": "481009967.36",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "星巴克",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x94d7754541b829a87321d56121bc544167ac490d",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x94174e3d1335db402dd03a092f7aa7ac2cb32be4",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x94174e3d1335db402dd03a092f7aa7ac2cb32be4-1768292465946.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x94174e3d1335db402dd03a092f7aa7ac2cb32be4-1768292465946.png"
+ ],
+ "name": "United States Oil Fund (Ondo Tokenized)",
+ "symbol": "USOon",
+ "marketCap": "16907435006",
+ "price": "144.2375",
+ "priceChange24hPercent": "1.61",
+ "volume24h": "523317653.04",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "原油ETF",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x94174e3d1335db402dd03a092f7aa7ac2cb32be4",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xf99f8f3a95257d82006183bd524efa7aacc9ef7a",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xf99f8f3a95257d82006183bd524efa7aacc9ef7a-1760923302585.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xf99f8f3a95257d82006183bd524efa7aacc9ef7a-1760923302585.png"
+ ],
+ "name": "PepsiCo (Ondo Tokenized)",
+ "symbol": "PEPon",
+ "marketCap": "188002580000",
+ "price": "141.975016844879616381",
+ "priceChange24hPercent": "-0.41",
+ "volume24h": "845805577.89",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "百事",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0xf99f8f3a95257d82006183bd524efa7aacc9ef7a",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xf69e40069ac227c11459e3f4e8a446b3401616b6",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xf69e40069ac227c11459e3f4e8a446b3401616b6-1760923398719.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xf69e40069ac227c11459e3f4e8a446b3401616b6-1760923398719.png"
+ ],
+ "name": "iShares 20+ Year Treasury Bond ETF (Ondo Tokenized)",
+ "symbol": "TLTon",
+ "marketCap": "41558996997",
+ "price": "85.978427962124070646",
+ "priceChange24hPercent": "0.16",
+ "volume24h": "1364023798.4499998",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "20年国债ETF",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0xf69e40069ac227c11459e3f4e8a446b3401616b6",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x93fac02b22b6743423381d163aec418178019b7a",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x93fac02b22b6743423381d163aec418178019b7a-1760923074552.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x93fac02b22b6743423381d163aec418178019b7a-1760923074552.png"
+ ],
+ "name": "Figma (Ondo Tokenized)",
+ "symbol": "FIGon",
+ "price": "-",
+ "priceChange24hPercent": "-",
+ "communityRecognized": false,
+ "key": "evm--56:0x93fac02b22b6743423381d163aec418178019b7a",
+ "kind": "token",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x99e01f02d66455bb106d91d469c9eaf6ab4904f6",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x99e01f02d66455bb106d91d469c9eaf6ab4904f6-1760923354737.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x99e01f02d66455bb106d91d469c9eaf6ab4904f6-1760923354737.png"
+ ],
+ "name": "Sharplink Gaming (Ondo Tokenized)",
+ "symbol": "SBETon",
+ "marketCap": "1711340120",
+ "price": "8.798824",
+ "priceChange24hPercent": "1.6",
+ "volume24h": "54330194.519999996",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "SharpLink博彩",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x99e01f02d66455bb106d91d469c9eaf6ab4904f6",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x52ad57a7ea642e99a892afc79e937b383f1b59e9",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x52ad57a7ea642e99a892afc79e937b383f1b59e9-1768032941245.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x52ad57a7ea642e99a892afc79e937b383f1b59e9-1768032941245.png"
+ ],
+ "name": "BitMine Immersion Technologies (Ondo Tokenized)",
+ "symbol": "BMNRon",
+ "marketCap": "14222332846",
+ "price": "25.220087",
+ "priceChange24hPercent": "0.99",
+ "volume24h": "1155029873.9099998",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "BitMine",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x52ad57a7ea642e99a892afc79e937b383f1b59e9",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xd04a2bb053277721a8321d7441eed5b42fdf7250",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xd04a2bb053277721a8321d7441eed5b42fdf7250-1761705848977.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xd04a2bb053277721a8321d7441eed5b42fdf7250-1761705848977.png"
+ ],
+ "name": "Salesforce (Ondo Tokenized)",
+ "symbol": "CRMon",
+ "marketCap": "212309370000",
+ "price": "257.487920522776546585",
+ "priceChange24hPercent": "-1.21",
+ "volume24h": "2679425388.3900003",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "赛富时",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0xd04a2bb053277721a8321d7441eed5b42fdf7250",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x4da12f47578ef89c76179b760c778e70b668f80b",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x4da12f47578ef89c76179b760c778e70b668f80b-1760923344446.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x4da12f47578ef89c76179b760c778e70b668f80b-1760923344446.png"
+ ],
+ "name": "Reddit (Ondo Tokenized)",
+ "symbol": "RDDTon",
+ "marketCap": "29734946936",
+ "price": "154.419048",
+ "priceChange24hPercent": "0.05",
+ "volume24h": "429786803.52000004",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "红迪",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x4da12f47578ef89c76179b760c778e70b668f80b",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x6e3e077a6c0e3c27fd6d00b97387d9b7bd451bab",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x6e3e077a6c0e3c27fd6d00b97387d9b7bd451bab-1760923154598.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x6e3e077a6c0e3c27fd6d00b97387d9b7bd451bab-1760923154598.png"
+ ],
+ "name": "Intuit (Ondo Tokenized)",
+ "symbol": "INTUon",
+ "marketCap": "91005759900",
+ "price": "332.51646606263590823",
+ "priceChange24hPercent": "-0.75",
+ "volume24h": "1177837182.6",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x6e3e077a6c0e3c27fd6d00b97387d9b7bd451bab",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xeb19c13c54b1cd48afc62f6503375e92d5f1e856",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xeb19c13c54b1cd48afc62f6503375e92d5f1e856-1760923271194.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xeb19c13c54b1cd48afc62f6503375e92d5f1e856-1760923271194.png"
+ ],
+ "name": "ServiceNow (Ondo Tokenized)",
+ "symbol": "NOWon",
+ "marketCap": "146043346120",
+ "price": "699.30488",
+ "priceChange24hPercent": "-1.05",
+ "volume24h": "1736762600.4399998",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "ServiceNow",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0xeb19c13c54b1cd48afc62f6503375e92d5f1e856",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x138ed6833ff4e8811e1fea0d005e13726c8886f9",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x138ed6833ff4e8811e1fea0d005e13726c8886f9-1760923381351.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x138ed6833ff4e8811e1fea0d005e13726c8886f9-1760923381351.png"
+ ],
+ "name": "Snowflake (Ondo Tokenized)",
+ "symbol": "SNOWon",
+ "marketCap": "116866588000",
+ "price": "337.2775",
+ "priceChange24hPercent": "-0.25",
+ "volume24h": "2842981049.56",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "雪花",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x138ed6833ff4e8811e1fea0d005e13726c8886f9",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xa528caaa2f96090e379d43f90834c75df54d6e74",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xa528caaa2f96090e379d43f90834c75df54d6e74-1760923148597.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xa528caaa2f96090e379d43f90834c75df54d6e74-1760923148597.png"
+ ],
+ "name": "Intel (Ondo Tokenized)",
+ "symbol": "INTCon",
+ "marketCap": "483215175763",
+ "price": "100.597692",
+ "priceChange24hPercent": "1.6",
+ "volume24h": "9355284335",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "英特尔",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0xa528caaa2f96090e379d43f90834c75df54d6e74",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xc142ba8ccd36d80c3a001342fb83e4c3d218a873",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xc142ba8ccd36d80c3a001342fb83e4c3d218a873-1760923376180.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xc142ba8ccd36d80c3a001342fb83e4c3d218a873-1760923376180.png"
+ ],
+ "name": "Super Micro Computer (Ondo Tokenized)",
+ "symbol": "SMCIon",
+ "marketCap": "25609702070",
+ "price": "40.042662",
+ "priceChange24hPercent": "1.47",
+ "volume24h": "2123337279.4800003",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "超微电脑",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0xc142ba8ccd36d80c3a001342fb83e4c3d218a873",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x274b0cb6db9473245a31cdea9b789786f4108e4b",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x274b0cb6db9473245a31cdea9b789786f4108e4b-1768464730010.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x274b0cb6db9473245a31cdea9b789786f4108e4b-1768464730010.png"
+ ],
+ "name": "Caterpillar (Ondo Tokenized)",
+ "symbol": "CATon",
+ "marketCap": "374930879780",
+ "price": "824.840862789310440651",
+ "priceChange24hPercent": "0.98",
+ "volume24h": "1620957440.3000002",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "卡特彼勒",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x274b0cb6db9473245a31cdea9b789786f4108e4b",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x5ecc352c4640f1d26bd231dbbd171f40f7d0eec6",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x5ecc352c4640f1d26bd231dbbd171f40f7d0eec6-1767888045927.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x5ecc352c4640f1d26bd231dbbd171f40f7d0eec6-1767888045927.png"
+ ],
+ "name": "Applied Materials (Ondo Tokenized)",
+ "symbol": "AMATon",
+ "marketCap": "361021096890",
+ "price": "468.39278701627463619",
+ "priceChange24hPercent": "2.68",
+ "volume24h": "2735913224.0099998",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "应用材料",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x5ecc352c4640f1d26bd231dbbd171f40f7d0eec6",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xd7df5863a3e742f0c767768cdfcb63f09e0422f6",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xd7df5863a3e742f0c767768cdfcb63f09e0422f6-1760923233924.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xd7df5863a3e742f0c767768cdfcb63f09e0422f6-1760923233924.png"
+ ],
+ "name": "Meta Platforms (Ondo Tokenized)",
+ "symbol": "METAon",
+ "marketCap": "1571213291779",
+ "price": "614.555295144030774555",
+ "priceChange24hPercent": "-0.02",
+ "volume24h": "9847481192.01",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "Meta",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0xd7df5863a3e742f0c767768cdfcb63f09e0422f6",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x4693f6f5ef257381a28afd0673e64d8b32d5c6ad",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x4693f6f5ef257381a28afd0673e64d8b32d5c6ad-1760923111457.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x4693f6f5ef257381a28afd0673e64d8b32d5c6ad-1760923111457.png"
+ ],
+ "name": "Hims & Hers Health (Ondo Tokenized)",
+ "symbol": "HIMSon",
+ "marketCap": "6181546800",
+ "price": "27.746",
+ "priceChange24hPercent": "-0.21",
+ "volume24h": "182854493.73000002",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "Hims & Hers",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x4693f6f5ef257381a28afd0673e64d8b32d5c6ad",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xb034f6cb52b7f2fd5a7eeeffca6b9adcd6b9a6f6",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xb034f6cb52b7f2fd5a7eeeffca6b9adcd6b9a6f6-1760922980249.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xb034f6cb52b7f2fd5a7eeeffca6b9adcd6b9a6f6-1760922980249.png"
+ ],
+ "name": "ASML Holding NV (Ondo Tokenized)",
+ "symbol": "ASMLon",
+ "marketCap": "660945604406",
+ "price": "1758.414946497724440837",
+ "priceChange24hPercent": "2.21",
+ "volume24h": "2211546975.36",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "阿斯麦",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0xb034f6cb52b7f2fd5a7eeeffca6b9adcd6b9a6f6",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x8fd70ee385f470c8d6fda2d93a4e49c849bac6a6",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x8fd70ee385f470c8d6fda2d93a4e49c849bac6a6-1767883597793.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x8fd70ee385f470c8d6fda2d93a4e49c849bac6a6-1767883597793.png"
+ ],
+ "name": "IREN (Ondo Tokenized)",
+ "symbol": "IRENon",
+ "marketCap": "15944391045",
+ "price": "45.389089",
+ "priceChange24hPercent": "2.29",
+ "volume24h": "1620373503.24",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "IREN",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x8fd70ee385f470c8d6fda2d93a4e49c849bac6a6",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xf3e82ea164cb344b2b11bad4c24b0ea4f7ba4714",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xf3e82ea164cb344b2b11bad4c24b0ea4f7ba4714-1767945976873.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xf3e82ea164cb344b2b11bad4c24b0ea4f7ba4714-1767945976873.png"
+ ],
+ "name": "PDD Holdings (Ondo Tokenized)",
+ "symbol": "PDDon",
+ "marketCap": "117017422072",
+ "price": "81.560326",
+ "priceChange24hPercent": "-0.94",
+ "volume24h": "382935002.09999996",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "拼多多",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0xf3e82ea164cb344b2b11bad4c24b0ea4f7ba4714",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x3fcd741646a9790635b938cdb69af5df356cbaab",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x3fcd741646a9790635b938cdb69af5df356cbaab-1768118974994.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x3fcd741646a9790635b938cdb69af5df356cbaab-1768118974994.png"
+ ],
+ "name": "abrdn Physical Palladium Shares ETF (Ondo Tokenized)",
+ "symbol": "PALLon",
+ "marketCap": "662462421",
+ "price": "127.025",
+ "priceChange24hPercent": "1.16",
+ "volume24h": "18618111.93",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "钯金ETF",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x3fcd741646a9790635b938cdb69af5df356cbaab",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x5acf40056ed51c8bbcd1b125ef803581ac89a627",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x5acf40056ed51c8bbcd1b125ef803581ac89a627-1760923085045.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x5acf40056ed51c8bbcd1b125ef803581ac89a627-1760923085045.png"
+ ],
+ "name": "Futu Holdings (Ondo Tokenized)",
+ "symbol": "FUTUon",
+ "marketCap": "16991222660",
+ "price": "123.422764240887776543",
+ "priceChange24hPercent": "-0.25",
+ "volume24h": "88127276.5",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "富途控股",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x5acf40056ed51c8bbcd1b125ef803581ac89a627",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xd226d8170ee38793430c7dec6903df4b818bb74c",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xd226d8170ee38793430c7dec6903df4b818bb74c-1760923212125.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xd226d8170ee38793430c7dec6903df4b818bb74c-1760923212125.png"
+ ],
+ "name": "MARA Holdings (Ondo Tokenized)",
+ "symbol": "MARAon",
+ "price": "-",
+ "priceChange24hPercent": "-",
+ "communityRecognized": false,
+ "key": "evm--56:0xd226d8170ee38793430c7dec6903df4b818bb74c",
+ "kind": "token",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x08a513779f46ffb7a34f16094a94016d010128a8",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x08a513779f46ffb7a34f16094a94016d010128a8-1760923281600.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x08a513779f46ffb7a34f16094a94016d010128a8-1760923281600.png"
+ ],
+ "name": "Novo Nordisk (Ondo Tokenized)",
+ "symbol": "NVOon",
+ "marketCap": "206932361506",
+ "price": "47.900708616347068423",
+ "priceChange24hPercent": "--",
+ "volume24h": "285153974.40000004",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "诺和诺德",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x08a513779f46ffb7a34f16094a94016d010128a8",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x22092c94a91d019ad15536725598b0a6be0a73c0",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x22092c94a91d019ad15536725598b0a6be0a73c0-1760923137786.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x22092c94a91d019ad15536725598b0a6be0a73c0-1760923137786.png"
+ ],
+ "name": "iShares Core MSCI Emerging Markets ETF (Ondo Tokenized)",
+ "symbol": "IEMGon",
+ "marketCap": "171167801924",
+ "price": "85.994643507231392039",
+ "priceChange24hPercent": "0.89",
+ "volume24h": "577001471.9000001",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "核心新兴市场ETF",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x22092c94a91d019ad15536725598b0a6be0a73c0",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x995add4ba29a628a57930a8a185c62ca044ec090",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x995add4ba29a628a57930a8a185c62ca044ec090-1760923223388.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x995add4ba29a628a57930a8a185c62ca044ec090-1760923223388.png"
+ ],
+ "name": "McDonald's (Ondo Tokenized)",
+ "symbol": "MCDon",
+ "marketCap": "181669279140",
+ "price": "261.414735153891492023",
+ "priceChange24hPercent": "-0.12",
+ "volume24h": "1069340837.13",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "麦当劳",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x995add4ba29a628a57930a8a185c62ca044ec090",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x1cde419fae0ef7f7931ae3e29e5f411c8c5e5fa1",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x1cde419fae0ef7f7931ae3e29e5f411c8c5e5fa1-1760923609945.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x1cde419fae0ef7f7931ae3e29e5f411c8c5e5fa1-1760923609945.png"
+ ],
+ "name": "Visa (Ondo Tokenized)",
+ "symbol": "Von",
+ "marketCap": "700273397430",
+ "price": "374.009002377026934042",
+ "priceChange24hPercent": "-0.75",
+ "volume24h": "1730302929.6",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "维萨",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x1cde419fae0ef7f7931ae3e29e5f411c8c5e5fa1",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x1501ec83ffef405b4331cc4f73277a40fb0c627d",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x1501ec83ffef405b4331cc4f73277a40fb0c627d-1760923239312.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x1501ec83ffef405b4331cc4f73277a40fb0c627d-1760923239312.png"
+ ],
+ "name": "Marvell Technology (Ondo Tokenized)",
+ "symbol": "MRVLon",
+ "marketCap": "195777489300",
+ "price": "229.524776103399458333",
+ "priceChange24hPercent": "2.41",
+ "volume24h": "4743302231.1",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "迈威尔科技",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x1501ec83ffef405b4331cc4f73277a40fb0c627d",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x527c6436e1eaa4f2065cde4090f798cb5d031dd6",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x527c6436e1eaa4f2065cde4090f798cb5d031dd6-1760922974777.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x527c6436e1eaa4f2065cde4090f798cb5d031dd6-1760922974777.png"
+ ],
+ "name": "Arm Holdings plc (Ondo Tokenized)",
+ "symbol": "ARMon",
+ "marketCap": "269231759259",
+ "price": "261.0225",
+ "priceChange24hPercent": "2.2",
+ "volume24h": "1041739741.08",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "安谋",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x527c6436e1eaa4f2065cde4090f798cb5d031dd6",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x0d4f9b25f81163fb4840ba4f434672543823000c",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x0d4f9b25f81163fb4840ba4f434672543823000c-1760923106279.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x0d4f9b25f81163fb4840ba4f434672543823000c-1760923106279.png"
+ ],
+ "name": "Goldman Sachs (Ondo Tokenized)",
+ "symbol": "GSon",
+ "marketCap": "306397220270",
+ "price": "1047.374865547024001893",
+ "priceChange24hPercent": "-0.4",
+ "volume24h": "1483473666.86",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "高盛",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x0d4f9b25f81163fb4840ba4f434672543823000c",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x60a8f8e05200ff73afde9e2cae819bf1605f0bdd",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x60a8f8e05200ff73afde9e2cae819bf1605f0bdd-1760923228476.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x60a8f8e05200ff73afde9e2cae819bf1605f0bdd-1760923228476.png"
+ ],
+ "name": "MercadoLibre (Ondo Tokenized)",
+ "symbol": "MELIon",
+ "marketCap": "100297276982",
+ "price": "1967",
+ "priceChange24hPercent": "-0.43",
+ "volume24h": "557770904.9599999",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "美客多",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x60a8f8e05200ff73afde9e2cae819bf1605f0bdd",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x467e59ce5d5fe01686d4a80dd1e1dae13549aa6c",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x467e59ce5d5fe01686d4a80dd1e1dae13549aa6c-1760515402441.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x467e59ce5d5fe01686d4a80dd1e1dae13549aa6c-1760515402441.png"
+ ],
+ "name": "Baidu (Ondo Tokenized)",
+ "symbol": "BIDUon",
+ "marketCap": "33832211369",
+ "price": "92.292027",
+ "priceChange24hPercent": "-7.17",
+ "volume24h": "256503090.06",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "百度",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x467e59ce5d5fe01686d4a80dd1e1dae13549aa6c",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xc4a88a72b848255fd24da3c1ad6755d980535fb1",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xc4a88a72b848255fd24da3c1ad6755d980535fb1-1760923349554.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xc4a88a72b848255fd24da3c1ad6755d980535fb1-1760923349554.png"
+ ],
+ "name": "Riot Platforms (Ondo Tokenized)",
+ "symbol": "RIOTon",
+ "marketCap": "8243696814",
+ "price": "21.664",
+ "priceChange24hPercent": "-0.09",
+ "volume24h": "335036003.2",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "Riot平台",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0xc4a88a72b848255fd24da3c1ad6755d980535fb1",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x0eaa1a75bd682a5669ab2371a559fbd039c6b9eb",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x0eaa1a75bd682a5669ab2371a559fbd039c6b9eb-1760923292006.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x0eaa1a75bd682a5669ab2371a559fbd039c6b9eb-1760923292006.png"
+ ],
+ "name": "Palo Alto Networks (Ondo Tokenized)",
+ "symbol": "PANWon",
+ "marketCap": "271606900000",
+ "price": "333.65",
+ "priceChange24hPercent": "0.1",
+ "volume24h": "1879381111.84",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "帕洛阿尔托网络",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x0eaa1a75bd682a5669ab2371a559fbd039c6b9eb",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x4d209d275e3492ac08497a7a42915899c4dd5e86",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x4d209d275e3492ac08497a7a42915899c4dd5e86-1768378192726.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x4d209d275e3492ac08497a7a42915899c4dd5e86-1768378192726.png"
+ ],
+ "name": "Exxon Mobil (Ondo Tokenized)",
+ "symbol": "XOMon",
+ "marketCap": "660875591600",
+ "price": "161.929674995637777397",
+ "priceChange24hPercent": "0.06",
+ "volume24h": "2537206808.78",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "埃克森美孚",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x4d209d275e3492ac08497a7a42915899c4dd5e86",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x68b07cef227cea1b2b6683921c8c825cd5c69ec7",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x68b07cef227cea1b2b6683921c8c825cd5c69ec7-1773890434386.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x68b07cef227cea1b2b6683921c8c825cd5c69ec7-1773890434386.png"
+ ],
+ "name": "iShares Bitcoin Trust (Ondo Tokenized)",
+ "symbol": "IBITON",
+ "marketCap": "75421432839",
+ "price": "44.648189",
+ "priceChange24hPercent": "-1.02",
+ "volume24h": "2361768351.6499996",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "贝莱德比特币ETF",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x68b07cef227cea1b2b6683921c8c825cd5c69ec7",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x1104eb7e85e25eb45f88e638b0c27a06c1a91cb2",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x1104eb7e85e25eb45f88e638b0c27a06c1a91cb2-1760923159261.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x1104eb7e85e25eb45f88e638b0c27a06c1a91cb2-1760923159261.png"
+ ],
+ "name": "iShares Core S&P 500 ETF (Ondo Tokenized ETF)",
+ "symbol": "IVVON",
+ "marketCap": "896778097376",
+ "price": "780.425487329284924111",
+ "priceChange24hPercent": "0.05",
+ "volume24h": "7974410540.32",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "安硕标普500",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x1104eb7e85e25eb45f88e638b0c27a06c1a91cb2",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xcf9caf83053213c44dd7027db3e1e4ac98e55f8f",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xcf9caf83053213c44dd7027db3e1e4ac98e55f8f-1760976491888.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xcf9caf83053213c44dd7027db3e1e4ac98e55f8f-1760976491888.png"
+ ],
+ "name": "iShares Core S&P Total US Stock Market ETF (Ondo Tokenized ETF)",
+ "symbol": "ITOTON",
+ "marketCap": "95625104840",
+ "price": "169.804819587832307416",
+ "priceChange24hPercent": "--",
+ "volume24h": "169106458.23999998",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "美股全市场ETF",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0xcf9caf83053213c44dd7027db3e1e4ac98e55f8f",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x2ac26ec236df5d1d2ad1a6dd4e448a90e45dc35d",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x2ac26ec236df5d1d2ad1a6dd4e448a90e45dc35d-1760923397223.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x2ac26ec236df5d1d2ad1a6dd4e448a90e45dc35d-1760923397223.png"
+ ],
+ "name": "iShares TIPS Bond ETF (Ondo Tokenized ETF)",
+ "symbol": "TIPON",
+ "marketCap": "14720410837",
+ "price": "111.376087623270475341",
+ "priceChange24hPercent": "0.03",
+ "volume24h": "108138754.22",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x2ac26ec236df5d1d2ad1a6dd4e448a90e45dc35d",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x38b9a53bfdc5dba58a29bd6992341927c2fca637",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x38b9a53bfdc5dba58a29bd6992341927c2fca637-1760923069433.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x38b9a53bfdc5dba58a29bd6992341927c2fca637-1760923069433.png"
+ ],
+ "name": "iShares MSCI EAFE ETF (Ondo Tokenized ETF)",
+ "symbol": "EFAON",
+ "marketCap": "78896005005",
+ "price": "110.898588433796849651",
+ "priceChange24hPercent": "0.16",
+ "volume24h": "613264467.1999999",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x38b9a53bfdc5dba58a29bd6992341927c2fca637",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x40755f06ab7f8de1ab3a9413b1ef562d63de19b1",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x40755f06ab7f8de1ab3a9413b1ef562d63de19b1-1760923164409.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x40755f06ab7f8de1ab3a9413b1ef562d63de19b1-1760923164409.png"
+ ],
+ "name": "iShares Russell 1000 Growth ETF (Ondo Tokenized ETF)",
+ "symbol": "IWFON",
+ "marketCap": "134439059389",
+ "price": "494.964782503527050629",
+ "priceChange24hPercent": "0.25",
+ "volume24h": "387028445.78999996",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x40755f06ab7f8de1ab3a9413b1ef562d63de19b1",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x00c81d35eddf44c75d4db9e07bdcdc236eb0ebcf",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x00c81d35eddf44c75d4db9e07bdcdc236eb0ebcf-1760923060271.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x00c81d35eddf44c75d4db9e07bdcdc236eb0ebcf-1760923060271.png"
+ ],
+ "name": "iShares MSCI Emerging Markets ETF (Ondo Tokenized ETF)",
+ "symbol": "EEMON",
+ "marketCap": "32146260773",
+ "price": "70.550489448583953469",
+ "priceChange24hPercent": "1.26",
+ "volume24h": "1506651730.8",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "新兴市场ETF",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x00c81d35eddf44c75d4db9e07bdcdc236eb0ebcf",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x01b5a4ac600be98448dbefbb78bcdf38262552cc",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x01b5a4ac600be98448dbefbb78bcdf38262552cc-1768118550219.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x01b5a4ac600be98448dbefbb78bcdf38262552cc-1768118550219.png"
+ ],
+ "name": "Occidental Petroleum (Ondo Tokenized)",
+ "symbol": "OXYON",
+ "marketCap": "59717867448",
+ "price": "60.427368985063029401",
+ "priceChange24hPercent": "--",
+ "volume24h": "400488654.56",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "西方石油",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x01b5a4ac600be98448dbefbb78bcdf38262552cc",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xf54b94ea21e1da5d51ef00fd4502225e5394f874",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xf54b94ea21e1da5d51ef00fd4502225e5394f874-1760923174798.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xf54b94ea21e1da5d51ef00fd4502225e5394f874-1760923174798.png"
+ ],
+ "name": "iShares Russell 2000 Value ETF (Ondo Tokenized ETF)",
+ "symbol": "IWNON",
+ "marketCap": "14510541399",
+ "price": "226.016737142534794549",
+ "priceChange24hPercent": "-0.45",
+ "volume24h": "144788928.9",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0xf54b94ea21e1da5d51ef00fd4502225e5394f874",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x8a83c31d6751833b4940b6e871c48d9a15a07b46",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x8a83c31d6751833b4940b6e871c48d9a15a07b46-1760923307953.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x8a83c31d6751833b4940b6e871c48d9a15a07b46-1760923307953.png"
+ ],
+ "name": "Pfizer (Ondo Tokenized Stock)",
+ "symbol": "PFEON",
+ "marketCap": "162149068000",
+ "price": "30.045669965608379961",
+ "priceChange24hPercent": "-0.39",
+ "volume24h": "669415327.65",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "辉瑞",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x8a83c31d6751833b4940b6e871c48d9a15a07b46",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x500eafc69b68acd6f27064f9b75f1c7d91cc4d9f",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x500eafc69b68acd6f27064f9b75f1c7d91cc4d9f-1760923169588.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x500eafc69b68acd6f27064f9b75f1c7d91cc4d9f-1760923169588.png"
+ ],
+ "name": "iShares Russell 2000 ETF (Ondo Tokenized ETF)",
+ "symbol": "IWMON",
+ "marketCap": "81417408119",
+ "price": "297.748095366553568352",
+ "priceChange24hPercent": "0.02",
+ "volume24h": "4113713428.1099997",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "罗素2000 ETF",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x500eafc69b68acd6f27064f9b75f1c7d91cc4d9f",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xd85d4ce29b4ca361ff72ef0e53d6236e334c5db6",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xd85d4ce29b4ca361ff72ef0e53d6236e334c5db6-1768118835493.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xd85d4ce29b4ca361ff72ef0e53d6236e334c5db6-1768118835493.png"
+ ],
+ "name": "Ondas Holdings (Ondo Tokenized)",
+ "symbol": "ONDSON",
+ "price": "-",
+ "priceChange24hPercent": "-",
+ "communityRecognized": false,
+ "key": "evm--56:0xd85d4ce29b4ca361ff72ef0e53d6236e334c5db6",
+ "kind": "token",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x167e93a849a0cc479769132552b99aa1cfa0948c",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x167e93a849a0cc479769132552b99aa1cfa0948c-1760923143055.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x167e93a849a0cc479769132552b99aa1cfa0948c-1760923143055.png"
+ ],
+ "name": "iShares Core S&P MidCap ETF (Ondo Tokenized ETF)",
+ "symbol": "IJHON",
+ "marketCap": "123402837938",
+ "price": "76.53881613572147098",
+ "priceChange24hPercent": "0.14",
+ "volume24h": "360950049.75",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x167e93a849a0cc479769132552b99aa1cfa0948c",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xa7d1e886acf66ec0656df2decb4b7c893a3bab4c",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xa7d1e886acf66ec0656df2decb4b7c893a3bab4c-1760923620884.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xa7d1e886acf66ec0656df2decb4b7c893a3bab4c-1760923620884.png"
+ ],
+ "name": "Walmart (Ondo Tokenized Stock)",
+ "symbol": "WMTON",
+ "marketCap": "852628691200",
+ "price": "107.242391409320952249",
+ "priceChange24hPercent": "-0.47",
+ "volume24h": "2200706170.08",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "沃尔玛",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0xa7d1e886acf66ec0656df2decb4b7c893a3bab4c",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x2b1d5cdecc356530a746c5754231efaeaca64022",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x2b1d5cdecc356530a746c5754231efaeaca64022-1760923297458.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x2b1d5cdecc356530a746c5754231efaeaca64022-1760923297458.png"
+ ],
+ "name": "Petrobras (Ondo Tokenized Stock)",
+ "symbol": "PBRON",
+ "marketCap": "129660646415",
+ "price": "20.856197511015279798",
+ "priceChange24hPercent": "-0.22",
+ "volume24h": "377829496.24",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "巴西石油",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x2b1d5cdecc356530a746c5754231efaeaca64022",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xecc1299f183b6a720a6f4729bf24f82cd8d50828",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xecc1299f183b6a720a6f4729bf24f82cd8d50828-1760923402510.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xecc1299f183b6a720a6f4729bf24f82cd8d50828-1760923402510.png"
+ ],
+ "name": "Toyota (Ondo Tokenized Stock)",
+ "symbol": "TMON",
+ "marketCap": "233414630448",
+ "price": "197.584090494197418125",
+ "priceChange24hPercent": "1.15",
+ "volume24h": "64367650.27",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "丰田",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0xecc1299f183b6a720a6f4729bf24f82cd8d50828",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x24f5471183ea549987f245d6ce236b6108869c92",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x24f5471183ea549987f245d6ce236b6108869c92-1760923012085.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x24f5471183ea549987f245d6ce236b6108869c92-1760923012085.png"
+ ],
+ "name": "Blackrock, Inc. (Ondo Tokenized Stock)",
+ "symbol": "BLKON",
+ "marketCap": "173949338550",
+ "price": "1132.730600298929983859",
+ "priceChange24hPercent": "-0.52",
+ "volume24h": "460986228.95",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "贝莱德",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x24f5471183ea549987f245d6ce236b6108869c92",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xe8ff70859ce4cbd72e4352b4fb45f5bf39d07464",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xe8ff70859ce4cbd72e4352b4fb45f5bf39d07464-1760923127124.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xe8ff70859ce4cbd72e4352b4fb45f5bf39d07464-1760923127124.png"
+ ],
+ "name": "IBM (Ondo Tokenized Stock)",
+ "symbol": "IBMON",
+ "marketCap": "221297855260",
+ "price": "239.939607742091185163",
+ "priceChange24hPercent": "-0.04",
+ "volume24h": "717698173.8499999",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "国际商业机器",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0xe8ff70859ce4cbd72e4352b4fb45f5bf39d07464",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x4fd67cb8cfedc718bac984b5936abe3330d0a2a4",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x4fd67cb8cfedc718bac984b5936abe3330d0a2a4-1773890603767.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x4fd67cb8cfedc718bac984b5936abe3330d0a2a4-1773890603767.png"
+ ],
+ "name": "SanDisk (Ondo Tokenized)",
+ "symbol": "SNDKON",
+ "marketCap": "257676165000",
+ "price": "1813.141716",
+ "priceChange24hPercent": "1.53",
+ "volume24h": "28809122580",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "闪迪",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x4fd67cb8cfedc718bac984b5936abe3330d0a2a4",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xe4e12c9cec3e8cae405202a97f66afa695075fa0",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xe4e12c9cec3e8cae405202a97f66afa695075fa0-1760923070917.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xe4e12c9cec3e8cae405202a97f66afa695075fa0-1760923070917.png"
+ ],
+ "name": "Equinix (Ondo Tokenized Stock)",
+ "symbol": "EQIXON",
+ "marketCap": "102221893262",
+ "price": "1034.973342393173569538",
+ "priceChange24hPercent": "-1.63",
+ "volume24h": "357010103.78000003",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0xe4e12c9cec3e8cae405202a97f66afa695075fa0",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x5151a22421ed4277f1e4ca4785a07b035d548a36",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x5151a22421ed4277f1e4ca4785a07b035d548a36-1760923090436.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x5151a22421ed4277f1e4ca4785a07b035d548a36-1760923090436.png"
+ ],
+ "name": "General Electric (Ondo Tokenized Stock)",
+ "symbol": "GEON",
+ "marketCap": "349783074383",
+ "price": "337.589114914645847783",
+ "priceChange24hPercent": "-0.19",
+ "volume24h": "825014560.16",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "通用电气",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x5151a22421ed4277f1e4ca4785a07b035d548a36",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xf21132a811ad1a878e21af60f64d4e690c9daa42",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xf21132a811ad1a878e21af60f64d4e690c9daa42-1761748250710.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xf21132a811ad1a878e21af60f64d4e690c9daa42-1761748250710.png"
+ ],
+ "name": "Boeing (Ondo Tokenized Stock)",
+ "symbol": "BAON",
+ "price": "-",
+ "priceChange24hPercent": "-",
+ "communityRecognized": false,
+ "key": "evm--56:0xf21132a811ad1a878e21af60f64d4e690c9daa42",
+ "kind": "token",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x12b7adc48416a103f63e7e6210f62c81dfb91fd0",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x12b7adc48416a103f63e7e6210f62c81dfb91fd0-1773890376568.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x12b7adc48416a103f63e7e6210f62c81dfb91fd0-1773890376568.png"
+ ],
+ "name": "iShares MSCI South Korea ETF (Ondo Tokenized)",
+ "symbol": "EWYON",
+ "marketCap": "14278571056",
+ "price": "194.898272",
+ "priceChange24hPercent": "3.95",
+ "volume24h": "3455448231.73",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "iShares MSCI韩国ETF",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x12b7adc48416a103f63e7e6210f62c81dfb91fd0",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x34375f826fd3dd4e15f883d4f4786bb45eb705ac",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x34375f826fd3dd4e15f883d4f4786bb45eb705ac-1761313247216.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x34375f826fd3dd4e15f883d4f4786bb45eb705ac-1761313247216.png"
+ ],
+ "name": "Costco (Ondo Tokenized Stock)",
+ "symbol": "COSTON",
+ "marketCap": "406111459460",
+ "price": "918.726163055351801392",
+ "priceChange24hPercent": "-0.23",
+ "volume24h": "1903887561.8",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "开市客",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x34375f826fd3dd4e15f883d4f4786bb45eb705ac",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x629520dee1620def11596f84e85de9f1ff653012",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x629520dee1620def11596f84e85de9f1ff653012-1760923615610.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x629520dee1620def11596f84e85de9f1ff653012-1760923615610.png"
+ ],
+ "name": "Wells Fargo (Ondo Tokenized Stock)",
+ "symbol": "WFCON",
+ "marketCap": "272039040000",
+ "price": "90.828327345333623842",
+ "priceChange24hPercent": "-0.85",
+ "volume24h": "712161682.9599999",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "富国银行",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x629520dee1620def11596f84e85de9f1ff653012",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xef80743f78d98fc2b47a2253b293152ce8b879ba",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xef80743f78d98fc2b47a2253b293152ce8b879ba-1760922268573.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xef80743f78d98fc2b47a2253b293152ce8b879ba-1760922268573.png"
+ ],
+ "name": "Airbnb (Ondo Tokenized Stock)",
+ "symbol": "ABNBON",
+ "marketCap": "107983869660",
+ "price": "181.313333",
+ "priceChange24hPercent": "-0.66",
+ "volume24h": "620194706.78",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "爱彼迎",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0xef80743f78d98fc2b47a2253b293152ce8b879ba",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xfbd4d681c92ead6af0e49950c8b2e47eeacbb2db",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xfbd4d681c92ead6af0e49950c8b2e47eeacbb2db-1760923334398.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xfbd4d681c92ead6af0e49950c8b2e47eeacbb2db-1760923334398.png"
+ ],
+ "name": "Qualcomm (Ondo Tokenized Stock)",
+ "symbol": "QCOMON",
+ "marketCap": "177177000000",
+ "price": "174.693612375015163222",
+ "priceChange24hPercent": "1.84",
+ "volume24h": "1440555484.94",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "高通",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0xfbd4d681c92ead6af0e49950c8b2e47eeacbb2db",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xc008c5f579ec1450f20099c39f587547e27c7523",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xc008c5f579ec1450f20099c39f587547e27c7523-1768185634202.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xc008c5f579ec1450f20099c39f587547e27c7523-1768185634202.png"
+ ],
+ "name": "iShares 0-3 Month Treasury Bond ETF (Ondo Tokenized ETF)",
+ "symbol": "SGOVON",
+ "marketCap": "95942590920",
+ "price": "102.324784764508258885",
+ "priceChange24hPercent": "--",
+ "volume24h": "2053722039.09",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "iShares 0-3个月国债ETF",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0xc008c5f579ec1450f20099c39f587547e27c7523",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x76e39171cb665a35981e744e2ceb7012f76caeac",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x76e39171cb665a35981e744e2ceb7012f76caeac-1773853768684.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x76e39171cb665a35981e744e2ceb7012f76caeac-1773853768684.png"
+ ],
+ "name": "CoreWeave (Ondo Tokenized)",
+ "symbol": "CRWVON",
+ "marketCap": "48752169872",
+ "price": "91.523734",
+ "priceChange24hPercent": "2.73",
+ "volume24h": "1858414200.96",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "CoreWeave",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x76e39171cb665a35981e744e2ceb7012f76caeac",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xe170dc96ca10103e0d4c5d9293c5a3a72ee365a5",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xe170dc96ca10103e0d4c5d9293c5a3a72ee365a5-1785059757195.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xe170dc96ca10103e0d4c5d9293c5a3a72ee365a5-1785059757195.png"
+ ],
+ "name": "Little John",
+ "symbol": "JOHN",
+ "marketCap": "8802.53080883729502627",
+ "price": "0.0000088025308088373",
+ "priceChange24hPercent": "0",
+ "volume24h": "0",
+ "communityRecognized": false,
+ "key": "evm--4663:0xe170dc96ca10103e0d4c5d9293c5a3a72ee365a5",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x348cc963411fb82cd6e0b64345714fec94f242cb",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x348cc963411fb82cd6e0b64345714fec94f242cb-1787918436309.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x348cc963411fb82cd6e0b64345714fec94f242cb-1787918436309.png"
+ ],
+ "name": "Goose Token",
+ "symbol": "GOOSE",
+ "marketCap": "81393460.832387531242448284",
+ "price": "0.08139346083238753124",
+ "priceChange24hPercent": "-1.25",
+ "volume24h": "373756.302628013583814",
+ "communityRecognized": false,
+ "key": "evm--4663:0x348cc963411fb82cd6e0b64345714fec94f242cb",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x5cb6f181081301b44905f3ae15419112ecabd8a6",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x5cb6f181081301b44905f3ae15419112ecabd8a6-1785411923960.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x5cb6f181081301b44905f3ae15419112ecabd8a6-1785411923960.png"
+ ],
+ "name": "pipedog",
+ "symbol": "PIPEDOG",
+ "marketCap": "35769492.909630204770672297",
+ "price": "0.00289732894922953629",
+ "priceChange24hPercent": "-6.62",
+ "volume24h": "671171.1436398643943899174",
+ "communityRecognized": true,
+ "key": "evm--4663:0x5cb6f181081301b44905f3ae15419112ecabd8a6",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x0e0d2c89a5a019fe1cf762e5e33187631dacc21b",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x0e0d2c89a5a019fe1cf762e5e33187631dacc21b-1787400114210.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x0e0d2c89a5a019fe1cf762e5e33187631dacc21b-1787400114210.png"
+ ],
+ "name": "Chump Coin",
+ "symbol": "CHUMP",
+ "marketCap": "35977837.123296699878179831",
+ "price": "0.03597783749651078179",
+ "priceChange24hPercent": "-5.88",
+ "volume24h": "4844506.567446358713267547",
+ "communityRecognized": false,
+ "key": "evm--4663:0x0e0d2c89a5a019fe1cf762e5e33187631dacc21b",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x62c71cd34a52c30d894419cbcc55db2afa8032ea",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x62c71cd34a52c30d894419cbcc55db2afa8032ea-1785197280438.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x62c71cd34a52c30d894419cbcc55db2afa8032ea-1785197280438.png"
+ ],
+ "name": "YOLO",
+ "symbol": "YOLO",
+ "marketCap": "6110793.379760146105089284",
+ "price": "0.0062997870322002435",
+ "priceChange24hPercent": "-10.16",
+ "volume24h": "845244.447983754982821435",
+ "communityRecognized": false,
+ "key": "evm--4663:0x62c71cd34a52c30d894419cbcc55db2afa8032ea",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xf2915d1e3c1b0c769d0c756ec43f1c1f6c99cd03",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xf2915d1e3c1b0c769d0c756ec43f1c1f6c99cd03-1784861135802.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xf2915d1e3c1b0c769d0c756ec43f1c1f6c99cd03-1784861135802.png"
+ ],
+ "name": "Arrow",
+ "symbol": "ARROW",
+ "marketCap": "3472922.672130186445530038",
+ "price": "0.38588029898682948721",
+ "priceChange24hPercent": "-17.87",
+ "volume24h": "139673.39023762295482776",
+ "communityRecognized": false,
+ "key": "evm--4663:0xf2915d1e3c1b0c769d0c756ec43f1c1f6c99cd03",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x8ff92566f2e81bdd68edfaa8cde73942a723796b",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x8ff92566f2e81bdd68edfaa8cde73942a723796b-1784854679354.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x8ff92566f2e81bdd68edfaa8cde73942a723796b-1784854679354.png"
+ ],
+ "name": "ProjectVex",
+ "symbol": "VEX",
+ "marketCap": "2665179.099566858123776638",
+ "price": "0.00266517909956685812",
+ "priceChange24hPercent": "-15.72",
+ "volume24h": "260009.5990488141100617625",
+ "communityRecognized": false,
+ "key": "evm--4663:0x8ff92566f2e81bdd68edfaa8cde73942a723796b",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xcebc0cfbc5dd0893a9e3b9d0f75b211ddf5934a0",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xcebc0cfbc5dd0893a9e3b9d0f75b211ddf5934a0-1788177871007.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xcebc0cfbc5dd0893a9e3b9d0f75b211ddf5934a0-1788177871007.png"
+ ],
+ "name": "clan.tech",
+ "symbol": "CLAN",
+ "marketCap": "1346087.777112335683918246",
+ "price": "0.00134608777721111461",
+ "priceChange24hPercent": "-20.07",
+ "volume24h": "377379.7993652442474761952",
+ "communityRecognized": false,
+ "key": "evm--4663:0xcebc0cfbc5dd0893a9e3b9d0f75b211ddf5934a0",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x232cdfc415d10b673845d83dc02ba2eabe7e30d1",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x232cdfc415d10b673845d83dc02ba2eabe7e30d1-1785412803768.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x232cdfc415d10b673845d83dc02ba2eabe7e30d1-1785412803768.png"
+ ],
+ "name": "What If",
+ "symbol": "IF",
+ "marketCap": "10586906.988923495786384388",
+ "price": "0.01168673691363227001",
+ "priceChange24hPercent": "6.83",
+ "volume24h": "699408.75128724638127334204",
+ "communityRecognized": false,
+ "key": "evm--4663:0x232cdfc415d10b673845d83dc02ba2eabe7e30d1",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x76761d4aee1e7d6b2b8dedbd13925d6c220b0725",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x76761d4aee1e7d6b2b8dedbd13925d6c220b0725-1786276810800.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x76761d4aee1e7d6b2b8dedbd13925d6c220b0725-1786276810800.png"
+ ],
+ "name": "MowCat",
+ "symbol": "MOW",
+ "marketCap": "4608946.621219782201180129",
+ "price": "0.0046089466212197822",
+ "priceChange24hPercent": "-0.44",
+ "volume24h": "451522.19566662427513433",
+ "communityRecognized": false,
+ "key": "evm--4663:0x76761d4aee1e7d6b2b8dedbd13925d6c220b0725",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x77b0aa38451ccdc1b42587e2f80b9879a7f82356",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x77b0aa38451ccdc1b42587e2f80b9879a7f82356-1786536021883.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x77b0aa38451ccdc1b42587e2f80b9879a7f82356-1786536021883.png"
+ ],
+ "name": "DogBull",
+ "symbol": "DOGO",
+ "marketCap": "21768233.653662840214264244",
+ "price": "0.02155270658778499031",
+ "priceChange24hPercent": "337.27",
+ "volume24h": "1493612.29049212800162382",
+ "communityRecognized": false,
+ "key": "evm--4663:0x77b0aa38451ccdc1b42587e2f80b9879a7f82356",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x5f62c57e5c537887117eef828b7e3ad41c009feb",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x5f62c57e5c537887117eef828b7e3ad41c009feb-1786018016957.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x5f62c57e5c537887117eef828b7e3ad41c009feb-1786018016957.png"
+ ],
+ "name": "Good In The Hood",
+ "symbol": "GOOD",
+ "marketCap": "3650847.769165494974298471",
+ "price": "0.00464873807570103688",
+ "priceChange24hPercent": "-17.08",
+ "volume24h": "521865.9783489107977956399",
+ "communityRecognized": false,
+ "key": "evm--4663:0x5f62c57e5c537887117eef828b7e3ad41c009feb",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x20024e485c0b22b42855589700721b28320a7777",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x20024e485c0b22b42855589700721b28320a7777-1786363300721.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x20024e485c0b22b42855589700721b28320a7777-1786363300721.png"
+ ],
+ "name": "Prism Assets",
+ "symbol": "PRISM",
+ "marketCap": "2315389.100589988802579267",
+ "price": "0.0023153891005899888",
+ "priceChange24hPercent": "72.21",
+ "volume24h": "317617.0090886330388249384",
+ "communityRecognized": false,
+ "key": "evm--4663:0x20024e485c0b22b42855589700721b28320a7777",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x4a6eec8a30b49d289b9fc865fd374b4d61eab8fb",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x4a6eec8a30b49d289b9fc865fd374b4d61eab8fb-1785758432269.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x4a6eec8a30b49d289b9fc865fd374b4d61eab8fb-1785758432269.png"
+ ],
+ "name": "Liluni",
+ "symbol": "Liluni",
+ "marketCap": "769327.821597585049202932",
+ "price": "0.00076932782159758505",
+ "priceChange24hPercent": "-7.08",
+ "volume24h": "136900.653339801969275365",
+ "communityRecognized": false,
+ "key": "evm--4663:0x4a6eec8a30b49d289b9fc865fd374b4d61eab8fb",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xb8fa8010833463aac5595b55b9045479239eff79",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xb8fa8010833463aac5595b55b9045479239eff79-1786881632532.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xb8fa8010833463aac5595b55b9045479239eff79-1786881632532.png"
+ ],
+ "name": "what the hook?",
+ "symbol": "WTH",
+ "marketCap": "4433865.674641148580658499",
+ "price": "21.11364606971975514599",
+ "priceChange24hPercent": "5.47",
+ "volume24h": "652022.972529364908959044",
+ "communityRecognized": false,
+ "key": "evm--4663:0xb8fa8010833463aac5595b55b9045479239eff79",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xf8bc08092c06db6148114dcf82af881f1085f92b",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xf8bc08092c06db6148114dcf82af881f1085f92b-1785137390595.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xf8bc08092c06db6148114dcf82af881f1085f92b-1785137390595.png"
+ ],
+ "name": "Sherwood Protocol",
+ "symbol": "WOOD",
+ "marketCap": "5294868.778292219416037217",
+ "price": "0.00529486877829221942",
+ "priceChange24hPercent": "2.67",
+ "volume24h": "202725.4262502701851060423",
+ "communityRecognized": false,
+ "key": "evm--4663:0xf8bc08092c06db6148114dcf82af881f1085f92b",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x51fb76be80ab6daaa345d818f4e06441816b4fea",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x51fb76be80ab6daaa345d818f4e06441816b4fea-1786104017624.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x51fb76be80ab6daaa345d818f4e06441816b4fea-1786104017624.png"
+ ],
+ "name": "NASDANQ",
+ "symbol": "NASDANQ",
+ "marketCap": "2336139.896707354816830353",
+ "price": "0.00233613989670735482",
+ "priceChange24hPercent": "121.05",
+ "volume24h": "360687.308786243004221415",
+ "communityRecognized": false,
+ "key": "evm--4663:0x51fb76be80ab6daaa345d818f4e06441816b4fea",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x8ecea3d0e648db646d824aa51eedeb16ac3d6878",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x8ecea3d0e648db646d824aa51eedeb16ac3d6878-1785284432065.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x8ecea3d0e648db646d824aa51eedeb16ac3d6878-1785284432065.png"
+ ],
+ "name": "wire bot",
+ "symbol": "wire",
+ "marketCap": "539032.655786243127634391",
+ "price": "0.00054041288588799596",
+ "priceChange24hPercent": "-9.58",
+ "volume24h": "219149.466511261520284418",
+ "communityRecognized": false,
+ "key": "evm--4663:0x8ecea3d0e648db646d824aa51eedeb16ac3d6878",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xcb5566e73bee5390c75df834d4727dcecc65fc87",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xcb5566e73bee5390c75df834d4727dcecc65fc87-1788354026635.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xcb5566e73bee5390c75df834d4727dcecc65fc87-1788354026635.png"
+ ],
+ "name": "Mast Bond",
+ "symbol": "MAST",
+ "marketCap": "652914.665836647500035643",
+ "price": "0.0006529146658366475",
+ "priceChange24hPercent": "83.34",
+ "volume24h": "170354.45318649432250279",
+ "communityRecognized": false,
+ "key": "evm--4663:0xcb5566e73bee5390c75df834d4727dcecc65fc87",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xf44702b17d9abd53815f703e772f35e9c71a53af",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xf44702b17d9abd53815f703e772f35e9c71a53af-1784822115804.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xf44702b17d9abd53815f703e772f35e9c71a53af-1784822115804.png"
+ ],
+ "name": "RAXOL",
+ "symbol": "RAXOL",
+ "marketCap": "1712329.03977912128931203",
+ "price": "0.00171232903977912129",
+ "priceChange24hPercent": "-6.97",
+ "volume24h": "76943.6019876081832075",
+ "communityRecognized": false,
+ "key": "evm--4663:0xf44702b17d9abd53815f703e772f35e9c71a53af",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x8e62f281f282686fca6dcb39288069a93fc23f1c",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x8e62f281f282686fca6dcb39288069a93fc23f1c-1784830569718.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x8e62f281f282686fca6dcb39288069a93fc23f1c-1784830569718.png"
+ ],
+ "name": "Hoodrat",
+ "symbol": "HOODRAT",
+ "marketCap": "1729390.247190236716847253",
+ "price": "0.00172939031667982091",
+ "priceChange24hPercent": "3.89",
+ "volume24h": "222192.52143028026533131022",
+ "communityRecognized": true,
+ "key": "evm--4663:0x8e62f281f282686fca6dcb39288069a93fc23f1c",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x77581054581b9c525e7dd7a0155de43867532d03",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x77581054581b9c525e7dd7a0155de43867532d03-1784939141560.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x77581054581b9c525e7dd7a0155de43867532d03-1784939141560.png"
+ ],
+ "name": "WISHBONE",
+ "symbol": "WISHBONE",
+ "marketCap": "890566.402734889733341878",
+ "price": "0.00096332665926777235",
+ "priceChange24hPercent": "6.55",
+ "volume24h": "130641.64816688500890537",
+ "communityRecognized": false,
+ "key": "evm--4663:0x77581054581b9c525e7dd7a0155de43867532d03",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x43eea882b845a8493152ebc55cf30ae9281b02d5",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x43eea882b845a8493152ebc55cf30ae9281b02d5-1785292897426.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x43eea882b845a8493152ebc55cf30ae9281b02d5-1785292897426.png"
+ ],
+ "name": "FIRE",
+ "symbol": "FIRE",
+ "marketCap": "1462625.380905727143813291",
+ "price": "0.0014809585098065579",
+ "priceChange24hPercent": "12.11",
+ "volume24h": "155884.215541360146363246",
+ "communityRecognized": false,
+ "key": "evm--4663:0x43eea882b845a8493152ebc55cf30ae9281b02d5",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x9ca1cc0c90d97b4f36c5e2232d4fbd705a73c65d",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x9ca1cc0c90d97b4f36c5e2232d4fbd705a73c65d-1786363300721.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x9ca1cc0c90d97b4f36c5e2232d4fbd705a73c65d-1786363300721.png"
+ ],
+ "name": "TA FUND",
+ "symbol": "TA",
+ "marketCap": "2169025.59885951907590852",
+ "price": "0.00216902559885951908",
+ "priceChange24hPercent": "-16.82",
+ "volume24h": "162073.316988105440870788",
+ "communityRecognized": false,
+ "key": "evm--4663:0x9ca1cc0c90d97b4f36c5e2232d4fbd705a73c65d",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xe3fa12da7fa026b21817f16622e8ae48fa785166",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xe3fa12da7fa026b21817f16622e8ae48fa785166-1786536006382.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xe3fa12da7fa026b21817f16622e8ae48fa785166-1786536006382.png"
+ ],
+ "name": "Yardkeeper",
+ "symbol": "YARD",
+ "marketCap": "1661101.247537698075666796",
+ "price": "0.00237034455488214896",
+ "priceChange24hPercent": "12.56",
+ "volume24h": "61644.843779808031652072",
+ "communityRecognized": false,
+ "key": "evm--4663:0xe3fa12da7fa026b21817f16622e8ae48fa785166",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x727701f88f09fed71eb217bcea88b3f314cf7079",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x727701f88f09fed71eb217bcea88b3f314cf7079-1785229474064.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x727701f88f09fed71eb217bcea88b3f314cf7079-1785229474064.png"
+ ],
+ "name": "GRID by Virtuals",
+ "symbol": "GRID",
+ "marketCap": "1249980.578691939741013368",
+ "price": "0.00124998057869193974",
+ "priceChange24hPercent": "-19.17",
+ "volume24h": "33049.4348259689788985",
+ "communityRecognized": false,
+ "key": "evm--4663:0x727701f88f09fed71eb217bcea88b3f314cf7079",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x96765066f6a040a21eb027167d2315b707c82633",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x96765066f6a040a21eb027167d2315b707c82633-1784938636403.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x96765066f6a040a21eb027167d2315b707c82633-1784938636403.png"
+ ],
+ "name": "Ravenhood",
+ "symbol": "RVH",
+ "marketCap": "390628.355788254703232466",
+ "price": "0.00496337736804456155",
+ "priceChange24hPercent": "-24.94",
+ "volume24h": "42114.077570100452830521",
+ "communityRecognized": false,
+ "key": "evm--4663:0x96765066f6a040a21eb027167d2315b707c82633",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xbd957cc9f1e94617792f37bc40f2f299e78acf3e",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xbd957cc9f1e94617792f37bc40f2f299e78acf3e-1785845024248.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xbd957cc9f1e94617792f37bc40f2f299e78acf3e-1785845024248.png"
+ ],
+ "name": "Crude Cat",
+ "symbol": "CRUDECAT",
+ "marketCap": "2307997.035220816076014931",
+ "price": "0.00597695795708211835",
+ "priceChange24hPercent": "-18.37",
+ "volume24h": "235075.435866963851626067",
+ "communityRecognized": false,
+ "key": "evm--4663:0xbd957cc9f1e94617792f37bc40f2f299e78acf3e",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xfb1bcb6817f7b8fa86896d3253b16aeb7bd6a5a8",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xfb1bcb6817f7b8fa86896d3253b16aeb7bd6a5a8-1785008871536.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xfb1bcb6817f7b8fa86896d3253b16aeb7bd6a5a8-1785008871536.png"
+ ],
+ "name": "one life, its worth an attempt",
+ "symbol": "worth",
+ "marketCap": "943016.144584851830199867",
+ "price": "0.00112942228622299282",
+ "priceChange24hPercent": "-41.88",
+ "volume24h": "120227.089695412003159485",
+ "communityRecognized": false,
+ "key": "evm--4663:0xfb1bcb6817f7b8fa86896d3253b16aeb7bd6a5a8",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x49bac47750f3dcdba49350b5d74fd399e90f97c6",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x49bac47750f3dcdba49350b5d74fd399e90f97c6-1786190483451.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x49bac47750f3dcdba49350b5d74fd399e90f97c6-1786190483451.png"
+ ],
+ "name": "The Bull",
+ "symbol": "BULL",
+ "marketCap": "1844160.155161726289434023",
+ "price": "0.00184418762652969795",
+ "priceChange24hPercent": "-9.53",
+ "volume24h": "111165.478002960911664336",
+ "communityRecognized": false,
+ "key": "evm--4663:0x49bac47750f3dcdba49350b5d74fd399e90f97c6",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x9727b500ac8726c716f018e5d3ca871481245065",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x9727b500ac8726c716f018e5d3ca871481245065-1785196146146.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x9727b500ac8726c716f018e5d3ca871481245065-1785196146146.png"
+ ],
+ "name": "Ansem Cat",
+ "symbol": "AnsemCat",
+ "marketCap": "365173.245867752584482233",
+ "price": "0.00000086803405326429",
+ "priceChange24hPercent": "-12.72",
+ "volume24h": "53.4897532851138468",
+ "communityRecognized": false,
+ "key": "evm--4663:0x9727b500ac8726c716f018e5d3ca871481245065",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xeafa804083a4886a9460b5b19557334a652beba8",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xeafa804083a4886a9460b5b19557334a652beba8-1785002418521.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xeafa804083a4886a9460b5b19557334a652beba8-1785002418521.png"
+ ],
+ "name": "Naven Network",
+ "symbol": "NAVEN",
+ "marketCap": "379120.192909717179101389",
+ "price": "0.00043238178622577899",
+ "priceChange24hPercent": "5.46",
+ "volume24h": "96198.47367125811357341",
+ "communityRecognized": false,
+ "key": "evm--4663:0xeafa804083a4886a9460b5b19557334a652beba8",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x3b4a0048a00787a644932cd648faa043410c163e",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x3b4a0048a00787a644932cd648faa043410c163e-1788264033495.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x3b4a0048a00787a644932cd648faa043410c163e-1788264033495.png"
+ ],
+ "name": "The Dogestar",
+ "symbol": "SIRIUS",
+ "marketCap": "889308.889941344775296854",
+ "price": "0.00088930888995381725",
+ "priceChange24hPercent": "-56.6",
+ "volume24h": "821876.41690944907080550492",
+ "communityRecognized": false,
+ "key": "evm--4663:0x3b4a0048a00787a644932cd648faa043410c163e",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x2103faa9d1762e27a716c61718b3acf3ec1f9bf1",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x2103faa9d1762e27a716c61718b3acf3ec1f9bf1-1785016173111.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x2103faa9d1762e27a716c61718b3acf3ec1f9bf1-1785016173111.png"
+ ],
+ "name": "Robin Hood",
+ "symbol": "FOX",
+ "marketCap": "819155.44037873657318132",
+ "price": "0.00087392746402269212",
+ "priceChange24hPercent": "-5.3",
+ "volume24h": "256273.385526603899418197",
+ "communityRecognized": false,
+ "key": "evm--4663:0x2103faa9d1762e27a716c61718b3acf3ec1f9bf1",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xaa40e79e987517f7462bf79315b8a118799b04e3",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xaa40e79e987517f7462bf79315b8a118799b04e3-1787659277021.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xaa40e79e987517f7462bf79315b8a118799b04e3-1787659277021.png"
+ ],
+ "name": "scopl.live",
+ "symbol": "SCOPL",
+ "marketCap": "401077.566822741022302925",
+ "price": "0.00041294851870877833",
+ "priceChange24hPercent": "-20.52",
+ "volume24h": "224723.96428726743934301682",
+ "communityRecognized": false,
+ "key": "evm--4663:0xaa40e79e987517f7462bf79315b8a118799b04e3",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xa5be0eeb82a013dc7867b9e020c36a69da666666",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xa5be0eeb82a013dc7867b9e020c36a69da666666-1787227214299.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xa5be0eeb82a013dc7867b9e020c36a69da666666-1787227214299.png"
+ ],
+ "name": "CLOCK IN",
+ "symbol": "CLOCKIN",
+ "marketCap": "390075.568640705056017851",
+ "price": "0.00039007557111482805",
+ "priceChange24hPercent": "16.1",
+ "volume24h": "63928.0115982491239086",
+ "communityRecognized": false,
+ "key": "evm--4663:0xa5be0eeb82a013dc7867b9e020c36a69da666666",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xf0e17e54239cd945cd7bea471a3a2ca6a8c7f7a3",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xf0e17e54239cd945cd7bea471a3a2ca6a8c7f7a3-1785403528086.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xf0e17e54239cd945cd7bea471a3a2ca6a8c7f7a3-1785403528086.png"
+ ],
+ "name": "Lemon",
+ "symbol": "LEMON.FUN",
+ "marketCap": "567512.386103755069902849",
+ "price": "0.00057397490461328917",
+ "priceChange24hPercent": "-15.2",
+ "volume24h": "28709.2760080819226757",
+ "communityRecognized": false,
+ "key": "evm--4663:0xf0e17e54239cd945cd7bea471a3a2ca6a8c7f7a3",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x5edb417509a869b1d8222dea05257b8c8ba00361",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x5edb417509a869b1d8222dea05257b8c8ba00361-1786881611635.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x5edb417509a869b1d8222dea05257b8c8ba00361-1786881611635.png"
+ ],
+ "name": "DeFi Traded Fund",
+ "symbol": "DTF",
+ "marketCap": "2101276.505389603821695618",
+ "price": "0.00258078710768923079",
+ "priceChange24hPercent": "-1.3",
+ "volume24h": "125896.034774",
+ "communityRecognized": false,
+ "key": "evm--4663:0x5edb417509a869b1d8222dea05257b8c8ba00361",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x1d5aad3c0d6066078ea60f384a2492a550db30b0",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x1d5aad3c0d6066078ea60f384a2492a550db30b0-1786623045142.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x1d5aad3c0d6066078ea60f384a2492a550db30b0-1786623045142.png"
+ ],
+ "name": "STACKERS",
+ "symbol": "STACK",
+ "marketCap": "328316.712147829017752093",
+ "price": "0.00052860209114416726",
+ "priceChange24hPercent": "-39.53",
+ "volume24h": "88525.5334792368953772576",
+ "communityRecognized": false,
+ "key": "evm--4663:0x1d5aad3c0d6066078ea60f384a2492a550db30b0",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xd1e861cc5eee7ea88649206b74504d78ccd7aeea",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xd1e861cc5eee7ea88649206b74504d78ccd7aeea-1786708875938.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xd1e861cc5eee7ea88649206b74504d78ccd7aeea-1786708875938.png"
+ ],
+ "name": "Alandale",
+ "symbol": "LUTE",
+ "marketCap": "453658.504315338644932708",
+ "price": "0.00853535222467991659",
+ "priceChange24hPercent": "13.9",
+ "volume24h": "1041.8109374665231065",
+ "communityRecognized": false,
+ "key": "evm--4663:0xd1e861cc5eee7ea88649206b74504d78ccd7aeea",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xbc9e7b1c5c0081f4ae85e71ec95703d3dec9ffad",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xbc9e7b1c5c0081f4ae85e71ec95703d3dec9ffad-1786449612801.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xbc9e7b1c5c0081f4ae85e71ec95703d3dec9ffad-1786449612801.png"
+ ],
+ "name": "Bucket Shop",
+ "symbol": "Bucket",
+ "marketCap": "3487714.386686102696356531",
+ "price": "0.00349446150649011294",
+ "priceChange24hPercent": "29.27",
+ "volume24h": "244251.5313017966904779872",
+ "communityRecognized": false,
+ "key": "evm--4663:0xbc9e7b1c5c0081f4ae85e71ec95703d3dec9ffad",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x8d4dfaaa4198b6486e0293fec914c2b6a821d4dc",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x8d4dfaaa4198b6486e0293fec914c2b6a821d4dc-1784777336133.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x8d4dfaaa4198b6486e0293fec914c2b6a821d4dc-1784777336133.png"
+ ],
+ "name": "KITSU",
+ "symbol": "KITSU",
+ "marketCap": "1112588.761797044854702224",
+ "price": "0.00118106846427510267",
+ "priceChange24hPercent": "-7.7",
+ "volume24h": "118147.202067314724046081",
+ "communityRecognized": false,
+ "key": "evm--4663:0x8d4dfaaa4198b6486e0293fec914c2b6a821d4dc",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xe15db7c8547a0add11eb26a700246cca08aefce5",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xe15db7c8547a0add11eb26a700246cca08aefce5-1785409545430.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xe15db7c8547a0add11eb26a700246cca08aefce5-1785409545430.png"
+ ],
+ "name": "Shibinhood",
+ "symbol": "WOOF",
+ "marketCap": "1215493.548453345796307932",
+ "price": "0.00000121549354859677",
+ "priceChange24hPercent": "2.54",
+ "volume24h": "187334.243924157075583866",
+ "communityRecognized": true,
+ "key": "evm--4663:0xe15db7c8547a0add11eb26a700246cca08aefce5",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x69984ad3322300039f2855f81c44dbc532efe744",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x69984ad3322300039f2855f81c44dbc532efe744-1785359089193.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x69984ad3322300039f2855f81c44dbc532efe744-1785359089193.png"
+ ],
+ "name": "Tygr",
+ "symbol": "TYGR",
+ "marketCap": "283285.985380009240663877",
+ "price": "0.00031503893798487123",
+ "priceChange24hPercent": "-18.62",
+ "volume24h": "75743.558711613512144332",
+ "communityRecognized": false,
+ "key": "evm--4663:0x69984ad3322300039f2855f81c44dbc532efe744",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xa0e67be79118704a35e7d4b20c3ec4df36ef6e10",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xa0e67be79118704a35e7d4b20c3ec4df36ef6e10-1788091298404.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xa0e67be79118704a35e7d4b20c3ec4df36ef6e10-1788091298404.png"
+ ],
+ "name": "Pons Index",
+ "symbol": "PONSFOLIO",
+ "marketCap": "34018.737934824480556041",
+ "price": "0.00003401873793482448",
+ "priceChange24hPercent": "-31.39",
+ "volume24h": "1845.25467733650970038",
+ "communityRecognized": false,
+ "key": "evm--4663:0xa0e67be79118704a35e7d4b20c3ec4df36ef6e10",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x0e8720b8cd84f95b4b6696adbfa8063c4b8b94f2",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x0e8720b8cd84f95b4b6696adbfa8063c4b8b94f2-1784804605586.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x0e8720b8cd84f95b4b6696adbfa8063c4b8b94f2-1784804605586.png"
+ ],
+ "name": "Buy Button",
+ "symbol": "BUY",
+ "marketCap": "748201.591140112186514847",
+ "price": "0.00082408396918163004",
+ "priceChange24hPercent": "-4.3",
+ "volume24h": "99098.1633125375771564",
+ "communityRecognized": false,
+ "key": "evm--4663:0x0e8720b8cd84f95b4b6696adbfa8063c4b8b94f2",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x3f9f0b6073ee8c495aed96869af31850fed40feb",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x3f9f0b6073ee8c495aed96869af31850fed40feb-1785412064587.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x3f9f0b6073ee8c495aed96869af31850fed40feb-1785412064587.png"
+ ],
+ "name": "Dice Protocol",
+ "symbol": "DICE",
+ "marketCap": "246206.974893546367185266",
+ "price": "0.00025278197889207848",
+ "priceChange24hPercent": "10.15",
+ "volume24h": "146739.600094757141635484",
+ "communityRecognized": false,
+ "key": "evm--4663:0x3f9f0b6073ee8c495aed96869af31850fed40feb",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x298348d5b2e45c774e3ee4f1a0924071dfbdc8c7",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x298348d5b2e45c774e3ee4f1a0924071dfbdc8c7-1786190550357.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x298348d5b2e45c774e3ee4f1a0924071dfbdc8c7-1786190550357.png"
+ ],
+ "name": "swappy",
+ "symbol": "swappy",
+ "marketCap": "449114.126612554601310211",
+ "price": "0.0004491141266125546",
+ "priceChange24hPercent": "-22.43",
+ "volume24h": "148998.96954404726968047",
+ "communityRecognized": false,
+ "key": "evm--4663:0x298348d5b2e45c774e3ee4f1a0924071dfbdc8c7",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xace55fe98bab14366dd49ab5aa5df76aa11a3c6f",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xace55fe98bab14366dd49ab5aa5df76aa11a3c6f-1785845024248.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xace55fe98bab14366dd49ab5aa5df76aa11a3c6f-1785845024248.png"
+ ],
+ "name": "Wojak",
+ "symbol": "WOJAK",
+ "marketCap": "1692216.549970488123565045",
+ "price": "0.00185787421689451655",
+ "priceChange24hPercent": "20.87",
+ "volume24h": "74447.7342328660145371",
+ "communityRecognized": false,
+ "key": "evm--4663:0xace55fe98bab14366dd49ab5aa5df76aa11a3c6f",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xe4b8723d202fdd0298b1d7496a86656b2986c532",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xe4b8723d202fdd0298b1d7496a86656b2986c532-1786622839074.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xe4b8723d202fdd0298b1d7496a86656b2986c532-1786622839074.png"
+ ],
+ "name": "StockRip",
+ "symbol": "RIP",
+ "marketCap": "938245.272755205458732501",
+ "price": "0.0009382885426150306",
+ "priceChange24hPercent": "-32",
+ "volume24h": "99319.68263892314420877",
+ "communityRecognized": false,
+ "key": "evm--4663:0xe4b8723d202fdd0298b1d7496a86656b2986c532",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xfe242d1da8fd04f6a1f80b6d3d807b02e062ad4e",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xfe242d1da8fd04f6a1f80b6d3d807b02e062ad4e-1787832041620.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xfe242d1da8fd04f6a1f80b6d3d807b02e062ad4e-1787832041620.png"
+ ],
+ "name": "Obscura",
+ "symbol": "OBS",
+ "marketCap": "500688.818984870549311758",
+ "price": "0.00050403564936191361",
+ "priceChange24hPercent": "-32.51",
+ "volume24h": "219306.60461458429144833",
+ "communityRecognized": false,
+ "key": "evm--4663:0xfe242d1da8fd04f6a1f80b6d3d807b02e062ad4e",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x77061b45c5e4d440bd681b5f72bd0f4231a6fc04",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x77061b45c5e4d440bd681b5f72bd0f4231a6fc04-1788004867211.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x77061b45c5e4d440bd681b5f72bd0f4231a6fc04-1788004867211.png"
+ ],
+ "name": "RobinVault",
+ "symbol": "ROBINVAULT",
+ "marketCap": "397586.87667975865000995",
+ "price": "0.00073326281522966963",
+ "priceChange24hPercent": "-80.82",
+ "volume24h": "1029592.004454216958580522",
+ "communityRecognized": false,
+ "key": "evm--4663:0x77061b45c5e4d440bd681b5f72bd0f4231a6fc04",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x5173b8ea6923c2d40267890d45c46a3480954773",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x5173b8ea6923c2d40267890d45c46a3480954773-1786709002621.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x5173b8ea6923c2d40267890d45c46a3480954773-1786709002621.png"
+ ],
+ "name": "World is Flat",
+ "symbol": "WIF",
+ "marketCap": "992458.903324373126169822",
+ "price": "0.00099245890332437313",
+ "priceChange24hPercent": "66.12",
+ "volume24h": "78463.15300625280884197",
+ "communityRecognized": false,
+ "key": "evm--4663:0x5173b8ea6923c2d40267890d45c46a3480954773",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x5aed379a72bd2533371d153135c47d5eb61babc8",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x5aed379a72bd2533371d153135c47d5eb61babc8-1787054408027.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x5aed379a72bd2533371d153135c47d5eb61babc8-1787054408027.png"
+ ],
+ "name": "Strike",
+ "symbol": "STRIKE",
+ "marketCap": "168166.235763636933834894",
+ "price": "0.00168222444475767271",
+ "priceChange24hPercent": "-5.91",
+ "volume24h": "8635.191387",
+ "communityRecognized": false,
+ "key": "evm--4663:0x5aed379a72bd2533371d153135c47d5eb61babc8",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xb48d34dd8b53324cb8525461c8e548522db885ec",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xb48d34dd8b53324cb8525461c8e548522db885ec-1787918407513.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xb48d34dd8b53324cb8525461c8e548522db885ec-1787918407513.png"
+ ],
+ "name": "Sluice",
+ "symbol": "SLUICE",
+ "marketCap": "132222.15206775523555463",
+ "price": "0.00013222215206775524",
+ "priceChange24hPercent": "-34.88",
+ "volume24h": "75236.2624130388724919",
+ "communityRecognized": false,
+ "key": "evm--4663:0xb48d34dd8b53324cb8525461c8e548522db885ec",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xa80eb66b3e0cf66ccb46f8b8c9e7ff5803eeb820",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xa80eb66b3e0cf66ccb46f8b8c9e7ff5803eeb820-1784949348295.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xa80eb66b3e0cf66ccb46f8b8c9e7ff5803eeb820-1784949348295.png"
+ ],
+ "name": "Wen Lambo",
+ "symbol": "WEN",
+ "marketCap": "1312267.572898479705983932",
+ "price": "0.00131226757289847971",
+ "priceChange24hPercent": "-6",
+ "volume24h": "93576.5243818584747787434",
+ "communityRecognized": false,
+ "key": "evm--4663:0xa80eb66b3e0cf66ccb46f8b8c9e7ff5803eeb820",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ }
+ ],
+ "top_coins": [
+ {
+ "name": "Bitcoin",
+ "symbol": "BTC",
+ "logoUrl": "https://uni.onekey-asset.com/static/chain/btc.png",
+ "price": "78722.23",
+ "priceChange24hPercent": "-0.82618",
+ "marketCap": "1580605578973",
+ "volume24h": "28620253828",
+ "key": "asset:btc",
+ "kind": "token",
+ "sourceCategory": "top_coins"
+ },
+ {
+ "name": "Ethereum",
+ "symbol": "ETH",
+ "logoUrl": "https://uni.onekey-asset.com/static/chain/eth.png",
+ "price": "2493.08",
+ "priceChange24hPercent": "0.1033",
+ "marketCap": "304202337455",
+ "volume24h": "10911243762",
+ "key": "asset:eth",
+ "kind": "token",
+ "sourceCategory": "top_coins"
+ },
+ {
+ "name": "Solana",
+ "symbol": "SOL",
+ "logoUrl": "https://uni.onekey-asset.com/static/chain/sol.png",
+ "price": "103.6",
+ "priceChange24hPercent": "-1.25857",
+ "marketCap": "60729800068",
+ "volume24h": "2892150584",
+ "key": "asset:sol",
+ "kind": "token",
+ "sourceCategory": "top_coins"
+ },
+ {
+ "name": "BNB",
+ "symbol": "BNB",
+ "logoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png",
+ "price": "755.77",
+ "priceChange24hPercent": "1.49866",
+ "marketCap": "100622230617",
+ "volume24h": "1101755566",
+ "key": "asset:bnb",
+ "kind": "token",
+ "sourceCategory": "top_coins"
+ },
+ {
+ "name": "XRP",
+ "symbol": "XRP",
+ "logoUrl": "https://uni.onekey-asset.com/static/chain/xrp.png",
+ "price": "1.4",
+ "priceChange24hPercent": "-0.14519",
+ "marketCap": "87778290504",
+ "volume24h": "1913181165",
+ "key": "asset:xrp",
+ "kind": "token",
+ "sourceCategory": "top_coins"
+ },
+ {
+ "name": "TRON",
+ "symbol": "TRX",
+ "logoUrl": "https://uni.onekey-asset.com/static/chain/tron.png",
+ "price": "0.3384",
+ "priceChange24hPercent": "0.50176",
+ "marketCap": "32130415602",
+ "volume24h": "361166971",
+ "key": "asset:trx",
+ "kind": "token",
+ "sourceCategory": "top_coins"
+ },
+ {
+ "name": "Hyperliquid",
+ "symbol": "HYPE",
+ "logoUrl": "https://uni.onekey-asset.com/static/chain/hyper-evm.png",
+ "price": "84.3",
+ "priceChange24hPercent": "-3.49239",
+ "marketCap": "18753916476",
+ "volume24h": "1140027197",
+ "key": "asset:hype",
+ "kind": "token",
+ "sourceCategory": "top_coins"
+ },
+ {
+ "name": "Dogecoin",
+ "symbol": "DOGE",
+ "logoUrl": "https://uni.onekey-asset.com/static/chain/doge.png",
+ "price": "0.09004",
+ "priceChange24hPercent": "0.51382",
+ "marketCap": "14030351707",
+ "volume24h": "842730956",
+ "key": "asset:doge",
+ "kind": "token",
+ "sourceCategory": "top_coins"
+ },
+ {
+ "name": "Chainlink",
+ "symbol": "LINK",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x514910771af9ca656af840dff83e8264ecf986ca.png",
+ "price": "12.75",
+ "priceChange24hPercent": "-4.86794",
+ "marketCap": "9534241284",
+ "volume24h": "485057684",
+ "key": "asset:link",
+ "kind": "token",
+ "sourceCategory": "top_coins"
+ },
+ {
+ "name": "Cardano",
+ "symbol": "ADA",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x3ee2200efb3400fabb9aacf31297cbdd1d435d47.png",
+ "price": "0.2202",
+ "priceChange24hPercent": "0.80538",
+ "marketCap": "8256344126",
+ "volume24h": "426913683",
+ "key": "asset:ada",
+ "kind": "token",
+ "sourceCategory": "top_coins"
+ },
+ {
+ "name": "Stellar",
+ "symbol": "XLM",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x3f56e0c36d275367b8c502090edf38289b3dea0d.png",
+ "price": "0.1914",
+ "priceChange24hPercent": "0.28141",
+ "marketCap": "6660985324",
+ "volume24h": "224575192",
+ "key": "asset:xlm",
+ "kind": "token",
+ "sourceCategory": "top_coins"
+ },
+ {
+ "name": "Bitcoin Cash",
+ "symbol": "BCH",
+ "logoUrl": "https://uni.onekey-asset.com/static/chain/bch.png",
+ "price": "257.81",
+ "priceChange24hPercent": "0.54687",
+ "marketCap": "5178426166",
+ "volume24h": "220054757",
+ "key": "asset:bch",
+ "kind": "token",
+ "sourceCategory": "top_coins"
+ },
+ {
+ "name": "Litecoin",
+ "symbol": "LTC",
+ "logoUrl": "https://uni.onekey-asset.com/static/chain/ltc.png",
+ "price": "55.64",
+ "priceChange24hPercent": "-0.6301",
+ "marketCap": "4312886037",
+ "volume24h": "457856562",
+ "key": "asset:ltc",
+ "kind": "token",
+ "sourceCategory": "top_coins"
+ },
+ {
+ "name": "Gram",
+ "symbol": "GRAM",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-onchain/ton--mainnet/tokens/native.png",
+ "price": "1.4",
+ "priceChange24hPercent": "-1.64847",
+ "marketCap": "3886879752",
+ "volume24h": "38440709",
+ "key": "asset:gram",
+ "kind": "token",
+ "sourceCategory": "top_coins"
+ },
+ {
+ "name": "Uniswap",
+ "symbol": "UNI",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x1f9840a85d5af5bf1d1762f925bdaddc4201f984.png",
+ "price": "7.14",
+ "priceChange24hPercent": "2.30696",
+ "marketCap": "4448575911",
+ "volume24h": "592876035",
+ "key": "asset:uni",
+ "kind": "token",
+ "sourceCategory": "top_coins"
+ },
+ {
+ "name": "Avalanche",
+ "symbol": "AVAX",
+ "logoUrl": "https://uni.onekey-asset.com/static/chain/avalanche.png",
+ "price": "8.1",
+ "priceChange24hPercent": "2.32664",
+ "marketCap": "3498757268",
+ "volume24h": "400713606",
+ "key": "asset:avax",
+ "kind": "token",
+ "sourceCategory": "top_coins"
+ },
+ {
+ "name": "Sui",
+ "symbol": "SUI",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-onchain/sui--mainnet/tokens/0x2::sui::SUI.png",
+ "price": "0.8286",
+ "priceChange24hPercent": "2.11914",
+ "marketCap": "3393869136",
+ "volume24h": "742971304",
+ "key": "asset:sui",
+ "kind": "token",
+ "sourceCategory": "top_coins"
+ },
+ {
+ "name": "Shiba Inu",
+ "symbol": "SHIB",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x95ad61b0a150d79219dcf64e1e6cc01f0b64c4ce.png",
+ "price": "0.000005486",
+ "priceChange24hPercent": "0.17946",
+ "marketCap": "3232670211",
+ "volume24h": "70653093",
+ "key": "asset:shib",
+ "kind": "token",
+ "sourceCategory": "top_coins"
+ },
+ {
+ "name": "NEAR",
+ "symbol": "NEAR",
+ "logoUrl": "https://uni.onekey-asset.com/static/chain/near.png",
+ "price": "2.34",
+ "priceChange24hPercent": "-0.60878",
+ "marketCap": "3051357440",
+ "volume24h": "305177552",
+ "key": "asset:near",
+ "kind": "token",
+ "sourceCategory": "top_coins"
+ },
+ {
+ "name": "Cronos",
+ "symbol": "CRO",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xa0b73e1ff0b80914ab6fe0444e65848c4c34450b.png",
+ "price": "0.05889",
+ "priceChange24hPercent": "2.20038",
+ "marketCap": "2860268456",
+ "volume24h": "7104381",
+ "key": "asset:cro",
+ "kind": "token",
+ "sourceCategory": "top_coins"
+ },
+ {
+ "name": "Bittensor",
+ "symbol": "TAO",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x77e06c9eccf2e797fd462a92b6d7642ef85b0a44.png",
+ "price": "255.5",
+ "priceChange24hPercent": "-5.24953",
+ "marketCap": "2451496223",
+ "volume24h": "200744075",
+ "key": "asset:tao",
+ "kind": "token",
+ "sourceCategory": "top_coins"
+ },
+ {
+ "name": "Aave",
+ "symbol": "AAVE",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x7fc66500c84a76ad7e9c93437bfc5ac33e2ddae9-1768204923952.png",
+ "price": "131.77",
+ "priceChange24hPercent": "-1.61151",
+ "marketCap": "2032734366",
+ "volume24h": "197151042",
+ "key": "asset:aave",
+ "kind": "token",
+ "sourceCategory": "top_coins"
+ },
+ {
+ "name": "Ondo",
+ "symbol": "ONDO",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xfaba6f8e4a5e8ab82f62fe7c39859fa577269be3.png",
+ "price": "0.3821",
+ "priceChange24hPercent": "-2.06561",
+ "marketCap": "1860065351",
+ "volume24h": "127692159",
+ "key": "asset:ondo",
+ "kind": "token",
+ "sourceCategory": "top_coins"
+ },
+ {
+ "name": "Morpho",
+ "symbol": "MORPHO",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x58d97b57bb95320f9a05dc918aef65434969c2b2-1732155300090.png",
+ "price": "2.42",
+ "priceChange24hPercent": "-6.08021",
+ "marketCap": "1666238627",
+ "volume24h": "34313860",
+ "key": "asset:morpho",
+ "kind": "token",
+ "sourceCategory": "top_coins"
+ },
+ {
+ "name": "Ethena",
+ "symbol": "ENA",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x57e114b691db790c35207b2e685d4a43181e6061.png",
+ "price": "0.1642",
+ "priceChange24hPercent": "-3.64572",
+ "marketCap": "1658688811",
+ "volume24h": "432639527",
+ "key": "asset:ena",
+ "kind": "token",
+ "sourceCategory": "top_coins"
+ },
+ {
+ "name": "Sky",
+ "symbol": "SKY",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x56072c95faa701256059aa122697b133aded9279-1726634701647.png",
+ "price": "0.06816",
+ "priceChange24hPercent": "-0.21685",
+ "marketCap": "1596494392",
+ "volume24h": "8876539",
+ "key": "asset:sky",
+ "kind": "token",
+ "sourceCategory": "top_coins"
+ },
+ {
+ "name": "Polkadot",
+ "symbol": "DOT",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x7083609fce4d1d8dc0c979aab8c869ea2c873402.png",
+ "price": "1.08",
+ "priceChange24hPercent": "10.4625",
+ "marketCap": "1838136133",
+ "volume24h": "375332188",
+ "key": "asset:dot",
+ "kind": "token",
+ "sourceCategory": "top_coins"
+ },
+ {
+ "name": "Worldcoin",
+ "symbol": "WLD",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x163f8c2467924be0ae7b5347228cabf260318753.png",
+ "price": "0.4796",
+ "priceChange24hPercent": "4.42367",
+ "marketCap": "1763213812",
+ "volume24h": "434281005",
+ "key": "asset:wld",
+ "kind": "token",
+ "sourceCategory": "top_coins"
+ },
+ {
+ "name": "Internet Computer",
+ "symbol": "ICP",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x00f3c42833c3170159af4e92dbb451fb3f708917-1757751970323.png",
+ "price": "3.1",
+ "priceChange24hPercent": "2.4879",
+ "marketCap": "1721866747",
+ "volume24h": "123721411",
+ "key": "asset:icp",
+ "kind": "token",
+ "sourceCategory": "top_coins"
+ },
+ {
+ "name": "Ethereum Classic",
+ "symbol": "ETC",
+ "logoUrl": "https://uni.onekey-asset.com/static/chain/etc.png",
+ "price": "8.24",
+ "priceChange24hPercent": "5.754",
+ "marketCap": "1302419233",
+ "volume24h": "66306056",
+ "key": "asset:etc",
+ "kind": "token",
+ "sourceCategory": "top_coins"
+ },
+ {
+ "name": "Polygon",
+ "symbol": "POL",
+ "logoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png",
+ "price": "0.09657",
+ "priceChange24hPercent": "-0.96655",
+ "marketCap": "1034484721",
+ "volume24h": "45460782",
+ "key": "asset:pol",
+ "kind": "token",
+ "sourceCategory": "top_coins"
+ },
+ {
+ "name": "Arbitrum",
+ "symbol": "ARB",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x912ce59144191c1204e64559fe8253a0e49e6548.png",
+ "price": "0.1752",
+ "priceChange24hPercent": "5.60416",
+ "marketCap": "1169053309",
+ "volume24h": "340840332",
+ "key": "asset:arb",
+ "kind": "token",
+ "sourceCategory": "top_coins"
+ }
+ ]
+ },
+ "spotQueries": {
+ "trending||5m|all": [
+ {
+ "isNative": true,
+ "networkId": "btc--0",
+ "address": "",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/btc--0/tokens/address-.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/btc--0/tokens/address-.png"
+ ],
+ "name": "Bitcoin",
+ "symbol": "BTC",
+ "marketCap": "1583042059097",
+ "price": "78831",
+ "priceChange24hPercent": "-",
+ "volume24h": "-",
+ "communityRecognized": true,
+ "key": "btc--0:",
+ "kind": "token",
+ "sourceCategory": "trending"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x39dbed3a2bd333467115de45665cc57f813c4571",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x39dbed3a2bd333467115de45665cc57f813c4571-1785145437955.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x39dbed3a2bd333467115de45665cc57f813c4571-1785145437955.png"
+ ],
+ "name": "Pons",
+ "symbol": "PONS",
+ "marketCap": "492090210.628701850188706957",
+ "price": "0.70299010362807592567",
+ "priceChange24hPercent": "-0.59",
+ "volume24h": "142584.0993354927515392",
+ "communityRecognized": true,
+ "key": "evm--4663:0x39dbed3a2bd333467115de45665cc57f813c4571",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x4a72b9702f991b790788f8afa9e7112541f4e8f8",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/a2e5ad0ff8689f1c746d6b07fd9718545cd44c67e13dabe8ba7242d613586821",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/a2e5ad0ff8689f1c746d6b07fd9718545cd44c67e13dabe8ba7242d613586821"
+ ],
+ "name": "Route",
+ "symbol": "ROUTE",
+ "marketCap": "5513988.756988728235134089",
+ "price": "0.00551398875698872824",
+ "priceChange24hPercent": "9.65",
+ "volume24h": "170075.7962214617641857",
+ "communityRecognized": false,
+ "key": "evm--4663:0x4a72b9702f991b790788f8afa9e7112541f4e8f8",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x888656062164473c93c06ca89ae4d868d606ffff",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/4a563ac1c0cd1b7ed43429ee1ad5750a8ca22c0eaaa08d0427a8a86e8a2348f0",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/4a563ac1c0cd1b7ed43429ee1ad5750a8ca22c0eaaa08d0427a8a86e8a2348f0"
+ ],
+ "name": "Fat Panda",
+ "symbol": "FATPANDA",
+ "marketCap": "2007470.193468071703617353",
+ "price": "0.0020074701934680717",
+ "priceChange24hPercent": "16.87",
+ "volume24h": "247460.969870955399887889",
+ "communityRecognized": false,
+ "key": "evm--56:0x888656062164473c93c06ca89ae4d868d606ffff",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xe2324ff2a59f8ecba8c321c6466e59121c00e795",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/84804585551812a64183c44a4e291f2332c9a5ff2d07e52dbcd3b81d60c989b3",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/84804585551812a64183c44a4e291f2332c9a5ff2d07e52dbcd3b81d60c989b3"
+ ],
+ "name": "Commodity Market Exchange",
+ "symbol": "CME",
+ "marketCap": "2832696.562845376985278865",
+ "price": "0.00283269656284537699",
+ "priceChange24hPercent": "-6.65",
+ "volume24h": "82453.2875455666321113",
+ "communityRecognized": false,
+ "key": "evm--4663:0xe2324ff2a59f8ecba8c321c6466e59121c00e795",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xc9d825e83aada475bd4d38c8ca984ed746277777",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xc9d825e83aada475bd4d38c8ca984ed746277777-1788595746569.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xc9d825e83aada475bd4d38c8ca984ed746277777-1788595746569.png"
+ ],
+ "name": "Stonks",
+ "symbol": "Stonks",
+ "marketCap": "3582350.21604760077213841",
+ "price": "0.00358235021604760077",
+ "priceChange24hPercent": "11.67",
+ "volume24h": "114792.308830058983624761",
+ "communityRecognized": true,
+ "key": "evm--56:0xc9d825e83aada475bd4d38c8ca984ed746277777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xd270d4e1ec6e6e0d28c0ecb8be966ec75997ffff",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/f3bf6d8a8bc7f4be0ec6949fa0ebf538953fcd6443cd6681e394f790b6546a1e",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/f3bf6d8a8bc7f4be0ec6949fa0ebf538953fcd6443cd6681e394f790b6546a1e"
+ ],
+ "name": "4Stock",
+ "symbol": "4Stock",
+ "marketCap": "8409854.630692244353001325",
+ "price": "0.00840985463069224435",
+ "priceChange24hPercent": "4.29",
+ "volume24h": "419579.145446482806961517",
+ "communityRecognized": false,
+ "key": "evm--56:0xd270d4e1ec6e6e0d28c0ecb8be966ec75997ffff",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x6b1d42927b1a84ec28fa88d4fc6fa7af404966be",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x6b1d42927b1a84ec28fa88d4fc6fa7af404966be-1788091561508.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x6b1d42927b1a84ec28fa88d4fc6fa7af404966be-1788091561508.png"
+ ],
+ "name": "PAIR",
+ "symbol": "PAIR",
+ "marketCap": "13908345.846516438952636089",
+ "price": "0.01552183327682264298",
+ "priceChange24hPercent": "0.74",
+ "volume24h": "12588.501967580598777",
+ "communityRecognized": false,
+ "key": "evm--4663:0x6b1d42927b1a84ec28fa88d4fc6fa7af404966be",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x8fdb0647e2bf11c8d88ef7825905f5f428864444",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/f3bf6d8a8bc7f4be0ec6949fa0ebf538953fcd6443cd6681e394f790b6546a1e",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/f3bf6d8a8bc7f4be0ec6949fa0ebf538953fcd6443cd6681e394f790b6546a1e"
+ ],
+ "name": "4cat",
+ "symbol": "4cat",
+ "marketCap": "123345.408187904633475514",
+ "price": "0.00012334540818790463",
+ "priceChange24hPercent": "-28.29",
+ "volume24h": "41832.91602496288825109",
+ "communityRecognized": false,
+ "key": "evm--56:0x8fdb0647e2bf11c8d88ef7825905f5f428864444",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x17616c8f6cacf14fcff63f3188a30691802effff",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/cfcf37bcd1b22ee8594b38b7c1bbb0d2aafe3f8ad70ec9d9cbd108990326678d",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/cfcf37bcd1b22ee8594b38b7c1bbb0d2aafe3f8ad70ec9d9cbd108990326678d"
+ ],
+ "name": "Built and Code",
+ "symbol": "BNC",
+ "marketCap": "913367.40221444627913088",
+ "price": "0.00091336740221444628",
+ "priceChange24hPercent": "18.22",
+ "volume24h": "68833.575755528953199937",
+ "communityRecognized": false,
+ "key": "evm--56:0x17616c8f6cacf14fcff63f3188a30691802effff",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x0000000005aca17e8bd5779fc87e13cb433aed24",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x0000000005aca17e8bd5779fc87e13cb433aed24-1788697955302.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x0000000005aca17e8bd5779fc87e13cb433aed24-1788697955302.png"
+ ],
+ "name": "NUKE",
+ "symbol": "NUKE",
+ "marketCap": "10272672.557234521474391507",
+ "price": "73.78832524416641769148",
+ "priceChange24hPercent": "5.98",
+ "volume24h": "31800.877226901167176",
+ "communityRecognized": false,
+ "key": "evm--4663:0x0000000005aca17e8bd5779fc87e13cb433aed24",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xe9337dde3dd9e97f1f45a56412767ce5098e7777",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xe9337dde3dd9e97f1f45a56412767ce5098e7777-1785657919485.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xe9337dde3dd9e97f1f45a56412767ce5098e7777-1785657919485.png"
+ ],
+ "name": "何必东奔西走 币安全部都有",
+ "symbol": "币有",
+ "marketCap": "3150874.848668710455349342",
+ "price": "0.00315087484886809582",
+ "priceChange24hPercent": "7.44",
+ "volume24h": "94423.198845827005997909",
+ "communityRecognized": false,
+ "key": "evm--56:0xe9337dde3dd9e97f1f45a56412767ce5098e7777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xa6b53819f5bf521945fceb1f9bbb3a7a7b4effff",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/e5fb48d54702b49bd31d0551378667606ad6bb5e4e33b94fc32179b14469f2d0",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/e5fb48d54702b49bd31d0551378667606ad6bb5e4e33b94fc32179b14469f2d0"
+ ],
+ "name": "CEA Industries",
+ "symbol": "Vape",
+ "marketCap": "176404.301183153400696826",
+ "price": "0.0001764043011831534",
+ "priceChange24hPercent": "-25.18",
+ "volume24h": "53855.65298871531315415",
+ "communityRecognized": false,
+ "key": "evm--56:0xa6b53819f5bf521945fceb1f9bbb3a7a7b4effff",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xab093def657f15df31b33922a95e047add645b29",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xab093def657f15df31b33922a95e047add645b29-1788523212752.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xab093def657f15df31b33922a95e047add645b29-1788523212752.png"
+ ],
+ "name": "MUSHROOM",
+ "symbol": "SHROOM",
+ "marketCap": "31176538.261845186171021435",
+ "price": "0.03157702073495300312",
+ "priceChange24hPercent": "-1.56",
+ "volume24h": "17940.5153833345038888",
+ "communityRecognized": true,
+ "key": "evm--4663:0xab093def657f15df31b33922a95e047add645b29",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x2e8c31162b855a2ffa90f6f8634643ad6f111e18",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x2e8c31162b855a2ffa90f6f8634643ad6f111e18-1785845221968.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x2e8c31162b855a2ffa90f6f8634643ad6f111e18-1785845221968.png"
+ ],
+ "name": "Artificial Inu",
+ "symbol": "AI",
+ "marketCap": "260094258.535918035434408031",
+ "price": "0.26235202242240542926",
+ "priceChange24hPercent": "1.67",
+ "volume24h": "129721.319909811914095291",
+ "communityRecognized": true,
+ "key": "evm--4663:0x2e8c31162b855a2ffa90f6f8634643ad6f111e18",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x7bc70ae0f2a67d2fdc0180a697a611f21c857777",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x7bc70ae0f2a67d2fdc0180a697a611f21c857777-1788768091330.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x7bc70ae0f2a67d2fdc0180a697a611f21c857777-1788768091330.png"
+ ],
+ "name": "BEN",
+ "symbol": "BEN",
+ "marketCap": "4691268.880796520376779672",
+ "price": "0.00469126888091739643",
+ "priceChange24hPercent": "5.07",
+ "volume24h": "29768.41948178623168243",
+ "communityRecognized": false,
+ "key": "evm--56:0x7bc70ae0f2a67d2fdc0180a697a611f21c857777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xd9db30bb0d2b8d2eae3826a1372117e058791e18",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xd9db30bb0d2b8d2eae3826a1372117e058791e18-1788091222725.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xd9db30bb0d2b8d2eae3826a1372117e058791e18-1788091222725.png"
+ ],
+ "name": "Memory cow Moo",
+ "symbol": "MOO",
+ "marketCap": "25738797.080189095042303469",
+ "price": "0.02602626756054763676",
+ "priceChange24hPercent": "1.04",
+ "volume24h": "17035.14686150429358243",
+ "communityRecognized": true,
+ "key": "evm--4663:0xd9db30bb0d2b8d2eae3826a1372117e058791e18",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xb3a1e1f7ae6c90c707ec3c75e99c359482fea5b9",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/488d50fb3eb6f79c9440d809ef90dc3a197facbca4792e913cf6d2ab384a3fbe",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/488d50fb3eb6f79c9440d809ef90dc3a197facbca4792e913cf6d2ab384a3fbe"
+ ],
+ "name": "Sock",
+ "symbol": "SOCK",
+ "marketCap": "5055307.749537088461358135",
+ "price": "0.00505639238387653219",
+ "priceChange24hPercent": "-1.15",
+ "volume24h": "5077.489356746228379671",
+ "communityRecognized": false,
+ "key": "evm--56:0xb3a1e1f7ae6c90c707ec3c75e99c359482fea5b9",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x7ba36be14dd06ba492f08be6c1b2979c1d0b652c",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x7ba36be14dd06ba492f08be6c1b2979c1d0b652c-1788178016235.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x7ba36be14dd06ba492f08be6c1b2979c1d0b652c-1788178016235.png"
+ ],
+ "name": "PerpsHood",
+ "symbol": "PERPSHOOD",
+ "marketCap": "3111996.446146368568450989",
+ "price": "0.00315860300715415141",
+ "priceChange24hPercent": "-9.25",
+ "volume24h": "4947.62721637187194",
+ "communityRecognized": false,
+ "key": "evm--4663:0x7ba36be14dd06ba492f08be6c1b2979c1d0b652c",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xfa6d9b504848606eb9aec04ccc161d169b3f2159",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xfa6d9b504848606eb9aec04ccc161d169b3f2159-1788768839130.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xfa6d9b504848606eb9aec04ccc161d169b3f2159-1788768839130.png"
+ ],
+ "name": "BREW",
+ "symbol": "BREW",
+ "marketCap": "6538711.799489674177314067",
+ "price": "0.00653871179948967418",
+ "priceChange24hPercent": "3.35",
+ "volume24h": "7484.5057829230478138",
+ "communityRecognized": true,
+ "key": "evm--56:0xfa6d9b504848606eb9aec04ccc161d169b3f2159",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x6d11782ef6cbe773da2defef612f9a57c54012bf",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/aed9300fe93af8a077cf133b5d703e28386f95d7724261f173da91a4cac7df65",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/aed9300fe93af8a077cf133b5d703e28386f95d7724261f173da91a4cac7df65"
+ ],
+ "name": "Macintosh",
+ "symbol": "MACINTOSH",
+ "marketCap": "1411468.825098459226522313",
+ "price": "0.00141146882509845923",
+ "priceChange24hPercent": "-0.61",
+ "volume24h": "11466.06400056173892875",
+ "communityRecognized": false,
+ "key": "evm--4663:0x6d11782ef6cbe773da2defef612f9a57c54012bf",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x15d36b6a28d8327abc7afabf0f106ae2c9af5c4d",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x15d36b6a28d8327abc7afabf0f106ae2c9af5c4d-1788523244923.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x15d36b6a28d8327abc7afabf0f106ae2c9af5c4d-1788523244923.png"
+ ],
+ "name": "Pare",
+ "symbol": "PARE",
+ "marketCap": "12472779.347945200550616218",
+ "price": "0.01247277934794520055",
+ "priceChange24hPercent": "2.18",
+ "volume24h": "5174.92326064325712",
+ "communityRecognized": false,
+ "key": "evm--4663:0x15d36b6a28d8327abc7afabf0f106ae2c9af5c4d",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x79a74fd91f8e1c4ab8e76253dec5c91f3094393f",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/e1f481a4066feec841bf3345c090a6cdd9fd2274a972cf1981f3a0a234f42d9c",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/e1f481a4066feec841bf3345c090a6cdd9fd2274a972cf1981f3a0a234f42d9c"
+ ],
+ "name": "Superstables",
+ "symbol": "STBL",
+ "marketCap": "430052.948915032286294785",
+ "price": "0.00043005294891503229",
+ "priceChange24hPercent": "7.13",
+ "volume24h": "6136.6070952846314038",
+ "communityRecognized": false,
+ "key": "evm--4663:0x79a74fd91f8e1c4ab8e76253dec5c91f3094393f",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x7163ae1b5aea2f09ebc609c52b4dcac0a7a4bc2d",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/b565852235f4b58795118e627a62621101b692c4e2e2801f518600ad55c59755",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/b565852235f4b58795118e627a62621101b692c4e2e2801f518600ad55c59755"
+ ],
+ "name": "GAGE",
+ "symbol": "GAGE",
+ "marketCap": "2031316.219519833826009659",
+ "price": "0.00203131621951983383",
+ "priceChange24hPercent": "-4.57",
+ "volume24h": "8279.7476465481561455",
+ "communityRecognized": false,
+ "key": "evm--4663:0x7163ae1b5aea2f09ebc609c52b4dcac0a7a4bc2d",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xa3602804e096cb73bd8344afc1ff3f3390b899c5",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xa3602804e096cb73bd8344afc1ff3f3390b899c5-1788697149485.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xa3602804e096cb73bd8344afc1ff3f3390b899c5-1788697149485.png"
+ ],
+ "name": "PEZ",
+ "symbol": "PEZ",
+ "marketCap": "2552015.440732567570403185",
+ "price": "0.00255202107719303053",
+ "priceChange24hPercent": "0.12",
+ "volume24h": "1804.192009861124836",
+ "communityRecognized": false,
+ "key": "evm--4663:0xa3602804e096cb73bd8344afc1ff3f3390b899c5",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x76ed1e2a8fc3873fcb5c514688ca2fe8a3600b7f",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/1dbcb030f10554487ca05c3aaa7fcc97cef5b687e39b63bafb0d000d20616792",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/1dbcb030f10554487ca05c3aaa7fcc97cef5b687e39b63bafb0d000d20616792"
+ ],
+ "name": "LAPTOP",
+ "symbol": "LAPTOP",
+ "marketCap": "1177540.648375063973042263",
+ "price": "0.00117754064837506397",
+ "priceChange24hPercent": "-4.8",
+ "volume24h": "12873.24085471758854712",
+ "communityRecognized": false,
+ "key": "evm--4663:0x76ed1e2a8fc3873fcb5c514688ca2fe8a3600b7f",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x198dba421a7db566a90da5de7901abe3443b4444",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x198dba421a7db566a90da5de7901abe3443b4444-1783844840152.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x198dba421a7db566a90da5de7901abe3443b4444-1783844840152.png"
+ ],
+ "name": "富贵",
+ "symbol": "富贵",
+ "marketCap": "2004608.783658215940488177",
+ "price": "0.00200460880490616635",
+ "priceChange24hPercent": "3.5",
+ "volume24h": "3631.46864755661394557",
+ "communityRecognized": false,
+ "key": "evm--56:0x198dba421a7db566a90da5de7901abe3443b4444",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x98096d17e191b3da1d5f99a6d7b3584351b11e18",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x98096d17e191b3da1d5f99a6d7b3584351b11e18-1787918411975.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x98096d17e191b3da1d5f99a6d7b3584351b11e18-1787918411975.png"
+ ],
+ "name": "Boner Coin",
+ "symbol": "BONER",
+ "marketCap": "58129181.519069637833904517",
+ "price": "0.05812919390713559434",
+ "priceChange24hPercent": "-0.23",
+ "volume24h": "23032.0652066256078314",
+ "communityRecognized": true,
+ "key": "evm--4663:0x98096d17e191b3da1d5f99a6d7b3584351b11e18",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xafe41f4356c24f716111de1fbbc84e061d291e18",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xafe41f4356c24f716111de1fbbc84e061d291e18-1788264039086.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xafe41f4356c24f716111de1fbbc84e061d291e18-1788264039086.png"
+ ],
+ "name": "Cache Cow",
+ "symbol": "CACHE",
+ "marketCap": "1056454.727534532364284546",
+ "price": "0.00105645472753453236",
+ "priceChange24hPercent": "-0.95",
+ "volume24h": "10074.122607129695531812",
+ "communityRecognized": false,
+ "key": "evm--4663:0xafe41f4356c24f716111de1fbbc84e061d291e18",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x12d5ee7917ca430073c3a638ee1e6f0648a98a01",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x12d5ee7917ca430073c3a638ee1e6f0648a98a01-1788350677314.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x12d5ee7917ca430073c3a638ee1e6f0648a98a01-1788350677314.png"
+ ],
+ "name": "FATCOIN",
+ "symbol": "FATCOIN",
+ "marketCap": "15073886.50104684331489565",
+ "price": "0.01507388650104684331",
+ "priceChange24hPercent": "5.3",
+ "volume24h": "17320.978238701429329",
+ "communityRecognized": false,
+ "key": "evm--4663:0x12d5ee7917ca430073c3a638ee1e6f0648a98a01",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xd5f1afea47b1a9eab414d2ee740cf1d6d039e725",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xd5f1afea47b1a9eab414d2ee740cf1d6d039e725-1788091431352.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xd5f1afea47b1a9eab414d2ee740cf1d6d039e725-1788091431352.png"
+ ],
+ "name": "microduck",
+ "symbol": "microduck",
+ "marketCap": "18335033.149710684136041623",
+ "price": "0.01833503314971068414",
+ "priceChange24hPercent": "-1.68",
+ "volume24h": "17926.61249360250144",
+ "communityRecognized": false,
+ "key": "evm--4663:0xd5f1afea47b1a9eab414d2ee740cf1d6d039e725",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x020bfc650a365f8bb26819deaabf3e21291018b4",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x020bfc650a365f8bb26819deaabf3e21291018b4-1784778353843.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x020bfc650a365f8bb26819deaabf3e21291018b4-1784778353843.png"
+ ],
+ "name": "Cash Cat",
+ "symbol": "CASHCAT",
+ "marketCap": "187487137.469583419739720026",
+ "price": "0.1897418850876631032",
+ "priceChange24hPercent": "0.38",
+ "volume24h": "41260.7735748453546932",
+ "communityRecognized": true,
+ "key": "evm--4663:0x020bfc650a365f8bb26819deaabf3e21291018b4",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "Ai66LHZG9MCzg1WKdawwqduVAXpNDUuV8M3uyq5ppump",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-Ai66LHZG9MCzg1WKdawwqduVAXpNDUuV8M3uyq5ppump-1785164716552.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-Ai66LHZG9MCzg1WKdawwqduVAXpNDUuV8M3uyq5ppump-1785164716552.png"
+ ],
+ "name": "Catecoin",
+ "symbol": "CATE",
+ "marketCap": "27707910.562215997854014575",
+ "price": "0.028737823444707848",
+ "priceChange24hPercent": "-1.36",
+ "volume24h": "36398.85612902936",
+ "communityRecognized": true,
+ "key": "sol--101:Ai66LHZG9MCzg1WKdawwqduVAXpNDUuV8M3uyq5ppump",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xbe98b75361935b18d688409424a869a4c3dc7401",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xbe98b75361935b18d688409424a869a4c3dc7401-1788436898916.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xbe98b75361935b18d688409424a869a4c3dc7401-1788436898916.png"
+ ],
+ "name": "Send Nudes",
+ "symbol": "NUDES",
+ "marketCap": "14739708.255253167203433541",
+ "price": "0.0147397082552531672",
+ "priceChange24hPercent": "0.27",
+ "volume24h": "6349.13846392964146",
+ "communityRecognized": false,
+ "key": "evm--4663:0xbe98b75361935b18d688409424a869a4c3dc7401",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xbc9cc4b93a08b2dfba87067a9c53e713db3314ce",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/a34bd343ce2418e2688d9be4430fef2415dee4b660c25a3bbbcaaf3481e299a4",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/a34bd343ce2418e2688d9be4430fef2415dee4b660c25a3bbbcaaf3481e299a4"
+ ],
+ "name": "Pink Sheets",
+ "symbol": "PINK",
+ "marketCap": "966041.535560089479163395",
+ "price": "0.00096604153556008948",
+ "priceChange24hPercent": "2.66",
+ "volume24h": "4382.9240515246012657",
+ "communityRecognized": false,
+ "key": "evm--4663:0xbc9cc4b93a08b2dfba87067a9c53e713db3314ce",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xaa07a0e9209e16ac99708c3ec70159c6ef3128a3",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xaa07a0e9209e16ac99708c3ec70159c6ef3128a3-1788352120153.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xaa07a0e9209e16ac99708c3ec70159c6ef3128a3-1788352120153.png"
+ ],
+ "name": "Orbio.so",
+ "symbol": "ORBIO",
+ "marketCap": "17641751.176414680990139658",
+ "price": "0.01857026439622597999",
+ "priceChange24hPercent": "-1.17",
+ "volume24h": "4970.80131025202532",
+ "communityRecognized": false,
+ "key": "evm--4663:0xaa07a0e9209e16ac99708c3ec70159c6ef3128a3",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x62cd5cd9d354a2a50affe9efa21c8918b9640a5b",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x62cd5cd9d354a2a50affe9efa21c8918b9640a5b-1788698087258.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x62cd5cd9d354a2a50affe9efa21c8918b9640a5b-1788698087258.png"
+ ],
+ "name": "LADY Exchange",
+ "symbol": "LDX",
+ "marketCap": "830756.516496992522362611",
+ "price": "0.00083075651649699252",
+ "priceChange24hPercent": "7.49",
+ "volume24h": "3599.878427026122797",
+ "communityRecognized": false,
+ "key": "evm--4663:0x62cd5cd9d354a2a50affe9efa21c8918b9640a5b",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x18e674231a58c239dc7daedcffe15ec3a24cff5c",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x18e674231a58c239dc7daedcffe15ec3a24cff5c-1786190410593.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x18e674231a58c239dc7daedcffe15ec3a24cff5c-1786190410593.png"
+ ],
+ "name": "Hookr.fun",
+ "symbol": "HOOKR",
+ "marketCap": "16448604.188970785446820133",
+ "price": "0.01650871145016584956",
+ "priceChange24hPercent": "-0.91",
+ "volume24h": "16951.43048840766424",
+ "communityRecognized": true,
+ "key": "evm--4663:0x18e674231a58c239dc7daedcffe15ec3a24cff5c",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xe2dae1c072b9f66bed999873b94798b2152af7e1",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xe2dae1c072b9f66bed999873b94798b2152af7e1-1788697020328.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xe2dae1c072b9f66bed999873b94798b2152af7e1-1788697020328.png"
+ ],
+ "name": "Arbitrage Ape",
+ "symbol": "AA",
+ "marketCap": "4381506.866767064680348034",
+ "price": "0.00446070576060740525",
+ "priceChange24hPercent": "-2.05",
+ "volume24h": "10613.220824",
+ "communityRecognized": false,
+ "key": "evm--4663:0xe2dae1c072b9f66bed999873b94798b2152af7e1",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xab35d04e1ee39c789c4a65d522417b3c7f2e4723",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/fac85c085d11f1aa6ae21cc9ad0bb550feec3cb25196bd13e83f1f5c0ef580c0",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/fac85c085d11f1aa6ae21cc9ad0bb550feec3cb25196bd13e83f1f5c0ef580c0"
+ ],
+ "name": "JT MARLIN",
+ "symbol": "MARLIN",
+ "marketCap": "1144437.558331443942601515",
+ "price": "0.00114443755833144394",
+ "priceChange24hPercent": "-6.59",
+ "volume24h": "4386.45253600981149",
+ "communityRecognized": false,
+ "key": "evm--4663:0xab35d04e1ee39c789c4a65d522417b3c7f2e4723",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x7df5daaf80e65dfcc7a1435d9b52bcf2b5753fbe",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x7df5daaf80e65dfcc7a1435d9b52bcf2b5753fbe-1788696318342.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x7df5daaf80e65dfcc7a1435d9b52bcf2b5753fbe-1788696318342.png"
+ ],
+ "name": "Unipcs",
+ "symbol": "UNIPCS",
+ "marketCap": "883442.765843656029919098",
+ "price": "0.00088468685713553576",
+ "priceChange24hPercent": "-2.54",
+ "volume24h": "8958.292482808510024",
+ "communityRecognized": false,
+ "key": "evm--4663:0x7df5daaf80e65dfcc7a1435d9b52bcf2b5753fbe",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x11b70d0243baf75e85ce03201a92b5b7c33beb59",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x11b70d0243baf75e85ce03201a92b5b7c33beb59-1788697768561.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x11b70d0243baf75e85ce03201a92b5b7c33beb59-1788697768561.png"
+ ],
+ "name": "Robin the Frog",
+ "symbol": "ROBIN",
+ "marketCap": "4958024.81089803310050462",
+ "price": "0.00499553516741291641",
+ "priceChange24hPercent": "-2.41",
+ "volume24h": "1613.21927874395995",
+ "communityRecognized": false,
+ "key": "evm--4663:0x11b70d0243baf75e85ce03201a92b5b7c33beb59",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "7Y7V1a4m2nWK7BMgbka5B4vR1pDvCK7yva3Hnrqkraze",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/fa21eef99efb8b7842c131cfa852344958bd4c32e76767446fd4983cb58d673c",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/fa21eef99efb8b7842c131cfa852344958bd4c32e76767446fd4983cb58d673c"
+ ],
+ "name": "Nasduck",
+ "symbol": "Nasduck",
+ "marketCap": "5028381.158644368884277576",
+ "price": "0.00522918037703993132",
+ "priceChange24hPercent": "1.26",
+ "volume24h": "15929.55535942113",
+ "communityRecognized": false,
+ "key": "sol--101:7Y7V1a4m2nWK7BMgbka5B4vR1pDvCK7yva3Hnrqkraze",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xe934e36a439c94017b64a3fece66af12099abf50",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xe934e36a439c94017b64a3fece66af12099abf50-1785290631562.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xe934e36a439c94017b64a3fece66af12099abf50-1785290631562.png"
+ ],
+ "name": "StonkBroker",
+ "symbol": "STONKBROKER",
+ "marketCap": "20853756.406829018928193164",
+ "price": "0.01704699495204528424",
+ "priceChange24hPercent": "0.97",
+ "volume24h": "4409.016669850420713",
+ "communityRecognized": true,
+ "key": "evm--4663:0xe934e36a439c94017b64a3fece66af12099abf50",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x2ab8a4dd2191989ac2898006df350b236d2b7777",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x2ab8a4dd2191989ac2898006df350b236d2b7777-1787990461314.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x2ab8a4dd2191989ac2898006df350b236d2b7777-1787990461314.png"
+ ],
+ "name": "施工猫",
+ "symbol": "Sue",
+ "marketCap": "3525503.639455193998936336",
+ "price": "0.00352550383167665148",
+ "priceChange24hPercent": "1.96",
+ "volume24h": "5230.356003971269205",
+ "communityRecognized": true,
+ "key": "evm--56:0x2ab8a4dd2191989ac2898006df350b236d2b7777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xca9c78dd337a67f6e0077f65f5e9218719d30edf",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xca9c78dd337a67f6e0077f65f5e9218719d30edf-1785280831816.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xca9c78dd337a67f6e0077f65f5e9218719d30edf-1785280831816.png"
+ ],
+ "name": "NetNet",
+ "symbol": "NET",
+ "marketCap": "3912071.700402159026486935",
+ "price": "667.15880452745362377868",
+ "priceChange24hPercent": "3.52",
+ "volume24h": "5454.8855083028300905",
+ "communityRecognized": false,
+ "key": "evm--4663:0xca9c78dd337a67f6e0077f65f5e9218719d30edf",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xe9bc5c6a86caa44fd7b469bf3cc7c563e4f77777",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xe9bc5c6a86caa44fd7b469bf3cc7c563e4f77777-1785831565492.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xe9bc5c6a86caa44fd7b469bf3cc7c563e4f77777-1785831565492.png"
+ ],
+ "name": "Giggle Mascot",
+ "symbol": "Max",
+ "marketCap": "12228517.085440540299056084",
+ "price": "0.01222851825191730032",
+ "priceChange24hPercent": "-2.95",
+ "volume24h": "9616.6443987499358462",
+ "communityRecognized": false,
+ "key": "evm--56:0xe9bc5c6a86caa44fd7b469bf3cc7c563e4f77777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x451b42a15100c340ca12f7c66de06fac5ea2d751",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x451b42a15100c340ca12f7c66de06fac5ea2d751-1787832041620.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x451b42a15100c340ca12f7c66de06fac5ea2d751-1787832041620.png"
+ ],
+ "name": "Longbow",
+ "symbol": "BOW",
+ "marketCap": "5617064.857619246228264481",
+ "price": "0.00561706485761924623",
+ "priceChange24hPercent": "-0.38",
+ "volume24h": "978.975717230206066",
+ "communityRecognized": false,
+ "key": "evm--4663:0x451b42a15100c340ca12f7c66de06fac5ea2d751",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xef67e3064bef1a27e81925ec7132f23e533bd5f6",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xef67e3064bef1a27e81925ec7132f23e533bd5f6-1788782588286.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xef67e3064bef1a27e81925ec7132f23e533bd5f6-1788782588286.png"
+ ],
+ "name": "Greatest Meme Ever",
+ "symbol": "GME",
+ "marketCap": "4341478.594365716540473077",
+ "price": "0.00434147859482062166",
+ "priceChange24hPercent": "-0.08",
+ "volume24h": "4637.3774681481993591",
+ "communityRecognized": false,
+ "key": "evm--4663:0xef67e3064bef1a27e81925ec7132f23e533bd5f6",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x9e92bbf2017bbfb7a06c975ca30e268cd2e57777",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/26946e97f0605097c389e90209fbbad48af1927f15b93093e2b999a0ccb97c16",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/26946e97f0605097c389e90209fbbad48af1927f15b93093e2b999a0ccb97c16"
+ ],
+ "name": "Google Dog",
+ "symbol": "股狗",
+ "marketCap": "332064.446510156775471152",
+ "price": "0.00033206444651015678",
+ "priceChange24hPercent": "0.76",
+ "volume24h": "985.285872877375343",
+ "communityRecognized": false,
+ "key": "evm--56:0x9e92bbf2017bbfb7a06c975ca30e268cd2e57777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x7dbf38976f6d3b9c529e7d9484a71898b409ee6a",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x7dbf38976f6d3b9c529e7d9484a71898b409ee6a-1788610442171.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x7dbf38976f6d3b9c529e7d9484a71898b409ee6a-1788610442171.png"
+ ],
+ "name": "ZZZ",
+ "symbol": "ZZZ",
+ "marketCap": "15387442.310273929590486193",
+ "price": "0.01831838370270705904",
+ "priceChange24hPercent": "0.65",
+ "volume24h": "700.947176066271126",
+ "communityRecognized": false,
+ "key": "evm--4663:0x7dbf38976f6d3b9c529e7d9484a71898b409ee6a",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x2ae1ebeeda58b68a02dc313f7d90aa6ee546df86",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/2d70c37a83c6c75e1500068ec44d7246c00f6c3cc88134c29c693c7ac392bbc0",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/2d70c37a83c6c75e1500068ec44d7246c00f6c3cc88134c29c693c7ac392bbc0"
+ ],
+ "name": "Milk",
+ "symbol": "DC",
+ "marketCap": "45145.159758174458754856",
+ "price": "16.29547279369660484211",
+ "priceChange24hPercent": "-0.08",
+ "volume24h": "3124.733736",
+ "communityRecognized": false,
+ "key": "evm--4663:0x2ae1ebeeda58b68a02dc313f7d90aa6ee546df86",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x78b96280c3347e0f58a7147b73eb0ec5ffff025d",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x78b96280c3347e0f58a7147b73eb0ec5ffff025d-1788697020328.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x78b96280c3347e0f58a7147b73eb0ec5ffff025d-1788697020328.png"
+ ],
+ "name": "Robinhood Hat Strategy",
+ "symbol": "RSTR",
+ "marketCap": "2672483.071352492209339559",
+ "price": "0.00275753651884972012",
+ "priceChange24hPercent": "-1.6",
+ "volume24h": "3160.9154365303316967",
+ "communityRecognized": false,
+ "key": "evm--4663:0x78b96280c3347e0f58a7147b73eb0ec5ffff025d",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x5173d45a1191ee33cbb7d8c7e65f21b04ed54802",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x5173d45a1191ee33cbb7d8c7e65f21b04ed54802-1788264029244.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x5173d45a1191ee33cbb7d8c7e65f21b04ed54802-1788264029244.png"
+ ],
+ "name": "Ramses",
+ "symbol": "RAM",
+ "marketCap": "3478986.19636493549686479",
+ "price": "0.06901691098656750338",
+ "priceChange24hPercent": "2.33",
+ "volume24h": "8650.3514693030137702",
+ "communityRecognized": false,
+ "key": "evm--4663:0x5173d45a1191ee33cbb7d8c7e65f21b04ed54802",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "9GGGhze1NnQwcABTzxdxx89BEFLFtDueHhkwh6japump",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/a6063f660a1b276bba3b9832297a3b2830c66cc58a607c8cc44705fa1b422161",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/a6063f660a1b276bba3b9832297a3b2830c66cc58a607c8cc44705fa1b422161"
+ ],
+ "name": "CatGPT",
+ "symbol": "CatGPT",
+ "marketCap": "615292.967190055654778367",
+ "price": "0.00063125477464665537",
+ "priceChange24hPercent": "2.62",
+ "volume24h": "3437.07452244083",
+ "communityRecognized": false,
+ "key": "sol--101:9GGGhze1NnQwcABTzxdxx89BEFLFtDueHhkwh6japump",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "8K5X85PAJHAAVSvYaAzgVPPAPsqqHmvx16ZyBiscYF8L",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-8K5X85PAJHAAVSvYaAzgVPPAPsqqHmvx16ZyBiscYF8L-1788368707252.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-8K5X85PAJHAAVSvYaAzgVPPAPsqqHmvx16ZyBiscYF8L-1788368707252.png"
+ ],
+ "name": "Vida Global CTO",
+ "symbol": "CTO",
+ "marketCap": "10388682.975129922967356653",
+ "price": "0.01133818095938549687",
+ "priceChange24hPercent": "0.49",
+ "volume24h": "22133.90274836328",
+ "communityRecognized": false,
+ "key": "sol--101:8K5X85PAJHAAVSvYaAzgVPPAPsqqHmvx16ZyBiscYF8L",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xbeea1d618e533a387d941f58a7d4c9b7bd377777",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xbeea1d618e533a387d941f58a7d4c9b7bd377777-1786867206539.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xbeea1d618e533a387d941f58a7d4c9b7bd377777-1786867206539.png"
+ ],
+ "name": "牛来",
+ "symbol": "牛来",
+ "marketCap": "81315633.730996053986212561",
+ "price": "0.08131564191954314277",
+ "priceChange24hPercent": "-0.45",
+ "volume24h": "15092.294068073313728",
+ "communityRecognized": false,
+ "key": "evm--56:0xbeea1d618e533a387d941f58a7d4c9b7bd377777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xe1e5f00a9b0255ca4df85b3130ee0f77d15acc2d",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xe1e5f00a9b0255ca4df85b3130ee0f77d15acc2d-1788696640254.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xe1e5f00a9b0255ca4df85b3130ee0f77d15acc2d-1788696640254.png"
+ ],
+ "name": "Pushin' 🅿️",
+ "symbol": "🅿️",
+ "marketCap": "1616406.421595063679561647",
+ "price": "0.00161640642159506368",
+ "priceChange24hPercent": "-1.36",
+ "volume24h": "1545.938376",
+ "communityRecognized": false,
+ "key": "evm--4663:0xe1e5f00a9b0255ca4df85b3130ee0f77d15acc2d",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x16391c40e85fb2246a2c8c17bfa2594c5d3ef84b",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x16391c40e85fb2246a2c8c17bfa2594c5d3ef84b-1788523244923.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x16391c40e85fb2246a2c8c17bfa2594c5d3ef84b-1788523244923.png"
+ ],
+ "name": "Touch Grass",
+ "symbol": "GRASS",
+ "marketCap": "3518252.016007033689843827",
+ "price": "0.00353755075272048435",
+ "priceChange24hPercent": "0.63",
+ "volume24h": "1087.3965090920958924",
+ "communityRecognized": false,
+ "key": "evm--4663:0x16391c40e85fb2246a2c8c17bfa2594c5d3ef84b",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xe8ffd7e24187f72afb08d75b1bb13088a989a791",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xe8ffd7e24187f72afb08d75b1bb13088a989a791-1786708993342.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xe8ffd7e24187f72afb08d75b1bb13088a989a791-1786708993342.png"
+ ],
+ "name": "Delta",
+ "symbol": "DELTA",
+ "marketCap": "13215421.627403756620751773",
+ "price": "0.0132154219860979857",
+ "priceChange24hPercent": "0.13",
+ "volume24h": "2507.1673312880608932",
+ "communityRecognized": false,
+ "key": "evm--4663:0xe8ffd7e24187f72afb08d75b1bb13088a989a791",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x507b6f349a80114097a67b8b4677367acc15b220",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x507b6f349a80114097a67b8b4677367acc15b220-1788610022118.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x507b6f349a80114097a67b8b4677367acc15b220-1788610022118.png"
+ ],
+ "name": "par",
+ "symbol": "par",
+ "marketCap": "1666928.798512164185625413",
+ "price": "0.00176440509201688206",
+ "priceChange24hPercent": "-8.38",
+ "volume24h": "7334.281552729944463",
+ "communityRecognized": false,
+ "key": "evm--4663:0x507b6f349a80114097a67b8b4677367acc15b220",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x215407c134f68b9da4de10c22c948196053a0d5d",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/70a6389f1690a862f8e3a0d61f5a71c1ed8f0eb1c39ccf6f78f60fff4d400471",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/70a6389f1690a862f8e3a0d61f5a71c1ed8f0eb1c39ccf6f78f60fff4d400471"
+ ],
+ "name": "The Wolf of Wall Street",
+ "symbol": "WOLF",
+ "marketCap": "3790390.962235132347890869",
+ "price": "0.01054922634164950775",
+ "priceChange24hPercent": "-0.25",
+ "volume24h": "3868.357826860442389",
+ "communityRecognized": false,
+ "key": "evm--4663:0x215407c134f68b9da4de10c22c948196053a0d5d",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "MukLDtJ8Cx9DxLbeyLRSWPSposTMWuwHANbuaudpump",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-MukLDtJ8Cx9DxLbeyLRSWPSposTMWuwHANbuaudpump-1788282416465.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-MukLDtJ8Cx9DxLbeyLRSWPSposTMWuwHANbuaudpump-1788282416465.png"
+ ],
+ "name": "OTC",
+ "symbol": "OTC",
+ "marketCap": "18541979.32104694641423138",
+ "price": "0.02608925543495321216",
+ "priceChange24hPercent": "-0.71",
+ "volume24h": "5546.28864604806",
+ "communityRecognized": false,
+ "key": "sol--101:MukLDtJ8Cx9DxLbeyLRSWPSposTMWuwHANbuaudpump",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "ANM35KbUcfKdEVBXzSjZBoT6ceSwYRs3fuc79fp7kRqP",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/db4d10c19523308df10f606b8b29d51a6e19419261d663ae88497cd02efd20f6",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/db4d10c19523308df10f606b8b29d51a6e19419261d663ae88497cd02efd20f6"
+ ],
+ "name": "Pump Cat",
+ "symbol": "Pumpcat",
+ "marketCap": "1912520.152790378256860803",
+ "price": "0.00193701614235491119",
+ "priceChange24hPercent": "0.45",
+ "volume24h": "6378.81567544115",
+ "communityRecognized": false,
+ "key": "sol--101:ANM35KbUcfKdEVBXzSjZBoT6ceSwYRs3fuc79fp7kRqP",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x812486eaea648819853f8e372dc9f1516c7868bd",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x812486eaea648819853f8e372dc9f1516c7868bd-1788354167261.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x812486eaea648819853f8e372dc9f1516c7868bd-1788354167261.png"
+ ],
+ "name": "ubik",
+ "symbol": "UBIK",
+ "marketCap": "17722979.495896872827918012",
+ "price": "0.01772297949589687283",
+ "priceChange24hPercent": "0.23",
+ "volume24h": "3085.944610412854942",
+ "communityRecognized": false,
+ "key": "evm--4663:0x812486eaea648819853f8e372dc9f1516c7868bd",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xcd8df4c1052a3447bda6a7423fbc234102f3b477",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/2c2886d399c18bd4b0702fc8ad6b51ba9787a4d5b3d91c759a3febf9c71697b5",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/2c2886d399c18bd4b0702fc8ad6b51ba9787a4d5b3d91c759a3febf9c71697b5"
+ ],
+ "name": "Silverback",
+ "symbol": "SILVERBACK",
+ "marketCap": "437612.725643649196156586",
+ "price": "0.0004376127256436492",
+ "priceChange24hPercent": "6.6",
+ "volume24h": "1857.29967440792863857",
+ "communityRecognized": false,
+ "key": "evm--4663:0xcd8df4c1052a3447bda6a7423fbc234102f3b477",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xd4dc6b48ad73ec51e71d9b8f65568f88609b92c1",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xd4dc6b48ad73ec51e71d9b8f65568f88609b92c1-1787659267512.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xd4dc6b48ad73ec51e71d9b8f65568f88609b92c1-1787659267512.png"
+ ],
+ "name": "Sherwood",
+ "symbol": "SHERWOOD",
+ "marketCap": "533070.208604035212901932",
+ "price": "0.00053307020860403521",
+ "priceChange24hPercent": "7.44",
+ "volume24h": "2907.6516904744685",
+ "communityRecognized": false,
+ "key": "evm--4663:0xd4dc6b48ad73ec51e71d9b8f65568f88609b92c1",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xf40592daacb3e5abf358789f5688c0b4f64d7777",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xf40592daacb3e5abf358789f5688c0b4f64d7777-1788336091391.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xf40592daacb3e5abf358789f5688c0b4f64d7777-1788336091391.png"
+ ],
+ "name": "FLORK",
+ "symbol": "FLORK",
+ "marketCap": "13974844.309976889329689928",
+ "price": "0.01397484431010265303",
+ "priceChange24hPercent": "0",
+ "volume24h": "8806.2342638809621713",
+ "communityRecognized": true,
+ "key": "evm--56:0xf40592daacb3e5abf358789f5688c0b4f64d7777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x56910d4409f3a0c78c64dd8d0545ff0705389870",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x56910d4409f3a0c78c64dd8d0545ff0705389870-1784842044117.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x56910d4409f3a0c78c64dd8d0545ff0705389870-1784842044117.png"
+ ],
+ "name": "The Index",
+ "symbol": "Index",
+ "marketCap": "38870165.241097645668505948",
+ "price": "0.03964181583133222276",
+ "priceChange24hPercent": "1.35",
+ "volume24h": "4068.11893842014042",
+ "communityRecognized": true,
+ "key": "evm--4663:0x56910d4409f3a0c78c64dd8d0545ff0705389870",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "Aw6fiDPWLUnjSsJQtsyEMSaoPaKAUUrStAsYPiPwpump",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/77390ed5d0a7e7ae6ab8a0e2685653ff99f696192f784341e9d9bd613dc27472",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/77390ed5d0a7e7ae6ab8a0e2685653ff99f696192f784341e9d9bd613dc27472"
+ ],
+ "name": "Anonymouse",
+ "symbol": "Anonymouse",
+ "marketCap": "494459.484433402865998865",
+ "price": "0.00051892638840646288",
+ "priceChange24hPercent": "-11.17",
+ "volume24h": "16227.28828194846",
+ "communityRecognized": false,
+ "key": "sol--101:Aw6fiDPWLUnjSsJQtsyEMSaoPaKAUUrStAsYPiPwpump",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xc2362aff2a2a4cc1f48cf3dab2c4e2605eb94ba3",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xc2362aff2a2a4cc1f48cf3dab2c4e2605eb94ba3-1785758420060.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xc2362aff2a2a4cc1f48cf3dab2c4e2605eb94ba3-1785758420060.png"
+ ],
+ "name": "GameStop",
+ "symbol": "GME",
+ "marketCap": "2951397.060713870872015092",
+ "price": "0.00002951397141737687",
+ "priceChange24hPercent": "2.25",
+ "volume24h": "1668.374657860687153545",
+ "communityRecognized": false,
+ "key": "evm--4663:0xc2362aff2a2a4cc1f48cf3dab2c4e2605eb94ba3",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x1ec871553be07dc68ec1661c32eca7e2e46e1e18",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/ee7408e5fd186d0c6d70812ea983d43036994104aca07d6d3074523eaa5b18a2",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/ee7408e5fd186d0c6d70812ea983d43036994104aca07d6d3074523eaa5b18a2"
+ ],
+ "name": "STONKS",
+ "symbol": "STONKS",
+ "marketCap": "229307.473859529567886593",
+ "price": "0.00022930747385952957",
+ "priceChange24hPercent": "-1.95",
+ "volume24h": "760.32367341205740105",
+ "communityRecognized": false,
+ "key": "evm--4663:0x1ec871553be07dc68ec1661c32eca7e2e46e1e18",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x87ae267002cd1ea0ec86bf3601d4a8ad76a47777",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x87ae267002cd1ea0ec86bf3601d4a8ad76a47777-1787558536892.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x87ae267002cd1ea0ec86bf3601d4a8ad76a47777-1787558536892.png"
+ ],
+ "name": "蝴蝶人生",
+ "symbol": "蝴蝶人生",
+ "marketCap": "2900864.953755263095854545",
+ "price": "0.0029008649537552631",
+ "priceChange24hPercent": "9.82",
+ "volume24h": "11340.26247683439334569",
+ "communityRecognized": false,
+ "key": "evm--56:0x87ae267002cd1ea0ec86bf3601d4a8ad76a47777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xfe7e19cbce2f896c6c528bc355baf5a768291e18",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xfe7e19cbce2f896c6c528bc355baf5a768291e18-1786017952373.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xfe7e19cbce2f896c6c528bc355baf5a768291e18-1786017952373.png"
+ ],
+ "name": "SPACEHOOD",
+ "symbol": "SPACEHOOD",
+ "marketCap": "8340762.948113254927286612",
+ "price": "0.00834076294811325493",
+ "priceChange24hPercent": "-1.85",
+ "volume24h": "1384.473255770309585",
+ "communityRecognized": false,
+ "key": "evm--4663:0xfe7e19cbce2f896c6c528bc355baf5a768291e18",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x384c3f978950a98523529a205163bf63a69e8dd5",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/7a4fae357f9d4613d7f8b5f8bd76e29c37fb44afd8ff4f0da78fe40be38d3dd3",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/7a4fae357f9d4613d7f8b5f8bd76e29c37fb44afd8ff4f0da78fe40be38d3dd3"
+ ],
+ "name": "Kerf",
+ "symbol": "KERF",
+ "marketCap": "658779.614430525705793727",
+ "price": "0.00065877961443052571",
+ "priceChange24hPercent": "-12.02",
+ "volume24h": "6006.630027545113406",
+ "communityRecognized": false,
+ "key": "evm--4663:0x384c3f978950a98523529a205163bf63a69e8dd5",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x5b73a93b4e5e4f1fd27d8b3f8c97d69908b5e284",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x5b73a93b4e5e4f1fd27d8b3f8c97d69908b5e284-1757704453242.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x5b73a93b4e5e4f1fd27d8b3f8c97d69908b5e284-1757704453242.png"
+ ],
+ "name": "FORM Token",
+ "symbol": "FORM",
+ "marketCap": "81337721.233552374393924307",
+ "price": "0.27423761434533356272",
+ "priceChange24hPercent": "0.44",
+ "volume24h": "2340.92218370887661308",
+ "communityRecognized": true,
+ "key": "evm--56:0x5b73a93b4e5e4f1fd27d8b3f8c97d69908b5e284",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xa01bc586cd5f4f253bfab4e44400c52dbc18bc50",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/c365b2142e4c766209febdcd7d1678e3519a6be41b491b73bf8cddfc0cd3ab98",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/c365b2142e4c766209febdcd7d1678e3519a6be41b491b73bf8cddfc0cd3ab98"
+ ],
+ "name": "Voxelithic Protocol",
+ "symbol": "VOXEL",
+ "marketCap": "2202165.275282226596140064",
+ "price": "0.0022021652752822266",
+ "priceChange24hPercent": "3.54",
+ "volume24h": "2092.320270137796015",
+ "communityRecognized": false,
+ "key": "evm--4663:0xa01bc586cd5f4f253bfab4e44400c52dbc18bc50",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x7a848a5a8169aa6a2f603d056a749f924f504444",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x7a848a5a8169aa6a2f603d056a749f924f504444-1783238620991.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x7a848a5a8169aa6a2f603d056a749f924f504444-1783238620991.png"
+ ],
+ "name": "The Final Form Bull",
+ "symbol": "CZ",
+ "marketCap": "1108669.360880238166665035",
+ "price": "0.00369589294180277339",
+ "priceChange24hPercent": "1.43",
+ "volume24h": "2434.3793935407966862",
+ "communityRecognized": false,
+ "key": "evm--56:0x7a848a5a8169aa6a2f603d056a749f924f504444",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "9cRCn9rGT8V2imeM2BaKs13yhMEais3ruM3rPvTGpump",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-9cRCn9rGT8V2imeM2BaKs13yhMEais3ruM3rPvTGpump-1782140764006.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-9cRCn9rGT8V2imeM2BaKs13yhMEais3ruM3rPvTGpump-1782140764006.png"
+ ],
+ "name": "The Black Bull",
+ "symbol": "ANSEM",
+ "marketCap": "77436765.280775916723122829",
+ "price": "0.18668810545529582203",
+ "priceChange24hPercent": "0.16",
+ "volume24h": "49169.93719739767117357",
+ "communityRecognized": true,
+ "key": "sol--101:9cRCn9rGT8V2imeM2BaKs13yhMEais3ruM3rPvTGpump",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x265b3982ea730748100947f52561a4eab54affff",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x265b3982ea730748100947f52561a4eab54affff-1788163283951.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x265b3982ea730748100947f52561a4eab54affff-1788163283951.png"
+ ],
+ "name": "ast.fun",
+ "symbol": "AST",
+ "marketCap": "869555.825261133164744628",
+ "price": "0.00088138862476773644",
+ "priceChange24hPercent": "-13.55",
+ "volume24h": "13252.93949349229412807",
+ "communityRecognized": false,
+ "key": "evm--56:0x265b3982ea730748100947f52561a4eab54affff",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x4f4a59ac165c6f05ed771df3530741494b1c7777",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/aaedfbda5a6301f10b584f1887dbe9604f4015526974adfc9bd19e9bff06bf7c",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/aaedfbda5a6301f10b584f1887dbe9604f4015526974adfc9bd19e9bff06bf7c"
+ ],
+ "name": "Offchain Dog",
+ "symbol": "zDOG",
+ "marketCap": "772076.5981881585062435",
+ "price": "0.00077207659818815851",
+ "priceChange24hPercent": "24.73",
+ "volume24h": "8103.134893289515162727",
+ "communityRecognized": false,
+ "key": "evm--56:0x4f4a59ac165c6f05ed771df3530741494b1c7777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0xff637d2d435d6745df3faf61272b1216e7e8b727",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/9fc774ca51417bc1bbf6bd03e602e39c5b991c3dee079065d7ce9c06c7da7d64",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/9fc774ca51417bc1bbf6bd03e602e39c5b991c3dee079065d7ce9c06c7da7d64"
+ ],
+ "name": "Wrapped SHEIN xStock",
+ "symbol": "wSHEINx",
+ "marketCap": "9941.072056639699888951",
+ "price": "5.2204262143685951143",
+ "priceChange24hPercent": "-0.09",
+ "volume24h": "531.744141815175594",
+ "communityRecognized": false,
+ "key": "evm--196:0xff637d2d435d6745df3faf61272b1216e7e8b727",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "DoGEV7LASBkQbibMc5k5vKnTZoMg423GpJ5QtJEGfm7R",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/3d506b48124c4da95fa38586899e377b82f98a1d6da24eba1ac8e1c2f82bbb99",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/3d506b48124c4da95fa38586899e377b82f98a1d6da24eba1ac8e1c2f82bbb99"
+ ],
+ "name": "Dogecoin",
+ "symbol": "DOGE",
+ "marketCap": "400729.567141742701306908",
+ "price": "0.0912057371423858975",
+ "priceChange24hPercent": "0.08",
+ "volume24h": "27043.53561129851",
+ "communityRecognized": true,
+ "key": "sol--101:DoGEV7LASBkQbibMc5k5vKnTZoMg423GpJ5QtJEGfm7R",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0x90a2a4c76b5d8c0bc892a69ea28aa775a8f2dd48",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/ab5f79fac87972384ec00b70cbf1425ff50db03221af2080d087d63a2a6ecaa4",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/ab5f79fac87972384ec00b70cbf1425ff50db03221af2080d087d63a2a6ecaa4"
+ ],
+ "name": "SP500 xStock",
+ "symbol": "SPYx",
+ "marketCap": "819712532527.486",
+ "price": "769.77246619048970293446",
+ "priceChange24hPercent": "-0.05",
+ "volume24h": "822.74752183399451",
+ "communityRecognized": false,
+ "key": "evm--196:0x90a2a4c76b5d8c0bc892a69ea28aa775a8f2dd48",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x385f4f8ae47651ce5f58f5265395a669f8281e18",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x385f4f8ae47651ce5f58f5265395a669f8281e18-1788523250367.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x385f4f8ae47651ce5f58f5265395a669f8281e18-1788523250367.png"
+ ],
+ "name": "A Meme Coin",
+ "symbol": "MEME",
+ "marketCap": "122218256.939187902400649569",
+ "price": "0.12221825699349346093",
+ "priceChange24hPercent": "0.11",
+ "volume24h": "139480.96698361335480763",
+ "communityRecognized": true,
+ "key": "evm--4663:0x385f4f8ae47651ce5f58f5265395a669f8281e18",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "HhXR4SiHzDNYCFXJBpCYg86T4NhzsD4vz4Y5Jtz6ozKx",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/f726c684810fa3c317fc93c5be53f978bd8c53c43e640ba1356f234c0f0904b0",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/f726c684810fa3c317fc93c5be53f978bd8c53c43e640ba1356f234c0f0904b0"
+ ],
+ "name": "OpenAI PreStocks",
+ "symbol": "OPENAI",
+ "marketCap": "2915199.012707709276550075",
+ "price": "0.0000291519905065628",
+ "priceChange24hPercent": "2.24",
+ "volume24h": "1520791.05406571887",
+ "communityRecognized": false,
+ "key": "sol--101:HhXR4SiHzDNYCFXJBpCYg86T4NhzsD4vz4Y5Jtz6ozKx",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "CaWZeUM4FvX9dPkjGc2xHS6tSN3qJfTWyvaG77aM5o7h",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-CaWZeUM4FvX9dPkjGc2xHS6tSN3qJfTWyvaG77aM5o7h-1788714223572.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-CaWZeUM4FvX9dPkjGc2xHS6tSN3qJfTWyvaG77aM5o7h-1788714223572.png"
+ ],
+ "name": "artificial gooner intelligence",
+ "symbol": "AGI",
+ "marketCap": "7732106.397339240642815567",
+ "price": "0.00782011642651768863",
+ "priceChange24hPercent": "4.02",
+ "volume24h": "4323.76956628248",
+ "communityRecognized": true,
+ "key": "sol--101:CaWZeUM4FvX9dPkjGc2xHS6tSN3qJfTWyvaG77aM5o7h",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0xae2f842ef90c0d5213259ab82639d5bbf649b08e",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/bd9738f19f874389dfe2c4479c32384f2f14538182cf1a1be0e349146c7b02fa",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/bd9738f19f874389dfe2c4479c32384f2f14538182cf1a1be0e349146c7b02fa"
+ ],
+ "name": "MicroStrategy xStock",
+ "symbol": "MSTRx",
+ "marketCap": "47161642520",
+ "price": "141.1151375",
+ "priceChange24hPercent": "-0.27",
+ "volume24h": "936.41400451416236",
+ "communityRecognized": false,
+ "key": "evm--196:0xae2f842ef90c0d5213259ab82639d5bbf649b08e",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x3f53de71c126bdabae20f9cd64848d317f6c3238",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x3f53de71c126bdabae20f9cd64848d317f6c3238-1784361925966.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x3f53de71c126bdabae20f9cd64848d317f6c3238-1784361925966.png"
+ ],
+ "name": "Alphabet",
+ "symbol": "GOOGLB",
+ "marketCap": "26814290.0074111255944",
+ "price": "338.46",
+ "priceChange24hPercent": "-0.41",
+ "volume24h": "4847.220310136123451699",
+ "communityRecognized": false,
+ "key": "evm--56:0x3f53de71c126bdabae20f9cd64848d317f6c3238",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "CTPoyCwkjMvoJwU4xvZZqoD8tiYk6yDchySiN5gGpump",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-CTPoyCwkjMvoJwU4xvZZqoD8tiYk6yDchySiN5gGpump-1788283052361.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-CTPoyCwkjMvoJwU4xvZZqoD8tiYk6yDchySiN5gGpump-1788283052361.png"
+ ],
+ "name": "apeonfone",
+ "symbol": "fone",
+ "marketCap": "7457360.661341247879773585",
+ "price": "0.00753172378598661176",
+ "priceChange24hPercent": "-1.14",
+ "volume24h": "5948.99501003202",
+ "communityRecognized": true,
+ "key": "sol--101:CTPoyCwkjMvoJwU4xvZZqoD8tiYk6yDchySiN5gGpump",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0x4d0ba049c430a7a80a61e7ebdf50b6daac6c3bd6",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/8ca3e425fcf50782e666099b0bb7d4e4d34cd0c4ff4e11de15e937436ffdd5c6",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/8ca3e425fcf50782e666099b0bb7d4e4d34cd0c4ff4e11de15e937436ffdd5c6"
+ ],
+ "name": "SHEIN xStock",
+ "symbol": "SHEINx",
+ "marketCap": "14505345255.232093",
+ "price": "5.2204262143685951143",
+ "priceChange24hPercent": "-",
+ "volume24h": "1048.006608125403165",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 xStock 代币化发行",
+ "source": "xstock",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/xstock.png",
+ "isOpen": true
+ },
+ "key": "evm--196:0x4d0ba049c430a7a80a61e7ebdf50b6daac6c3bd6",
+ "kind": "stock",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "XsoCS1TfEyfFhfvj8EtZ528L3CaKBDBRqRapnBbDF2W",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-XsoCS1TfEyfFhfvj8EtZ528L3CaKBDBRqRapnBbDF2W-1758104197788.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-XsoCS1TfEyfFhfvj8EtZ528L3CaKBDBRqRapnBbDF2W-1758104197788.png"
+ ],
+ "name": "SP500 xStock",
+ "symbol": "SPYx",
+ "marketCap": "55321843.922270848931383386",
+ "price": "770.26129915780246420393",
+ "priceChange24hPercent": "-",
+ "volume24h": "67168.63353918681150761",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 xStock 代币化发行",
+ "subtitle": "标普500 ETF",
+ "source": "xstock",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/xstock.png",
+ "isOpen": true
+ },
+ "key": "sol--101:XsoCS1TfEyfFhfvj8EtZ528L3CaKBDBRqRapnBbDF2W",
+ "kind": "stock",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xc9a981fee1f9dec688bb123ccdecc63d0debfc4e",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xc9a981fee1f9dec688bb123ccdecc63d0debfc4e-1786795236632.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xc9a981fee1f9dec688bb123ccdecc63d0debfc4e-1786795236632.png"
+ ],
+ "name": "SPDR Gold Trust • Robinhood Token",
+ "symbol": "GLD",
+ "marketCap": "6354008.701438651155577243",
+ "price": "408.71743444665377406854",
+ "priceChange24hPercent": "0.08",
+ "volume24h": "24366.48927090877046626",
+ "communityRecognized": false,
+ "key": "evm--4663:0xc9a981fee1f9dec688bb123ccdecc63d0debfc4e",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x8e859dbdfbfd2df6a99870e2871eaa58e8784e05",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x8e859dbdfbfd2df6a99870e2871eaa58e8784e05-1788610147869.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x8e859dbdfbfd2df6a99870e2871eaa58e8784e05-1788610147869.png"
+ ],
+ "name": "Nest",
+ "symbol": "NEST",
+ "marketCap": "190040.435952781078801715",
+ "price": "0.00019155893691496779",
+ "priceChange24hPercent": "6.06",
+ "volume24h": "2315.928915984643433",
+ "communityRecognized": false,
+ "key": "evm--4663:0x8e859dbdfbfd2df6a99870e2871eaa58e8784e05",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "6GmAFSYs4gk3FDao5FzzySQpPZaWsa4rUJHacpMpUNgx",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-6GmAFSYs4gk3FDao5FzzySQpPZaWsa4rUJHacpMpUNgx-1784905991044.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-6GmAFSYs4gk3FDao5FzzySQpPZaWsa4rUJHacpMpUNgx-1784905991044.png"
+ ],
+ "name": "STONK",
+ "symbol": "STONK",
+ "marketCap": "159021577.901266929472124317",
+ "price": "0.18275315061425165427",
+ "priceChange24hPercent": "-1.97",
+ "volume24h": "686104.152854381505403545",
+ "communityRecognized": true,
+ "key": "sol--101:6GmAFSYs4gk3FDao5FzzySQpPZaWsa4rUJHacpMpUNgx",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x48e39e56acdba37b09020c0b734a613c9a2f100a",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x48e39e56acdba37b09020c0b734a613c9a2f100a-1787054422497.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x48e39e56acdba37b09020c0b734a613c9a2f100a-1787054422497.png"
+ ],
+ "name": "Blackberry • Robinhood Token",
+ "symbol": "BB",
+ "marketCap": "642801.143627416799148932",
+ "price": "7.76991187735766064532",
+ "priceChange24hPercent": "0.06",
+ "volume24h": "6627.91380315471636",
+ "communityRecognized": false,
+ "key": "evm--4663:0x48e39e56acdba37b09020c0b734a613c9a2f100a",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "Fxq9URcanj5exGoatPxckVr9KFL3mcpJDMKRfSbyrH8q",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/ac252d3221f62580087c09038a994ea9cf9bfbf0611d8531c325b0fcc86503b3",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/ac252d3221f62580087c09038a994ea9cf9bfbf0611d8531c325b0fcc86503b3"
+ ],
+ "name": "Robinhood",
+ "symbol": "HOOD",
+ "marketCap": "4405209.156361431476382656",
+ "price": "0.00004405209182218129",
+ "priceChange24hPercent": "4.64",
+ "volume24h": "1570293.76591604622",
+ "communityRecognized": false,
+ "key": "sol--101:Fxq9URcanj5exGoatPxckVr9KFL3mcpJDMKRfSbyrH8q",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x05a3d1cd21d0c88145e82600e62e7e496e0f222b",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x05a3d1cd21d0c88145e82600e62e7e496e0f222b-1787313713111.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x05a3d1cd21d0c88145e82600e62e7e496e0f222b-1787313713111.png"
+ ],
+ "name": "AMC Entertainment • Robinhood Token",
+ "symbol": "AMC",
+ "marketCap": "7487887.980742776489741124",
+ "price": "2.63483856620033023001",
+ "priceChange24hPercent": "0.33",
+ "volume24h": "25641.815493457323175996",
+ "communityRecognized": false,
+ "key": "evm--4663:0x05a3d1cd21d0c88145e82600e62e7e496e0f222b",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x4ef9d3062c7f6eba4aae4990c5036598c6eff4ec",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x4ef9d3062c7f6eba4aae4990c5036598c6eff4ec-1784361786390.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x4ef9d3062c7f6eba4aae4990c5036598c6eff4ec-1784361786390.png"
+ ],
+ "name": "Alibaba",
+ "symbol": "BABAB",
+ "marketCap": "3748171.4208860636",
+ "price": "111.64",
+ "priceChange24hPercent": "0.1",
+ "volume24h": "2335.86928475140255776",
+ "communityRecognized": false,
+ "key": "evm--56:0x4ef9d3062c7f6eba4aae4990c5036598c6eff4ec",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xe5fd43bc02a6b98aa7d80d929168b318f7547777",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/6a55b6d0cec2baf1bf84345c3b4d50da8ae6f8392a500e8c1e5422659ff4e646",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/6a55b6d0cec2baf1bf84345c3b4d50da8ae6f8392a500e8c1e5422659ff4e646"
+ ],
+ "name": "Keel",
+ "symbol": "KEEL",
+ "marketCap": "107605.859588292329805647",
+ "price": "0.00010760585958829233",
+ "priceChange24hPercent": "-1.25",
+ "volume24h": "620.2377778729977409",
+ "communityRecognized": false,
+ "key": "evm--56:0xe5fd43bc02a6b98aa7d80d929168b318f7547777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xc60ba256b44334a0cd2c7242e98b88f031abb006",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xc60ba256b44334a0cd2c7242e98b88f031abb006-1788523227588.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xc60ba256b44334a0cd2c7242e98b88f031abb006-1788523227588.png"
+ ],
+ "name": "Programmable",
+ "symbol": "V4",
+ "marketCap": "2150844.883321342892826478",
+ "price": "0.00215084488332134289",
+ "priceChange24hPercent": "0.02",
+ "volume24h": "821.08014686715283",
+ "communityRecognized": false,
+ "key": "evm--4663:0xc60ba256b44334a0cd2c7242e98b88f031abb006",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ }
+ ],
+ "trending||1h|all": [
+ {
+ "isNative": true,
+ "networkId": "btc--0",
+ "address": "",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/btc--0/tokens/address-.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/btc--0/tokens/address-.png"
+ ],
+ "name": "Bitcoin",
+ "symbol": "BTC",
+ "marketCap": "1583042059097",
+ "price": "78831",
+ "priceChange24hPercent": "-0.1",
+ "volume24h": "23017300141",
+ "communityRecognized": true,
+ "key": "btc--0:",
+ "kind": "token",
+ "sourceCategory": "trending"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x39dbed3a2bd333467115de45665cc57f813c4571",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x39dbed3a2bd333467115de45665cc57f813c4571-1785145437955.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x39dbed3a2bd333467115de45665cc57f813c4571-1785145437955.png"
+ ],
+ "name": "Pons",
+ "symbol": "PONS",
+ "marketCap": "492112704.597236610323916389",
+ "price": "0.70302223805572701577",
+ "priceChange24hPercent": "0.93",
+ "volume24h": "4674761.877947027421189753",
+ "communityRecognized": true,
+ "key": "evm--4663:0x39dbed3a2bd333467115de45665cc57f813c4571",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x888656062164473c93c06ca89ae4d868d606ffff",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/4a563ac1c0cd1b7ed43429ee1ad5750a8ca22c0eaaa08d0427a8a86e8a2348f0",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/4a563ac1c0cd1b7ed43429ee1ad5750a8ca22c0eaaa08d0427a8a86e8a2348f0"
+ ],
+ "name": "Fat Panda",
+ "symbol": "FATPANDA",
+ "marketCap": "2112405.287274850220596805",
+ "price": "0.00211240528727485022",
+ "priceChange24hPercent": "-56.63",
+ "volume24h": "2702587.409487557507418051",
+ "communityRecognized": false,
+ "key": "evm--56:0x888656062164473c93c06ca89ae4d868d606ffff",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x4a72b9702f991b790788f8afa9e7112541f4e8f8",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/a2e5ad0ff8689f1c746d6b07fd9718545cd44c67e13dabe8ba7242d613586821",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/a2e5ad0ff8689f1c746d6b07fd9718545cd44c67e13dabe8ba7242d613586821"
+ ],
+ "name": "Route",
+ "symbol": "ROUTE",
+ "marketCap": "5153862.727846807731733948",
+ "price": "0.00515386272784680773",
+ "priceChange24hPercent": "-16.42",
+ "volume24h": "804101.755286377464587373",
+ "communityRecognized": false,
+ "key": "evm--4663:0x4a72b9702f991b790788f8afa9e7112541f4e8f8",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xe2324ff2a59f8ecba8c321c6466e59121c00e795",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/84804585551812a64183c44a4e291f2332c9a5ff2d07e52dbcd3b81d60c989b3",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/84804585551812a64183c44a4e291f2332c9a5ff2d07e52dbcd3b81d60c989b3"
+ ],
+ "name": "Commodity Market Exchange",
+ "symbol": "CME",
+ "marketCap": "3213737.655225761637941131",
+ "price": "0.00321373765522576164",
+ "priceChange24hPercent": "1.34",
+ "volume24h": "1132164.429951218855129075",
+ "communityRecognized": false,
+ "key": "evm--4663:0xe2324ff2a59f8ecba8c321c6466e59121c00e795",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xc9d825e83aada475bd4d38c8ca984ed746277777",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xc9d825e83aada475bd4d38c8ca984ed746277777-1788595746569.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xc9d825e83aada475bd4d38c8ca984ed746277777-1788595746569.png"
+ ],
+ "name": "Stonks",
+ "symbol": "Stonks",
+ "marketCap": "3383539.04713083920517472",
+ "price": "0.00338353904713083921",
+ "priceChange24hPercent": "-8.51",
+ "volume24h": "1305063.183600881537031179",
+ "communityRecognized": true,
+ "key": "evm--56:0xc9d825e83aada475bd4d38c8ca984ed746277777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xd270d4e1ec6e6e0d28c0ecb8be966ec75997ffff",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/f3bf6d8a8bc7f4be0ec6949fa0ebf538953fcd6443cd6681e394f790b6546a1e",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/f3bf6d8a8bc7f4be0ec6949fa0ebf538953fcd6443cd6681e394f790b6546a1e"
+ ],
+ "name": "4Stock",
+ "symbol": "4Stock",
+ "marketCap": "7621641.458924761443936601",
+ "price": "0.00778563330208788574",
+ "priceChange24hPercent": "45.07",
+ "volume24h": "5811273.005848531579838642",
+ "communityRecognized": false,
+ "key": "evm--56:0xd270d4e1ec6e6e0d28c0ecb8be966ec75997ffff",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x8fdb0647e2bf11c8d88ef7825905f5f428864444",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/f3bf6d8a8bc7f4be0ec6949fa0ebf538953fcd6443cd6681e394f790b6546a1e",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/f3bf6d8a8bc7f4be0ec6949fa0ebf538953fcd6443cd6681e394f790b6546a1e"
+ ],
+ "name": "4cat",
+ "symbol": "4cat",
+ "marketCap": "119643.440010641813385865",
+ "price": "0.00011964344001064181",
+ "priceChange24hPercent": "30.78",
+ "volume24h": "168819.72587859324477851",
+ "communityRecognized": false,
+ "key": "evm--56:0x8fdb0647e2bf11c8d88ef7825905f5f428864444",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x17616c8f6cacf14fcff63f3188a30691802effff",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/cfcf37bcd1b22ee8594b38b7c1bbb0d2aafe3f8ad70ec9d9cbd108990326678d",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/cfcf37bcd1b22ee8594b38b7c1bbb0d2aafe3f8ad70ec9d9cbd108990326678d"
+ ],
+ "name": "Built and Code",
+ "symbol": "BNC",
+ "marketCap": "717067.38067697511935398",
+ "price": "0.00071706738067697512",
+ "priceChange24hPercent": "50.02",
+ "volume24h": "342503.783186811349238536",
+ "communityRecognized": false,
+ "key": "evm--56:0x17616c8f6cacf14fcff63f3188a30691802effff",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x6b1d42927b1a84ec28fa88d4fc6fa7af404966be",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x6b1d42927b1a84ec28fa88d4fc6fa7af404966be-1788091561508.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x6b1d42927b1a84ec28fa88d4fc6fa7af404966be-1788091561508.png"
+ ],
+ "name": "PAIR",
+ "symbol": "PAIR",
+ "marketCap": "13830251.410931131946963254",
+ "price": "0.01543467921677988764",
+ "priceChange24hPercent": "-12.8",
+ "volume24h": "311727.389157425584601889",
+ "communityRecognized": false,
+ "key": "evm--4663:0x6b1d42927b1a84ec28fa88d4fc6fa7af404966be",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x0000000005aca17e8bd5779fc87e13cb433aed24",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x0000000005aca17e8bd5779fc87e13cb433aed24-1788697955302.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x0000000005aca17e8bd5779fc87e13cb433aed24-1788697955302.png"
+ ],
+ "name": "NUKE",
+ "symbol": "NUKE",
+ "marketCap": "9437039.871545636712869593",
+ "price": "67.78599858061051997161",
+ "priceChange24hPercent": "43.09",
+ "volume24h": "360661.535098255997456",
+ "communityRecognized": false,
+ "key": "evm--4663:0x0000000005aca17e8bd5779fc87e13cb433aed24",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xa6b53819f5bf521945fceb1f9bbb3a7a7b4effff",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/e5fb48d54702b49bd31d0551378667606ad6bb5e4e33b94fc32179b14469f2d0",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/e5fb48d54702b49bd31d0551378667606ad6bb5e4e33b94fc32179b14469f2d0"
+ ],
+ "name": "CEA Industries",
+ "symbol": "Vape",
+ "marketCap": "194534.487611051174546684",
+ "price": "0.00019453448761105117",
+ "priceChange24hPercent": "-18.03",
+ "volume24h": "288065.821597229318707959",
+ "communityRecognized": false,
+ "key": "evm--56:0xa6b53819f5bf521945fceb1f9bbb3a7a7b4effff",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xe9337dde3dd9e97f1f45a56412767ce5098e7777",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xe9337dde3dd9e97f1f45a56412767ce5098e7777-1785657919485.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xe9337dde3dd9e97f1f45a56412767ce5098e7777-1785657919485.png"
+ ],
+ "name": "何必东奔西走 币安全部都有",
+ "symbol": "币有",
+ "marketCap": "3256550.609706267519426927",
+ "price": "0.00325655060991233998",
+ "priceChange24hPercent": "15.65",
+ "volume24h": "237479.602256726484799166",
+ "communityRecognized": false,
+ "key": "evm--56:0xe9337dde3dd9e97f1f45a56412767ce5098e7777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xab093def657f15df31b33922a95e047add645b29",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xab093def657f15df31b33922a95e047add645b29-1788523212752.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xab093def657f15df31b33922a95e047add645b29-1788523212752.png"
+ ],
+ "name": "MUSHROOM",
+ "symbol": "SHROOM",
+ "marketCap": "30848724.563377800877252185",
+ "price": "0.03124499606092514299",
+ "priceChange24hPercent": "-2.02",
+ "volume24h": "301781.09650630091825437",
+ "communityRecognized": true,
+ "key": "evm--4663:0xab093def657f15df31b33922a95e047add645b29",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x2e8c31162b855a2ffa90f6f8634643ad6f111e18",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x2e8c31162b855a2ffa90f6f8634643ad6f111e18-1785845221968.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x2e8c31162b855a2ffa90f6f8634643ad6f111e18-1785845221968.png"
+ ],
+ "name": "Artificial Inu",
+ "symbol": "AI",
+ "marketCap": "256039378.294288995153516342",
+ "price": "0.25826194354846087765",
+ "priceChange24hPercent": "-1.76",
+ "volume24h": "1063093.935327455630465013",
+ "communityRecognized": true,
+ "key": "evm--4663:0x2e8c31162b855a2ffa90f6f8634643ad6f111e18",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x7bc70ae0f2a67d2fdc0180a697a611f21c857777",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x7bc70ae0f2a67d2fdc0180a697a611f21c857777-1788768091330.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x7bc70ae0f2a67d2fdc0180a697a611f21c857777-1788768091330.png"
+ ],
+ "name": "BEN",
+ "symbol": "BEN",
+ "marketCap": "4582788.885653946266778318",
+ "price": "0.00460523236960062734",
+ "priceChange24hPercent": "4.49",
+ "volume24h": "846013.16561007320600644",
+ "communityRecognized": false,
+ "key": "evm--56:0x7bc70ae0f2a67d2fdc0180a697a611f21c857777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xb3a1e1f7ae6c90c707ec3c75e99c359482fea5b9",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/488d50fb3eb6f79c9440d809ef90dc3a197facbca4792e913cf6d2ab384a3fbe",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/488d50fb3eb6f79c9440d809ef90dc3a197facbca4792e913cf6d2ab384a3fbe"
+ ],
+ "name": "Sock",
+ "symbol": "SOCK",
+ "marketCap": "5094939.109274301369453039",
+ "price": "0.00509603224666357303",
+ "priceChange24hPercent": "-11.08",
+ "volume24h": "661999.19976215970304159",
+ "communityRecognized": false,
+ "key": "evm--56:0xb3a1e1f7ae6c90c707ec3c75e99c359482fea5b9",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xfa6d9b504848606eb9aec04ccc161d169b3f2159",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xfa6d9b504848606eb9aec04ccc161d169b3f2159-1788768839130.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xfa6d9b504848606eb9aec04ccc161d169b3f2159-1788768839130.png"
+ ],
+ "name": "BREW",
+ "symbol": "BREW",
+ "marketCap": "6401595.848431142137785916",
+ "price": "0.00640159584843114214",
+ "priceChange24hPercent": "-15.44",
+ "volume24h": "613156.959627874831752409",
+ "communityRecognized": true,
+ "key": "evm--56:0xfa6d9b504848606eb9aec04ccc161d169b3f2159",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xd9db30bb0d2b8d2eae3826a1372117e058791e18",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xd9db30bb0d2b8d2eae3826a1372117e058791e18-1788091222725.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xd9db30bb0d2b8d2eae3826a1372117e058791e18-1788091222725.png"
+ ],
+ "name": "Memory cow Moo",
+ "symbol": "MOO",
+ "marketCap": "26232322.129356837995581063",
+ "price": "0.02652530467317783355",
+ "priceChange24hPercent": "-2.14",
+ "volume24h": "373345.92446681313542046",
+ "communityRecognized": true,
+ "key": "evm--4663:0xd9db30bb0d2b8d2eae3826a1372117e058791e18",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x15d36b6a28d8327abc7afabf0f106ae2c9af5c4d",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x15d36b6a28d8327abc7afabf0f106ae2c9af5c4d-1788523244923.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x15d36b6a28d8327abc7afabf0f106ae2c9af5c4d-1788523244923.png"
+ ],
+ "name": "Pare",
+ "symbol": "PARE",
+ "marketCap": "12229018.110352449879813527",
+ "price": "0.01222901811035244988",
+ "priceChange24hPercent": "-0.23",
+ "volume24h": "293730.705879689539826636",
+ "communityRecognized": false,
+ "key": "evm--4663:0x15d36b6a28d8327abc7afabf0f106ae2c9af5c4d",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x6d11782ef6cbe773da2defef612f9a57c54012bf",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/aed9300fe93af8a077cf133b5d703e28386f95d7724261f173da91a4cac7df65",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/aed9300fe93af8a077cf133b5d703e28386f95d7724261f173da91a4cac7df65"
+ ],
+ "name": "Macintosh",
+ "symbol": "MACINTOSH",
+ "marketCap": "1436439.323467978675653196",
+ "price": "0.00143643932346797868",
+ "priceChange24hPercent": "74.09",
+ "volume24h": "53809.09986148089791384",
+ "communityRecognized": false,
+ "key": "evm--4663:0x6d11782ef6cbe773da2defef612f9a57c54012bf",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x79a74fd91f8e1c4ab8e76253dec5c91f3094393f",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/e1f481a4066feec841bf3345c090a6cdd9fd2274a972cf1981f3a0a234f42d9c",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/e1f481a4066feec841bf3345c090a6cdd9fd2274a972cf1981f3a0a234f42d9c"
+ ],
+ "name": "Superstables",
+ "symbol": "STBL",
+ "marketCap": "431790.28727990802483224",
+ "price": "0.00043179028727990802",
+ "priceChange24hPercent": "-39.78",
+ "volume24h": "538536.41657328307812057",
+ "communityRecognized": false,
+ "key": "evm--4663:0x79a74fd91f8e1c4ab8e76253dec5c91f3094393f",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x7ba36be14dd06ba492f08be6c1b2979c1d0b652c",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x7ba36be14dd06ba492f08be6c1b2979c1d0b652c-1788178016235.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x7ba36be14dd06ba492f08be6c1b2979c1d0b652c-1788178016235.png"
+ ],
+ "name": "PerpsHood",
+ "symbol": "PERPSHOOD",
+ "marketCap": "3288366.118814719718758381",
+ "price": "0.0034420989612188976",
+ "priceChange24hPercent": "13.63",
+ "volume24h": "57104.961610702839221",
+ "communityRecognized": false,
+ "key": "evm--4663:0x7ba36be14dd06ba492f08be6c1b2979c1d0b652c",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xa3602804e096cb73bd8344afc1ff3f3390b899c5",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xa3602804e096cb73bd8344afc1ff3f3390b899c5-1788697149485.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xa3602804e096cb73bd8344afc1ff3f3390b899c5-1788697149485.png"
+ ],
+ "name": "PEZ",
+ "symbol": "PEZ",
+ "marketCap": "2566956.157709543351335719",
+ "price": "0.00256696182716853727",
+ "priceChange24hPercent": "-20.32",
+ "volume24h": "182054.1553793052384282",
+ "communityRecognized": false,
+ "key": "evm--4663:0xa3602804e096cb73bd8344afc1ff3f3390b899c5",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x7163ae1b5aea2f09ebc609c52b4dcac0a7a4bc2d",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/b565852235f4b58795118e627a62621101b692c4e2e2801f518600ad55c59755",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/b565852235f4b58795118e627a62621101b692c4e2e2801f518600ad55c59755"
+ ],
+ "name": "GAGE",
+ "symbol": "GAGE",
+ "marketCap": "2110500.95003322357189616",
+ "price": "0.00211050095003322357",
+ "priceChange24hPercent": "-22.07",
+ "volume24h": "183914.61387673355181406",
+ "communityRecognized": false,
+ "key": "evm--4663:0x7163ae1b5aea2f09ebc609c52b4dcac0a7a4bc2d",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x198dba421a7db566a90da5de7901abe3443b4444",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x198dba421a7db566a90da5de7901abe3443b4444-1783844840152.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x198dba421a7db566a90da5de7901abe3443b4444-1783844840152.png"
+ ],
+ "name": "富贵",
+ "symbol": "富贵",
+ "marketCap": "1997835.58315835493824872",
+ "price": "0.00199783560433451247",
+ "priceChange24hPercent": "-2.53",
+ "volume24h": "130720.931814544174207102",
+ "communityRecognized": false,
+ "key": "evm--56:0x198dba421a7db566a90da5de7901abe3443b4444",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x98096d17e191b3da1d5f99a6d7b3584351b11e18",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x98096d17e191b3da1d5f99a6d7b3584351b11e18-1787918411975.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x98096d17e191b3da1d5f99a6d7b3584351b11e18-1787918411975.png"
+ ],
+ "name": "Boner Coin",
+ "symbol": "BONER",
+ "marketCap": "59400539.57912752890287799",
+ "price": "0.05940055223813601532",
+ "priceChange24hPercent": "-3.56",
+ "volume24h": "320804.475880708496969201",
+ "communityRecognized": true,
+ "key": "evm--4663:0x98096d17e191b3da1d5f99a6d7b3584351b11e18",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x12d5ee7917ca430073c3a638ee1e6f0648a98a01",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x12d5ee7917ca430073c3a638ee1e6f0648a98a01-1788350677314.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x12d5ee7917ca430073c3a638ee1e6f0648a98a01-1788350677314.png"
+ ],
+ "name": "FATCOIN",
+ "symbol": "FATCOIN",
+ "marketCap": "15350737.661635553569380883",
+ "price": "0.01535073766163555357",
+ "priceChange24hPercent": "-10.17",
+ "volume24h": "165305.5508846179277106",
+ "communityRecognized": false,
+ "key": "evm--4663:0x12d5ee7917ca430073c3a638ee1e6f0648a98a01",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x76ed1e2a8fc3873fcb5c514688ca2fe8a3600b7f",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/1dbcb030f10554487ca05c3aaa7fcc97cef5b687e39b63bafb0d000d20616792",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/1dbcb030f10554487ca05c3aaa7fcc97cef5b687e39b63bafb0d000d20616792"
+ ],
+ "name": "LAPTOP",
+ "symbol": "LAPTOP",
+ "marketCap": "1234221.162462544668452627",
+ "price": "0.00123422116246254467",
+ "priceChange24hPercent": "6.2",
+ "volume24h": "116050.986285107638280112",
+ "communityRecognized": false,
+ "key": "evm--4663:0x76ed1e2a8fc3873fcb5c514688ca2fe8a3600b7f",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xafe41f4356c24f716111de1fbbc84e061d291e18",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xafe41f4356c24f716111de1fbbc84e061d291e18-1788264039086.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xafe41f4356c24f716111de1fbbc84e061d291e18-1788264039086.png"
+ ],
+ "name": "Cache Cow",
+ "symbol": "CACHE",
+ "marketCap": "1050419.188538898842399832",
+ "price": "0.00105041918853889884",
+ "priceChange24hPercent": "-14.26",
+ "volume24h": "44738.530056513081127276",
+ "communityRecognized": false,
+ "key": "evm--4663:0xafe41f4356c24f716111de1fbbc84e061d291e18",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xd5f1afea47b1a9eab414d2ee740cf1d6d039e725",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xd5f1afea47b1a9eab414d2ee740cf1d6d039e725-1788091431352.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xd5f1afea47b1a9eab414d2ee740cf1d6d039e725-1788091431352.png"
+ ],
+ "name": "microduck",
+ "symbol": "microduck",
+ "marketCap": "18228022.597202926448267905",
+ "price": "0.01822802259720292645",
+ "priceChange24hPercent": "-1.57",
+ "volume24h": "170910.19633646659223692",
+ "communityRecognized": false,
+ "key": "evm--4663:0xd5f1afea47b1a9eab414d2ee740cf1d6d039e725",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "Ai66LHZG9MCzg1WKdawwqduVAXpNDUuV8M3uyq5ppump",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-Ai66LHZG9MCzg1WKdawwqduVAXpNDUuV8M3uyq5ppump-1785164716552.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-Ai66LHZG9MCzg1WKdawwqduVAXpNDUuV8M3uyq5ppump-1785164716552.png"
+ ],
+ "name": "Catecoin",
+ "symbol": "CATE",
+ "marketCap": "27905084.425795496638311706",
+ "price": "0.0289423263308686502",
+ "priceChange24hPercent": "-0.73",
+ "volume24h": "218050.66562876692",
+ "communityRecognized": true,
+ "key": "sol--101:Ai66LHZG9MCzg1WKdawwqduVAXpNDUuV8M3uyq5ppump",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xaa07a0e9209e16ac99708c3ec70159c6ef3128a3",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xaa07a0e9209e16ac99708c3ec70159c6ef3128a3-1788352120153.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xaa07a0e9209e16ac99708c3ec70159c6ef3128a3-1788352120153.png"
+ ],
+ "name": "Orbio.so",
+ "symbol": "ORBIO",
+ "marketCap": "17993185.212207430708307963",
+ "price": "0.01894019496021834811",
+ "priceChange24hPercent": "2.71",
+ "volume24h": "91105.4946258392790085",
+ "communityRecognized": false,
+ "key": "evm--4663:0xaa07a0e9209e16ac99708c3ec70159c6ef3128a3",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xbe98b75361935b18d688409424a869a4c3dc7401",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xbe98b75361935b18d688409424a869a4c3dc7401-1788436898916.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xbe98b75361935b18d688409424a869a4c3dc7401-1788436898916.png"
+ ],
+ "name": "Send Nudes",
+ "symbol": "NUDES",
+ "marketCap": "14588111.302047615366721809",
+ "price": "0.01458811130204761537",
+ "priceChange24hPercent": "3.43",
+ "volume24h": "175943.81722480224586206",
+ "communityRecognized": false,
+ "key": "evm--4663:0xbe98b75361935b18d688409424a869a4c3dc7401",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x020bfc650a365f8bb26819deaabf3e21291018b4",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x020bfc650a365f8bb26819deaabf3e21291018b4-1784778353843.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x020bfc650a365f8bb26819deaabf3e21291018b4-1784778353843.png"
+ ],
+ "name": "Cash Cat",
+ "symbol": "CASHCAT",
+ "marketCap": "187938077.189255437600581806",
+ "price": "0.19019824787407212831",
+ "priceChange24hPercent": "-1.13",
+ "volume24h": "536881.913401096381300338",
+ "communityRecognized": true,
+ "key": "evm--4663:0x020bfc650a365f8bb26819deaabf3e21291018b4",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xe2dae1c072b9f66bed999873b94798b2152af7e1",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xe2dae1c072b9f66bed999873b94798b2152af7e1-1788697020328.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xe2dae1c072b9f66bed999873b94798b2152af7e1-1788697020328.png"
+ ],
+ "name": "Arbitrage Ape",
+ "symbol": "AA",
+ "marketCap": "4507869.835267490011775813",
+ "price": "0.00458935283081802597",
+ "priceChange24hPercent": "-1.73",
+ "volume24h": "179687.880717007695243",
+ "communityRecognized": false,
+ "key": "evm--4663:0xe2dae1c072b9f66bed999873b94798b2152af7e1",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xbc9cc4b93a08b2dfba87067a9c53e713db3314ce",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/a34bd343ce2418e2688d9be4430fef2415dee4b660c25a3bbbcaaf3481e299a4",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/a34bd343ce2418e2688d9be4430fef2415dee4b660c25a3bbbcaaf3481e299a4"
+ ],
+ "name": "Pink Sheets",
+ "symbol": "PINK",
+ "marketCap": "933339.56396972196933734",
+ "price": "0.00093333956396972197",
+ "priceChange24hPercent": "-25.97",
+ "volume24h": "132793.53883716678245187",
+ "communityRecognized": false,
+ "key": "evm--4663:0xbc9cc4b93a08b2dfba87067a9c53e713db3314ce",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x18e674231a58c239dc7daedcffe15ec3a24cff5c",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x18e674231a58c239dc7daedcffe15ec3a24cff5c-1786190410593.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x18e674231a58c239dc7daedcffe15ec3a24cff5c-1786190410593.png"
+ ],
+ "name": "Hookr.fun",
+ "symbol": "HOOKR",
+ "marketCap": "16533331.664047282898052225",
+ "price": "0.01659374854035718065",
+ "priceChange24hPercent": "-13.74",
+ "volume24h": "84714.94731888119869798",
+ "communityRecognized": true,
+ "key": "evm--4663:0x18e674231a58c239dc7daedcffe15ec3a24cff5c",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xab35d04e1ee39c789c4a65d522417b3c7f2e4723",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/fac85c085d11f1aa6ae21cc9ad0bb550feec3cb25196bd13e83f1f5c0ef580c0",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/fac85c085d11f1aa6ae21cc9ad0bb550feec3cb25196bd13e83f1f5c0ef580c0"
+ ],
+ "name": "JT MARLIN",
+ "symbol": "MARLIN",
+ "marketCap": "1254614.259705579781749622",
+ "price": "0.00125461425970557978",
+ "priceChange24hPercent": "12.66",
+ "volume24h": "158506.0769417016958944",
+ "communityRecognized": false,
+ "key": "evm--4663:0xab35d04e1ee39c789c4a65d522417b3c7f2e4723",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x62cd5cd9d354a2a50affe9efa21c8918b9640a5b",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x62cd5cd9d354a2a50affe9efa21c8918b9640a5b-1788698087258.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x62cd5cd9d354a2a50affe9efa21c8918b9640a5b-1788698087258.png"
+ ],
+ "name": "LADY Exchange",
+ "symbol": "LDX",
+ "marketCap": "859651.651645633726589384",
+ "price": "0.00085965165164563373",
+ "priceChange24hPercent": "22.76",
+ "volume24h": "35563.561946375380044",
+ "communityRecognized": false,
+ "key": "evm--4663:0x62cd5cd9d354a2a50affe9efa21c8918b9640a5b",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x11b70d0243baf75e85ce03201a92b5b7c33beb59",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x11b70d0243baf75e85ce03201a92b5b7c33beb59-1788697768561.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x11b70d0243baf75e85ce03201a92b5b7c33beb59-1788697768561.png"
+ ],
+ "name": "Robin the Frog",
+ "symbol": "ROBIN",
+ "marketCap": "5059217.747200642391632707",
+ "price": "0.00509749368744337543",
+ "priceChange24hPercent": "-21.74",
+ "volume24h": "224467.163584842402974248",
+ "communityRecognized": false,
+ "key": "evm--4663:0x11b70d0243baf75e85ce03201a92b5b7c33beb59",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x7df5daaf80e65dfcc7a1435d9b52bcf2b5753fbe",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x7df5daaf80e65dfcc7a1435d9b52bcf2b5753fbe-1788696318342.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x7df5daaf80e65dfcc7a1435d9b52bcf2b5753fbe-1788696318342.png"
+ ],
+ "name": "Unipcs",
+ "symbol": "UNIPCS",
+ "marketCap": "951836.404712392376741929",
+ "price": "0.00095317681003142395",
+ "priceChange24hPercent": "-13.69",
+ "volume24h": "21995.438286829188090095",
+ "communityRecognized": false,
+ "key": "evm--4663:0x7df5daaf80e65dfcc7a1435d9b52bcf2b5753fbe",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "7Y7V1a4m2nWK7BMgbka5B4vR1pDvCK7yva3Hnrqkraze",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/fa21eef99efb8b7842c131cfa852344958bd4c32e76767446fd4983cb58d673c",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/fa21eef99efb8b7842c131cfa852344958bd4c32e76767446fd4983cb58d673c"
+ ],
+ "name": "Nasduck",
+ "symbol": "Nasduck",
+ "marketCap": "4892558.96341480044114222",
+ "price": "0.005087934370491688",
+ "priceChange24hPercent": "-2.83",
+ "volume24h": "376514.91678737127",
+ "communityRecognized": false,
+ "key": "sol--101:7Y7V1a4m2nWK7BMgbka5B4vR1pDvCK7yva3Hnrqkraze",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x8602b2fd8d105a56d3152e936e66b1d414142148",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/46be4fa022c8cf4f26df79bb27838188b1097a22d2d5668c723c6177a9bad8e6",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/46be4fa022c8cf4f26df79bb27838188b1097a22d2d5668c723c6177a9bad8e6"
+ ],
+ "name": "Artificial Pepe",
+ "symbol": "AP",
+ "marketCap": "1104363.861105462063331123",
+ "price": "0.00110436386110546206",
+ "priceChange24hPercent": "-12.39",
+ "volume24h": "12448.86978211158126",
+ "communityRecognized": false,
+ "key": "evm--1:0x8602b2fd8d105a56d3152e936e66b1d414142148",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xe934e36a439c94017b64a3fece66af12099abf50",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xe934e36a439c94017b64a3fece66af12099abf50-1785290631562.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xe934e36a439c94017b64a3fece66af12099abf50-1785290631562.png"
+ ],
+ "name": "StonkBroker",
+ "symbol": "STONKBROKER",
+ "marketCap": "20518182.682148260865098637",
+ "price": "0.01677267873394663003",
+ "priceChange24hPercent": "4.25",
+ "volume24h": "143327.011995203078567003",
+ "communityRecognized": true,
+ "key": "evm--4663:0xe934e36a439c94017b64a3fece66af12099abf50",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xca9c78dd337a67f6e0077f65f5e9218719d30edf",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xca9c78dd337a67f6e0077f65f5e9218719d30edf-1785280831816.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xca9c78dd337a67f6e0077f65f5e9218719d30edf-1785280831816.png"
+ ],
+ "name": "NetNet",
+ "symbol": "NET",
+ "marketCap": "3739742.122220151657455659",
+ "price": "637.76997830711379478319",
+ "priceChange24hPercent": "-3.5",
+ "volume24h": "189433.0165538410121804",
+ "communityRecognized": false,
+ "key": "evm--4663:0xca9c78dd337a67f6e0077f65f5e9218719d30edf",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x2ab8a4dd2191989ac2898006df350b236d2b7777",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x2ab8a4dd2191989ac2898006df350b236d2b7777-1787990461314.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x2ab8a4dd2191989ac2898006df350b236d2b7777-1787990461314.png"
+ ],
+ "name": "施工猫",
+ "symbol": "Sue",
+ "marketCap": "3511764.100491869967331388",
+ "price": "0.00351176429196420492",
+ "priceChange24hPercent": "-7.65",
+ "volume24h": "163137.790424912587534875",
+ "communityRecognized": true,
+ "key": "evm--56:0x2ab8a4dd2191989ac2898006df350b236d2b7777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x451b42a15100c340ca12f7c66de06fac5ea2d751",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x451b42a15100c340ca12f7c66de06fac5ea2d751-1787832041620.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x451b42a15100c340ca12f7c66de06fac5ea2d751-1787832041620.png"
+ ],
+ "name": "Longbow",
+ "symbol": "BOW",
+ "marketCap": "5686131.59933519377931409",
+ "price": "0.00568613159933519378",
+ "priceChange24hPercent": "0.8",
+ "volume24h": "113544.942160942915044253",
+ "communityRecognized": false,
+ "key": "evm--4663:0x451b42a15100c340ca12f7c66de06fac5ea2d751",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xe9bc5c6a86caa44fd7b469bf3cc7c563e4f77777",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xe9bc5c6a86caa44fd7b469bf3cc7c563e4f77777-1785831565492.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xe9bc5c6a86caa44fd7b469bf3cc7c563e4f77777-1785831565492.png"
+ ],
+ "name": "Giggle Mascot",
+ "symbol": "Max",
+ "marketCap": "12153096.544639604735301731",
+ "price": "0.01215309770392200853",
+ "priceChange24hPercent": "-16.13",
+ "volume24h": "180505.528300848372321333",
+ "communityRecognized": false,
+ "key": "evm--56:0xe9bc5c6a86caa44fd7b469bf3cc7c563e4f77777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xef67e3064bef1a27e81925ec7132f23e533bd5f6",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xef67e3064bef1a27e81925ec7132f23e533bd5f6-1788782588286.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xef67e3064bef1a27e81925ec7132f23e533bd5f6-1788782588286.png"
+ ],
+ "name": "Greatest Meme Ever",
+ "symbol": "GME",
+ "marketCap": "4418340.399659110512455337",
+ "price": "0.0044183404001220693",
+ "priceChange24hPercent": "-15.53",
+ "volume24h": "137332.05932591389025825",
+ "communityRecognized": false,
+ "key": "evm--4663:0xef67e3064bef1a27e81925ec7132f23e533bd5f6",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x7dbf38976f6d3b9c529e7d9484a71898b409ee6a",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x7dbf38976f6d3b9c529e7d9484a71898b409ee6a-1788610442171.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x7dbf38976f6d3b9c529e7d9484a71898b409ee6a-1788610442171.png"
+ ],
+ "name": "ZZZ",
+ "symbol": "ZZZ",
+ "marketCap": "15466129.401190105654350355",
+ "price": "0.01841205881094060197",
+ "priceChange24hPercent": "4.34",
+ "volume24h": "116171.6423790934959405",
+ "communityRecognized": false,
+ "key": "evm--4663:0x7dbf38976f6d3b9c529e7d9484a71898b409ee6a",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x9e92bbf2017bbfb7a06c975ca30e268cd2e57777",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/26946e97f0605097c389e90209fbbad48af1927f15b93093e2b999a0ccb97c16",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/26946e97f0605097c389e90209fbbad48af1927f15b93093e2b999a0ccb97c16"
+ ],
+ "name": "Google Dog",
+ "symbol": "股狗",
+ "marketCap": "330885.712103554270207473",
+ "price": "0.00033088571210355427",
+ "priceChange24hPercent": "-34.1",
+ "volume24h": "44398.53315075929764431",
+ "communityRecognized": false,
+ "key": "evm--56:0x9e92bbf2017bbfb7a06c975ca30e268cd2e57777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x2ae1ebeeda58b68a02dc313f7d90aa6ee546df86",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/2d70c37a83c6c75e1500068ec44d7246c00f6c3cc88134c29c693c7ac392bbc0",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/2d70c37a83c6c75e1500068ec44d7246c00f6c3cc88134c29c693c7ac392bbc0"
+ ],
+ "name": "Milk",
+ "symbol": "DC",
+ "marketCap": "45187.582862054210067071",
+ "price": "16.31078572068146233841",
+ "priceChange24hPercent": "0.02",
+ "volume24h": "36053.103785",
+ "communityRecognized": false,
+ "key": "evm--4663:0x2ae1ebeeda58b68a02dc313f7d90aa6ee546df86",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xbeea1d618e533a387d941f58a7d4c9b7bd377777",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xbeea1d618e533a387d941f58a7d4c9b7bd377777-1786867206539.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xbeea1d618e533a387d941f58a7d4c9b7bd377777-1786867206539.png"
+ ],
+ "name": "牛来",
+ "symbol": "牛来",
+ "marketCap": "82047208.24262765843217039",
+ "price": "0.08204721650484486528",
+ "priceChange24hPercent": "0.89",
+ "volume24h": "695181.498354103067635676",
+ "communityRecognized": false,
+ "key": "evm--56:0xbeea1d618e533a387d941f58a7d4c9b7bd377777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x16391c40e85fb2246a2c8c17bfa2594c5d3ef84b",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x16391c40e85fb2246a2c8c17bfa2594c5d3ef84b-1788523244923.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x16391c40e85fb2246a2c8c17bfa2594c5d3ef84b-1788523244923.png"
+ ],
+ "name": "Touch Grass",
+ "symbol": "GRASS",
+ "marketCap": "3561358.779724398512792577",
+ "price": "0.0035808939708134213",
+ "priceChange24hPercent": "16.9",
+ "volume24h": "81739.1470683190757748",
+ "communityRecognized": false,
+ "key": "evm--4663:0x16391c40e85fb2246a2c8c17bfa2594c5d3ef84b",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xe1e5f00a9b0255ca4df85b3130ee0f77d15acc2d",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xe1e5f00a9b0255ca4df85b3130ee0f77d15acc2d-1788696640254.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xe1e5f00a9b0255ca4df85b3130ee0f77d15acc2d-1788696640254.png"
+ ],
+ "name": "Pushin' 🅿️",
+ "symbol": "🅿️",
+ "marketCap": "1670276.961474108523173908",
+ "price": "0.00167027696147410852",
+ "priceChange24hPercent": "1.5",
+ "volume24h": "118455.306522240644830653",
+ "communityRecognized": false,
+ "key": "evm--4663:0xe1e5f00a9b0255ca4df85b3130ee0f77d15acc2d",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x507b6f349a80114097a67b8b4677367acc15b220",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x507b6f349a80114097a67b8b4677367acc15b220-1788610022118.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x507b6f349a80114097a67b8b4677367acc15b220-1788610022118.png"
+ ],
+ "name": "par",
+ "symbol": "par",
+ "marketCap": "1798968.499028405695939082",
+ "price": "0.0019041660225060439",
+ "priceChange24hPercent": "10.97",
+ "volume24h": "21365.112475329818433",
+ "communityRecognized": false,
+ "key": "evm--4663:0x507b6f349a80114097a67b8b4677367acc15b220",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xe8ffd7e24187f72afb08d75b1bb13088a989a791",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xe8ffd7e24187f72afb08d75b1bb13088a989a791-1786708993342.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xe8ffd7e24187f72afb08d75b1bb13088a989a791-1786708993342.png"
+ ],
+ "name": "Delta",
+ "symbol": "DELTA",
+ "marketCap": "13472444.557487726415542926",
+ "price": "0.01347244492315809628",
+ "priceChange24hPercent": "-3.66",
+ "volume24h": "146114.4450452436525026",
+ "communityRecognized": false,
+ "key": "evm--4663:0xe8ffd7e24187f72afb08d75b1bb13088a989a791",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x5173d45a1191ee33cbb7d8c7e65f21b04ed54802",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x5173d45a1191ee33cbb7d8c7e65f21b04ed54802-1788264029244.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x5173d45a1191ee33cbb7d8c7e65f21b04ed54802-1788264029244.png"
+ ],
+ "name": "Ramses",
+ "symbol": "RAM",
+ "marketCap": "3461676.475623955075835903",
+ "price": "0.06867351685156609209",
+ "priceChange24hPercent": "0.14",
+ "volume24h": "66486.790576850318085",
+ "communityRecognized": false,
+ "key": "evm--4663:0x5173d45a1191ee33cbb7d8c7e65f21b04ed54802",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x78b96280c3347e0f58a7147b73eb0ec5ffff025d",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x78b96280c3347e0f58a7147b73eb0ec5ffff025d-1788697020328.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x78b96280c3347e0f58a7147b73eb0ec5ffff025d-1788697020328.png"
+ ],
+ "name": "Robinhood Hat Strategy",
+ "symbol": "RSTR",
+ "marketCap": "2725713.193040557852190847",
+ "price": "0.00281246072249804144",
+ "priceChange24hPercent": "-1.7",
+ "volume24h": "159657.0824077401902266",
+ "communityRecognized": false,
+ "key": "evm--4663:0x78b96280c3347e0f58a7147b73eb0ec5ffff025d",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "8K5X85PAJHAAVSvYaAzgVPPAPsqqHmvx16ZyBiscYF8L",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-8K5X85PAJHAAVSvYaAzgVPPAPsqqHmvx16ZyBiscYF8L-1788368707252.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-8K5X85PAJHAAVSvYaAzgVPPAPsqqHmvx16ZyBiscYF8L-1788368707252.png"
+ ],
+ "name": "Vida Global CTO",
+ "symbol": "CTO",
+ "marketCap": "10655242.219614694475254837",
+ "price": "0.01162910300962041824",
+ "priceChange24hPercent": "-26.16",
+ "volume24h": "868330.4509123419541978",
+ "communityRecognized": false,
+ "key": "sol--101:8K5X85PAJHAAVSvYaAzgVPPAPsqqHmvx16ZyBiscYF8L",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x215407c134f68b9da4de10c22c948196053a0d5d",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/70a6389f1690a862f8e3a0d61f5a71c1ed8f0eb1c39ccf6f78f60fff4d400471",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/70a6389f1690a862f8e3a0d61f5a71c1ed8f0eb1c39ccf6f78f60fff4d400471"
+ ],
+ "name": "The Wolf of Wall Street",
+ "symbol": "WOLF",
+ "marketCap": "3798827.95826205946704669",
+ "price": "0.01057270776655222219",
+ "priceChange24hPercent": "-10.11",
+ "volume24h": "147554.1595461102843256",
+ "communityRecognized": false,
+ "key": "evm--4663:0x215407c134f68b9da4de10c22c948196053a0d5d",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "ANM35KbUcfKdEVBXzSjZBoT6ceSwYRs3fuc79fp7kRqP",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/db4d10c19523308df10f606b8b29d51a6e19419261d663ae88497cd02efd20f6",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/db4d10c19523308df10f606b8b29d51a6e19419261d663ae88497cd02efd20f6"
+ ],
+ "name": "Pump Cat",
+ "symbol": "Pumpcat",
+ "marketCap": "1888030.836167347599567097",
+ "price": "0.00191221316104",
+ "priceChange24hPercent": "15.89",
+ "volume24h": "159487.48235801725",
+ "communityRecognized": false,
+ "key": "sol--101:ANM35KbUcfKdEVBXzSjZBoT6ceSwYRs3fuc79fp7kRqP",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x97216593d3b2769da6f0adeee6fb8e36da4e319f",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x97216593d3b2769da6f0adeee6fb8e36da4e319f-1788782713180.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x97216593d3b2769da6f0adeee6fb8e36da4e319f-1788782713180.png"
+ ],
+ "name": "Ponsancoin",
+ "symbol": "Ponsan",
+ "marketCap": "900669.313469868826823375",
+ "price": "0.00090066931376665403",
+ "priceChange24hPercent": "-13.9",
+ "volume24h": "36146.572534333828226",
+ "communityRecognized": false,
+ "key": "evm--4663:0x97216593d3b2769da6f0adeee6fb8e36da4e319f",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0x0c9535416fd3b772646c4575e0664fd65afeeeee",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/06d415460409e8d3490a37fdffff10dcae078212668149add6cac2ccc487227d",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/06d415460409e8d3490a37fdffff10dcae078212668149add6cac2ccc487227d"
+ ],
+ "name": "IGNIX",
+ "symbol": "IGNIX",
+ "marketCap": "2050669.850711109531315621",
+ "price": "0.00205066985071110953",
+ "priceChange24hPercent": "-12.69",
+ "volume24h": "7403.20215719517899062",
+ "communityRecognized": false,
+ "key": "evm--196:0x0c9535416fd3b772646c4575e0664fd65afeeeee",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xf40592daacb3e5abf358789f5688c0b4f64d7777",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xf40592daacb3e5abf358789f5688c0b4f64d7777-1788336091391.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xf40592daacb3e5abf358789f5688c0b4f64d7777-1788336091391.png"
+ ],
+ "name": "FLORK",
+ "symbol": "FLORK",
+ "marketCap": "14165130.750717274515033125",
+ "price": "0.01416513075084475066",
+ "priceChange24hPercent": "4.61",
+ "volume24h": "441344.835113323843759522",
+ "communityRecognized": true,
+ "key": "evm--56:0xf40592daacb3e5abf358789f5688c0b4f64d7777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xcd8df4c1052a3447bda6a7423fbc234102f3b477",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/2c2886d399c18bd4b0702fc8ad6b51ba9787a4d5b3d91c759a3febf9c71697b5",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/2c2886d399c18bd4b0702fc8ad6b51ba9787a4d5b3d91c759a3febf9c71697b5"
+ ],
+ "name": "Silverback",
+ "symbol": "SILVERBACK",
+ "marketCap": "435669.577610923584217171",
+ "price": "0.00043566957761092358",
+ "priceChange24hPercent": "11.74",
+ "volume24h": "21176.31861579236879039",
+ "communityRecognized": false,
+ "key": "evm--4663:0xcd8df4c1052a3447bda6a7423fbc234102f3b477",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x812486eaea648819853f8e372dc9f1516c7868bd",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x812486eaea648819853f8e372dc9f1516c7868bd-1788354167261.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x812486eaea648819853f8e372dc9f1516c7868bd-1788354167261.png"
+ ],
+ "name": "ubik",
+ "symbol": "UBIK",
+ "marketCap": "18020589.533974926304134548",
+ "price": "0.0180205895339749263",
+ "priceChange24hPercent": "-6.13",
+ "volume24h": "84343.07973679011186285",
+ "communityRecognized": false,
+ "key": "evm--4663:0x812486eaea648819853f8e372dc9f1516c7868bd",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x87ae267002cd1ea0ec86bf3601d4a8ad76a47777",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x87ae267002cd1ea0ec86bf3601d4a8ad76a47777-1787558536892.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x87ae267002cd1ea0ec86bf3601d4a8ad76a47777-1787558536892.png"
+ ],
+ "name": "蝴蝶人生",
+ "symbol": "蝴蝶人生",
+ "marketCap": "2843905.219663741104043209",
+ "price": "0.0028439052196637411",
+ "priceChange24hPercent": "6.16",
+ "volume24h": "33446.689942678157117103",
+ "communityRecognized": false,
+ "key": "evm--56:0x87ae267002cd1ea0ec86bf3601d4a8ad76a47777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xd4dc6b48ad73ec51e71d9b8f65568f88609b92c1",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xd4dc6b48ad73ec51e71d9b8f65568f88609b92c1-1787659267512.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xd4dc6b48ad73ec51e71d9b8f65568f88609b92c1-1787659267512.png"
+ ],
+ "name": "Sherwood",
+ "symbol": "SHERWOOD",
+ "marketCap": "503569.986816325467242948",
+ "price": "0.00050356998681632547",
+ "priceChange24hPercent": "-44.13",
+ "volume24h": "51984.5019340595908748",
+ "communityRecognized": false,
+ "key": "evm--4663:0xd4dc6b48ad73ec51e71d9b8f65568f88609b92c1",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x56910d4409f3a0c78c64dd8d0545ff0705389870",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x56910d4409f3a0c78c64dd8d0545ff0705389870-1784842044117.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x56910d4409f3a0c78c64dd8d0545ff0705389870-1784842044117.png"
+ ],
+ "name": "The Index",
+ "symbol": "Index",
+ "marketCap": "38346880.896545450198895543",
+ "price": "0.03910814324503138447",
+ "priceChange24hPercent": "-0.27",
+ "volume24h": "56222.032896027656044794",
+ "communityRecognized": true,
+ "key": "evm--4663:0x56910d4409f3a0c78c64dd8d0545ff0705389870",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "MukLDtJ8Cx9DxLbeyLRSWPSposTMWuwHANbuaudpump",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-MukLDtJ8Cx9DxLbeyLRSWPSposTMWuwHANbuaudpump-1788282416465.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-MukLDtJ8Cx9DxLbeyLRSWPSposTMWuwHANbuaudpump-1788282416465.png"
+ ],
+ "name": "OTC",
+ "symbol": "OTC",
+ "marketCap": "18665066.221513705269398034",
+ "price": "0.0262623070956762804",
+ "priceChange24hPercent": "-3.69",
+ "volume24h": "852432.1593628464",
+ "communityRecognized": false,
+ "key": "sol--101:MukLDtJ8Cx9DxLbeyLRSWPSposTMWuwHANbuaudpump",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0x68fa48b1c2fe52b3d776e1953e0e782b5044ce28",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/c87a8ce3e8952900ef0a4b64d5f35f964395958d1bd69e7388b453e696cb8f8d",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/c87a8ce3e8952900ef0a4b64d5f35f964395958d1bd69e7388b453e696cb8f8d"
+ ],
+ "name": "SpaceX xStock",
+ "symbol": "SPCXx",
+ "marketCap": "1107304878126",
+ "price": "149.9150525",
+ "priceChange24hPercent": "0.19",
+ "volume24h": "59214.330951186146802034",
+ "communityRecognized": false,
+ "key": "evm--196:0x68fa48b1c2fe52b3d776e1953e0e782b5044ce28",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "Aw6fiDPWLUnjSsJQtsyEMSaoPaKAUUrStAsYPiPwpump",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/77390ed5d0a7e7ae6ab8a0e2685653ff99f696192f784341e9d9bd613dc27472",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/77390ed5d0a7e7ae6ab8a0e2685653ff99f696192f784341e9d9bd613dc27472"
+ ],
+ "name": "Anonymouse",
+ "symbol": "Anonymouse",
+ "marketCap": "576031.891998599217547163",
+ "price": "0.00060453517170229361",
+ "priceChange24hPercent": "-2.3",
+ "volume24h": "64735.28381148849",
+ "communityRecognized": false,
+ "key": "sol--101:Aw6fiDPWLUnjSsJQtsyEMSaoPaKAUUrStAsYPiPwpump",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0x8ad3c73f833d3f9a523ab01476625f269aeb7cf0",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/d20fbce76659b93e5e02cd823afdf5bcac92ba2b71b111deb9ca1fe769ef63d4",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/d20fbce76659b93e5e02cd823afdf5bcac92ba2b71b111deb9ca1fe769ef63d4"
+ ],
+ "name": "Tesla xStock",
+ "symbol": "TSLAx",
+ "marketCap": "1393688637562.962",
+ "price": "356.4350525",
+ "priceChange24hPercent": "0.22",
+ "volume24h": "2444.10214942511568594",
+ "communityRecognized": false,
+ "key": "evm--196:0x8ad3c73f833d3f9a523ab01476625f269aeb7cf0",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x4f4a59ac165c6f05ed771df3530741494b1c7777",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/aaedfbda5a6301f10b584f1887dbe9604f4015526974adfc9bd19e9bff06bf7c",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/aaedfbda5a6301f10b584f1887dbe9604f4015526974adfc9bd19e9bff06bf7c"
+ ],
+ "name": "Offchain Dog",
+ "symbol": "zDOG",
+ "marketCap": "716071.920123885726066789",
+ "price": "0.00071607192012388573",
+ "priceChange24hPercent": "14.91",
+ "volume24h": "77213.84935252993300995",
+ "communityRecognized": false,
+ "key": "evm--56:0x4f4a59ac165c6f05ed771df3530741494b1c7777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x385f4f8ae47651ce5f58f5265395a669f8281e18",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x385f4f8ae47651ce5f58f5265395a669f8281e18-1788523250367.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x385f4f8ae47651ce5f58f5265395a669f8281e18-1788523250367.png"
+ ],
+ "name": "A Meme Coin",
+ "symbol": "MEME",
+ "marketCap": "122511547.146343256738851074",
+ "price": "0.12251154720077913367",
+ "priceChange24hPercent": "5.72",
+ "volume24h": "762759.777932134784121639",
+ "communityRecognized": true,
+ "key": "evm--4663:0x385f4f8ae47651ce5f58f5265395a669f8281e18",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x384c3f978950a98523529a205163bf63a69e8dd5",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/7a4fae357f9d4613d7f8b5f8bd76e29c37fb44afd8ff4f0da78fe40be38d3dd3",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/7a4fae357f9d4613d7f8b5f8bd76e29c37fb44afd8ff4f0da78fe40be38d3dd3"
+ ],
+ "name": "Kerf",
+ "symbol": "KERF",
+ "marketCap": "715380.768801813343037355",
+ "price": "0.00071538076880181334",
+ "priceChange24hPercent": "52.5",
+ "volume24h": "98414.6667642792924176",
+ "communityRecognized": false,
+ "key": "evm--4663:0x384c3f978950a98523529a205163bf63a69e8dd5",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0x4fec966f98d8530507787d947d1ab24fa145a999",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/5114ae6a8dd22ff7afd7dc72ba2065ab2dc5914e10df890f2c0971f48049eb1f",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/5114ae6a8dd22ff7afd7dc72ba2065ab2dc5914e10df890f2c0971f48049eb1f"
+ ],
+ "name": "LAIKA Coin",
+ "symbol": "LAIKA",
+ "marketCap": "2972813.068622393815012273",
+ "price": "0.00297281315186116207",
+ "priceChange24hPercent": "-0.86",
+ "volume24h": "1349.29463928814598458",
+ "communityRecognized": false,
+ "key": "evm--196:0x4fec966f98d8530507787d947d1ab24fa145a999",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x1ec871553be07dc68ec1661c32eca7e2e46e1e18",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/ee7408e5fd186d0c6d70812ea983d43036994104aca07d6d3074523eaa5b18a2",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/ee7408e5fd186d0c6d70812ea983d43036994104aca07d6d3074523eaa5b18a2"
+ ],
+ "name": "STONKS",
+ "symbol": "STONKS",
+ "marketCap": "231597.584146714265601533",
+ "price": "0.00023159758414671427",
+ "priceChange24hPercent": "-12.42",
+ "volume24h": "9914.790860439275417469",
+ "communityRecognized": false,
+ "key": "evm--4663:0x1ec871553be07dc68ec1661c32eca7e2e46e1e18",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0xff637d2d435d6745df3faf61272b1216e7e8b727",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/9fc774ca51417bc1bbf6bd03e602e39c5b991c3dee079065d7ce9c06c7da7d64",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/9fc774ca51417bc1bbf6bd03e602e39c5b991c3dee079065d7ce9c06c7da7d64"
+ ],
+ "name": "Wrapped SHEIN xStock",
+ "symbol": "wSHEINx",
+ "marketCap": "9931.131723846962877347",
+ "price": "5.2204262143685951143",
+ "priceChange24hPercent": "0.72",
+ "volume24h": "1799.981682804096366",
+ "communityRecognized": false,
+ "key": "evm--196:0xff637d2d435d6745df3faf61272b1216e7e8b727",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x5b73a93b4e5e4f1fd27d8b3f8c97d69908b5e284",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x5b73a93b4e5e4f1fd27d8b3f8c97d69908b5e284-1757704453242.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x5b73a93b4e5e4f1fd27d8b3f8c97d69908b5e284-1757704453242.png"
+ ],
+ "name": "FORM Token",
+ "symbol": "FORM",
+ "marketCap": "80658171.488379674423689224",
+ "price": "0.27194644982635185092",
+ "priceChange24hPercent": "1.97",
+ "volume24h": "81920.480374496782461347",
+ "communityRecognized": true,
+ "key": "evm--56:0x5b73a93b4e5e4f1fd27d8b3f8c97d69908b5e284",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xfe7e19cbce2f896c6c528bc355baf5a768291e18",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xfe7e19cbce2f896c6c528bc355baf5a768291e18-1786017952373.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xfe7e19cbce2f896c6c528bc355baf5a768291e18-1786017952373.png"
+ ],
+ "name": "SPACEHOOD",
+ "symbol": "SPACEHOOD",
+ "marketCap": "8428237.504547357156569038",
+ "price": "0.00842823750454735716",
+ "priceChange24hPercent": "-9.22",
+ "volume24h": "70097.88719928959434514",
+ "communityRecognized": false,
+ "key": "evm--4663:0xfe7e19cbce2f896c6c528bc355baf5a768291e18",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "9cRCn9rGT8V2imeM2BaKs13yhMEais3ruM3rPvTGpump",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-9cRCn9rGT8V2imeM2BaKs13yhMEais3ruM3rPvTGpump-1782140764006.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-9cRCn9rGT8V2imeM2BaKs13yhMEais3ruM3rPvTGpump-1782140764006.png"
+ ],
+ "name": "The Black Bull",
+ "symbol": "ANSEM",
+ "marketCap": "77437082.195285110945748258",
+ "price": "0.1866888694873301954",
+ "priceChange24hPercent": "-3",
+ "volume24h": "1032357.01753059411470345",
+ "communityRecognized": true,
+ "key": "sol--101:9cRCn9rGT8V2imeM2BaKs13yhMEais3ruM3rPvTGpump",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x7a848a5a8169aa6a2f603d056a749f924f504444",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x7a848a5a8169aa6a2f603d056a749f924f504444-1783238620991.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x7a848a5a8169aa6a2f603d056a749f924f504444-1783238620991.png"
+ ],
+ "name": "The Final Form Bull",
+ "symbol": "CZ",
+ "marketCap": "1099286.938089230968563345",
+ "price": "0.0036646154199429095",
+ "priceChange24hPercent": "-6.56",
+ "volume24h": "48789.207404599566967064",
+ "communityRecognized": false,
+ "key": "evm--56:0x7a848a5a8169aa6a2f603d056a749f924f504444",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xa01bc586cd5f4f253bfab4e44400c52dbc18bc50",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/c365b2142e4c766209febdcd7d1678e3519a6be41b491b73bf8cddfc0cd3ab98",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/c365b2142e4c766209febdcd7d1678e3519a6be41b491b73bf8cddfc0cd3ab98"
+ ],
+ "name": "Voxelithic Protocol",
+ "symbol": "VOXEL",
+ "marketCap": "2194808.399720832343306287",
+ "price": "0.00219480839972083234",
+ "priceChange24hPercent": "1.85",
+ "volume24h": "33356.9033328146619525",
+ "communityRecognized": false,
+ "key": "evm--4663:0xa01bc586cd5f4f253bfab4e44400c52dbc18bc50",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x45242320dbb855eea8fd36804c6487e10e97fcf9",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x45242320dbb855eea8fd36804c6487e10e97fcf9-1784778612504.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x45242320dbb855eea8fd36804c6487e10e97fcf9-1784778612504.png"
+ ],
+ "name": "TENDIES",
+ "symbol": "TENDIES",
+ "marketCap": "15418336.651928049187952375",
+ "price": "0.0161197596815997701",
+ "priceChange24hPercent": "-5.25",
+ "volume24h": "50099.4088403495060791",
+ "communityRecognized": false,
+ "key": "evm--4663:0x45242320dbb855eea8fd36804c6487e10e97fcf9",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x265b3982ea730748100947f52561a4eab54affff",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x265b3982ea730748100947f52561a4eab54affff-1788163283951.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x265b3982ea730748100947f52561a4eab54affff-1788163283951.png"
+ ],
+ "name": "ast.fun",
+ "symbol": "AST",
+ "marketCap": "1006188.389049844693397769",
+ "price": "0.00101988046623180537",
+ "priceChange24hPercent": "-25.15",
+ "volume24h": "134261.30574238473892339",
+ "communityRecognized": false,
+ "key": "evm--56:0x265b3982ea730748100947f52561a4eab54affff",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0xf8a80d1cb9cfd70d03d655d9df42339846f3b3c8",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/1e720661a824f8fa58ab89efae4df73c288c398ec4528d3843ac3b7a5448d89b",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/1e720661a824f8fa58ab89efae4df73c288c398ec4528d3843ac3b7a5448d89b"
+ ],
+ "name": "Intel xStock",
+ "symbol": "INTCx",
+ "marketCap": "483659047740.336",
+ "price": "100.6050675",
+ "priceChange24hPercent": "0.66",
+ "volume24h": "857.06949906281404",
+ "communityRecognized": false,
+ "key": "evm--196:0xf8a80d1cb9cfd70d03d655d9df42339846f3b3c8",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0xb63efbc28860c8097e341de1fcf59456161e9d98",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/40d968af1f2303f4272fd4cee6151e7094b40350c2b598d5ce76e20cf90e44d4",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/40d968af1f2303f4272fd4cee6151e7094b40350c2b598d5ce76e20cf90e44d4"
+ ],
+ "name": "Sandisk Corporation xStock",
+ "symbol": "SNDKx",
+ "marketCap": "256808803334.25",
+ "price": "1812.751875",
+ "priceChange24hPercent": "0.57",
+ "volume24h": "657.948325351870651",
+ "communityRecognized": false,
+ "key": "evm--196:0xb63efbc28860c8097e341de1fcf59456161e9d98",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0xf6a873bae4ba1b304e45df52a4b7d176e1c6a8c4",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/b9ac0da769e65f7d17afb241122f9b4dc45269526fe2ae4a010d494d2833c128",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/b9ac0da769e65f7d17afb241122f9b4dc45269526fe2ae4a010d494d2833c128"
+ ],
+ "name": "Micron Technology xStock",
+ "symbol": "MUx",
+ "marketCap": "1146219040390",
+ "price": "1054.6614",
+ "priceChange24hPercent": "0.81",
+ "volume24h": "1155.15484453397574",
+ "communityRecognized": false,
+ "key": "evm--196:0xf6a873bae4ba1b304e45df52a4b7d176e1c6a8c4",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0xae2f842ef90c0d5213259ab82639d5bbf649b08e",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/bd9738f19f874389dfe2c4479c32384f2f14538182cf1a1be0e349146c7b02fa",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/bd9738f19f874389dfe2c4479c32384f2f14538182cf1a1be0e349146c7b02fa"
+ ],
+ "name": "MicroStrategy xStock",
+ "symbol": "MSTRx",
+ "marketCap": "47161642520",
+ "price": "141.2502",
+ "priceChange24hPercent": "-0.25",
+ "volume24h": "1815.07071973999083",
+ "communityRecognized": false,
+ "key": "evm--196:0xae2f842ef90c0d5213259ab82639d5bbf649b08e",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "HcRLc9VDgjLeK154xDawfb1dmVJ98DoSqcwTHGqiDeJR",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-HcRLc9VDgjLeK154xDawfb1dmVJ98DoSqcwTHGqiDeJR-1788454854698.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-HcRLc9VDgjLeK154xDawfb1dmVJ98DoSqcwTHGqiDeJR-1788454854698.png"
+ ],
+ "name": "Anonymous Cat",
+ "symbol": "ZCAT",
+ "marketCap": "133320996.34062627923315211",
+ "price": "0.13759910078028604069",
+ "priceChange24hPercent": "3.06",
+ "volume24h": "492085.89115577219815435",
+ "communityRecognized": true,
+ "key": "sol--101:HcRLc9VDgjLeK154xDawfb1dmVJ98DoSqcwTHGqiDeJR",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "6GmAFSYs4gk3FDao5FzzySQpPZaWsa4rUJHacpMpUNgx",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-6GmAFSYs4gk3FDao5FzzySQpPZaWsa4rUJHacpMpUNgx-1784905991044.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-6GmAFSYs4gk3FDao5FzzySQpPZaWsa4rUJHacpMpUNgx-1784905991044.png"
+ ],
+ "name": "STONK",
+ "symbol": "STONK",
+ "marketCap": "162373475.987123376569100375",
+ "price": "0.18660396117879934312",
+ "priceChange24hPercent": "-9.08",
+ "volume24h": "5686134.91493532139190409",
+ "communityRecognized": true,
+ "key": "sol--101:6GmAFSYs4gk3FDao5FzzySQpPZaWsa4rUJHacpMpUNgx",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "HhXR4SiHzDNYCFXJBpCYg86T4NhzsD4vz4Y5Jtz6ozKx",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/f726c684810fa3c317fc93c5be53f978bd8c53c43e640ba1356f234c0f0904b0",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/f726c684810fa3c317fc93c5be53f978bd8c53c43e640ba1356f234c0f0904b0"
+ ],
+ "name": "OpenAI PreStocks",
+ "symbol": "OPENAI",
+ "marketCap": "2899816.482073688742072969",
+ "price": "0.00002899816519822018",
+ "priceChange24hPercent": "12.14",
+ "volume24h": "16763602.55918203278",
+ "communityRecognized": false,
+ "key": "sol--101:HhXR4SiHzDNYCFXJBpCYg86T4NhzsD4vz4Y5Jtz6ozKx",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0x90a2a4c76b5d8c0bc892a69ea28aa775a8f2dd48",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/ab5f79fac87972384ec00b70cbf1425ff50db03221af2080d087d63a2a6ecaa4",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/ab5f79fac87972384ec00b70cbf1425ff50db03221af2080d087d63a2a6ecaa4"
+ ],
+ "name": "SP500 xStock",
+ "symbol": "SPYx",
+ "marketCap": "819712532527.486",
+ "price": "770.2150375",
+ "priceChange24hPercent": "0.07",
+ "volume24h": "2318.0971839065910877",
+ "communityRecognized": false,
+ "key": "evm--196:0x90a2a4c76b5d8c0bc892a69ea28aa775a8f2dd48",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xc9a981fee1f9dec688bb123ccdecc63d0debfc4e",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xc9a981fee1f9dec688bb123ccdecc63d0debfc4e-1786795236632.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xc9a981fee1f9dec688bb123ccdecc63d0debfc4e-1786795236632.png"
+ ],
+ "name": "SPDR Gold Trust • Robinhood Token",
+ "symbol": "GLD",
+ "marketCap": "6332935.761003106287310793",
+ "price": "407.36193140034649512163",
+ "priceChange24hPercent": "-0.04",
+ "volume24h": "302495.726931225721584378",
+ "communityRecognized": false,
+ "key": "evm--4663:0xc9a981fee1f9dec688bb123ccdecc63d0debfc4e",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0xb91b2771554e6a23e2e5e04f926e8757befb1111",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/5334d97a49e68503fbc62629a9272d347e518bb2727f81de4a59a3556484e3ea",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/5334d97a49e68503fbc62629a9272d347e518bb2727f81de4a59a3556484e3ea"
+ ],
+ "name": "Xstocks Index",
+ "symbol": "XSTX",
+ "marketCap": "255777.098614140490133737",
+ "price": "0.00026338099643166876",
+ "priceChange24hPercent": "-5.9",
+ "volume24h": "1297.6280378915369864",
+ "communityRecognized": false,
+ "key": "evm--196:0xb91b2771554e6a23e2e5e04f926e8757befb1111",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "XsbEhLAtcf6HdfpFZ5xEMdqW8nfAvcsP5bdudRLJzJp",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-XsbEhLAtcf6HdfpFZ5xEMdqW8nfAvcsP5bdudRLJzJp-1758104899904.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-XsbEhLAtcf6HdfpFZ5xEMdqW8nfAvcsP5bdudRLJzJp-1758104899904.png"
+ ],
+ "name": "Apple xStock",
+ "symbol": "AAPLx",
+ "marketCap": "12673613.761183361201682025",
+ "price": "319.1650975",
+ "priceChange24hPercent": "-0.07",
+ "volume24h": "137460.262160790288421337",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 xStock 代币化发行",
+ "subtitle": "苹果",
+ "source": "xstock",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/xstock.png",
+ "isOpen": true
+ },
+ "key": "sol--101:XsbEhLAtcf6HdfpFZ5xEMdqW8nfAvcsP5bdudRLJzJp",
+ "kind": "stock",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xfe189e97832da1573e4e4ff034f4ffc3a15c7777",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xfe189e97832da1573e4e4ff034f4ffc3a15c7777-1785917292044.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xfe189e97832da1573e4e4ff034f4ffc3a15c7777-1785917292044.png"
+ ],
+ "name": "MarsCoin",
+ "symbol": "MarsCoin",
+ "marketCap": "142584555.278465511990526779",
+ "price": "0.1426398633561573111",
+ "priceChange24hPercent": "-1.63",
+ "volume24h": "517413.287650957100838471",
+ "communityRecognized": true,
+ "key": "evm--56:0xfe189e97832da1573e4e4ff034f4ffc3a15c7777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0xc845b2894dbddd03858fd2d643b4ef725fe0849d",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/c962a251f19235c6d17ad9faab7ae8a2269a67dacdece8b4d65da8a626688ac4",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/c962a251f19235c6d17ad9faab7ae8a2269a67dacdece8b4d65da8a626688ac4"
+ ],
+ "name": "NVIDIA xStock",
+ "symbol": "NVDAx",
+ "marketCap": "5557847544000",
+ "price": "232.9250375",
+ "priceChange24hPercent": "-",
+ "volume24h": "10954.3394628699382666",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 xStock 代币化发行",
+ "subtitle": "英伟达",
+ "source": "xstock",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/xstock.png",
+ "isOpen": true
+ },
+ "key": "evm--196:0xc845b2894dbddd03858fd2d643b4ef725fe0849d",
+ "kind": "stock",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ }
+ ],
+ "trending||4h|all": [
+ {
+ "isNative": true,
+ "networkId": "btc--0",
+ "address": "",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/btc--0/tokens/address-.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/btc--0/tokens/address-.png"
+ ],
+ "name": "Bitcoin",
+ "symbol": "BTC",
+ "marketCap": "1583042059097",
+ "price": "78831",
+ "priceChange24hPercent": "-",
+ "volume24h": "23017300141",
+ "communityRecognized": true,
+ "key": "btc--0:",
+ "kind": "token",
+ "sourceCategory": "trending"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x39dbed3a2bd333467115de45665cc57f813c4571",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x39dbed3a2bd333467115de45665cc57f813c4571-1785145437955.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x39dbed3a2bd333467115de45665cc57f813c4571-1785145437955.png"
+ ],
+ "name": "Pons",
+ "symbol": "PONS",
+ "marketCap": "492090210.628701850188706957",
+ "price": "0.70299010362807592567",
+ "priceChange24hPercent": "-4.09",
+ "volume24h": "16146657.915699078033185932",
+ "communityRecognized": true,
+ "key": "evm--4663:0x39dbed3a2bd333467115de45665cc57f813c4571",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x4a72b9702f991b790788f8afa9e7112541f4e8f8",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/a2e5ad0ff8689f1c746d6b07fd9718545cd44c67e13dabe8ba7242d613586821",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/a2e5ad0ff8689f1c746d6b07fd9718545cd44c67e13dabe8ba7242d613586821"
+ ],
+ "name": "Route",
+ "symbol": "ROUTE",
+ "marketCap": "5513988.756988728235134089",
+ "price": "0.00551398875698872824",
+ "priceChange24hPercent": "-19.78",
+ "volume24h": "4336204.708876471256235535",
+ "communityRecognized": false,
+ "key": "evm--4663:0x4a72b9702f991b790788f8afa9e7112541f4e8f8",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x888656062164473c93c06ca89ae4d868d606ffff",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/4a563ac1c0cd1b7ed43429ee1ad5750a8ca22c0eaaa08d0427a8a86e8a2348f0",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/4a563ac1c0cd1b7ed43429ee1ad5750a8ca22c0eaaa08d0427a8a86e8a2348f0"
+ ],
+ "name": "Fat Panda",
+ "symbol": "FATPANDA",
+ "marketCap": "2027091.807825832449362322",
+ "price": "0.00202709180782583245",
+ "priceChange24hPercent": "-57.98",
+ "volume24h": "2810906.91851794531839974",
+ "communityRecognized": false,
+ "key": "evm--56:0x888656062164473c93c06ca89ae4d868d606ffff",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xe2324ff2a59f8ecba8c321c6466e59121c00e795",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/84804585551812a64183c44a4e291f2332c9a5ff2d07e52dbcd3b81d60c989b3",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/84804585551812a64183c44a4e291f2332c9a5ff2d07e52dbcd3b81d60c989b3"
+ ],
+ "name": "Commodity Market Exchange",
+ "symbol": "CME",
+ "marketCap": "2967918.763114089807810821",
+ "price": "0.00296791876311408981",
+ "priceChange24hPercent": "63509.81",
+ "volume24h": "14369389.34495411029489922",
+ "communityRecognized": false,
+ "key": "evm--4663:0xe2324ff2a59f8ecba8c321c6466e59121c00e795",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xc9d825e83aada475bd4d38c8ca984ed746277777",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xc9d825e83aada475bd4d38c8ca984ed746277777-1788595746569.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xc9d825e83aada475bd4d38c8ca984ed746277777-1788595746569.png"
+ ],
+ "name": "Stonks",
+ "symbol": "Stonks",
+ "marketCap": "3615724.513021514179669825",
+ "price": "0.00361572451302151418",
+ "priceChange24hPercent": "-31.95",
+ "volume24h": "2911331.025790078079152235",
+ "communityRecognized": true,
+ "key": "evm--56:0xc9d825e83aada475bd4d38c8ca984ed746277777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xd270d4e1ec6e6e0d28c0ecb8be966ec75997ffff",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/f3bf6d8a8bc7f4be0ec6949fa0ebf538953fcd6443cd6681e394f790b6546a1e",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/f3bf6d8a8bc7f4be0ec6949fa0ebf538953fcd6443cd6681e394f790b6546a1e"
+ ],
+ "name": "4Stock",
+ "symbol": "4Stock",
+ "marketCap": "8523084.639287610962788439",
+ "price": "0.00852308463928761096",
+ "priceChange24hPercent": "12890.76",
+ "volume24h": "6087150.637853067013221738",
+ "communityRecognized": false,
+ "key": "evm--56:0xd270d4e1ec6e6e0d28c0ecb8be966ec75997ffff",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x6b1d42927b1a84ec28fa88d4fc6fa7af404966be",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x6b1d42927b1a84ec28fa88d4fc6fa7af404966be-1788091561508.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x6b1d42927b1a84ec28fa88d4fc6fa7af404966be-1788091561508.png"
+ ],
+ "name": "PAIR",
+ "symbol": "PAIR",
+ "marketCap": "13922294.949687588667787664",
+ "price": "0.01553740059562339121",
+ "priceChange24hPercent": "-0.51",
+ "volume24h": "1095319.143863372989047109",
+ "communityRecognized": false,
+ "key": "evm--4663:0x6b1d42927b1a84ec28fa88d4fc6fa7af404966be",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x8fdb0647e2bf11c8d88ef7825905f5f428864444",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/f3bf6d8a8bc7f4be0ec6949fa0ebf538953fcd6443cd6681e394f790b6546a1e",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/f3bf6d8a8bc7f4be0ec6949fa0ebf538953fcd6443cd6681e394f790b6546a1e"
+ ],
+ "name": "4cat",
+ "symbol": "4cat",
+ "marketCap": "132186.874931726983465779",
+ "price": "0.00013218687493172698",
+ "priceChange24hPercent": "46.13",
+ "volume24h": "181945.5328159783217701",
+ "communityRecognized": false,
+ "key": "evm--56:0x8fdb0647e2bf11c8d88ef7825905f5f428864444",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x17616c8f6cacf14fcff63f3188a30691802effff",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/cfcf37bcd1b22ee8594b38b7c1bbb0d2aafe3f8ad70ec9d9cbd108990326678d",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/cfcf37bcd1b22ee8594b38b7c1bbb0d2aafe3f8ad70ec9d9cbd108990326678d"
+ ],
+ "name": "Built and Code",
+ "symbol": "BNC",
+ "marketCap": "964318.21634500481353988",
+ "price": "0.00096431821634500481",
+ "priceChange24hPercent": "102.52",
+ "volume24h": "379219.914240576328794233",
+ "communityRecognized": false,
+ "key": "evm--56:0x17616c8f6cacf14fcff63f3188a30691802effff",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x0000000005aca17e8bd5779fc87e13cb433aed24",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x0000000005aca17e8bd5779fc87e13cb433aed24-1788697955302.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x0000000005aca17e8bd5779fc87e13cb433aed24-1788697955302.png"
+ ],
+ "name": "NUKE",
+ "symbol": "NUKE",
+ "marketCap": "10311079.007267832638383179",
+ "price": "74.06419772143485597677",
+ "priceChange24hPercent": "63.13",
+ "volume24h": "489763.3130870900707509",
+ "communityRecognized": false,
+ "key": "evm--4663:0x0000000005aca17e8bd5779fc87e13cb433aed24",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xa6b53819f5bf521945fceb1f9bbb3a7a7b4effff",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/e5fb48d54702b49bd31d0551378667606ad6bb5e4e33b94fc32179b14469f2d0",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/e5fb48d54702b49bd31d0551378667606ad6bb5e4e33b94fc32179b14469f2d0"
+ ],
+ "name": "CEA Industries",
+ "symbol": "Vape",
+ "marketCap": "177628.148368267318484658",
+ "price": "0.00017762814836826732",
+ "priceChange24hPercent": "-25.15",
+ "volume24h": "305085.309801805080994359",
+ "communityRecognized": false,
+ "key": "evm--56:0xa6b53819f5bf521945fceb1f9bbb3a7a7b4effff",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xe9337dde3dd9e97f1f45a56412767ce5098e7777",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xe9337dde3dd9e97f1f45a56412767ce5098e7777-1785657919485.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xe9337dde3dd9e97f1f45a56412767ce5098e7777-1785657919485.png"
+ ],
+ "name": "何必东奔西走 币安全部都有",
+ "symbol": "币有",
+ "marketCap": "3164666.390133842302734257",
+ "price": "0.00316466639033410038",
+ "priceChange24hPercent": "-17.45",
+ "volume24h": "350402.64795389564211057",
+ "communityRecognized": false,
+ "key": "evm--56:0xe9337dde3dd9e97f1f45a56412767ce5098e7777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xab093def657f15df31b33922a95e047add645b29",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xab093def657f15df31b33922a95e047add645b29-1788523212752.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xab093def657f15df31b33922a95e047add645b29-1788523212752.png"
+ ],
+ "name": "MUSHROOM",
+ "symbol": "SHROOM",
+ "marketCap": "31176538.261845186171021435",
+ "price": "0.03157702073495300312",
+ "priceChange24hPercent": "13.39",
+ "volume24h": "1720310.842500504604743001",
+ "communityRecognized": true,
+ "key": "evm--4663:0xab093def657f15df31b33922a95e047add645b29",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x2e8c31162b855a2ffa90f6f8634643ad6f111e18",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x2e8c31162b855a2ffa90f6f8634643ad6f111e18-1785845221968.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x2e8c31162b855a2ffa90f6f8634643ad6f111e18-1785845221968.png"
+ ],
+ "name": "Artificial Inu",
+ "symbol": "AI",
+ "marketCap": "260096649.643077091323952",
+ "price": "0.26235443428571428571",
+ "priceChange24hPercent": "13.6",
+ "volume24h": "10580403.972418249353445796",
+ "communityRecognized": true,
+ "key": "evm--4663:0x2e8c31162b855a2ffa90f6f8634643ad6f111e18",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x7bc70ae0f2a67d2fdc0180a697a611f21c857777",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x7bc70ae0f2a67d2fdc0180a697a611f21c857777-1788768091330.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x7bc70ae0f2a67d2fdc0180a697a611f21c857777-1788768091330.png"
+ ],
+ "name": "BEN",
+ "symbol": "BEN",
+ "marketCap": "4691268.880796520376779672",
+ "price": "0.00469126888091739643",
+ "priceChange24hPercent": "-27.62",
+ "volume24h": "2224434.283706369883653811",
+ "communityRecognized": false,
+ "key": "evm--56:0x7bc70ae0f2a67d2fdc0180a697a611f21c857777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xd9db30bb0d2b8d2eae3826a1372117e058791e18",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xd9db30bb0d2b8d2eae3826a1372117e058791e18-1788091222725.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xd9db30bb0d2b8d2eae3826a1372117e058791e18-1788091222725.png"
+ ],
+ "name": "Memory cow Moo",
+ "symbol": "MOO",
+ "marketCap": "25774715.519042009953180042",
+ "price": "0.02606258716386983931",
+ "priceChange24hPercent": "3.39",
+ "volume24h": "2380749.72713074393529469",
+ "communityRecognized": true,
+ "key": "evm--4663:0xd9db30bb0d2b8d2eae3826a1372117e058791e18",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xb3a1e1f7ae6c90c707ec3c75e99c359482fea5b9",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/488d50fb3eb6f79c9440d809ef90dc3a197facbca4792e913cf6d2ab384a3fbe",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/488d50fb3eb6f79c9440d809ef90dc3a197facbca4792e913cf6d2ab384a3fbe"
+ ],
+ "name": "Sock",
+ "symbol": "SOCK",
+ "marketCap": "5055307.749537088461358135",
+ "price": "0.00505639238387653219",
+ "priceChange24hPercent": "-19.14",
+ "volume24h": "1880882.225676033506919861",
+ "communityRecognized": false,
+ "key": "evm--56:0xb3a1e1f7ae6c90c707ec3c75e99c359482fea5b9",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xfa6d9b504848606eb9aec04ccc161d169b3f2159",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xfa6d9b504848606eb9aec04ccc161d169b3f2159-1788768839130.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xfa6d9b504848606eb9aec04ccc161d169b3f2159-1788768839130.png"
+ ],
+ "name": "BREW",
+ "symbol": "BREW",
+ "marketCap": "6538711.799489674177314067",
+ "price": "0.00653871179948967418",
+ "priceChange24hPercent": "-21.61",
+ "volume24h": "1514184.787209695397571252",
+ "communityRecognized": true,
+ "key": "evm--56:0xfa6d9b504848606eb9aec04ccc161d169b3f2159",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x7ba36be14dd06ba492f08be6c1b2979c1d0b652c",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x7ba36be14dd06ba492f08be6c1b2979c1d0b652c-1788178016235.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x7ba36be14dd06ba492f08be6c1b2979c1d0b652c-1788178016235.png"
+ ],
+ "name": "PerpsHood",
+ "symbol": "PERPSHOOD",
+ "marketCap": "3111996.446146368568450989",
+ "price": "0.00315860300715415141",
+ "priceChange24hPercent": "-4.81",
+ "volume24h": "213827.1445454460722907",
+ "communityRecognized": false,
+ "key": "evm--4663:0x7ba36be14dd06ba492f08be6c1b2979c1d0b652c",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x6d11782ef6cbe773da2defef612f9a57c54012bf",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/aed9300fe93af8a077cf133b5d703e28386f95d7724261f173da91a4cac7df65",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/aed9300fe93af8a077cf133b5d703e28386f95d7724261f173da91a4cac7df65"
+ ],
+ "name": "Macintosh",
+ "symbol": "MACINTOSH",
+ "marketCap": "1400165.612151950161775918",
+ "price": "0.00140016561215195016",
+ "priceChange24hPercent": "98.5",
+ "volume24h": "126266.81387384450524869",
+ "communityRecognized": false,
+ "key": "evm--4663:0x6d11782ef6cbe773da2defef612f9a57c54012bf",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x15d36b6a28d8327abc7afabf0f106ae2c9af5c4d",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x15d36b6a28d8327abc7afabf0f106ae2c9af5c4d-1788523244923.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x15d36b6a28d8327abc7afabf0f106ae2c9af5c4d-1788523244923.png"
+ ],
+ "name": "Pare",
+ "symbol": "PARE",
+ "marketCap": "12472779.347945200550616218",
+ "price": "0.01247277934794520055",
+ "priceChange24hPercent": "-0.52",
+ "volume24h": "884002.614093310965744768",
+ "communityRecognized": false,
+ "key": "evm--4663:0x15d36b6a28d8327abc7afabf0f106ae2c9af5c4d",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x79a74fd91f8e1c4ab8e76253dec5c91f3094393f",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/e1f481a4066feec841bf3345c090a6cdd9fd2274a972cf1981f3a0a234f42d9c",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/e1f481a4066feec841bf3345c090a6cdd9fd2274a972cf1981f3a0a234f42d9c"
+ ],
+ "name": "Superstables",
+ "symbol": "STBL",
+ "marketCap": "430052.948915032286294785",
+ "price": "0.00043005294891503229",
+ "priceChange24hPercent": "9558.96",
+ "volume24h": "1204942.26638986803570673",
+ "communityRecognized": false,
+ "key": "evm--4663:0x79a74fd91f8e1c4ab8e76253dec5c91f3094393f",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x7163ae1b5aea2f09ebc609c52b4dcac0a7a4bc2d",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/b565852235f4b58795118e627a62621101b692c4e2e2801f518600ad55c59755",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/b565852235f4b58795118e627a62621101b692c4e2e2801f518600ad55c59755"
+ ],
+ "name": "GAGE",
+ "symbol": "GAGE",
+ "marketCap": "2031316.219519833826009659",
+ "price": "0.00203131621951983383",
+ "priceChange24hPercent": "40.66",
+ "volume24h": "2229815.54342823694595082",
+ "communityRecognized": false,
+ "key": "evm--4663:0x7163ae1b5aea2f09ebc609c52b4dcac0a7a4bc2d",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x198dba421a7db566a90da5de7901abe3443b4444",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x198dba421a7db566a90da5de7901abe3443b4444-1783844840152.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x198dba421a7db566a90da5de7901abe3443b4444-1783844840152.png"
+ ],
+ "name": "富贵",
+ "symbol": "富贵",
+ "marketCap": "2004608.783658215940488177",
+ "price": "0.00200460880490616635",
+ "priceChange24hPercent": "-17.22",
+ "volume24h": "548053.666653772427830005",
+ "communityRecognized": false,
+ "key": "evm--56:0x198dba421a7db566a90da5de7901abe3443b4444",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xa3602804e096cb73bd8344afc1ff3f3390b899c5",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xa3602804e096cb73bd8344afc1ff3f3390b899c5-1788697149485.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xa3602804e096cb73bd8344afc1ff3f3390b899c5-1788697149485.png"
+ ],
+ "name": "PEZ",
+ "symbol": "PEZ",
+ "marketCap": "2552015.440732567570403185",
+ "price": "0.00255202107719303053",
+ "priceChange24hPercent": "-22.78",
+ "volume24h": "327856.89963913760885914",
+ "communityRecognized": false,
+ "key": "evm--4663:0xa3602804e096cb73bd8344afc1ff3f3390b899c5",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x76ed1e2a8fc3873fcb5c514688ca2fe8a3600b7f",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/1dbcb030f10554487ca05c3aaa7fcc97cef5b687e39b63bafb0d000d20616792",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/1dbcb030f10554487ca05c3aaa7fcc97cef5b687e39b63bafb0d000d20616792"
+ ],
+ "name": "LAPTOP",
+ "symbol": "LAPTOP",
+ "marketCap": "1177540.648375063973042263",
+ "price": "0.00117754064837506397",
+ "priceChange24hPercent": "-19.31",
+ "volume24h": "870909.357078412417470158",
+ "communityRecognized": false,
+ "key": "evm--4663:0x76ed1e2a8fc3873fcb5c514688ca2fe8a3600b7f",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x98096d17e191b3da1d5f99a6d7b3584351b11e18",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x98096d17e191b3da1d5f99a6d7b3584351b11e18-1787918411975.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x98096d17e191b3da1d5f99a6d7b3584351b11e18-1787918411975.png"
+ ],
+ "name": "Boner Coin",
+ "symbol": "BONER",
+ "marketCap": "58129181.519069637833904517",
+ "price": "0.05812919390713559434",
+ "priceChange24hPercent": "-3.5",
+ "volume24h": "2642194.239637736357051021",
+ "communityRecognized": true,
+ "key": "evm--4663:0x98096d17e191b3da1d5f99a6d7b3584351b11e18",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x12d5ee7917ca430073c3a638ee1e6f0648a98a01",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x12d5ee7917ca430073c3a638ee1e6f0648a98a01-1788350677314.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x12d5ee7917ca430073c3a638ee1e6f0648a98a01-1788350677314.png"
+ ],
+ "name": "FATCOIN",
+ "symbol": "FATCOIN",
+ "marketCap": "15073886.50104684331489565",
+ "price": "0.01507388650104684331",
+ "priceChange24hPercent": "5.54",
+ "volume24h": "871939.854714300386854286",
+ "communityRecognized": false,
+ "key": "evm--4663:0x12d5ee7917ca430073c3a638ee1e6f0648a98a01",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xafe41f4356c24f716111de1fbbc84e061d291e18",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xafe41f4356c24f716111de1fbbc84e061d291e18-1788264039086.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xafe41f4356c24f716111de1fbbc84e061d291e18-1788264039086.png"
+ ],
+ "name": "Cache Cow",
+ "symbol": "CACHE",
+ "marketCap": "1056454.727534532364284546",
+ "price": "0.00105645472753453236",
+ "priceChange24hPercent": "52.91",
+ "volume24h": "338163.445388693331675491",
+ "communityRecognized": false,
+ "key": "evm--4663:0xafe41f4356c24f716111de1fbbc84e061d291e18",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xd5f1afea47b1a9eab414d2ee740cf1d6d039e725",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xd5f1afea47b1a9eab414d2ee740cf1d6d039e725-1788091431352.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xd5f1afea47b1a9eab414d2ee740cf1d6d039e725-1788091431352.png"
+ ],
+ "name": "microduck",
+ "symbol": "microduck",
+ "marketCap": "18335033.149710684136041623",
+ "price": "0.01833503314971068414",
+ "priceChange24hPercent": "5.43",
+ "volume24h": "1010135.00640750938408628",
+ "communityRecognized": false,
+ "key": "evm--4663:0xd5f1afea47b1a9eab414d2ee740cf1d6d039e725",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "Ai66LHZG9MCzg1WKdawwqduVAXpNDUuV8M3uyq5ppump",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-Ai66LHZG9MCzg1WKdawwqduVAXpNDUuV8M3uyq5ppump-1785164716552.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-Ai66LHZG9MCzg1WKdawwqduVAXpNDUuV8M3uyq5ppump-1785164716552.png"
+ ],
+ "name": "Catecoin",
+ "symbol": "CATE",
+ "marketCap": "27707910.562215997854014575",
+ "price": "0.028737823444707848",
+ "priceChange24hPercent": "-3.86",
+ "volume24h": "746446.40762749999",
+ "communityRecognized": true,
+ "key": "sol--101:Ai66LHZG9MCzg1WKdawwqduVAXpNDUuV8M3uyq5ppump",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x020bfc650a365f8bb26819deaabf3e21291018b4",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x020bfc650a365f8bb26819deaabf3e21291018b4-1784778353843.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x020bfc650a365f8bb26819deaabf3e21291018b4-1784778353843.png"
+ ],
+ "name": "Cash Cat",
+ "symbol": "CASHCAT",
+ "marketCap": "187487137.469583419739720026",
+ "price": "0.1897418850876631032",
+ "priceChange24hPercent": "0.13",
+ "volume24h": "3910383.176401849795891726",
+ "communityRecognized": true,
+ "key": "evm--4663:0x020bfc650a365f8bb26819deaabf3e21291018b4",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xbe98b75361935b18d688409424a869a4c3dc7401",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xbe98b75361935b18d688409424a869a4c3dc7401-1788436898916.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xbe98b75361935b18d688409424a869a4c3dc7401-1788436898916.png"
+ ],
+ "name": "Send Nudes",
+ "symbol": "NUDES",
+ "marketCap": "14739708.255253167203433541",
+ "price": "0.0147397082552531672",
+ "priceChange24hPercent": "-11.74",
+ "volume24h": "780854.04072707256929968",
+ "communityRecognized": false,
+ "key": "evm--4663:0xbe98b75361935b18d688409424a869a4c3dc7401",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xbc9cc4b93a08b2dfba87067a9c53e713db3314ce",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/a34bd343ce2418e2688d9be4430fef2415dee4b660c25a3bbbcaaf3481e299a4",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/a34bd343ce2418e2688d9be4430fef2415dee4b660c25a3bbbcaaf3481e299a4"
+ ],
+ "name": "Pink Sheets",
+ "symbol": "PINK",
+ "marketCap": "966041.535560089479163395",
+ "price": "0.00096604153556008948",
+ "priceChange24hPercent": "2.31",
+ "volume24h": "1130579.3054512794303659",
+ "communityRecognized": false,
+ "key": "evm--4663:0xbc9cc4b93a08b2dfba87067a9c53e713db3314ce",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xaa07a0e9209e16ac99708c3ec70159c6ef3128a3",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xaa07a0e9209e16ac99708c3ec70159c6ef3128a3-1788352120153.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xaa07a0e9209e16ac99708c3ec70159c6ef3128a3-1788352120153.png"
+ ],
+ "name": "Orbio.so",
+ "symbol": "ORBIO",
+ "marketCap": "17641751.176414680990139658",
+ "price": "0.01857026439622597999",
+ "priceChange24hPercent": "-5.75",
+ "volume24h": "197568.401518169894316807",
+ "communityRecognized": false,
+ "key": "evm--4663:0xaa07a0e9209e16ac99708c3ec70159c6ef3128a3",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x62cd5cd9d354a2a50affe9efa21c8918b9640a5b",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x62cd5cd9d354a2a50affe9efa21c8918b9640a5b-1788698087258.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x62cd5cd9d354a2a50affe9efa21c8918b9640a5b-1788698087258.png"
+ ],
+ "name": "LADY Exchange",
+ "symbol": "LDX",
+ "marketCap": "830756.516496992522362611",
+ "price": "0.00083075651649699252",
+ "priceChange24hPercent": "24.69",
+ "volume24h": "271306.6305109773473508",
+ "communityRecognized": false,
+ "key": "evm--4663:0x62cd5cd9d354a2a50affe9efa21c8918b9640a5b",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x18e674231a58c239dc7daedcffe15ec3a24cff5c",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x18e674231a58c239dc7daedcffe15ec3a24cff5c-1786190410593.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x18e674231a58c239dc7daedcffe15ec3a24cff5c-1786190410593.png"
+ ],
+ "name": "Hookr.fun",
+ "symbol": "HOOKR",
+ "marketCap": "16448604.188970785446820133",
+ "price": "0.01650871145016584956",
+ "priceChange24hPercent": "6.35",
+ "volume24h": "648466.111936241302996909",
+ "communityRecognized": true,
+ "key": "evm--4663:0x18e674231a58c239dc7daedcffe15ec3a24cff5c",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xe2dae1c072b9f66bed999873b94798b2152af7e1",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xe2dae1c072b9f66bed999873b94798b2152af7e1-1788697020328.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xe2dae1c072b9f66bed999873b94798b2152af7e1-1788697020328.png"
+ ],
+ "name": "Arbitrage Ape",
+ "symbol": "AA",
+ "marketCap": "4396637.454331094546864844",
+ "price": "0.00447610984444444444",
+ "priceChange24hPercent": "26.86",
+ "volume24h": "536339.691860546329228085",
+ "communityRecognized": false,
+ "key": "evm--4663:0xe2dae1c072b9f66bed999873b94798b2152af7e1",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xab35d04e1ee39c789c4a65d522417b3c7f2e4723",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/fac85c085d11f1aa6ae21cc9ad0bb550feec3cb25196bd13e83f1f5c0ef580c0",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/fac85c085d11f1aa6ae21cc9ad0bb550feec3cb25196bd13e83f1f5c0ef580c0"
+ ],
+ "name": "JT MARLIN",
+ "symbol": "MARLIN",
+ "marketCap": "1144437.558331443942601515",
+ "price": "0.00114443755833144394",
+ "priceChange24hPercent": "104.64",
+ "volume24h": "651449.74018777811458335",
+ "communityRecognized": false,
+ "key": "evm--4663:0xab35d04e1ee39c789c4a65d522417b3c7f2e4723",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x7df5daaf80e65dfcc7a1435d9b52bcf2b5753fbe",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x7df5daaf80e65dfcc7a1435d9b52bcf2b5753fbe-1788696318342.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x7df5daaf80e65dfcc7a1435d9b52bcf2b5753fbe-1788696318342.png"
+ ],
+ "name": "Unipcs",
+ "symbol": "UNIPCS",
+ "marketCap": "883442.765843656029919098",
+ "price": "0.00088468685713553576",
+ "priceChange24hPercent": "-44.12",
+ "volume24h": "148151.401489286569766495",
+ "communityRecognized": false,
+ "key": "evm--4663:0x7df5daaf80e65dfcc7a1435d9b52bcf2b5753fbe",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x11b70d0243baf75e85ce03201a92b5b7c33beb59",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x11b70d0243baf75e85ce03201a92b5b7c33beb59-1788697768561.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x11b70d0243baf75e85ce03201a92b5b7c33beb59-1788697768561.png"
+ ],
+ "name": "Robin the Frog",
+ "symbol": "ROBIN",
+ "marketCap": "4951105.534710210742606697",
+ "price": "0.00498856354285522312",
+ "priceChange24hPercent": "-40.43",
+ "volume24h": "497762.365945094673663914",
+ "communityRecognized": false,
+ "key": "evm--4663:0x11b70d0243baf75e85ce03201a92b5b7c33beb59",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "7Y7V1a4m2nWK7BMgbka5B4vR1pDvCK7yva3Hnrqkraze",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/fa21eef99efb8b7842c131cfa852344958bd4c32e76767446fd4983cb58d673c",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/fa21eef99efb8b7842c131cfa852344958bd4c32e76767446fd4983cb58d673c"
+ ],
+ "name": "Nasduck",
+ "symbol": "Nasduck",
+ "marketCap": "4908241.805986110984446084",
+ "price": "0.00510424347874",
+ "priceChange24hPercent": "17.6",
+ "volume24h": "2435047.50397129751",
+ "communityRecognized": false,
+ "key": "sol--101:7Y7V1a4m2nWK7BMgbka5B4vR1pDvCK7yva3Hnrqkraze",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x8602b2fd8d105a56d3152e936e66b1d414142148",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/46be4fa022c8cf4f26df79bb27838188b1097a22d2d5668c723c6177a9bad8e6",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/46be4fa022c8cf4f26df79bb27838188b1097a22d2d5668c723c6177a9bad8e6"
+ ],
+ "name": "Artificial Pepe",
+ "symbol": "AP",
+ "marketCap": "1104363.861105462063331123",
+ "price": "0.00110436386110546206",
+ "priceChange24hPercent": "-13.33",
+ "volume24h": "32233.8194921087521122",
+ "communityRecognized": false,
+ "key": "evm--1:0x8602b2fd8d105a56d3152e936e66b1d414142148",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xe934e36a439c94017b64a3fece66af12099abf50",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xe934e36a439c94017b64a3fece66af12099abf50-1785290631562.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xe934e36a439c94017b64a3fece66af12099abf50-1785290631562.png"
+ ],
+ "name": "StonkBroker",
+ "symbol": "STONKBROKER",
+ "marketCap": "20853756.406829018928193164",
+ "price": "0.01704699495204528424",
+ "priceChange24hPercent": "8.21",
+ "volume24h": "400538.535700063273156496",
+ "communityRecognized": true,
+ "key": "evm--4663:0xe934e36a439c94017b64a3fece66af12099abf50",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xca9c78dd337a67f6e0077f65f5e9218719d30edf",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xca9c78dd337a67f6e0077f65f5e9218719d30edf-1785280831816.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xca9c78dd337a67f6e0077f65f5e9218719d30edf-1785280831816.png"
+ ],
+ "name": "NetNet",
+ "symbol": "NET",
+ "marketCap": "3912071.700402159026486935",
+ "price": "667.15880452745362377868",
+ "priceChange24hPercent": "-7.94",
+ "volume24h": "1283192.4740038835170252",
+ "communityRecognized": false,
+ "key": "evm--4663:0xca9c78dd337a67f6e0077f65f5e9218719d30edf",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x2ab8a4dd2191989ac2898006df350b236d2b7777",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x2ab8a4dd2191989ac2898006df350b236d2b7777-1787990461314.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x2ab8a4dd2191989ac2898006df350b236d2b7777-1787990461314.png"
+ ],
+ "name": "施工猫",
+ "symbol": "Sue",
+ "marketCap": "3525503.639455193998936336",
+ "price": "0.00352550383167665148",
+ "priceChange24hPercent": "-27.93",
+ "volume24h": "452811.413455913668456784",
+ "communityRecognized": true,
+ "key": "evm--56:0x2ab8a4dd2191989ac2898006df350b236d2b7777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xe9bc5c6a86caa44fd7b469bf3cc7c563e4f77777",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xe9bc5c6a86caa44fd7b469bf3cc7c563e4f77777-1785831565492.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xe9bc5c6a86caa44fd7b469bf3cc7c563e4f77777-1785831565492.png"
+ ],
+ "name": "Giggle Mascot",
+ "symbol": "Max",
+ "marketCap": "12379501.526308740492021141",
+ "price": "0.012379502707187888",
+ "priceChange24hPercent": "-20.41",
+ "volume24h": "322268.615062358327555706",
+ "communityRecognized": false,
+ "key": "evm--56:0xe9bc5c6a86caa44fd7b469bf3cc7c563e4f77777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x451b42a15100c340ca12f7c66de06fac5ea2d751",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x451b42a15100c340ca12f7c66de06fac5ea2d751-1787832041620.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x451b42a15100c340ca12f7c66de06fac5ea2d751-1787832041620.png"
+ ],
+ "name": "Longbow",
+ "symbol": "BOW",
+ "marketCap": "5617064.857619246228264481",
+ "price": "0.00561706485761924623",
+ "priceChange24hPercent": "-1.59",
+ "volume24h": "289801.719935959923214063",
+ "communityRecognized": false,
+ "key": "evm--4663:0x451b42a15100c340ca12f7c66de06fac5ea2d751",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x2ae1ebeeda58b68a02dc313f7d90aa6ee546df86",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/2d70c37a83c6c75e1500068ec44d7246c00f6c3cc88134c29c693c7ac392bbc0",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/2d70c37a83c6c75e1500068ec44d7246c00f6c3cc88134c29c693c7ac392bbc0"
+ ],
+ "name": "Milk",
+ "symbol": "DC",
+ "marketCap": "45145.159758174458754856",
+ "price": "16.29547279369660484211",
+ "priceChange24hPercent": "-0.68",
+ "volume24h": "466170.6680865126006779",
+ "communityRecognized": false,
+ "key": "evm--4663:0x2ae1ebeeda58b68a02dc313f7d90aa6ee546df86",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xef67e3064bef1a27e81925ec7132f23e533bd5f6",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xef67e3064bef1a27e81925ec7132f23e533bd5f6-1788782588286.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xef67e3064bef1a27e81925ec7132f23e533bd5f6-1788782588286.png"
+ ],
+ "name": "Greatest Meme Ever",
+ "symbol": "GME",
+ "marketCap": "4341478.594365716540473077",
+ "price": "0.00434147859482062166",
+ "priceChange24hPercent": "15.78",
+ "volume24h": "668691.217559429348199688",
+ "communityRecognized": false,
+ "key": "evm--4663:0xef67e3064bef1a27e81925ec7132f23e533bd5f6",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x7dbf38976f6d3b9c529e7d9484a71898b409ee6a",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x7dbf38976f6d3b9c529e7d9484a71898b409ee6a-1788610442171.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x7dbf38976f6d3b9c529e7d9484a71898b409ee6a-1788610442171.png"
+ ],
+ "name": "ZZZ",
+ "symbol": "ZZZ",
+ "marketCap": "15387442.310273929590486193",
+ "price": "0.01831838370270705904",
+ "priceChange24hPercent": "-16.31",
+ "volume24h": "791689.026239080155056638",
+ "communityRecognized": false,
+ "key": "evm--4663:0x7dbf38976f6d3b9c529e7d9484a71898b409ee6a",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x9e92bbf2017bbfb7a06c975ca30e268cd2e57777",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/26946e97f0605097c389e90209fbbad48af1927f15b93093e2b999a0ccb97c16",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/26946e97f0605097c389e90209fbbad48af1927f15b93093e2b999a0ccb97c16"
+ ],
+ "name": "Google Dog",
+ "symbol": "股狗",
+ "marketCap": "332064.446510156775471152",
+ "price": "0.00033206444651015678",
+ "priceChange24hPercent": "-45.07",
+ "volume24h": "70814.60816419848157475",
+ "communityRecognized": false,
+ "key": "evm--56:0x9e92bbf2017bbfb7a06c975ca30e268cd2e57777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x78b96280c3347e0f58a7147b73eb0ec5ffff025d",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x78b96280c3347e0f58a7147b73eb0ec5ffff025d-1788697020328.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x78b96280c3347e0f58a7147b73eb0ec5ffff025d-1788697020328.png"
+ ],
+ "name": "Robinhood Hat Strategy",
+ "symbol": "RSTR",
+ "marketCap": "2672483.071352492209339559",
+ "price": "0.00275753651884972012",
+ "priceChange24hPercent": "-10.53",
+ "volume24h": "982214.471948278752045733",
+ "communityRecognized": false,
+ "key": "evm--4663:0x78b96280c3347e0f58a7147b73eb0ec5ffff025d",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x5173d45a1191ee33cbb7d8c7e65f21b04ed54802",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x5173d45a1191ee33cbb7d8c7e65f21b04ed54802-1788264029244.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x5173d45a1191ee33cbb7d8c7e65f21b04ed54802-1788264029244.png"
+ ],
+ "name": "Ramses",
+ "symbol": "RAM",
+ "marketCap": "3478986.19636493549686479",
+ "price": "0.06901691098656750338",
+ "priceChange24hPercent": "10.28",
+ "volume24h": "208085.822900208082488",
+ "communityRecognized": false,
+ "key": "evm--4663:0x5173d45a1191ee33cbb7d8c7e65f21b04ed54802",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "9GGGhze1NnQwcABTzxdxx89BEFLFtDueHhkwh6japump",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/a6063f660a1b276bba3b9832297a3b2830c66cc58a607c8cc44705fa1b422161",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/a6063f660a1b276bba3b9832297a3b2830c66cc58a607c8cc44705fa1b422161"
+ ],
+ "name": "CatGPT",
+ "symbol": "CatGPT",
+ "marketCap": "623368.05695686272495979",
+ "price": "0.0006395393467819042",
+ "priceChange24hPercent": "-11.46",
+ "volume24h": "360793.26248289703",
+ "communityRecognized": false,
+ "key": "sol--101:9GGGhze1NnQwcABTzxdxx89BEFLFtDueHhkwh6japump",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x0762c1708f0d23f86b29d6b857121ff7df357506",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x0762c1708f0d23f86b29d6b857121ff7df357506-1785931280846.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x0762c1708f0d23f86b29d6b857121ff7df357506-1785931280846.png"
+ ],
+ "name": "this is not a website",
+ "symbol": "website",
+ "marketCap": "5091239.638660972937935513",
+ "price": "0.00544262796825208841",
+ "priceChange24hPercent": "25.7",
+ "volume24h": "94072.00871213642505836",
+ "communityRecognized": false,
+ "key": "evm--4663:0x0762c1708f0d23f86b29d6b857121ff7df357506",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "8K5X85PAJHAAVSvYaAzgVPPAPsqqHmvx16ZyBiscYF8L",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-8K5X85PAJHAAVSvYaAzgVPPAPsqqHmvx16ZyBiscYF8L-1788368707252.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-8K5X85PAJHAAVSvYaAzgVPPAPsqqHmvx16ZyBiscYF8L-1788368707252.png"
+ ],
+ "name": "Vida Global CTO",
+ "symbol": "CTO",
+ "marketCap": "10388682.975129922967356653",
+ "price": "0.01133818095938549687",
+ "priceChange24hPercent": "61.36",
+ "volume24h": "3958115.039973176600567695",
+ "communityRecognized": false,
+ "key": "sol--101:8K5X85PAJHAAVSvYaAzgVPPAPsqqHmvx16ZyBiscYF8L",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xbeea1d618e533a387d941f58a7d4c9b7bd377777",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xbeea1d618e533a387d941f58a7d4c9b7bd377777-1786867206539.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xbeea1d618e533a387d941f58a7d4c9b7bd377777-1786867206539.png"
+ ],
+ "name": "牛来",
+ "symbol": "牛来",
+ "marketCap": "81315633.730996053986212561",
+ "price": "0.08131564191954314277",
+ "priceChange24hPercent": "-1.14",
+ "volume24h": "1900862.06105498668865985",
+ "communityRecognized": false,
+ "key": "evm--56:0xbeea1d618e533a387d941f58a7d4c9b7bd377777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xe1e5f00a9b0255ca4df85b3130ee0f77d15acc2d",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xe1e5f00a9b0255ca4df85b3130ee0f77d15acc2d-1788696640254.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xe1e5f00a9b0255ca4df85b3130ee0f77d15acc2d-1788696640254.png"
+ ],
+ "name": "Pushin' 🅿️",
+ "symbol": "🅿️",
+ "marketCap": "1610422.344986560730890168",
+ "price": "0.00161042234498656073",
+ "priceChange24hPercent": "-24.04",
+ "volume24h": "402618.432808724937339793",
+ "communityRecognized": false,
+ "key": "evm--4663:0xe1e5f00a9b0255ca4df85b3130ee0f77d15acc2d",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x16391c40e85fb2246a2c8c17bfa2594c5d3ef84b",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x16391c40e85fb2246a2c8c17bfa2594c5d3ef84b-1788523244923.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x16391c40e85fb2246a2c8c17bfa2594c5d3ef84b-1788523244923.png"
+ ],
+ "name": "Touch Grass",
+ "symbol": "GRASS",
+ "marketCap": "3518252.016007033689843827",
+ "price": "0.00353755075272048435",
+ "priceChange24hPercent": "-5.61",
+ "volume24h": "337214.31627353020386104",
+ "communityRecognized": false,
+ "key": "evm--4663:0x16391c40e85fb2246a2c8c17bfa2594c5d3ef84b",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xe8ffd7e24187f72afb08d75b1bb13088a989a791",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xe8ffd7e24187f72afb08d75b1bb13088a989a791-1786708993342.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xe8ffd7e24187f72afb08d75b1bb13088a989a791-1786708993342.png"
+ ],
+ "name": "Delta",
+ "symbol": "DELTA",
+ "marketCap": "13215421.627403756620751773",
+ "price": "0.0132154219860979857",
+ "priceChange24hPercent": "-4.13",
+ "volume24h": "668759.432091087009694058",
+ "communityRecognized": false,
+ "key": "evm--4663:0xe8ffd7e24187f72afb08d75b1bb13088a989a791",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x507b6f349a80114097a67b8b4677367acc15b220",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x507b6f349a80114097a67b8b4677367acc15b220-1788610022118.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x507b6f349a80114097a67b8b4677367acc15b220-1788610022118.png"
+ ],
+ "name": "par",
+ "symbol": "par",
+ "marketCap": "1666928.798512164185625413",
+ "price": "0.00176440509201688206",
+ "priceChange24hPercent": "-18.26",
+ "volume24h": "182240.81246243541915566",
+ "communityRecognized": false,
+ "key": "evm--4663:0x507b6f349a80114097a67b8b4677367acc15b220",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x215407c134f68b9da4de10c22c948196053a0d5d",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/70a6389f1690a862f8e3a0d61f5a71c1ed8f0eb1c39ccf6f78f60fff4d400471",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/70a6389f1690a862f8e3a0d61f5a71c1ed8f0eb1c39ccf6f78f60fff4d400471"
+ ],
+ "name": "The Wolf of Wall Street",
+ "symbol": "WOLF",
+ "marketCap": "3790390.962235132347890869",
+ "price": "0.01054922634164950775",
+ "priceChange24hPercent": "5.55",
+ "volume24h": "7799664.386650095588746494",
+ "communityRecognized": false,
+ "key": "evm--4663:0x215407c134f68b9da4de10c22c948196053a0d5d",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0x0c9535416fd3b772646c4575e0664fd65afeeeee",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/06d415460409e8d3490a37fdffff10dcae078212668149add6cac2ccc487227d",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/06d415460409e8d3490a37fdffff10dcae078212668149add6cac2ccc487227d"
+ ],
+ "name": "IGNIX",
+ "symbol": "IGNIX",
+ "marketCap": "2050669.850711109531315621",
+ "price": "0.00205066985071110953",
+ "priceChange24hPercent": "15.86",
+ "volume24h": "31463.10312625660707983",
+ "communityRecognized": false,
+ "key": "evm--196:0x0c9535416fd3b772646c4575e0664fd65afeeeee",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "ANM35KbUcfKdEVBXzSjZBoT6ceSwYRs3fuc79fp7kRqP",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/db4d10c19523308df10f606b8b29d51a6e19419261d663ae88497cd02efd20f6",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/db4d10c19523308df10f606b8b29d51a6e19419261d663ae88497cd02efd20f6"
+ ],
+ "name": "Pump Cat",
+ "symbol": "Pumpcat",
+ "marketCap": "1912520.152790378256860803",
+ "price": "0.00193673692136345157",
+ "priceChange24hPercent": "-30.93",
+ "volume24h": "798888.09938937196",
+ "communityRecognized": false,
+ "key": "sol--101:ANM35KbUcfKdEVBXzSjZBoT6ceSwYRs3fuc79fp7kRqP",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "MukLDtJ8Cx9DxLbeyLRSWPSposTMWuwHANbuaudpump",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-MukLDtJ8Cx9DxLbeyLRSWPSposTMWuwHANbuaudpump-1788282416465.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-MukLDtJ8Cx9DxLbeyLRSWPSposTMWuwHANbuaudpump-1788282416465.png"
+ ],
+ "name": "OTC",
+ "symbol": "OTC",
+ "marketCap": "18542012.178878264176559004",
+ "price": "0.02608930166714554962",
+ "priceChange24hPercent": "-0.89",
+ "volume24h": "2701679.90613766813",
+ "communityRecognized": false,
+ "key": "sol--101:MukLDtJ8Cx9DxLbeyLRSWPSposTMWuwHANbuaudpump",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x97216593d3b2769da6f0adeee6fb8e36da4e319f",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x97216593d3b2769da6f0adeee6fb8e36da4e319f-1788782713180.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x97216593d3b2769da6f0adeee6fb8e36da4e319f-1788782713180.png"
+ ],
+ "name": "Ponsancoin",
+ "symbol": "Ponsan",
+ "marketCap": "903418.884954879381383267",
+ "price": "0.00090341888525257061",
+ "priceChange24hPercent": "-8.01",
+ "volume24h": "134735.3182520699752692",
+ "communityRecognized": false,
+ "key": "evm--4663:0x97216593d3b2769da6f0adeee6fb8e36da4e319f",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xcd8df4c1052a3447bda6a7423fbc234102f3b477",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/2c2886d399c18bd4b0702fc8ad6b51ba9787a4d5b3d91c759a3febf9c71697b5",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/2c2886d399c18bd4b0702fc8ad6b51ba9787a4d5b3d91c759a3febf9c71697b5"
+ ],
+ "name": "Silverback",
+ "symbol": "SILVERBACK",
+ "marketCap": "437612.725643649196156586",
+ "price": "0.0004376127256436492",
+ "priceChange24hPercent": "30.47",
+ "volume24h": "87024.8663787772318368",
+ "communityRecognized": false,
+ "key": "evm--4663:0xcd8df4c1052a3447bda6a7423fbc234102f3b477",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x812486eaea648819853f8e372dc9f1516c7868bd",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x812486eaea648819853f8e372dc9f1516c7868bd-1788354167261.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x812486eaea648819853f8e372dc9f1516c7868bd-1788354167261.png"
+ ],
+ "name": "ubik",
+ "symbol": "UBIK",
+ "marketCap": "17722979.495896872827918012",
+ "price": "0.01772297949589687283",
+ "priceChange24hPercent": "-16.99",
+ "volume24h": "564619.60495640592725091",
+ "communityRecognized": false,
+ "key": "evm--4663:0x812486eaea648819853f8e372dc9f1516c7868bd",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0x4fec966f98d8530507787d947d1ab24fa145a999",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/5114ae6a8dd22ff7afd7dc72ba2065ab2dc5914e10df890f2c0971f48049eb1f",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/5114ae6a8dd22ff7afd7dc72ba2065ab2dc5914e10df890f2c0971f48049eb1f"
+ ],
+ "name": "LAIKA Coin",
+ "symbol": "LAIKA",
+ "marketCap": "2972813.068622393815012273",
+ "price": "0.00297281315186116207",
+ "priceChange24hPercent": "-1.1",
+ "volume24h": "14445.790118403620364904",
+ "communityRecognized": false,
+ "key": "evm--196:0x4fec966f98d8530507787d947d1ab24fa145a999",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0xa7dba7be294a4828828b0c4e82ef5f23914b85a4",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/c66df7096574ca1cd5958bde6042d85cd3ab75a5a247b8042f7a3941c3706837",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/c66df7096574ca1cd5958bde6042d85cd3ab75a5a247b8042f7a3941c3706837"
+ ],
+ "name": "XCat",
+ "symbol": "XCat",
+ "marketCap": "34395.76442988127799948",
+ "price": "0.00003439576442988128",
+ "priceChange24hPercent": "43.06",
+ "volume24h": "2369.6950017902879436",
+ "communityRecognized": false,
+ "key": "evm--196:0xa7dba7be294a4828828b0c4e82ef5f23914b85a4",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xf40592daacb3e5abf358789f5688c0b4f64d7777",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xf40592daacb3e5abf358789f5688c0b4f64d7777-1788336091391.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xf40592daacb3e5abf358789f5688c0b4f64d7777-1788336091391.png"
+ ],
+ "name": "FLORK",
+ "symbol": "FLORK",
+ "marketCap": "13974844.309976889329689928",
+ "price": "0.01397484431010265303",
+ "priceChange24hPercent": "-12.92",
+ "volume24h": "1254097.71922701984132646",
+ "communityRecognized": true,
+ "key": "evm--56:0xf40592daacb3e5abf358789f5688c0b4f64d7777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xd4dc6b48ad73ec51e71d9b8f65568f88609b92c1",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xd4dc6b48ad73ec51e71d9b8f65568f88609b92c1-1787659267512.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xd4dc6b48ad73ec51e71d9b8f65568f88609b92c1-1787659267512.png"
+ ],
+ "name": "Sherwood",
+ "symbol": "SHERWOOD",
+ "marketCap": "533070.208604035212901932",
+ "price": "0.00053307020860403521",
+ "priceChange24hPercent": "34.27",
+ "volume24h": "155125.266277313414257527",
+ "communityRecognized": false,
+ "key": "evm--4663:0xd4dc6b48ad73ec51e71d9b8f65568f88609b92c1",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x56910d4409f3a0c78c64dd8d0545ff0705389870",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x56910d4409f3a0c78c64dd8d0545ff0705389870-1784842044117.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x56910d4409f3a0c78c64dd8d0545ff0705389870-1784842044117.png"
+ ],
+ "name": "The Index",
+ "symbol": "Index",
+ "marketCap": "38870165.241097645668505948",
+ "price": "0.03964181583133222276",
+ "priceChange24hPercent": "1.01",
+ "volume24h": "565039.752729737105320134",
+ "communityRecognized": true,
+ "key": "evm--4663:0x56910d4409f3a0c78c64dd8d0545ff0705389870",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "Aw6fiDPWLUnjSsJQtsyEMSaoPaKAUUrStAsYPiPwpump",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/77390ed5d0a7e7ae6ab8a0e2685653ff99f696192f784341e9d9bd613dc27472",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/77390ed5d0a7e7ae6ab8a0e2685653ff99f696192f784341e9d9bd613dc27472"
+ ],
+ "name": "Anonymouse",
+ "symbol": "Anonymouse",
+ "marketCap": "495244.582719193909390358",
+ "price": "0.00051975033502052469",
+ "priceChange24hPercent": "131.2",
+ "volume24h": "222582.08252604555",
+ "communityRecognized": false,
+ "key": "sol--101:Aw6fiDPWLUnjSsJQtsyEMSaoPaKAUUrStAsYPiPwpump",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x87ae267002cd1ea0ec86bf3601d4a8ad76a47777",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x87ae267002cd1ea0ec86bf3601d4a8ad76a47777-1787558536892.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x87ae267002cd1ea0ec86bf3601d4a8ad76a47777-1787558536892.png"
+ ],
+ "name": "蝴蝶人生",
+ "symbol": "蝴蝶人生",
+ "marketCap": "2900864.953755263095854545",
+ "price": "0.0029008649537552631",
+ "priceChange24hPercent": "-2.41",
+ "volume24h": "106223.737040453977380975",
+ "communityRecognized": false,
+ "key": "evm--56:0x87ae267002cd1ea0ec86bf3601d4a8ad76a47777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x1ec871553be07dc68ec1661c32eca7e2e46e1e18",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/ee7408e5fd186d0c6d70812ea983d43036994104aca07d6d3074523eaa5b18a2",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/ee7408e5fd186d0c6d70812ea983d43036994104aca07d6d3074523eaa5b18a2"
+ ],
+ "name": "STONKS",
+ "symbol": "STONKS",
+ "marketCap": "229307.473859529567886593",
+ "price": "0.00022930747385952957",
+ "priceChange24hPercent": "132.8",
+ "volume24h": "135825.015138601586402892",
+ "communityRecognized": false,
+ "key": "evm--4663:0x1ec871553be07dc68ec1661c32eca7e2e46e1e18",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xc2362aff2a2a4cc1f48cf3dab2c4e2605eb94ba3",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xc2362aff2a2a4cc1f48cf3dab2c4e2605eb94ba3-1785758420060.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xc2362aff2a2a4cc1f48cf3dab2c4e2605eb94ba3-1785758420060.png"
+ ],
+ "name": "GameStop",
+ "symbol": "GME",
+ "marketCap": "2951397.060713870872015092",
+ "price": "0.00002951397141737687",
+ "priceChange24hPercent": "-2.92",
+ "volume24h": "61156.466153020995917337",
+ "communityRecognized": false,
+ "key": "evm--4663:0xc2362aff2a2a4cc1f48cf3dab2c4e2605eb94ba3",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0xf8a80d1cb9cfd70d03d655d9df42339846f3b3c8",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/1e720661a824f8fa58ab89efae4df73c288c398ec4528d3843ac3b7a5448d89b",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/1e720661a824f8fa58ab89efae4df73c288c398ec4528d3843ac3b7a5448d89b"
+ ],
+ "name": "Intel xStock",
+ "symbol": "INTCx",
+ "marketCap": "483659047740.336",
+ "price": "100.53003",
+ "priceChange24hPercent": "1.97",
+ "volume24h": "5008.2393205752476",
+ "communityRecognized": false,
+ "key": "evm--196:0xf8a80d1cb9cfd70d03d655d9df42339846f3b3c8",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x384c3f978950a98523529a205163bf63a69e8dd5",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/7a4fae357f9d4613d7f8b5f8bd76e29c37fb44afd8ff4f0da78fe40be38d3dd3",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/7a4fae357f9d4613d7f8b5f8bd76e29c37fb44afd8ff4f0da78fe40be38d3dd3"
+ ],
+ "name": "Kerf",
+ "symbol": "KERF",
+ "marketCap": "658779.614430525705793727",
+ "price": "0.00065877961443052571",
+ "priceChange24hPercent": "85.75",
+ "volume24h": "644306.349224698598217424",
+ "communityRecognized": false,
+ "key": "evm--4663:0x384c3f978950a98523529a205163bf63a69e8dd5",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xfe7e19cbce2f896c6c528bc355baf5a768291e18",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xfe7e19cbce2f896c6c528bc355baf5a768291e18-1786017952373.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xfe7e19cbce2f896c6c528bc355baf5a768291e18-1786017952373.png"
+ ],
+ "name": "SPACEHOOD",
+ "symbol": "SPACEHOOD",
+ "marketCap": "8340762.948113254927286612",
+ "price": "0.00834076294811325493",
+ "priceChange24hPercent": "-10.56",
+ "volume24h": "341378.955556505119255267",
+ "communityRecognized": false,
+ "key": "evm--4663:0xfe7e19cbce2f896c6c528bc355baf5a768291e18",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x5b73a93b4e5e4f1fd27d8b3f8c97d69908b5e284",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x5b73a93b4e5e4f1fd27d8b3f8c97d69908b5e284-1757704453242.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x5b73a93b4e5e4f1fd27d8b3f8c97d69908b5e284-1757704453242.png"
+ ],
+ "name": "FORM Token",
+ "symbol": "FORM",
+ "marketCap": "81337721.233552374393924307",
+ "price": "0.27423761434533356272",
+ "priceChange24hPercent": "7.71",
+ "volume24h": "159854.591489957103347021",
+ "communityRecognized": true,
+ "key": "evm--56:0x5b73a93b4e5e4f1fd27d8b3f8c97d69908b5e284",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0x68fa48b1c2fe52b3d776e1953e0e782b5044ce28",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/c87a8ce3e8952900ef0a4b64d5f35f964395958d1bd69e7388b453e696cb8f8d",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/c87a8ce3e8952900ef0a4b64d5f35f964395958d1bd69e7388b453e696cb8f8d"
+ ],
+ "name": "SpaceX xStock",
+ "symbol": "SPCXx",
+ "marketCap": "1107304878126",
+ "price": "149.90439597088663123801",
+ "priceChange24hPercent": "0.74",
+ "volume24h": "301712.507367018141043139",
+ "communityRecognized": false,
+ "key": "evm--196:0x68fa48b1c2fe52b3d776e1953e0e782b5044ce28",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x385f4f8ae47651ce5f58f5265395a669f8281e18",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x385f4f8ae47651ce5f58f5265395a669f8281e18-1788523250367.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x385f4f8ae47651ce5f58f5265395a669f8281e18-1788523250367.png"
+ ],
+ "name": "A Meme Coin",
+ "symbol": "MEME",
+ "marketCap": "122218256.939187902400649569",
+ "price": "0.12221825699349346093",
+ "priceChange24hPercent": "-1.5",
+ "volume24h": "5896488.86326963197771903",
+ "communityRecognized": true,
+ "key": "evm--4663:0x385f4f8ae47651ce5f58f5265395a669f8281e18",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x265b3982ea730748100947f52561a4eab54affff",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x265b3982ea730748100947f52561a4eab54affff-1788163283951.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x265b3982ea730748100947f52561a4eab54affff-1788163283951.png"
+ ],
+ "name": "ast.fun",
+ "symbol": "AST",
+ "marketCap": "869555.825261133164744628",
+ "price": "0.00088138862476773644",
+ "priceChange24hPercent": "-24.69",
+ "volume24h": "440324.757167660171586893",
+ "communityRecognized": false,
+ "key": "evm--56:0x265b3982ea730748100947f52561a4eab54affff",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x45242320dbb855eea8fd36804c6487e10e97fcf9",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x45242320dbb855eea8fd36804c6487e10e97fcf9-1784778612504.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x45242320dbb855eea8fd36804c6487e10e97fcf9-1784778612504.png"
+ ],
+ "name": "TENDIES",
+ "symbol": "TENDIES",
+ "marketCap": "15386858.066819138866086556",
+ "price": "0.01608684904807764071",
+ "priceChange24hPercent": "-1.69",
+ "volume24h": "299985.753469817502376401",
+ "communityRecognized": false,
+ "key": "evm--4663:0x45242320dbb855eea8fd36804c6487e10e97fcf9",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xa01bc586cd5f4f253bfab4e44400c52dbc18bc50",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/c365b2142e4c766209febdcd7d1678e3519a6be41b491b73bf8cddfc0cd3ab98",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/c365b2142e4c766209febdcd7d1678e3519a6be41b491b73bf8cddfc0cd3ab98"
+ ],
+ "name": "Voxelithic Protocol",
+ "symbol": "VOXEL",
+ "marketCap": "2202165.275282226596140064",
+ "price": "0.0022021652752822266",
+ "priceChange24hPercent": "2.58",
+ "volume24h": "177485.5447201520470285",
+ "communityRecognized": false,
+ "key": "evm--4663:0xa01bc586cd5f4f253bfab4e44400c52dbc18bc50",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "9cRCn9rGT8V2imeM2BaKs13yhMEais3ruM3rPvTGpump",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-9cRCn9rGT8V2imeM2BaKs13yhMEais3ruM3rPvTGpump-1782140764006.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-9cRCn9rGT8V2imeM2BaKs13yhMEais3ruM3rPvTGpump-1782140764006.png"
+ ],
+ "name": "The Black Bull",
+ "symbol": "ANSEM",
+ "marketCap": "77436765.280775916723122829",
+ "price": "0.18668810545529582203",
+ "priceChange24hPercent": "-2.78",
+ "volume24h": "2451049.586271553212389809",
+ "communityRecognized": true,
+ "key": "sol--101:9cRCn9rGT8V2imeM2BaKs13yhMEais3ruM3rPvTGpump",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x7a848a5a8169aa6a2f603d056a749f924f504444",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x7a848a5a8169aa6a2f603d056a749f924f504444-1783238620991.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x7a848a5a8169aa6a2f603d056a749f924f504444-1783238620991.png"
+ ],
+ "name": "The Final Form Bull",
+ "symbol": "CZ",
+ "marketCap": "1108669.360880238166665035",
+ "price": "0.00369589294180277339",
+ "priceChange24hPercent": "-13.5",
+ "volume24h": "79530.791377679050593397",
+ "communityRecognized": false,
+ "key": "evm--56:0x7a848a5a8169aa6a2f603d056a749f924f504444",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x4f4a59ac165c6f05ed771df3530741494b1c7777",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/aaedfbda5a6301f10b584f1887dbe9604f4015526974adfc9bd19e9bff06bf7c",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/aaedfbda5a6301f10b584f1887dbe9604f4015526974adfc9bd19e9bff06bf7c"
+ ],
+ "name": "Offchain Dog",
+ "symbol": "zDOG",
+ "marketCap": "772076.5981881585062435",
+ "price": "0.00077207659818815851",
+ "priceChange24hPercent": "-27.92",
+ "volume24h": "443055.898709603343244612",
+ "communityRecognized": false,
+ "key": "evm--56:0x4f4a59ac165c6f05ed771df3530741494b1c7777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0x8ad3c73f833d3f9a523ab01476625f269aeb7cf0",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/d20fbce76659b93e5e02cd823afdf5bcac92ba2b71b111deb9ca1fe769ef63d4",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/d20fbce76659b93e5e02cd823afdf5bcac92ba2b71b111deb9ca1fe769ef63d4"
+ ],
+ "name": "Tesla xStock",
+ "symbol": "TSLAx",
+ "marketCap": "1393688637562.962",
+ "price": "356.450075",
+ "priceChange24hPercent": "0.5",
+ "volume24h": "10866.55830863558035669",
+ "communityRecognized": false,
+ "key": "evm--196:0x8ad3c73f833d3f9a523ab01476625f269aeb7cf0",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0xfa15e42c18cf57aeef4b1bac1cee7754af7cfe42",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/5b255d183ca8bf08544874058aec758f5611f62d7baa9a8ae5ec7299f85e5925",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/5b255d183ca8bf08544874058aec758f5611f62d7baa9a8ae5ec7299f85e5925"
+ ],
+ "name": "Tencent xStock",
+ "symbol": "TCENTx",
+ "marketCap": "502936578300.8625061",
+ "price": "56.40899701723985906959",
+ "priceChange24hPercent": "-2.16",
+ "volume24h": "97655.023904357693626",
+ "communityRecognized": false,
+ "key": "evm--196:0xfa15e42c18cf57aeef4b1bac1cee7754af7cfe42",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "DoGEV7LASBkQbibMc5k5vKnTZoMg423GpJ5QtJEGfm7R",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/3d506b48124c4da95fa38586899e377b82f98a1d6da24eba1ac8e1c2f82bbb99",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/3d506b48124c4da95fa38586899e377b82f98a1d6da24eba1ac8e1c2f82bbb99"
+ ],
+ "name": "Dogecoin",
+ "symbol": "DOGE",
+ "marketCap": "400294.815377739868067652",
+ "price": "0.09110678797975571486",
+ "priceChange24hPercent": "0.07",
+ "volume24h": "1298130.03129661979",
+ "communityRecognized": true,
+ "key": "sol--101:DoGEV7LASBkQbibMc5k5vKnTZoMg423GpJ5QtJEGfm7R",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0xff637d2d435d6745df3faf61272b1216e7e8b727",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/9fc774ca51417bc1bbf6bd03e602e39c5b991c3dee079065d7ce9c06c7da7d64",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/9fc774ca51417bc1bbf6bd03e602e39c5b991c3dee079065d7ce9c06c7da7d64"
+ ],
+ "name": "Wrapped SHEIN xStock",
+ "symbol": "wSHEINx",
+ "marketCap": "9941.072056639699888951",
+ "price": "5.2204262143685951143",
+ "priceChange24hPercent": "4.19",
+ "volume24h": "4537.214964230971305",
+ "communityRecognized": false,
+ "key": "evm--196:0xff637d2d435d6745df3faf61272b1216e7e8b727",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0xf6a873bae4ba1b304e45df52a4b7d176e1c6a8c4",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/b9ac0da769e65f7d17afb241122f9b4dc45269526fe2ae4a010d494d2833c128",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/b9ac0da769e65f7d17afb241122f9b4dc45269526fe2ae4a010d494d2833c128"
+ ],
+ "name": "Micron Technology xStock",
+ "symbol": "MUx",
+ "marketCap": "1146219040390",
+ "price": "1054.21105",
+ "priceChange24hPercent": "0.73",
+ "volume24h": "9198.29680700537001",
+ "communityRecognized": false,
+ "key": "evm--196:0xf6a873bae4ba1b304e45df52a4b7d176e1c6a8c4",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0x18a4f9d450f46f9dea99da758b4c29ad620aae93",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/7f955a6a6dee09fb9ac522f8cb7e1a71c93623576fd8adf1a10945361176072b",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/7f955a6a6dee09fb9ac522f8cb7e1a71c93623576fd8adf1a10945361176072b"
+ ],
+ "name": "NVDA RTX STOCKS",
+ "symbol": "RTX",
+ "marketCap": "233108.573806167014996223",
+ "price": "0.0002384584825317207",
+ "priceChange24hPercent": "5.85",
+ "volume24h": "7127.89183853178032445",
+ "communityRecognized": false,
+ "key": "evm--196:0x18a4f9d450f46f9dea99da758b4c29ad620aae93",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0xb63efbc28860c8097e341de1fcf59456161e9d98",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/40d968af1f2303f4272fd4cee6151e7094b40350c2b598d5ce76e20cf90e44d4",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/40d968af1f2303f4272fd4cee6151e7094b40350c2b598d5ce76e20cf90e44d4"
+ ],
+ "name": "Sandisk Corporation xStock",
+ "symbol": "SNDKx",
+ "marketCap": "256808803334.25",
+ "price": "1812.8270625",
+ "priceChange24hPercent": "0.47",
+ "volume24h": "4887.389579751027618",
+ "communityRecognized": false,
+ "key": "evm--196:0xb63efbc28860c8097e341de1fcf59456161e9d98",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0xffc2af7ff3dc845ec8324b4bfa0478761b1c3333",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/e197c8a7a314decbaf37781a61fd599c28af10d94a6c939ee8c059c102bdc6e6",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/e197c8a7a314decbaf37781a61fd599c28af10d94a6c939ee8c059c102bdc6e6"
+ ],
+ "name": "HEALTH",
+ "symbol": "HEALTH",
+ "marketCap": "2316624.677718363926565637",
+ "price": "0.22104638055934490577",
+ "priceChange24hPercent": "-3.6",
+ "volume24h": "1024.7075287377942013",
+ "communityRecognized": false,
+ "key": "evm--196:0xffc2af7ff3dc845ec8324b4bfa0478761b1c3333",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0xfb4f81f511b40b80996062032260a539e60adfc0",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/8e483e11911b39a3cb2e584c5dea7c0f2c0cccc2b99fb60de60a485a6122c118",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/8e483e11911b39a3cb2e584c5dea7c0f2c0cccc2b99fb60de60a485a6122c118"
+ ],
+ "name": "Xiaomi xStock",
+ "symbol": "XIAOx",
+ "marketCap": "88093136141.41892151",
+ "price": "3.45590358333333333333",
+ "priceChange24hPercent": "-4.55",
+ "volume24h": "141584.864386319601947",
+ "communityRecognized": false,
+ "key": "evm--196:0xfb4f81f511b40b80996062032260a539e60adfc0",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "6GmAFSYs4gk3FDao5FzzySQpPZaWsa4rUJHacpMpUNgx",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-6GmAFSYs4gk3FDao5FzzySQpPZaWsa4rUJHacpMpUNgx-1784905991044.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-6GmAFSYs4gk3FDao5FzzySQpPZaWsa4rUJHacpMpUNgx-1784905991044.png"
+ ],
+ "name": "STONK",
+ "symbol": "STONK",
+ "marketCap": "159352032.815664438135976227",
+ "price": "0.1831329209418961418",
+ "priceChange24hPercent": "14.45",
+ "volume24h": "20264467.198996233909419007",
+ "communityRecognized": true,
+ "key": "sol--101:6GmAFSYs4gk3FDao5FzzySQpPZaWsa4rUJHacpMpUNgx",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ }
+ ],
+ "trending||24h|all": [
+ {
+ "isNative": true,
+ "networkId": "btc--0",
+ "address": "",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/btc--0/tokens/address-.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/btc--0/tokens/address-.png"
+ ],
+ "name": "Bitcoin",
+ "symbol": "BTC",
+ "marketCap": "1583042059097",
+ "price": "78831",
+ "priceChange24hPercent": "-0.98466",
+ "volume24h": "-",
+ "communityRecognized": true,
+ "key": "btc--0:",
+ "kind": "token",
+ "sourceCategory": "trending"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x39dbed3a2bd333467115de45665cc57f813c4571",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x39dbed3a2bd333467115de45665cc57f813c4571-1785145437955.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x39dbed3a2bd333467115de45665cc57f813c4571-1785145437955.png"
+ ],
+ "name": "Pons",
+ "symbol": "PONS",
+ "marketCap": "495503308.003633043517533697",
+ "price": "0.7078659853779488151",
+ "priceChange24hPercent": "-4.76",
+ "volume24h": "119157248.63579886287465542",
+ "communityRecognized": true,
+ "key": "evm--4663:0x39dbed3a2bd333467115de45665cc57f813c4571",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x888656062164473c93c06ca89ae4d868d606ffff",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/4a563ac1c0cd1b7ed43429ee1ad5750a8ca22c0eaaa08d0427a8a86e8a2348f0",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/4a563ac1c0cd1b7ed43429ee1ad5750a8ca22c0eaaa08d0427a8a86e8a2348f0"
+ ],
+ "name": "Fat Panda",
+ "symbol": "FATPANDA",
+ "marketCap": "2112405.287274850220596805",
+ "price": "0.00211240528727485022",
+ "priceChange24hPercent": "-56.63",
+ "volume24h": "2702677.879404877390308051",
+ "communityRecognized": false,
+ "key": "evm--56:0x888656062164473c93c06ca89ae4d868d606ffff",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x4a72b9702f991b790788f8afa9e7112541f4e8f8",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/a2e5ad0ff8689f1c746d6b07fd9718545cd44c67e13dabe8ba7242d613586821",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/a2e5ad0ff8689f1c746d6b07fd9718545cd44c67e13dabe8ba7242d613586821"
+ ],
+ "name": "Route",
+ "symbol": "ROUTE",
+ "marketCap": "5153862.727846807731733948",
+ "price": "0.00515386272784680773",
+ "priceChange24hPercent": "110260.3",
+ "volume24h": "13215305.409742539148642984",
+ "communityRecognized": false,
+ "key": "evm--4663:0x4a72b9702f991b790788f8afa9e7112541f4e8f8",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xc9d825e83aada475bd4d38c8ca984ed746277777",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xc9d825e83aada475bd4d38c8ca984ed746277777-1788595746569.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xc9d825e83aada475bd4d38c8ca984ed746277777-1788595746569.png"
+ ],
+ "name": "Stonks",
+ "symbol": "Stonks",
+ "marketCap": "3383539.04713083920517472",
+ "price": "0.00338353904713083921",
+ "priceChange24hPercent": "-74.33",
+ "volume24h": "9791799.996551367015577699",
+ "communityRecognized": true,
+ "key": "evm--56:0xc9d825e83aada475bd4d38c8ca984ed746277777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xe2324ff2a59f8ecba8c321c6466e59121c00e795",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/84804585551812a64183c44a4e291f2332c9a5ff2d07e52dbcd3b81d60c989b3",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/84804585551812a64183c44a4e291f2332c9a5ff2d07e52dbcd3b81d60c989b3"
+ ],
+ "name": "Commodity Market Exchange",
+ "symbol": "CME",
+ "marketCap": "3227824.606264007818319947",
+ "price": "0.00322782460626400782",
+ "priceChange24hPercent": "69482.97",
+ "volume24h": "14324820.73497960396443182",
+ "communityRecognized": false,
+ "key": "evm--4663:0xe2324ff2a59f8ecba8c321c6466e59121c00e795",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xd270d4e1ec6e6e0d28c0ecb8be966ec75997ffff",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/f3bf6d8a8bc7f4be0ec6949fa0ebf538953fcd6443cd6681e394f790b6546a1e",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/f3bf6d8a8bc7f4be0ec6949fa0ebf538953fcd6443cd6681e394f790b6546a1e"
+ ],
+ "name": "4Stock",
+ "symbol": "4Stock",
+ "marketCap": "7785633.302087885737412173",
+ "price": "0.00778563330208788574",
+ "priceChange24hPercent": "11918.04",
+ "volume24h": "5861232.452829224806200048",
+ "communityRecognized": false,
+ "key": "evm--56:0xd270d4e1ec6e6e0d28c0ecb8be966ec75997ffff",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x8fdb0647e2bf11c8d88ef7825905f5f428864444",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/f3bf6d8a8bc7f4be0ec6949fa0ebf538953fcd6443cd6681e394f790b6546a1e",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/f3bf6d8a8bc7f4be0ec6949fa0ebf538953fcd6443cd6681e394f790b6546a1e"
+ ],
+ "name": "4cat",
+ "symbol": "4cat",
+ "marketCap": "119643.440010641813385865",
+ "price": "0.00011964344001064181",
+ "priceChange24hPercent": "30.78",
+ "volume24h": "168819.72587859324477851",
+ "communityRecognized": false,
+ "key": "evm--56:0x8fdb0647e2bf11c8d88ef7825905f5f428864444",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x6b1d42927b1a84ec28fa88d4fc6fa7af404966be",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x6b1d42927b1a84ec28fa88d4fc6fa7af404966be-1788091561508.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x6b1d42927b1a84ec28fa88d4fc6fa7af404966be-1788091561508.png"
+ ],
+ "name": "PAIR",
+ "symbol": "PAIR",
+ "marketCap": "13830251.410931131946963254",
+ "price": "0.01543467921677988764",
+ "priceChange24hPercent": "-29.54",
+ "volume24h": "9110331.02691256783262729",
+ "communityRecognized": false,
+ "key": "evm--4663:0x6b1d42927b1a84ec28fa88d4fc6fa7af404966be",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x17616c8f6cacf14fcff63f3188a30691802effff",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/cfcf37bcd1b22ee8594b38b7c1bbb0d2aafe3f8ad70ec9d9cbd108990326678d",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/cfcf37bcd1b22ee8594b38b7c1bbb0d2aafe3f8ad70ec9d9cbd108990326678d"
+ ],
+ "name": "Built and Code",
+ "symbol": "BNC",
+ "marketCap": "717067.38067697511935398",
+ "price": "0.00071706738067697512",
+ "priceChange24hPercent": "50.02",
+ "volume24h": "342503.783186811349238536",
+ "communityRecognized": false,
+ "key": "evm--56:0x17616c8f6cacf14fcff63f3188a30691802effff",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x0000000005aca17e8bd5779fc87e13cb433aed24",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x0000000005aca17e8bd5779fc87e13cb433aed24-1788697955302.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x0000000005aca17e8bd5779fc87e13cb433aed24-1788697955302.png"
+ ],
+ "name": "NUKE",
+ "symbol": "NUKE",
+ "marketCap": "9437039.871545636712869593",
+ "price": "67.78599858061051997161",
+ "priceChange24hPercent": "-16.73",
+ "volume24h": "2168218.88959348665401411",
+ "communityRecognized": false,
+ "key": "evm--4663:0x0000000005aca17e8bd5779fc87e13cb433aed24",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xa6b53819f5bf521945fceb1f9bbb3a7a7b4effff",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/e5fb48d54702b49bd31d0551378667606ad6bb5e4e33b94fc32179b14469f2d0",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/e5fb48d54702b49bd31d0551378667606ad6bb5e4e33b94fc32179b14469f2d0"
+ ],
+ "name": "CEA Industries",
+ "symbol": "Vape",
+ "marketCap": "194534.487611051174546684",
+ "price": "0.00019453448761105117",
+ "priceChange24hPercent": "-18.03",
+ "volume24h": "288065.821597229318707959",
+ "communityRecognized": false,
+ "key": "evm--56:0xa6b53819f5bf521945fceb1f9bbb3a7a7b4effff",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xe9337dde3dd9e97f1f45a56412767ce5098e7777",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xe9337dde3dd9e97f1f45a56412767ce5098e7777-1785657919485.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xe9337dde3dd9e97f1f45a56412767ce5098e7777-1785657919485.png"
+ ],
+ "name": "何必东奔西走 币安全部都有",
+ "symbol": "币有",
+ "marketCap": "3256550.609706267519426927",
+ "price": "0.00325655060991233998",
+ "priceChange24hPercent": "-21.88",
+ "volume24h": "2570704.089620746646726458",
+ "communityRecognized": false,
+ "key": "evm--56:0xe9337dde3dd9e97f1f45a56412767ce5098e7777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xab093def657f15df31b33922a95e047add645b29",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xab093def657f15df31b33922a95e047add645b29-1788523212752.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xab093def657f15df31b33922a95e047add645b29-1788523212752.png"
+ ],
+ "name": "MUSHROOM",
+ "symbol": "SHROOM",
+ "marketCap": "30848724.563377800877252185",
+ "price": "0.03124499606092514299",
+ "priceChange24hPercent": "11.39",
+ "volume24h": "12033759.920329641856353793",
+ "communityRecognized": true,
+ "key": "evm--4663:0xab093def657f15df31b33922a95e047add645b29",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x7bc70ae0f2a67d2fdc0180a697a611f21c857777",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x7bc70ae0f2a67d2fdc0180a697a611f21c857777-1788768091330.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x7bc70ae0f2a67d2fdc0180a697a611f21c857777-1788768091330.png"
+ ],
+ "name": "BEN",
+ "symbol": "BEN",
+ "marketCap": "4605232.369481968113607127",
+ "price": "0.00460523236960062734",
+ "priceChange24hPercent": "-55.95",
+ "volume24h": "13597907.093067760127587297",
+ "communityRecognized": false,
+ "key": "evm--56:0x7bc70ae0f2a67d2fdc0180a697a611f21c857777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x2e8c31162b855a2ffa90f6f8634643ad6f111e18",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x2e8c31162b855a2ffa90f6f8634643ad6f111e18-1785845221968.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x2e8c31162b855a2ffa90f6f8634643ad6f111e18-1785845221968.png"
+ ],
+ "name": "Artificial Inu",
+ "symbol": "AI",
+ "marketCap": "256039378.294288995153516342",
+ "price": "0.25826194354846087765",
+ "priceChange24hPercent": "6.42",
+ "volume24h": "42581740.463606653385420388",
+ "communityRecognized": true,
+ "key": "evm--4663:0x2e8c31162b855a2ffa90f6f8634643ad6f111e18",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xb3a1e1f7ae6c90c707ec3c75e99c359482fea5b9",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/488d50fb3eb6f79c9440d809ef90dc3a197facbca4792e913cf6d2ab384a3fbe",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/488d50fb3eb6f79c9440d809ef90dc3a197facbca4792e913cf6d2ab384a3fbe"
+ ],
+ "name": "Sock",
+ "symbol": "SOCK",
+ "marketCap": "5094939.109274301369453039",
+ "price": "0.00509603224666357303",
+ "priceChange24hPercent": "4379.95",
+ "volume24h": "25469336.194111872473759698",
+ "communityRecognized": false,
+ "key": "evm--56:0xb3a1e1f7ae6c90c707ec3c75e99c359482fea5b9",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xfa6d9b504848606eb9aec04ccc161d169b3f2159",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xfa6d9b504848606eb9aec04ccc161d169b3f2159-1788768839130.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xfa6d9b504848606eb9aec04ccc161d169b3f2159-1788768839130.png"
+ ],
+ "name": "BREW",
+ "symbol": "BREW",
+ "marketCap": "6401595.848431142137785916",
+ "price": "0.00640159584843114214",
+ "priceChange24hPercent": "-73.69",
+ "volume24h": "19507582.397905773925380663",
+ "communityRecognized": true,
+ "key": "evm--56:0xfa6d9b504848606eb9aec04ccc161d169b3f2159",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xd9db30bb0d2b8d2eae3826a1372117e058791e18",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xd9db30bb0d2b8d2eae3826a1372117e058791e18-1788091222725.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xd9db30bb0d2b8d2eae3826a1372117e058791e18-1788091222725.png"
+ ],
+ "name": "Memory cow Moo",
+ "symbol": "MOO",
+ "marketCap": "26232322.129356837995581063",
+ "price": "0.02652530467317783355",
+ "priceChange24hPercent": "34.62",
+ "volume24h": "6036197.57301294424878917",
+ "communityRecognized": true,
+ "key": "evm--4663:0xd9db30bb0d2b8d2eae3826a1372117e058791e18",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x15d36b6a28d8327abc7afabf0f106ae2c9af5c4d",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x15d36b6a28d8327abc7afabf0f106ae2c9af5c4d-1788523244923.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x15d36b6a28d8327abc7afabf0f106ae2c9af5c4d-1788523244923.png"
+ ],
+ "name": "Pare",
+ "symbol": "PARE",
+ "marketCap": "12229018.110352449879813527",
+ "price": "0.01222901811035244988",
+ "priceChange24hPercent": "-22.23",
+ "volume24h": "7260261.829666101543245825",
+ "communityRecognized": false,
+ "key": "evm--4663:0x15d36b6a28d8327abc7afabf0f106ae2c9af5c4d",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x6d11782ef6cbe773da2defef612f9a57c54012bf",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/aed9300fe93af8a077cf133b5d703e28386f95d7724261f173da91a4cac7df65",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/aed9300fe93af8a077cf133b5d703e28386f95d7724261f173da91a4cac7df65"
+ ],
+ "name": "Macintosh",
+ "symbol": "MACINTOSH",
+ "marketCap": "1436439.323467978675653196",
+ "price": "0.00143643932346797868",
+ "priceChange24hPercent": "21220.82",
+ "volume24h": "901118.874514794924812852",
+ "communityRecognized": false,
+ "key": "evm--4663:0x6d11782ef6cbe773da2defef612f9a57c54012bf",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x7ba36be14dd06ba492f08be6c1b2979c1d0b652c",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x7ba36be14dd06ba492f08be6c1b2979c1d0b652c-1788178016235.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x7ba36be14dd06ba492f08be6c1b2979c1d0b652c-1788178016235.png"
+ ],
+ "name": "PerpsHood",
+ "symbol": "PERPSHOOD",
+ "marketCap": "3288366.118814719718758381",
+ "price": "0.00333761406584314507",
+ "priceChange24hPercent": "221.19",
+ "volume24h": "3608182.645846193934318022",
+ "communityRecognized": false,
+ "key": "evm--4663:0x7ba36be14dd06ba492f08be6c1b2979c1d0b652c",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x79a74fd91f8e1c4ab8e76253dec5c91f3094393f",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/e1f481a4066feec841bf3345c090a6cdd9fd2274a972cf1981f3a0a234f42d9c",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/e1f481a4066feec841bf3345c090a6cdd9fd2274a972cf1981f3a0a234f42d9c"
+ ],
+ "name": "Superstables",
+ "symbol": "STBL",
+ "marketCap": "431790.28727990802483224",
+ "price": "0.00043179028727990802",
+ "priceChange24hPercent": "9597.98",
+ "volume24h": "1203378.96681243080462673",
+ "communityRecognized": false,
+ "key": "evm--4663:0x79a74fd91f8e1c4ab8e76253dec5c91f3094393f",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xa3602804e096cb73bd8344afc1ff3f3390b899c5",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xa3602804e096cb73bd8344afc1ff3f3390b899c5-1788697149485.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xa3602804e096cb73bd8344afc1ff3f3390b899c5-1788697149485.png"
+ ],
+ "name": "PEZ",
+ "symbol": "PEZ",
+ "marketCap": "2566956.157709543351335719",
+ "price": "0.00256696182716853727",
+ "priceChange24hPercent": "-45.57",
+ "volume24h": "4492570.06394753310215811",
+ "communityRecognized": false,
+ "key": "evm--4663:0xa3602804e096cb73bd8344afc1ff3f3390b899c5",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x7163ae1b5aea2f09ebc609c52b4dcac0a7a4bc2d",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/b565852235f4b58795118e627a62621101b692c4e2e2801f518600ad55c59755",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/b565852235f4b58795118e627a62621101b692c4e2e2801f518600ad55c59755"
+ ],
+ "name": "GAGE",
+ "symbol": "GAGE",
+ "marketCap": "2110500.95003322357189616",
+ "price": "0.00211050095003322357",
+ "priceChange24hPercent": "47018.2",
+ "volume24h": "5738956.628602400357386501",
+ "communityRecognized": false,
+ "key": "evm--4663:0x7163ae1b5aea2f09ebc609c52b4dcac0a7a4bc2d",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x198dba421a7db566a90da5de7901abe3443b4444",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x198dba421a7db566a90da5de7901abe3443b4444-1783844840152.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x198dba421a7db566a90da5de7901abe3443b4444-1783844840152.png"
+ ],
+ "name": "富贵",
+ "symbol": "富贵",
+ "marketCap": "1997835.58315835493824872",
+ "price": "0.00199783560433451247",
+ "priceChange24hPercent": "-37.48",
+ "volume24h": "1376477.299472210131744353",
+ "communityRecognized": false,
+ "key": "evm--56:0x198dba421a7db566a90da5de7901abe3443b4444",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x98096d17e191b3da1d5f99a6d7b3584351b11e18",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x98096d17e191b3da1d5f99a6d7b3584351b11e18-1787918411975.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x98096d17e191b3da1d5f99a6d7b3584351b11e18-1787918411975.png"
+ ],
+ "name": "Boner Coin",
+ "symbol": "BONER",
+ "marketCap": "59400539.57912752890287799",
+ "price": "0.05940055223813601532",
+ "priceChange24hPercent": "-17.7",
+ "volume24h": "14091363.802683949963496155",
+ "communityRecognized": true,
+ "key": "evm--4663:0x98096d17e191b3da1d5f99a6d7b3584351b11e18",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x76ed1e2a8fc3873fcb5c514688ca2fe8a3600b7f",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/1dbcb030f10554487ca05c3aaa7fcc97cef5b687e39b63bafb0d000d20616792",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/1dbcb030f10554487ca05c3aaa7fcc97cef5b687e39b63bafb0d000d20616792"
+ ],
+ "name": "LAPTOP",
+ "symbol": "LAPTOP",
+ "marketCap": "1234221.162462544668452627",
+ "price": "0.00123422116246254467",
+ "priceChange24hPercent": "23781.2",
+ "volume24h": "13303365.756609163628066405",
+ "communityRecognized": false,
+ "key": "evm--4663:0x76ed1e2a8fc3873fcb5c514688ca2fe8a3600b7f",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x12d5ee7917ca430073c3a638ee1e6f0648a98a01",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x12d5ee7917ca430073c3a638ee1e6f0648a98a01-1788350677314.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x12d5ee7917ca430073c3a638ee1e6f0648a98a01-1788350677314.png"
+ ],
+ "name": "FATCOIN",
+ "symbol": "FATCOIN",
+ "marketCap": "15350737.661635553569380883",
+ "price": "0.01535073766163555357",
+ "priceChange24hPercent": "-14.55",
+ "volume24h": "7480591.114882551130769972",
+ "communityRecognized": false,
+ "key": "evm--4663:0x12d5ee7917ca430073c3a638ee1e6f0648a98a01",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xafe41f4356c24f716111de1fbbc84e061d291e18",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xafe41f4356c24f716111de1fbbc84e061d291e18-1788264039086.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xafe41f4356c24f716111de1fbbc84e061d291e18-1788264039086.png"
+ ],
+ "name": "Cache Cow",
+ "symbol": "CACHE",
+ "marketCap": "1050419.188538898842399832",
+ "price": "0.00105041918853889884",
+ "priceChange24hPercent": "35.99",
+ "volume24h": "699628.143460448453121901",
+ "communityRecognized": false,
+ "key": "evm--4663:0xafe41f4356c24f716111de1fbbc84e061d291e18",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xd5f1afea47b1a9eab414d2ee740cf1d6d039e725",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xd5f1afea47b1a9eab414d2ee740cf1d6d039e725-1788091431352.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xd5f1afea47b1a9eab414d2ee740cf1d6d039e725-1788091431352.png"
+ ],
+ "name": "microduck",
+ "symbol": "microduck",
+ "marketCap": "18228022.597202926448267905",
+ "price": "0.01822802259720292645",
+ "priceChange24hPercent": "-20.53",
+ "volume24h": "6905161.810830367319728709",
+ "communityRecognized": false,
+ "key": "evm--4663:0xd5f1afea47b1a9eab414d2ee740cf1d6d039e725",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "Ai66LHZG9MCzg1WKdawwqduVAXpNDUuV8M3uyq5ppump",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-Ai66LHZG9MCzg1WKdawwqduVAXpNDUuV8M3uyq5ppump-1785164716552.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-Ai66LHZG9MCzg1WKdawwqduVAXpNDUuV8M3uyq5ppump-1785164716552.png"
+ ],
+ "name": "Catecoin",
+ "symbol": "CATE",
+ "marketCap": "27905084.425795496638311706",
+ "price": "0.0289423263308686502",
+ "priceChange24hPercent": "-12.29",
+ "volume24h": "4543245.05224630659",
+ "communityRecognized": true,
+ "key": "sol--101:Ai66LHZG9MCzg1WKdawwqduVAXpNDUuV8M3uyq5ppump",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xaa07a0e9209e16ac99708c3ec70159c6ef3128a3",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xaa07a0e9209e16ac99708c3ec70159c6ef3128a3-1788352120153.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xaa07a0e9209e16ac99708c3ec70159c6ef3128a3-1788352120153.png"
+ ],
+ "name": "Orbio.so",
+ "symbol": "ORBIO",
+ "marketCap": "17993185.212207430708307963",
+ "price": "0.01894019496021834811",
+ "priceChange24hPercent": "49.04",
+ "volume24h": "4933914.013449690760213662",
+ "communityRecognized": false,
+ "key": "evm--4663:0xaa07a0e9209e16ac99708c3ec70159c6ef3128a3",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xbe98b75361935b18d688409424a869a4c3dc7401",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xbe98b75361935b18d688409424a869a4c3dc7401-1788436898916.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xbe98b75361935b18d688409424a869a4c3dc7401-1788436898916.png"
+ ],
+ "name": "Send Nudes",
+ "symbol": "NUDES",
+ "marketCap": "14588111.302047615366721809",
+ "price": "0.01458811130204761537",
+ "priceChange24hPercent": "-29.58",
+ "volume24h": "5246943.052218644883232067",
+ "communityRecognized": false,
+ "key": "evm--4663:0xbe98b75361935b18d688409424a869a4c3dc7401",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x020bfc650a365f8bb26819deaabf3e21291018b4",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x020bfc650a365f8bb26819deaabf3e21291018b4-1784778353843.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x020bfc650a365f8bb26819deaabf3e21291018b4-1784778353843.png"
+ ],
+ "name": "Cash Cat",
+ "symbol": "CASHCAT",
+ "marketCap": "187938077.189255437600581806",
+ "price": "0.19019824787407212831",
+ "priceChange24hPercent": "-17.33",
+ "volume24h": "21028444.13164949135696836",
+ "communityRecognized": true,
+ "key": "evm--4663:0x020bfc650a365f8bb26819deaabf3e21291018b4",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xe2dae1c072b9f66bed999873b94798b2152af7e1",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xe2dae1c072b9f66bed999873b94798b2152af7e1-1788697020328.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xe2dae1c072b9f66bed999873b94798b2152af7e1-1788697020328.png"
+ ],
+ "name": "Arbitrage Ape",
+ "symbol": "AA",
+ "marketCap": "4507869.835267490011775813",
+ "price": "0.00458935283081802597",
+ "priceChange24hPercent": "35.63",
+ "volume24h": "1782542.591024772863069085",
+ "communityRecognized": false,
+ "key": "evm--4663:0xe2dae1c072b9f66bed999873b94798b2152af7e1",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xbc9cc4b93a08b2dfba87067a9c53e713db3314ce",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/a34bd343ce2418e2688d9be4430fef2415dee4b660c25a3bbbcaaf3481e299a4",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/a34bd343ce2418e2688d9be4430fef2415dee4b660c25a3bbbcaaf3481e299a4"
+ ],
+ "name": "Pink Sheets",
+ "symbol": "PINK",
+ "marketCap": "933339.56396972196933734",
+ "price": "0.00093333956396972197",
+ "priceChange24hPercent": "21129.36",
+ "volume24h": "10463384.748561718103024301",
+ "communityRecognized": false,
+ "key": "evm--4663:0xbc9cc4b93a08b2dfba87067a9c53e713db3314ce",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x18e674231a58c239dc7daedcffe15ec3a24cff5c",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x18e674231a58c239dc7daedcffe15ec3a24cff5c-1786190410593.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x18e674231a58c239dc7daedcffe15ec3a24cff5c-1786190410593.png"
+ ],
+ "name": "Hookr.fun",
+ "symbol": "HOOKR",
+ "marketCap": "16533331.664047282898052225",
+ "price": "0.01659374854035718065",
+ "priceChange24hPercent": "9.47",
+ "volume24h": "3257463.712420066015729869",
+ "communityRecognized": true,
+ "key": "evm--4663:0x18e674231a58c239dc7daedcffe15ec3a24cff5c",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xab35d04e1ee39c789c4a65d522417b3c7f2e4723",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/fac85c085d11f1aa6ae21cc9ad0bb550feec3cb25196bd13e83f1f5c0ef580c0",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/fac85c085d11f1aa6ae21cc9ad0bb550feec3cb25196bd13e83f1f5c0ef580c0"
+ ],
+ "name": "JT MARLIN",
+ "symbol": "MARLIN",
+ "marketCap": "1254614.259705579781749622",
+ "price": "0.00125461425970557978",
+ "priceChange24hPercent": "27893.17",
+ "volume24h": "2220850.592077113441773204",
+ "communityRecognized": false,
+ "key": "evm--4663:0xab35d04e1ee39c789c4a65d522417b3c7f2e4723",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x62cd5cd9d354a2a50affe9efa21c8918b9640a5b",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x62cd5cd9d354a2a50affe9efa21c8918b9640a5b-1788698087258.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x62cd5cd9d354a2a50affe9efa21c8918b9640a5b-1788698087258.png"
+ ],
+ "name": "LADY Exchange",
+ "symbol": "LDX",
+ "marketCap": "859651.651645633726589384",
+ "price": "0.00085965165164563373",
+ "priceChange24hPercent": "-62.22",
+ "volume24h": "2069993.034983544011659352",
+ "communityRecognized": false,
+ "key": "evm--4663:0x62cd5cd9d354a2a50affe9efa21c8918b9640a5b",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x11b70d0243baf75e85ce03201a92b5b7c33beb59",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x11b70d0243baf75e85ce03201a92b5b7c33beb59-1788697768561.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x11b70d0243baf75e85ce03201a92b5b7c33beb59-1788697768561.png"
+ ],
+ "name": "Robin the Frog",
+ "symbol": "ROBIN",
+ "marketCap": "5059217.747200642391632707",
+ "price": "0.00509749368744337543",
+ "priceChange24hPercent": "-62.03",
+ "volume24h": "3973756.007110797340013297",
+ "communityRecognized": false,
+ "key": "evm--4663:0x11b70d0243baf75e85ce03201a92b5b7c33beb59",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "7Y7V1a4m2nWK7BMgbka5B4vR1pDvCK7yva3Hnrqkraze",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/fa21eef99efb8b7842c131cfa852344958bd4c32e76767446fd4983cb58d673c",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/fa21eef99efb8b7842c131cfa852344958bd4c32e76767446fd4983cb58d673c"
+ ],
+ "name": "Nasduck",
+ "symbol": "Nasduck",
+ "marketCap": "4892558.96341480044114222",
+ "price": "0.005087934370491688",
+ "priceChange24hPercent": "129.81",
+ "volume24h": "16073660.300795430498330326",
+ "communityRecognized": false,
+ "key": "sol--101:7Y7V1a4m2nWK7BMgbka5B4vR1pDvCK7yva3Hnrqkraze",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x7df5daaf80e65dfcc7a1435d9b52bcf2b5753fbe",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x7df5daaf80e65dfcc7a1435d9b52bcf2b5753fbe-1788696318342.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x7df5daaf80e65dfcc7a1435d9b52bcf2b5753fbe-1788696318342.png"
+ ],
+ "name": "Unipcs",
+ "symbol": "UNIPCS",
+ "marketCap": "951836.404712392376741929",
+ "price": "0.00095317681003142395",
+ "priceChange24hPercent": "-28.82",
+ "volume24h": "1321402.4117817185941111",
+ "communityRecognized": false,
+ "key": "evm--4663:0x7df5daaf80e65dfcc7a1435d9b52bcf2b5753fbe",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x8602b2fd8d105a56d3152e936e66b1d414142148",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/46be4fa022c8cf4f26df79bb27838188b1097a22d2d5668c723c6177a9bad8e6",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/46be4fa022c8cf4f26df79bb27838188b1097a22d2d5668c723c6177a9bad8e6"
+ ],
+ "name": "Artificial Pepe",
+ "symbol": "AP",
+ "marketCap": "1104363.861105462063331123",
+ "price": "0.00110436386110546206",
+ "priceChange24hPercent": "-34.04",
+ "volume24h": "264908.554005869655216649",
+ "communityRecognized": false,
+ "key": "evm--1:0x8602b2fd8d105a56d3152e936e66b1d414142148",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0x0c9535416fd3b772646c4575e0664fd65afeeeee",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/06d415460409e8d3490a37fdffff10dcae078212668149add6cac2ccc487227d",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/06d415460409e8d3490a37fdffff10dcae078212668149add6cac2ccc487227d"
+ ],
+ "name": "IGNIX",
+ "symbol": "IGNIX",
+ "marketCap": "2050669.850711109531315621",
+ "price": "0.00205066985071110953",
+ "priceChange24hPercent": "347.74",
+ "volume24h": "325174.178547519804874318",
+ "communityRecognized": false,
+ "key": "evm--196:0x0c9535416fd3b772646c4575e0664fd65afeeeee",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xe934e36a439c94017b64a3fece66af12099abf50",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xe934e36a439c94017b64a3fece66af12099abf50-1785290631562.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xe934e36a439c94017b64a3fece66af12099abf50-1785290631562.png"
+ ],
+ "name": "StonkBroker",
+ "symbol": "STONKBROKER",
+ "marketCap": "20518182.682148260865098637",
+ "price": "0.01677267873394663003",
+ "priceChange24hPercent": "27.76",
+ "volume24h": "4504388.188920802361157191",
+ "communityRecognized": true,
+ "key": "evm--4663:0xe934e36a439c94017b64a3fece66af12099abf50",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xca9c78dd337a67f6e0077f65f5e9218719d30edf",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xca9c78dd337a67f6e0077f65f5e9218719d30edf-1785280831816.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xca9c78dd337a67f6e0077f65f5e9218719d30edf-1785280831816.png"
+ ],
+ "name": "NetNet",
+ "symbol": "NET",
+ "marketCap": "3739742.122220151657455659",
+ "price": "637.76997830711379478319",
+ "priceChange24hPercent": "-17.33",
+ "volume24h": "4896393.49960392776047404",
+ "communityRecognized": false,
+ "key": "evm--4663:0xca9c78dd337a67f6e0077f65f5e9218719d30edf",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x2ab8a4dd2191989ac2898006df350b236d2b7777",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x2ab8a4dd2191989ac2898006df350b236d2b7777-1787990461314.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x2ab8a4dd2191989ac2898006df350b236d2b7777-1787990461314.png"
+ ],
+ "name": "施工猫",
+ "symbol": "Sue",
+ "marketCap": "3511764.100491869967331388",
+ "price": "0.00351176429196420492",
+ "priceChange24hPercent": "-41.97",
+ "volume24h": "3506738.399804176643143205",
+ "communityRecognized": true,
+ "key": "evm--56:0x2ab8a4dd2191989ac2898006df350b236d2b7777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x451b42a15100c340ca12f7c66de06fac5ea2d751",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x451b42a15100c340ca12f7c66de06fac5ea2d751-1787832041620.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x451b42a15100c340ca12f7c66de06fac5ea2d751-1787832041620.png"
+ ],
+ "name": "Longbow",
+ "symbol": "BOW",
+ "marketCap": "5686131.59933519377931409",
+ "price": "0.00568613159933519378",
+ "priceChange24hPercent": "-31.62",
+ "volume24h": "1435255.079196432340711178",
+ "communityRecognized": false,
+ "key": "evm--4663:0x451b42a15100c340ca12f7c66de06fac5ea2d751",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xef67e3064bef1a27e81925ec7132f23e533bd5f6",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xef67e3064bef1a27e81925ec7132f23e533bd5f6-1788782588286.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xef67e3064bef1a27e81925ec7132f23e533bd5f6-1788782588286.png"
+ ],
+ "name": "Greatest Meme Ever",
+ "symbol": "GME",
+ "marketCap": "4418340.399659110512455337",
+ "price": "0.0044183404001220693",
+ "priceChange24hPercent": "86.27",
+ "volume24h": "5309313.153588963264824664",
+ "communityRecognized": false,
+ "key": "evm--4663:0xef67e3064bef1a27e81925ec7132f23e533bd5f6",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xe9bc5c6a86caa44fd7b469bf3cc7c563e4f77777",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xe9bc5c6a86caa44fd7b469bf3cc7c563e4f77777-1785831565492.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xe9bc5c6a86caa44fd7b469bf3cc7c563e4f77777-1785831565492.png"
+ ],
+ "name": "Giggle Mascot",
+ "symbol": "Max",
+ "marketCap": "12153096.544639604735301731",
+ "price": "0.01215309770392200853",
+ "priceChange24hPercent": "-44.78",
+ "volume24h": "2394682.566351549068355951",
+ "communityRecognized": false,
+ "key": "evm--56:0xe9bc5c6a86caa44fd7b469bf3cc7c563e4f77777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x7dbf38976f6d3b9c529e7d9484a71898b409ee6a",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x7dbf38976f6d3b9c529e7d9484a71898b409ee6a-1788610442171.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x7dbf38976f6d3b9c529e7d9484a71898b409ee6a-1788610442171.png"
+ ],
+ "name": "ZZZ",
+ "symbol": "ZZZ",
+ "marketCap": "15466129.401190105654350355",
+ "price": "0.01841205881094060197",
+ "priceChange24hPercent": "-12.26",
+ "volume24h": "5046138.166092522992042961",
+ "communityRecognized": false,
+ "key": "evm--4663:0x7dbf38976f6d3b9c529e7d9484a71898b409ee6a",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x9e92bbf2017bbfb7a06c975ca30e268cd2e57777",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/26946e97f0605097c389e90209fbbad48af1927f15b93093e2b999a0ccb97c16",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/26946e97f0605097c389e90209fbbad48af1927f15b93093e2b999a0ccb97c16"
+ ],
+ "name": "Google Dog",
+ "symbol": "股狗",
+ "marketCap": "330885.712103554270207473",
+ "price": "0.00033088571210355427",
+ "priceChange24hPercent": "-53.88",
+ "volume24h": "746079.272976892295312415",
+ "communityRecognized": false,
+ "key": "evm--56:0x9e92bbf2017bbfb7a06c975ca30e268cd2e57777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x2ae1ebeeda58b68a02dc313f7d90aa6ee546df86",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/2d70c37a83c6c75e1500068ec44d7246c00f6c3cc88134c29c693c7ac392bbc0",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/2d70c37a83c6c75e1500068ec44d7246c00f6c3cc88134c29c693c7ac392bbc0"
+ ],
+ "name": "Milk",
+ "symbol": "DC",
+ "marketCap": "45187.582862054210067071",
+ "price": "16.31078572068146233841",
+ "priceChange24hPercent": "-0.59",
+ "volume24h": "464780.2158585126006779",
+ "communityRecognized": false,
+ "key": "evm--4663:0x2ae1ebeeda58b68a02dc313f7d90aa6ee546df86",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xbeea1d618e533a387d941f58a7d4c9b7bd377777",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xbeea1d618e533a387d941f58a7d4c9b7bd377777-1786867206539.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xbeea1d618e533a387d941f58a7d4c9b7bd377777-1786867206539.png"
+ ],
+ "name": "牛来",
+ "symbol": "牛来",
+ "marketCap": "82047208.24262765843217039",
+ "price": "0.08204721650484486528",
+ "priceChange24hPercent": "-2.79",
+ "volume24h": "13008123.56807011890641204",
+ "communityRecognized": false,
+ "key": "evm--56:0xbeea1d618e533a387d941f58a7d4c9b7bd377777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x16391c40e85fb2246a2c8c17bfa2594c5d3ef84b",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x16391c40e85fb2246a2c8c17bfa2594c5d3ef84b-1788523244923.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x16391c40e85fb2246a2c8c17bfa2594c5d3ef84b-1788523244923.png"
+ ],
+ "name": "Touch Grass",
+ "symbol": "GRASS",
+ "marketCap": "3561358.779724398512792577",
+ "price": "0.0035808939708134213",
+ "priceChange24hPercent": "-34.09",
+ "volume24h": "2391712.562612943694777399",
+ "communityRecognized": false,
+ "key": "evm--4663:0x16391c40e85fb2246a2c8c17bfa2594c5d3ef84b",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xe1e5f00a9b0255ca4df85b3130ee0f77d15acc2d",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xe1e5f00a9b0255ca4df85b3130ee0f77d15acc2d-1788696640254.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xe1e5f00a9b0255ca4df85b3130ee0f77d15acc2d-1788696640254.png"
+ ],
+ "name": "Pushin' 🅿️",
+ "symbol": "🅿️",
+ "marketCap": "1670276.961474108523173908",
+ "price": "0.00167027696147410852",
+ "priceChange24hPercent": "-48.89",
+ "volume24h": "3016313.019454927244683797",
+ "communityRecognized": false,
+ "key": "evm--4663:0xe1e5f00a9b0255ca4df85b3130ee0f77d15acc2d",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x507b6f349a80114097a67b8b4677367acc15b220",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x507b6f349a80114097a67b8b4677367acc15b220-1788610022118.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x507b6f349a80114097a67b8b4677367acc15b220-1788610022118.png"
+ ],
+ "name": "par",
+ "symbol": "par",
+ "marketCap": "1798968.499028405695939082",
+ "price": "0.0019041660225060439",
+ "priceChange24hPercent": "-54.49",
+ "volume24h": "2527946.404868407463711609",
+ "communityRecognized": false,
+ "key": "evm--4663:0x507b6f349a80114097a67b8b4677367acc15b220",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xe8ffd7e24187f72afb08d75b1bb13088a989a791",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xe8ffd7e24187f72afb08d75b1bb13088a989a791-1786708993342.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xe8ffd7e24187f72afb08d75b1bb13088a989a791-1786708993342.png"
+ ],
+ "name": "Delta",
+ "symbol": "DELTA",
+ "marketCap": "13472444.557487726415542926",
+ "price": "0.01347244492315809628",
+ "priceChange24hPercent": "12.44",
+ "volume24h": "3709088.913336704922113356",
+ "communityRecognized": false,
+ "key": "evm--4663:0xe8ffd7e24187f72afb08d75b1bb13088a989a791",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x5173d45a1191ee33cbb7d8c7e65f21b04ed54802",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x5173d45a1191ee33cbb7d8c7e65f21b04ed54802-1788264029244.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x5173d45a1191ee33cbb7d8c7e65f21b04ed54802-1788264029244.png"
+ ],
+ "name": "Ramses",
+ "symbol": "RAM",
+ "marketCap": "3461676.475623955075835903",
+ "price": "0.06867351685156609209",
+ "priceChange24hPercent": "-30.75",
+ "volume24h": "1862615.839121895626978053",
+ "communityRecognized": false,
+ "key": "evm--4663:0x5173d45a1191ee33cbb7d8c7e65f21b04ed54802",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "8K5X85PAJHAAVSvYaAzgVPPAPsqqHmvx16ZyBiscYF8L",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-8K5X85PAJHAAVSvYaAzgVPPAPsqqHmvx16ZyBiscYF8L-1788368707252.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-8K5X85PAJHAAVSvYaAzgVPPAPsqqHmvx16ZyBiscYF8L-1788368707252.png"
+ ],
+ "name": "Vida Global CTO",
+ "symbol": "CTO",
+ "marketCap": "10655242.219614694475254837",
+ "price": "0.01162910300962041824",
+ "priceChange24hPercent": "28.29",
+ "volume24h": "6506055.190357037740567695",
+ "communityRecognized": false,
+ "key": "sol--101:8K5X85PAJHAAVSvYaAzgVPPAPsqqHmvx16ZyBiscYF8L",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0x4fec966f98d8530507787d947d1ab24fa145a999",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/5114ae6a8dd22ff7afd7dc72ba2065ab2dc5914e10df890f2c0971f48049eb1f",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/5114ae6a8dd22ff7afd7dc72ba2065ab2dc5914e10df890f2c0971f48049eb1f"
+ ],
+ "name": "LAIKA Coin",
+ "symbol": "LAIKA",
+ "marketCap": "2972813.068622393815012273",
+ "price": "0.00297281315186116207",
+ "priceChange24hPercent": "3.07",
+ "volume24h": "88108.988692108550233988",
+ "communityRecognized": false,
+ "key": "evm--196:0x4fec966f98d8530507787d947d1ab24fa145a999",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x215407c134f68b9da4de10c22c948196053a0d5d",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/70a6389f1690a862f8e3a0d61f5a71c1ed8f0eb1c39ccf6f78f60fff4d400471",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/70a6389f1690a862f8e3a0d61f5a71c1ed8f0eb1c39ccf6f78f60fff4d400471"
+ ],
+ "name": "The Wolf of Wall Street",
+ "symbol": "WOLF",
+ "marketCap": "3798827.95826205946704669",
+ "price": "0.01057270776655222219",
+ "priceChange24hPercent": "5.7",
+ "volume24h": "8437492.113034224214189251",
+ "communityRecognized": false,
+ "key": "evm--4663:0x215407c134f68b9da4de10c22c948196053a0d5d",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x78b96280c3347e0f58a7147b73eb0ec5ffff025d",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x78b96280c3347e0f58a7147b73eb0ec5ffff025d-1788697020328.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x78b96280c3347e0f58a7147b73eb0ec5ffff025d-1788697020328.png"
+ ],
+ "name": "Robinhood Hat Strategy",
+ "symbol": "RSTR",
+ "marketCap": "2725713.193040557852190847",
+ "price": "0.00281246072249804144",
+ "priceChange24hPercent": "581.02",
+ "volume24h": "5004450.972851456189480951",
+ "communityRecognized": false,
+ "key": "evm--4663:0x78b96280c3347e0f58a7147b73eb0ec5ffff025d",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x385f4f8ae47651ce5f58f5265395a669f8281e18",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x385f4f8ae47651ce5f58f5265395a669f8281e18-1788523250367.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x385f4f8ae47651ce5f58f5265395a669f8281e18-1788523250367.png"
+ ],
+ "name": "A Meme Coin",
+ "symbol": "MEME",
+ "marketCap": "122511547.146343256738851074",
+ "price": "0.12251154720077913367",
+ "priceChange24hPercent": "38.64",
+ "volume24h": "59408150.01347669156110108",
+ "communityRecognized": true,
+ "key": "evm--4663:0x385f4f8ae47651ce5f58f5265395a669f8281e18",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "ANM35KbUcfKdEVBXzSjZBoT6ceSwYRs3fuc79fp7kRqP",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/db4d10c19523308df10f606b8b29d51a6e19419261d663ae88497cd02efd20f6",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/db4d10c19523308df10f606b8b29d51a6e19419261d663ae88497cd02efd20f6"
+ ],
+ "name": "Pump Cat",
+ "symbol": "Pumpcat",
+ "marketCap": "1888030.836167347599567097",
+ "price": "0.00191221316104",
+ "priceChange24hPercent": "307.23",
+ "volume24h": "6713569.47635314302",
+ "communityRecognized": false,
+ "key": "sol--101:ANM35KbUcfKdEVBXzSjZBoT6ceSwYRs3fuc79fp7kRqP",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x97216593d3b2769da6f0adeee6fb8e36da4e319f",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x97216593d3b2769da6f0adeee6fb8e36da4e319f-1788782713180.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x97216593d3b2769da6f0adeee6fb8e36da4e319f-1788782713180.png"
+ ],
+ "name": "Ponsancoin",
+ "symbol": "Ponsan",
+ "marketCap": "900669.313469868826823375",
+ "price": "0.00090066931376665403",
+ "priceChange24hPercent": "1.88",
+ "volume24h": "1585832.411958383122797339",
+ "communityRecognized": false,
+ "key": "evm--4663:0x97216593d3b2769da6f0adeee6fb8e36da4e319f",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0xf93de4ef61309ca8bcd0feab0c6f4dd9b2c4eeee",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/64c2e47ff80f1bf64129d2f1adbc694fa9727ad126405abd75aced8e53aef7af",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/64c2e47ff80f1bf64129d2f1adbc694fa9727ad126405abd75aced8e53aef7af"
+ ],
+ "name": "万事ok",
+ "symbol": "万事OK",
+ "marketCap": "39067.736992196169082647",
+ "price": "0.00003906773699219617",
+ "priceChange24hPercent": "519.9",
+ "volume24h": "19574.613952503701502698",
+ "communityRecognized": false,
+ "key": "evm--196:0xf93de4ef61309ca8bcd0feab0c6f4dd9b2c4eeee",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xcd8df4c1052a3447bda6a7423fbc234102f3b477",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/2c2886d399c18bd4b0702fc8ad6b51ba9787a4d5b3d91c759a3febf9c71697b5",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/2c2886d399c18bd4b0702fc8ad6b51ba9787a4d5b3d91c759a3febf9c71697b5"
+ ],
+ "name": "Silverback",
+ "symbol": "SILVERBACK",
+ "marketCap": "435669.577610923584217171",
+ "price": "0.00043566957761092358",
+ "priceChange24hPercent": "8137.89",
+ "volume24h": "2856989.418264295817828117",
+ "communityRecognized": false,
+ "key": "evm--4663:0xcd8df4c1052a3447bda6a7423fbc234102f3b477",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x812486eaea648819853f8e372dc9f1516c7868bd",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x812486eaea648819853f8e372dc9f1516c7868bd-1788354167261.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x812486eaea648819853f8e372dc9f1516c7868bd-1788354167261.png"
+ ],
+ "name": "ubik",
+ "symbol": "UBIK",
+ "marketCap": "18020589.533974926304134548",
+ "price": "0.0180205895339749263",
+ "priceChange24hPercent": "-34.5",
+ "volume24h": "3607365.784706567469977954",
+ "communityRecognized": false,
+ "key": "evm--4663:0x812486eaea648819853f8e372dc9f1516c7868bd",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xf40592daacb3e5abf358789f5688c0b4f64d7777",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xf40592daacb3e5abf358789f5688c0b4f64d7777-1788336091391.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xf40592daacb3e5abf358789f5688c0b4f64d7777-1788336091391.png"
+ ],
+ "name": "FLORK",
+ "symbol": "FLORK",
+ "marketCap": "14165130.750717274515033125",
+ "price": "0.01416513075084475066",
+ "priceChange24hPercent": "-28.15",
+ "volume24h": "4794528.926211968855542287",
+ "communityRecognized": true,
+ "key": "evm--56:0xf40592daacb3e5abf358789f5688c0b4f64d7777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x87ae267002cd1ea0ec86bf3601d4a8ad76a47777",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x87ae267002cd1ea0ec86bf3601d4a8ad76a47777-1787558536892.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x87ae267002cd1ea0ec86bf3601d4a8ad76a47777-1787558536892.png"
+ ],
+ "name": "蝴蝶人生",
+ "symbol": "蝴蝶人生",
+ "marketCap": "2843905.219663741104043209",
+ "price": "0.0028439052196637411",
+ "priceChange24hPercent": "-21.76",
+ "volume24h": "290829.126254161726555391",
+ "communityRecognized": false,
+ "key": "evm--56:0x87ae267002cd1ea0ec86bf3601d4a8ad76a47777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xd4dc6b48ad73ec51e71d9b8f65568f88609b92c1",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xd4dc6b48ad73ec51e71d9b8f65568f88609b92c1-1787659267512.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xd4dc6b48ad73ec51e71d9b8f65568f88609b92c1-1787659267512.png"
+ ],
+ "name": "Sherwood",
+ "symbol": "SHERWOOD",
+ "marketCap": "503569.986816325467242948",
+ "price": "0.00050356998681632547",
+ "priceChange24hPercent": "26.39",
+ "volume24h": "221963.858096828243263027",
+ "communityRecognized": false,
+ "key": "evm--4663:0xd4dc6b48ad73ec51e71d9b8f65568f88609b92c1",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "MukLDtJ8Cx9DxLbeyLRSWPSposTMWuwHANbuaudpump",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-MukLDtJ8Cx9DxLbeyLRSWPSposTMWuwHANbuaudpump-1788282416465.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-MukLDtJ8Cx9DxLbeyLRSWPSposTMWuwHANbuaudpump-1788282416465.png"
+ ],
+ "name": "OTC",
+ "symbol": "OTC",
+ "marketCap": "18665066.221513705269398034",
+ "price": "0.0262623070956762804",
+ "priceChange24hPercent": "84.57",
+ "volume24h": "16573759.37850219641",
+ "communityRecognized": false,
+ "key": "sol--101:MukLDtJ8Cx9DxLbeyLRSWPSposTMWuwHANbuaudpump",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x56910d4409f3a0c78c64dd8d0545ff0705389870",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x56910d4409f3a0c78c64dd8d0545ff0705389870-1784842044117.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x56910d4409f3a0c78c64dd8d0545ff0705389870-1784842044117.png"
+ ],
+ "name": "The Index",
+ "symbol": "Index",
+ "marketCap": "38346880.896545450198895543",
+ "price": "0.03910814324503138447",
+ "priceChange24hPercent": "-13.31",
+ "volume24h": "3881076.870193624429321129",
+ "communityRecognized": true,
+ "key": "evm--4663:0x56910d4409f3a0c78c64dd8d0545ff0705389870",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x4f4a59ac165c6f05ed771df3530741494b1c7777",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/aaedfbda5a6301f10b584f1887dbe9604f4015526974adfc9bd19e9bff06bf7c",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/aaedfbda5a6301f10b584f1887dbe9604f4015526974adfc9bd19e9bff06bf7c"
+ ],
+ "name": "Offchain Dog",
+ "symbol": "zDOG",
+ "marketCap": "716071.920123885726066789",
+ "price": "0.00071607192012388573",
+ "priceChange24hPercent": "19422.18",
+ "volume24h": "11835498.523808768594780244",
+ "communityRecognized": false,
+ "key": "evm--56:0x4f4a59ac165c6f05ed771df3530741494b1c7777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "Aw6fiDPWLUnjSsJQtsyEMSaoPaKAUUrStAsYPiPwpump",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/77390ed5d0a7e7ae6ab8a0e2685653ff99f696192f784341e9d9bd613dc27472",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/77390ed5d0a7e7ae6ab8a0e2685653ff99f696192f784341e9d9bd613dc27472"
+ ],
+ "name": "Anonymouse",
+ "symbol": "Anonymouse",
+ "marketCap": "576031.891998599217547163",
+ "price": "0.00060453517170229361",
+ "priceChange24hPercent": "20554.84",
+ "volume24h": "1586112.82694819975",
+ "communityRecognized": false,
+ "key": "sol--101:Aw6fiDPWLUnjSsJQtsyEMSaoPaKAUUrStAsYPiPwpump",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0x8ad3c73f833d3f9a523ab01476625f269aeb7cf0",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/d20fbce76659b93e5e02cd823afdf5bcac92ba2b71b111deb9ca1fe769ef63d4",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/d20fbce76659b93e5e02cd823afdf5bcac92ba2b71b111deb9ca1fe769ef63d4"
+ ],
+ "name": "Tesla xStock",
+ "symbol": "TSLAx",
+ "marketCap": "1393688637562.962",
+ "price": "356.4350525",
+ "priceChange24hPercent": "0.19",
+ "volume24h": "501506.387798682650676809",
+ "communityRecognized": false,
+ "key": "evm--196:0x8ad3c73f833d3f9a523ab01476625f269aeb7cf0",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x9984668e1999e75d7f3cdf82774356138ae9ffff",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/849174a8bc7837a93979a42f2e648f146724ece15a8b1991a64bd6f4e474a229",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/849174a8bc7837a93979a42f2e648f146724ece15a8b1991a64bd6f4e474a229"
+ ],
+ "name": "STONKS",
+ "symbol": "STONKS",
+ "marketCap": "31966.704357149021062294",
+ "price": "0.00003196670435714902",
+ "priceChange24hPercent": "615.89",
+ "volume24h": "5128834.540404445974487083",
+ "communityRecognized": false,
+ "key": "evm--56:0x9984668e1999e75d7f3cdf82774356138ae9ffff",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x384c3f978950a98523529a205163bf63a69e8dd5",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/7a4fae357f9d4613d7f8b5f8bd76e29c37fb44afd8ff4f0da78fe40be38d3dd3",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/7a4fae357f9d4613d7f8b5f8bd76e29c37fb44afd8ff4f0da78fe40be38d3dd3"
+ ],
+ "name": "Kerf",
+ "symbol": "KERF",
+ "marketCap": "715380.768801813343037355",
+ "price": "0.00071538076880181334",
+ "priceChange24hPercent": "16324.07",
+ "volume24h": "1516166.146420126325346943",
+ "communityRecognized": false,
+ "key": "evm--4663:0x384c3f978950a98523529a205163bf63a69e8dd5",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x1ec871553be07dc68ec1661c32eca7e2e46e1e18",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/ee7408e5fd186d0c6d70812ea983d43036994104aca07d6d3074523eaa5b18a2",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/ee7408e5fd186d0c6d70812ea983d43036994104aca07d6d3074523eaa5b18a2"
+ ],
+ "name": "STONKS",
+ "symbol": "STONKS",
+ "marketCap": "231597.584146714265601533",
+ "price": "0.00023159758414671427",
+ "priceChange24hPercent": "51.71",
+ "volume24h": "208162.496075660623353639",
+ "communityRecognized": false,
+ "key": "evm--4663:0x1ec871553be07dc68ec1661c32eca7e2e46e1e18",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0x18a4f9d450f46f9dea99da758b4c29ad620aae93",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/7f955a6a6dee09fb9ac522f8cb7e1a71c93623576fd8adf1a10945361176072b",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/7f955a6a6dee09fb9ac522f8cb7e1a71c93623576fd8adf1a10945361176072b"
+ ],
+ "name": "NVDA RTX STOCKS",
+ "symbol": "RTX",
+ "marketCap": "234798.302770899805027685",
+ "price": "0.00024018699126154167",
+ "priceChange24hPercent": "92.62",
+ "volume24h": "106505.721223684438900814",
+ "communityRecognized": false,
+ "key": "evm--196:0x18a4f9d450f46f9dea99da758b4c29ad620aae93",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "9cRCn9rGT8V2imeM2BaKs13yhMEais3ruM3rPvTGpump",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-9cRCn9rGT8V2imeM2BaKs13yhMEais3ruM3rPvTGpump-1782140764006.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-9cRCn9rGT8V2imeM2BaKs13yhMEais3ruM3rPvTGpump-1782140764006.png"
+ ],
+ "name": "The Black Bull",
+ "symbol": "ANSEM",
+ "marketCap": "77437082.195285110945748258",
+ "price": "0.1866888694873301954",
+ "priceChange24hPercent": "-18.05",
+ "volume24h": "20575107.646747758299199215",
+ "communityRecognized": true,
+ "key": "sol--101:9cRCn9rGT8V2imeM2BaKs13yhMEais3ruM3rPvTGpump",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xfe7e19cbce2f896c6c528bc355baf5a768291e18",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xfe7e19cbce2f896c6c528bc355baf5a768291e18-1786017952373.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xfe7e19cbce2f896c6c528bc355baf5a768291e18-1786017952373.png"
+ ],
+ "name": "SPACEHOOD",
+ "symbol": "SPACEHOOD",
+ "marketCap": "8428237.504547357156569038",
+ "price": "0.00842823750454735716",
+ "priceChange24hPercent": "-6.2",
+ "volume24h": "1381633.677291874453758251",
+ "communityRecognized": false,
+ "key": "evm--4663:0xfe7e19cbce2f896c6c528bc355baf5a768291e18",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x5b73a93b4e5e4f1fd27d8b3f8c97d69908b5e284",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x5b73a93b4e5e4f1fd27d8b3f8c97d69908b5e284-1757704453242.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x5b73a93b4e5e4f1fd27d8b3f8c97d69908b5e284-1757704453242.png"
+ ],
+ "name": "FORM Token",
+ "symbol": "FORM",
+ "marketCap": "80658171.488379674423689224",
+ "price": "0.27194644982635185092",
+ "priceChange24hPercent": "2.05",
+ "volume24h": "4529353.368341883677493953",
+ "communityRecognized": true,
+ "key": "evm--56:0x5b73a93b4e5e4f1fd27d8b3f8c97d69908b5e284",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x7a848a5a8169aa6a2f603d056a749f924f504444",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x7a848a5a8169aa6a2f603d056a749f924f504444-1783238620991.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x7a848a5a8169aa6a2f603d056a749f924f504444-1783238620991.png"
+ ],
+ "name": "The Final Form Bull",
+ "symbol": "CZ",
+ "marketCap": "1099286.938089230968563345",
+ "price": "0.0036646154199429095",
+ "priceChange24hPercent": "-40.6",
+ "volume24h": "2222297.046959394653769196",
+ "communityRecognized": false,
+ "key": "evm--56:0x7a848a5a8169aa6a2f603d056a749f924f504444",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "XsbEhLAtcf6HdfpFZ5xEMdqW8nfAvcsP5bdudRLJzJp",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-XsbEhLAtcf6HdfpFZ5xEMdqW8nfAvcsP5bdudRLJzJp-1758104899904.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-XsbEhLAtcf6HdfpFZ5xEMdqW8nfAvcsP5bdudRLJzJp-1758104899904.png"
+ ],
+ "name": "Apple xStock",
+ "symbol": "AAPLx",
+ "marketCap": "12673613.761183361201682025",
+ "price": "319.1650975",
+ "priceChange24hPercent": "-0.07",
+ "volume24h": "5771853.530128795754737623",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 xStock 代币化发行",
+ "subtitle": "苹果",
+ "source": "xstock",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/xstock.png",
+ "isOpen": true
+ },
+ "key": "sol--101:XsbEhLAtcf6HdfpFZ5xEMdqW8nfAvcsP5bdudRLJzJp",
+ "kind": "stock",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "CaWZeUM4FvX9dPkjGc2xHS6tSN3qJfTWyvaG77aM5o7h",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-CaWZeUM4FvX9dPkjGc2xHS6tSN3qJfTWyvaG77aM5o7h-1788714223572.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-CaWZeUM4FvX9dPkjGc2xHS6tSN3qJfTWyvaG77aM5o7h-1788714223572.png"
+ ],
+ "name": "artificial gooner intelligence",
+ "symbol": "AGI",
+ "marketCap": "7487544.389171382186207291",
+ "price": "0.00757277071254332448",
+ "priceChange24hPercent": "10.1",
+ "volume24h": "1669352.08858439006",
+ "communityRecognized": true,
+ "key": "sol--101:CaWZeUM4FvX9dPkjGc2xHS6tSN3qJfTWyvaG77aM5o7h",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xa01bc586cd5f4f253bfab4e44400c52dbc18bc50",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/c365b2142e4c766209febdcd7d1678e3519a6be41b491b73bf8cddfc0cd3ab98",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/c365b2142e4c766209febdcd7d1678e3519a6be41b491b73bf8cddfc0cd3ab98"
+ ],
+ "name": "Voxelithic Protocol",
+ "symbol": "VOXEL",
+ "marketCap": "2194808.399720832343306287",
+ "price": "0.00219480839972083234",
+ "priceChange24hPercent": "13.06",
+ "volume24h": "1567925.721438877344681266",
+ "communityRecognized": false,
+ "key": "evm--4663:0xa01bc586cd5f4f253bfab4e44400c52dbc18bc50",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x45242320dbb855eea8fd36804c6487e10e97fcf9",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x45242320dbb855eea8fd36804c6487e10e97fcf9-1784778612504.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x45242320dbb855eea8fd36804c6487e10e97fcf9-1784778612504.png"
+ ],
+ "name": "TENDIES",
+ "symbol": "TENDIES",
+ "marketCap": "15418336.651928049187952375",
+ "price": "0.0161197596815997701",
+ "priceChange24hPercent": "-6.72",
+ "volume24h": "1797045.461635631033203277",
+ "communityRecognized": false,
+ "key": "evm--4663:0x45242320dbb855eea8fd36804c6487e10e97fcf9",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x265b3982ea730748100947f52561a4eab54affff",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x265b3982ea730748100947f52561a4eab54affff-1788163283951.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x265b3982ea730748100947f52561a4eab54affff-1788163283951.png"
+ ],
+ "name": "ast.fun",
+ "symbol": "AST",
+ "marketCap": "1006188.389049844693397769",
+ "price": "0.00101988046623180537",
+ "priceChange24hPercent": "-72.89",
+ "volume24h": "4267010.147095062161785565",
+ "communityRecognized": false,
+ "key": "evm--56:0x265b3982ea730748100947f52561a4eab54affff",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "9GGGhze1NnQwcABTzxdxx89BEFLFtDueHhkwh6japump",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/a6063f660a1b276bba3b9832297a3b2830c66cc58a607c8cc44705fa1b422161",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/a6063f660a1b276bba3b9832297a3b2830c66cc58a607c8cc44705fa1b422161"
+ ],
+ "name": "CatGPT",
+ "symbol": "CatGPT",
+ "marketCap": "609082.858593721636219674",
+ "price": "0.0006248835646515",
+ "priceChange24hPercent": "82.31",
+ "volume24h": "4459099.20714421089",
+ "communityRecognized": false,
+ "key": "sol--101:9GGGhze1NnQwcABTzxdxx89BEFLFtDueHhkwh6japump",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x0c2f3750418273d3749cc62b5d572ac9a5e14db9",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/4b74f508750b26b0a337922a69381c848a3679c858e468b16c974b285c0844c7",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/4b74f508750b26b0a337922a69381c848a3679c858e468b16c974b285c0844c7"
+ ],
+ "name": "OmniPool",
+ "symbol": "Omni",
+ "marketCap": "301896.349245447150250099",
+ "price": "0.00031259004870744823",
+ "priceChange24hPercent": "9854.81",
+ "volume24h": "2336892.981044395189065871",
+ "communityRecognized": false,
+ "key": "evm--56:0x0c2f3750418273d3749cc62b5d572ac9a5e14db9",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0x381bcca21e3d2e069fb2ba44569c1054cc62eeee",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/6957dac910419a804bcd680faec14c8ccd3c3b64d97e799f1b7876c799dcddc2",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/6957dac910419a804bcd680faec14c8ccd3c3b64d97e799f1b7876c799dcddc2"
+ ],
+ "name": "Starcoin",
+ "symbol": "STARCOIN",
+ "marketCap": "38659.072509209109245114",
+ "price": "0.00003865907250920911",
+ "priceChange24hPercent": "216.28",
+ "volume24h": "15568.5012262490715965",
+ "communityRecognized": false,
+ "key": "evm--196:0x381bcca21e3d2e069fb2ba44569c1054cc62eeee",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "HmJDgky11u77hpBss6D8sjNpYPD5B6fWgSVDj58jpump",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-HmJDgky11u77hpBss6D8sjNpYPD5B6fWgSVDj58jpump-1788282013603.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-HmJDgky11u77hpBss6D8sjNpYPD5B6fWgSVDj58jpump-1788282013603.png"
+ ],
+ "name": "Solcat",
+ "symbol": "SOLCAT",
+ "marketCap": "820232.671138683365109843",
+ "price": "0.00082894525101050947",
+ "priceChange24hPercent": "-45.96",
+ "volume24h": "1276164.66897233838",
+ "communityRecognized": true,
+ "key": "sol--101:HmJDgky11u77hpBss6D8sjNpYPD5B6fWgSVDj58jpump",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xc9a981fee1f9dec688bb123ccdecc63d0debfc4e",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xc9a981fee1f9dec688bb123ccdecc63d0debfc4e-1786795236632.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xc9a981fee1f9dec688bb123ccdecc63d0debfc4e-1786795236632.png"
+ ],
+ "name": "SPDR Gold Trust • Robinhood Token",
+ "symbol": "GLD",
+ "marketCap": "6332935.761003106287310793",
+ "price": "407.36193140034649512163",
+ "priceChange24hPercent": "-0.72",
+ "volume24h": "13123591.187738376515343077",
+ "communityRecognized": false,
+ "key": "evm--4663:0xc9a981fee1f9dec688bb123ccdecc63d0debfc4e",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0xffc2af7ff3dc845ec8324b4bfa0478761b1c3333",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/e197c8a7a314decbaf37781a61fd599c28af10d94a6c939ee8c059c102bdc6e6",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/e197c8a7a314decbaf37781a61fd599c28af10d94a6c939ee8c059c102bdc6e6"
+ ],
+ "name": "HEALTH",
+ "symbol": "HEALTH",
+ "marketCap": "2328425.721179221489602687",
+ "price": "0.2221724058360916205",
+ "priceChange24hPercent": "-0.72",
+ "volume24h": "8111.8274307904886655",
+ "communityRecognized": false,
+ "key": "evm--196:0xffc2af7ff3dc845ec8324b4bfa0478761b1c3333",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "HcRLc9VDgjLeK154xDawfb1dmVJ98DoSqcwTHGqiDeJR",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-HcRLc9VDgjLeK154xDawfb1dmVJ98DoSqcwTHGqiDeJR-1788454854698.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-HcRLc9VDgjLeK154xDawfb1dmVJ98DoSqcwTHGqiDeJR-1788454854698.png"
+ ],
+ "name": "Anonymous Cat",
+ "symbol": "ZCAT",
+ "marketCap": "133320996.34062627923315211",
+ "price": "0.13759910078028604069",
+ "priceChange24hPercent": "9.61",
+ "volume24h": "10093231.786735282499715381",
+ "communityRecognized": true,
+ "key": "sol--101:HcRLc9VDgjLeK154xDawfb1dmVJ98DoSqcwTHGqiDeJR",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0x0cc24c51bf89c00c5affbfcf5e856c25ecbdb48e",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/15aefb29f27b6e5d7d418c6b92b3b352e389680196962804a9a8b9fd54a42e65",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/15aefb29f27b6e5d7d418c6b92b3b352e389680196962804a9a8b9fd54a42e65"
+ ],
+ "name": "XDOG",
+ "symbol": "XDOG",
+ "marketCap": "7478062.032446376075161473",
+ "price": "0.00749472791971476489",
+ "priceChange24hPercent": "57.79",
+ "volume24h": "1343561.24558781882064272",
+ "communityRecognized": true,
+ "key": "evm--196:0x0cc24c51bf89c00c5affbfcf5e856c25ecbdb48e",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0xb63efbc28860c8097e341de1fcf59456161e9d98",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/40d968af1f2303f4272fd4cee6151e7094b40350c2b598d5ce76e20cf90e44d4",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/40d968af1f2303f4272fd4cee6151e7094b40350c2b598d5ce76e20cf90e44d4"
+ ],
+ "name": "Sandisk Corporation xStock",
+ "symbol": "SNDKx",
+ "marketCap": "256808803334.25",
+ "price": "1812.751875",
+ "priceChange24hPercent": "1.62",
+ "volume24h": "17962.49144300904663616",
+ "communityRecognized": false,
+ "key": "evm--196:0xb63efbc28860c8097e341de1fcf59456161e9d98",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "XsoCS1TfEyfFhfvj8EtZ528L3CaKBDBRqRapnBbDF2W",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-XsoCS1TfEyfFhfvj8EtZ528L3CaKBDBRqRapnBbDF2W-1758104197788.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-XsoCS1TfEyfFhfvj8EtZ528L3CaKBDBRqRapnBbDF2W-1758104197788.png"
+ ],
+ "name": "SP500 xStock",
+ "symbol": "SPYx",
+ "marketCap": "55179799.218780195013637983",
+ "price": "768.2835715534420055574",
+ "priceChange24hPercent": "-0.37",
+ "volume24h": "16708547.447404746218782007",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 xStock 代币化发行",
+ "subtitle": "标普500 ETF",
+ "source": "xstock",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/xstock.png",
+ "isOpen": true
+ },
+ "key": "sol--101:XsoCS1TfEyfFhfvj8EtZ528L3CaKBDBRqRapnBbDF2W",
+ "kind": "stock",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ }
+ ],
+ "trending|evm--56|5m|all": [
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x888656062164473c93c06ca89ae4d868d606ffff",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/4a563ac1c0cd1b7ed43429ee1ad5750a8ca22c0eaaa08d0427a8a86e8a2348f0",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/4a563ac1c0cd1b7ed43429ee1ad5750a8ca22c0eaaa08d0427a8a86e8a2348f0"
+ ],
+ "name": "Fat Panda",
+ "symbol": "FATPANDA",
+ "marketCap": "1985744.921374146154397407",
+ "price": "0.00198574492137414615",
+ "priceChange24hPercent": "16.25",
+ "volume24h": "247588.191626615671611889",
+ "communityRecognized": false,
+ "key": "evm--56:0x888656062164473c93c06ca89ae4d868d606ffff",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xc9d825e83aada475bd4d38c8ca984ed746277777",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xc9d825e83aada475bd4d38c8ca984ed746277777-1788595746569.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xc9d825e83aada475bd4d38c8ca984ed746277777-1788595746569.png"
+ ],
+ "name": "Stonks",
+ "symbol": "Stonks",
+ "marketCap": "3615724.513021514179669825",
+ "price": "0.00361572451302151418",
+ "priceChange24hPercent": "12.65",
+ "volume24h": "117114.053314568191258521",
+ "communityRecognized": true,
+ "key": "evm--56:0xc9d825e83aada475bd4d38c8ca984ed746277777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xd270d4e1ec6e6e0d28c0ecb8be966ec75997ffff",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/f3bf6d8a8bc7f4be0ec6949fa0ebf538953fcd6443cd6681e394f790b6546a1e",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/f3bf6d8a8bc7f4be0ec6949fa0ebf538953fcd6443cd6681e394f790b6546a1e"
+ ],
+ "name": "4Stock",
+ "symbol": "4Stock",
+ "marketCap": "8454069.07577479534475951",
+ "price": "0.00845406907577479534",
+ "priceChange24hPercent": "4.94",
+ "volume24h": "420468.405752285593313517",
+ "communityRecognized": false,
+ "key": "evm--56:0xd270d4e1ec6e6e0d28c0ecb8be966ec75997ffff",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x8fdb0647e2bf11c8d88ef7825905f5f428864444",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/f3bf6d8a8bc7f4be0ec6949fa0ebf538953fcd6443cd6681e394f790b6546a1e",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/f3bf6d8a8bc7f4be0ec6949fa0ebf538953fcd6443cd6681e394f790b6546a1e"
+ ],
+ "name": "4cat",
+ "symbol": "4cat",
+ "marketCap": "132186.874931726983465779",
+ "price": "0.00013218687493172698",
+ "priceChange24hPercent": "-23.74",
+ "volume24h": "37515.99589857115039769",
+ "communityRecognized": false,
+ "key": "evm--56:0x8fdb0647e2bf11c8d88ef7825905f5f428864444",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x17616c8f6cacf14fcff63f3188a30691802effff",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/cfcf37bcd1b22ee8594b38b7c1bbb0d2aafe3f8ad70ec9d9cbd108990326678d",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/cfcf37bcd1b22ee8594b38b7c1bbb0d2aafe3f8ad70ec9d9cbd108990326678d"
+ ],
+ "name": "Built and Code",
+ "symbol": "BNC",
+ "marketCap": "968019.215709756842146455",
+ "price": "0.00096801921570975684",
+ "priceChange24hPercent": "25.29",
+ "volume24h": "69013.362466648861317937",
+ "communityRecognized": false,
+ "key": "evm--56:0x17616c8f6cacf14fcff63f3188a30691802effff",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xe9337dde3dd9e97f1f45a56412767ce5098e7777",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xe9337dde3dd9e97f1f45a56412767ce5098e7777-1785657919485.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xe9337dde3dd9e97f1f45a56412767ce5098e7777-1785657919485.png"
+ ],
+ "name": "何必东奔西走 币安全部都有",
+ "symbol": "币有",
+ "marketCap": "3164666.390133842302734257",
+ "price": "0.00316466639033410038",
+ "priceChange24hPercent": "7.91",
+ "volume24h": "94426.835480609800953309",
+ "communityRecognized": false,
+ "key": "evm--56:0xe9337dde3dd9e97f1f45a56412767ce5098e7777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xa6b53819f5bf521945fceb1f9bbb3a7a7b4effff",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/e5fb48d54702b49bd31d0551378667606ad6bb5e4e33b94fc32179b14469f2d0",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/e5fb48d54702b49bd31d0551378667606ad6bb5e4e33b94fc32179b14469f2d0"
+ ],
+ "name": "CEA Industries",
+ "symbol": "Vape",
+ "marketCap": "176404.301183153400696826",
+ "price": "0.0001764043011831534",
+ "priceChange24hPercent": "-25.18",
+ "volume24h": "53855.65298871531315415",
+ "communityRecognized": false,
+ "key": "evm--56:0xa6b53819f5bf521945fceb1f9bbb3a7a7b4effff",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x7bc70ae0f2a67d2fdc0180a697a611f21c857777",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x7bc70ae0f2a67d2fdc0180a697a611f21c857777-1788768091330.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x7bc70ae0f2a67d2fdc0180a697a611f21c857777-1788768091330.png"
+ ],
+ "name": "BEN",
+ "symbol": "BEN",
+ "marketCap": "4691268.880796520376779672",
+ "price": "0.00469126888091739643",
+ "priceChange24hPercent": "5.07",
+ "volume24h": "29768.41948178623168243",
+ "communityRecognized": false,
+ "key": "evm--56:0x7bc70ae0f2a67d2fdc0180a697a611f21c857777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xb3a1e1f7ae6c90c707ec3c75e99c359482fea5b9",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/488d50fb3eb6f79c9440d809ef90dc3a197facbca4792e913cf6d2ab384a3fbe",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/488d50fb3eb6f79c9440d809ef90dc3a197facbca4792e913cf6d2ab384a3fbe"
+ ],
+ "name": "Sock",
+ "symbol": "SOCK",
+ "marketCap": "5055307.749537088461358135",
+ "price": "0.00505639238387653219",
+ "priceChange24hPercent": "-1.15",
+ "volume24h": "5077.489356746228379671",
+ "communityRecognized": false,
+ "key": "evm--56:0xb3a1e1f7ae6c90c707ec3c75e99c359482fea5b9",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xfa6d9b504848606eb9aec04ccc161d169b3f2159",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xfa6d9b504848606eb9aec04ccc161d169b3f2159-1788768839130.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xfa6d9b504848606eb9aec04ccc161d169b3f2159-1788768839130.png"
+ ],
+ "name": "BREW",
+ "symbol": "BREW",
+ "marketCap": "6538711.799489674177314067",
+ "price": "0.00653871179948967418",
+ "priceChange24hPercent": "3.35",
+ "volume24h": "7484.5057829230478138",
+ "communityRecognized": true,
+ "key": "evm--56:0xfa6d9b504848606eb9aec04ccc161d169b3f2159",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x198dba421a7db566a90da5de7901abe3443b4444",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x198dba421a7db566a90da5de7901abe3443b4444-1783844840152.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x198dba421a7db566a90da5de7901abe3443b4444-1783844840152.png"
+ ],
+ "name": "富贵",
+ "symbol": "富贵",
+ "marketCap": "2004608.783658215940488177",
+ "price": "0.00200460880490616635",
+ "priceChange24hPercent": "3.5",
+ "volume24h": "3631.46864755661394557",
+ "communityRecognized": false,
+ "key": "evm--56:0x198dba421a7db566a90da5de7901abe3443b4444",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x2ab8a4dd2191989ac2898006df350b236d2b7777",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x2ab8a4dd2191989ac2898006df350b236d2b7777-1787990461314.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x2ab8a4dd2191989ac2898006df350b236d2b7777-1787990461314.png"
+ ],
+ "name": "施工猫",
+ "symbol": "Sue",
+ "marketCap": "3525503.639455193998936336",
+ "price": "0.00352550383167665148",
+ "priceChange24hPercent": "1.96",
+ "volume24h": "5230.356003971269205",
+ "communityRecognized": true,
+ "key": "evm--56:0x2ab8a4dd2191989ac2898006df350b236d2b7777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xe9bc5c6a86caa44fd7b469bf3cc7c563e4f77777",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xe9bc5c6a86caa44fd7b469bf3cc7c563e4f77777-1785831565492.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xe9bc5c6a86caa44fd7b469bf3cc7c563e4f77777-1785831565492.png"
+ ],
+ "name": "Giggle Mascot",
+ "symbol": "Max",
+ "marketCap": "12379501.526308740492021141",
+ "price": "0.012379502707187888",
+ "priceChange24hPercent": "-1.75",
+ "volume24h": "9793.4495005413611762",
+ "communityRecognized": false,
+ "key": "evm--56:0xe9bc5c6a86caa44fd7b469bf3cc7c563e4f77777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x9e92bbf2017bbfb7a06c975ca30e268cd2e57777",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/26946e97f0605097c389e90209fbbad48af1927f15b93093e2b999a0ccb97c16",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/26946e97f0605097c389e90209fbbad48af1927f15b93093e2b999a0ccb97c16"
+ ],
+ "name": "Google Dog",
+ "symbol": "股狗",
+ "marketCap": "332064.446510156775471152",
+ "price": "0.00033206444651015678",
+ "priceChange24hPercent": "0.76",
+ "volume24h": "985.285872877375343",
+ "communityRecognized": false,
+ "key": "evm--56:0x9e92bbf2017bbfb7a06c975ca30e268cd2e57777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xbeea1d618e533a387d941f58a7d4c9b7bd377777",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xbeea1d618e533a387d941f58a7d4c9b7bd377777-1786867206539.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xbeea1d618e533a387d941f58a7d4c9b7bd377777-1786867206539.png"
+ ],
+ "name": "牛来",
+ "symbol": "牛来",
+ "marketCap": "81315633.730996053986212561",
+ "price": "0.08131564191954314277",
+ "priceChange24hPercent": "-0.45",
+ "volume24h": "15092.294068073313728",
+ "communityRecognized": false,
+ "key": "evm--56:0xbeea1d618e533a387d941f58a7d4c9b7bd377777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xf40592daacb3e5abf358789f5688c0b4f64d7777",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xf40592daacb3e5abf358789f5688c0b4f64d7777-1788336091391.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xf40592daacb3e5abf358789f5688c0b4f64d7777-1788336091391.png"
+ ],
+ "name": "FLORK",
+ "symbol": "FLORK",
+ "marketCap": "13974844.309976889329689928",
+ "price": "0.01397484431010265303",
+ "priceChange24hPercent": "0",
+ "volume24h": "8806.2342638809621713",
+ "communityRecognized": true,
+ "key": "evm--56:0xf40592daacb3e5abf358789f5688c0b4f64d7777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x87ae267002cd1ea0ec86bf3601d4a8ad76a47777",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x87ae267002cd1ea0ec86bf3601d4a8ad76a47777-1787558536892.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x87ae267002cd1ea0ec86bf3601d4a8ad76a47777-1787558536892.png"
+ ],
+ "name": "蝴蝶人生",
+ "symbol": "蝴蝶人生",
+ "marketCap": "2900864.953755263095854545",
+ "price": "0.0029008649537552631",
+ "priceChange24hPercent": "9.82",
+ "volume24h": "11340.26247683439334569",
+ "communityRecognized": false,
+ "key": "evm--56:0x87ae267002cd1ea0ec86bf3601d4a8ad76a47777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x5b73a93b4e5e4f1fd27d8b3f8c97d69908b5e284",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x5b73a93b4e5e4f1fd27d8b3f8c97d69908b5e284-1757704453242.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x5b73a93b4e5e4f1fd27d8b3f8c97d69908b5e284-1757704453242.png"
+ ],
+ "name": "FORM Token",
+ "symbol": "FORM",
+ "marketCap": "81337721.233552374393924307",
+ "price": "0.27423761434533356272",
+ "priceChange24hPercent": "0.44",
+ "volume24h": "2340.92218370887661308",
+ "communityRecognized": true,
+ "key": "evm--56:0x5b73a93b4e5e4f1fd27d8b3f8c97d69908b5e284",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x7a848a5a8169aa6a2f603d056a749f924f504444",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x7a848a5a8169aa6a2f603d056a749f924f504444-1783238620991.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x7a848a5a8169aa6a2f603d056a749f924f504444-1783238620991.png"
+ ],
+ "name": "The Final Form Bull",
+ "symbol": "CZ",
+ "marketCap": "1108669.360880238166665035",
+ "price": "0.00369589294180277339",
+ "priceChange24hPercent": "1.43",
+ "volume24h": "2434.3793935407966862",
+ "communityRecognized": false,
+ "key": "evm--56:0x7a848a5a8169aa6a2f603d056a749f924f504444",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x265b3982ea730748100947f52561a4eab54affff",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x265b3982ea730748100947f52561a4eab54affff-1788163283951.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x265b3982ea730748100947f52561a4eab54affff-1788163283951.png"
+ ],
+ "name": "ast.fun",
+ "symbol": "AST",
+ "marketCap": "869555.825261133164744628",
+ "price": "0.00088138862476773644",
+ "priceChange24hPercent": "-13.45",
+ "volume24h": "13292.78203865423069807",
+ "communityRecognized": false,
+ "key": "evm--56:0x265b3982ea730748100947f52561a4eab54affff",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x4f4a59ac165c6f05ed771df3530741494b1c7777",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/aaedfbda5a6301f10b584f1887dbe9604f4015526974adfc9bd19e9bff06bf7c",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/aaedfbda5a6301f10b584f1887dbe9604f4015526974adfc9bd19e9bff06bf7c"
+ ],
+ "name": "Offchain Dog",
+ "symbol": "zDOG",
+ "marketCap": "772076.5981881585062435",
+ "price": "0.00077207659818815851",
+ "priceChange24hPercent": "24.73",
+ "volume24h": "8103.134893289515162727",
+ "communityRecognized": false,
+ "key": "evm--56:0x4f4a59ac165c6f05ed771df3530741494b1c7777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x3f53de71c126bdabae20f9cd64848d317f6c3238",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x3f53de71c126bdabae20f9cd64848d317f6c3238-1784361925966.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x3f53de71c126bdabae20f9cd64848d317f6c3238-1784361925966.png"
+ ],
+ "name": "Alphabet",
+ "symbol": "GOOGLB",
+ "marketCap": "26814290.0074111255944",
+ "price": "338.46",
+ "priceChange24hPercent": "-0.41",
+ "volume24h": "4847.368161962812448709",
+ "communityRecognized": false,
+ "key": "evm--56:0x3f53de71c126bdabae20f9cd64848d317f6c3238",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x4ef9d3062c7f6eba4aae4990c5036598c6eff4ec",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x4ef9d3062c7f6eba4aae4990c5036598c6eff4ec-1784361786390.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x4ef9d3062c7f6eba4aae4990c5036598c6eff4ec-1784361786390.png"
+ ],
+ "name": "Alibaba",
+ "symbol": "BABAB",
+ "marketCap": "3748171.4208860636",
+ "price": "111.64",
+ "priceChange24hPercent": "0.1",
+ "volume24h": "2335.86928475140255776",
+ "communityRecognized": false,
+ "key": "evm--56:0x4ef9d3062c7f6eba4aae4990c5036598c6eff4ec",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xe5fd43bc02a6b98aa7d80d929168b318f7547777",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/6a55b6d0cec2baf1bf84345c3b4d50da8ae6f8392a500e8c1e5422659ff4e646",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/6a55b6d0cec2baf1bf84345c3b4d50da8ae6f8392a500e8c1e5422659ff4e646"
+ ],
+ "name": "Keel",
+ "symbol": "KEEL",
+ "marketCap": "107605.859588292329805647",
+ "price": "0.00010760585958829233",
+ "priceChange24hPercent": "-1.25",
+ "volume24h": "620.2377778729977409",
+ "communityRecognized": false,
+ "key": "evm--56:0xe5fd43bc02a6b98aa7d80d929168b318f7547777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x431a3bee82e2ca41e49895cbece5bb0f76a89b7a",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x431a3bee82e2ca41e49895cbece5bb0f76a89b7a-1785484886316.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x431a3bee82e2ca41e49895cbece5bb0f76a89b7a-1785484886316.png"
+ ],
+ "name": "Apple",
+ "symbol": "AAPLB",
+ "marketCap": "6580346.4929515002145",
+ "price": "319.56994327900136704227",
+ "priceChange24hPercent": "0.02",
+ "volume24h": "29956.4993919174521402",
+ "communityRecognized": false,
+ "key": "evm--56:0x431a3bee82e2ca41e49895cbece5bb0f76a89b7a",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xeccbb861c0dda7efd964010085488b69317e4444",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xeccbb861c0dda7efd964010085488b69317e4444-1772266878150.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xeccbb861c0dda7efd964010085488b69317e4444-1772266878150.png"
+ ],
+ "name": "龙虾",
+ "symbol": "龙虾",
+ "marketCap": "57410944.150485409858350971",
+ "price": "0.05741094441350569486",
+ "priceChange24hPercent": "-0.28",
+ "volume24h": "1581.040932752348065",
+ "communityRecognized": true,
+ "key": "evm--56:0xeccbb861c0dda7efd964010085488b69317e4444",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x277add739c6e0477616948357af9e79fe1ec9b80",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x277add739c6e0477616948357af9e79fe1ec9b80-1785225726728.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x277add739c6e0477616948357af9e79fe1ec9b80-1785225726728.png"
+ ],
+ "name": "AEON",
+ "symbol": "AEON",
+ "marketCap": "12687587.149476832448124543",
+ "price": "0.05431330115358233069",
+ "priceChange24hPercent": "-0.25",
+ "volume24h": "11466.56911968010060316",
+ "communityRecognized": true,
+ "key": "evm--56:0x277add739c6e0477616948357af9e79fe1ec9b80",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x75b364916b65f1e8959fa0210a6922c2ee237777",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/f104dae5a17692fb46edcee8d1b5a247e1c54183ff41afb6059679168e6b5f19",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/f104dae5a17692fb46edcee8d1b5a247e1c54183ff41afb6059679168e6b5f19"
+ ],
+ "name": "TrustCat",
+ "symbol": "TrustCat",
+ "marketCap": "191644.430946520580024584",
+ "price": "0.00019164443094652058",
+ "priceChange24hPercent": "-8.54",
+ "volume24h": "2645.6524191559439377",
+ "communityRecognized": false,
+ "key": "evm--56:0x75b364916b65f1e8959fa0210a6922c2ee237777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xa394dcea3fd3847fd793afbfd163e2e3858b7c65",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xa394dcea3fd3847fd793afbfd163e2e3858b7c65-1785139211549.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xa394dcea3fd3847fd793afbfd163e2e3858b7c65-1785139211549.png"
+ ],
+ "name": "Robinhood",
+ "symbol": "HOODB",
+ "marketCap": "6657816.4153896045",
+ "price": "122.95",
+ "priceChange24hPercent": "-0.08",
+ "volume24h": "516.7052651811366247",
+ "communityRecognized": false,
+ "key": "evm--56:0xa394dcea3fd3847fd793afbfd163e2e3858b7c65",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x9b8e987e6fec8cf1380c4dca7071e2c7853aeea1",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x9b8e987e6fec8cf1380c4dca7071e2c7853aeea1-1773890745834.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x9b8e987e6fec8cf1380c4dca7071e2c7853aeea1-1773890745834.png"
+ ],
+ "name": "iShares China Large-Cap ETF (Ondo Tokenized)",
+ "symbol": "FXIon",
+ "marketCap": "383060.830532199629954621",
+ "price": "35.347713127268825539",
+ "priceChange24hPercent": "-",
+ "volume24h": "105651.0913386660738211",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x9b8e987e6fec8cf1380c4dca7071e2c7853aeea1",
+ "kind": "stock",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x5b1910eaad6450e50f816082aa078c41f10c292f",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x5b1910eaad6450e50f816082aa078c41f10c292f-1781337775850.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x5b1910eaad6450e50f816082aa078c41f10c292f-1781337775850.png"
+ ],
+ "name": "Tesla, Inc. ",
+ "symbol": "TSLAB",
+ "marketCap": "17974787.0283940827",
+ "price": "356.73",
+ "priceChange24hPercent": "-0.48",
+ "volume24h": "3599.15778319133545212",
+ "communityRecognized": false,
+ "key": "evm--56:0x5b1910eaad6450e50f816082aa078c41f10c292f",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xb0f09ea9ae0515c3551080d4a745c8115aa30e37",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xb0f09ea9ae0515c3551080d4a745c8115aa30e37-1786521835205.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xb0f09ea9ae0515c3551080d4a745c8115aa30e37-1786521835205.png"
+ ],
+ "name": "DAPPOS",
+ "symbol": "DOS",
+ "marketCap": "8089952.224964676897703544",
+ "price": "0.22978419216165026472",
+ "priceChange24hPercent": "-0.15",
+ "volume24h": "3063.015957413970378",
+ "communityRecognized": true,
+ "key": "evm--56:0xb0f09ea9ae0515c3551080d4a745c8115aa30e37",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x66661c7229901f568f16bd1551b3ba826f83ce49",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x66661c7229901f568f16bd1551b3ba826f83ce49-1787817829554.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x66661c7229901f568f16bd1551b3ba826f83ce49-1787817829554.png"
+ ],
+ "name": "Teller",
+ "symbol": "DEBIT",
+ "marketCap": "27637912.292854535183785709",
+ "price": "1.60498909946890448222",
+ "priceChange24hPercent": "0",
+ "volume24h": "1040805.3068946723890145",
+ "communityRecognized": true,
+ "key": "evm--56:0x66661c7229901f568f16bd1551b3ba826f83ce49",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x2ab198e0078a8a233b8e7685356cb76482b9e681",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/8356346777831140edc501f7c039ec2abceb49e4ee845cb86f3053a51d691863",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/8356346777831140edc501f7c039ec2abceb49e4ee845cb86f3053a51d691863"
+ ],
+ "name": "Artificial Intelligence Two",
+ "symbol": "AIT",
+ "marketCap": "4287074196.25429954374756",
+ "price": "0.42870741962542995437",
+ "priceChange24hPercent": "-0.48",
+ "volume24h": "1948.23097563703723533",
+ "communityRecognized": false,
+ "key": "evm--56:0x2ab198e0078a8a233b8e7685356cb76482b9e681",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x2c3a8ee94ddd97244a93bc48298f97d2c412f7db",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x2c3a8ee94ddd97244a93bc48298f97d2c412f7db-1757703625601.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x2c3a8ee94ddd97244a93bc48298f97d2c412f7db-1757703625601.png"
+ ],
+ "name": "AKE",
+ "symbol": "AKE",
+ "marketCap": "416296457.038256878835646491",
+ "price": "0.01826162009270195224",
+ "priceChange24hPercent": "-0.1",
+ "volume24h": "29150.848457835015439091",
+ "communityRecognized": true,
+ "key": "evm--56:0x2c3a8ee94ddd97244a93bc48298f97d2c412f7db",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xd5f6ef5deabe61e6d5cdb49bfb6f156f2c1ca715",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xd5f6ef5deabe61e6d5cdb49bfb6f156f2c1ca715-1782201736416.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xd5f6ef5deabe61e6d5cdb49bfb6f156f2c1ca715-1782201736416.png"
+ ],
+ "name": "Arcium",
+ "symbol": "ARX",
+ "marketCap": "2307786.482312153867463489",
+ "price": "0.13853557495469045787",
+ "priceChange24hPercent": "-0.52",
+ "volume24h": "2445.2500979591023999",
+ "communityRecognized": true,
+ "key": "evm--56:0xd5f6ef5deabe61e6d5cdb49bfb6f156f2c1ca715",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x500a02a20b0b0a3f3efccfc0559543f5743bd1c4",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x500a02a20b0b0a3f3efccfc0559543f5743bd1c4-1781770298726.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x500a02a20b0b0a3f3efccfc0559543f5743bd1c4-1781770298726.png"
+ ],
+ "name": "o1.exchange",
+ "symbol": "O",
+ "marketCap": "10795011.611126715959593983",
+ "price": "0.53972228432139312989",
+ "priceChange24hPercent": "-0.01",
+ "volume24h": "952.605969778763976",
+ "communityRecognized": true,
+ "key": "evm--56:0x500a02a20b0b0a3f3efccfc0559543f5743bd1c4",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xce0321537b2a6399d629771b04e2ae9b44017777",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xce0321537b2a6399d629771b04e2ae9b44017777-1787991154384.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xce0321537b2a6399d629771b04e2ae9b44017777-1787991154384.png"
+ ],
+ "name": "交流1048106404",
+ "symbol": "火星战车",
+ "marketCap": "2537085.313850503747399213",
+ "price": "0.00258714215272399651",
+ "priceChange24hPercent": "-0.97",
+ "volume24h": "519.8644203938164896",
+ "communityRecognized": false,
+ "key": "evm--56:0xce0321537b2a6399d629771b04e2ae9b44017777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x1ab89c265a1ea8f0ac9dff6a88e6b1c9f86f7777",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/b77b9754e8e0ffd66c0c81ffbfb7be615c3f96c168690673365fbba39742bff5",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/b77b9754e8e0ffd66c0c81ffbfb7be615c3f96c168690673365fbba39742bff5"
+ ],
+ "name": "bStocks",
+ "symbol": "bStocks",
+ "marketCap": "18724.826904411064944599",
+ "price": "0.00001872482690441106",
+ "priceChange24hPercent": "-3.41",
+ "volume24h": "650.737541602855032022",
+ "communityRecognized": false,
+ "key": "evm--56:0x1ab89c265a1ea8f0ac9dff6a88e6b1c9f86f7777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x21caef8a43163eea865baee23b9c2e327696a3bf",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x21caef8a43163eea865baee23b9c2e327696a3bf-1779763100866.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x21caef8a43163eea865baee23b9c2e327696a3bf-1779763100866.png"
+ ],
+ "name": "Tether Gold",
+ "symbol": "XAUt",
+ "marketCap": "58890741.125196808222928869",
+ "price": "4435.53277368368646619941",
+ "priceChange24hPercent": "0.03",
+ "volume24h": "14715.54079771462787902",
+ "communityRecognized": false,
+ "key": "evm--56:0x21caef8a43163eea865baee23b9c2e327696a3bf",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x46f2564e0fa8248d15125e7e54173cfbdef91be7",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x46f2564e0fa8248d15125e7e54173cfbdef91be7-1785484850757.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x46f2564e0fa8248d15125e7e54173cfbdef91be7-1785484850757.png"
+ ],
+ "name": "GRVT",
+ "symbol": "GRVT",
+ "marketCap": "2136018.461506989521573869",
+ "price": "0.16972545885264871147",
+ "priceChange24hPercent": "1.41",
+ "volume24h": "2540.5214947860792153",
+ "communityRecognized": true,
+ "key": "evm--56:0x46f2564e0fa8248d15125e7e54173cfbdef91be7",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x71967d91abfbf96796238e70092c85878fc85999",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x71967d91abfbf96796238e70092c85878fc85999-1784534417711.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x71967d91abfbf96796238e70092c85878fc85999-1784534417711.png"
+ ],
+ "name": "Satoshi Protocol Token",
+ "symbol": "SPR",
+ "marketCap": "81258854.855630472210388238",
+ "price": "107.70000173402418874061",
+ "priceChange24hPercent": "0.51",
+ "volume24h": "598.683637501840794964",
+ "communityRecognized": false,
+ "key": "evm--56:0x71967d91abfbf96796238e70092c85878fc85999",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x8ffdcd653a218b3a00b8d41ea95ee1e11426ffff",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/be4cbb740113649d957ec49879ac6177a0694dfe9845a00cac46be3abd340d29",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/be4cbb740113649d957ec49879ac6177a0694dfe9845a00cac46be3abd340d29"
+ ],
+ "name": "邮差猫",
+ "symbol": "邮差猫",
+ "marketCap": "704469.984356941444570534",
+ "price": "0.00070446998435694144",
+ "priceChange24hPercent": "4.95",
+ "volume24h": "896.482291941333445",
+ "communityRecognized": false,
+ "key": "evm--56:0x8ffdcd653a218b3a00b8d41ea95ee1e11426ffff",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x1ba42e5193dfa8b03d15dd1b86a3113bbbef8eeb",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x1ba42e5193dfa8b03d15dd1b86a3113bbbef8eeb-1757704281569.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x1ba42e5193dfa8b03d15dd1b86a3113bbbef8eeb-1757704281569.png"
+ ],
+ "name": "Binance-Peg Zcash Token",
+ "symbol": "ZEC",
+ "marketCap": "247270748.455145848835815886",
+ "price": "1123.95817644112360718577",
+ "priceChange24hPercent": "-0.5",
+ "volume24h": "39008.152495664205843664",
+ "communityRecognized": true,
+ "key": "evm--56:0x1ba42e5193dfa8b03d15dd1b86a3113bbbef8eeb",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x1f12b85aac097e43aa1555b2881e98a51090e9a6",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x1f12b85aac097e43aa1555b2881e98a51090e9a6-1776240031285.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x1f12b85aac097e43aa1555b2881e98a51090e9a6-1776240031285.png"
+ ],
+ "name": "Genius",
+ "symbol": "GENIUS",
+ "marketCap": "97730501.979140901125665387",
+ "price": "0.29140485121595899356",
+ "priceChange24hPercent": "0.01",
+ "volume24h": "772.9718367163115273",
+ "communityRecognized": true,
+ "key": "evm--56:0x1f12b85aac097e43aa1555b2881e98a51090e9a6",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xecd794149128e7344154d8993fc0186d57de7777",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/4d69a08aec8be4ccb8730674fbbbe546f37de5dd7283a940fca40f9919433af1",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/4d69a08aec8be4ccb8730674fbbbe546f37de5dd7283a940fca40f9919433af1"
+ ],
+ "name": "狴犴(bian)监狱的代称,CZ的守护神。",
+ "symbol": "狴犴",
+ "marketCap": "894679.376474521284887275",
+ "price": "0.01801207806298397811",
+ "priceChange24hPercent": "-2.84",
+ "volume24h": "8086.5450386973492006",
+ "communityRecognized": false,
+ "key": "evm--56:0xecd794149128e7344154d8993fc0186d57de7777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x255e746abb8d9acac00d6d023e5e63e3b8dfa7cd",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x255e746abb8d9acac00d6d023e5e63e3b8dfa7cd-1778486446534.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x255e746abb8d9acac00d6d023e5e63e3b8dfa7cd-1778486446534.png"
+ ],
+ "name": "IBS",
+ "symbol": "IBS",
+ "marketCap": "9275650.422649753853753797",
+ "price": "12.18869124052090376079",
+ "priceChange24hPercent": "-0.68",
+ "volume24h": "7806.0254454448819396",
+ "communityRecognized": true,
+ "key": "evm--56:0x255e746abb8d9acac00d6d023e5e63e3b8dfa7cd",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xe0ab66985c8d18fba4cbc080024341750e997777",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xe0ab66985c8d18fba4cbc080024341750e997777-1787990635380.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xe0ab66985c8d18fba4cbc080024341750e997777-1787990635380.png"
+ ],
+ "name": "TITAN",
+ "symbol": "TITAN",
+ "marketCap": "1097253.921737584663753254",
+ "price": "0.01507987676743016512",
+ "priceChange24hPercent": "-1.43",
+ "volume24h": "618.03563757947307",
+ "communityRecognized": false,
+ "key": "evm--56:0xe0ab66985c8d18fba4cbc080024341750e997777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xede00776439f9c49c592e43eee34777a51847777",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xede00776439f9c49c592e43eee34777a51847777-1786609978365.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xede00776439f9c49c592e43eee34777a51847777-1786609978365.png"
+ ],
+ "name": "utility token",
+ "symbol": "utility",
+ "marketCap": "610747.773433987135930456",
+ "price": "0.00061074779679151257",
+ "priceChange24hPercent": "0.33",
+ "volume24h": "1311.758732405545238",
+ "communityRecognized": false,
+ "key": "evm--56:0xede00776439f9c49c592e43eee34777a51847777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x5feccd17c393caf1001d18164236a37e731fcb9d",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x5feccd17c393caf1001d18164236a37e731fcb9d-1776844861976.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x5feccd17c393caf1001d18164236a37e731fcb9d-1776844861976.png"
+ ],
+ "name": "OpenGradient",
+ "symbol": "OPG",
+ "marketCap": "4387039.677447859046106589",
+ "price": "0.10573655058101875251",
+ "priceChange24hPercent": "0.44",
+ "volume24h": "1622.650844004275625",
+ "communityRecognized": true,
+ "key": "evm--56:0x5feccd17c393caf1001d18164236a37e731fcb9d",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x0c2f3750418273d3749cc62b5d572ac9a5e14db9",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/4b74f508750b26b0a337922a69381c848a3679c858e468b16c974b285c0844c7",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/4b74f508750b26b0a337922a69381c848a3679c858e468b16c974b285c0844c7"
+ ],
+ "name": "OmniPool",
+ "symbol": "Omni",
+ "marketCap": "306504.741470791609185045",
+ "price": "0.00031736167828754715",
+ "priceChange24hPercent": "12.91",
+ "volume24h": "3698.0091606815911634",
+ "communityRecognized": false,
+ "key": "evm--56:0x0c2f3750418273d3749cc62b5d572ac9a5e14db9",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xb0c2ab5af4028461ace3f6e1c33a4ee1404e7777",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xb0c2ab5af4028461ace3f6e1c33a4ee1404e7777-1786521665683.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xb0c2ab5af4028461ace3f6e1c33a4ee1404e7777-1786521665683.png"
+ ],
+ "name": "Cets On Gold",
+ "symbol": "CETS",
+ "marketCap": "15333572.787585246851695854",
+ "price": "0.01613374201873405437",
+ "priceChange24hPercent": "-2.61",
+ "volume24h": "1104.7995087080840773",
+ "communityRecognized": false,
+ "key": "evm--56:0xb0c2ab5af4028461ace3f6e1c33a4ee1404e7777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xc51a9250795c0186a6fb4a7d20a90330651e4444",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xc51a9250795c0186a6fb4a7d20a90330651e4444-1767255458155.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xc51a9250795c0186a6fb4a7d20a90330651e4444-1767255458155.png"
+ ],
+ "name": "我踏马来了",
+ "symbol": "我踏马来了",
+ "marketCap": "12898366.18222309715777018",
+ "price": "0.01289951469037957278",
+ "priceChange24hPercent": "0.69",
+ "volume24h": "965.79250482658332",
+ "communityRecognized": true,
+ "key": "evm--56:0xc51a9250795c0186a6fb4a7d20a90330651e4444",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x92aa03137385f18539301349dcfc9ebc923ffb10",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x92aa03137385f18539301349dcfc9ebc923ffb10-1757703762513.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x92aa03137385f18539301349dcfc9ebc923ffb10-1757703762513.png"
+ ],
+ "name": "SKYAI",
+ "symbol": "SKYAI",
+ "marketCap": "57916860.208130938263645826",
+ "price": "0.0580105990835368113",
+ "priceChange24hPercent": "0.05",
+ "volume24h": "5393.5102939583000384",
+ "communityRecognized": true,
+ "key": "evm--56:0x92aa03137385f18539301349dcfc9ebc923ffb10",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xff5d99a5c16cf2ffb4e7da1d7c42a791e70e4444",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xff5d99a5c16cf2ffb4e7da1d7c42a791e70e4444-1768723826734.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xff5d99a5c16cf2ffb4e7da1d7c42a791e70e4444-1768723826734.png"
+ ],
+ "name": "Ucan fix life in1day",
+ "symbol": "1",
+ "marketCap": "447275.045837158026411143",
+ "price": "0.00045363444264682529",
+ "priceChange24hPercent": "1.04",
+ "volume24h": "528.6039302404857158",
+ "communityRecognized": true,
+ "key": "evm--56:0xff5d99a5c16cf2ffb4e7da1d7c42a791e70e4444",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xce24439f2d9c6a2289f741120fe202248b666666",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xce24439f2d9c6a2289f741120fe202248b666666-1766111365772.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xce24439f2d9c6a2289f741120fe202248b666666-1766111365772.png"
+ ],
+ "name": "United Stables",
+ "symbol": "U",
+ "marketCap": "946531946.48888976466145856",
+ "price": "0.99919068946012983679",
+ "priceChange24hPercent": "0",
+ "volume24h": "13698.771485223163054914",
+ "communityRecognized": true,
+ "key": "evm--56:0xce24439f2d9c6a2289f741120fe202248b666666",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xfe189e97832da1573e4e4ff034f4ffc3a15c7777",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xfe189e97832da1573e4e4ff034f4ffc3a15c7777-1785917292044.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xfe189e97832da1573e4e4ff034f4ffc3a15c7777-1785917292044.png"
+ ],
+ "name": "MarsCoin",
+ "symbol": "MarsCoin",
+ "marketCap": "142639703.247153683583094186",
+ "price": "0.14269503271656025007",
+ "priceChange24hPercent": "-0.11",
+ "volume24h": "27568.33165193937296568",
+ "communityRecognized": true,
+ "key": "evm--56:0xfe189e97832da1573e4e4ff034f4ffc3a15c7777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x3e17ee3b1895dd1a7cf993a89769c5e029584444",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x3e17ee3b1895dd1a7cf993a89769c5e029584444-1767255579366.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x3e17ee3b1895dd1a7cf993a89769c5e029584444-1767255579366.png"
+ ],
+ "name": "Freedom of Money",
+ "symbol": "Freedom of Money",
+ "marketCap": "2630445.845079194075586464",
+ "price": "0.00263045785901536345",
+ "priceChange24hPercent": "-0.54",
+ "volume24h": "5668.3127750001309717",
+ "communityRecognized": true,
+ "key": "evm--56:0x3e17ee3b1895dd1a7cf993a89769c5e029584444",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xe766023f5a0fa6ce91b9f98d327771437dfca077",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/8356346777831140edc501f7c039ec2abceb49e4ee845cb86f3053a51d691863",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/8356346777831140edc501f7c039ec2abceb49e4ee845cb86f3053a51d691863"
+ ],
+ "name": "AEGIS X",
+ "symbol": "AGX",
+ "marketCap": "74314621.133892253509384157",
+ "price": "55.22569314708519539789",
+ "priceChange24hPercent": "0.03",
+ "volume24h": "12156.99124257839695634",
+ "communityRecognized": false,
+ "key": "evm--56:0xe766023f5a0fa6ce91b9f98d327771437dfca077",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xba2ae424d960c26247dd6c32edc70b295c744c43",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xba2ae424d960c26247dd6c32edc70b295c744c43.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xba2ae424d960c26247dd6c32edc70b295c744c43.png"
+ ],
+ "name": "Binance-Peg Dogecoin Token",
+ "symbol": "DOGE",
+ "marketCap": "229941792.971631921726507648",
+ "price": "0.08973642960393837073",
+ "priceChange24hPercent": "-0.14",
+ "volume24h": "6865.996277654484350846",
+ "communityRecognized": false,
+ "key": "evm--56:0xba2ae424d960c26247dd6c32edc70b295c744c43",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x205812cdbed920aff76c6580abd681a46d11efc7",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x205812cdbed920aff76c6580abd681a46d11efc7-1783065791272.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x205812cdbed920aff76c6580abd681a46d11efc7-1783065791272.png"
+ ],
+ "name": "Invesqo QQQ",
+ "symbol": "QQQB",
+ "marketCap": "1346003.7516617296",
+ "price": "723.14",
+ "priceChange24hPercent": "-0.07",
+ "volume24h": "690979.737176568161819572",
+ "communityRecognized": false,
+ "key": "evm--56:0x205812cdbed920aff76c6580abd681a46d11efc7",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x671ecbcb89ee3f85e2199294e723d309d98c4444",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x671ecbcb89ee3f85e2199294e723d309d98c4444-1768032912425.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x671ecbcb89ee3f85e2199294e723d309d98c4444-1768032912425.png"
+ ],
+ "name": "错版马",
+ "symbol": "哭哭马",
+ "marketCap": "2641680.801566308834602654",
+ "price": "0.00268136942733377937",
+ "priceChange24hPercent": "0",
+ "volume24h": "1038.552015020601724",
+ "communityRecognized": true,
+ "key": "evm--56:0x671ecbcb89ee3f85e2199294e723d309d98c4444",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x79e82e417764b0cbf0f61d178deb54fa1d1b7777",
+ "logoUrl": "https://static.oklink.com/cdn/web3/currency/token/large/56-0x79e82e417764b0cbf0f61d178deb54fa1d1b7777-107/type=default_90_0?v=1788838894209",
+ "logoUrls": [
+ "https://static.oklink.com/cdn/web3/currency/token/large/56-0x79e82e417764b0cbf0f61d178deb54fa1d1b7777-107/type=default_90_0?v=1788838894209"
+ ],
+ "name": "7Stock",
+ "symbol": "7Stock",
+ "marketCap": "151079.651315530099350914",
+ "price": "0.0001510796513155301",
+ "priceChange24hPercent": "75.18",
+ "volume24h": "36795.70027537809043039",
+ "communityRecognized": false,
+ "key": "evm--56:0x79e82e417764b0cbf0f61d178deb54fa1d1b7777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x000ae314e2a2172a039b26378814c252734f556a",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x000ae314e2a2172a039b26378814c252734f556a-1757703693098.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x000ae314e2a2172a039b26378814c252734f556a-1757703693098.png"
+ ],
+ "name": "Aster",
+ "symbol": "ASTER",
+ "marketCap": "2054258640.50664912187417987",
+ "price": "0.76019484603182745818",
+ "priceChange24hPercent": "0.02",
+ "volume24h": "39165.686427144067602206",
+ "communityRecognized": true,
+ "key": "evm--56:0x000ae314e2a2172a039b26378814c252734f556a",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x11116f6fc6145fe83e1e11f363210f90e2761111",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x11116f6fc6145fe83e1e11f363210f90e2761111-1788424285335.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x11116f6fc6145fe83e1e11f363210f90e2761111-1788424285335.png"
+ ],
+ "name": "TaiYi Token",
+ "symbol": "TAIYI",
+ "marketCap": "5967574.525231360995495717",
+ "price": "0.59675745252313609955",
+ "priceChange24hPercent": "-0.4",
+ "volume24h": "3555.0493068326228171",
+ "communityRecognized": false,
+ "key": "evm--56:0x11116f6fc6145fe83e1e11f363210f90e2761111",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x6ec90334d89dbdc89e08a133271be3d104128edb",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x6ec90334d89dbdc89e08a133271be3d104128edb.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x6ec90334d89dbdc89e08a133271be3d104128edb.png"
+ ],
+ "name": "WIKI CAT",
+ "symbol": "WKC",
+ "marketCap": "46527259.025786861540805662",
+ "price": "0.00000008695551496576",
+ "priceChange24hPercent": "0.5",
+ "volume24h": "1592.11799009536069593",
+ "communityRecognized": true,
+ "key": "evm--56:0x6ec90334d89dbdc89e08a133271be3d104128edb",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xf49725118cb0707b8706ffffe895f3ab16da7777",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xf49725118cb0707b8706ffffe895f3ab16da7777-1788595673498.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xf49725118cb0707b8706ffffe895f3ab16da7777-1788595673498.png"
+ ],
+ "name": "b-money",
+ "symbol": "b-money",
+ "marketCap": "7623129.183320664182795424",
+ "price": "0.00762312918332066418",
+ "priceChange24hPercent": "-5.85",
+ "volume24h": "7237.056097562714426522",
+ "communityRecognized": false,
+ "key": "evm--56:0xf49725118cb0707b8706ffffe895f3ab16da7777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x4f06dba806d66e1caeb37516c0f7a28728067777",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x4f06dba806d66e1caeb37516c0f7a28728067777-1787906891706.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x4f06dba806d66e1caeb37516c0f7a28728067777-1787906891706.png"
+ ],
+ "name": "HOMER CZ",
+ "symbol": "HOMER",
+ "marketCap": "175225.583872804223164003",
+ "price": "0.00017522558387280422",
+ "priceChange24hPercent": "2.09",
+ "volume24h": "2560.1957958010648791",
+ "communityRecognized": false,
+ "key": "evm--56:0x4f06dba806d66e1caeb37516c0f7a28728067777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x1d2f0da169ceb9fc7b3144628db156f3f6c60dbe",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x1d2f0da169ceb9fc7b3144628db156f3f6c60dbe.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x1d2f0da169ceb9fc7b3144628db156f3f6c60dbe.png"
+ ],
+ "name": "Binance-Peg XRP Token",
+ "symbol": "XRP",
+ "marketCap": "454321271.727828449023938217",
+ "price": "1.39480348952811591672",
+ "priceChange24hPercent": "0.04",
+ "volume24h": "3982.84766311386186678",
+ "communityRecognized": true,
+ "key": "evm--56:0x1d2f0da169ceb9fc7b3144628db156f3f6c60dbe",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x6bdcce4a559076e37755a78ce0c06214e59e4444",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x6bdcce4a559076e37755a78ce0c06214e59e4444-1757704402300.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x6bdcce4a559076e37755a78ce0c06214e59e4444-1757704402300.png"
+ ],
+ "name": "B",
+ "symbol": "B",
+ "marketCap": "187988187.192583281179716759",
+ "price": "0.18810848605076773264",
+ "priceChange24hPercent": "0.42",
+ "volume24h": "11772.81471681165035905",
+ "communityRecognized": true,
+ "key": "evm--56:0x6bdcce4a559076e37755a78ce0c06214e59e4444",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x990c71fdfa761bcf500ac8753f775ff7fb1b4444",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x990c71fdfa761bcf500ac8753f775ff7fb1b4444-1783325130995.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x990c71fdfa761bcf500ac8753f775ff7fb1b4444-1783325130995.png"
+ ],
+ "name": "714",
+ "symbol": "9",
+ "marketCap": "7487476.419045463703469659",
+ "price": "0.0074874764190454637",
+ "priceChange24hPercent": "-0.13",
+ "volume24h": "6017.02112851665072556",
+ "communityRecognized": false,
+ "key": "evm--56:0x990c71fdfa761bcf500ac8753f775ff7fb1b4444",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x5506599c722389a60580b5213ea1da60d64754a1",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x5506599c722389a60580b5213ea1da60d64754a1-1779264512556.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x5506599c722389a60580b5213ea1da60d64754a1-1779264512556.png"
+ ],
+ "name": "Zest",
+ "symbol": "ZEST",
+ "marketCap": "19360163.827995821598920612",
+ "price": "0.13260386183558781917",
+ "priceChange24hPercent": "0.05",
+ "volume24h": "2409.055791437456227",
+ "communityRecognized": true,
+ "key": "evm--56:0x5506599c722389a60580b5213ea1da60d64754a1",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xd8348b96c8f23e1e24c0f40f495823c98f8e7777",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xd8348b96c8f23e1e24c0f40f495823c98f8e7777-1780992799209.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xd8348b96c8f23e1e24c0f40f495823c98f8e7777-1780992799209.png"
+ ],
+ "name": "币安股票QQ 714815163",
+ "symbol": "币安股票",
+ "marketCap": "4155607.256159677802898252",
+ "price": "0.00468721538539453816",
+ "priceChange24hPercent": "3.68",
+ "volume24h": "5321.3927790396666065",
+ "communityRecognized": false,
+ "key": "evm--56:0xd8348b96c8f23e1e24c0f40f495823c98f8e7777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xcefbf00b3732fe91e46989037e4b2564a4fc7777",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xcefbf00b3732fe91e46989037e4b2564a4fc7777-1784537933503.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xcefbf00b3732fe91e46989037e4b2564a4fc7777-1784537933503.png"
+ ],
+ "name": "NIXI",
+ "symbol": "逆袭人生",
+ "marketCap": "68765488.529334663526141979",
+ "price": "0.07439889039955074786",
+ "priceChange24hPercent": "0.25",
+ "volume24h": "1097.5880260628000233",
+ "communityRecognized": false,
+ "key": "evm--56:0xcefbf00b3732fe91e46989037e4b2564a4fc7777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xf74548802f4c700315f019fde17178b392ee4444",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xf74548802f4c700315f019fde17178b392ee4444-1768983160402.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xf74548802f4c700315f019fde17178b392ee4444-1768983160402.png"
+ ],
+ "name": "memes will continue",
+ "symbol": "memes",
+ "marketCap": "675035.056783483274635375",
+ "price": "0.00068217292903309336",
+ "priceChange24hPercent": "0.98",
+ "volume24h": "1043.709790376032460593",
+ "communityRecognized": true,
+ "key": "evm--56:0xf74548802f4c700315f019fde17178b392ee4444",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xc839b8f4f6ded0cae5531a603b78ede6ca677777",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xc839b8f4f6ded0cae5531a603b78ede6ca677777-1787645476535.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xc839b8f4f6ded0cae5531a603b78ede6ca677777-1787645476535.png"
+ ],
+ "name": "羊必火",
+ "symbol": "羊必火",
+ "marketCap": "12585713.642719191855686756",
+ "price": "0.06292856837466439058",
+ "priceChange24hPercent": "1.31",
+ "volume24h": "7471.847005920210895",
+ "communityRecognized": false,
+ "key": "evm--56:0xc839b8f4f6ded0cae5531a603b78ede6ca677777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x99991c6aabba5a096f24f250b73580f5179b9999",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x99991c6aabba5a096f24f250b73580f5179b9999-1782548206597.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x99991c6aabba5a096f24f250b73580f5179b9999-1782548206597.png"
+ ],
+ "name": "Cap",
+ "symbol": "CAP",
+ "marketCap": "11716905.865456267943357585",
+ "price": "0.04513917496337004061",
+ "priceChange24hPercent": "0.04",
+ "volume24h": "7164.204494734418498",
+ "communityRecognized": true,
+ "key": "evm--56:0x99991c6aabba5a096f24f250b73580f5179b9999",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x4b3d30992f003c8167699735f5ab2831b2a087d3",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x4b3d30992f003c8167699735f5ab2831b2a087d3-1766908837745.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x4b3d30992f003c8167699735f5ab2831b2a087d3-1766908837745.png"
+ ],
+ "name": "Collect on Fanable",
+ "symbol": "COLLECT",
+ "marketCap": "18867467.873255752086178654",
+ "price": "0.03514460454450506257",
+ "priceChange24hPercent": "-0.35",
+ "volume24h": "44311.729652340247084192",
+ "communityRecognized": true,
+ "key": "evm--56:0x4b3d30992f003c8167699735f5ab2831b2a087d3",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x82ec31d69b3c289e541b50e30681fd1acad24444",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x82ec31d69b3c289e541b50e30681fd1acad24444-1759912042684.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x82ec31d69b3c289e541b50e30681fd1acad24444-1759912042684.png"
+ ],
+ "name": "哈基米",
+ "symbol": "哈基米",
+ "marketCap": "47863529.168543933110176721",
+ "price": "0.04786369816695196914",
+ "priceChange24hPercent": "0.2",
+ "volume24h": "10997.984701774838364928",
+ "communityRecognized": false,
+ "key": "evm--56:0x82ec31d69b3c289e541b50e30681fd1acad24444",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xd20fb09a49a8e75fef536a2dbc68222900287bac",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xd20fb09a49a8e75fef536a2dbc68222900287bac-1774425694527.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xd20fb09a49a8e75fef536a2dbc68222900287bac-1774425694527.png"
+ ],
+ "name": "Perle",
+ "symbol": "PRL",
+ "marketCap": "6297783.09927422562332277",
+ "price": "0.12951594033087273126",
+ "priceChange24hPercent": "0.01",
+ "volume24h": "8520.6877331505966",
+ "communityRecognized": false,
+ "key": "evm--56:0xd20fb09a49a8e75fef536a2dbc68222900287bac",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x0667873e07ffec6509525b4e4cd97409e1fe9424",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x0667873e07ffec6509525b4e4cd97409e1fe9424-1779955546792.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x0667873e07ffec6509525b4e4cd97409e1fe9424-1779955546792.png"
+ ],
+ "name": "CAT",
+ "symbol": "CAT",
+ "marketCap": "1597693683.436478417233024693",
+ "price": "1.6880717323965409394",
+ "priceChange24hPercent": "0.51",
+ "volume24h": "5219.327587597330819",
+ "communityRecognized": false,
+ "key": "evm--56:0x0667873e07ffec6509525b4e4cd97409e1fe9424",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x1d28d989f9e3ccb8b15d0cec601734514f958e4d",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x1d28d989f9e3ccb8b15d0cec601734514f958e4d-1775531989312.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x1d28d989f9e3ccb8b15d0cec601734514f958e4d-1775531989312.png"
+ ],
+ "name": "Based Token",
+ "symbol": "BASED",
+ "marketCap": "5883129.271364256325991662",
+ "price": "0.06755664552512514544",
+ "priceChange24hPercent": "0.36",
+ "volume24h": "10950.01152835405092242",
+ "communityRecognized": true,
+ "key": "evm--56:0x1d28d989f9e3ccb8b15d0cec601734514f958e4d",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xf8a0bf9cf54bb92f17374d9e9a321e6a111a51bd",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xf8a0bf9cf54bb92f17374d9e9a321e6a111a51bd.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xf8a0bf9cf54bb92f17374d9e9a321e6a111a51bd.png"
+ ],
+ "name": "ChainLink Token",
+ "symbol": "LINK",
+ "marketCap": "113604887.35906113141004216",
+ "price": "12.66474937487612494069",
+ "priceChange24hPercent": "-1.18",
+ "volume24h": "1748.90295021720133546",
+ "communityRecognized": true,
+ "key": "evm--56:0xf8a0bf9cf54bb92f17374d9e9a321e6a111a51bd",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x477c2c0459004e3354ba427fa285d7c053203c0e",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x477c2c0459004e3354ba427fa285d7c053203c0e-1759047311615.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x477c2c0459004e3354ba427fa285d7c053203c0e-1759047311615.png"
+ ],
+ "name": "LIGHT",
+ "symbol": "LIGHT",
+ "marketCap": "7705428.782385057024666934",
+ "price": "0.17895891012459159981",
+ "priceChange24hPercent": "-0.07",
+ "volume24h": "826.75805646955225",
+ "communityRecognized": true,
+ "key": "evm--56:0x477c2c0459004e3354ba427fa285d7c053203c0e",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x011ebe7d75e2c9d1e0bd0be0bef5c36f0a90075f",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x011ebe7d75e2c9d1e0bd0be0bef5c36f0a90075f-1765180866032.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x011ebe7d75e2c9d1e0bd0be0bef5c36f0a90075f-1765180866032.png"
+ ],
+ "name": "STABLE",
+ "symbol": "STABLE",
+ "marketCap": "21179540.476821359841252186",
+ "price": "0.02926530501306202492",
+ "priceChange24hPercent": "0.06",
+ "volume24h": "1421.84459625000112",
+ "communityRecognized": true,
+ "key": "evm--56:0x011ebe7d75e2c9d1e0bd0be0bef5c36f0a90075f",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x000008d2175f9aeaddb2430c26f8a6f73c5a0000",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x000008d2175f9aeaddb2430c26f8a6f73c5a0000-1773216021396.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x000008d2175f9aeaddb2430c26f8a6f73c5a0000-1773216021396.png"
+ ],
+ "name": "Unitas",
+ "symbol": "UP",
+ "marketCap": "375969121.251971555115436307",
+ "price": "0.41584932771378442806",
+ "priceChange24hPercent": "-0.09",
+ "volume24h": "73422.559945744029676",
+ "communityRecognized": true,
+ "key": "evm--56:0x000008d2175f9aeaddb2430c26f8a6f73c5a0000",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x0e09fabb73bd3ade0a17ecc321fd13a19e81ce82",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x0e09fabb73bd3ade0a17ecc321fd13a19e81ce82-1720669568581.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x0e09fabb73bd3ade0a17ecc321fd13a19e81ce82-1720669568581.png"
+ ],
+ "name": "PancakeSwap Token",
+ "symbol": "Cake",
+ "marketCap": "720219834.161365419768124908",
+ "price": "2.23534882624358058917",
+ "priceChange24hPercent": "-0.33",
+ "volume24h": "17718.353387285868498754",
+ "communityRecognized": true,
+ "key": "evm--56:0x0e09fabb73bd3ade0a17ecc321fd13a19e81ce82",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xa045aedf5eadf7a2eba941e0a7e50d2f294b4444",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/61256cce0c5acddbf40d3f9b65572dc6a42f8e6e1c439b521b188f9062eccc2d",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/61256cce0c5acddbf40d3f9b65572dc6a42f8e6e1c439b521b188f9062eccc2d"
+ ],
+ "name": "BNCat",
+ "symbol": "BNCat",
+ "marketCap": "19955.666323573698612898",
+ "price": "0.0000199556663235737",
+ "priceChange24hPercent": "18.08",
+ "volume24h": "5221.58815600519050693",
+ "communityRecognized": false,
+ "key": "evm--56:0xa045aedf5eadf7a2eba941e0a7e50d2f294b4444",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x595deaad1eb5476ff1e649fdb7efc36f1e4679cc",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x595deaad1eb5476ff1e649fdb7efc36f1e4679cc-1772611646341.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x595deaad1eb5476ff1e649fdb7efc36f1e4679cc-1772611646341.png"
+ ],
+ "name": "Block Street",
+ "symbol": "BSB",
+ "marketCap": "7712624.125109894756429946",
+ "price": "0.11114799244479850594",
+ "priceChange24hPercent": "-0.2",
+ "volume24h": "9353.9804871427336193",
+ "communityRecognized": true,
+ "key": "evm--56:0x595deaad1eb5476ff1e649fdb7efc36f1e4679cc",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x444045b0ee1ee319a660a5e3d604ca0ffa35acaa",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x444045b0ee1ee319a660a5e3d604ca0ffa35acaa-1766736124406.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x444045b0ee1ee319a660a5e3d604ca0ffa35acaa-1766736124406.png"
+ ],
+ "name": "Bitway Token",
+ "symbol": "BTW",
+ "marketCap": "4494551588.813634962626286845",
+ "price": "0.44945516844863451949",
+ "priceChange24hPercent": "0.02",
+ "volume24h": "2650.922250566292327",
+ "communityRecognized": true,
+ "key": "evm--56:0x444045b0ee1ee319a660a5e3d604ca0ffa35acaa",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xd41fdb03ba84762dd66a0af1a6c8540ff1ba5dfb",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xd41fdb03ba84762dd66a0af1a6c8540ff1ba5dfb.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xd41fdb03ba84762dd66a0af1a6c8540ff1ba5dfb.png"
+ ],
+ "name": "SafePal Token",
+ "symbol": "SFP",
+ "marketCap": "84494475.569095059809360541",
+ "price": "0.28164826761470087861",
+ "priceChange24hPercent": "0.04",
+ "volume24h": "586.332055608677676",
+ "communityRecognized": true,
+ "key": "evm--56:0xd41fdb03ba84762dd66a0af1a6c8540ff1ba5dfb",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x9123400446a56176eb1b6be9ee5cf703e409f492",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x9123400446a56176eb1b6be9ee5cf703e409f492-1757703938667.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x9123400446a56176eb1b6be9ee5cf703e409f492-1757703938667.png"
+ ],
+ "name": "TRADOOR",
+ "symbol": "TRADOOR",
+ "marketCap": "9406025.806089261469173613",
+ "price": "0.65551786229627580104",
+ "priceChange24hPercent": "-0.38",
+ "volume24h": "2319.272403457784825",
+ "communityRecognized": true,
+ "key": "evm--56:0x9123400446a56176eb1b6be9ee5cf703e409f492",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x3cbd513239d9e5538a4caed8ed53ef77009df473",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x3cbd513239d9e5538a4caed8ed53ef77009df473-1784537007799.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x3cbd513239d9e5538a4caed8ed53ef77009df473-1784537007799.png"
+ ],
+ "name": "ALD",
+ "symbol": "ALD",
+ "marketCap": "52382831.395644133844526702",
+ "price": "0.05238283139564413384",
+ "priceChange24hPercent": "-0.55",
+ "volume24h": "509.029293707705162",
+ "communityRecognized": false,
+ "key": "evm--56:0x3cbd513239d9e5538a4caed8ed53ef77009df473",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x30454106aa5dbb80d7d08cd81d513a7698f27777",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/6eca6d4ed399c219a37c87c8d84a9da0e09565c2515c07ccf412124cca56e7e1",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/6eca6d4ed399c219a37c87c8d84a9da0e09565c2515c07ccf412124cca56e7e1"
+ ],
+ "name": "蛋小黑",
+ "symbol": "蛋小黑",
+ "marketCap": "814985.803182874144583995",
+ "price": "0.00081498580318287414",
+ "priceChange24hPercent": "-3.34",
+ "volume24h": "1315.817447489474584",
+ "communityRecognized": false,
+ "key": "evm--56:0x30454106aa5dbb80d7d08cd81d513a7698f27777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xeec6574eabba52bac3f0277f2cd5ac7e67197886",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xeec6574eabba52bac3f0277f2cd5ac7e67197886-1786781256299.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xeec6574eabba52bac3f0277f2cd5ac7e67197886-1786781256299.png"
+ ],
+ "name": "Kiichain",
+ "symbol": "KII",
+ "marketCap": "17058024.641724736937977136",
+ "price": "0.06630054335124047397",
+ "priceChange24hPercent": "-0.4",
+ "volume24h": "639205.948412039848976905",
+ "communityRecognized": true,
+ "key": "evm--56:0xeec6574eabba52bac3f0277f2cd5ac7e67197886",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x5dbde81fce337ff4bcaaee4ca3466c00aecae274",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x5dbde81fce337ff4bcaaee4ca3466c00aecae274-1757703621183.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x5dbde81fce337ff4bcaaee4ca3466c00aecae274-1757703621183.png"
+ ],
+ "name": "Alaya Governance Token",
+ "symbol": "AGT",
+ "marketCap": "52213718.999509131327857834",
+ "price": "0.01728907978573270939",
+ "priceChange24hPercent": "0.06",
+ "volume24h": "3794.976239394778607",
+ "communityRecognized": true,
+ "key": "evm--56:0x5dbde81fce337ff4bcaaee4ca3466c00aecae274",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x46238e4493e036afdec28b3f2eb88a28ed687777",
+ "logoUrl": "https://static.oklink.com/cdn/web3/currency/token/large/56-0x46238e4493e036afdec28b3f2eb88a28ed687777-107/type=default_90_0?v=1788838917645",
+ "logoUrls": [
+ "https://static.oklink.com/cdn/web3/currency/token/large/56-0x46238e4493e036afdec28b3f2eb88a28ed687777-107/type=default_90_0?v=1788838917645"
+ ],
+ "name": "Built and Code",
+ "symbol": "BNC",
+ "marketCap": "10520.31218910889100598",
+ "price": "0.00001052031218910889",
+ "priceChange24hPercent": "-2.86",
+ "volume24h": "1146.419732824602596",
+ "communityRecognized": false,
+ "key": "evm--56:0x46238e4493e036afdec28b3f2eb88a28ed687777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xe7fa9ede0239419e1c76cc5983eeb543410d7777",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xe7fa9ede0239419e1c76cc5983eeb543410d7777-1788423192442.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xe7fa9ede0239419e1c76cc5983eeb543410d7777-1788423192442.png"
+ ],
+ "name": "50分红50拉盘销毁进群建设978330961",
+ "symbol": "谷歌股票",
+ "marketCap": "61273.595559100717736427",
+ "price": "0.00006695781628593392",
+ "priceChange24hPercent": "13.82",
+ "volume24h": "898.764531966706745948",
+ "communityRecognized": false,
+ "key": "evm--56:0xe7fa9ede0239419e1c76cc5983eeb543410d7777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xf3525965a4ad3ca0ac13f4d2f237113691194444",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xf3525965a4ad3ca0ac13f4d2f237113691194444-1760428952104.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xf3525965a4ad3ca0ac13f4d2f237113691194444-1760428952104.png"
+ ],
+ "name": "熊猫头",
+ "symbol": "熊猫头",
+ "marketCap": "736297.730738897681711427",
+ "price": "0.00073629774415388972",
+ "priceChange24hPercent": "-7.67",
+ "volume24h": "4551.48375940869798352",
+ "communityRecognized": false,
+ "key": "evm--56:0xf3525965a4ad3ca0ac13f4d2f237113691194444",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x25f0ff2338174872e9c294d5d2fe736454321378",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/849174a8bc7837a93979a42f2e648f146724ece15a8b1991a64bd6f4e474a229",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/849174a8bc7837a93979a42f2e648f146724ece15a8b1991a64bd6f4e474a229"
+ ],
+ "name": "SFIG",
+ "symbol": "SFIG",
+ "marketCap": "4310906763.624390967117015743",
+ "price": "0.4311533550188525692",
+ "priceChange24hPercent": "-0.5",
+ "volume24h": "1623.422983353700128",
+ "communityRecognized": false,
+ "key": "evm--56:0x25f0ff2338174872e9c294d5d2fe736454321378",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ }
+ ],
+ "trending|evm--56|1h|all": [
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x888656062164473c93c06ca89ae4d868d606ffff",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/4a563ac1c0cd1b7ed43429ee1ad5750a8ca22c0eaaa08d0427a8a86e8a2348f0",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/4a563ac1c0cd1b7ed43429ee1ad5750a8ca22c0eaaa08d0427a8a86e8a2348f0"
+ ],
+ "name": "Fat Panda",
+ "symbol": "FATPANDA",
+ "marketCap": "2002723.367684326864846374",
+ "price": "0.00200272336768432686",
+ "priceChange24hPercent": "-58.1",
+ "volume24h": "2810556.12739230836416974",
+ "communityRecognized": false,
+ "key": "evm--56:0x888656062164473c93c06ca89ae4d868d606ffff",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xc9d825e83aada475bd4d38c8ca984ed746277777",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xc9d825e83aada475bd4d38c8ca984ed746277777-1788595746569.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xc9d825e83aada475bd4d38c8ca984ed746277777-1788595746569.png"
+ ],
+ "name": "Stonks",
+ "symbol": "Stonks",
+ "marketCap": "3615724.513021514179669825",
+ "price": "0.00361572451302151418",
+ "priceChange24hPercent": "-4.35",
+ "volume24h": "1331147.80729049791194852",
+ "communityRecognized": true,
+ "key": "evm--56:0xc9d825e83aada475bd4d38c8ca984ed746277777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xd270d4e1ec6e6e0d28c0ecb8be966ec75997ffff",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/f3bf6d8a8bc7f4be0ec6949fa0ebf538953fcd6443cd6681e394f790b6546a1e",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/f3bf6d8a8bc7f4be0ec6949fa0ebf538953fcd6443cd6681e394f790b6546a1e"
+ ],
+ "name": "4Stock",
+ "symbol": "4Stock",
+ "marketCap": "8415791.471840569435739826",
+ "price": "0.00841579147184056944",
+ "priceChange24hPercent": "82.64",
+ "volume24h": "5930125.56278127435617515",
+ "communityRecognized": false,
+ "key": "evm--56:0xd270d4e1ec6e6e0d28c0ecb8be966ec75997ffff",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x8fdb0647e2bf11c8d88ef7825905f5f428864444",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/f3bf6d8a8bc7f4be0ec6949fa0ebf538953fcd6443cd6681e394f790b6546a1e",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/f3bf6d8a8bc7f4be0ec6949fa0ebf538953fcd6443cd6681e394f790b6546a1e"
+ ],
+ "name": "4cat",
+ "symbol": "4cat",
+ "marketCap": "132186.874931726983465779",
+ "price": "0.00013218687493172698",
+ "priceChange24hPercent": "46.13",
+ "volume24h": "181945.5328159783217701",
+ "communityRecognized": false,
+ "key": "evm--56:0x8fdb0647e2bf11c8d88ef7825905f5f428864444",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x17616c8f6cacf14fcff63f3188a30691802effff",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/cfcf37bcd1b22ee8594b38b7c1bbb0d2aafe3f8ad70ec9d9cbd108990326678d",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/cfcf37bcd1b22ee8594b38b7c1bbb0d2aafe3f8ad70ec9d9cbd108990326678d"
+ ],
+ "name": "Built and Code",
+ "symbol": "BNC",
+ "marketCap": "968019.215709756842146455",
+ "price": "0.00096801921570975684",
+ "priceChange24hPercent": "102.52",
+ "volume24h": "379219.914240576328794233",
+ "communityRecognized": false,
+ "key": "evm--56:0x17616c8f6cacf14fcff63f3188a30691802effff",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xa6b53819f5bf521945fceb1f9bbb3a7a7b4effff",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/e5fb48d54702b49bd31d0551378667606ad6bb5e4e33b94fc32179b14469f2d0",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/e5fb48d54702b49bd31d0551378667606ad6bb5e4e33b94fc32179b14469f2d0"
+ ],
+ "name": "CEA Industries",
+ "symbol": "Vape",
+ "marketCap": "176404.301183153400696826",
+ "price": "0.00017762814836826732",
+ "priceChange24hPercent": "-25.41",
+ "volume24h": "305049.050352103618579359",
+ "communityRecognized": false,
+ "key": "evm--56:0xa6b53819f5bf521945fceb1f9bbb3a7a7b4effff",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xe9337dde3dd9e97f1f45a56412767ce5098e7777",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xe9337dde3dd9e97f1f45a56412767ce5098e7777-1785657919485.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xe9337dde3dd9e97f1f45a56412767ce5098e7777-1785657919485.png"
+ ],
+ "name": "何必东奔西走 币安全部都有",
+ "symbol": "币有",
+ "marketCap": "3164666.390133842302734257",
+ "price": "0.00316466639033410038",
+ "priceChange24hPercent": "4.6",
+ "volume24h": "236190.042576024988444546",
+ "communityRecognized": false,
+ "key": "evm--56:0xe9337dde3dd9e97f1f45a56412767ce5098e7777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x7bc70ae0f2a67d2fdc0180a697a611f21c857777",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x7bc70ae0f2a67d2fdc0180a697a611f21c857777-1788768091330.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x7bc70ae0f2a67d2fdc0180a697a611f21c857777-1788768091330.png"
+ ],
+ "name": "BEN",
+ "symbol": "BEN",
+ "marketCap": "4691268.880796520376779672",
+ "price": "0.00469126888091739643",
+ "priceChange24hPercent": "-1.99",
+ "volume24h": "794580.240183790271998",
+ "communityRecognized": false,
+ "key": "evm--56:0x7bc70ae0f2a67d2fdc0180a697a611f21c857777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xb3a1e1f7ae6c90c707ec3c75e99c359482fea5b9",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/488d50fb3eb6f79c9440d809ef90dc3a197facbca4792e913cf6d2ab384a3fbe",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/488d50fb3eb6f79c9440d809ef90dc3a197facbca4792e913cf6d2ab384a3fbe"
+ ],
+ "name": "Sock",
+ "symbol": "SOCK",
+ "marketCap": "5055307.749537088461358135",
+ "price": "0.00505639238387653219",
+ "priceChange24hPercent": "2.73",
+ "volume24h": "633880.784115308438274967",
+ "communityRecognized": false,
+ "key": "evm--56:0xb3a1e1f7ae6c90c707ec3c75e99c359482fea5b9",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xfa6d9b504848606eb9aec04ccc161d169b3f2159",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xfa6d9b504848606eb9aec04ccc161d169b3f2159-1788768839130.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xfa6d9b504848606eb9aec04ccc161d169b3f2159-1788768839130.png"
+ ],
+ "name": "BREW",
+ "symbol": "BREW",
+ "marketCap": "6538711.799489674177314067",
+ "price": "0.00653871179948967418",
+ "priceChange24hPercent": "-9.23",
+ "volume24h": "599303.949333262532205409",
+ "communityRecognized": true,
+ "key": "evm--56:0xfa6d9b504848606eb9aec04ccc161d169b3f2159",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x198dba421a7db566a90da5de7901abe3443b4444",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x198dba421a7db566a90da5de7901abe3443b4444-1783844840152.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x198dba421a7db566a90da5de7901abe3443b4444-1783844840152.png"
+ ],
+ "name": "富贵",
+ "symbol": "富贵",
+ "marketCap": "2004608.783658215940488177",
+ "price": "0.00200460880490616635",
+ "priceChange24hPercent": "2.56",
+ "volume24h": "123295.004688834870815302",
+ "communityRecognized": false,
+ "key": "evm--56:0x198dba421a7db566a90da5de7901abe3443b4444",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x2ab8a4dd2191989ac2898006df350b236d2b7777",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x2ab8a4dd2191989ac2898006df350b236d2b7777-1787990461314.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x2ab8a4dd2191989ac2898006df350b236d2b7777-1787990461314.png"
+ ],
+ "name": "施工猫",
+ "symbol": "Sue",
+ "marketCap": "3525503.639455193998936336",
+ "price": "0.00352550383167665148",
+ "priceChange24hPercent": "0.61",
+ "volume24h": "144488.552083816047354465",
+ "communityRecognized": true,
+ "key": "evm--56:0x2ab8a4dd2191989ac2898006df350b236d2b7777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xe9bc5c6a86caa44fd7b469bf3cc7c563e4f77777",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xe9bc5c6a86caa44fd7b469bf3cc7c563e4f77777-1785831565492.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xe9bc5c6a86caa44fd7b469bf3cc7c563e4f77777-1785831565492.png"
+ ],
+ "name": "Giggle Mascot",
+ "symbol": "Max",
+ "marketCap": "12379501.526308740492021141",
+ "price": "0.012379502707187888",
+ "priceChange24hPercent": "-16.45",
+ "volume24h": "180008.747784744888494833",
+ "communityRecognized": false,
+ "key": "evm--56:0xe9bc5c6a86caa44fd7b469bf3cc7c563e4f77777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x9e92bbf2017bbfb7a06c975ca30e268cd2e57777",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/26946e97f0605097c389e90209fbbad48af1927f15b93093e2b999a0ccb97c16",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/26946e97f0605097c389e90209fbbad48af1927f15b93093e2b999a0ccb97c16"
+ ],
+ "name": "Google Dog",
+ "symbol": "股狗",
+ "marketCap": "332064.446510156775471152",
+ "price": "0.00033206444651015678",
+ "priceChange24hPercent": "-32.95",
+ "volume24h": "42183.17506995918126101",
+ "communityRecognized": false,
+ "key": "evm--56:0x9e92bbf2017bbfb7a06c975ca30e268cd2e57777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xbeea1d618e533a387d941f58a7d4c9b7bd377777",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xbeea1d618e533a387d941f58a7d4c9b7bd377777-1786867206539.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xbeea1d618e533a387d941f58a7d4c9b7bd377777-1786867206539.png"
+ ],
+ "name": "牛来",
+ "symbol": "牛来",
+ "marketCap": "81315633.730996053986212561",
+ "price": "0.08131564191954314277",
+ "priceChange24hPercent": "-0.82",
+ "volume24h": "663527.073269002108819476",
+ "communityRecognized": false,
+ "key": "evm--56:0xbeea1d618e533a387d941f58a7d4c9b7bd377777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xf40592daacb3e5abf358789f5688c0b4f64d7777",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xf40592daacb3e5abf358789f5688c0b4f64d7777-1788336091391.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xf40592daacb3e5abf358789f5688c0b4f64d7777-1788336091391.png"
+ ],
+ "name": "FLORK",
+ "symbol": "FLORK",
+ "marketCap": "13974844.309976889329689928",
+ "price": "0.01397484431010265303",
+ "priceChange24hPercent": "9.97",
+ "volume24h": "423761.519043745005915198",
+ "communityRecognized": true,
+ "key": "evm--56:0xf40592daacb3e5abf358789f5688c0b4f64d7777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x87ae267002cd1ea0ec86bf3601d4a8ad76a47777",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x87ae267002cd1ea0ec86bf3601d4a8ad76a47777-1787558536892.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x87ae267002cd1ea0ec86bf3601d4a8ad76a47777-1787558536892.png"
+ ],
+ "name": "蝴蝶人生",
+ "symbol": "蝴蝶人生",
+ "marketCap": "2900864.953755263095854545",
+ "price": "0.0029008649537552631",
+ "priceChange24hPercent": "7.41",
+ "volume24h": "33770.471367940768467503",
+ "communityRecognized": false,
+ "key": "evm--56:0x87ae267002cd1ea0ec86bf3601d4a8ad76a47777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x5b73a93b4e5e4f1fd27d8b3f8c97d69908b5e284",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x5b73a93b4e5e4f1fd27d8b3f8c97d69908b5e284-1757704453242.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x5b73a93b4e5e4f1fd27d8b3f8c97d69908b5e284-1757704453242.png"
+ ],
+ "name": "FORM Token",
+ "symbol": "FORM",
+ "marketCap": "81337721.233552374393924307",
+ "price": "0.27423761434533356272",
+ "priceChange24hPercent": "3.53",
+ "volume24h": "81184.148048387321209747",
+ "communityRecognized": true,
+ "key": "evm--56:0x5b73a93b4e5e4f1fd27d8b3f8c97d69908b5e284",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x7a848a5a8169aa6a2f603d056a749f924f504444",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x7a848a5a8169aa6a2f603d056a749f924f504444-1783238620991.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x7a848a5a8169aa6a2f603d056a749f924f504444-1783238620991.png"
+ ],
+ "name": "The Final Form Bull",
+ "symbol": "CZ",
+ "marketCap": "1108669.360880238166665035",
+ "price": "0.00369589294180277339",
+ "priceChange24hPercent": "-6.23",
+ "volume24h": "49895.853011244638516314",
+ "communityRecognized": false,
+ "key": "evm--56:0x7a848a5a8169aa6a2f603d056a749f924f504444",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x265b3982ea730748100947f52561a4eab54affff",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x265b3982ea730748100947f52561a4eab54affff-1788163283951.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x265b3982ea730748100947f52561a4eab54affff-1788163283951.png"
+ ],
+ "name": "ast.fun",
+ "symbol": "AST",
+ "marketCap": "869555.825261133164744628",
+ "price": "0.00088138862476773644",
+ "priceChange24hPercent": "-38.51",
+ "volume24h": "143399.08071493158175758",
+ "communityRecognized": false,
+ "key": "evm--56:0x265b3982ea730748100947f52561a4eab54affff",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x4f4a59ac165c6f05ed771df3530741494b1c7777",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/aaedfbda5a6301f10b584f1887dbe9604f4015526974adfc9bd19e9bff06bf7c",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/aaedfbda5a6301f10b584f1887dbe9604f4015526974adfc9bd19e9bff06bf7c"
+ ],
+ "name": "Offchain Dog",
+ "symbol": "zDOG",
+ "marketCap": "772076.5981881585062435",
+ "price": "0.00077207659818815851",
+ "priceChange24hPercent": "15.75",
+ "volume24h": "75317.048684914644483677",
+ "communityRecognized": false,
+ "key": "evm--56:0x4f4a59ac165c6f05ed771df3530741494b1c7777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x431a3bee82e2ca41e49895cbece5bb0f76a89b7a",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x431a3bee82e2ca41e49895cbece5bb0f76a89b7a-1785484886316.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x431a3bee82e2ca41e49895cbece5bb0f76a89b7a-1785484886316.png"
+ ],
+ "name": "Apple",
+ "symbol": "AAPLB",
+ "marketCap": "6580346.4929515002145",
+ "price": "319.56994327900136704227",
+ "priceChange24hPercent": "0.32",
+ "volume24h": "151555.729304704353562489",
+ "communityRecognized": false,
+ "key": "evm--56:0x431a3bee82e2ca41e49895cbece5bb0f76a89b7a",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x9b8e987e6fec8cf1380c4dca7071e2c7853aeea1",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x9b8e987e6fec8cf1380c4dca7071e2c7853aeea1-1773890745834.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x9b8e987e6fec8cf1380c4dca7071e2c7853aeea1-1773890745834.png"
+ ],
+ "name": "iShares China Large-Cap ETF (Ondo Tokenized)",
+ "symbol": "FXIon",
+ "marketCap": "383060.830532199629954621",
+ "price": "35.347713127268825539",
+ "priceChange24hPercent": "1.05",
+ "volume24h": "208101.101102425635834432",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x9b8e987e6fec8cf1380c4dca7071e2c7853aeea1",
+ "kind": "stock",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x4ef9d3062c7f6eba4aae4990c5036598c6eff4ec",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x4ef9d3062c7f6eba4aae4990c5036598c6eff4ec-1784361786390.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x4ef9d3062c7f6eba4aae4990c5036598c6eff4ec-1784361786390.png"
+ ],
+ "name": "Alibaba",
+ "symbol": "BABAB",
+ "marketCap": "3748171.4208860636",
+ "price": "111.64",
+ "priceChange24hPercent": "0.45",
+ "volume24h": "22441.991687790541044177",
+ "communityRecognized": false,
+ "key": "evm--56:0x4ef9d3062c7f6eba4aae4990c5036598c6eff4ec",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x66661c7229901f568f16bd1551b3ba826f83ce49",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x66661c7229901f568f16bd1551b3ba826f83ce49-1787817829554.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x66661c7229901f568f16bd1551b3ba826f83ce49-1787817829554.png"
+ ],
+ "name": "Teller",
+ "symbol": "DEBIT",
+ "marketCap": "27637912.292854535183785709",
+ "price": "1.60498909946890448222",
+ "priceChange24hPercent": "0.41",
+ "volume24h": "11378569.557273918096067743",
+ "communityRecognized": true,
+ "key": "evm--56:0x66661c7229901f568f16bd1551b3ba826f83ce49",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x5b1910eaad6450e50f816082aa078c41f10c292f",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x5b1910eaad6450e50f816082aa078c41f10c292f-1781337775850.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x5b1910eaad6450e50f816082aa078c41f10c292f-1781337775850.png"
+ ],
+ "name": "Tesla, Inc. ",
+ "symbol": "TSLAB",
+ "marketCap": "17974787.0283940827",
+ "price": "356.73",
+ "priceChange24hPercent": "-0.18",
+ "volume24h": "30569.948176777570195564",
+ "communityRecognized": false,
+ "key": "evm--56:0x5b1910eaad6450e50f816082aa078c41f10c292f",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x3f53de71c126bdabae20f9cd64848d317f6c3238",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x3f53de71c126bdabae20f9cd64848d317f6c3238-1784361925966.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x3f53de71c126bdabae20f9cd64848d317f6c3238-1784361925966.png"
+ ],
+ "name": "Alphabet",
+ "symbol": "GOOGLB",
+ "marketCap": "26814290.0074111255944",
+ "price": "338.46",
+ "priceChange24hPercent": "-0.29",
+ "volume24h": "107614.827319705008034464",
+ "communityRecognized": false,
+ "key": "evm--56:0x3f53de71c126bdabae20f9cd64848d317f6c3238",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xb0f09ea9ae0515c3551080d4a745c8115aa30e37",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xb0f09ea9ae0515c3551080d4a745c8115aa30e37-1786521835205.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xb0f09ea9ae0515c3551080d4a745c8115aa30e37-1786521835205.png"
+ ],
+ "name": "DAPPOS",
+ "symbol": "DOS",
+ "marketCap": "8089952.224964676897703544",
+ "price": "0.22978419216165026472",
+ "priceChange24hPercent": "-0.41",
+ "volume24h": "47459.1622400201669874",
+ "communityRecognized": true,
+ "key": "evm--56:0xb0f09ea9ae0515c3551080d4a745c8115aa30e37",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x2ec39b165e22944d2fee389219ee64e4924cffff",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x2ec39b165e22944d2fee389219ee64e4924cffff-1785657654182.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x2ec39b165e22944d2fee389219ee64e4924cffff-1785657654182.png"
+ ],
+ "name": "NVDA RTX STOCKS",
+ "symbol": "RTX",
+ "marketCap": "46950.873042647061995621",
+ "price": "0.0000469508747823164",
+ "priceChange24hPercent": "17.96",
+ "volume24h": "2655.7168487336697655",
+ "communityRecognized": false,
+ "key": "evm--56:0x2ec39b165e22944d2fee389219ee64e4924cffff",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xe766023f5a0fa6ce91b9f98d327771437dfca077",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/8356346777831140edc501f7c039ec2abceb49e4ee845cb86f3053a51d691863",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/8356346777831140edc501f7c039ec2abceb49e4ee845cb86f3053a51d691863"
+ ],
+ "name": "AEGIS X",
+ "symbol": "AGX",
+ "marketCap": "74314621.133892253509384157",
+ "price": "55.22569314708519539789",
+ "priceChange24hPercent": "0",
+ "volume24h": "23660.37622094484156305",
+ "communityRecognized": false,
+ "key": "evm--56:0xe766023f5a0fa6ce91b9f98d327771437dfca077",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xc839b8f4f6ded0cae5531a603b78ede6ca677777",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xc839b8f4f6ded0cae5531a603b78ede6ca677777-1787645476535.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xc839b8f4f6ded0cae5531a603b78ede6ca677777-1787645476535.png"
+ ],
+ "name": "羊必火",
+ "symbol": "羊必火",
+ "marketCap": "12585713.642719191855686756",
+ "price": "0.06292856837466439058",
+ "priceChange24hPercent": "-2.52",
+ "volume24h": "67149.61080587899585835",
+ "communityRecognized": false,
+ "key": "evm--56:0xc839b8f4f6ded0cae5531a603b78ede6ca677777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xf2ec508422174ee564de98187db9359d318afb6b",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xf2ec508422174ee564de98187db9359d318afb6b-1787991519391.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xf2ec508422174ee564de98187db9359d318afb6b-1787991519391.png"
+ ],
+ "name": "Trump Media & Technology Group Corp",
+ "symbol": "DJTB",
+ "marketCap": "1998661.3469981697",
+ "price": "9.03",
+ "priceChange24hPercent": "0",
+ "volume24h": "2564.468000922310348751",
+ "communityRecognized": false,
+ "key": "evm--56:0xf2ec508422174ee564de98187db9359d318afb6b",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xe0ab66985c8d18fba4cbc080024341750e997777",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xe0ab66985c8d18fba4cbc080024341750e997777-1787990635380.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xe0ab66985c8d18fba4cbc080024341750e997777-1787990635380.png"
+ ],
+ "name": "TITAN",
+ "symbol": "TITAN",
+ "marketCap": "1097253.921737584663753254",
+ "price": "0.01507987676743016512",
+ "priceChange24hPercent": "3.67",
+ "volume24h": "7487.7150390351812824",
+ "communityRecognized": false,
+ "key": "evm--56:0xe0ab66985c8d18fba4cbc080024341750e997777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x79e82e417764b0cbf0f61d178deb54fa1d1b7777",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/7525601eea714e20876b56835a99645e0b80ac83d5e3ee1c2e64c5127d2ecc44",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/7525601eea714e20876b56835a99645e0b80ac83d5e3ee1c2e64c5127d2ecc44"
+ ],
+ "name": "7Stock",
+ "symbol": "7Stock",
+ "marketCap": "151079.651315530099350914",
+ "price": "0.0001510796513155301",
+ "priceChange24hPercent": "255.41",
+ "volume24h": "304015.817520624725779235",
+ "communityRecognized": false,
+ "key": "evm--56:0x79e82e417764b0cbf0f61d178deb54fa1d1b7777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x1ba42e5193dfa8b03d15dd1b86a3113bbbef8eeb",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x1ba42e5193dfa8b03d15dd1b86a3113bbbef8eeb-1757704281569.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x1ba42e5193dfa8b03d15dd1b86a3113bbbef8eeb-1757704281569.png"
+ ],
+ "name": "Binance-Peg Zcash Token",
+ "symbol": "ZEC",
+ "marketCap": "247270748.455145848835815886",
+ "price": "1123.95817644112360718577",
+ "priceChange24hPercent": "-0.35",
+ "volume24h": "291035.656077782949849544",
+ "communityRecognized": true,
+ "key": "evm--56:0x1ba42e5193dfa8b03d15dd1b86a3113bbbef8eeb",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xede00776439f9c49c592e43eee34777a51847777",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xede00776439f9c49c592e43eee34777a51847777-1786609978365.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xede00776439f9c49c592e43eee34777a51847777-1786609978365.png"
+ ],
+ "name": "utility token",
+ "symbol": "utility",
+ "marketCap": "610747.773433987135930456",
+ "price": "0.00061074779679151257",
+ "priceChange24hPercent": "-13.35",
+ "volume24h": "30831.439558808163059676",
+ "communityRecognized": false,
+ "key": "evm--56:0xede00776439f9c49c592e43eee34777a51847777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xecd794149128e7344154d8993fc0186d57de7777",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/4d69a08aec8be4ccb8730674fbbbe546f37de5dd7283a940fca40f9919433af1",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/4d69a08aec8be4ccb8730674fbbbe546f37de5dd7283a940fca40f9919433af1"
+ ],
+ "name": "狴犴(bian)监狱的代称,CZ的守护神。",
+ "symbol": "狴犴",
+ "marketCap": "894679.376474521284887275",
+ "price": "0.01801207806298397811",
+ "priceChange24hPercent": "-19.45",
+ "volume24h": "83877.610560269944575454",
+ "communityRecognized": false,
+ "key": "evm--56:0xecd794149128e7344154d8993fc0186d57de7777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x2ab198e0078a8a233b8e7685356cb76482b9e681",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/8356346777831140edc501f7c039ec2abceb49e4ee845cb86f3053a51d691863",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/8356346777831140edc501f7c039ec2abceb49e4ee845cb86f3053a51d691863"
+ ],
+ "name": "Artificial Intelligence Two",
+ "symbol": "AIT",
+ "marketCap": "4287074196.25429954374756",
+ "price": "0.42870741962542995437",
+ "priceChange24hPercent": "-3.5",
+ "volume24h": "16148.013709483897374752",
+ "communityRecognized": false,
+ "key": "evm--56:0x2ab198e0078a8a233b8e7685356cb76482b9e681",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xa3ab3ae51f5bca4fe66f916e7b3c7f9edafe7c4a",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/61256cce0c5acddbf40d3f9b65572dc6a42f8e6e1c439b521b188f9062eccc2d",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/61256cce0c5acddbf40d3f9b65572dc6a42f8e6e1c439b521b188f9062eccc2d"
+ ],
+ "name": "Brew Pepe",
+ "symbol": "BREWPEPE",
+ "marketCap": "18347.985958957480702345",
+ "price": "0.00001834798595895748",
+ "priceChange24hPercent": "44.91",
+ "volume24h": "9164.7900819899654666",
+ "communityRecognized": false,
+ "key": "evm--56:0xa3ab3ae51f5bca4fe66f916e7b3c7f9edafe7c4a",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x82ec31d69b3c289e541b50e30681fd1acad24444",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x82ec31d69b3c289e541b50e30681fd1acad24444-1759912042684.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x82ec31d69b3c289e541b50e30681fd1acad24444-1759912042684.png"
+ ],
+ "name": "哈基米",
+ "symbol": "哈基米",
+ "marketCap": "47863529.168543933110176721",
+ "price": "0.04786369816695196914",
+ "priceChange24hPercent": "5.35",
+ "volume24h": "248861.565810745855745121",
+ "communityRecognized": false,
+ "key": "evm--56:0x82ec31d69b3c289e541b50e30681fd1acad24444",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xfe189e97832da1573e4e4ff034f4ffc3a15c7777",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xfe189e97832da1573e4e4ff034f4ffc3a15c7777-1785917292044.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xfe189e97832da1573e4e4ff034f4ffc3a15c7777-1785917292044.png"
+ ],
+ "name": "MarsCoin",
+ "symbol": "MarsCoin",
+ "marketCap": "142639703.247153683583094186",
+ "price": "0.14269503271656025007",
+ "priceChange24hPercent": "-1.72",
+ "volume24h": "514904.153380938111496701",
+ "communityRecognized": true,
+ "key": "evm--56:0xfe189e97832da1573e4e4ff034f4ffc3a15c7777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x6ff45323817d1d53bbb8a8dfba9245ae74057777",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x6ff45323817d1d53bbb8a8dfba9245ae74057777-1787732377108.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x6ff45323817d1d53bbb8a8dfba9245ae74057777-1787732377108.png"
+ ],
+ "name": "memestock",
+ "symbol": "memestock",
+ "marketCap": "7516523.262935512625136318",
+ "price": "0.007516523269890643",
+ "priceChange24hPercent": "0.3",
+ "volume24h": "36919.499384018000107034",
+ "communityRecognized": false,
+ "key": "evm--56:0x6ff45323817d1d53bbb8a8dfba9245ae74057777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xe5fd43bc02a6b98aa7d80d929168b318f7547777",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/6a55b6d0cec2baf1bf84345c3b4d50da8ae6f8392a500e8c1e5422659ff4e646",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/6a55b6d0cec2baf1bf84345c3b4d50da8ae6f8392a500e8c1e5422659ff4e646"
+ ],
+ "name": "Keel",
+ "symbol": "KEEL",
+ "marketCap": "107605.859588292329805647",
+ "price": "0.00010760585958829233",
+ "priceChange24hPercent": "19.67",
+ "volume24h": "6420.7256589022602985",
+ "communityRecognized": false,
+ "key": "evm--56:0xe5fd43bc02a6b98aa7d80d929168b318f7547777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xeccbb861c0dda7efd964010085488b69317e4444",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xeccbb861c0dda7efd964010085488b69317e4444-1772266878150.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xeccbb861c0dda7efd964010085488b69317e4444-1772266878150.png"
+ ],
+ "name": "龙虾",
+ "symbol": "龙虾",
+ "marketCap": "57410944.150485409858350971",
+ "price": "0.05741094441350569486",
+ "priceChange24hPercent": "-4.12",
+ "volume24h": "114779.778171668055361296",
+ "communityRecognized": true,
+ "key": "evm--56:0xeccbb861c0dda7efd964010085488b69317e4444",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xb0c2ab5af4028461ace3f6e1c33a4ee1404e7777",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xb0c2ab5af4028461ace3f6e1c33a4ee1404e7777-1786521665683.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xb0c2ab5af4028461ace3f6e1c33a4ee1404e7777-1786521665683.png"
+ ],
+ "name": "Cets On Gold",
+ "symbol": "CETS",
+ "marketCap": "15333572.787585246851695854",
+ "price": "0.01613374201873405437",
+ "priceChange24hPercent": "-2.05",
+ "volume24h": "16115.912220936465035684",
+ "communityRecognized": false,
+ "key": "evm--56:0xb0c2ab5af4028461ace3f6e1c33a4ee1404e7777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x71967d91abfbf96796238e70092c85878fc85999",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x71967d91abfbf96796238e70092c85878fc85999-1784534417711.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x71967d91abfbf96796238e70092c85878fc85999-1784534417711.png"
+ ],
+ "name": "Satoshi Protocol Token",
+ "symbol": "SPR",
+ "marketCap": "81258854.855630472210388238",
+ "price": "107.70000173402418874061",
+ "priceChange24hPercent": "0.01",
+ "volume24h": "12044.357062299308976793",
+ "communityRecognized": false,
+ "key": "evm--56:0x71967d91abfbf96796238e70092c85878fc85999",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x2f31614f7a8bb702f7898d379b3c23db73b87777",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x2f31614f7a8bb702f7898d379b3c23db73b87777-1786608767364.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x2f31614f7a8bb702f7898d379b3c23db73b87777-1786608767364.png"
+ ],
+ "name": "CSI888",
+ "symbol": "CSI",
+ "marketCap": "22794.992200787665029936",
+ "price": "0.00002279499220078767",
+ "priceChange24hPercent": "84.75",
+ "volume24h": "16510.44004006004021774",
+ "communityRecognized": false,
+ "key": "evm--56:0x2f31614f7a8bb702f7898d379b3c23db73b87777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xbb87378b58894338f0937b9691a5a6dc3a5a7777",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xbb87378b58894338f0937b9691a5a6dc3a5a7777-1788682035504.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xbb87378b58894338f0937b9691a5a6dc3a5a7777-1788682035504.png"
+ ],
+ "name": "孙小圣",
+ "symbol": "孙小圣",
+ "marketCap": "149236.434472636266624232",
+ "price": "0.00017591158417934095",
+ "priceChange24hPercent": "14.9",
+ "volume24h": "7579.85401114696182333",
+ "communityRecognized": false,
+ "key": "evm--56:0xbb87378b58894338f0937b9691a5a6dc3a5a7777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x07dcaccade1e3c034c707039bdfe02792f88ffff",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x07dcaccade1e3c034c707039bdfe02792f88ffff-1787645319054.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x07dcaccade1e3c034c707039bdfe02792f88ffff-1787645319054.png"
+ ],
+ "name": "FOMOCAT",
+ "symbol": "FOMOCAT",
+ "marketCap": "86510.893011590301110973",
+ "price": "0.0000865108930115903",
+ "priceChange24hPercent": "31.12",
+ "volume24h": "26722.41773971062612678",
+ "communityRecognized": false,
+ "key": "evm--56:0x07dcaccade1e3c034c707039bdfe02792f88ffff",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xb75b67cabd07f307ebf4cc8ef271ce4cca457777",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/d4a1db31406358fd501bb80bcfdd9cad807559b2edc36d841eebc5dc6deebd7a",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/d4a1db31406358fd501bb80bcfdd9cad807559b2edc36d841eebc5dc6deebd7a"
+ ],
+ "name": "人生太难了qq:1104889362",
+ "symbol": "人生太难了",
+ "marketCap": "198968.825327085304047973",
+ "price": "0.00020042560805769368",
+ "priceChange24hPercent": "17.98",
+ "volume24h": "8087.103432030932194527",
+ "communityRecognized": false,
+ "key": "evm--56:0xb75b67cabd07f307ebf4cc8ef271ce4cca457777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x30454106aa5dbb80d7d08cd81d513a7698f27777",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/6eca6d4ed399c219a37c87c8d84a9da0e09565c2515c07ccf412124cca56e7e1",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/6eca6d4ed399c219a37c87c8d84a9da0e09565c2515c07ccf412124cca56e7e1"
+ ],
+ "name": "蛋小黑",
+ "symbol": "蛋小黑",
+ "marketCap": "814985.803182874144583995",
+ "price": "0.00081498580318287414",
+ "priceChange24hPercent": "-2.45",
+ "volume24h": "24125.29810450531365877",
+ "communityRecognized": false,
+ "key": "evm--56:0x30454106aa5dbb80d7d08cd81d513a7698f27777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xc6bff31bbfa84d3c05ad61d8ec47be8b31517777",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xc6bff31bbfa84d3c05ad61d8ec47be8b31517777-1786608913243.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xc6bff31bbfa84d3c05ad61d8ec47be8b31517777-1786608913243.png"
+ ],
+ "name": "The Martian Dog",
+ "symbol": "Marvin",
+ "marketCap": "1838379.926952434127917623",
+ "price": "0.00184236150106962533",
+ "priceChange24hPercent": "-0.47",
+ "volume24h": "1315.3262845852449512",
+ "communityRecognized": false,
+ "key": "evm--56:0xc6bff31bbfa84d3c05ad61d8ec47be8b31517777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x671ecbcb89ee3f85e2199294e723d309d98c4444",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x671ecbcb89ee3f85e2199294e723d309d98c4444-1768032912425.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x671ecbcb89ee3f85e2199294e723d309d98c4444-1768032912425.png"
+ ],
+ "name": "错版马",
+ "symbol": "哭哭马",
+ "marketCap": "2641680.801566308834602654",
+ "price": "0.00268136942733377937",
+ "priceChange24hPercent": "-0.77",
+ "volume24h": "7415.787512233323453461",
+ "communityRecognized": true,
+ "key": "evm--56:0x671ecbcb89ee3f85e2199294e723d309d98c4444",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x10d4183389e99233db3cc981c43443ebd28ebd5e",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x10d4183389e99233db3cc981c43443ebd28ebd5e-1787472223992.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x10d4183389e99233db3cc981c43443ebd28ebd5e-1787472223992.png"
+ ],
+ "name": "DGrid AI",
+ "symbol": "DGAI",
+ "marketCap": "759145498.720034777473107234",
+ "price": "0.75914549872003477747",
+ "priceChange24hPercent": "-0.4",
+ "volume24h": "300848.8584428407929547",
+ "communityRecognized": true,
+ "key": "evm--56:0x10d4183389e99233db3cc981c43443ebd28ebd5e",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xc69b16cf18cea1e5d0bb6a1a9db802097790ddd2",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/6d7ad2a0916c205fa53549b8f6d63025a17b81bcb0bd44f2397db2e5ab0e9862",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/6d7ad2a0916c205fa53549b8f6d63025a17b81bcb0bd44f2397db2e5ab0e9862"
+ ],
+ "name": "CNPY",
+ "symbol": "CNPY",
+ "marketCap": "5643603.247625643996890991",
+ "price": "0.19813595578231632859",
+ "priceChange24hPercent": "2.08",
+ "volume24h": "468103.037627104838455426",
+ "communityRecognized": true,
+ "key": "evm--56:0xc69b16cf18cea1e5d0bb6a1a9db802097790ddd2",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x923398cc7d149d69b9356c1866b8d3e9d5cfffff",
+ "logoUrl": "https://static.oklink.com/cdn/web3/currency/token/large/56-0x923398cc7d149d69b9356c1866b8d3e9d5cfffff-107/type=default_90_0?v=1788311496822",
+ "logoUrls": [
+ "https://static.oklink.com/cdn/web3/currency/token/large/56-0x923398cc7d149d69b9356c1866b8d3e9d5cfffff-107/type=default_90_0?v=1788311496822"
+ ],
+ "name": "stockmemes",
+ "symbol": "stockmemes",
+ "marketCap": "15990.163084300757331558",
+ "price": "0.00001600626526256663",
+ "priceChange24hPercent": "29.39",
+ "volume24h": "1559.09007559073727926",
+ "communityRecognized": false,
+ "key": "evm--56:0x923398cc7d149d69b9356c1866b8d3e9d5cfffff",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x277add739c6e0477616948357af9e79fe1ec9b80",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x277add739c6e0477616948357af9e79fe1ec9b80-1785225726728.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x277add739c6e0477616948357af9e79fe1ec9b80-1785225726728.png"
+ ],
+ "name": "AEON",
+ "symbol": "AEON",
+ "marketCap": "12687587.149476832448124543",
+ "price": "0.05431330115358233069",
+ "priceChange24hPercent": "2.97",
+ "volume24h": "102729.706733322535889621",
+ "communityRecognized": true,
+ "key": "evm--56:0x277add739c6e0477616948357af9e79fe1ec9b80",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x31d19b3633ebdb60dc9d690b3e9eb1fff61a7777",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x31d19b3633ebdb60dc9d690b3e9eb1fff61a7777-1787299357411.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x31d19b3633ebdb60dc9d690b3e9eb1fff61a7777-1787299357411.png"
+ ],
+ "name": "Asian games",
+ "symbol": "Asian games",
+ "marketCap": "2575773.607003965493414304",
+ "price": "0.00914135857956248116",
+ "priceChange24hPercent": "0.91",
+ "volume24h": "1089.008920697601667",
+ "communityRecognized": false,
+ "key": "evm--56:0x31d19b3633ebdb60dc9d690b3e9eb1fff61a7777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x9984668e1999e75d7f3cdf82774356138ae9ffff",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/849174a8bc7837a93979a42f2e648f146724ece15a8b1991a64bd6f4e474a229",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/849174a8bc7837a93979a42f2e648f146724ece15a8b1991a64bd6f4e474a229"
+ ],
+ "name": "STONKS",
+ "symbol": "STONKS",
+ "marketCap": "29980.723469108506450951",
+ "price": "0.00002998072346910851",
+ "priceChange24hPercent": "-6.41",
+ "volume24h": "13804.859125002748893528",
+ "communityRecognized": false,
+ "key": "evm--56:0x9984668e1999e75d7f3cdf82774356138ae9ffff",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x6ced5c6d3f913b48d59fa07abbfe9060c409087c",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x6ced5c6d3f913b48d59fa07abbfe9060c409087c-1778919908443.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x6ced5c6d3f913b48d59fa07abbfe9060c409087c-1778919908443.png"
+ ],
+ "name": "AntFun",
+ "symbol": "ANTFUN",
+ "marketCap": "4629364.524287027182239373",
+ "price": "0.07753302348850365897",
+ "priceChange24hPercent": "1.14",
+ "volume24h": "9407.23316070178264805",
+ "communityRecognized": false,
+ "key": "evm--56:0x6ced5c6d3f913b48d59fa07abbfe9060c409087c",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xf225e70162837a811c77dc2bb413a5c06e97ffff",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xf225e70162837a811c77dc2bb413a5c06e97ffff-1786694462537.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xf225e70162837a811c77dc2bb413a5c06e97ffff-1786694462537.png"
+ ],
+ "name": "SpaceXcoin",
+ "symbol": "SpaceXcoin",
+ "marketCap": "128243.318673851247240209",
+ "price": "0.00012824332004659782",
+ "priceChange24hPercent": "15.83",
+ "volume24h": "14482.424954832815022013",
+ "communityRecognized": false,
+ "key": "evm--56:0xf225e70162837a811c77dc2bb413a5c06e97ffff",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x0b6d8934fc8838b1027b510364a2087317bd4444",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x0b6d8934fc8838b1027b510364a2087317bd4444-1783584021383.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x0b6d8934fc8838b1027b510364a2087317bd4444-1783584021383.png"
+ ],
+ "name": "Binance bibi",
+ "symbol": "bibi",
+ "marketCap": "1076142.615594207045340471",
+ "price": "0.00107614263565242028",
+ "priceChange24hPercent": "3.56",
+ "volume24h": "1265.44912776478279028",
+ "communityRecognized": false,
+ "key": "evm--56:0x0b6d8934fc8838b1027b510364a2087317bd4444",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xabed98e3aa42b5ab79cce9e7ebb274688ba2ffff",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xabed98e3aa42b5ab79cce9e7ebb274688ba2ffff-1788427600631.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xabed98e3aa42b5ab79cce9e7ebb274688ba2ffff-1788427600631.png"
+ ],
+ "name": "Four.care",
+ "symbol": "CARE",
+ "marketCap": "104352.8411823867195627",
+ "price": "0.00010435284118238672",
+ "priceChange24hPercent": "0.16",
+ "volume24h": "7672.679304347176198516",
+ "communityRecognized": false,
+ "key": "evm--56:0xabed98e3aa42b5ab79cce9e7ebb274688ba2ffff",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x8b7abc1c0f2e6c0b76bc4fd0f7190f67d72e7777",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x8b7abc1c0f2e6c0b76bc4fd0f7190f67d72e7777-1787565305355.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x8b7abc1c0f2e6c0b76bc4fd0f7190f67d72e7777-1787565305355.png"
+ ],
+ "name": "老吴",
+ "symbol": "老吴",
+ "marketCap": "153408.534977003767910205",
+ "price": "0.00015340958976786479",
+ "priceChange24hPercent": "-3.78",
+ "volume24h": "18135.93865179541038037",
+ "communityRecognized": false,
+ "key": "evm--56:0x8b7abc1c0f2e6c0b76bc4fd0f7190f67d72e7777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x75b364916b65f1e8959fa0210a6922c2ee237777",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/f104dae5a17692fb46edcee8d1b5a247e1c54183ff41afb6059679168e6b5f19",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/f104dae5a17692fb46edcee8d1b5a247e1c54183ff41afb6059679168e6b5f19"
+ ],
+ "name": "TrustCat",
+ "symbol": "TrustCat",
+ "marketCap": "191644.430946520580024584",
+ "price": "0.00019164443094652058",
+ "priceChange24hPercent": "-25.82",
+ "volume24h": "22754.047707052864130525",
+ "communityRecognized": false,
+ "key": "evm--56:0x75b364916b65f1e8959fa0210a6922c2ee237777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x3ac8e2c113d5d7824ac6ebe82a3c60b1b9d64444",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x3ac8e2c113d5d7824ac6ebe82a3c60b1b9d64444-1759911823892.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x3ac8e2c113d5d7824ac6ebe82a3c60b1b9d64444-1759911823892.png"
+ ],
+ "name": "客服小何",
+ "symbol": "客服小何",
+ "marketCap": "3568628.499777472633316358",
+ "price": "0.00362665693651657106",
+ "priceChange24hPercent": "-1.84",
+ "volume24h": "24636.84561865314958",
+ "communityRecognized": true,
+ "key": "evm--56:0x3ac8e2c113d5d7824ac6ebe82a3c60b1b9d64444",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x9b2bf8e150d0f316e3835da0bfdab5b96990cfea",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/2e04e2de318c1c98df832618a58d1827f55e7b829f3231712408ac643551d331",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/2e04e2de318c1c98df832618a58d1827f55e7b829f3231712408ac643551d331"
+ ],
+ "name": "BREWCAT",
+ "symbol": "BREWCAT",
+ "marketCap": "132491.943842949900689963",
+ "price": "0.00013810147633606771",
+ "priceChange24hPercent": "-38.7",
+ "volume24h": "12354.88785981558620875",
+ "communityRecognized": false,
+ "key": "evm--56:0x9b2bf8e150d0f316e3835da0bfdab5b96990cfea",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xfb6115445bff7b52feb98650c87f44907e58f802",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xfb6115445bff7b52feb98650c87f44907e58f802.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xfb6115445bff7b52feb98650c87f44907e58f802.png"
+ ],
+ "name": "Aave Token",
+ "symbol": "AAVE",
+ "marketCap": "52415893.150463183904767231",
+ "price": "131.03975566456654248931",
+ "priceChange24hPercent": "0.07",
+ "volume24h": "3536.39328285686753101",
+ "communityRecognized": true,
+ "key": "evm--56:0xfb6115445bff7b52feb98650c87f44907e58f802",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x82d24443bfd28bc58a505f5fa75fbcb474e41111",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/4e8c53d544949013abc07d5c714539b3c6528cfe1f866ec5dbb1d2c1042d4ab9",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/4e8c53d544949013abc07d5c714539b3c6528cfe1f866ec5dbb1d2c1042d4ab9"
+ ],
+ "name": "Fair 2.0",
+ "symbol": "FAI",
+ "marketCap": "202866.564458383814962023",
+ "price": "1.44563060846920658938",
+ "priceChange24hPercent": "0.43",
+ "volume24h": "754.836898951867097",
+ "communityRecognized": false,
+ "key": "evm--56:0x82d24443bfd28bc58a505f5fa75fbcb474e41111",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x1a5f9d77ca46646cd4937fd8d093f460b66f4444",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x1a5f9d77ca46646cd4937fd8d093f460b66f4444-1768032084379.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x1a5f9d77ca46646cd4937fd8d093f460b66f4444-1768032084379.png"
+ ],
+ "name": "老子",
+ "symbol": "老子",
+ "marketCap": "814200.768992484253786762",
+ "price": "0.00081794117568644025",
+ "priceChange24hPercent": "-4.24",
+ "volume24h": "6599.118255202151354037",
+ "communityRecognized": true,
+ "key": "evm--56:0x1a5f9d77ca46646cd4937fd8d093f460b66f4444",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x3a70d8fd50d7f4c594e4559ea55bcd119b3a7777",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x3a70d8fd50d7f4c594e4559ea55bcd119b3a7777-1787991587951.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x3a70d8fd50d7f4c594e4559ea55bcd119b3a7777-1787991587951.png"
+ ],
+ "name": "Rufuscoin",
+ "symbol": "rufus",
+ "marketCap": "72211.725158388518190738",
+ "price": "0.00007221302591264014",
+ "priceChange24hPercent": "30",
+ "volume24h": "2205.6099400362798796",
+ "communityRecognized": false,
+ "key": "evm--56:0x3a70d8fd50d7f4c594e4559ea55bcd119b3a7777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xa5c8e1513b6a08334b479fe4d71f1253259469be",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xa5c8e1513b6a08334b479fe4d71f1253259469be-1764144238059.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xa5c8e1513b6a08334b479fe4d71f1253259469be-1764144238059.png"
+ ],
+ "name": "GUA",
+ "symbol": "GUA",
+ "marketCap": "4630572.312854038749733388",
+ "price": "0.03704457850283231",
+ "priceChange24hPercent": "-0.51",
+ "volume24h": "37671.5542014897117674",
+ "communityRecognized": true,
+ "key": "evm--56:0xa5c8e1513b6a08334b479fe4d71f1253259469be",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x7d00ea5f68098c93e610e03c9242d10ebe704444",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/be4cbb740113649d957ec49879ac6177a0694dfe9845a00cac46be3abd340d29",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/be4cbb740113649d957ec49879ac6177a0694dfe9845a00cac46be3abd340d29"
+ ],
+ "name": "牛神",
+ "symbol": "牛神",
+ "marketCap": "23900.918420790937038014",
+ "price": "0.00002390091842079094",
+ "priceChange24hPercent": "28.14",
+ "volume24h": "2344.511981010019470444",
+ "communityRecognized": false,
+ "key": "evm--56:0x7d00ea5f68098c93e610e03c9242d10ebe704444",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x81d3a238b02827f62b9f390f947d36d4a5bf89d2",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x81d3a238b02827f62b9f390f947d36d4a5bf89d2-1760515864179.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x81d3a238b02827f62b9f390f947d36d4a5bf89d2-1760515864179.png"
+ ],
+ "name": "Yei Finance",
+ "symbol": "CLO",
+ "marketCap": "15438651.520799663064746045",
+ "price": "0.11958676623392457835",
+ "priceChange24hPercent": "0.24",
+ "volume24h": "76487.08271622705914781",
+ "communityRecognized": true,
+ "key": "evm--56:0x81d3a238b02827f62b9f390f947d36d4a5bf89d2",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xce24439f2d9c6a2289f741120fe202248b666666",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xce24439f2d9c6a2289f741120fe202248b666666-1766111365772.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xce24439f2d9c6a2289f741120fe202248b666666-1766111365772.png"
+ ],
+ "name": "United Stables",
+ "symbol": "U",
+ "marketCap": "946531946.48888976466145856",
+ "price": "0.99919068946012983679",
+ "priceChange24hPercent": "0",
+ "volume24h": "298982.70525066536662809",
+ "communityRecognized": true,
+ "key": "evm--56:0xce24439f2d9c6a2289f741120fe202248b666666",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xba2ae424d960c26247dd6c32edc70b295c744c43",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xba2ae424d960c26247dd6c32edc70b295c744c43.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xba2ae424d960c26247dd6c32edc70b295c744c43.png"
+ ],
+ "name": "Binance-Peg Dogecoin Token",
+ "symbol": "DOGE",
+ "marketCap": "229941792.971631921726507648",
+ "price": "0.08973642960393837073",
+ "priceChange24hPercent": "-0.11",
+ "volume24h": "87116.181517301466069992",
+ "communityRecognized": false,
+ "key": "evm--56:0xba2ae424d960c26247dd6c32edc70b295c744c43",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x9f6b4c65e31a0f0bc663944950a74ed77c017777",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x9f6b4c65e31a0f0bc663944950a74ed77c017777-1788250361221.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x9f6b4c65e31a0f0bc663944950a74ed77c017777-1788250361221.png"
+ ],
+ "name": "币安证券",
+ "symbol": "币安证券",
+ "marketCap": "1503746.014069436085928105",
+ "price": "0.00395447368357555212",
+ "priceChange24hPercent": "5.35",
+ "volume24h": "8284.1079741518220615",
+ "communityRecognized": false,
+ "key": "evm--56:0x9f6b4c65e31a0f0bc663944950a74ed77c017777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x36f2fd027f5f27c59b8c6d64df64bcc8e8c97777",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x36f2fd027f5f27c59b8c6d64df64bcc8e8c97777-1766391154497.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x36f2fd027f5f27c59b8c6d64df64bcc8e8c97777-1766391154497.png"
+ ],
+ "name": "雪球",
+ "symbol": "雪球",
+ "marketCap": "4695287.782229586484960771",
+ "price": "0.00791448227953636867",
+ "priceChange24hPercent": "0.91",
+ "volume24h": "7563.77839879253751068",
+ "communityRecognized": true,
+ "key": "evm--56:0x36f2fd027f5f27c59b8c6d64df64bcc8e8c97777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xdbc6333a7d8bcd95f96641eda4d095e69f207777",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xdbc6333a7d8bcd95f96641eda4d095e69f207777-1786610534592.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xdbc6333a7d8bcd95f96641eda4d095e69f207777-1786610534592.png"
+ ],
+ "name": "Bicat",
+ "symbol": "Bicat",
+ "marketCap": "238682.637162686230855188",
+ "price": "0.00023868263739494475",
+ "priceChange24hPercent": "-19.08",
+ "volume24h": "8626.72245757452584547",
+ "communityRecognized": false,
+ "key": "evm--56:0xdbc6333a7d8bcd95f96641eda4d095e69f207777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x18d0e455b3491e09210292d3953157a4bf104444",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x18d0e455b3491e09210292d3953157a4bf104444-1762675561366.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x18d0e455b3491e09210292d3953157a4bf104444-1762675561366.png"
+ ],
+ "name": "比特币",
+ "symbol": "比特币",
+ "marketCap": "80107706.690098273959839871",
+ "price": "0.08010773056685818576",
+ "priceChange24hPercent": "-0.12",
+ "volume24h": "4008.135717474317247912",
+ "communityRecognized": false,
+ "key": "evm--56:0x18d0e455b3491e09210292d3953157a4bf104444",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xf8a0bf9cf54bb92f17374d9e9a321e6a111a51bd",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xf8a0bf9cf54bb92f17374d9e9a321e6a111a51bd.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xf8a0bf9cf54bb92f17374d9e9a321e6a111a51bd.png"
+ ],
+ "name": "ChainLink Token",
+ "symbol": "LINK",
+ "marketCap": "113604887.35906113141004216",
+ "price": "12.66474937487612494069",
+ "priceChange24hPercent": "0.9",
+ "volume24h": "19525.648450349218936363",
+ "communityRecognized": true,
+ "key": "evm--56:0xf8a0bf9cf54bb92f17374d9e9a321e6a111a51bd",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x537c87f3c4fa801ffcebcc222fd687b9a5e97777",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x537c87f3c4fa801ffcebcc222fd687b9a5e97777-1784534428165.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x537c87f3c4fa801ffcebcc222fd687b9a5e97777-1784534428165.png"
+ ],
+ "name": "吉祥狗",
+ "symbol": "吉祥狗",
+ "marketCap": "817486.293490385927161851",
+ "price": "0.00386357732592751841",
+ "priceChange24hPercent": "-2.68",
+ "volume24h": "2248.7310995746169967",
+ "communityRecognized": false,
+ "key": "evm--56:0x537c87f3c4fa801ffcebcc222fd687b9a5e97777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xa2b726b1145a4773f68593cf171187d8ebe4d495",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xa2b726b1145a4773f68593cf171187d8ebe4d495.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xa2b726b1145a4773f68593cf171187d8ebe4d495.png"
+ ],
+ "name": "Injective Protocol",
+ "symbol": "INJ",
+ "marketCap": "42495386.550425667008849781",
+ "price": "6.53775177698856415521",
+ "priceChange24hPercent": "0.82",
+ "volume24h": "4923.302308458663927514",
+ "communityRecognized": true,
+ "key": "evm--56:0xa2b726b1145a4773f68593cf171187d8ebe4d495",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xe831a8badd383513bf971203c6a1387c099e7777",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/53573060f2e43e01057a34577f6259752f2c6a4fe47a449b7b5f1ed7b575b179",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/53573060f2e43e01057a34577f6259752f2c6a4fe47a449b7b5f1ed7b575b179"
+ ],
+ "name": "哈基米南北绿豆",
+ "symbol": "南北绿豆",
+ "marketCap": "11450.403339315274078383",
+ "price": "0.00001145040333931527",
+ "priceChange24hPercent": "-11.7",
+ "volume24h": "538.77934174876448771",
+ "communityRecognized": false,
+ "key": "evm--56:0xe831a8badd383513bf971203c6a1387c099e7777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x21caef8a43163eea865baee23b9c2e327696a3bf",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x21caef8a43163eea865baee23b9c2e327696a3bf-1779763100866.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x21caef8a43163eea865baee23b9c2e327696a3bf-1779763100866.png"
+ ],
+ "name": "Tether Gold",
+ "symbol": "XAUt",
+ "marketCap": "58890741.125196808222928869",
+ "price": "4435.53277368368646619941",
+ "priceChange24hPercent": "0.59",
+ "volume24h": "257003.928847387313648967",
+ "communityRecognized": false,
+ "key": "evm--56:0x21caef8a43163eea865baee23b9c2e327696a3bf",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x0c2f3750418273d3749cc62b5d572ac9a5e14db9",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/4b74f508750b26b0a337922a69381c848a3679c858e468b16c974b285c0844c7",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/4b74f508750b26b0a337922a69381c848a3679c858e468b16c974b285c0844c7"
+ ],
+ "name": "OmniPool",
+ "symbol": "Omni",
+ "marketCap": "306504.741470791609185045",
+ "price": "0.00031736167828754715",
+ "priceChange24hPercent": "4.32",
+ "volume24h": "108571.529649099250356705",
+ "communityRecognized": false,
+ "key": "evm--56:0x0c2f3750418273d3749cc62b5d572ac9a5e14db9",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x475cbf5919608e0c6af00e7bf87fab83bf3ef6e2",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x475cbf5919608e0c6af00e7bf87fab83bf3ef6e2-1772006627642.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x475cbf5919608e0c6af00e7bf87fab83bf3ef6e2-1772006627642.png"
+ ],
+ "name": "Robo Token",
+ "symbol": "ROBO",
+ "marketCap": "1990955.446700276590257486",
+ "price": "0.01173655355596797282",
+ "priceChange24hPercent": "1.16",
+ "volume24h": "62044.804194644283391553",
+ "communityRecognized": true,
+ "key": "evm--56:0x475cbf5919608e0c6af00e7bf87fab83bf3ef6e2",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x468aabd0139d70a13c2ac5c9c1873bddf49e7777",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/40b7587898798be4b3c05f1798400fa073611ad145f8d7cfd32a6edcd10ef4e5",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/40b7587898798be4b3c05f1798400fa073611ad145f8d7cfd32a6edcd10ef4e5"
+ ],
+ "name": "Flapcat",
+ "symbol": "Flapcat",
+ "marketCap": "21052.615911399948453985",
+ "price": "0.00002105261591139995",
+ "priceChange24hPercent": "-10.37",
+ "volume24h": "660.063997998003341",
+ "communityRecognized": false,
+ "key": "evm--56:0x468aabd0139d70a13c2ac5c9c1873bddf49e7777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x92aa03137385f18539301349dcfc9ebc923ffb10",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x92aa03137385f18539301349dcfc9ebc923ffb10-1757703762513.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x92aa03137385f18539301349dcfc9ebc923ffb10-1757703762513.png"
+ ],
+ "name": "SKYAI",
+ "symbol": "SKYAI",
+ "marketCap": "57916860.208130938263645826",
+ "price": "0.0580105990835368113",
+ "priceChange24hPercent": "3.25",
+ "volume24h": "86686.887932556991986946",
+ "communityRecognized": true,
+ "key": "evm--56:0x92aa03137385f18539301349dcfc9ebc923ffb10",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xc55b5892a73c02691d9f33cac9f54dfb398e7777",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/d5324860e6c1f4e90e6d84c0c8a68cb6abfab2ff148e0c43ddad8f5273c7691a",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/d5324860e6c1f4e90e6d84c0c8a68cb6abfab2ff148e0c43ddad8f5273c7691a"
+ ],
+ "name": "火焰聖羊",
+ "symbol": "火焰聖羊",
+ "marketCap": "54905.14227844554403163",
+ "price": "0.00005736751527336716",
+ "priceChange24hPercent": "60.71",
+ "volume24h": "4217.412114913080149536",
+ "communityRecognized": false,
+ "key": "evm--56:0xc55b5892a73c02691d9f33cac9f54dfb398e7777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xa94d69db9272268df6973dabfbc83462d7888888",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/be4cbb740113649d957ec49879ac6177a0694dfe9845a00cac46be3abd340d29",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/be4cbb740113649d957ec49879ac6177a0694dfe9845a00cac46be3abd340d29"
+ ],
+ "name": "星星之火",
+ "symbol": "星星之火",
+ "marketCap": "181581.540746832702746119",
+ "price": "1.90521147338630941168",
+ "priceChange24hPercent": "-19.53",
+ "volume24h": "1582.65689492822370431",
+ "communityRecognized": false,
+ "key": "evm--56:0xa94d69db9272268df6973dabfbc83462d7888888",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x76198caaa0e132fb76713fa76dae31fa0c4230bd",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x76198caaa0e132fb76713fa76dae31fa0c4230bd-1786521690283.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x76198caaa0e132fb76713fa76dae31fa0c4230bd-1786521690283.png"
+ ],
+ "name": "Wrapped Trust Bitcoin",
+ "symbol": "WTBC",
+ "marketCap": "3544036.180119362400078087",
+ "price": "510.49915938968343567058",
+ "priceChange24hPercent": "1.5",
+ "volume24h": "9538.1105881400943188",
+ "communityRecognized": false,
+ "key": "evm--56:0x76198caaa0e132fb76713fa76dae31fa0c4230bd",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x2c3a8ee94ddd97244a93bc48298f97d2c412f7db",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x2c3a8ee94ddd97244a93bc48298f97d2c412f7db-1757703625601.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x2c3a8ee94ddd97244a93bc48298f97d2c412f7db-1757703625601.png"
+ ],
+ "name": "AKE",
+ "symbol": "AKE",
+ "marketCap": "416296457.038256878835646491",
+ "price": "0.01826162009270195224",
+ "priceChange24hPercent": "4.33",
+ "volume24h": "456893.398396987034002351",
+ "communityRecognized": true,
+ "key": "evm--56:0x2c3a8ee94ddd97244a93bc48298f97d2c412f7db",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x1eb7a7bf5dd4ef574f3965aa10990cf24edf7777",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/02532f2d6b18db5ec0cb98471dc7ab0ba60c54be3ae2ab531b767826ed404ce9",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/02532f2d6b18db5ec0cb98471dc7ab0ba60c54be3ae2ab531b767826ed404ce9"
+ ],
+ "name": "WLFI BIRD",
+ "symbol": "WLFIB",
+ "marketCap": "17870.110117603937115994",
+ "price": "0.00001787011011760394",
+ "priceChange24hPercent": "-4.35",
+ "volume24h": "1608.58233578784022129",
+ "communityRecognized": false,
+ "key": "evm--56:0x1eb7a7bf5dd4ef574f3965aa10990cf24edf7777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x2a846aaaf896ef393ccb76398c1d96ea97374444",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x2a846aaaf896ef393ccb76398c1d96ea97374444-1763021306352.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x2a846aaaf896ef393ccb76398c1d96ea97374444-1763021306352.png"
+ ],
+ "name": "BORT",
+ "symbol": "BORT",
+ "marketCap": "865781.140550474327648681",
+ "price": "0.00088889234142759171",
+ "priceChange24hPercent": "-8.76",
+ "volume24h": "28901.855131589840834941",
+ "communityRecognized": false,
+ "key": "evm--56:0x2a846aaaf896ef393ccb76398c1d96ea97374444",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x330990dae53bca4c5811c5362b44c33a47db7777",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x330990dae53bca4c5811c5362b44c33a47db7777-1785657934012.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x330990dae53bca4c5811c5362b44c33a47db7777-1785657934012.png"
+ ],
+ "name": "Asteroid Shiba",
+ "symbol": "ASTEROID",
+ "marketCap": "708649.53955202466825333",
+ "price": "0.0007086495395791489",
+ "priceChange24hPercent": "-0.45",
+ "volume24h": "14571.505230349019794032",
+ "communityRecognized": false,
+ "key": "evm--56:0x330990dae53bca4c5811c5362b44c33a47db7777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x1d2f0da169ceb9fc7b3144628db156f3f6c60dbe",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x1d2f0da169ceb9fc7b3144628db156f3f6c60dbe.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x1d2f0da169ceb9fc7b3144628db156f3f6c60dbe.png"
+ ],
+ "name": "Binance-Peg XRP Token",
+ "symbol": "XRP",
+ "marketCap": "454321271.727828449023938217",
+ "price": "1.39480348952811591672",
+ "priceChange24hPercent": "0.2",
+ "volume24h": "51008.782423489396493837",
+ "communityRecognized": true,
+ "key": "evm--56:0x1d2f0da169ceb9fc7b3144628db156f3f6c60dbe",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x276c86cea6c0e200ca13211cf2db0434cc0d7777",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x276c86cea6c0e200ca13211cf2db0434cc0d7777-1785831356788.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x276c86cea6c0e200ca13211cf2db0434cc0d7777-1785831356788.png"
+ ],
+ "name": "小股东",
+ "symbol": "小股东",
+ "marketCap": "137381.151585384557434675",
+ "price": "0.00013738115158538456",
+ "priceChange24hPercent": "-29.44",
+ "volume24h": "11673.8154923779930684",
+ "communityRecognized": false,
+ "key": "evm--56:0x276c86cea6c0e200ca13211cf2db0434cc0d7777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x8ffdcd653a218b3a00b8d41ea95ee1e11426ffff",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/be4cbb740113649d957ec49879ac6177a0694dfe9845a00cac46be3abd340d29",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/be4cbb740113649d957ec49879ac6177a0694dfe9845a00cac46be3abd340d29"
+ ],
+ "name": "邮差猫",
+ "symbol": "邮差猫",
+ "marketCap": "704469.984356941444570534",
+ "price": "0.00070446998435694144",
+ "priceChange24hPercent": "6.14",
+ "volume24h": "16173.4455251822484136",
+ "communityRecognized": false,
+ "key": "evm--56:0x8ffdcd653a218b3a00b8d41ea95ee1e11426ffff",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x500a02a20b0b0a3f3efccfc0559543f5743bd1c4",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x500a02a20b0b0a3f3efccfc0559543f5743bd1c4-1781770298726.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x500a02a20b0b0a3f3efccfc0559543f5743bd1c4-1781770298726.png"
+ ],
+ "name": "o1.exchange",
+ "symbol": "O",
+ "marketCap": "10795011.611126715959593983",
+ "price": "0.53972228432139312989",
+ "priceChange24hPercent": "0.07",
+ "volume24h": "12063.461076421888607",
+ "communityRecognized": true,
+ "key": "evm--56:0x500a02a20b0b0a3f3efccfc0559543f5743bd1c4",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ }
+ ],
+ "trending|evm--56|4h|all": [
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x888656062164473c93c06ca89ae4d868d606ffff",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/4a563ac1c0cd1b7ed43429ee1ad5750a8ca22c0eaaa08d0427a8a86e8a2348f0",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/4a563ac1c0cd1b7ed43429ee1ad5750a8ca22c0eaaa08d0427a8a86e8a2348f0"
+ ],
+ "name": "Fat Panda",
+ "symbol": "FATPANDA",
+ "marketCap": "2027091.807825832449362322",
+ "price": "0.0020104343656964278",
+ "priceChange24hPercent": "-57.98",
+ "volume24h": "2810906.91851794531839974",
+ "communityRecognized": false,
+ "key": "evm--56:0x888656062164473c93c06ca89ae4d868d606ffff",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xc9d825e83aada475bd4d38c8ca984ed746277777",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xc9d825e83aada475bd4d38c8ca984ed746277777-1788595746569.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xc9d825e83aada475bd4d38c8ca984ed746277777-1788595746569.png"
+ ],
+ "name": "Stonks",
+ "symbol": "Stonks",
+ "marketCap": "3542152.135693845813113834",
+ "price": "0.00354215213569384581",
+ "priceChange24hPercent": "-31.95",
+ "volume24h": "2911331.025790078079152235",
+ "communityRecognized": true,
+ "key": "evm--56:0xc9d825e83aada475bd4d38c8ca984ed746277777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xd270d4e1ec6e6e0d28c0ecb8be966ec75997ffff",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/f3bf6d8a8bc7f4be0ec6949fa0ebf538953fcd6443cd6681e394f790b6546a1e",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/f3bf6d8a8bc7f4be0ec6949fa0ebf538953fcd6443cd6681e394f790b6546a1e"
+ ],
+ "name": "4Stock",
+ "symbol": "4Stock",
+ "marketCap": "8461745.83563801789064901",
+ "price": "0.00846174583563801789",
+ "priceChange24hPercent": "12882.85",
+ "volume24h": "6087290.292650635959801738",
+ "communityRecognized": false,
+ "key": "evm--56:0xd270d4e1ec6e6e0d28c0ecb8be966ec75997ffff",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x8fdb0647e2bf11c8d88ef7825905f5f428864444",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/f3bf6d8a8bc7f4be0ec6949fa0ebf538953fcd6443cd6681e394f790b6546a1e",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/f3bf6d8a8bc7f4be0ec6949fa0ebf538953fcd6443cd6681e394f790b6546a1e"
+ ],
+ "name": "4cat",
+ "symbol": "4cat",
+ "marketCap": "132186.874931726983465779",
+ "price": "0.00013218687493172698",
+ "priceChange24hPercent": "46.13",
+ "volume24h": "181945.5328159783217701",
+ "communityRecognized": false,
+ "key": "evm--56:0x8fdb0647e2bf11c8d88ef7825905f5f428864444",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x17616c8f6cacf14fcff63f3188a30691802effff",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/cfcf37bcd1b22ee8594b38b7c1bbb0d2aafe3f8ad70ec9d9cbd108990326678d",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/cfcf37bcd1b22ee8594b38b7c1bbb0d2aafe3f8ad70ec9d9cbd108990326678d"
+ ],
+ "name": "Built and Code",
+ "symbol": "BNC",
+ "marketCap": "960390.688541333736385685",
+ "price": "0.00096039068854133374",
+ "priceChange24hPercent": "102.52",
+ "volume24h": "379219.914240576328794233",
+ "communityRecognized": false,
+ "key": "evm--56:0x17616c8f6cacf14fcff63f3188a30691802effff",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xa6b53819f5bf521945fceb1f9bbb3a7a7b4effff",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/e5fb48d54702b49bd31d0551378667606ad6bb5e4e33b94fc32179b14469f2d0",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/e5fb48d54702b49bd31d0551378667606ad6bb5e4e33b94fc32179b14469f2d0"
+ ],
+ "name": "CEA Industries",
+ "symbol": "Vape",
+ "marketCap": "178261.843414093155650033",
+ "price": "0.00017826184341409316",
+ "priceChange24hPercent": "-25.05",
+ "volume24h": "305106.814698761757804359",
+ "communityRecognized": false,
+ "key": "evm--56:0xa6b53819f5bf521945fceb1f9bbb3a7a7b4effff",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xe9337dde3dd9e97f1f45a56412767ce5098e7777",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xe9337dde3dd9e97f1f45a56412767ce5098e7777-1785657919485.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xe9337dde3dd9e97f1f45a56412767ce5098e7777-1785657919485.png"
+ ],
+ "name": "何必东奔西走 币安全部都有",
+ "symbol": "币有",
+ "marketCap": "3164666.390133842302734257",
+ "price": "0.00316466639033410038",
+ "priceChange24hPercent": "-17.45",
+ "volume24h": "350402.64795389564211057",
+ "communityRecognized": false,
+ "key": "evm--56:0xe9337dde3dd9e97f1f45a56412767ce5098e7777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x7bc70ae0f2a67d2fdc0180a697a611f21c857777",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x7bc70ae0f2a67d2fdc0180a697a611f21c857777-1788768091330.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x7bc70ae0f2a67d2fdc0180a697a611f21c857777-1788768091330.png"
+ ],
+ "name": "BEN",
+ "symbol": "BEN",
+ "marketCap": "4691268.880796520376779672",
+ "price": "0.00469126888091739643",
+ "priceChange24hPercent": "-27.62",
+ "volume24h": "2224434.283706369883653811",
+ "communityRecognized": false,
+ "key": "evm--56:0x7bc70ae0f2a67d2fdc0180a697a611f21c857777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xb3a1e1f7ae6c90c707ec3c75e99c359482fea5b9",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/488d50fb3eb6f79c9440d809ef90dc3a197facbca4792e913cf6d2ab384a3fbe",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/488d50fb3eb6f79c9440d809ef90dc3a197facbca4792e913cf6d2ab384a3fbe"
+ ],
+ "name": "Sock",
+ "symbol": "SOCK",
+ "marketCap": "5055307.749537088461358135",
+ "price": "0.00505639238387653219",
+ "priceChange24hPercent": "-19.14",
+ "volume24h": "1880882.225676033506919861",
+ "communityRecognized": false,
+ "key": "evm--56:0xb3a1e1f7ae6c90c707ec3c75e99c359482fea5b9",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xfa6d9b504848606eb9aec04ccc161d169b3f2159",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xfa6d9b504848606eb9aec04ccc161d169b3f2159-1788768839130.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xfa6d9b504848606eb9aec04ccc161d169b3f2159-1788768839130.png"
+ ],
+ "name": "BREW",
+ "symbol": "BREW",
+ "marketCap": "6544541.333605754506345657",
+ "price": "0.00654454133360575451",
+ "priceChange24hPercent": "-21.61",
+ "volume24h": "1514184.787209695397571252",
+ "communityRecognized": true,
+ "key": "evm--56:0xfa6d9b504848606eb9aec04ccc161d169b3f2159",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x198dba421a7db566a90da5de7901abe3443b4444",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x198dba421a7db566a90da5de7901abe3443b4444-1783844840152.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x198dba421a7db566a90da5de7901abe3443b4444-1783844840152.png"
+ ],
+ "name": "富贵",
+ "symbol": "富贵",
+ "marketCap": "2004608.783658215940488177",
+ "price": "0.00200460880490616635",
+ "priceChange24hPercent": "-17.22",
+ "volume24h": "548053.666653772427830005",
+ "communityRecognized": false,
+ "key": "evm--56:0x198dba421a7db566a90da5de7901abe3443b4444",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x2ab8a4dd2191989ac2898006df350b236d2b7777",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x2ab8a4dd2191989ac2898006df350b236d2b7777-1787990461314.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x2ab8a4dd2191989ac2898006df350b236d2b7777-1787990461314.png"
+ ],
+ "name": "施工猫",
+ "symbol": "Sue",
+ "marketCap": "3525503.639455193998936336",
+ "price": "0.00352550383167665148",
+ "priceChange24hPercent": "-27.93",
+ "volume24h": "452811.413455913668456784",
+ "communityRecognized": true,
+ "key": "evm--56:0x2ab8a4dd2191989ac2898006df350b236d2b7777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xe9bc5c6a86caa44fd7b469bf3cc7c563e4f77777",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xe9bc5c6a86caa44fd7b469bf3cc7c563e4f77777-1785831565492.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xe9bc5c6a86caa44fd7b469bf3cc7c563e4f77777-1785831565492.png"
+ ],
+ "name": "Giggle Mascot",
+ "symbol": "Max",
+ "marketCap": "12379501.526308740492021141",
+ "price": "0.012379502707187888",
+ "priceChange24hPercent": "-20.41",
+ "volume24h": "322268.615062358327555706",
+ "communityRecognized": false,
+ "key": "evm--56:0xe9bc5c6a86caa44fd7b469bf3cc7c563e4f77777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x9e92bbf2017bbfb7a06c975ca30e268cd2e57777",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/26946e97f0605097c389e90209fbbad48af1927f15b93093e2b999a0ccb97c16",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/26946e97f0605097c389e90209fbbad48af1927f15b93093e2b999a0ccb97c16"
+ ],
+ "name": "Google Dog",
+ "symbol": "股狗",
+ "marketCap": "332064.446510156775471152",
+ "price": "0.00033206444651015678",
+ "priceChange24hPercent": "-45.07",
+ "volume24h": "70814.60816419848157475",
+ "communityRecognized": false,
+ "key": "evm--56:0x9e92bbf2017bbfb7a06c975ca30e268cd2e57777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xbeea1d618e533a387d941f58a7d4c9b7bd377777",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xbeea1d618e533a387d941f58a7d4c9b7bd377777-1786867206539.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xbeea1d618e533a387d941f58a7d4c9b7bd377777-1786867206539.png"
+ ],
+ "name": "牛来",
+ "symbol": "牛来",
+ "marketCap": "81315633.730996053986212561",
+ "price": "0.08131564191954314277",
+ "priceChange24hPercent": "-1.14",
+ "volume24h": "1900862.06105498668865985",
+ "communityRecognized": false,
+ "key": "evm--56:0xbeea1d618e533a387d941f58a7d4c9b7bd377777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xf40592daacb3e5abf358789f5688c0b4f64d7777",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xf40592daacb3e5abf358789f5688c0b4f64d7777-1788336091391.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xf40592daacb3e5abf358789f5688c0b4f64d7777-1788336091391.png"
+ ],
+ "name": "FLORK",
+ "symbol": "FLORK",
+ "marketCap": "13974844.309976889329689928",
+ "price": "0.01397484431010265303",
+ "priceChange24hPercent": "-12.92",
+ "volume24h": "1254097.71922701984132646",
+ "communityRecognized": true,
+ "key": "evm--56:0xf40592daacb3e5abf358789f5688c0b4f64d7777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x87ae267002cd1ea0ec86bf3601d4a8ad76a47777",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x87ae267002cd1ea0ec86bf3601d4a8ad76a47777-1787558536892.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x87ae267002cd1ea0ec86bf3601d4a8ad76a47777-1787558536892.png"
+ ],
+ "name": "蝴蝶人生",
+ "symbol": "蝴蝶人生",
+ "marketCap": "2900864.953755263095854545",
+ "price": "0.0029008649537552631",
+ "priceChange24hPercent": "-2.41",
+ "volume24h": "106223.737040453977380975",
+ "communityRecognized": false,
+ "key": "evm--56:0x87ae267002cd1ea0ec86bf3601d4a8ad76a47777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x5b73a93b4e5e4f1fd27d8b3f8c97d69908b5e284",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x5b73a93b4e5e4f1fd27d8b3f8c97d69908b5e284-1757704453242.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x5b73a93b4e5e4f1fd27d8b3f8c97d69908b5e284-1757704453242.png"
+ ],
+ "name": "FORM Token",
+ "symbol": "FORM",
+ "marketCap": "81337721.233552374393924307",
+ "price": "0.27423761434533356272",
+ "priceChange24hPercent": "7.71",
+ "volume24h": "159854.591489957103347021",
+ "communityRecognized": true,
+ "key": "evm--56:0x5b73a93b4e5e4f1fd27d8b3f8c97d69908b5e284",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x265b3982ea730748100947f52561a4eab54affff",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x265b3982ea730748100947f52561a4eab54affff-1788163283951.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x265b3982ea730748100947f52561a4eab54affff-1788163283951.png"
+ ],
+ "name": "ast.fun",
+ "symbol": "AST",
+ "marketCap": "878033.669607184618756111",
+ "price": "0.00088998183448709776",
+ "priceChange24hPercent": "-24.69",
+ "volume24h": "440324.757167660171586893",
+ "communityRecognized": false,
+ "key": "evm--56:0x265b3982ea730748100947f52561a4eab54affff",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x7a848a5a8169aa6a2f603d056a749f924f504444",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x7a848a5a8169aa6a2f603d056a749f924f504444-1783238620991.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x7a848a5a8169aa6a2f603d056a749f924f504444-1783238620991.png"
+ ],
+ "name": "The Final Form Bull",
+ "symbol": "CZ",
+ "marketCap": "1108669.360880238166665035",
+ "price": "0.00369589294180277339",
+ "priceChange24hPercent": "-13.5",
+ "volume24h": "79530.791377679050593397",
+ "communityRecognized": false,
+ "key": "evm--56:0x7a848a5a8169aa6a2f603d056a749f924f504444",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x4f4a59ac165c6f05ed771df3530741494b1c7777",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/aaedfbda5a6301f10b584f1887dbe9604f4015526974adfc9bd19e9bff06bf7c",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/aaedfbda5a6301f10b584f1887dbe9604f4015526974adfc9bd19e9bff06bf7c"
+ ],
+ "name": "Offchain Dog",
+ "symbol": "zDOG",
+ "marketCap": "772076.5981881585062435",
+ "price": "0.00077207659818815851",
+ "priceChange24hPercent": "-27.92",
+ "volume24h": "443055.898709603343244612",
+ "communityRecognized": false,
+ "key": "evm--56:0x4f4a59ac165c6f05ed771df3530741494b1c7777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xe38dd986d6374b9beb10a2056e312ac0888e7777",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/623c1526cfbe298c68c85906ffa28048852817285b1762234230154e5dd2b512",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/623c1526cfbe298c68c85906ffa28048852817285b1762234230154e5dd2b512"
+ ],
+ "name": "605577",
+ "symbol": "龙版传媒",
+ "marketCap": "54834.964138629928725388",
+ "price": "0.00005483496413862993",
+ "priceChange24hPercent": "1062.68",
+ "volume24h": "2438014.72499122732635604",
+ "communityRecognized": false,
+ "key": "evm--56:0xe38dd986d6374b9beb10a2056e312ac0888e7777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x431a3bee82e2ca41e49895cbece5bb0f76a89b7a",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x431a3bee82e2ca41e49895cbece5bb0f76a89b7a-1785484886316.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x431a3bee82e2ca41e49895cbece5bb0f76a89b7a-1785484886316.png"
+ ],
+ "name": "Apple",
+ "symbol": "AAPLB",
+ "marketCap": "6580346.4929515002145",
+ "price": "319.31",
+ "priceChange24hPercent": "0.14",
+ "volume24h": "485709.170401638409799639",
+ "communityRecognized": false,
+ "key": "evm--56:0x431a3bee82e2ca41e49895cbece5bb0f76a89b7a",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x277add739c6e0477616948357af9e79fe1ec9b80",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x277add739c6e0477616948357af9e79fe1ec9b80-1785225726728.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x277add739c6e0477616948357af9e79fe1ec9b80-1785225726728.png"
+ ],
+ "name": "AEON",
+ "symbol": "AEON",
+ "marketCap": "12687587.149476832448124543",
+ "price": "0.05431330115358233069",
+ "priceChange24hPercent": "3.94",
+ "volume24h": "274371.379409333742867406",
+ "communityRecognized": true,
+ "key": "evm--56:0x277add739c6e0477616948357af9e79fe1ec9b80",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xc839b8f4f6ded0cae5531a603b78ede6ca677777",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xc839b8f4f6ded0cae5531a603b78ede6ca677777-1787645476535.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xc839b8f4f6ded0cae5531a603b78ede6ca677777-1787645476535.png"
+ ],
+ "name": "羊必火",
+ "symbol": "羊必火",
+ "marketCap": "12585713.642719191855686756",
+ "price": "0.06292856837466439058",
+ "priceChange24hPercent": "17.62",
+ "volume24h": "167734.430498248816642931",
+ "communityRecognized": false,
+ "key": "evm--56:0xc839b8f4f6ded0cae5531a603b78ede6ca677777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x9b8e987e6fec8cf1380c4dca7071e2c7853aeea1",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x9b8e987e6fec8cf1380c4dca7071e2c7853aeea1-1773890745834.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x9b8e987e6fec8cf1380c4dca7071e2c7853aeea1-1773890745834.png"
+ ],
+ "name": "iShares China Large-Cap ETF (Ondo Tokenized)",
+ "symbol": "FXIon",
+ "marketCap": "383060.830532199629954621",
+ "price": "35.347713127268825539",
+ "priceChange24hPercent": "-",
+ "volume24h": "3625238.424627608620076013",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x9b8e987e6fec8cf1380c4dca7071e2c7853aeea1",
+ "kind": "stock",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x11116f6fc6145fe83e1e11f363210f90e2761111",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x11116f6fc6145fe83e1e11f363210f90e2761111-1788424285335.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x11116f6fc6145fe83e1e11f363210f90e2761111-1788424285335.png"
+ ],
+ "name": "TaiYi Token",
+ "symbol": "TAIYI",
+ "marketCap": "5967574.525231360995495717",
+ "price": "0.59675745252313609955",
+ "priceChange24hPercent": "1.88",
+ "volume24h": "190488.07158227035491705",
+ "communityRecognized": false,
+ "key": "evm--56:0x11116f6fc6145fe83e1e11f363210f90e2761111",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xe44d996ff1c6d9720c13c45431e665afa9f88888",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xe44d996ff1c6d9720c13c45431e665afa9f88888-1782288399263.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xe44d996ff1c6d9720c13c45431e665afa9f88888-1782288399263.png"
+ ],
+ "name": "Golden Dragon",
+ "symbol": "GD",
+ "marketCap": "16510900.019833585011614245",
+ "price": "0.16510900019833585012",
+ "priceChange24hPercent": "1.97",
+ "volume24h": "49485.05699537183849804",
+ "communityRecognized": false,
+ "key": "evm--56:0xe44d996ff1c6d9720c13c45431e665afa9f88888",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x0c2f3750418273d3749cc62b5d572ac9a5e14db9",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/4b74f508750b26b0a337922a69381c848a3679c858e468b16c974b285c0844c7",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/4b74f508750b26b0a337922a69381c848a3679c858e468b16c974b285c0844c7"
+ ],
+ "name": "OmniPool",
+ "symbol": "Omni",
+ "marketCap": "306504.741470791609185045",
+ "price": "0.00031736167828754715",
+ "priceChange24hPercent": "-66.45",
+ "volume24h": "607644.154503892053947516",
+ "communityRecognized": false,
+ "key": "evm--56:0x0c2f3750418273d3749cc62b5d572ac9a5e14db9",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x5b1910eaad6450e50f816082aa078c41f10c292f",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x5b1910eaad6450e50f816082aa078c41f10c292f-1781337775850.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x5b1910eaad6450e50f816082aa078c41f10c292f-1781337775850.png"
+ ],
+ "name": "Tesla, Inc. ",
+ "symbol": "TSLAB",
+ "marketCap": "17974789.0974280827",
+ "price": "356.73",
+ "priceChange24hPercent": "-0.01",
+ "volume24h": "103278.907635247204116847",
+ "communityRecognized": false,
+ "key": "evm--56:0x5b1910eaad6450e50f816082aa078c41f10c292f",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x923398cc7d149d69b9356c1866b8d3e9d5cfffff",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/e95d83e345b2aefd0bc28dfac61d3a1123b000efb94afe2d1fbd00e6bc332cd2",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/e95d83e345b2aefd0bc28dfac61d3a1123b000efb94afe2d1fbd00e6bc332cd2"
+ ],
+ "name": "stockmemes",
+ "symbol": "stockmemes",
+ "marketCap": "15990.163084300757331558",
+ "price": "0.00001600626526256663",
+ "priceChange24hPercent": "32.32",
+ "volume24h": "1690.39901454108853926",
+ "communityRecognized": false,
+ "key": "evm--56:0x923398cc7d149d69b9356c1866b8d3e9d5cfffff",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x8ffdcd653a218b3a00b8d41ea95ee1e11426ffff",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/be4cbb740113649d957ec49879ac6177a0694dfe9845a00cac46be3abd340d29",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/be4cbb740113649d957ec49879ac6177a0694dfe9845a00cac46be3abd340d29"
+ ],
+ "name": "邮差猫",
+ "symbol": "邮差猫",
+ "marketCap": "704469.984356941444570534",
+ "price": "0.00070446998435694144",
+ "priceChange24hPercent": "5.57",
+ "volume24h": "81655.9501491415776196",
+ "communityRecognized": false,
+ "key": "evm--56:0x8ffdcd653a218b3a00b8d41ea95ee1e11426ffff",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x66661c7229901f568f16bd1551b3ba826f83ce49",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x66661c7229901f568f16bd1551b3ba826f83ce49-1787817829554.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x66661c7229901f568f16bd1551b3ba826f83ce49-1787817829554.png"
+ ],
+ "name": "Teller",
+ "symbol": "DEBIT",
+ "marketCap": "27633660.730660254451405984",
+ "price": "1.60474220270965473005",
+ "priceChange24hPercent": "-5.13",
+ "volume24h": "51165236.172495295516624613",
+ "communityRecognized": true,
+ "key": "evm--56:0x66661c7229901f568f16bd1551b3ba826f83ce49",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x4ef9d3062c7f6eba4aae4990c5036598c6eff4ec",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x4ef9d3062c7f6eba4aae4990c5036598c6eff4ec-1784361786390.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x4ef9d3062c7f6eba4aae4990c5036598c6eff4ec-1784361786390.png"
+ ],
+ "name": "Alibaba",
+ "symbol": "BABAB",
+ "marketCap": "3748171.4208860636",
+ "price": "111.64",
+ "priceChange24hPercent": "-0.95",
+ "volume24h": "110884.742186977014938928",
+ "communityRecognized": false,
+ "key": "evm--56:0x4ef9d3062c7f6eba4aae4990c5036598c6eff4ec",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x3f53de71c126bdabae20f9cd64848d317f6c3238",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x3f53de71c126bdabae20f9cd64848d317f6c3238-1784361925966.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x3f53de71c126bdabae20f9cd64848d317f6c3238-1784361925966.png"
+ ],
+ "name": "Alphabet",
+ "symbol": "GOOGLB",
+ "marketCap": "26814290.0074111255944",
+ "price": "338.46",
+ "priceChange24hPercent": "-0.64",
+ "volume24h": "225188.982233154354274112",
+ "communityRecognized": false,
+ "key": "evm--56:0x3f53de71c126bdabae20f9cd64848d317f6c3238",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xc01a2e136f92772eecab15eb054e8f6fa06b7777",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xc01a2e136f92772eecab15eb054e8f6fa06b7777-1788595735163.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xc01a2e136f92772eecab15eb054e8f6fa06b7777-1788595735163.png"
+ ],
+ "name": "牛马",
+ "symbol": "NIUMA",
+ "marketCap": "1258203.804196386019852609",
+ "price": "0.00129142585793916915",
+ "priceChange24hPercent": "0.17",
+ "volume24h": "11564.5336087240527686",
+ "communityRecognized": false,
+ "key": "evm--56:0xc01a2e136f92772eecab15eb054e8f6fa06b7777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xbb87378b58894338f0937b9691a5a6dc3a5a7777",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xbb87378b58894338f0937b9691a5a6dc3a5a7777-1788682035504.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xbb87378b58894338f0937b9691a5a6dc3a5a7777-1788682035504.png"
+ ],
+ "name": "孙小圣",
+ "symbol": "孙小圣",
+ "marketCap": "149236.434472636266624232",
+ "price": "0.00017591158417934095",
+ "priceChange24hPercent": "2.56",
+ "volume24h": "27236.290341701518867227",
+ "communityRecognized": false,
+ "key": "evm--56:0xbb87378b58894338f0937b9691a5a6dc3a5a7777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xe0ab66985c8d18fba4cbc080024341750e997777",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xe0ab66985c8d18fba4cbc080024341750e997777-1787990635380.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xe0ab66985c8d18fba4cbc080024341750e997777-1787990635380.png"
+ ],
+ "name": "TITAN",
+ "symbol": "TITAN",
+ "marketCap": "1097253.921737584663753254",
+ "price": "0.01507987676743016512",
+ "priceChange24hPercent": "6.95",
+ "volume24h": "17798.731726722824009101",
+ "communityRecognized": false,
+ "key": "evm--56:0xe0ab66985c8d18fba4cbc080024341750e997777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xb75b67cabd07f307ebf4cc8ef271ce4cca457777",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/d4a1db31406358fd501bb80bcfdd9cad807559b2edc36d841eebc5dc6deebd7a",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/d4a1db31406358fd501bb80bcfdd9cad807559b2edc36d841eebc5dc6deebd7a"
+ ],
+ "name": "人生太难了qq:1104889362",
+ "symbol": "人生太难了",
+ "marketCap": "198968.825327085304047973",
+ "price": "0.00020042560805769368",
+ "priceChange24hPercent": "66.19",
+ "volume24h": "19353.085914246627021882",
+ "communityRecognized": false,
+ "key": "evm--56:0xb75b67cabd07f307ebf4cc8ef271ce4cca457777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xa394dcea3fd3847fd793afbfd163e2e3858b7c65",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xa394dcea3fd3847fd793afbfd163e2e3858b7c65-1785139211549.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xa394dcea3fd3847fd793afbfd163e2e3858b7c65-1785139211549.png"
+ ],
+ "name": "Robinhood",
+ "symbol": "HOODB",
+ "marketCap": "6657816.4153896045",
+ "price": "122.95",
+ "priceChange24hPercent": "-0.03",
+ "volume24h": "122871.292777068505427467",
+ "communityRecognized": false,
+ "key": "evm--56:0xa394dcea3fd3847fd793afbfd163e2e3858b7c65",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xcb74970b86b9abf3d75748eb2c3bff53e5cd7777",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xcb74970b86b9abf3d75748eb2c3bff53e5cd7777-1787990757359.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xcb74970b86b9abf3d75748eb2c3bff53e5cd7777-1787990757359.png"
+ ],
+ "name": "Giggle Cat",
+ "symbol": "niannian",
+ "marketCap": "44874.137755862037343162",
+ "price": "0.00004487413775586204",
+ "priceChange24hPercent": "55.54",
+ "volume24h": "37134.770999531696272855",
+ "communityRecognized": false,
+ "key": "evm--56:0xcb74970b86b9abf3d75748eb2c3bff53e5cd7777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x2a361ef8aaecceac32b2dc8d9fa3892c49427777",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/7a409ad900959b83b5229f260af02b5bae1978eb21ed6f8f04da736cea981088",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/7a409ad900959b83b5229f260af02b5bae1978eb21ed6f8f04da736cea981088"
+ ],
+ "name": "50%分红50%拉盘销毁建设1121625362",
+ "symbol": "谷歌人生",
+ "marketCap": "26968.101724282851919228",
+ "price": "0.00003456422754811061",
+ "priceChange24hPercent": "54.34",
+ "volume24h": "9880.312381857094024993",
+ "communityRecognized": false,
+ "key": "evm--56:0x2a361ef8aaecceac32b2dc8d9fa3892c49427777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xe766023f5a0fa6ce91b9f98d327771437dfca077",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/8356346777831140edc501f7c039ec2abceb49e4ee845cb86f3053a51d691863",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/8356346777831140edc501f7c039ec2abceb49e4ee845cb86f3053a51d691863"
+ ],
+ "name": "AEGIS X",
+ "symbol": "AGX",
+ "marketCap": "74314621.133892253509384157",
+ "price": "55.22569314708519539789",
+ "priceChange24hPercent": "0.65",
+ "volume24h": "103760.119501542778889587",
+ "communityRecognized": false,
+ "key": "evm--56:0xe766023f5a0fa6ce91b9f98d327771437dfca077",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xd0a58bc9d88d3ff48c0294cb7e45937d0e41a928",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xd0a58bc9d88d3ff48c0294cb7e45937d0e41a928-1781279452296.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xd0a58bc9d88d3ff48c0294cb7e45937d0e41a928-1781279452296.png"
+ ],
+ "name": "SpaceX (Ondo Tokenized)",
+ "symbol": "SPCXon",
+ "marketCap": "3351220.781756115333893104",
+ "price": "149.92005",
+ "priceChange24hPercent": "-",
+ "volume24h": "10409.32107077069883869",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "SpaceX",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0xd0a58bc9d88d3ff48c0294cb7e45937d0e41a928",
+ "kind": "stock",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xd97d097a89113fa59b76c572e5b2eb647e8eefaf",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xd97d097a89113fa59b76c572e5b2eb647e8eefaf-1783584151472.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xd97d097a89113fa59b76c572e5b2eb647e8eefaf-1783584151472.png"
+ ],
+ "name": "Semicon Bull 3X ETF",
+ "symbol": "SOXLB",
+ "marketCap": "20947055.0539421556",
+ "price": "126.26",
+ "priceChange24hPercent": "2.98",
+ "volume24h": "117201.766589671158313252",
+ "communityRecognized": false,
+ "key": "evm--56:0xd97d097a89113fa59b76c572e5b2eb647e8eefaf",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x537c87f3c4fa801ffcebcc222fd687b9a5e97777",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x537c87f3c4fa801ffcebcc222fd687b9a5e97777-1784534428165.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x537c87f3c4fa801ffcebcc222fd687b9a5e97777-1784534428165.png"
+ ],
+ "name": "吉祥狗",
+ "symbol": "吉祥狗",
+ "marketCap": "817486.293490385927161851",
+ "price": "0.00386357732592751841",
+ "priceChange24hPercent": "2.03",
+ "volume24h": "9935.9251755587857242",
+ "communityRecognized": false,
+ "key": "evm--56:0x537c87f3c4fa801ffcebcc222fd687b9a5e97777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x954857b94089f418b24b5222bb49ffc186b97777",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x954857b94089f418b24b5222bb49ffc186b97777-1788250516877.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x954857b94089f418b24b5222bb49ffc186b97777-1788250516877.png"
+ ],
+ "name": "Binance Ai Agent",
+ "symbol": "JARVIS",
+ "marketCap": "79323.668793864538650106",
+ "price": "0.00007932366879386454",
+ "priceChange24hPercent": "63.73",
+ "volume24h": "62230.28788647706156803",
+ "communityRecognized": false,
+ "key": "evm--56:0x954857b94089f418b24b5222bb49ffc186b97777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x2ab198e0078a8a233b8e7685356cb76482b9e681",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/8356346777831140edc501f7c039ec2abceb49e4ee845cb86f3053a51d691863",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/8356346777831140edc501f7c039ec2abceb49e4ee845cb86f3053a51d691863"
+ ],
+ "name": "Artificial Intelligence Two",
+ "symbol": "AIT",
+ "marketCap": "4287074196.25429954374756",
+ "price": "0.42870741962542995437",
+ "priceChange24hPercent": "-5.28",
+ "volume24h": "69237.699332118229594486",
+ "communityRecognized": false,
+ "key": "evm--56:0x2ab198e0078a8a233b8e7685356cb76482b9e681",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x79e82e417764b0cbf0f61d178deb54fa1d1b7777",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/7525601eea714e20876b56835a99645e0b80ac83d5e3ee1c2e64c5127d2ecc44",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/7525601eea714e20876b56835a99645e0b80ac83d5e3ee1c2e64c5127d2ecc44"
+ ],
+ "name": "7Stock",
+ "symbol": "7Stock",
+ "marketCap": "151079.651315530099350914",
+ "price": "0.0001510796513155301",
+ "priceChange24hPercent": "255.41",
+ "volume24h": "304015.817520624725779235",
+ "communityRecognized": false,
+ "key": "evm--56:0x79e82e417764b0cbf0f61d178deb54fa1d1b7777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xb0c2ab5af4028461ace3f6e1c33a4ee1404e7777",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xb0c2ab5af4028461ace3f6e1c33a4ee1404e7777-1786521665683.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xb0c2ab5af4028461ace3f6e1c33a4ee1404e7777-1786521665683.png"
+ ],
+ "name": "Cets On Gold",
+ "symbol": "CETS",
+ "marketCap": "15333572.787585246851695854",
+ "price": "0.01613374201873405437",
+ "priceChange24hPercent": "3.23",
+ "volume24h": "118204.399403732346545084",
+ "communityRecognized": false,
+ "key": "evm--56:0xb0c2ab5af4028461ace3f6e1c33a4ee1404e7777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xce24439f2d9c6a2289f741120fe202248b666666",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xce24439f2d9c6a2289f741120fe202248b666666-1766111365772.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xce24439f2d9c6a2289f741120fe202248b666666-1766111365772.png"
+ ],
+ "name": "United Stables",
+ "symbol": "U",
+ "marketCap": "946531946.48888976466145856",
+ "price": "0.99919068946012983679",
+ "priceChange24hPercent": "0.11",
+ "volume24h": "700252.062239719935135768",
+ "communityRecognized": true,
+ "key": "evm--56:0xce24439f2d9c6a2289f741120fe202248b666666",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xa3ab3ae51f5bca4fe66f916e7b3c7f9edafe7c4a",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/61256cce0c5acddbf40d3f9b65572dc6a42f8e6e1c439b521b188f9062eccc2d",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/61256cce0c5acddbf40d3f9b65572dc6a42f8e6e1c439b521b188f9062eccc2d"
+ ],
+ "name": "Brew Pepe",
+ "symbol": "BREWPEPE",
+ "marketCap": "18347.985958957480702345",
+ "price": "0.00001834798595895748",
+ "priceChange24hPercent": "207.76",
+ "volume24h": "16013.127905702995123311",
+ "communityRecognized": false,
+ "key": "evm--56:0xa3ab3ae51f5bca4fe66f916e7b3c7f9edafe7c4a",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xb1985f7f020e111bafac5d8e86936e6606f17777",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xb1985f7f020e111bafac5d8e86936e6606f17777-1784537117274.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xb1985f7f020e111bafac5d8e86936e6606f17777-1784537117274.png"
+ ],
+ "name": "千里马常有而伯乐不常有",
+ "symbol": "伯乐",
+ "marketCap": "1170574.569624310806408581",
+ "price": "0.00786164553027316326",
+ "priceChange24hPercent": "5.3",
+ "volume24h": "18987.17741958114404277",
+ "communityRecognized": false,
+ "key": "evm--56:0xb1985f7f020e111bafac5d8e86936e6606f17777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x13ef9ce9954f5d3425e62fe8cf77af0f1ff68888",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/771b491e6781e92c55c73c8da50e420b77427871015f4fb41c455a5d52890276",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/771b491e6781e92c55c73c8da50e420b77427871015f4fb41c455a5d52890276"
+ ],
+ "name": "Web3",
+ "symbol": "Web3",
+ "marketCap": "14603.998832927428620949",
+ "price": "0.00001460399883292743",
+ "priceChange24hPercent": "6.52",
+ "volume24h": "1578.222256245398637259",
+ "communityRecognized": false,
+ "key": "evm--56:0x13ef9ce9954f5d3425e62fe8cf77af0f1ff68888",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xfa46fa75a3f3d08ca33fe8b4b5194046b7217777",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xfa46fa75a3f3d08ca33fe8b4b5194046b7217777-1788428663400.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xfa46fa75a3f3d08ca33fe8b4b5194046b7217777-1788428663400.png"
+ ],
+ "name": "Tuzki",
+ "symbol": "TUZKI",
+ "marketCap": "343253.111381036293357985",
+ "price": "0.00032350938223769721",
+ "priceChange24hPercent": "-35.6",
+ "volume24h": "41349.445143893345350758",
+ "communityRecognized": false,
+ "key": "evm--56:0xfa46fa75a3f3d08ca33fe8b4b5194046b7217777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xccfb3e8b1772bd3a9fc62deaf75127adad597777",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xccfb3e8b1772bd3a9fc62deaf75127adad597777-1780387251393.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xccfb3e8b1772bd3a9fc62deaf75127adad597777-1780387251393.png"
+ ],
+ "name": "苹果人生",
+ "symbol": "苹果人生",
+ "marketCap": "3960360.930146650063777512",
+ "price": "0.00396036140112834627",
+ "priceChange24hPercent": "1.99",
+ "volume24h": "6336.660163997640083084",
+ "communityRecognized": false,
+ "key": "evm--56:0xccfb3e8b1772bd3a9fc62deaf75127adad597777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x71967d91abfbf96796238e70092c85878fc85999",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x71967d91abfbf96796238e70092c85878fc85999-1784534417711.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x71967d91abfbf96796238e70092c85878fc85999-1784534417711.png"
+ ],
+ "name": "Satoshi Protocol Token",
+ "symbol": "SPR",
+ "marketCap": "81258854.855630472210388238",
+ "price": "107.70000173402418874061",
+ "priceChange24hPercent": "0.02",
+ "volume24h": "53252.361788930642275117",
+ "communityRecognized": false,
+ "key": "evm--56:0x71967d91abfbf96796238e70092c85878fc85999",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xeccbb861c0dda7efd964010085488b69317e4444",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xeccbb861c0dda7efd964010085488b69317e4444-1772266878150.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xeccbb861c0dda7efd964010085488b69317e4444-1772266878150.png"
+ ],
+ "name": "龙虾",
+ "symbol": "龙虾",
+ "marketCap": "57410944.150485409858350971",
+ "price": "0.05741094441350569486",
+ "priceChange24hPercent": "3.54",
+ "volume24h": "859972.307761076425803879",
+ "communityRecognized": true,
+ "key": "evm--56:0xeccbb861c0dda7efd964010085488b69317e4444",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x84c104d7b6c5e646937de8cd1729525276a87777",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x84c104d7b6c5e646937de8cd1729525276a87777-1788163358029.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x84c104d7b6c5e646937de8cd1729525276a87777-1788163358029.png"
+ ],
+ "name": "神经蛙",
+ "symbol": "Froggie",
+ "marketCap": "261114.55620863106811181",
+ "price": "0.00026111455620863107",
+ "priceChange24hPercent": "-4.88",
+ "volume24h": "33152.985385427686081856",
+ "communityRecognized": false,
+ "key": "evm--56:0x84c104d7b6c5e646937de8cd1729525276a87777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xdd2fee7fc438aea520e2678e9ddbebc5b7b63333",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xdd2fee7fc438aea520e2678e9ddbebc5b7b63333-1786176011722.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xdd2fee7fc438aea520e2678e9ddbebc5b7b63333-1786176011722.png"
+ ],
+ "name": "DBURN",
+ "symbol": "DBURN",
+ "marketCap": "440027.055848149914200564",
+ "price": "0.04129561921109636417",
+ "priceChange24hPercent": "6.92",
+ "volume24h": "13706.97059421328391573",
+ "communityRecognized": false,
+ "key": "evm--56:0xdd2fee7fc438aea520e2678e9ddbebc5b7b63333",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xa4390b901a63641c92327e5793b45fcb46954444",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xa4390b901a63641c92327e5793b45fcb46954444-1783324841174.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xa4390b901a63641c92327e5793b45fcb46954444-1783324841174.png"
+ ],
+ "name": "TCryptochicks",
+ "symbol": "TCC",
+ "marketCap": "238576.658947750689083157",
+ "price": "0.00048838630884236572",
+ "priceChange24hPercent": "0.75",
+ "volume24h": "12443.307192603506110212",
+ "communityRecognized": false,
+ "key": "evm--56:0xa4390b901a63641c92327e5793b45fcb46954444",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x6c228dbc67d5bb73aae1522d54afb74778047777",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x6c228dbc67d5bb73aae1522d54afb74778047777-1782979821449.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x6c228dbc67d5bb73aae1522d54afb74778047777-1782979821449.png"
+ ],
+ "name": "宝贝狗",
+ "symbol": "Babydog",
+ "marketCap": "1622096.306571742002959522",
+ "price": "0.00396925994433009494",
+ "priceChange24hPercent": "13.84",
+ "volume24h": "11667.0442158786851792",
+ "communityRecognized": false,
+ "key": "evm--56:0x6c228dbc67d5bb73aae1522d54afb74778047777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x10d4183389e99233db3cc981c43443ebd28ebd5e",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x10d4183389e99233db3cc981c43443ebd28ebd5e-1787472223992.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x10d4183389e99233db3cc981c43443ebd28ebd5e-1787472223992.png"
+ ],
+ "name": "DGrid AI",
+ "symbol": "DGAI",
+ "marketCap": "759145498.720034777473107234",
+ "price": "0.75914549872003477747",
+ "priceChange24hPercent": "-0.85",
+ "volume24h": "1132899.36802651610123087",
+ "communityRecognized": true,
+ "key": "evm--56:0x10d4183389e99233db3cc981c43443ebd28ebd5e",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x2f31614f7a8bb702f7898d379b3c23db73b87777",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x2f31614f7a8bb702f7898d379b3c23db73b87777-1786608767364.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x2f31614f7a8bb702f7898d379b3c23db73b87777-1786608767364.png"
+ ],
+ "name": "CSI888",
+ "symbol": "CSI",
+ "marketCap": "22794.992200787665029936",
+ "price": "0.00002279499220078767",
+ "priceChange24hPercent": "86.34",
+ "volume24h": "16514.27858636861021774",
+ "communityRecognized": false,
+ "key": "evm--56:0x2f31614f7a8bb702f7898d379b3c23db73b87777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x3e17ee3b1895dd1a7cf993a89769c5e029584444",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x3e17ee3b1895dd1a7cf993a89769c5e029584444-1767255579366.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x3e17ee3b1895dd1a7cf993a89769c5e029584444-1767255579366.png"
+ ],
+ "name": "Freedom of Money",
+ "symbol": "Freedom of Money",
+ "marketCap": "2630445.845079194075586464",
+ "price": "0.00263502675945014975",
+ "priceChange24hPercent": "-8.46",
+ "volume24h": "74866.971210588013493447",
+ "communityRecognized": true,
+ "key": "evm--56:0x3e17ee3b1895dd1a7cf993a89769c5e029584444",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x822a078ed52c8ed54d8f334a69dcaa830e087777",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/f72368a8b24ed7326cb1b24f1162f40e42d03643784bd8c7f78f0282f4383b4b",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/f72368a8b24ed7326cb1b24f1162f40e42d03643784bd8c7f78f0282f4383b4b"
+ ],
+ "name": "万倍火星",
+ "symbol": "万倍火星",
+ "marketCap": "78764.988266013820583521",
+ "price": "0.0000794601183388669",
+ "priceChange24hPercent": "2.9",
+ "volume24h": "855.054384552242173632",
+ "communityRecognized": false,
+ "key": "evm--56:0x822a078ed52c8ed54d8f334a69dcaa830e087777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x1a5f9d77ca46646cd4937fd8d093f460b66f4444",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x1a5f9d77ca46646cd4937fd8d093f460b66f4444-1768032084379.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x1a5f9d77ca46646cd4937fd8d093f460b66f4444-1768032084379.png"
+ ],
+ "name": "老子",
+ "symbol": "老子",
+ "marketCap": "814200.768992484253786762",
+ "price": "0.00081794117568644025",
+ "priceChange24hPercent": "-7.96",
+ "volume24h": "26126.304491297823874411",
+ "communityRecognized": true,
+ "key": "evm--56:0x1a5f9d77ca46646cd4937fd8d093f460b66f4444",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xe5fd43bc02a6b98aa7d80d929168b318f7547777",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/6a55b6d0cec2baf1bf84345c3b4d50da8ae6f8392a500e8c1e5422659ff4e646",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/6a55b6d0cec2baf1bf84345c3b4d50da8ae6f8392a500e8c1e5422659ff4e646"
+ ],
+ "name": "Keel",
+ "symbol": "KEEL",
+ "marketCap": "107605.859588292329805647",
+ "price": "0.00010760585958829233",
+ "priceChange24hPercent": "20.78",
+ "volume24h": "27577.16752553970607023",
+ "communityRecognized": false,
+ "key": "evm--56:0xe5fd43bc02a6b98aa7d80d929168b318f7547777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xc6bff31bbfa84d3c05ad61d8ec47be8b31517777",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xc6bff31bbfa84d3c05ad61d8ec47be8b31517777-1786608913243.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xc6bff31bbfa84d3c05ad61d8ec47be8b31517777-1786608913243.png"
+ ],
+ "name": "The Martian Dog",
+ "symbol": "Marvin",
+ "marketCap": "1838379.926952434127917623",
+ "price": "0.00184236150106962533",
+ "priceChange24hPercent": "1.62",
+ "volume24h": "7942.92755146124846988",
+ "communityRecognized": false,
+ "key": "evm--56:0xc6bff31bbfa84d3c05ad61d8ec47be8b31517777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xab180d02d83bca0bf87a496745bd61e928e84444",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/61256cce0c5acddbf40d3f9b65572dc6a42f8e6e1c439b521b188f9062eccc2d",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/61256cce0c5acddbf40d3f9b65572dc6a42f8e6e1c439b521b188f9062eccc2d"
+ ],
+ "name": "BNB SEASON 🔶",
+ "symbol": "BNB SEASON 🔶",
+ "marketCap": "42929.656538414239696357",
+ "price": "0.00004292965653841424",
+ "priceChange24hPercent": "997.02",
+ "volume24h": "10133.597716904369516167",
+ "communityRecognized": false,
+ "key": "evm--56:0xab180d02d83bca0bf87a496745bd61e928e84444",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xecd794149128e7344154d8993fc0186d57de7777",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/4d69a08aec8be4ccb8730674fbbbe546f37de5dd7283a940fca40f9919433af1",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/4d69a08aec8be4ccb8730674fbbbe546f37de5dd7283a940fca40f9919433af1"
+ ],
+ "name": "狴犴(bian)监狱的代称,CZ的守护神。",
+ "symbol": "狴犴",
+ "marketCap": "894679.376474521284887275",
+ "price": "0.01801207806298397811",
+ "priceChange24hPercent": "-32.31",
+ "volume24h": "134799.000497408208568004",
+ "communityRecognized": false,
+ "key": "evm--56:0xecd794149128e7344154d8993fc0186d57de7777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xfe189e97832da1573e4e4ff034f4ffc3a15c7777",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xfe189e97832da1573e4e4ff034f4ffc3a15c7777-1785917292044.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xfe189e97832da1573e4e4ff034f4ffc3a15c7777-1785917292044.png"
+ ],
+ "name": "MarsCoin",
+ "symbol": "MarsCoin",
+ "marketCap": "142639703.247153683583094186",
+ "price": "0.14269503271656025007",
+ "priceChange24hPercent": "-8.52",
+ "volume24h": "2830828.614548842810490438",
+ "communityRecognized": true,
+ "key": "evm--56:0xfe189e97832da1573e4e4ff034f4ffc3a15c7777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x4a73c1554031d9d8ee96dc5979420e5647947777",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/912ee7862f0e5c0577105c8818ceb6ad8e60d72d8770b32b3c1be112758195c7",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/912ee7862f0e5c0577105c8818ceb6ad8e60d72d8770b32b3c1be112758195c7"
+ ],
+ "name": "Infinite Profit Opportunity",
+ "symbol": "IPO",
+ "marketCap": "7537.84873542637959414",
+ "price": "0.00000753784873542638",
+ "priceChange24hPercent": "74.75",
+ "volume24h": "987609.677890144721193425",
+ "communityRecognized": false,
+ "key": "evm--56:0x4a73c1554031d9d8ee96dc5979420e5647947777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x9e82e3da8f1115b73d24bb24113ab836ffdab6b6",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x9e82e3da8f1115b73d24bb24113ab836ffdab6b6-1784966502404.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x9e82e3da8f1115b73d24bb24113ab836ffdab6b6-1784966502404.png"
+ ],
+ "name": "Tradr 2X Long SNDK ETF",
+ "symbol": "SNXXB",
+ "marketCap": "4222716.9013560716",
+ "price": "18.79",
+ "priceChange24hPercent": "0.85",
+ "volume24h": "58575.955788852511195",
+ "communityRecognized": false,
+ "key": "evm--56:0x9e82e3da8f1115b73d24bb24113ab836ffdab6b6",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xeeb3d73d4dd44e6e4d957d89492f05d5ccee7777",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xeeb3d73d4dd44e6e4d957d89492f05d5ccee7777-1785830505974.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xeeb3d73d4dd44e6e4d957d89492f05d5ccee7777-1785830505974.png"
+ ],
+ "name": "SUMMER",
+ "symbol": "SUMMER",
+ "marketCap": "525230.007192902924422619",
+ "price": "0.00052523000720529679",
+ "priceChange24hPercent": "0.91",
+ "volume24h": "28068.67328785841818177",
+ "communityRecognized": false,
+ "key": "evm--56:0xeeb3d73d4dd44e6e4d957d89492f05d5ccee7777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x07dcaccade1e3c034c707039bdfe02792f88ffff",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x07dcaccade1e3c034c707039bdfe02792f88ffff-1787645319054.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x07dcaccade1e3c034c707039bdfe02792f88ffff-1787645319054.png"
+ ],
+ "name": "FOMOCAT",
+ "symbol": "FOMOCAT",
+ "marketCap": "86510.893011590301110973",
+ "price": "0.0000865108930115903",
+ "priceChange24hPercent": "29.54",
+ "volume24h": "35628.90145285008601378",
+ "communityRecognized": false,
+ "key": "evm--56:0x07dcaccade1e3c034c707039bdfe02792f88ffff",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x75b364916b65f1e8959fa0210a6922c2ee237777",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/f104dae5a17692fb46edcee8d1b5a247e1c54183ff41afb6059679168e6b5f19",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/f104dae5a17692fb46edcee8d1b5a247e1c54183ff41afb6059679168e6b5f19"
+ ],
+ "name": "TrustCat",
+ "symbol": "TrustCat",
+ "marketCap": "191644.430946520580024584",
+ "price": "0.00019164443094652058",
+ "priceChange24hPercent": "-35.12",
+ "volume24h": "60325.5332838615711426",
+ "communityRecognized": false,
+ "key": "evm--56:0x75b364916b65f1e8959fa0210a6922c2ee237777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x1ba42e5193dfa8b03d15dd1b86a3113bbbef8eeb",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x1ba42e5193dfa8b03d15dd1b86a3113bbbef8eeb-1757704281569.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x1ba42e5193dfa8b03d15dd1b86a3113bbbef8eeb-1757704281569.png"
+ ],
+ "name": "Binance-Peg Zcash Token",
+ "symbol": "ZEC",
+ "marketCap": "247270748.455145848835815886",
+ "price": "1123.95817644112360718577",
+ "priceChange24hPercent": "-1.39",
+ "volume24h": "1679732.023275839804149976",
+ "communityRecognized": true,
+ "key": "evm--56:0x1ba42e5193dfa8b03d15dd1b86a3113bbbef8eeb",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x6ced5c6d3f913b48d59fa07abbfe9060c409087c",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x6ced5c6d3f913b48d59fa07abbfe9060c409087c-1778919908443.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x6ced5c6d3f913b48d59fa07abbfe9060c409087c-1778919908443.png"
+ ],
+ "name": "AntFun",
+ "symbol": "ANTFUN",
+ "marketCap": "4629364.524287027182239373",
+ "price": "0.07753302348850365897",
+ "priceChange24hPercent": "2.67",
+ "volume24h": "33224.159188968471949087",
+ "communityRecognized": false,
+ "key": "evm--56:0x6ced5c6d3f913b48d59fa07abbfe9060c409087c",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x2ec39b165e22944d2fee389219ee64e4924cffff",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x2ec39b165e22944d2fee389219ee64e4924cffff-1785657654182.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x2ec39b165e22944d2fee389219ee64e4924cffff-1785657654182.png"
+ ],
+ "name": "NVDA RTX STOCKS",
+ "symbol": "RTX",
+ "marketCap": "46950.873042647061995621",
+ "price": "0.0000469508747823164",
+ "priceChange24hPercent": "19.93",
+ "volume24h": "2746.8598387408056082",
+ "communityRecognized": false,
+ "key": "evm--56:0x2ec39b165e22944d2fee389219ee64e4924cffff",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x82ec31d69b3c289e541b50e30681fd1acad24444",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x82ec31d69b3c289e541b50e30681fd1acad24444-1759912042684.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x82ec31d69b3c289e541b50e30681fd1acad24444-1759912042684.png"
+ ],
+ "name": "哈基米",
+ "symbol": "哈基米",
+ "marketCap": "47863529.168543933110176721",
+ "price": "0.04786369816695196914",
+ "priceChange24hPercent": "-5.77",
+ "volume24h": "1142421.932377398370588297",
+ "communityRecognized": false,
+ "key": "evm--56:0x82ec31d69b3c289e541b50e30681fd1acad24444",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x4168253d740edfa77de31dadd8532e228de83f15",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/df8152a4eb67e65d907729c55d663d70251b222ea9dd85017bf40b64b70f1a81",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/df8152a4eb67e65d907729c55d663d70251b222ea9dd85017bf40b64b70f1a81"
+ ],
+ "name": "NovaBank2",
+ "symbol": "NVB2",
+ "marketCap": "16591368.370751094109844749",
+ "price": "8.15579518104644303114",
+ "priceChange24hPercent": "0.01",
+ "volume24h": "7078.50336152533774086",
+ "communityRecognized": false,
+ "key": "evm--56:0x4168253d740edfa77de31dadd8532e228de83f15",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x3db5a97b035235b6e5a2f13bcd6b466b5fbd7777",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x3db5a97b035235b6e5a2f13bcd6b466b5fbd7777-1787299703368.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x3db5a97b035235b6e5a2f13bcd6b466b5fbd7777-1787299703368.png"
+ ],
+ "name": "共识群960569288",
+ "symbol": "京东",
+ "marketCap": "726533.859289201212698015",
+ "price": "0.00073535660070688673",
+ "priceChange24hPercent": "14.21",
+ "volume24h": "4797.831199579514453839",
+ "communityRecognized": false,
+ "key": "evm--56:0x3db5a97b035235b6e5a2f13bcd6b466b5fbd7777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xd1debf19263c4a3214dfea974449a027d00a979c",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/849174a8bc7837a93979a42f2e648f146724ece15a8b1991a64bd6f4e474a229",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/849174a8bc7837a93979a42f2e648f146724ece15a8b1991a64bd6f4e474a229"
+ ],
+ "name": "SUN",
+ "symbol": "SUN",
+ "marketCap": "26003031.244593201231776638",
+ "price": "15.26404835665579144354",
+ "priceChange24hPercent": "-0.14",
+ "volume24h": "18411.988169257853874784",
+ "communityRecognized": false,
+ "key": "evm--56:0xd1debf19263c4a3214dfea974449a027d00a979c",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x135b978ddbdcb41afce5dcc1a88640568d677777",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/8ce013490cf1b2b5b32117e62ea265d5e362237d052829c8d04016efba3d8816",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/8ce013490cf1b2b5b32117e62ea265d5e362237d052829c8d04016efba3d8816"
+ ],
+ "name": "Q币",
+ "symbol": "Q币",
+ "marketCap": "190419.636569458688393178",
+ "price": "0.00019041963656945869",
+ "priceChange24hPercent": "3",
+ "volume24h": "39602.567200936921232518",
+ "communityRecognized": false,
+ "key": "evm--56:0x135b978ddbdcb41afce5dcc1a88640568d677777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x28cd1fc7b6eebf46b59001ff49c9d14f8bb97777",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x28cd1fc7b6eebf46b59001ff49c9d14f8bb97777-1787212932933.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x28cd1fc7b6eebf46b59001ff49c9d14f8bb97777-1787212932933.png"
+ ],
+ "name": "翻身币税助力凉兮翻身",
+ "symbol": "翻身币",
+ "marketCap": "267200.871043530333679264",
+ "price": "0.0002672008713107312",
+ "priceChange24hPercent": "-9.47",
+ "volume24h": "6433.800687924471885781",
+ "communityRecognized": false,
+ "key": "evm--56:0x28cd1fc7b6eebf46b59001ff49c9d14f8bb97777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x2f8a339b5889ffac4c5a956787cda593b3c36867",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x2f8a339b5889ffac4c5a956787cda593b3c36867-1763021832239.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x2f8a339b5889ffac4c5a956787cda593b3c36867-1763021832239.png"
+ ],
+ "name": "CoinMarketCap 20 Index DTF",
+ "symbol": "CMC20",
+ "marketCap": "5708411.412834283240695896",
+ "price": "162.73117751560153026005",
+ "priceChange24hPercent": "-0.19",
+ "volume24h": "333514.9351364994765246",
+ "communityRecognized": true,
+ "key": "evm--56:0x2f8a339b5889ffac4c5a956787cda593b3c36867",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x9f6b4c65e31a0f0bc663944950a74ed77c017777",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x9f6b4c65e31a0f0bc663944950a74ed77c017777-1788250361221.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x9f6b4c65e31a0f0bc663944950a74ed77c017777-1788250361221.png"
+ ],
+ "name": "币安证券",
+ "symbol": "币安证券",
+ "marketCap": "1503746.014069436085928105",
+ "price": "0.00395447368357555212",
+ "priceChange24hPercent": "-3",
+ "volume24h": "20241.319143626723663706",
+ "communityRecognized": false,
+ "key": "evm--56:0x9f6b4c65e31a0f0bc663944950a74ed77c017777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x62d220cabb0027b2f432c020a48d2b0f4fef7777",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x62d220cabb0027b2f432c020a48d2b0f4fef7777-1786610343165.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x62d220cabb0027b2f432c020a48d2b0f4fef7777-1786610343165.png"
+ ],
+ "name": "躺平",
+ "symbol": "躺平",
+ "marketCap": "3025450.639834299935509628",
+ "price": "0.00309477356775194347",
+ "priceChange24hPercent": "0.12",
+ "volume24h": "30626.75432848308380172",
+ "communityRecognized": false,
+ "key": "evm--56:0x62d220cabb0027b2f432c020a48d2b0f4fef7777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x4af1d41cd9dd950dca43984b43aaa2a8702714ac",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x4af1d41cd9dd950dca43984b43aaa2a8702714ac-1785657669567.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x4af1d41cd9dd950dca43984b43aaa2a8702714ac-1785657669567.png"
+ ],
+ "name": "Fluence Energy",
+ "symbol": "FLNCB",
+ "marketCap": "923653.6753122072",
+ "price": "10.63",
+ "priceChange24hPercent": "1.72",
+ "volume24h": "35068.119868426335727658",
+ "communityRecognized": false,
+ "key": "evm--56:0x4af1d41cd9dd950dca43984b43aaa2a8702714ac",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x462b5f13b7c7748279358962925c5de83bb9e598",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x462b5f13b7c7748279358962925c5de83bb9e598-1784881176471.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x462b5f13b7c7748279358962925c5de83bb9e598-1784881176471.png"
+ ],
+ "name": "ProShares UltraPro QQQ",
+ "symbol": "TQQQB",
+ "marketCap": "1863291.0521264541",
+ "price": "73.63",
+ "priceChange24hPercent": "1.55",
+ "volume24h": "32098.8405019014119497",
+ "communityRecognized": false,
+ "key": "evm--56:0x462b5f13b7c7748279358962925c5de83bb9e598",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x990c71fdfa761bcf500ac8753f775ff7fb1b4444",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x990c71fdfa761bcf500ac8753f775ff7fb1b4444-1783325130995.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x990c71fdfa761bcf500ac8753f775ff7fb1b4444-1783325130995.png"
+ ],
+ "name": "714",
+ "symbol": "9",
+ "marketCap": "7487476.419045463703469659",
+ "price": "0.0074874764190454637",
+ "priceChange24hPercent": "-12.03",
+ "volume24h": "81218.732262898966475023",
+ "communityRecognized": false,
+ "key": "evm--56:0x990c71fdfa761bcf500ac8753f775ff7fb1b4444",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x36fd56b4e8e47d2c1cc14072a98898b25d5e7777",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x36fd56b4e8e47d2c1cc14072a98898b25d5e7777-1788427540359.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x36fd56b4e8e47d2c1cc14072a98898b25d5e7777-1788427540359.png"
+ ],
+ "name": "全球爆火英伟达机器鸭",
+ "symbol": "机器鸭",
+ "marketCap": "189151.071673564369240269",
+ "price": "0.00018915107167356437",
+ "priceChange24hPercent": "-16.85",
+ "volume24h": "13385.52083300879516424",
+ "communityRecognized": false,
+ "key": "evm--56:0x36fd56b4e8e47d2c1cc14072a98898b25d5e7777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xcefbf00b3732fe91e46989037e4b2564a4fc7777",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xcefbf00b3732fe91e46989037e4b2564a4fc7777-1784537933503.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xcefbf00b3732fe91e46989037e4b2564a4fc7777-1784537933503.png"
+ ],
+ "name": "NIXI",
+ "symbol": "逆袭人生",
+ "marketCap": "68765488.529334663526141979",
+ "price": "0.07439889039955074786",
+ "priceChange24hPercent": "0.28",
+ "volume24h": "7595.882210155684887782",
+ "communityRecognized": false,
+ "key": "evm--56:0xcefbf00b3732fe91e46989037e4b2564a4fc7777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x8d65744527f55d0b2338350912d5c99a81ddf0e2",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x8d65744527f55d0b2338350912d5c99a81ddf0e2-1774426026380.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x8d65744527f55d0b2338350912d5c99a81ddf0e2-1774426026380.png"
+ ],
+ "name": "Pro Token",
+ "symbol": "Pro",
+ "marketCap": "248891488.120436631652755962",
+ "price": "23.04585634239507540353",
+ "priceChange24hPercent": "-0.37",
+ "volume24h": "348282.731234367438975974",
+ "communityRecognized": false,
+ "key": "evm--56:0x8d65744527f55d0b2338350912d5c99a81ddf0e2",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x4fd43ecf633f86ebf43ccb860cf437536954ffff",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/849174a8bc7837a93979a42f2e648f146724ece15a8b1991a64bd6f4e474a229",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/849174a8bc7837a93979a42f2e648f146724ece15a8b1991a64bd6f4e474a229"
+ ],
+ "name": "STONKS",
+ "symbol": "STONKS",
+ "marketCap": "39948.498068624950471351",
+ "price": "0.00003994849806862495",
+ "priceChange24hPercent": "-83.03",
+ "volume24h": "30088.0450186799563685",
+ "communityRecognized": false,
+ "key": "evm--56:0x4fd43ecf633f86ebf43ccb860cf437536954ffff",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x4ce634563bb2f72961483357dc31b4c146a24444",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x4ce634563bb2f72961483357dc31b4c146a24444-1783670716303.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x4ce634563bb2f72961483357dc31b4c146a24444-1783670716303.png"
+ ],
+ "name": "The Final Form Cow",
+ "symbol": "HEYI",
+ "marketCap": "299798.404669118646391658",
+ "price": "0.00029979841940554357",
+ "priceChange24hPercent": "-18.14",
+ "volume24h": "8364.26817399365032539",
+ "communityRecognized": false,
+ "key": "evm--56:0x4ce634563bb2f72961483357dc31b4c146a24444",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x01856bda968ddca3ae5f866a4e07405480967777",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x01856bda968ddca3ae5f866a4e07405480967777-1788425626948.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x01856bda968ddca3ae5f866a4e07405480967777-1788425626948.png"
+ ],
+ "name": "孙小圣",
+ "symbol": "孙小圣",
+ "marketCap": "120001.279260265015277495",
+ "price": "0.00013125124140006538",
+ "priceChange24hPercent": "-7.13",
+ "volume24h": "11356.260004930825272329",
+ "communityRecognized": false,
+ "key": "evm--56:0x01856bda968ddca3ae5f866a4e07405480967777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x848e2b1cb00dc439a15b03b8c3194e7d08917777",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x848e2b1cb00dc439a15b03b8c3194e7d08917777-1782201790772.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x848e2b1cb00dc439a15b03b8c3194e7d08917777-1782201790772.png"
+ ],
+ "name": "Break And Reclaim",
+ "symbol": "BAN",
+ "marketCap": "6708355.681705916699437829",
+ "price": "0.00791254802341889111",
+ "priceChange24hPercent": "-2.87",
+ "volume24h": "14086.863744148009312088",
+ "communityRecognized": false,
+ "key": "evm--56:0x848e2b1cb00dc439a15b03b8c3194e7d08917777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x4062083510f67d28844df9371244e6f191b97777",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/f1481716f419af3082e88032cb3ed51765f4b9cfd942e4378fe98cf85a2e9c74",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/f1481716f419af3082e88032cb3ed51765f4b9cfd942e4378fe98cf85a2e9c74"
+ ],
+ "name": "Stupid Kid",
+ "symbol": "傻孩子",
+ "marketCap": "197608.157845062204483014",
+ "price": "0.00020061741913204285",
+ "priceChange24hPercent": "-18.21",
+ "volume24h": "62255.77302139614047969",
+ "communityRecognized": false,
+ "key": "evm--56:0x4062083510f67d28844df9371244e6f191b97777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ }
+ ],
+ "trending|evm--56|24h|all": [
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x888656062164473c93c06ca89ae4d868d606ffff",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/4a563ac1c0cd1b7ed43429ee1ad5750a8ca22c0eaaa08d0427a8a86e8a2348f0",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/4a563ac1c0cd1b7ed43429ee1ad5750a8ca22c0eaaa08d0427a8a86e8a2348f0"
+ ],
+ "name": "Fat Panda",
+ "symbol": "FATPANDA",
+ "marketCap": "2027091.807825832449362322",
+ "price": "0.00202709180782583245",
+ "priceChange24hPercent": "-57.98",
+ "volume24h": "2810906.91851794531839974",
+ "communityRecognized": false,
+ "key": "evm--56:0x888656062164473c93c06ca89ae4d868d606ffff",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xc9d825e83aada475bd4d38c8ca984ed746277777",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xc9d825e83aada475bd4d38c8ca984ed746277777-1788595746569.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xc9d825e83aada475bd4d38c8ca984ed746277777-1788595746569.png"
+ ],
+ "name": "Stonks",
+ "symbol": "Stonks",
+ "marketCap": "3615724.513021514179669825",
+ "price": "0.00354215213569384581",
+ "priceChange24hPercent": "-72.58",
+ "volume24h": "9838434.36959502424878773",
+ "communityRecognized": true,
+ "key": "evm--56:0xc9d825e83aada475bd4d38c8ca984ed746277777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xd270d4e1ec6e6e0d28c0ecb8be966ec75997ffff",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/f3bf6d8a8bc7f4be0ec6949fa0ebf538953fcd6443cd6681e394f790b6546a1e",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/f3bf6d8a8bc7f4be0ec6949fa0ebf538953fcd6443cd6681e394f790b6546a1e"
+ ],
+ "name": "4Stock",
+ "symbol": "4Stock",
+ "marketCap": "8523084.639287610962788439",
+ "price": "0.00852308463928761096",
+ "priceChange24hPercent": "12890.76",
+ "volume24h": "6087150.637853067013221738",
+ "communityRecognized": false,
+ "key": "evm--56:0xd270d4e1ec6e6e0d28c0ecb8be966ec75997ffff",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x8fdb0647e2bf11c8d88ef7825905f5f428864444",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/f3bf6d8a8bc7f4be0ec6949fa0ebf538953fcd6443cd6681e394f790b6546a1e",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/f3bf6d8a8bc7f4be0ec6949fa0ebf538953fcd6443cd6681e394f790b6546a1e"
+ ],
+ "name": "4cat",
+ "symbol": "4cat",
+ "marketCap": "132186.874931726983465779",
+ "price": "0.00013218687493172698",
+ "priceChange24hPercent": "46.13",
+ "volume24h": "181945.5328159783217701",
+ "communityRecognized": false,
+ "key": "evm--56:0x8fdb0647e2bf11c8d88ef7825905f5f428864444",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x17616c8f6cacf14fcff63f3188a30691802effff",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/cfcf37bcd1b22ee8594b38b7c1bbb0d2aafe3f8ad70ec9d9cbd108990326678d",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/cfcf37bcd1b22ee8594b38b7c1bbb0d2aafe3f8ad70ec9d9cbd108990326678d"
+ ],
+ "name": "Built and Code",
+ "symbol": "BNC",
+ "marketCap": "964318.21634500481353988",
+ "price": "0.00096431821634500481",
+ "priceChange24hPercent": "102.52",
+ "volume24h": "379219.914240576328794233",
+ "communityRecognized": false,
+ "key": "evm--56:0x17616c8f6cacf14fcff63f3188a30691802effff",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xe9337dde3dd9e97f1f45a56412767ce5098e7777",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xe9337dde3dd9e97f1f45a56412767ce5098e7777-1785657919485.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xe9337dde3dd9e97f1f45a56412767ce5098e7777-1785657919485.png"
+ ],
+ "name": "何必东奔西走 币安全部都有",
+ "symbol": "币有",
+ "marketCap": "3164666.390133842302734257",
+ "price": "0.00316466639033410038",
+ "priceChange24hPercent": "-24.29",
+ "volume24h": "2582087.982371958344278338",
+ "communityRecognized": false,
+ "key": "evm--56:0xe9337dde3dd9e97f1f45a56412767ce5098e7777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xa6b53819f5bf521945fceb1f9bbb3a7a7b4effff",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/e5fb48d54702b49bd31d0551378667606ad6bb5e4e33b94fc32179b14469f2d0",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/e5fb48d54702b49bd31d0551378667606ad6bb5e4e33b94fc32179b14469f2d0"
+ ],
+ "name": "CEA Industries",
+ "symbol": "Vape",
+ "marketCap": "177869.186610075636148804",
+ "price": "0.00017786918661007564",
+ "priceChange24hPercent": "-25.15",
+ "volume24h": "305085.309801805080994359",
+ "communityRecognized": false,
+ "key": "evm--56:0xa6b53819f5bf521945fceb1f9bbb3a7a7b4effff",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x7bc70ae0f2a67d2fdc0180a697a611f21c857777",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x7bc70ae0f2a67d2fdc0180a697a611f21c857777-1788768091330.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x7bc70ae0f2a67d2fdc0180a697a611f21c857777-1788768091330.png"
+ ],
+ "name": "BEN",
+ "symbol": "BEN",
+ "marketCap": "4691268.880796520376779672",
+ "price": "0.00469126888091739643",
+ "priceChange24hPercent": "-52.7",
+ "volume24h": "13558199.846665762013906556",
+ "communityRecognized": false,
+ "key": "evm--56:0x7bc70ae0f2a67d2fdc0180a697a611f21c857777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xb3a1e1f7ae6c90c707ec3c75e99c359482fea5b9",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/488d50fb3eb6f79c9440d809ef90dc3a197facbca4792e913cf6d2ab384a3fbe",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/488d50fb3eb6f79c9440d809ef90dc3a197facbca4792e913cf6d2ab384a3fbe"
+ ],
+ "name": "Sock",
+ "symbol": "SOCK",
+ "marketCap": "5055307.749537088461358135",
+ "price": "0.00505639238387653219",
+ "priceChange24hPercent": "4555.9",
+ "volume24h": "25471760.173616050046238869",
+ "communityRecognized": false,
+ "key": "evm--56:0xb3a1e1f7ae6c90c707ec3c75e99c359482fea5b9",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xfa6d9b504848606eb9aec04ccc161d169b3f2159",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xfa6d9b504848606eb9aec04ccc161d169b3f2159-1788768839130.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xfa6d9b504848606eb9aec04ccc161d169b3f2159-1788768839130.png"
+ ],
+ "name": "BREW",
+ "symbol": "BREW",
+ "marketCap": "6538711.799489674177314067",
+ "price": "0.00653871179948967418",
+ "priceChange24hPercent": "-73.57",
+ "volume24h": "19408681.866288273848135149",
+ "communityRecognized": true,
+ "key": "evm--56:0xfa6d9b504848606eb9aec04ccc161d169b3f2159",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x198dba421a7db566a90da5de7901abe3443b4444",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x198dba421a7db566a90da5de7901abe3443b4444-1783844840152.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x198dba421a7db566a90da5de7901abe3443b4444-1783844840152.png"
+ ],
+ "name": "富贵",
+ "symbol": "富贵",
+ "marketCap": "2004608.783658215940488177",
+ "price": "0.00200460880490616635",
+ "priceChange24hPercent": "-37.34",
+ "volume24h": "1376324.852587370177797353",
+ "communityRecognized": false,
+ "key": "evm--56:0x198dba421a7db566a90da5de7901abe3443b4444",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x2ab8a4dd2191989ac2898006df350b236d2b7777",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x2ab8a4dd2191989ac2898006df350b236d2b7777-1787990461314.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x2ab8a4dd2191989ac2898006df350b236d2b7777-1787990461314.png"
+ ],
+ "name": "施工猫",
+ "symbol": "Sue",
+ "marketCap": "3525503.639455193998936336",
+ "price": "0.00352550383167665148",
+ "priceChange24hPercent": "-42.43",
+ "volume24h": "3506208.609571117888923397",
+ "communityRecognized": true,
+ "key": "evm--56:0x2ab8a4dd2191989ac2898006df350b236d2b7777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xe9bc5c6a86caa44fd7b469bf3cc7c563e4f77777",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xe9bc5c6a86caa44fd7b469bf3cc7c563e4f77777-1785831565492.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xe9bc5c6a86caa44fd7b469bf3cc7c563e4f77777-1785831565492.png"
+ ],
+ "name": "Giggle Mascot",
+ "symbol": "Max",
+ "marketCap": "12379501.526308740492021141",
+ "price": "0.012379502707187888",
+ "priceChange24hPercent": "-45.87",
+ "volume24h": "2397794.376366052354403441",
+ "communityRecognized": false,
+ "key": "evm--56:0xe9bc5c6a86caa44fd7b469bf3cc7c563e4f77777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x9e92bbf2017bbfb7a06c975ca30e268cd2e57777",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/26946e97f0605097c389e90209fbbad48af1927f15b93093e2b999a0ccb97c16",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/26946e97f0605097c389e90209fbbad48af1927f15b93093e2b999a0ccb97c16"
+ ],
+ "name": "Google Dog",
+ "symbol": "股狗",
+ "marketCap": "332064.446510156775471152",
+ "price": "0.00033206444651015678",
+ "priceChange24hPercent": "-54.25",
+ "volume24h": "745760.380343887899647415",
+ "communityRecognized": false,
+ "key": "evm--56:0x9e92bbf2017bbfb7a06c975ca30e268cd2e57777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xbeea1d618e533a387d941f58a7d4c9b7bd377777",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xbeea1d618e533a387d941f58a7d4c9b7bd377777-1786867206539.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xbeea1d618e533a387d941f58a7d4c9b7bd377777-1786867206539.png"
+ ],
+ "name": "牛来",
+ "symbol": "牛来",
+ "marketCap": "81315633.730996053986212561",
+ "price": "0.08131564191954314277",
+ "priceChange24hPercent": "-3.33",
+ "volume24h": "12961624.37371934323806754",
+ "communityRecognized": false,
+ "key": "evm--56:0xbeea1d618e533a387d941f58a7d4c9b7bd377777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xf40592daacb3e5abf358789f5688c0b4f64d7777",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xf40592daacb3e5abf358789f5688c0b4f64d7777-1788336091391.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xf40592daacb3e5abf358789f5688c0b4f64d7777-1788336091391.png"
+ ],
+ "name": "FLORK",
+ "symbol": "FLORK",
+ "marketCap": "13974844.309976889329689928",
+ "price": "0.01397484431010265303",
+ "priceChange24hPercent": "-29.89",
+ "volume24h": "4798973.417592616220767587",
+ "communityRecognized": true,
+ "key": "evm--56:0xf40592daacb3e5abf358789f5688c0b4f64d7777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x87ae267002cd1ea0ec86bf3601d4a8ad76a47777",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x87ae267002cd1ea0ec86bf3601d4a8ad76a47777-1787558536892.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x87ae267002cd1ea0ec86bf3601d4a8ad76a47777-1787558536892.png"
+ ],
+ "name": "蝴蝶人生",
+ "symbol": "蝴蝶人生",
+ "marketCap": "2900864.953755263095854545",
+ "price": "0.0029008649537552631",
+ "priceChange24hPercent": "-19.93",
+ "volume24h": "291800.574045529502159731",
+ "communityRecognized": false,
+ "key": "evm--56:0x87ae267002cd1ea0ec86bf3601d4a8ad76a47777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x9984668e1999e75d7f3cdf82774356138ae9ffff",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/849174a8bc7837a93979a42f2e648f146724ece15a8b1991a64bd6f4e474a229",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/849174a8bc7837a93979a42f2e648f146724ece15a8b1991a64bd6f4e474a229"
+ ],
+ "name": "STONKS",
+ "symbol": "STONKS",
+ "marketCap": "29980.723469108506450951",
+ "price": "0.00002998072346910851",
+ "priceChange24hPercent": "571.42",
+ "volume24h": "5129192.802156426163715683",
+ "communityRecognized": false,
+ "key": "evm--56:0x9984668e1999e75d7f3cdf82774356138ae9ffff",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x4f4a59ac165c6f05ed771df3530741494b1c7777",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/aaedfbda5a6301f10b584f1887dbe9604f4015526974adfc9bd19e9bff06bf7c",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/aaedfbda5a6301f10b584f1887dbe9604f4015526974adfc9bd19e9bff06bf7c"
+ ],
+ "name": "Offchain Dog",
+ "symbol": "zDOG",
+ "marketCap": "772076.5981881585062435",
+ "price": "0.00077207659818815851",
+ "priceChange24hPercent": "20949.03",
+ "volume24h": "11839792.607089697604343171",
+ "communityRecognized": false,
+ "key": "evm--56:0x4f4a59ac165c6f05ed771df3530741494b1c7777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x5b73a93b4e5e4f1fd27d8b3f8c97d69908b5e284",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x5b73a93b4e5e4f1fd27d8b3f8c97d69908b5e284-1757704453242.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x5b73a93b4e5e4f1fd27d8b3f8c97d69908b5e284-1757704453242.png"
+ ],
+ "name": "FORM Token",
+ "symbol": "FORM",
+ "marketCap": "81337721.233552374393924307",
+ "price": "0.27423761434533356272",
+ "priceChange24hPercent": "2.88",
+ "volume24h": "4530558.530683566030152753",
+ "communityRecognized": true,
+ "key": "evm--56:0x5b73a93b4e5e4f1fd27d8b3f8c97d69908b5e284",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x7a848a5a8169aa6a2f603d056a749f924f504444",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x7a848a5a8169aa6a2f603d056a749f924f504444-1783238620991.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x7a848a5a8169aa6a2f603d056a749f924f504444-1783238620991.png"
+ ],
+ "name": "The Final Form Bull",
+ "symbol": "CZ",
+ "marketCap": "1108669.360880238166665035",
+ "price": "0.00369589294180277339",
+ "priceChange24hPercent": "-40.32",
+ "volume24h": "2221429.669052125676550876",
+ "communityRecognized": false,
+ "key": "evm--56:0x7a848a5a8169aa6a2f603d056a749f924f504444",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x265b3982ea730748100947f52561a4eab54affff",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x265b3982ea730748100947f52561a4eab54affff-1788163283951.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x265b3982ea730748100947f52561a4eab54affff-1788163283951.png"
+ ],
+ "name": "ast.fun",
+ "symbol": "AST",
+ "marketCap": "869555.825261133164744628",
+ "price": "0.0008853366779395578",
+ "priceChange24hPercent": "-77.65",
+ "volume24h": "4272212.792141664542592595",
+ "communityRecognized": false,
+ "key": "evm--56:0x265b3982ea730748100947f52561a4eab54affff",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x0c2f3750418273d3749cc62b5d572ac9a5e14db9",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/4b74f508750b26b0a337922a69381c848a3679c858e468b16c974b285c0844c7",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/4b74f508750b26b0a337922a69381c848a3679c858e468b16c974b285c0844c7"
+ ],
+ "name": "OmniPool",
+ "symbol": "Omni",
+ "marketCap": "306504.741470791609185045",
+ "price": "0.00031736167828754715",
+ "priceChange24hPercent": "10006.77",
+ "volume24h": "2337920.946886627281579771",
+ "communityRecognized": false,
+ "key": "evm--56:0x0c2f3750418273d3749cc62b5d572ac9a5e14db9",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x8ffdcd653a218b3a00b8d41ea95ee1e11426ffff",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/be4cbb740113649d957ec49879ac6177a0694dfe9845a00cac46be3abd340d29",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/be4cbb740113649d957ec49879ac6177a0694dfe9845a00cac46be3abd340d29"
+ ],
+ "name": "邮差猫",
+ "symbol": "邮差猫",
+ "marketCap": "704469.984356941444570534",
+ "price": "0.00070446998435694144",
+ "priceChange24hPercent": "6397.48",
+ "volume24h": "801148.0141238265816758",
+ "communityRecognized": false,
+ "key": "evm--56:0x8ffdcd653a218b3a00b8d41ea95ee1e11426ffff",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xaf90c35a62c13b5a8f681f4f43124bd8990f7777",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/e252a627e5c441b6886e4123e01fc3c406d7206e193e3d205cd033f9faf6cde0",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/e252a627e5c441b6886e4123e01fc3c406d7206e193e3d205cd033f9faf6cde0"
+ ],
+ "name": "蒙面小野",
+ "symbol": "Hirono",
+ "marketCap": "37356.07057534284819479",
+ "price": "0.00003735607057534285",
+ "priceChange24hPercent": "715.17",
+ "volume24h": "2673208.908263472532146428",
+ "communityRecognized": false,
+ "key": "evm--56:0xaf90c35a62c13b5a8f681f4f43124bd8990f7777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xe831a8badd383513bf971203c6a1387c099e7777",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/53573060f2e43e01057a34577f6259752f2c6a4fe47a449b7b5f1ed7b575b179",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/53573060f2e43e01057a34577f6259752f2c6a4fe47a449b7b5f1ed7b575b179"
+ ],
+ "name": "哈基米南北绿豆",
+ "symbol": "南北绿豆",
+ "marketCap": "11450.403339315274078383",
+ "price": "0.00001145040333931527",
+ "priceChange24hPercent": "-70.24",
+ "volume24h": "1358729.359603343244573281",
+ "communityRecognized": false,
+ "key": "evm--56:0xe831a8badd383513bf971203c6a1387c099e7777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x431a3bee82e2ca41e49895cbece5bb0f76a89b7a",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x431a3bee82e2ca41e49895cbece5bb0f76a89b7a-1785484886316.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x431a3bee82e2ca41e49895cbece5bb0f76a89b7a-1785484886316.png"
+ ],
+ "name": "Apple",
+ "symbol": "AAPLB",
+ "marketCap": "6580346.4929515002145",
+ "price": "319.56994327900136704227",
+ "priceChange24hPercent": "-0.26",
+ "volume24h": "2066018.986982597730580192",
+ "communityRecognized": false,
+ "key": "evm--56:0x431a3bee82e2ca41e49895cbece5bb0f76a89b7a",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xc69b16cf18cea1e5d0bb6a1a9db802097790ddd2",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/6d7ad2a0916c205fa53549b8f6d63025a17b81bcb0bd44f2397db2e5ab0e9862",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/6d7ad2a0916c205fa53549b8f6d63025a17b81bcb0bd44f2397db2e5ab0e9862"
+ ],
+ "name": "CNPY",
+ "symbol": "CNPY",
+ "marketCap": "5643603.247625643996890991",
+ "price": "0.19813595578231632859",
+ "priceChange24hPercent": "20.37",
+ "volume24h": "17322883.437990471391570956",
+ "communityRecognized": true,
+ "key": "evm--56:0xc69b16cf18cea1e5d0bb6a1a9db802097790ddd2",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x1a4b499833a79a09ad7cf1d42d7dacf71e92eb00",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x1a4b499833a79a09ad7cf1d42d7dacf71e92eb00-1785572538791.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x1a4b499833a79a09ad7cf1d42d7dacf71e92eb00-1785572538791.png"
+ ],
+ "name": "Amazon",
+ "symbol": "AMZNB",
+ "marketCap": "1569926.13781039",
+ "price": "258.47",
+ "priceChange24hPercent": "0.38",
+ "volume24h": "946928.810005052703916234",
+ "communityRecognized": false,
+ "key": "evm--56:0x1a4b499833a79a09ad7cf1d42d7dacf71e92eb00",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xb7896f3c8f18b2308e4dde6b3e95034702477777",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/57fbbad7d93831c616d038990645dd01f6698ef1b2ee0c80dbd0153330add2c6",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/57fbbad7d93831c616d038990645dd01f6698ef1b2ee0c80dbd0153330add2c6"
+ ],
+ "name": "刀哥",
+ "symbol": "刀哥",
+ "marketCap": "20691.077192441135989826",
+ "price": "0.00002069107719244114",
+ "priceChange24hPercent": "327.38",
+ "volume24h": "2303045.21821957774811447",
+ "communityRecognized": false,
+ "key": "evm--56:0xb7896f3c8f18b2308e4dde6b3e95034702477777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xe38dd986d6374b9beb10a2056e312ac0888e7777",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/623c1526cfbe298c68c85906ffa28048852817285b1762234230154e5dd2b512",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/623c1526cfbe298c68c85906ffa28048852817285b1762234230154e5dd2b512"
+ ],
+ "name": "605577",
+ "symbol": "龙版传媒",
+ "marketCap": "54834.964138629928725388",
+ "price": "0.00005483496413862993",
+ "priceChange24hPercent": "1173.61",
+ "volume24h": "2840186.355821935358272977",
+ "communityRecognized": false,
+ "key": "evm--56:0xe38dd986d6374b9beb10a2056e312ac0888e7777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xc255d8b48efbce2cb821a28517678ae685587777",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/01606da360d48a8c52c438a2365942de99c20b9d2f93d6b887354fd8ff4dda39",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/01606da360d48a8c52c438a2365942de99c20b9d2f93d6b887354fd8ff4dda39"
+ ],
+ "name": "MUSD",
+ "symbol": "musd",
+ "marketCap": "21182.821600909096573773",
+ "price": "0.0000211828216009091",
+ "priceChange24hPercent": "384.95",
+ "volume24h": "1477524.826567538381344943",
+ "communityRecognized": false,
+ "key": "evm--56:0xc255d8b48efbce2cb821a28517678ae685587777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xfa46fa75a3f3d08ca33fe8b4b5194046b7217777",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xfa46fa75a3f3d08ca33fe8b4b5194046b7217777-1788428663400.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xfa46fa75a3f3d08ca33fe8b4b5194046b7217777-1788428663400.png"
+ ],
+ "name": "Tuzki",
+ "symbol": "TUZKI",
+ "marketCap": "299727.40800189845967163",
+ "price": "0.00029972740800189846",
+ "priceChange24hPercent": "6.12",
+ "volume24h": "524719.454942568131632253",
+ "communityRecognized": false,
+ "key": "evm--56:0xfa46fa75a3f3d08ca33fe8b4b5194046b7217777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x30454106aa5dbb80d7d08cd81d513a7698f27777",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/6eca6d4ed399c219a37c87c8d84a9da0e09565c2515c07ccf412124cca56e7e1",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/6eca6d4ed399c219a37c87c8d84a9da0e09565c2515c07ccf412124cca56e7e1"
+ ],
+ "name": "蛋小黑",
+ "symbol": "蛋小黑",
+ "marketCap": "814985.803182874144583995",
+ "price": "0.00081498580318287414",
+ "priceChange24hPercent": "399.7",
+ "volume24h": "815084.047091942247139594",
+ "communityRecognized": false,
+ "key": "evm--56:0x30454106aa5dbb80d7d08cd81d513a7698f27777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xd01241b65c0acb6d4571c2a7930f824900918888",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/9d2193813095a0506282cd8900c1d0d0a17e75076b88888e4458f7e5a58d066c",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/9d2193813095a0506282cd8900c1d0d0a17e75076b88888e4458f7e5a58d066c"
+ ],
+ "name": "WeChat Doge",
+ "symbol": "旺柴",
+ "marketCap": "68009.279476607048319519",
+ "price": "0.00006800927947660705",
+ "priceChange24hPercent": "1397.92",
+ "volume24h": "2759786.104411454200261371",
+ "communityRecognized": false,
+ "key": "evm--56:0xd01241b65c0acb6d4571c2a7930f824900918888",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xf2ec508422174ee564de98187db9359d318afb6b",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xf2ec508422174ee564de98187db9359d318afb6b-1787991519391.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xf2ec508422174ee564de98187db9359d318afb6b-1787991519391.png"
+ ],
+ "name": "Trump Media & Technology Group Corp",
+ "symbol": "DJTB",
+ "marketCap": "1991313.744108970867364111",
+ "price": "9.03",
+ "priceChange24hPercent": "0.44",
+ "volume24h": "656168.45572001262319329",
+ "communityRecognized": false,
+ "key": "evm--56:0xf2ec508422174ee564de98187db9359d318afb6b",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x277add739c6e0477616948357af9e79fe1ec9b80",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x277add739c6e0477616948357af9e79fe1ec9b80-1785225726728.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x277add739c6e0477616948357af9e79fe1ec9b80-1785225726728.png"
+ ],
+ "name": "AEON",
+ "symbol": "AEON",
+ "marketCap": "12687587.149476832448124543",
+ "price": "0.05431330115358233069",
+ "priceChange24hPercent": "6.32",
+ "volume24h": "2391060.686055467190795709",
+ "communityRecognized": true,
+ "key": "evm--56:0x277add739c6e0477616948357af9e79fe1ec9b80",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x11116f6fc6145fe83e1e11f363210f90e2761111",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x11116f6fc6145fe83e1e11f363210f90e2761111-1788424285335.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x11116f6fc6145fe83e1e11f363210f90e2761111-1788424285335.png"
+ ],
+ "name": "TaiYi Token",
+ "symbol": "TAIYI",
+ "marketCap": "5967574.525231360995495717",
+ "price": "0.59675745252313609955",
+ "priceChange24hPercent": "-14.14",
+ "volume24h": "1075585.62745645960809724",
+ "communityRecognized": false,
+ "key": "evm--56:0x11116f6fc6145fe83e1e11f363210f90e2761111",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x3f53de71c126bdabae20f9cd64848d317f6c3238",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x3f53de71c126bdabae20f9cd64848d317f6c3238-1784361925966.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x3f53de71c126bdabae20f9cd64848d317f6c3238-1784361925966.png"
+ ],
+ "name": "Alphabet",
+ "symbol": "GOOGLB",
+ "marketCap": "26814290.0074111255944",
+ "price": "338.46",
+ "priceChange24hPercent": "-0.44",
+ "volume24h": "2831812.151478983154398119",
+ "communityRecognized": false,
+ "key": "evm--56:0x3f53de71c126bdabae20f9cd64848d317f6c3238",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x4ef9d3062c7f6eba4aae4990c5036598c6eff4ec",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x4ef9d3062c7f6eba4aae4990c5036598c6eff4ec-1784361786390.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x4ef9d3062c7f6eba4aae4990c5036598c6eff4ec-1784361786390.png"
+ ],
+ "name": "Alibaba",
+ "symbol": "BABAB",
+ "marketCap": "3748171.4208860636",
+ "price": "111.64",
+ "priceChange24hPercent": "-1.1",
+ "volume24h": "977907.765149549454840761",
+ "communityRecognized": false,
+ "key": "evm--56:0x4ef9d3062c7f6eba4aae4990c5036598c6eff4ec",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x3efbfff95576e1d23cf6ead0acd2e73f4d6a7777",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x3efbfff95576e1d23cf6ead0acd2e73f4d6a7777-1787645007812.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x3efbfff95576e1d23cf6ead0acd2e73f4d6a7777-1787645007812.png"
+ ],
+ "name": "Binance Cat",
+ "symbol": "BNBCAT",
+ "marketCap": "1225383.863015078069584666",
+ "price": "0.00122538386301507807",
+ "priceChange24hPercent": "-11.48",
+ "volume24h": "430557.665566772119790897",
+ "communityRecognized": true,
+ "key": "evm--56:0x3efbfff95576e1d23cf6ead0acd2e73f4d6a7777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xe0ab66985c8d18fba4cbc080024341750e997777",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xe0ab66985c8d18fba4cbc080024341750e997777-1787990635380.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xe0ab66985c8d18fba4cbc080024341750e997777-1787990635380.png"
+ ],
+ "name": "TITAN",
+ "symbol": "TITAN",
+ "marketCap": "1097253.921737584663753254",
+ "price": "0.01507987676743016512",
+ "priceChange24hPercent": "16.27",
+ "volume24h": "56251.274965079109870387",
+ "communityRecognized": false,
+ "key": "evm--56:0xe0ab66985c8d18fba4cbc080024341750e997777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xb75b67cabd07f307ebf4cc8ef271ce4cca457777",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/d4a1db31406358fd501bb80bcfdd9cad807559b2edc36d841eebc5dc6deebd7a",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/d4a1db31406358fd501bb80bcfdd9cad807559b2edc36d841eebc5dc6deebd7a"
+ ],
+ "name": "人生太难了qq:1104889362",
+ "symbol": "人生太难了",
+ "marketCap": "198968.825327085304047973",
+ "price": "0.00020042560805769368",
+ "priceChange24hPercent": "125.18",
+ "volume24h": "42834.290937726059384505",
+ "communityRecognized": false,
+ "key": "evm--56:0xb75b67cabd07f307ebf4cc8ef271ce4cca457777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xc839b8f4f6ded0cae5531a603b78ede6ca677777",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xc839b8f4f6ded0cae5531a603b78ede6ca677777-1787645476535.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xc839b8f4f6ded0cae5531a603b78ede6ca677777-1787645476535.png"
+ ],
+ "name": "羊必火",
+ "symbol": "羊必火",
+ "marketCap": "12585713.642719191855686756",
+ "price": "0.06292856837466439058",
+ "priceChange24hPercent": "51.13",
+ "volume24h": "406454.393331159320302056",
+ "communityRecognized": false,
+ "key": "evm--56:0xc839b8f4f6ded0cae5531a603b78ede6ca677777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x0b6d8934fc8838b1027b510364a2087317bd4444",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x0b6d8934fc8838b1027b510364a2087317bd4444-1783584021383.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x0b6d8934fc8838b1027b510364a2087317bd4444-1783584021383.png"
+ ],
+ "name": "Binance bibi",
+ "symbol": "bibi",
+ "marketCap": "1076142.615594207045340471",
+ "price": "0.00107614263565242028",
+ "priceChange24hPercent": "-12.8",
+ "volume24h": "44324.59591002863310639",
+ "communityRecognized": false,
+ "key": "evm--56:0x0b6d8934fc8838b1027b510364a2087317bd4444",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x9b8e987e6fec8cf1380c4dca7071e2c7853aeea1",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x9b8e987e6fec8cf1380c4dca7071e2c7853aeea1-1773890745834.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x9b8e987e6fec8cf1380c4dca7071e2c7853aeea1-1773890745834.png"
+ ],
+ "name": "iShares China Large-Cap ETF (Ondo Tokenized)",
+ "symbol": "FXIon",
+ "marketCap": "383060.830532199629954621",
+ "price": "35.347713127268825539",
+ "priceChange24hPercent": "1.05",
+ "volume24h": "4466164.806695524760411003",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x9b8e987e6fec8cf1380c4dca7071e2c7853aeea1",
+ "kind": "stock",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xede00776439f9c49c592e43eee34777a51847777",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xede00776439f9c49c592e43eee34777a51847777-1786609978365.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xede00776439f9c49c592e43eee34777a51847777-1786609978365.png"
+ ],
+ "name": "utility token",
+ "symbol": "utility",
+ "marketCap": "610747.773433987135930456",
+ "price": "0.00061074779679151257",
+ "priceChange24hPercent": "-33.54",
+ "volume24h": "379085.955844052529161725",
+ "communityRecognized": false,
+ "key": "evm--56:0xede00776439f9c49c592e43eee34777a51847777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x13ef9ce9954f5d3425e62fe8cf77af0f1ff68888",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/771b491e6781e92c55c73c8da50e420b77427871015f4fb41c455a5d52890276",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/771b491e6781e92c55c73c8da50e420b77427871015f4fb41c455a5d52890276"
+ ],
+ "name": "Web3",
+ "symbol": "Web3",
+ "marketCap": "14603.998832927428620949",
+ "price": "0.00001460399883292743",
+ "priceChange24hPercent": "308.63",
+ "volume24h": "11436.349624921880977747",
+ "communityRecognized": false,
+ "key": "evm--56:0x13ef9ce9954f5d3425e62fe8cf77af0f1ff68888",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x9f6b4c65e31a0f0bc663944950a74ed77c017777",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x9f6b4c65e31a0f0bc663944950a74ed77c017777-1788250361221.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x9f6b4c65e31a0f0bc663944950a74ed77c017777-1788250361221.png"
+ ],
+ "name": "币安证券",
+ "symbol": "币安证券",
+ "marketCap": "1503746.014069436085928105",
+ "price": "0.00395447368357555212",
+ "priceChange24hPercent": "-5.84",
+ "volume24h": "134077.758797006906826202",
+ "communityRecognized": false,
+ "key": "evm--56:0x9f6b4c65e31a0f0bc663944950a74ed77c017777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x537c87f3c4fa801ffcebcc222fd687b9a5e97777",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x537c87f3c4fa801ffcebcc222fd687b9a5e97777-1784534428165.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x537c87f3c4fa801ffcebcc222fd687b9a5e97777-1784534428165.png"
+ ],
+ "name": "吉祥狗",
+ "symbol": "吉祥狗",
+ "marketCap": "817486.293490385927161851",
+ "price": "0.00386357732592751841",
+ "priceChange24hPercent": "13.01",
+ "volume24h": "102716.6253459709605813",
+ "communityRecognized": false,
+ "key": "evm--56:0x537c87f3c4fa801ffcebcc222fd687b9a5e97777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x330990dae53bca4c5811c5362b44c33a47db7777",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x330990dae53bca4c5811c5362b44c33a47db7777-1785657934012.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x330990dae53bca4c5811c5362b44c33a47db7777-1785657934012.png"
+ ],
+ "name": "Asteroid Shiba",
+ "symbol": "ASTEROID",
+ "marketCap": "708649.53955202466825333",
+ "price": "0.0007086495395791489",
+ "priceChange24hPercent": "-55.69",
+ "volume24h": "239876.429474047723057402",
+ "communityRecognized": false,
+ "key": "evm--56:0x330990dae53bca4c5811c5362b44c33a47db7777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x9e82e3da8f1115b73d24bb24113ab836ffdab6b6",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x9e82e3da8f1115b73d24bb24113ab836ffdab6b6-1784966502404.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x9e82e3da8f1115b73d24bb24113ab836ffdab6b6-1784966502404.png"
+ ],
+ "name": "Tradr 2X Long SNDK ETF",
+ "symbol": "SNXXB",
+ "marketCap": "4222716.9013560716",
+ "price": "18.79",
+ "priceChange24hPercent": "3.01",
+ "volume24h": "174477.67189934173287257",
+ "communityRecognized": false,
+ "key": "evm--56:0x9e82e3da8f1115b73d24bb24113ab836ffdab6b6",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x2ab198e0078a8a233b8e7685356cb76482b9e681",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/8356346777831140edc501f7c039ec2abceb49e4ee845cb86f3053a51d691863",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/8356346777831140edc501f7c039ec2abceb49e4ee845cb86f3053a51d691863"
+ ],
+ "name": "Artificial Intelligence Two",
+ "symbol": "AIT",
+ "marketCap": "4287074196.25429954374756",
+ "price": "0.42870741962542995437",
+ "priceChange24hPercent": "-5.52",
+ "volume24h": "433022.667403107645063344",
+ "communityRecognized": false,
+ "key": "evm--56:0x2ab198e0078a8a233b8e7685356cb76482b9e681",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x9b2bf8e150d0f316e3835da0bfdab5b96990cfea",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/2e04e2de318c1c98df832618a58d1827f55e7b829f3231712408ac643551d331",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/2e04e2de318c1c98df832618a58d1827f55e7b829f3231712408ac643551d331"
+ ],
+ "name": "BREWCAT",
+ "symbol": "BREWCAT",
+ "marketCap": "132491.943842949900689963",
+ "price": "0.00013810147633606771",
+ "priceChange24hPercent": "-82.22",
+ "volume24h": "643052.425056373597325026",
+ "communityRecognized": false,
+ "key": "evm--56:0x9b2bf8e150d0f316e3835da0bfdab5b96990cfea",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x5b1910eaad6450e50f816082aa078c41f10c292f",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x5b1910eaad6450e50f816082aa078c41f10c292f-1781337775850.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x5b1910eaad6450e50f816082aa078c41f10c292f-1781337775850.png"
+ ],
+ "name": "Tesla, Inc. ",
+ "symbol": "TSLAB",
+ "marketCap": "17974787.0283940827",
+ "price": "356.73",
+ "priceChange24hPercent": "0.24",
+ "volume24h": "5509793.765509040892574563",
+ "communityRecognized": false,
+ "key": "evm--56:0x5b1910eaad6450e50f816082aa078c41f10c292f",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x1b947cb610f3b39b3148b33e8eceded2d7997777",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/cbdab440b5b85c9375f00b719ecdcb8ba81b65f61a8783c305e9040746232396",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/cbdab440b5b85c9375f00b719ecdcb8ba81b65f61a8783c305e9040746232396"
+ ],
+ "name": "The BNB Mascot",
+ "symbol": "BUILDER",
+ "marketCap": "33133.725486015832230215",
+ "price": "0.00003313372548601583",
+ "priceChange24hPercent": "680.68",
+ "volume24h": "208093.196917798924990163",
+ "communityRecognized": false,
+ "key": "evm--56:0x1b947cb610f3b39b3148b33e8eceded2d7997777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x1a5f9d77ca46646cd4937fd8d093f460b66f4444",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x1a5f9d77ca46646cd4937fd8d093f460b66f4444-1768032084379.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x1a5f9d77ca46646cd4937fd8d093f460b66f4444-1768032084379.png"
+ ],
+ "name": "老子",
+ "symbol": "老子",
+ "marketCap": "814200.768992484253786762",
+ "price": "0.00081794117568644025",
+ "priceChange24hPercent": "-22.26",
+ "volume24h": "328687.445365909396638294",
+ "communityRecognized": true,
+ "key": "evm--56:0x1a5f9d77ca46646cd4937fd8d093f460b66f4444",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xe766023f5a0fa6ce91b9f98d327771437dfca077",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/8356346777831140edc501f7c039ec2abceb49e4ee845cb86f3053a51d691863",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/8356346777831140edc501f7c039ec2abceb49e4ee845cb86f3053a51d691863"
+ ],
+ "name": "AEGIS X",
+ "symbol": "AGX",
+ "marketCap": "74314621.133892253509384157",
+ "price": "55.22569314708519539789",
+ "priceChange24hPercent": "0.02",
+ "volume24h": "2437027.919995226361138176",
+ "communityRecognized": false,
+ "key": "evm--56:0xe766023f5a0fa6ce91b9f98d327771437dfca077",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x66661c7229901f568f16bd1551b3ba826f83ce49",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x66661c7229901f568f16bd1551b3ba826f83ce49-1787817829554.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x66661c7229901f568f16bd1551b3ba826f83ce49-1787817829554.png"
+ ],
+ "name": "Teller",
+ "symbol": "DEBIT",
+ "marketCap": "27633764.934803654943821417",
+ "price": "1.60474220270965473005",
+ "priceChange24hPercent": "-8.57",
+ "volume24h": "230135020.198936898750213156",
+ "communityRecognized": true,
+ "key": "evm--56:0x66661c7229901f568f16bd1551b3ba826f83ce49",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xb6d43ea8d67931deaca95197be7285fac7f77777",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/2087914027943be6daa360807e6960044a61214fd6d2994c0d55d2363ce4c9b4",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/2087914027943be6daa360807e6960044a61214fd6d2994c0d55d2363ce4c9b4"
+ ],
+ "name": "LAPTOP",
+ "symbol": "LAPTOP",
+ "marketCap": "6210.168862587085231151",
+ "price": "0.00000621016886258709",
+ "priceChange24hPercent": "50.14",
+ "volume24h": "292322.276194498415969436",
+ "communityRecognized": false,
+ "key": "evm--56:0xb6d43ea8d67931deaca95197be7285fac7f77777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x975faed559b45feb8a5c5ceb940e614302947777",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/cfc7269d68db70a1e95cc76dceaa8ec3d95b3037e08f7d23f3970449de5befdc",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/cfc7269d68db70a1e95cc76dceaa8ec3d95b3037e08f7d23f3970449de5befdc"
+ ],
+ "name": "Zhao Cai Mao",
+ "symbol": "招财猫",
+ "marketCap": "403637.367828896249717148",
+ "price": "0.00040363736782889625",
+ "priceChange24hPercent": "10036.06",
+ "volume24h": "271306.137449752312329373",
+ "communityRecognized": false,
+ "key": "evm--56:0x975faed559b45feb8a5c5ceb940e614302947777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xfe189e97832da1573e4e4ff034f4ffc3a15c7777",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xfe189e97832da1573e4e4ff034f4ffc3a15c7777-1785917292044.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xfe189e97832da1573e4e4ff034f4ffc3a15c7777-1785917292044.png"
+ ],
+ "name": "MarsCoin",
+ "symbol": "MarsCoin",
+ "marketCap": "142639703.247153683583094186",
+ "price": "0.14269503271656025007",
+ "priceChange24hPercent": "-14.97",
+ "volume24h": "13601005.107525534316904001",
+ "communityRecognized": true,
+ "key": "evm--56:0xfe189e97832da1573e4e4ff034f4ffc3a15c7777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x9a2eb16506cf296672f119316dad43d337b87777",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/66a126a4db5a2d62643736abd29ff67ffd54709c0c5c1b161eebd71f1a1e5e31",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/66a126a4db5a2d62643736abd29ff67ffd54709c0c5c1b161eebd71f1a1e5e31"
+ ],
+ "name": "1234",
+ "symbol": "1234",
+ "marketCap": "8181.424654772439414842",
+ "price": "0.00000818142465477244",
+ "priceChange24hPercent": "56.43",
+ "volume24h": "1139559.051095642769550662",
+ "communityRecognized": false,
+ "key": "evm--56:0x9a2eb16506cf296672f119316dad43d337b87777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xfc0f47393d8b9890ad73f8eb30e713e48e0e7777",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/8f07270888e8fb16b0796a09185eff079e24a52847d0536a7d5801c2d52e4395",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/8f07270888e8fb16b0796a09185eff079e24a52847d0536a7d5801c2d52e4395"
+ ],
+ "name": "All on BINANCE",
+ "symbol": "AOB",
+ "marketCap": "49583.593019683790417802",
+ "price": "0.00004958359301968379",
+ "priceChange24hPercent": "-12.23",
+ "volume24h": "71920.913891388452418727",
+ "communityRecognized": false,
+ "key": "evm--56:0xfc0f47393d8b9890ad73f8eb30e713e48e0e7777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x954857b94089f418b24b5222bb49ffc186b97777",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x954857b94089f418b24b5222bb49ffc186b97777-1788250516877.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x954857b94089f418b24b5222bb49ffc186b97777-1788250516877.png"
+ ],
+ "name": "Binance Ai Agent",
+ "symbol": "JARVIS",
+ "marketCap": "79323.668793864538650106",
+ "price": "0.00007932366879386454",
+ "priceChange24hPercent": "101.79",
+ "volume24h": "245033.83453331602259985",
+ "communityRecognized": false,
+ "key": "evm--56:0x954857b94089f418b24b5222bb49ffc186b97777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xbb87378b58894338f0937b9691a5a6dc3a5a7777",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xbb87378b58894338f0937b9691a5a6dc3a5a7777-1788682035504.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xbb87378b58894338f0937b9691a5a6dc3a5a7777-1788682035504.png"
+ ],
+ "name": "孙小圣",
+ "symbol": "孙小圣",
+ "marketCap": "149236.434472636266624232",
+ "price": "0.00017591158417934095",
+ "priceChange24hPercent": "-9.65",
+ "volume24h": "135897.968079199004031145",
+ "communityRecognized": false,
+ "key": "evm--56:0xbb87378b58894338f0937b9691a5a6dc3a5a7777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xb0c2ab5af4028461ace3f6e1c33a4ee1404e7777",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xb0c2ab5af4028461ace3f6e1c33a4ee1404e7777-1786521665683.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xb0c2ab5af4028461ace3f6e1c33a4ee1404e7777-1786521665683.png"
+ ],
+ "name": "Cets On Gold",
+ "symbol": "CETS",
+ "marketCap": "15333572.787585246851695854",
+ "price": "0.01613374201873405437",
+ "priceChange24hPercent": "-15.13",
+ "volume24h": "975047.449840050078452908",
+ "communityRecognized": false,
+ "key": "evm--56:0xb0c2ab5af4028461ace3f6e1c33a4ee1404e7777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x462b5f13b7c7748279358962925c5de83bb9e598",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x462b5f13b7c7748279358962925c5de83bb9e598-1784881176471.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x462b5f13b7c7748279358962925c5de83bb9e598-1784881176471.png"
+ ],
+ "name": "ProShares UltraPro QQQ",
+ "symbol": "TQQQB",
+ "marketCap": "1863291.0521264541",
+ "price": "73.63",
+ "priceChange24hPercent": "1.75",
+ "volume24h": "1938634.815674815721425673",
+ "communityRecognized": false,
+ "key": "evm--56:0x462b5f13b7c7748279358962925c5de83bb9e598",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x1eb7a7bf5dd4ef574f3965aa10990cf24edf7777",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/02532f2d6b18db5ec0cb98471dc7ab0ba60c54be3ae2ab531b767826ed404ce9",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/02532f2d6b18db5ec0cb98471dc7ab0ba60c54be3ae2ab531b767826ed404ce9"
+ ],
+ "name": "WLFI BIRD",
+ "symbol": "WLFIB",
+ "marketCap": "17870.110117603937115994",
+ "price": "0.00001787011011760394",
+ "priceChange24hPercent": "412.71",
+ "volume24h": "3851790.058870313472012974",
+ "communityRecognized": false,
+ "key": "evm--56:0x1eb7a7bf5dd4ef574f3965aa10990cf24edf7777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xb0f09ea9ae0515c3551080d4a745c8115aa30e37",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xb0f09ea9ae0515c3551080d4a745c8115aa30e37-1786521835205.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xb0f09ea9ae0515c3551080d4a745c8115aa30e37-1786521835205.png"
+ ],
+ "name": "DAPPOS",
+ "symbol": "DOS",
+ "marketCap": "8089952.224964676897703544",
+ "price": "0.22978419216165026472",
+ "priceChange24hPercent": "-3.04",
+ "volume24h": "1528708.506617656189054791",
+ "communityRecognized": true,
+ "key": "evm--56:0xb0f09ea9ae0515c3551080d4a745c8115aa30e37",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x86df20937c45d2aacac6f6eed5d0a891b3887777",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x86df20937c45d2aacac6f6eed5d0a891b3887777-1788768914274.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x86df20937c45d2aacac6f6eed5d0a891b3887777-1788768914274.png"
+ ],
+ "name": "wechat doge",
+ "symbol": "旺柴",
+ "marketCap": "101700.616232950756058629",
+ "price": "0.00010170061623295076",
+ "priceChange24hPercent": "33.93",
+ "volume24h": "603829.494807673835421514",
+ "communityRecognized": false,
+ "key": "evm--56:0x86df20937c45d2aacac6f6eed5d0a891b3887777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x71967d91abfbf96796238e70092c85878fc85999",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x71967d91abfbf96796238e70092c85878fc85999-1784534417711.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x71967d91abfbf96796238e70092c85878fc85999-1784534417711.png"
+ ],
+ "name": "Satoshi Protocol Token",
+ "symbol": "SPR",
+ "marketCap": "81258854.855630472210388238",
+ "price": "107.70000173402418874061",
+ "priceChange24hPercent": "-3.52",
+ "volume24h": "1094652.960953043764473104",
+ "communityRecognized": false,
+ "key": "evm--56:0x71967d91abfbf96796238e70092c85878fc85999",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xa4390b901a63641c92327e5793b45fcb46954444",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xa4390b901a63641c92327e5793b45fcb46954444-1783324841174.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xa4390b901a63641c92327e5793b45fcb46954444-1783324841174.png"
+ ],
+ "name": "TCryptochicks",
+ "symbol": "TCC",
+ "marketCap": "238576.658947750689083157",
+ "price": "0.00048838630884236572",
+ "priceChange24hPercent": "-13.85",
+ "volume24h": "205998.928916970855770883",
+ "communityRecognized": false,
+ "key": "evm--56:0xa4390b901a63641c92327e5793b45fcb46954444",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xecd794149128e7344154d8993fc0186d57de7777",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/4d69a08aec8be4ccb8730674fbbbe546f37de5dd7283a940fca40f9919433af1",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/4d69a08aec8be4ccb8730674fbbbe546f37de5dd7283a940fca40f9919433af1"
+ ],
+ "name": "狴犴(bian)监狱的代称,CZ的守护神。",
+ "symbol": "狴犴",
+ "marketCap": "894679.376474521284887275",
+ "price": "0.01801207806298397811",
+ "priceChange24hPercent": "-33.84",
+ "volume24h": "380117.21514345151731714",
+ "communityRecognized": false,
+ "key": "evm--56:0xecd794149128e7344154d8993fc0186d57de7777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x21caef8a43163eea865baee23b9c2e327696a3bf",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x21caef8a43163eea865baee23b9c2e327696a3bf-1779763100866.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x21caef8a43163eea865baee23b9c2e327696a3bf-1779763100866.png"
+ ],
+ "name": "Tether Gold",
+ "symbol": "XAUt",
+ "marketCap": "58890741.125196808222928869",
+ "price": "4435.53277368368646619941",
+ "priceChange24hPercent": "0.78",
+ "volume24h": "6569605.871206391033136786",
+ "communityRecognized": false,
+ "key": "evm--56:0x21caef8a43163eea865baee23b9c2e327696a3bf",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xce24439f2d9c6a2289f741120fe202248b666666",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xce24439f2d9c6a2289f741120fe202248b666666-1766111365772.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xce24439f2d9c6a2289f741120fe202248b666666-1766111365772.png"
+ ],
+ "name": "United Stables",
+ "symbol": "U",
+ "marketCap": "946531946.48888976466145856",
+ "price": "0.99919068946012983679",
+ "priceChange24hPercent": "0",
+ "volume24h": "19148191.242730694430968438",
+ "communityRecognized": true,
+ "key": "evm--56:0xce24439f2d9c6a2289f741120fe202248b666666",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xa394dcea3fd3847fd793afbfd163e2e3858b7c65",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xa394dcea3fd3847fd793afbfd163e2e3858b7c65-1785139211549.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xa394dcea3fd3847fd793afbfd163e2e3858b7c65-1785139211549.png"
+ ],
+ "name": "Robinhood",
+ "symbol": "HOODB",
+ "marketCap": "6657816.4153896045",
+ "price": "122.95",
+ "priceChange24hPercent": "-2.7",
+ "volume24h": "980069.113051990151724032",
+ "communityRecognized": false,
+ "key": "evm--56:0xa394dcea3fd3847fd793afbfd163e2e3858b7c65",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xc01a2e136f92772eecab15eb054e8f6fa06b7777",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xc01a2e136f92772eecab15eb054e8f6fa06b7777-1788595735163.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xc01a2e136f92772eecab15eb054e8f6fa06b7777-1788595735163.png"
+ ],
+ "name": "牛马",
+ "symbol": "NIUMA",
+ "marketCap": "1258203.804196386019852609",
+ "price": "0.00129142585793916915",
+ "priceChange24hPercent": "-23.24",
+ "volume24h": "88175.822012154645407751",
+ "communityRecognized": false,
+ "key": "evm--56:0xc01a2e136f92772eecab15eb054e8f6fa06b7777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x28cd1fc7b6eebf46b59001ff49c9d14f8bb97777",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x28cd1fc7b6eebf46b59001ff49c9d14f8bb97777-1787212932933.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x28cd1fc7b6eebf46b59001ff49c9d14f8bb97777-1787212932933.png"
+ ],
+ "name": "翻身币税助力凉兮翻身",
+ "symbol": "翻身币",
+ "marketCap": "267200.871043530333679264",
+ "price": "0.0002672008713107312",
+ "priceChange24hPercent": "-13.52",
+ "volume24h": "33685.706667246874589289",
+ "communityRecognized": false,
+ "key": "evm--56:0x28cd1fc7b6eebf46b59001ff49c9d14f8bb97777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x6ba4ba5d55b6ddd9bd4ed986cf4a61d6ad0c7777",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/5096e7dbd9c255017ccb498b6c8ede405e96ceff0750acd8c28fc35de1c6899f",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/5096e7dbd9c255017ccb498b6c8ede405e96ceff0750acd8c28fc35de1c6899f"
+ ],
+ "name": "Musk",
+ "symbol": "Musk",
+ "marketCap": "13000.463697627724263237",
+ "price": "0.00001300046369762772",
+ "priceChange24hPercent": "190.3",
+ "volume24h": "504348.387750240167646533",
+ "communityRecognized": false,
+ "key": "evm--56:0x6ba4ba5d55b6ddd9bd4ed986cf4a61d6ad0c7777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xc6bff31bbfa84d3c05ad61d8ec47be8b31517777",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xc6bff31bbfa84d3c05ad61d8ec47be8b31517777-1786608913243.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xc6bff31bbfa84d3c05ad61d8ec47be8b31517777-1786608913243.png"
+ ],
+ "name": "The Martian Dog",
+ "symbol": "Marvin",
+ "marketCap": "1838379.926952434127917623",
+ "price": "0.00184236150106962533",
+ "priceChange24hPercent": "2.23",
+ "volume24h": "48184.940155407189316578",
+ "communityRecognized": false,
+ "key": "evm--56:0xc6bff31bbfa84d3c05ad61d8ec47be8b31517777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x3e17ee3b1895dd1a7cf993a89769c5e029584444",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x3e17ee3b1895dd1a7cf993a89769c5e029584444-1767255579366.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x3e17ee3b1895dd1a7cf993a89769c5e029584444-1767255579366.png"
+ ],
+ "name": "Freedom of Money",
+ "symbol": "Freedom of Money",
+ "marketCap": "2630445.845079194075586464",
+ "price": "0.00263045785901536345",
+ "priceChange24hPercent": "-24.36",
+ "volume24h": "581770.538872219891409649",
+ "communityRecognized": true,
+ "key": "evm--56:0x3e17ee3b1895dd1a7cf993a89769c5e029584444",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x815605f706e66241dff6d43936ac2eae7375f9cb",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/849174a8bc7837a93979a42f2e648f146724ece15a8b1991a64bd6f4e474a229",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/849174a8bc7837a93979a42f2e648f146724ece15a8b1991a64bd6f4e474a229"
+ ],
+ "name": "SOCKCAT",
+ "symbol": "SOCKCAT",
+ "marketCap": "25664.032507854137102801",
+ "price": "0.00002566403250785414",
+ "priceChange24hPercent": "-47.3",
+ "volume24h": "180317.55394382564834673",
+ "communityRecognized": false,
+ "key": "evm--56:0x815605f706e66241dff6d43936ac2eae7375f9cb",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xe44d996ff1c6d9720c13c45431e665afa9f88888",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xe44d996ff1c6d9720c13c45431e665afa9f88888-1782288399263.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xe44d996ff1c6d9720c13c45431e665afa9f88888-1782288399263.png"
+ ],
+ "name": "Golden Dragon",
+ "symbol": "GD",
+ "marketCap": "16510900.019833585011614245",
+ "price": "0.16510900019833585012",
+ "priceChange24hPercent": "0.01",
+ "volume24h": "308693.202637003258884014",
+ "communityRecognized": false,
+ "key": "evm--56:0xe44d996ff1c6d9720c13c45431e665afa9f88888",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x7425889fe94f9d693e8daefe88bcced6acfef4c0",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x7425889fe94f9d693e8daefe88bcced6acfef4c0-1783066721627.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x7425889fe94f9d693e8daefe88bcced6acfef4c0-1783066721627.png"
+ ],
+ "name": "Meta Platforms",
+ "symbol": "METAB",
+ "marketCap": "7040862.2766616992",
+ "price": "612.77",
+ "priceChange24hPercent": "0",
+ "volume24h": "742530.311755316080634647",
+ "communityRecognized": false,
+ "key": "evm--56:0x7425889fe94f9d693e8daefe88bcced6acfef4c0",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x2a361ef8aaecceac32b2dc8d9fa3892c49427777",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/7a409ad900959b83b5229f260af02b5bae1978eb21ed6f8f04da736cea981088",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/7a409ad900959b83b5229f260af02b5bae1978eb21ed6f8f04da736cea981088"
+ ],
+ "name": "50%分红50%拉盘销毁建设1121625362",
+ "symbol": "谷歌人生",
+ "marketCap": "26968.101724282851919228",
+ "price": "0.00003456422754811061",
+ "priceChange24hPercent": "48.57",
+ "volume24h": "19074.141400137341694387",
+ "communityRecognized": false,
+ "key": "evm--56:0x2a361ef8aaecceac32b2dc8d9fa3892c49427777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xf9c6e80e9a5807a1214a79449009b48104f94444",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xf9c6e80e9a5807a1214a79449009b48104f94444-1767945777080.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xf9c6e80e9a5807a1214a79449009b48104f94444-1767945777080.png"
+ ],
+ "name": "黑马",
+ "symbol": "黑马",
+ "marketCap": "616195.339500196623813216",
+ "price": "0.0006161954127568846",
+ "priceChange24hPercent": "-30.06",
+ "volume24h": "353155.692246082057183528",
+ "communityRecognized": true,
+ "key": "evm--56:0xf9c6e80e9a5807a1214a79449009b48104f94444",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x8b7abc1c0f2e6c0b76bc4fd0f7190f67d72e7777",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x8b7abc1c0f2e6c0b76bc4fd0f7190f67d72e7777-1787565305355.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x8b7abc1c0f2e6c0b76bc4fd0f7190f67d72e7777-1787565305355.png"
+ ],
+ "name": "老吴",
+ "symbol": "老吴",
+ "marketCap": "153408.534977003767910205",
+ "price": "0.00015340958976786479",
+ "priceChange24hPercent": "-30.3",
+ "volume24h": "94952.10511583543903845",
+ "communityRecognized": false,
+ "key": "evm--56:0x8b7abc1c0f2e6c0b76bc4fd0f7190f67d72e7777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x41ccd0f872000689e0fda96f25cfbd8158a27777",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/3d147ad1436317d77575e0da1d8b23292e90b0512965cf36a9686a3c837c3b0b",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/3d147ad1436317d77575e0da1d8b23292e90b0512965cf36a9686a3c837c3b0b"
+ ],
+ "name": "鸡你太美",
+ "symbol": "ikun",
+ "marketCap": "108017.473283268970927191",
+ "price": "0.00010801747328326897",
+ "priceChange24hPercent": "42.99",
+ "volume24h": "209690.283193520849653363",
+ "communityRecognized": false,
+ "key": "evm--56:0x41ccd0f872000689e0fda96f25cfbd8158a27777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x2ee5ef9d1dcaddeeb1a004f03c1b09ca03b47777",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/e5c6df9d6a4015b8039723d2b6254c647ebc5d1610f7eaca257fda32ddf07a94",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/e5c6df9d6a4015b8039723d2b6254c647ebc5d1610f7eaca257fda32ddf07a94"
+ ],
+ "name": "无为",
+ "symbol": "无为",
+ "marketCap": "5113.285784529693404768",
+ "price": "0.00000511328578452969",
+ "priceChange24hPercent": "16.42",
+ "volume24h": "371600.670364555964844254",
+ "communityRecognized": false,
+ "key": "evm--56:0x2ee5ef9d1dcaddeeb1a004f03c1b09ca03b47777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xcefbf00b3732fe91e46989037e4b2564a4fc7777",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xcefbf00b3732fe91e46989037e4b2564a4fc7777-1784537933503.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xcefbf00b3732fe91e46989037e4b2564a4fc7777-1784537933503.png"
+ ],
+ "name": "NIXI",
+ "symbol": "逆袭人生",
+ "marketCap": "68765488.529334663526141979",
+ "price": "0.07439889039955074786",
+ "priceChange24hPercent": "1.34",
+ "volume24h": "36604.714405210175942757",
+ "communityRecognized": false,
+ "key": "evm--56:0xcefbf00b3732fe91e46989037e4b2564a4fc7777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x25e572b466d152604d9e6c3e53b432b978825342",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x25e572b466d152604d9e6c3e53b432b978825342-1788424520467.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x25e572b466d152604d9e6c3e53b432b978825342-1788424520467.png"
+ ],
+ "name": "ProShares UltraPro Short QQQ",
+ "symbol": "SQQQB",
+ "marketCap": "523170.2685369225",
+ "price": "37.57",
+ "priceChange24hPercent": "-1.59",
+ "volume24h": "263040.955528586501119077",
+ "communityRecognized": false,
+ "key": "evm--56:0x25e572b466d152604d9e6c3e53b432b978825342",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x03c59bbf8ba49ce79831403b86acbc40d3167777",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x03c59bbf8ba49ce79831403b86acbc40d3167777-1787644922548.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x03c59bbf8ba49ce79831403b86acbc40d3167777-1787644922548.png"
+ ],
+ "name": "你们的胆子真是肥嘟嘟的",
+ "symbol": "肥嘟嘟",
+ "marketCap": "289359.871518312619793061",
+ "price": "0.00028935987151831262",
+ "priceChange24hPercent": "-28.31",
+ "volume24h": "332020.965449680643848932",
+ "communityRecognized": false,
+ "key": "evm--56:0x03c59bbf8ba49ce79831403b86acbc40d3167777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x671ecbcb89ee3f85e2199294e723d309d98c4444",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x671ecbcb89ee3f85e2199294e723d309d98c4444-1768032912425.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x671ecbcb89ee3f85e2199294e723d309d98c4444-1768032912425.png"
+ ],
+ "name": "错版马",
+ "symbol": "哭哭马",
+ "marketCap": "2641680.801566308834602654",
+ "price": "0.00268136942733377937",
+ "priceChange24hPercent": "-10.32",
+ "volume24h": "244706.591183066724769483",
+ "communityRecognized": true,
+ "key": "evm--56:0x671ecbcb89ee3f85e2199294e723d309d98c4444",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x36fd56b4e8e47d2c1cc14072a98898b25d5e7777",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x36fd56b4e8e47d2c1cc14072a98898b25d5e7777-1788427540359.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x36fd56b4e8e47d2c1cc14072a98898b25d5e7777-1788427540359.png"
+ ],
+ "name": "全球爆火英伟达机器鸭",
+ "symbol": "机器鸭",
+ "marketCap": "189151.071673564369240269",
+ "price": "0.00018915107167356437",
+ "priceChange24hPercent": "-18.53",
+ "volume24h": "89532.169211594202423004",
+ "communityRecognized": false,
+ "key": "evm--56:0x36fd56b4e8e47d2c1cc14072a98898b25d5e7777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x75b364916b65f1e8959fa0210a6922c2ee237777",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/f104dae5a17692fb46edcee8d1b5a247e1c54183ff41afb6059679168e6b5f19",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/f104dae5a17692fb46edcee8d1b5a247e1c54183ff41afb6059679168e6b5f19"
+ ],
+ "name": "TrustCat",
+ "symbol": "TrustCat",
+ "marketCap": "191644.430946520580024584",
+ "price": "0.00019164443094652058",
+ "priceChange24hPercent": "-80.67",
+ "volume24h": "575006.97938784474717656",
+ "communityRecognized": false,
+ "key": "evm--56:0x75b364916b65f1e8959fa0210a6922c2ee237777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xc1d308b258e21ed5f3ddc50351d21d2809337777",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/976330dc648314ac274237862ae059f1a767f234eb5e52261841107d7bc03954",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/976330dc648314ac274237862ae059f1a767f234eb5e52261841107d7bc03954"
+ ],
+ "name": "ANTS",
+ "symbol": "ANTS",
+ "marketCap": "351070.787449684231016148",
+ "price": "0.00035107078744968423",
+ "priceChange24hPercent": "9326.22",
+ "volume24h": "218607.635463885988960936",
+ "communityRecognized": false,
+ "key": "evm--56:0xc1d308b258e21ed5f3ddc50351d21d2809337777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x82ec31d69b3c289e541b50e30681fd1acad24444",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x82ec31d69b3c289e541b50e30681fd1acad24444-1759912042684.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x82ec31d69b3c289e541b50e30681fd1acad24444-1759912042684.png"
+ ],
+ "name": "哈基米",
+ "symbol": "哈基米",
+ "marketCap": "47863529.168543933110176721",
+ "price": "0.04786369816695196914",
+ "priceChange24hPercent": "-17.69",
+ "volume24h": "15585159.371435130172546294",
+ "communityRecognized": false,
+ "key": "evm--56:0x82ec31d69b3c289e541b50e30681fd1acad24444",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xd97d097a89113fa59b76c572e5b2eb647e8eefaf",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xd97d097a89113fa59b76c572e5b2eb647e8eefaf-1783584151472.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xd97d097a89113fa59b76c572e5b2eb647e8eefaf-1783584151472.png"
+ ],
+ "name": "Semicon Bull 3X ETF",
+ "symbol": "SOXLB",
+ "marketCap": "20953691.219015478",
+ "price": "126.3",
+ "priceChange24hPercent": "-0.39",
+ "volume24h": "734293.004558957549693246",
+ "communityRecognized": false,
+ "key": "evm--56:0xd97d097a89113fa59b76c572e5b2eb647e8eefaf",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x46f2564e0fa8248d15125e7e54173cfbdef91be7",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x46f2564e0fa8248d15125e7e54173cfbdef91be7-1785484850757.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x46f2564e0fa8248d15125e7e54173cfbdef91be7-1785484850757.png"
+ ],
+ "name": "GRVT",
+ "symbol": "GRVT",
+ "marketCap": "2136018.461506989521573869",
+ "price": "0.16972545885264871147",
+ "priceChange24hPercent": "1.08",
+ "volume24h": "405174.740464443375220739",
+ "communityRecognized": true,
+ "key": "evm--56:0x46f2564e0fa8248d15125e7e54173cfbdef91be7",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ }
+ ],
+ "trending|sol--101|5m|all": [
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "Ai66LHZG9MCzg1WKdawwqduVAXpNDUuV8M3uyq5ppump",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-Ai66LHZG9MCzg1WKdawwqduVAXpNDUuV8M3uyq5ppump-1785164716552.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-Ai66LHZG9MCzg1WKdawwqduVAXpNDUuV8M3uyq5ppump-1785164716552.png"
+ ],
+ "name": "Catecoin",
+ "symbol": "CATE",
+ "marketCap": "27707910.562215997854014575",
+ "price": "0.028737823444707848",
+ "priceChange24hPercent": "-1.36",
+ "volume24h": "36398.85612902936",
+ "communityRecognized": true,
+ "key": "sol--101:Ai66LHZG9MCzg1WKdawwqduVAXpNDUuV8M3uyq5ppump",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "7Y7V1a4m2nWK7BMgbka5B4vR1pDvCK7yva3Hnrqkraze",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/fa21eef99efb8b7842c131cfa852344958bd4c32e76767446fd4983cb58d673c",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/fa21eef99efb8b7842c131cfa852344958bd4c32e76767446fd4983cb58d673c"
+ ],
+ "name": "Nasduck",
+ "symbol": "Nasduck",
+ "marketCap": "4921873.454147141002757127",
+ "price": "0.00511841948187528899",
+ "priceChange24hPercent": "-0.88",
+ "volume24h": "17224.46549102341",
+ "communityRecognized": false,
+ "key": "sol--101:7Y7V1a4m2nWK7BMgbka5B4vR1pDvCK7yva3Hnrqkraze",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "9GGGhze1NnQwcABTzxdxx89BEFLFtDueHhkwh6japump",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/a6063f660a1b276bba3b9832297a3b2830c66cc58a607c8cc44705fa1b422161",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/a6063f660a1b276bba3b9832297a3b2830c66cc58a607c8cc44705fa1b422161"
+ ],
+ "name": "CatGPT",
+ "symbol": "CatGPT",
+ "marketCap": "623368.05695686272495979",
+ "price": "0.0006395393467819042",
+ "priceChange24hPercent": "3.97",
+ "volume24h": "3528.02185259723",
+ "communityRecognized": false,
+ "key": "sol--101:9GGGhze1NnQwcABTzxdxx89BEFLFtDueHhkwh6japump",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "8K5X85PAJHAAVSvYaAzgVPPAPsqqHmvx16ZyBiscYF8L",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-8K5X85PAJHAAVSvYaAzgVPPAPsqqHmvx16ZyBiscYF8L-1788368707252.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-8K5X85PAJHAAVSvYaAzgVPPAPsqqHmvx16ZyBiscYF8L-1788368707252.png"
+ ],
+ "name": "Vida Global CTO",
+ "symbol": "CTO",
+ "marketCap": "10388682.975129922967356653",
+ "price": "0.01133818095938549687",
+ "priceChange24hPercent": "0.49",
+ "volume24h": "22133.90274836328",
+ "communityRecognized": false,
+ "key": "sol--101:8K5X85PAJHAAVSvYaAzgVPPAPsqqHmvx16ZyBiscYF8L",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "MukLDtJ8Cx9DxLbeyLRSWPSposTMWuwHANbuaudpump",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-MukLDtJ8Cx9DxLbeyLRSWPSposTMWuwHANbuaudpump-1788282416465.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-MukLDtJ8Cx9DxLbeyLRSWPSposTMWuwHANbuaudpump-1788282416465.png"
+ ],
+ "name": "OTC",
+ "symbol": "OTC",
+ "marketCap": "18542012.178878264176559004",
+ "price": "0.02608930166714554962",
+ "priceChange24hPercent": "-0.71",
+ "volume24h": "5546.59781718702",
+ "communityRecognized": false,
+ "key": "sol--101:MukLDtJ8Cx9DxLbeyLRSWPSposTMWuwHANbuaudpump",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "ANM35KbUcfKdEVBXzSjZBoT6ceSwYRs3fuc79fp7kRqP",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/db4d10c19523308df10f606b8b29d51a6e19419261d663ae88497cd02efd20f6",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/db4d10c19523308df10f606b8b29d51a6e19419261d663ae88497cd02efd20f6"
+ ],
+ "name": "Pump Cat",
+ "symbol": "Pumpcat",
+ "marketCap": "1912244.462897262858486588",
+ "price": "0.00193673692136345157",
+ "priceChange24hPercent": "0.44",
+ "volume24h": "6383.76820682063",
+ "communityRecognized": false,
+ "key": "sol--101:ANM35KbUcfKdEVBXzSjZBoT6ceSwYRs3fuc79fp7kRqP",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "Aw6fiDPWLUnjSsJQtsyEMSaoPaKAUUrStAsYPiPwpump",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/77390ed5d0a7e7ae6ab8a0e2685653ff99f696192f784341e9d9bd613dc27472",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/77390ed5d0a7e7ae6ab8a0e2685653ff99f696192f784341e9d9bd613dc27472"
+ ],
+ "name": "Anonymouse",
+ "symbol": "Anonymouse",
+ "marketCap": "495244.582719193909390358",
+ "price": "0.00051975033502052469",
+ "priceChange24hPercent": "-12.11",
+ "volume24h": "16228.31171074802",
+ "communityRecognized": false,
+ "key": "sol--101:Aw6fiDPWLUnjSsJQtsyEMSaoPaKAUUrStAsYPiPwpump",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "9cRCn9rGT8V2imeM2BaKs13yhMEais3ruM3rPvTGpump",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-9cRCn9rGT8V2imeM2BaKs13yhMEais3ruM3rPvTGpump-1782140764006.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-9cRCn9rGT8V2imeM2BaKs13yhMEais3ruM3rPvTGpump-1782140764006.png"
+ ],
+ "name": "The Black Bull",
+ "symbol": "ANSEM",
+ "marketCap": "77436631.923583188307148338",
+ "price": "0.18668778395165902839",
+ "priceChange24hPercent": "0.1",
+ "volume24h": "49669.65024487519117357",
+ "communityRecognized": true,
+ "key": "sol--101:9cRCn9rGT8V2imeM2BaKs13yhMEais3ruM3rPvTGpump",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "DoGEV7LASBkQbibMc5k5vKnTZoMg423GpJ5QtJEGfm7R",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/3d506b48124c4da95fa38586899e377b82f98a1d6da24eba1ac8e1c2f82bbb99",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/3d506b48124c4da95fa38586899e377b82f98a1d6da24eba1ac8e1c2f82bbb99"
+ ],
+ "name": "Dogecoin",
+ "symbol": "DOGE",
+ "marketCap": "400294.815377739868067652",
+ "price": "0.09110678797975571486",
+ "priceChange24hPercent": "-0.02",
+ "volume24h": "27047.52157829851",
+ "communityRecognized": true,
+ "key": "sol--101:DoGEV7LASBkQbibMc5k5vKnTZoMg423GpJ5QtJEGfm7R",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "HhXR4SiHzDNYCFXJBpCYg86T4NhzsD4vz4Y5Jtz6ozKx",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/f726c684810fa3c317fc93c5be53f978bd8c53c43e640ba1356f234c0f0904b0",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/f726c684810fa3c317fc93c5be53f978bd8c53c43e640ba1356f234c0f0904b0"
+ ],
+ "name": "OpenAI PreStocks",
+ "symbol": "OPENAI",
+ "marketCap": "2939809.88902212827335016",
+ "price": "0.00002939809927291071",
+ "priceChange24hPercent": "2.45",
+ "volume24h": "1539536.52717214731",
+ "communityRecognized": false,
+ "key": "sol--101:HhXR4SiHzDNYCFXJBpCYg86T4NhzsD4vz4Y5Jtz6ozKx",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "CaWZeUM4FvX9dPkjGc2xHS6tSN3qJfTWyvaG77aM5o7h",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-CaWZeUM4FvX9dPkjGc2xHS6tSN3qJfTWyvaG77aM5o7h-1788714223572.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-CaWZeUM4FvX9dPkjGc2xHS6tSN3qJfTWyvaG77aM5o7h-1788714223572.png"
+ ],
+ "name": "artificial gooner intelligence",
+ "symbol": "AGI",
+ "marketCap": "7732106.397339240642815567",
+ "price": "0.00782011642651768863",
+ "priceChange24hPercent": "4.02",
+ "volume24h": "4323.76956628248",
+ "communityRecognized": true,
+ "key": "sol--101:CaWZeUM4FvX9dPkjGc2xHS6tSN3qJfTWyvaG77aM5o7h",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "CTPoyCwkjMvoJwU4xvZZqoD8tiYk6yDchySiN5gGpump",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-CTPoyCwkjMvoJwU4xvZZqoD8tiYk6yDchySiN5gGpump-1788283052361.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-CTPoyCwkjMvoJwU4xvZZqoD8tiYk6yDchySiN5gGpump-1788283052361.png"
+ ],
+ "name": "apeonfone",
+ "symbol": "fone",
+ "marketCap": "7592997.811728859885287765",
+ "price": "0.00766871347955657293",
+ "priceChange24hPercent": "0.65",
+ "volume24h": "7181.24076097654",
+ "communityRecognized": true,
+ "key": "sol--101:CTPoyCwkjMvoJwU4xvZZqoD8tiYk6yDchySiN5gGpump",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "XsoCS1TfEyfFhfvj8EtZ528L3CaKBDBRqRapnBbDF2W",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-XsoCS1TfEyfFhfvj8EtZ528L3CaKBDBRqRapnBbDF2W-1758104197788.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-XsoCS1TfEyfFhfvj8EtZ528L3CaKBDBRqRapnBbDF2W-1758104197788.png"
+ ],
+ "name": "SP500 xStock",
+ "symbol": "SPYx",
+ "marketCap": "56367005.478836337769633662",
+ "price": "784.81337192531622861759",
+ "priceChange24hPercent": "-",
+ "volume24h": "67617.81711005022558291",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 xStock 代币化发行",
+ "subtitle": "标普500 ETF",
+ "source": "xstock",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/xstock.png",
+ "isOpen": true
+ },
+ "key": "sol--101:XsoCS1TfEyfFhfvj8EtZ528L3CaKBDBRqRapnBbDF2W",
+ "kind": "stock",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "6GmAFSYs4gk3FDao5FzzySQpPZaWsa4rUJHacpMpUNgx",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-6GmAFSYs4gk3FDao5FzzySQpPZaWsa4rUJHacpMpUNgx-1784905991044.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-6GmAFSYs4gk3FDao5FzzySQpPZaWsa4rUJHacpMpUNgx-1784905991044.png"
+ ],
+ "name": "STONK",
+ "symbol": "STONK",
+ "marketCap": "159352032.822599310181812789",
+ "price": "0.18313292094986593893",
+ "priceChange24hPercent": "-1.76",
+ "volume24h": "698116.936933160510657955",
+ "communityRecognized": true,
+ "key": "sol--101:6GmAFSYs4gk3FDao5FzzySQpPZaWsa4rUJHacpMpUNgx",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "Fxq9URcanj5exGoatPxckVr9KFL3mcpJDMKRfSbyrH8q",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/ac252d3221f62580087c09038a994ea9cf9bfbf0611d8531c325b0fcc86503b3",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/ac252d3221f62580087c09038a994ea9cf9bfbf0611d8531c325b0fcc86503b3"
+ ],
+ "name": "Robinhood",
+ "symbol": "HOOD",
+ "marketCap": "4434319.99587062093524057",
+ "price": "0.00004434320021898187",
+ "priceChange24hPercent": "4.84",
+ "volume24h": "1595626.08336290078",
+ "communityRecognized": false,
+ "key": "sol--101:Fxq9URcanj5exGoatPxckVr9KFL3mcpJDMKRfSbyrH8q",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "2NdgMAFbWVHvXJcoAwuRkTfYn1j97THVCThWATKHSTNK",
+ "logoUrl": "https://static.oklink.com/cdn/web3/currency/token/large/501-2NdgMAFbWVHvXJcoAwuRkTfYn1j97THVCThWATKHSTNK-108/type=default_90_0?v=1788837548010",
+ "logoUrls": [
+ "https://static.oklink.com/cdn/web3/currency/token/large/501-2NdgMAFbWVHvXJcoAwuRkTfYn1j97THVCThWATKHSTNK-108/type=default_90_0?v=1788837548010"
+ ],
+ "name": "Universal High Income",
+ "symbol": "UHI",
+ "marketCap": "94808.647286636511653555",
+ "price": "0.00009480864728663651",
+ "priceChange24hPercent": "-2.54",
+ "volume24h": "58215.024406573544019303",
+ "communityRecognized": false,
+ "key": "sol--101:2NdgMAFbWVHvXJcoAwuRkTfYn1j97THVCThWATKHSTNK",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "Xsc9qvGR1efVDFGLrVsmkzv3qi45LTBjeUKSPmx9qEh",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-Xsc9qvGR1efVDFGLrVsmkzv3qi45LTBjeUKSPmx9qEh-1758104122411.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-Xsc9qvGR1efVDFGLrVsmkzv3qi45LTBjeUKSPmx9qEh-1758104122411.png"
+ ],
+ "name": "NVIDIA xStock",
+ "symbol": "NVDAx",
+ "marketCap": "40688636.700095001974864294",
+ "price": "232.90275658577221331091",
+ "priceChange24hPercent": "-",
+ "volume24h": "2609.5621549841010323",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 xStock 代币化发行",
+ "subtitle": "英伟达",
+ "source": "xstock",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/xstock.png",
+ "isOpen": true
+ },
+ "key": "sol--101:Xsc9qvGR1efVDFGLrVsmkzv3qi45LTBjeUKSPmx9qEh",
+ "kind": "stock",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "8iBSN84vSpZAhMCin81YS9FBgiuQhKns2udaZ8qTzkh5",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/d47faaf1af74dc4b8f159f83c5594fefb37c28f24d40c84c3aa877b59113713c",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/d47faaf1af74dc4b8f159f83c5594fefb37c28f24d40c84c3aa877b59113713c"
+ ],
+ "name": "Boomer",
+ "symbol": "BOOMER",
+ "marketCap": "245795.75122960801241058",
+ "price": "0.00024579648930853509",
+ "priceChange24hPercent": "0.47",
+ "volume24h": "757.52493900354378",
+ "communityRecognized": false,
+ "key": "sol--101:8iBSN84vSpZAhMCin81YS9FBgiuQhKns2udaZ8qTzkh5",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "A7bdiYdS5GjqGFtxf17ppRHtDKPkkRqbKtR27dxvQXaS",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-A7bdiYdS5GjqGFtxf17ppRHtDKPkkRqbKtR27dxvQXaS-1760630401975.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-A7bdiYdS5GjqGFtxf17ppRHtDKPkkRqbKtR27dxvQXaS-1760630401975.png"
+ ],
+ "name": "Zcash",
+ "symbol": "ZEC",
+ "marketCap": "108375335.626239063882391501",
+ "price": "1127.26051225365682595705",
+ "priceChange24hPercent": "-0.12",
+ "volume24h": "177795.03207659121323226",
+ "communityRecognized": true,
+ "key": "sol--101:A7bdiYdS5GjqGFtxf17ppRHtDKPkkRqbKtR27dxvQXaS",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "XsbEhLAtcf6HdfpFZ5xEMdqW8nfAvcsP5bdudRLJzJp",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-XsbEhLAtcf6HdfpFZ5xEMdqW8nfAvcsP5bdudRLJzJp-1758104899904.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-XsbEhLAtcf6HdfpFZ5xEMdqW8nfAvcsP5bdudRLJzJp-1758104899904.png"
+ ],
+ "name": "Apple xStock",
+ "symbol": "AAPLx",
+ "marketCap": "12728432.798393619419131017",
+ "price": "320.5456290268211648992",
+ "priceChange24hPercent": "-",
+ "volume24h": "8217.0389448844942699",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 xStock 代币化发行",
+ "subtitle": "苹果",
+ "source": "xstock",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/xstock.png",
+ "isOpen": true
+ },
+ "key": "sol--101:XsbEhLAtcf6HdfpFZ5xEMdqW8nfAvcsP5bdudRLJzJp",
+ "kind": "stock",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "HcRLc9VDgjLeK154xDawfb1dmVJ98DoSqcwTHGqiDeJR",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-HcRLc9VDgjLeK154xDawfb1dmVJ98DoSqcwTHGqiDeJR-1788454854698.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-HcRLc9VDgjLeK154xDawfb1dmVJ98DoSqcwTHGqiDeJR-1788454854698.png"
+ ],
+ "name": "Anonymous Cat",
+ "symbol": "ZCAT",
+ "marketCap": "138155153.502342882783315452",
+ "price": "0.14258838001416833807",
+ "priceChange24hPercent": "1.99",
+ "volume24h": "21217.0833888210162001",
+ "communityRecognized": true,
+ "key": "sol--101:HcRLc9VDgjLeK154xDawfb1dmVJ98DoSqcwTHGqiDeJR",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "9GJQUmiEZBpgSiEaqvi9hXXFs45crcfTwQ1vYY7Xgx6A",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/f489f9e0d4221e30270f32e9e593071fc0ccc0f3debebd41024a54ff69c08365",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/f489f9e0d4221e30270f32e9e593071fc0ccc0f3debebd41024a54ff69c08365"
+ ],
+ "name": "401jk",
+ "symbol": "401jk",
+ "marketCap": "125948.722351959385019986",
+ "price": "0.00013130729042982356",
+ "priceChange24hPercent": "-5.92",
+ "volume24h": "2072.22676709552",
+ "communityRecognized": false,
+ "key": "sol--101:9GJQUmiEZBpgSiEaqvi9hXXFs45crcfTwQ1vYY7Xgx6A",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "XsDoVfqeBukxuZHWhdvWHBhgEHjGNst4MLodqsJHzoB",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-XsDoVfqeBukxuZHWhdvWHBhgEHjGNst4MLodqsJHzoB-1758104143706.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-XsDoVfqeBukxuZHWhdvWHBhgEHjGNst4MLodqsJHzoB-1758104143706.png"
+ ],
+ "name": "Tesla xStock",
+ "symbol": "TSLAx",
+ "marketCap": "70828076.651364965334430792",
+ "price": "356.45829518959530641641",
+ "priceChange24hPercent": "-",
+ "volume24h": "117710.463325764289404207",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 xStock 代币化发行",
+ "subtitle": "特斯拉",
+ "source": "xstock",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/xstock.png",
+ "isOpen": true
+ },
+ "key": "sol--101:XsDoVfqeBukxuZHWhdvWHBhgEHjGNst4MLodqsJHzoB",
+ "kind": "stock",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "Ge87EtsjwRQbHaqQmKRno69RFTwh9bfSsm99XNxTpump",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-Ge87EtsjwRQbHaqQmKRno69RFTwh9bfSsm99XNxTpump-1784214599861.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-Ge87EtsjwRQbHaqQmKRno69RFTwh9bfSsm99XNxTpump-1784214599861.png"
+ ],
+ "name": "Jimothy The Raccoon",
+ "symbol": "Jimothy",
+ "marketCap": "5200822.834881967578969978",
+ "price": "0.00520117125559290377",
+ "priceChange24hPercent": "-0.73",
+ "volume24h": "4179.83298275995",
+ "communityRecognized": true,
+ "key": "sol--101:Ge87EtsjwRQbHaqQmKRno69RFTwh9bfSsm99XNxTpump",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "2jzcLT2Xgx8RjJ6q1yUwyVu9qtN8nHjJ7ScgVMnYFL5e",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/480bf15850892d41b7e93ac5bc5c5f96cdb3b6c1d687413254ed6851f0542e3e",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/480bf15850892d41b7e93ac5bc5c5f96cdb3b6c1d687413254ed6851f0542e3e"
+ ],
+ "name": "Google",
+ "symbol": "GOOGL",
+ "marketCap": "4953635.009465024918252686",
+ "price": "0.00004953635042784716",
+ "priceChange24hPercent": "1.37",
+ "volume24h": "1102989.94730502613",
+ "communityRecognized": false,
+ "key": "sol--101:2jzcLT2Xgx8RjJ6q1yUwyVu9qtN8nHjJ7ScgVMnYFL5e",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "poNSfquKq512ApeYjVghwViSun4x1MhCqHVH2Paq4jN",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-poNSfquKq512ApeYjVghwViSun4x1MhCqHVH2Paq4jN-1788282231281.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-poNSfquKq512ApeYjVghwViSun4x1MhCqHVH2Paq4jN-1788282231281.png"
+ ],
+ "name": "Pons",
+ "symbol": "PONS",
+ "marketCap": "1216890.936296467279698441",
+ "price": "0.70271179731256876631",
+ "priceChange24hPercent": "-1.02",
+ "volume24h": "1296.3224986549",
+ "communityRecognized": true,
+ "key": "sol--101:poNSfquKq512ApeYjVghwViSun4x1MhCqHVH2Paq4jN",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "HooDYv5RewLRiMLnEVq3VJqdqxhuE6c5eYvqejMC3e9A",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-HooDYv5RewLRiMLnEVq3VJqdqxhuE6c5eYvqejMC3e9A-1784387203502.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-HooDYv5RewLRiMLnEVq3VJqdqxhuE6c5eYvqejMC3e9A-1784387203502.png"
+ ],
+ "name": "Robinhood Markets - Backpack Securities",
+ "symbol": "HOOD",
+ "marketCap": "689506.491565078192340844",
+ "price": "123.13754463735993104298",
+ "priceChange24hPercent": "-0.1",
+ "volume24h": "1234.766133924294",
+ "communityRecognized": false,
+ "key": "sol--101:HooDYv5RewLRiMLnEVq3VJqdqxhuE6c5eYvqejMC3e9A",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "EicWvteVi2fWepEzS3FYWsnuPoP6caZfjnKqNvydLjCH",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-EicWvteVi2fWepEzS3FYWsnuPoP6caZfjnKqNvydLjCH-1768663250541.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-EicWvteVi2fWepEzS3FYWsnuPoP6caZfjnKqNvydLjCH-1768663250541.png"
+ ],
+ "name": "Lighter",
+ "symbol": "LIT",
+ "marketCap": "2406344.494081651100392756",
+ "price": "4.64379141369534667178",
+ "priceChange24hPercent": "1.04",
+ "volume24h": "31070.22448907826",
+ "communityRecognized": false,
+ "key": "sol--101:EicWvteVi2fWepEzS3FYWsnuPoP6caZfjnKqNvydLjCH",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "14LzYKr9UyKmi2kqwDe8k5tXiKmq73h5LLDrXX6Dpump",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/66cdefa083d681f1eba5b1a9f0abadb3ac42c6ef94b9e565d6ff4ecca97ceb3b",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/66cdefa083d681f1eba5b1a9f0abadb3ac42c6ef94b9e565d6ff4ecca97ceb3b"
+ ],
+ "name": "World Oil Trust Fund",
+ "symbol": "WOTF",
+ "marketCap": "3313946.354944802671266178",
+ "price": "0.00331590200615015922",
+ "priceChange24hPercent": "0.94",
+ "volume24h": "937.09187403929",
+ "communityRecognized": false,
+ "key": "sol--101:14LzYKr9UyKmi2kqwDe8k5tXiKmq73h5LLDrXX6Dpump",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "Xs8S1uUs1zvS2p7iwtsG3b6fkhpvmwz4GYU3gWAmWHZ",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-Xs8S1uUs1zvS2p7iwtsG3b6fkhpvmwz4GYU3gWAmWHZ-1758104625424.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-Xs8S1uUs1zvS2p7iwtsG3b6fkhpvmwz4GYU3gWAmWHZ-1758104625424.png"
+ ],
+ "name": "Nasdaq xStock",
+ "symbol": "QQQx",
+ "marketCap": "36239960.151659816287497574",
+ "price": "718.93420524208829164119",
+ "priceChange24hPercent": "-",
+ "volume24h": "645.8853273350657873",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 xStock 代币化发行",
+ "subtitle": "纳指ETF",
+ "source": "xstock",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/xstock.png",
+ "isOpen": true
+ },
+ "key": "sol--101:Xs8S1uUs1zvS2p7iwtsG3b6fkhpvmwz4GYU3gWAmWHZ",
+ "kind": "stock",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "A13oRB9FFaiUjfi6LdCg6p9ka1u8SfGkUFs4SKvPpump",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-A13oRB9FFaiUjfi6LdCg6p9ka1u8SfGkUFs4SKvPpump-1786208973375.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-A13oRB9FFaiUjfi6LdCg6p9ka1u8SfGkUFs4SKvPpump-1786208973375.png"
+ ],
+ "name": "The Toad Pepe",
+ "symbol": "TOAD",
+ "marketCap": "3811760.624214865858761162",
+ "price": "0.00396827439325526335",
+ "priceChange24hPercent": "2.05",
+ "volume24h": "10236.37090544193150593",
+ "communityRecognized": true,
+ "key": "sol--101:A13oRB9FFaiUjfi6LdCg6p9ka1u8SfGkUFs4SKvPpump",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "4k3Dyjzvzp8eMZWUXbBCjEvwSkkk59S5iCNLY3QrkX6R",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-4k3Dyjzvzp8eMZWUXbBCjEvwSkkk59S5iCNLY3QrkX6R-1758104080638.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-4k3Dyjzvzp8eMZWUXbBCjEvwSkkk59S5iCNLY3QrkX6R-1758104080638.png"
+ ],
+ "name": "Raydium",
+ "symbol": "RAY",
+ "marketCap": "686552423.523398301690605977",
+ "price": "1.23703686994343528221",
+ "priceChange24hPercent": "-0.61",
+ "volume24h": "145512.498836792132282",
+ "communityRecognized": true,
+ "key": "sol--101:4k3Dyjzvzp8eMZWUXbBCjEvwSkkk59S5iCNLY3QrkX6R",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "taoC6xyv2v8tDLcev4uaGUgV4vdQsWJrGft2kcBRrBY",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-taoC6xyv2v8tDLcev4uaGUgV4vdQsWJrGft2kcBRrBY-1778080135513.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-taoC6xyv2v8tDLcev4uaGUgV4vdQsWJrGft2kcBRrBY-1778080135513.png"
+ ],
+ "name": "Bittensor",
+ "symbol": "TAO",
+ "marketCap": "513859.107833253416823347",
+ "price": "253.29102729219274125932",
+ "priceChange24hPercent": "-0.74",
+ "volume24h": "991.26372896208",
+ "communityRecognized": true,
+ "key": "sol--101:taoC6xyv2v8tDLcev4uaGUgV4vdQsWJrGft2kcBRrBY",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "CWZ6BsdnjkDVTGkmL6bGbJXXig6ceef12KvyGQW14cMt",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-CWZ6BsdnjkDVTGkmL6bGbJXXig6ceef12KvyGQW14cMt-1777993905309.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-CWZ6BsdnjkDVTGkmL6bGbJXXig6ceef12KvyGQW14cMt-1777993905309.png"
+ ],
+ "name": "AntFun",
+ "symbol": "ANTFUN",
+ "marketCap": "146373036.274191056476698399",
+ "price": "0.0775381209271946691",
+ "priceChange24hPercent": "0.09",
+ "volume24h": "36715.2113540549",
+ "communityRecognized": true,
+ "key": "sol--101:CWZ6BsdnjkDVTGkmL6bGbJXXig6ceef12KvyGQW14cMt",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "6XEcoa3Yo36h3Kee7VWEVYarZXGSWyCytaMM6Vdmpump",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/8962d5a913044b5b1dfc00ad97248edf897bcaab451282222cb26fff7f00dbf7",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/8962d5a913044b5b1dfc00ad97248edf897bcaab451282222cb26fff7f00dbf7"
+ ],
+ "name": "LAPTOP",
+ "symbol": "LAPTOP",
+ "marketCap": "291460640.98501257716310576",
+ "price": "0.2914641742743823548",
+ "priceChange24hPercent": "0.51",
+ "volume24h": "5072.68475222189",
+ "communityRecognized": false,
+ "key": "sol--101:6XEcoa3Yo36h3Kee7VWEVYarZXGSWyCytaMM6Vdmpump",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "4sWNB8zGWHkh6UnmwiEtzNxL4XrN7uK9tosbESbJFfVs",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-4sWNB8zGWHkh6UnmwiEtzNxL4XrN7uK9tosbESbJFfVs-1760026347869.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-4sWNB8zGWHkh6UnmwiEtzNxL4XrN7uK9tosbESbJFfVs-1760026347869.png"
+ ],
+ "name": "Hylo 3x Leveraged SOL",
+ "symbol": "xSOL",
+ "marketCap": "10864904.970999715678546518",
+ "price": "0.06684207650045292303",
+ "priceChange24hPercent": "0.4",
+ "volume24h": "7993.91861744422",
+ "communityRecognized": false,
+ "key": "sol--101:4sWNB8zGWHkh6UnmwiEtzNxL4XrN7uK9tosbESbJFfVs",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "XsCPL9dNWBMvFtTmwcCA5v3xWPSMEBCszbQdiLLq6aN",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-XsCPL9dNWBMvFtTmwcCA5v3xWPSMEBCszbQdiLLq6aN-1758104813770.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-XsCPL9dNWBMvFtTmwcCA5v3xWPSMEBCszbQdiLLq6aN-1758104813770.png"
+ ],
+ "name": "Alphabet xStock",
+ "symbol": "GOOGLx",
+ "marketCap": "34924511.355344239332582928",
+ "price": "338.91520691789838497732",
+ "priceChange24hPercent": "-",
+ "volume24h": "4039.3693869963994471",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 xStock 代币化发行",
+ "subtitle": "谷歌",
+ "source": "xstock",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/xstock.png",
+ "isOpen": true
+ },
+ "key": "sol--101:XsCPL9dNWBMvFtTmwcCA5v3xWPSMEBCszbQdiLLq6aN",
+ "kind": "stock",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "2zCo6bUowJMvr89ajxuWsPadAqJ2F9akCkxumNsSdgsL",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-2zCo6bUowJMvr89ajxuWsPadAqJ2F9akCkxumNsSdgsL-1784819448907.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-2zCo6bUowJMvr89ajxuWsPadAqJ2F9akCkxumNsSdgsL-1784819448907.png"
+ ],
+ "name": "Hylo 3x Leveraged BTC",
+ "symbol": "xBTC",
+ "marketCap": "838685.045678011158375224",
+ "price": "1.88860655963693248077",
+ "priceChange24hPercent": "-1.86",
+ "volume24h": "8423.2631439464662596",
+ "communityRecognized": false,
+ "key": "sol--101:2zCo6bUowJMvr89ajxuWsPadAqJ2F9akCkxumNsSdgsL",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "8RDq8d3uD9mD5K75f1dEGyubN6jGArDMZaA8J4MNpump",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/b90aa9cb8975301bb6924ec124111466ea8177e6be04bd055815c3471ddd5865",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/b90aa9cb8975301bb6924ec124111466ea8177e6be04bd055815c3471ddd5865"
+ ],
+ "name": "OnlyPump",
+ "symbol": "ONLYPUMP",
+ "marketCap": "1278764.360847444143365787",
+ "price": "0.00129019682178680519",
+ "priceChange24hPercent": "-7.5",
+ "volume24h": "8530.68786776438",
+ "communityRecognized": false,
+ "key": "sol--101:8RDq8d3uD9mD5K75f1dEGyubN6jGArDMZaA8J4MNpump",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "Ge9V1kPBbYS2ZEFrXNZoQH49mit7wwdDM7nkMWXKoU13",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/3ba11606482d432ebc4b5c1dd4818bca38010abb3a42010023d5cf8970e3e808",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/3ba11606482d432ebc4b5c1dd4818bca38010abb3a42010023d5cf8970e3e808"
+ ],
+ "name": "NVIDIA",
+ "symbol": "NVDA",
+ "marketCap": "1605662.395908015353515114",
+ "price": "0.00001605662415759666",
+ "priceChange24hPercent": "0.91",
+ "volume24h": "1503453.2996645035",
+ "communityRecognized": false,
+ "key": "sol--101:Ge9V1kPBbYS2ZEFrXNZoQH49mit7wwdDM7nkMWXKoU13",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "9PtRbAeHbgctGvw3CBn6v6mDeYN9VPW8GzbAUZLLpump",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/9648ca4548877715a330109ae45eca7f0f871fb8925da4e7845d195b0bdee65f",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/9648ca4548877715a330109ae45eca7f0f871fb8925da4e7845d195b0bdee65f"
+ ],
+ "name": "LAPTOP",
+ "symbol": "LAPTOP",
+ "marketCap": "183297253.011303098947812777",
+ "price": "0.18329947563545136492",
+ "priceChange24hPercent": "0.39",
+ "volume24h": "4543.00448125329",
+ "communityRecognized": false,
+ "key": "sol--101:9PtRbAeHbgctGvw3CBn6v6mDeYN9VPW8GzbAUZLLpump",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "XsqE9cRRpzxcGKDXj1BJ7Xmg4GRhZoyY1KpmGSxAWT2",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-XsqE9cRRpzxcGKDXj1BJ7Xmg4GRhZoyY1KpmGSxAWT2-1758106345798.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-XsqE9cRRpzxcGKDXj1BJ7Xmg4GRhZoyY1KpmGSxAWT2-1758106345798.png"
+ ],
+ "name": "McDonald's xStock",
+ "symbol": "MCDx",
+ "marketCap": "1408079.851319124295748968",
+ "price": "256.31462582720271173137",
+ "priceChange24hPercent": "-",
+ "volume24h": "3856.794298641466889",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 xStock 代币化发行",
+ "subtitle": "麦当劳",
+ "source": "xstock",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/xstock.png",
+ "isOpen": true
+ },
+ "key": "sol--101:XsqE9cRRpzxcGKDXj1BJ7Xmg4GRhZoyY1KpmGSxAWT2",
+ "kind": "stock",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "Xs3eBt7uRfJX8QUs4suhyU8p2M6DoUDrJyWBa8LLZsg",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-Xs3eBt7uRfJX8QUs4suhyU8p2M6DoUDrJyWBa8LLZsg-1758104996614.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-Xs3eBt7uRfJX8QUs4suhyU8p2M6DoUDrJyWBa8LLZsg-1758104996614.png"
+ ],
+ "name": "Amazon.com xStock",
+ "symbol": "AMZNx",
+ "marketCap": "7913177.445307286183162875",
+ "price": "257.64356976163718587775",
+ "priceChange24hPercent": "-",
+ "volume24h": "1677.78379941789044",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 xStock 代币化发行",
+ "subtitle": "亚马逊",
+ "source": "xstock",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/xstock.png",
+ "isOpen": true
+ },
+ "key": "sol--101:Xs3eBt7uRfJX8QUs4suhyU8p2M6DoUDrJyWBa8LLZsg",
+ "kind": "stock",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "AMC1qwR9KhiyrQBRPrxnfo4JfMeMZqEBvt5tgTytNNoc",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-AMC1qwR9KhiyrQBRPrxnfo4JfMeMZqEBvt5tgTytNNoc-1788800722604.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-AMC1qwR9KhiyrQBRPrxnfo4JfMeMZqEBvt5tgTytNNoc-1788800722604.png"
+ ],
+ "name": "AMC Entertainment - Backpack Securities",
+ "symbol": "AMC",
+ "marketCap": "137339.961933871671759057",
+ "price": "2.67350501964207769533",
+ "priceChange24hPercent": "0.94",
+ "volume24h": "4384.2486296255712177",
+ "communityRecognized": false,
+ "key": "sol--101:AMC1qwR9KhiyrQBRPrxnfo4JfMeMZqEBvt5tgTytNNoc",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "4oMGu2C6ws5o75B4mRruH7j6VLq1E1zjfkVnwUpFpump",
+ "logoUrl": "https://static.oklink.com/cdn/web3/currency/token/large/501-4oMGu2C6ws5o75B4mRruH7j6VLq1E1zjfkVnwUpFpump-107/type=default_90_0?v=1788834416766",
+ "logoUrls": [
+ "https://static.oklink.com/cdn/web3/currency/token/large/501-4oMGu2C6ws5o75B4mRruH7j6VLq1E1zjfkVnwUpFpump-107/type=default_90_0?v=1788834416766"
+ ],
+ "name": "Global Oil Asset Fund",
+ "symbol": "GOAF",
+ "marketCap": "24617835.459750582796729443",
+ "price": "0.02461999250136994203",
+ "priceChange24hPercent": "0.59",
+ "volume24h": "4768.56328722748",
+ "communityRecognized": false,
+ "key": "sol--101:4oMGu2C6ws5o75B4mRruH7j6VLq1E1zjfkVnwUpFpump",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "tKUKRvhsHHE4S7e9pkZFjnAbnrPR8VXyFtXrXf1pump",
+ "logoUrl": "https://static.oklink.com/cdn/web3/currency/token/large/501-tKUKRvhsHHE4S7e9pkZFjnAbnrPR8VXyFtXrXf1pump-107/type=default_90_0?v=1788831394642",
+ "logoUrls": [
+ "https://static.oklink.com/cdn/web3/currency/token/large/501-tKUKRvhsHHE4S7e9pkZFjnAbnrPR8VXyFtXrXf1pump-107/type=default_90_0?v=1788831394642"
+ ],
+ "name": "Global Oil Asset Fund",
+ "symbol": "GOAF",
+ "marketCap": "2441910.839910951788086378",
+ "price": "0.00244387749661186325",
+ "priceChange24hPercent": "1.01",
+ "volume24h": "673.10923871013",
+ "communityRecognized": false,
+ "key": "sol--101:tKUKRvhsHHE4S7e9pkZFjnAbnrPR8VXyFtXrXf1pump",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "CFNRDaxFcvRwRSNnA5cHrCCr6AHhk9dNkHWpRUjNupFL",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-CFNRDaxFcvRwRSNnA5cHrCCr6AHhk9dNkHWpRUjNupFL-1786726803397.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-CFNRDaxFcvRwRSNnA5cHrCCr6AHhk9dNkHWpRUjNupFL-1786726803397.png"
+ ],
+ "name": "Raydium Cat",
+ "symbol": "RAYCAT",
+ "marketCap": "1893911.010287750036666526",
+ "price": "0.00195948638071893547",
+ "priceChange24hPercent": "-1.73",
+ "volume24h": "9090.0993762351",
+ "communityRecognized": false,
+ "key": "sol--101:CFNRDaxFcvRwRSNnA5cHrCCr6AHhk9dNkHWpRUjNupFL",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "Xsv9hRk1z5ystj9MhnA7Lq4vjSsLwzL2nxrwmwtD3re",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-Xsv9hRk1z5ystj9MhnA7Lq4vjSsLwzL2nxrwmwtD3re-1758104319384.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-Xsv9hRk1z5ystj9MhnA7Lq4vjSsLwzL2nxrwmwtD3re-1758104319384.png"
+ ],
+ "name": "Gold xStock",
+ "symbol": "GLDx",
+ "marketCap": "10061471.106234484581859928",
+ "price": "406.92792228575909247763",
+ "priceChange24hPercent": "-",
+ "volume24h": "8049.32022705391361165",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 xStock 代币化发行",
+ "subtitle": "黄金ETF",
+ "source": "xstock",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/xstock.png",
+ "isOpen": true
+ },
+ "key": "sol--101:Xsv9hRk1z5ystj9MhnA7Lq4vjSsLwzL2nxrwmwtD3re",
+ "kind": "stock",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "Cu49bzY6R1wXVqeZzJggYcZiz8fHb9P17mbEzutg4Pq1",
+ "logoUrl": "https://static.oklink.com/cdn/web3/currency/token/large/501-Cu49bzY6R1wXVqeZzJggYcZiz8fHb9P17mbEzutg4Pq1-109/type=default_90_0?v=1788837736188",
+ "logoUrls": [
+ "https://static.oklink.com/cdn/web3/currency/token/large/501-Cu49bzY6R1wXVqeZzJggYcZiz8fHb9P17mbEzutg4Pq1-109/type=default_90_0?v=1788837736188"
+ ],
+ "name": "Xtremely Retarded People",
+ "symbol": "XRP",
+ "marketCap": "219234.994074005715984401",
+ "price": "0.00022574850990482328",
+ "priceChange24hPercent": "20.13",
+ "volume24h": "49124.6028250203",
+ "communityRecognized": false,
+ "key": "sol--101:Cu49bzY6R1wXVqeZzJggYcZiz8fHb9P17mbEzutg4Pq1",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "7mtBeR8tTtsuojkGziZxzn1GuPeBZH44UBdxwkLopump",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/849174a8bc7837a93979a42f2e648f146724ece15a8b1991a64bd6f4e474a229",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/849174a8bc7837a93979a42f2e648f146724ece15a8b1991a64bd6f4e474a229"
+ ],
+ "name": "StockCat",
+ "symbol": "StockCat",
+ "marketCap": "6119968.148121209288292933",
+ "price": "0.00612191822872152392",
+ "priceChange24hPercent": "3.21",
+ "volume24h": "6652.34403618728",
+ "communityRecognized": false,
+ "key": "sol--101:7mtBeR8tTtsuojkGziZxzn1GuPeBZH44UBdxwkLopump",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "dBSMwYCh46fzR26mJ5S5stq8hgFCk4YNKiuc3wDpump",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/208e6372660992411a1210b6fe208eecc6137ba585cd10c85d1929cd0dd5b957",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/208e6372660992411a1210b6fe208eecc6137ba585cd10c85d1929cd0dd5b957"
+ ],
+ "name": "LAPTOP",
+ "symbol": "LAPTOP",
+ "marketCap": "1201833.494998878251640164",
+ "price": "0.00120453149843313602",
+ "priceChange24hPercent": "-0.01",
+ "volume24h": "665.221191",
+ "communityRecognized": false,
+ "key": "sol--101:dBSMwYCh46fzR26mJ5S5stq8hgFCk4YNKiuc3wDpump",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "Pren1FvFX6J3E4kXhJuCiAD5aDmGEb7qJRncwA8Lkhw",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-Pren1FvFX6J3E4kXhJuCiAD5aDmGEb7qJRncwA8Lkhw-1760025966243.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-Pren1FvFX6J3E4kXhJuCiAD5aDmGEb7qJRncwA8Lkhw-1760025966243.png"
+ ],
+ "name": "Anthropic PreStocks",
+ "symbol": "ANTHROPIC",
+ "marketCap": "7016150.444852688717672937",
+ "price": "950.31252774720350071284",
+ "priceChange24hPercent": "0",
+ "volume24h": "11484.9088939082865767",
+ "communityRecognized": true,
+ "key": "sol--101:Pren1FvFX6J3E4kXhJuCiAD5aDmGEb7qJRncwA8Lkhw",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "Yce8zMKDLLJEWFUghsX4oszsb6vLi3men7zEjf4pump",
+ "logoUrl": "https://static.oklink.com/cdn/web3/currency/token/large/501-Yce8zMKDLLJEWFUghsX4oszsb6vLi3men7zEjf4pump-107/type=default_90_0?v=1788828570767",
+ "logoUrls": [
+ "https://static.oklink.com/cdn/web3/currency/token/large/501-Yce8zMKDLLJEWFUghsX4oszsb6vLi3men7zEjf4pump-107/type=default_90_0?v=1788828570767"
+ ],
+ "name": "World Oil Trust Fund",
+ "symbol": "WOTF",
+ "marketCap": "2638795.328619456944998468",
+ "price": "0.00264074356031892609",
+ "priceChange24hPercent": "-0.09",
+ "volume24h": "711.41330428672",
+ "communityRecognized": false,
+ "key": "sol--101:Yce8zMKDLLJEWFUghsX4oszsb6vLi3men7zEjf4pump",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "MEW1gQWJ3nEXg2qgERiKu7FAFj79PHvQVREQUzScPP5",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-MEW1gQWJ3nEXg2qgERiKu7FAFj79PHvQVREQUzScPP5-1758104096089.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-MEW1gQWJ3nEXg2qgERiKu7FAFj79PHvQVREQUzScPP5-1758104096089.png"
+ ],
+ "name": "cat in a dogs world",
+ "symbol": "MEW",
+ "marketCap": "39019919.681995329548095131",
+ "price": "0.00043899101289593032",
+ "priceChange24hPercent": "0.67",
+ "volume24h": "2704.6971132162",
+ "communityRecognized": true,
+ "key": "sol--101:MEW1gQWJ3nEXg2qgERiKu7FAFj79PHvQVREQUzScPP5",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "PreweJYECqtQwBtpxHL171nL2K6umo692gTm7Q3rpgF",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-PreweJYECqtQwBtpxHL171nL2K6umo692gTm7Q3rpgF-1760026398838.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-PreweJYECqtQwBtpxHL171nL2K6umo692gTm7Q3rpgF-1760026398838.png"
+ ],
+ "name": "OpenAI PreStocks",
+ "symbol": "OPENAI",
+ "marketCap": "1440213.737147570420238763",
+ "price": "1026.6377008080411145584",
+ "priceChange24hPercent": "-0.76",
+ "volume24h": "3913.7331078491",
+ "communityRecognized": true,
+ "key": "sol--101:PreweJYECqtQwBtpxHL171nL2K6umo692gTm7Q3rpgF",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "HmJDgky11u77hpBss6D8sjNpYPD5B6fWgSVDj58jpump",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-HmJDgky11u77hpBss6D8sjNpYPD5B6fWgSVDj58jpump-1788282013603.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-HmJDgky11u77hpBss6D8sjNpYPD5B6fWgSVDj58jpump-1788282013603.png"
+ ],
+ "name": "Solcat",
+ "symbol": "SOLCAT",
+ "marketCap": "807860.209301424790721954",
+ "price": "0.00081644136785127577",
+ "priceChange24hPercent": "-1.06",
+ "volume24h": "916.80873469827",
+ "communityRecognized": true,
+ "key": "sol--101:HmJDgky11u77hpBss6D8sjNpYPD5B6fWgSVDj58jpump",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "RmtMAYVTTFv2iK9muMrXEoAnSSsZPPgRPbqZCKwNDYk",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-RmtMAYVTTFv2iK9muMrXEoAnSSsZPPgRPbqZCKwNDYk-1786986032590.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-RmtMAYVTTFv2iK9muMrXEoAnSSsZPPgRPbqZCKwNDYk-1786986032590.png"
+ ],
+ "name": "BULLS'S EYE",
+ "symbol": "EYE",
+ "marketCap": "147742.068814700823124318",
+ "price": "0.00014786094452955318",
+ "priceChange24hPercent": "-4.22",
+ "volume24h": "1402.90784494732",
+ "communityRecognized": true,
+ "key": "sol--101:RmtMAYVTTFv2iK9muMrXEoAnSSsZPPgRPbqZCKwNDYk",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "DUZN7M6ezXez9UVrou4N8UEGRkwnbWmXqqZgEKiZCrnN",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-DUZN7M6ezXez9UVrou4N8UEGRkwnbWmXqqZgEKiZCrnN-1788454967021.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-DUZN7M6ezXez9UVrou4N8UEGRkwnbWmXqqZgEKiZCrnN-1788454967021.png"
+ ],
+ "name": "Marketplier",
+ "symbol": "MARKET",
+ "marketCap": "553744.257303653861128357",
+ "price": "0.00057101973343138657",
+ "priceChange24hPercent": "5.09",
+ "volume24h": "847.72770163712596",
+ "communityRecognized": false,
+ "key": "sol--101:DUZN7M6ezXez9UVrou4N8UEGRkwnbWmXqqZgEKiZCrnN",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "zrmswgfyBjwCFziMo4S5EQdpx2GWRBpEK3vK434tx22",
+ "logoUrl": "https://static.oklink.com/cdn/web3/currency/token/large/501-zrmswgfyBjwCFziMo4S5EQdpx2GWRBpEK3vK434tx22-108/type=default_90_0?v=1788839128437",
+ "logoUrls": [
+ "https://static.oklink.com/cdn/web3/currency/token/large/501-zrmswgfyBjwCFziMo4S5EQdpx2GWRBpEK3vK434tx22-108/type=default_90_0?v=1788839128437"
+ ],
+ "name": "Token",
+ "symbol": "Token",
+ "marketCap": "192034.423280784016747696",
+ "price": "0.00019843566334029236",
+ "priceChange24hPercent": "440.37",
+ "volume24h": "124926.14773329114",
+ "communityRecognized": false,
+ "key": "sol--101:zrmswgfyBjwCFziMo4S5EQdpx2GWRBpEK3vK434tx22",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "95rMjSVt4tXy2nDjfPDXFbT3bj8D72grhxk5pzD8pump",
+ "logoUrl": "https://static.oklink.com/cdn/web3/currency/token/large/501-95rMjSVt4tXy2nDjfPDXFbT3bj8D72grhxk5pzD8pump-107/type=default_90_0?v=1788834468487",
+ "logoUrls": [
+ "https://static.oklink.com/cdn/web3/currency/token/large/501-95rMjSVt4tXy2nDjfPDXFbT3bj8D72grhxk5pzD8pump-107/type=default_90_0?v=1788834468487"
+ ],
+ "name": "GTA6",
+ "symbol": "GTA 6 Coin",
+ "marketCap": "3457172.104425155912023701",
+ "price": "0.0034603707848543798",
+ "priceChange24hPercent": "3.15",
+ "volume24h": "4464.68836846492",
+ "communityRecognized": false,
+ "key": "sol--101:95rMjSVt4tXy2nDjfPDXFbT3bj8D72grhxk5pzD8pump",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "FMqh9mqR6drPZqqW6wPqLHxX4rqNDWGhYLaMfoaJpump",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-FMqh9mqR6drPZqqW6wPqLHxX4rqNDWGhYLaMfoaJpump-1782315064836.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-FMqh9mqR6drPZqqW6wPqLHxX4rqNDWGhYLaMfoaJpump-1782315064836.png"
+ ],
+ "name": "world.xyz",
+ "symbol": "world",
+ "marketCap": "2832118.370936333543706934",
+ "price": "0.00283232497221086057",
+ "priceChange24hPercent": "1.34",
+ "volume24h": "1487.90729074637",
+ "communityRecognized": false,
+ "key": "sol--101:FMqh9mqR6drPZqqW6wPqLHxX4rqNDWGhYLaMfoaJpump",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "rBUZDXHWXrCPLfytCVqagvveqzMwB9tYCpZqxSKpump",
+ "logoUrl": "https://static.oklink.com/cdn/web3/currency/token/large/501-rBUZDXHWXrCPLfytCVqagvveqzMwB9tYCpZqxSKpump-107/type=default_90_0?v=1788786466446",
+ "logoUrls": [
+ "https://static.oklink.com/cdn/web3/currency/token/large/501-rBUZDXHWXrCPLfytCVqagvveqzMwB9tYCpZqxSKpump-107/type=default_90_0?v=1788786466446"
+ ],
+ "name": "RST",
+ "symbol": "RST",
+ "marketCap": "276357353.930585846709807917",
+ "price": "0.27636639640813074159",
+ "priceChange24hPercent": "0.69",
+ "volume24h": "5647.59729332839",
+ "communityRecognized": false,
+ "key": "sol--101:rBUZDXHWXrCPLfytCVqagvveqzMwB9tYCpZqxSKpump",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "GPRR2u6NS5yBQHWGauoJ9HXgjrTH8dDsrBfTV5zAYvDH",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-GPRR2u6NS5yBQHWGauoJ9HXgjrTH8dDsrBfTV5zAYvDH-1788370277445.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-GPRR2u6NS5yBQHWGauoJ9HXgjrTH8dDsrBfTV5zAYvDH-1788370277445.png"
+ ],
+ "name": "GoPro - Backpack Securities",
+ "symbol": "GPRO",
+ "marketCap": "367215.739871755057607796",
+ "price": "1.68106738019190069462",
+ "priceChange24hPercent": "0.53",
+ "volume24h": "2158.446369511573444",
+ "communityRecognized": false,
+ "key": "sol--101:GPRR2u6NS5yBQHWGauoJ9HXgjrTH8dDsrBfTV5zAYvDH",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "Xs3oZwbHvqis4NYcf4YKWmEia2eC84wSiVrcYcTqpH8",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-Xs3oZwbHvqis4NYcf4YKWmEia2eC84wSiVrcYcTqpH8-1781088143961.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-Xs3oZwbHvqis4NYcf4YKWmEia2eC84wSiVrcYcTqpH8-1781088143961.png"
+ ],
+ "name": "SpaceX xStock",
+ "symbol": "SPCXx",
+ "marketCap": "84108278.742033447986004943",
+ "price": "150.19453876292317649802",
+ "priceChange24hPercent": "-",
+ "volume24h": "16136.765119454499220062",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 xStock 代币化发行",
+ "subtitle": "SpaceX",
+ "source": "xstock",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/xstock.png",
+ "isOpen": true
+ },
+ "key": "sol--101:Xs3oZwbHvqis4NYcf4YKWmEia2eC84wSiVrcYcTqpH8",
+ "kind": "stock",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "Cc9K64oaBu1STW17uAr19zuDFaBRLfDu6txXvKmfuHRH",
+ "logoUrl": "https://static.oklink.com/cdn/web3/currency/token/large/501-Cc9K64oaBu1STW17uAr19zuDFaBRLfDu6txXvKmfuHRH-107/type=default_90_0?v=1788835547506",
+ "logoUrls": [
+ "https://static.oklink.com/cdn/web3/currency/token/large/501-Cc9K64oaBu1STW17uAr19zuDFaBRLfDu6txXvKmfuHRH-107/type=default_90_0?v=1788835547506"
+ ],
+ "name": "牛来",
+ "symbol": "牛来",
+ "marketCap": "180737.013822232044522187",
+ "price": "0.00018073701382223204",
+ "priceChange24hPercent": "8",
+ "volume24h": "4735.11376113714",
+ "communityRecognized": false,
+ "key": "sol--101:Cc9K64oaBu1STW17uAr19zuDFaBRLfDu6txXvKmfuHRH",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "8UNfwwsuCwzVgABzmUChkZGSe9ZCm2dmYfK7ALHLpump",
+ "logoUrl": "https://static.oklink.com/cdn/web3/currency/token/large/501-8UNfwwsuCwzVgABzmUChkZGSe9ZCm2dmYfK7ALHLpump-107/type=default_90_0?v=1788827339608",
+ "logoUrls": [
+ "https://static.oklink.com/cdn/web3/currency/token/large/501-8UNfwwsuCwzVgABzmUChkZGSe9ZCm2dmYfK7ALHLpump-107/type=default_90_0?v=1788827339608"
+ ],
+ "name": "PROJECT ONYX",
+ "symbol": "PONYX",
+ "marketCap": "39935324.889704196475743652",
+ "price": "0.0399381975019444034",
+ "priceChange24hPercent": "0.79",
+ "volume24h": "2581.1558878319",
+ "communityRecognized": false,
+ "key": "sol--101:8UNfwwsuCwzVgABzmUChkZGSe9ZCm2dmYfK7ALHLpump",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "DVabFaj9qaZaEKgkJVQGmMmNvNCpunqoTKd3w5NSpump",
+ "logoUrl": "https://static.oklink.com/cdn/web3/currency/token/large/501-DVabFaj9qaZaEKgkJVQGmMmNvNCpunqoTKd3w5NSpump-107/type=default_90_0?v=1788817057043",
+ "logoUrls": [
+ "https://static.oklink.com/cdn/web3/currency/token/large/501-DVabFaj9qaZaEKgkJVQGmMmNvNCpunqoTKd3w5NSpump-107/type=default_90_0?v=1788817057043"
+ ],
+ "name": "Charley Davidson",
+ "symbol": "CHARLEY",
+ "marketCap": "25246.560096744536018853",
+ "price": "0.0000264703778694293",
+ "priceChange24hPercent": "29.85",
+ "volume24h": "2547.80227857624",
+ "communityRecognized": false,
+ "key": "sol--101:DVabFaj9qaZaEKgkJVQGmMmNvNCpunqoTKd3w5NSpump",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "1QL5r1mmdK2fCkpLm8mKBbyW2rGgXguYFezGV7bpump",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/2ed1420469fdc08d798857a005677567f579edd24a7f3f4b18d53627ad24c326",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/2ed1420469fdc08d798857a005677567f579edd24a7f3f4b18d53627ad24c326"
+ ],
+ "name": "GTA VI",
+ "symbol": "GTA6",
+ "marketCap": "2054594.116228178364305307",
+ "price": "0.00205768265872182517",
+ "priceChange24hPercent": "0.75",
+ "volume24h": "9438.548558",
+ "communityRecognized": false,
+ "key": "sol--101:1QL5r1mmdK2fCkpLm8mKBbyW2rGgXguYFezGV7bpump",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "HGgCMpbaB1HMqJeJbS2Pnq7uNf5eT5ABuU2JqiNHpump",
+ "logoUrl": "https://static.oklink.com/cdn/web3/currency/token/large/501-HGgCMpbaB1HMqJeJbS2Pnq7uNf5eT5ABuU2JqiNHpump-107/type=default_90_0?v=1788838698695",
+ "logoUrls": [
+ "https://static.oklink.com/cdn/web3/currency/token/large/501-HGgCMpbaB1HMqJeJbS2Pnq7uNf5eT5ABuU2JqiNHpump-107/type=default_90_0?v=1788838698695"
+ ],
+ "name": "OFFICIAL BARRON",
+ "symbol": "BARRON",
+ "marketCap": "9791594.856016764985468988",
+ "price": "0.00979344124798922728",
+ "priceChange24hPercent": "-0.01",
+ "volume24h": "619.84012195985",
+ "communityRecognized": false,
+ "key": "sol--101:HGgCMpbaB1HMqJeJbS2Pnq7uNf5eT5ABuU2JqiNHpump",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "9BB6NFEcjBCtnNLFko2FqVQBq8HHM13kCyYcdQbgpump",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-9BB6NFEcjBCtnNLFko2FqVQBq8HHM13kCyYcdQbgpump-1758104080638.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-9BB6NFEcjBCtnNLFko2FqVQBq8HHM13kCyYcdQbgpump-1758104080638.png"
+ ],
+ "name": "Fartcoin ",
+ "symbol": "Fartcoin ",
+ "marketCap": "169844413.049888839356340515",
+ "price": "0.16984879414918682233",
+ "priceChange24hPercent": "-0.05",
+ "volume24h": "5094.133385641835287983",
+ "communityRecognized": true,
+ "key": "sol--101:9BB6NFEcjBCtnNLFko2FqVQBq8HHM13kCyYcdQbgpump",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "hSsA7ATLNk1HuRfp6Y4eKTkJhyRuB7CWtJ5grb3pump",
+ "logoUrl": "https://static.oklink.com/cdn/web3/currency/token/large/501-hSsA7ATLNk1HuRfp6Y4eKTkJhyRuB7CWtJ5grb3pump-108/type=default_90_0?v=1788833065397",
+ "logoUrls": [
+ "https://static.oklink.com/cdn/web3/currency/token/large/501-hSsA7ATLNk1HuRfp6Y4eKTkJhyRuB7CWtJ5grb3pump-108/type=default_90_0?v=1788833065397"
+ ],
+ "name": "World Water Reserve",
+ "symbol": "WWR",
+ "marketCap": "11259814.362834348467815718",
+ "price": "0.01126380146167369488",
+ "priceChange24hPercent": "1.03",
+ "volume24h": "1849.07856923406",
+ "communityRecognized": false,
+ "key": "sol--101:hSsA7ATLNk1HuRfp6Y4eKTkJhyRuB7CWtJ5grb3pump",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "acfzE6gruCrzEUBWpKdyTxEEQhc4bHNgau5QbBVpump",
+ "logoUrl": "https://static.oklink.com/cdn/web3/currency/token/large/501-acfzE6gruCrzEUBWpKdyTxEEQhc4bHNgau5QbBVpump-107/type=default_90_0?v=1788832488823",
+ "logoUrls": [
+ "https://static.oklink.com/cdn/web3/currency/token/large/501-acfzE6gruCrzEUBWpKdyTxEEQhc4bHNgau5QbBVpump-107/type=default_90_0?v=1788832488823"
+ ],
+ "name": "Minirouter.sh",
+ "symbol": "MINI",
+ "marketCap": "3273201.710335406447822536",
+ "price": "0.00327503042771898793",
+ "priceChange24hPercent": "0.77",
+ "volume24h": "675.3778854275",
+ "communityRecognized": false,
+ "key": "sol--101:acfzE6gruCrzEUBWpKdyTxEEQhc4bHNgau5QbBVpump",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "SiLVFMgD3eD2rgK628NbTBq9MnuJF5FW2CRaVyTB35L",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-SiLVFMgD3eD2rgK628NbTBq9MnuJF5FW2CRaVyTB35L-1786641144146.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-SiLVFMgD3eD2rgK628NbTBq9MnuJF5FW2CRaVyTB35L-1786641144146.png"
+ ],
+ "name": "Dominion Silver",
+ "symbol": "SILV",
+ "marketCap": "6193007.964192806796538243",
+ "price": "66.39192033949276572994",
+ "priceChange24hPercent": "-0.05",
+ "volume24h": "658.188658516",
+ "communityRecognized": true,
+ "key": "sol--101:SiLVFMgD3eD2rgK628NbTBq9MnuJF5FW2CRaVyTB35L",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "uBSAmmSiSpRgFYi1amFkcdH6o7t7WJd5Ju5dLgkpump",
+ "logoUrl": "https://static.oklink.com/cdn/web3/currency/token/large/501-uBSAmmSiSpRgFYi1amFkcdH6o7t7WJd5Ju5dLgkpump-107/type=default_90_0?v=1788831327813",
+ "logoUrls": [
+ "https://static.oklink.com/cdn/web3/currency/token/large/501-uBSAmmSiSpRgFYi1amFkcdH6o7t7WJd5Ju5dLgkpump-107/type=default_90_0?v=1788831327813"
+ ],
+ "name": "Department of Energy",
+ "symbol": "DOE",
+ "marketCap": "1923106.295125780974755755",
+ "price": "0.00192501120487423714",
+ "priceChange24hPercent": "-0.81",
+ "volume24h": "751.96431453491",
+ "communityRecognized": false,
+ "key": "sol--101:uBSAmmSiSpRgFYi1amFkcdH6o7t7WJd5Ju5dLgkpump",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "EEpng77ZPn9FbgbT4xsRjwuxNCcMBYq3HTwEscyTpump",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-EEpng77ZPn9FbgbT4xsRjwuxNCcMBYq3HTwEscyTpump-1788282964797.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-EEpng77ZPn9FbgbT4xsRjwuxNCcMBYq3HTwEscyTpump-1788282964797.png"
+ ],
+ "name": "Justice for HeeHaw",
+ "symbol": "HeeHaw",
+ "marketCap": "1309774.44369591042480328",
+ "price": "0.00133779783887149567",
+ "priceChange24hPercent": "-0.81",
+ "volume24h": "695.36426848811",
+ "communityRecognized": false,
+ "key": "sol--101:EEpng77ZPn9FbgbT4xsRjwuxNCcMBYq3HTwEscyTpump",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "Zqp1CGaubH4EUYrv9Cwyh9cL75JrRtMurTURqkepump",
+ "logoUrl": "https://static.oklink.com/cdn/web3/currency/token/large/501-Zqp1CGaubH4EUYrv9Cwyh9cL75JrRtMurTURqkepump-107/type=default_90_0?v=1788830000263",
+ "logoUrls": [
+ "https://static.oklink.com/cdn/web3/currency/token/large/501-Zqp1CGaubH4EUYrv9Cwyh9cL75JrRtMurTURqkepump-107/type=default_90_0?v=1788830000263"
+ ],
+ "name": "PROJECT ONYX",
+ "symbol": "PONYX",
+ "marketCap": "205269383.275982129346905972",
+ "price": "0.20527186753474395893",
+ "priceChange24hPercent": "0.71",
+ "volume24h": "5964.42018932408",
+ "communityRecognized": false,
+ "key": "sol--101:Zqp1CGaubH4EUYrv9Cwyh9cL75JrRtMurTURqkepump",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "RPDKY4FQacZ2cbmnGYpgTXC8hWDtjr5zGVeBDzcpump",
+ "logoUrl": "https://static.oklink.com/cdn/web3/currency/token/large/501-RPDKY4FQacZ2cbmnGYpgTXC8hWDtjr5zGVeBDzcpump-107/type=default_90_0?v=1788839740889",
+ "logoUrls": [
+ "https://static.oklink.com/cdn/web3/currency/token/large/501-RPDKY4FQacZ2cbmnGYpgTXC8hWDtjr5zGVeBDzcpump-107/type=default_90_0?v=1788839740889"
+ ],
+ "name": "Anthropic",
+ "symbol": "Anthropic",
+ "marketCap": "15888734.857959915259210213",
+ "price": "0.01589057432356543816",
+ "priceChange24hPercent": "0.55",
+ "volume24h": "722.39115860989",
+ "communityRecognized": false,
+ "key": "sol--101:RPDKY4FQacZ2cbmnGYpgTXC8hWDtjr5zGVeBDzcpump",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "ucH7Xyg8yBuqzf9LGw7zbKJuMcnAGiTksJxy2DZpump",
+ "logoUrl": "https://static.oklink.com/cdn/web3/currency/token/large/501-ucH7Xyg8yBuqzf9LGw7zbKJuMcnAGiTksJxy2DZpump-107/type=default_90_0?v=1788836532323",
+ "logoUrls": [
+ "https://static.oklink.com/cdn/web3/currency/token/large/501-ucH7Xyg8yBuqzf9LGw7zbKJuMcnAGiTksJxy2DZpump-107/type=default_90_0?v=1788836532323"
+ ],
+ "name": "LAPTOP",
+ "symbol": "LAPTOP",
+ "marketCap": "12217954.748682962536395592",
+ "price": "0.01221980041383477198",
+ "priceChange24hPercent": "-0.44",
+ "volume24h": "570.23143039157",
+ "communityRecognized": false,
+ "key": "sol--101:ucH7Xyg8yBuqzf9LGw7zbKJuMcnAGiTksJxy2DZpump",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "7AoBuYcGKQYadxc9wmGxpuu29bpC1EDQezkoXACWZRFF",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-7AoBuYcGKQYadxc9wmGxpuu29bpC1EDQezkoXACWZRFF-1787418063946.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-7AoBuYcGKQYadxc9wmGxpuu29bpC1EDQezkoXACWZRFF-1787418063946.png"
+ ],
+ "name": "Capx",
+ "symbol": "CAPX",
+ "marketCap": "226258607.621151612379629928",
+ "price": "0.2262586076365912683",
+ "priceChange24hPercent": "0.13",
+ "volume24h": "3471.50051296239",
+ "communityRecognized": false,
+ "key": "sol--101:7AoBuYcGKQYadxc9wmGxpuu29bpC1EDQezkoXACWZRFF",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "TXJQtJkGS6GmXxDaaPsmWBniNrFoftFKyKhPRV2pump",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/61256cce0c5acddbf40d3f9b65572dc6a42f8e6e1c439b521b188f9062eccc2d",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/61256cce0c5acddbf40d3f9b65572dc6a42f8e6e1c439b521b188f9062eccc2d"
+ ],
+ "name": "MrBeast",
+ "symbol": "Beast",
+ "marketCap": "1921019.920353480684498504",
+ "price": "0.00192380797967692799",
+ "priceChange24hPercent": "-0.98",
+ "volume24h": "729.960258",
+ "communityRecognized": false,
+ "key": "sol--101:TXJQtJkGS6GmXxDaaPsmWBniNrFoftFKyKhPRV2pump",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "AjUPChqae6zNwDmrse83siD7m5qLkKF4QTa66rKcpump",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/9dc7f88d9e1f81c4ceec1a3458572419795ed135630f8601d7f9f48b4f43847a",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/9dc7f88d9e1f81c4ceec1a3458572419795ed135630f8601d7f9f48b4f43847a"
+ ],
+ "name": "WOFI",
+ "symbol": "WOFI",
+ "marketCap": "393706890.751593186250539781",
+ "price": "0.39371023921163209958",
+ "priceChange24hPercent": "0.13",
+ "volume24h": "2468.50725567476",
+ "communityRecognized": false,
+ "key": "sol--101:AjUPChqae6zNwDmrse83siD7m5qLkKF4QTa66rKcpump",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "3zPoxaNjenyHs1LHih2RyWRkum9TPiqTktYAvisfpump",
+ "logoUrl": "https://static.oklink.com/cdn/web3/currency/token/large/501-3zPoxaNjenyHs1LHih2RyWRkum9TPiqTktYAvisfpump-107/type=default_90_0?v=1788746248131",
+ "logoUrls": [
+ "https://static.oklink.com/cdn/web3/currency/token/large/501-3zPoxaNjenyHs1LHih2RyWRkum9TPiqTktYAvisfpump-107/type=default_90_0?v=1788746248131"
+ ],
+ "name": "WOFI",
+ "symbol": "WOFI",
+ "marketCap": "15179582.129339502825902181",
+ "price": "0.01518356897898373051",
+ "priceChange24hPercent": "0.21",
+ "volume24h": "1451.61208709686",
+ "communityRecognized": false,
+ "key": "sol--101:3zPoxaNjenyHs1LHih2RyWRkum9TPiqTktYAvisfpump",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "BYJufa6WgJYFRCmfdxuUvWP4npfz67FodrLh319pump",
+ "logoUrl": "https://static.oklink.com/cdn/web3/currency/token/large/501-BYJufa6WgJYFRCmfdxuUvWP4npfz67FodrLh319pump-107/type=default_90_0?v=1788763294206",
+ "logoUrls": [
+ "https://static.oklink.com/cdn/web3/currency/token/large/501-BYJufa6WgJYFRCmfdxuUvWP4npfz67FodrLh319pump-107/type=default_90_0?v=1788763294206"
+ ],
+ "name": "Federal Trust Fund System",
+ "symbol": "FTFS",
+ "marketCap": "1379237.938313217482435957",
+ "price": "0.00138235322166024742",
+ "priceChange24hPercent": "-0.2",
+ "volume24h": "846.86522",
+ "communityRecognized": false,
+ "key": "sol--101:BYJufa6WgJYFRCmfdxuUvWP4npfz67FodrLh319pump",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "126havbiVp1rqGaN4wHQ54Qp5qfNCXHHhjaqzubNKaqd",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/14a038224de8f7ba21ed22a73494390e7337452497d64e6e4d2362344578c325",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/14a038224de8f7ba21ed22a73494390e7337452497d64e6e4d2362344578c325"
+ ],
+ "name": "Linera",
+ "symbol": "LNRA",
+ "marketCap": "184548.651247101740729293",
+ "price": "0.00000184550319134967",
+ "priceChange24hPercent": "5.14",
+ "volume24h": "147884.42750160268",
+ "communityRecognized": false,
+ "key": "sol--101:126havbiVp1rqGaN4wHQ54Qp5qfNCXHHhjaqzubNKaqd",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "Dz9mQ9NzkBcCsuGPFJ3r1bS4wgqKMHBPiVuniW8Mbonk",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-Dz9mQ9NzkBcCsuGPFJ3r1bS4wgqKMHBPiVuniW8Mbonk-1758104080638.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-Dz9mQ9NzkBcCsuGPFJ3r1bS4wgqKMHBPiVuniW8Mbonk-1758104080638.png"
+ ],
+ "name": "USELESS COIN",
+ "symbol": "USELESS",
+ "marketCap": "221898830.984786235993999999",
+ "price": "0.22210233333333333333",
+ "priceChange24hPercent": "-0.01",
+ "volume24h": "101609.4451447422",
+ "communityRecognized": true,
+ "key": "sol--101:Dz9mQ9NzkBcCsuGPFJ3r1bS4wgqKMHBPiVuniW8Mbonk",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "SKRbvo6Gf7GondiT3BbTfuRDPqLWei4j2Qy2NPGZhW3",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-SKRbvo6Gf7GondiT3BbTfuRDPqLWei4j2Qy2NPGZhW3-1769007834351.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-SKRbvo6Gf7GondiT3BbTfuRDPqLWei4j2Qy2NPGZhW3-1769007834351.png"
+ ],
+ "name": "Seeker",
+ "symbol": "SKR",
+ "marketCap": "110810462.772040417287604958",
+ "price": "0.02184649957264364455",
+ "priceChange24hPercent": "0.29",
+ "volume24h": "1951.589207066314071784",
+ "communityRecognized": true,
+ "key": "sol--101:SKRbvo6Gf7GondiT3BbTfuRDPqLWei4j2Qy2NPGZhW3",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "SmzBeaef935WGLMjqnW2zifF5LXpNKWmXGCkFsppump",
+ "logoUrl": "https://static.oklink.com/cdn/web3/currency/token/large/501-SmzBeaef935WGLMjqnW2zifF5LXpNKWmXGCkFsppump-107/type=default_90_0?v=1788835934276",
+ "logoUrls": [
+ "https://static.oklink.com/cdn/web3/currency/token/large/501-SmzBeaef935WGLMjqnW2zifF5LXpNKWmXGCkFsppump-107/type=default_90_0?v=1788835934276"
+ ],
+ "name": "Musk",
+ "symbol": "Musk",
+ "marketCap": "14892800.352592288751959223",
+ "price": "0.01489464477008269358",
+ "priceChange24hPercent": "-0.04",
+ "volume24h": "687.05918926632",
+ "communityRecognized": false,
+ "key": "sol--101:SmzBeaef935WGLMjqnW2zifF5LXpNKWmXGCkFsppump",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "LEBrT5bsAtDXaPRH2BPwTwo7tJu1EJEAui8PXkYpump",
+ "logoUrl": "https://static.oklink.com/cdn/web3/currency/token/large/501-LEBrT5bsAtDXaPRH2BPwTwo7tJu1EJEAui8PXkYpump-107/type=default_90_0?v=1788827500660",
+ "logoUrls": [
+ "https://static.oklink.com/cdn/web3/currency/token/large/501-LEBrT5bsAtDXaPRH2BPwTwo7tJu1EJEAui8PXkYpump-107/type=default_90_0?v=1788827500660"
+ ],
+ "name": "World Oil Trust Fund",
+ "symbol": "WOTF",
+ "marketCap": "1555339.731000756069386065",
+ "price": "0.00155733200282465367",
+ "priceChange24hPercent": "-0.09",
+ "volume24h": "657.91119439023",
+ "communityRecognized": false,
+ "key": "sol--101:LEBrT5bsAtDXaPRH2BPwTwo7tJu1EJEAui8PXkYpump",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "NBiSF3UaVUFtRzHwAfxyHsBCAZWGEKnMpewAE4oh7BG",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-NBiSF3UaVUFtRzHwAfxyHsBCAZWGEKnMpewAE4oh7BG-1786640418705.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-NBiSF3UaVUFtRzHwAfxyHsBCAZWGEKnMpewAE4oh7BG-1786640418705.png"
+ ],
+ "name": "Nebius Group N.V. - Backpack Securities",
+ "symbol": "NBIS",
+ "marketCap": "421493.517711081192573879",
+ "price": "233.30936452509079712528",
+ "priceChange24hPercent": "0.32",
+ "volume24h": "825.4336246553805126",
+ "communityRecognized": false,
+ "key": "sol--101:NBiSF3UaVUFtRzHwAfxyHsBCAZWGEKnMpewAE4oh7BG",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "EpXtn6xGoZ4Y45vRjiDUHSCGbBoJD5FaEqZbF98YswH1",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-EpXtn6xGoZ4Y45vRjiDUHSCGbBoJD5FaEqZbF98YswH1-1787245252477.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-EpXtn6xGoZ4Y45vRjiDUHSCGbBoJD5FaEqZbF98YswH1-1787245252477.png"
+ ],
+ "name": "SelfMade by SP3ND",
+ "symbol": "MADE",
+ "marketCap": "772383.661419922627624415",
+ "price": "0.00078805572845691383",
+ "priceChange24hPercent": "0.13",
+ "volume24h": "643.333158265",
+ "communityRecognized": true,
+ "key": "sol--101:EpXtn6xGoZ4Y45vRjiDUHSCGbBoJD5FaEqZbF98YswH1",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "HZBv3crczgzwLjPENFLhCm2s8qbUgLwKgLgFgniRpump",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/5de29bc6f390a7e5c4153b2bfcc9e35c2ddc6d5c6c38c1fd9ec5f471c843ab42",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/5de29bc6f390a7e5c4153b2bfcc9e35c2ddc6d5c6c38c1fd9ec5f471c843ab42"
+ ],
+ "name": "WOFI",
+ "symbol": "WOFI",
+ "marketCap": "24851546.663796305537469679",
+ "price": "0.02485178955926107635",
+ "priceChange24hPercent": "0.34",
+ "volume24h": "2144.12819258476",
+ "communityRecognized": false,
+ "key": "sol--101:HZBv3crczgzwLjPENFLhCm2s8qbUgLwKgLgFgniRpump",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "CbyTNf7UPzvewHh4Zp6umogM2RWahhmGRJWLJnPwpump",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/1ad9ec1405dec394a6e02b7068dbef43c73e1bb5ea5ae72ce5a4928db4d9c21d",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/1ad9ec1405dec394a6e02b7068dbef43c73e1bb5ea5ae72ce5a4928db4d9c21d"
+ ],
+ "name": "BIKE TYSON",
+ "symbol": "biketyson",
+ "marketCap": "392011.531020567229607162",
+ "price": "0.00040752600518006132",
+ "priceChange24hPercent": "-3.12",
+ "volume24h": "897.25811103305",
+ "communityRecognized": false,
+ "key": "sol--101:CbyTNf7UPzvewHh4Zp6umogM2RWahhmGRJWLJnPwpump",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "4wJ9JV9ViRUfGh19Ca4NURq69m7eG7tGwoeZnHcpump",
+ "logoUrl": "https://static.oklink.com/cdn/web3/currency/token/large/501-4wJ9JV9ViRUfGh19Ca4NURq69m7eG7tGwoeZnHcpump-107/type=default_90_0?v=1788826286330",
+ "logoUrls": [
+ "https://static.oklink.com/cdn/web3/currency/token/large/501-4wJ9JV9ViRUfGh19Ca4NURq69m7eG7tGwoeZnHcpump-107/type=default_90_0?v=1788826286330"
+ ],
+ "name": "World Oil Trust Fund",
+ "symbol": "WOTF",
+ "marketCap": "7265303.352883766949212646",
+ "price": "0.00726751278409214489",
+ "priceChange24hPercent": "0.1",
+ "volume24h": "683.53099922719",
+ "communityRecognized": false,
+ "key": "sol--101:4wJ9JV9ViRUfGh19Ca4NURq69m7eG7tGwoeZnHcpump",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "AhnTNq2rSkv5cPPgDDRHFAVBWFqNL1xhHx2c7hKpump",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/7131f98032ccc04e29ffb7ee435512e209985e93eead7c3157a6b33f1dcd2565",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/7131f98032ccc04e29ffb7ee435512e209985e93eead7c3157a6b33f1dcd2565"
+ ],
+ "name": "LAPTOP",
+ "symbol": "LAPTOP",
+ "marketCap": "638286854.140334112954108516",
+ "price": "0.63829455417513239849",
+ "priceChange24hPercent": "0.77",
+ "volume24h": "7703.6496210532",
+ "communityRecognized": false,
+ "key": "sol--101:AhnTNq2rSkv5cPPgDDRHFAVBWFqNL1xhHx2c7hKpump",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "pJc8sGotPsadcDFgBvuJFu6GpQ4TJgu4HtcPV7bpump",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/956a2b77c762131c653b91a7719449010c5b0157a71dba18824d5b6ad531b8bf",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/956a2b77c762131c653b91a7719449010c5b0157a71dba18824d5b6ad531b8bf"
+ ],
+ "name": "SPACEBALLS",
+ "symbol": "SPACEBALLS",
+ "marketCap": "115354.120218480459760608",
+ "price": "0.00011895758888769784",
+ "priceChange24hPercent": "-18.28",
+ "volume24h": "2757.32257856332",
+ "communityRecognized": false,
+ "key": "sol--101:pJc8sGotPsadcDFgBvuJFu6GpQ4TJgu4HtcPV7bpump",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "XsvNBAYkrDRNhA7wPHQfX3ZUXZyZLdnCQDfHZ56bzpg",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-XsvNBAYkrDRNhA7wPHQfX3ZUXZyZLdnCQDfHZ56bzpg-1758105602873.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-XsvNBAYkrDRNhA7wPHQfX3ZUXZyZLdnCQDfHZ56bzpg-1758105602873.png"
+ ],
+ "name": "Robinhood xStock",
+ "symbol": "HOODx",
+ "marketCap": "11608834.610499505529101024",
+ "price": "123.0550325048778617499",
+ "priceChange24hPercent": "-",
+ "volume24h": "2244.547243745727405",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 xStock 代币化发行",
+ "subtitle": "罗宾汉",
+ "source": "xstock",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/xstock.png",
+ "isOpen": true
+ },
+ "key": "sol--101:XsvNBAYkrDRNhA7wPHQfX3ZUXZyZLdnCQDfHZ56bzpg",
+ "kind": "stock",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "ETR1nyTNo6hVE7KQ2uDDNrD16qU6rj28db4gug3k1A5s",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/03f53af957289551f9595a45e025447447a11dcbca9522bc976a4e87cf0ba7be",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/03f53af957289551f9595a45e025447447a11dcbca9522bc976a4e87cf0ba7be"
+ ],
+ "name": "AlloX",
+ "symbol": "ALLOX",
+ "marketCap": "152918.774780799257114573",
+ "price": "0.00000152918783491883",
+ "priceChange24hPercent": "1.38",
+ "volume24h": "146746.59205899575",
+ "communityRecognized": false,
+ "key": "sol--101:ETR1nyTNo6hVE7KQ2uDDNrD16qU6rj28db4gug3k1A5s",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "DLvpmv8R4oTbC1DixU5yHLbBcmnvfTckGF3XFzLTpump",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-DLvpmv8R4oTbC1DixU5yHLbBcmnvfTckGF3XFzLTpump-1788369202858.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-DLvpmv8R4oTbC1DixU5yHLbBcmnvfTckGF3XFzLTpump-1788369202858.png"
+ ],
+ "name": "apewifdress",
+ "symbol": "APEWIF",
+ "marketCap": "262486.797769519560689222",
+ "price": "0.00027294229923012884",
+ "priceChange24hPercent": "7.41",
+ "volume24h": "5734.56386602986",
+ "communityRecognized": true,
+ "key": "sol--101:DLvpmv8R4oTbC1DixU5yHLbBcmnvfTckGF3XFzLTpump",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "2pouN3by7twkiZGy5aEKYUpf78ALDpKRTNu2WsQkpkqt",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-2pouN3by7twkiZGy5aEKYUpf78ALDpKRTNu2WsQkpkqt-1788714470837.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-2pouN3by7twkiZGy5aEKYUpf78ALDpKRTNu2WsQkpkqt-1788714470837.png"
+ ],
+ "name": "Buttensor",
+ "symbol": "BUTT",
+ "marketCap": "2775281.48434082555302534",
+ "price": "0.00277825462178035535",
+ "priceChange24hPercent": "-2",
+ "volume24h": "2076.18552265769",
+ "communityRecognized": true,
+ "key": "sol--101:2pouN3by7twkiZGy5aEKYUpf78ALDpKRTNu2WsQkpkqt",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "5UUH9RTDiSpq6HKS6bp4NdU9PNJpXRXuiw6ShBTBhgH2",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-5UUH9RTDiSpq6HKS6bp4NdU9PNJpXRXuiw6ShBTBhgH2-1758104099246.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-5UUH9RTDiSpq6HKS6bp4NdU9PNJpXRXuiw6ShBTBhgH2-1758104099246.png"
+ ],
+ "name": "TROLL",
+ "symbol": "TROLL",
+ "marketCap": "47790946.24794789349599707",
+ "price": "0.04784983092833138455",
+ "priceChange24hPercent": "0.35",
+ "volume24h": "516.35185700166",
+ "communityRecognized": true,
+ "key": "sol--101:5UUH9RTDiSpq6HKS6bp4NdU9PNJpXRXuiw6ShBTBhgH2",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ }
+ ],
+ "trending|sol--101|1h|all": [
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "Ai66LHZG9MCzg1WKdawwqduVAXpNDUuV8M3uyq5ppump",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-Ai66LHZG9MCzg1WKdawwqduVAXpNDUuV8M3uyq5ppump-1785164716552.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-Ai66LHZG9MCzg1WKdawwqduVAXpNDUuV8M3uyq5ppump-1785164716552.png"
+ ],
+ "name": "Catecoin",
+ "symbol": "CATE",
+ "marketCap": "27707910.562215997854014575",
+ "price": "0.028737823444707848",
+ "priceChange24hPercent": "-1.17",
+ "volume24h": "244097.7954039045",
+ "communityRecognized": true,
+ "key": "sol--101:Ai66LHZG9MCzg1WKdawwqduVAXpNDUuV8M3uyq5ppump",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "7Y7V1a4m2nWK7BMgbka5B4vR1pDvCK7yva3Hnrqkraze",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/fa21eef99efb8b7842c131cfa852344958bd4c32e76767446fd4983cb58d673c",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/fa21eef99efb8b7842c131cfa852344958bd4c32e76767446fd4983cb58d673c"
+ ],
+ "name": "Nasduck",
+ "symbol": "Nasduck",
+ "marketCap": "4921873.454147141002757127",
+ "price": "0.00511841948187528899",
+ "priceChange24hPercent": "-5.44",
+ "volume24h": "368996.56104616877",
+ "communityRecognized": false,
+ "key": "sol--101:7Y7V1a4m2nWK7BMgbka5B4vR1pDvCK7yva3Hnrqkraze",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "9GGGhze1NnQwcABTzxdxx89BEFLFtDueHhkwh6japump",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/a6063f660a1b276bba3b9832297a3b2830c66cc58a607c8cc44705fa1b422161",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/a6063f660a1b276bba3b9832297a3b2830c66cc58a607c8cc44705fa1b422161"
+ ],
+ "name": "CatGPT",
+ "symbol": "CatGPT",
+ "marketCap": "623368.05695686272495979",
+ "price": "0.0006395393467819042",
+ "priceChange24hPercent": "-13.83",
+ "volume24h": "75216.15406047105",
+ "communityRecognized": false,
+ "key": "sol--101:9GGGhze1NnQwcABTzxdxx89BEFLFtDueHhkwh6japump",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "8K5X85PAJHAAVSvYaAzgVPPAPsqqHmvx16ZyBiscYF8L",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-8K5X85PAJHAAVSvYaAzgVPPAPsqqHmvx16ZyBiscYF8L-1788368707252.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-8K5X85PAJHAAVSvYaAzgVPPAPsqqHmvx16ZyBiscYF8L-1788368707252.png"
+ ],
+ "name": "Vida Global CTO",
+ "symbol": "CTO",
+ "marketCap": "10388682.975129922967356653",
+ "price": "0.01133818095938549687",
+ "priceChange24hPercent": "-32.48",
+ "volume24h": "808879.3317463253941978",
+ "communityRecognized": false,
+ "key": "sol--101:8K5X85PAJHAAVSvYaAzgVPPAPsqqHmvx16ZyBiscYF8L",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "ANM35KbUcfKdEVBXzSjZBoT6ceSwYRs3fuc79fp7kRqP",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/db4d10c19523308df10f606b8b29d51a6e19419261d663ae88497cd02efd20f6",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/db4d10c19523308df10f606b8b29d51a6e19419261d663ae88497cd02efd20f6"
+ ],
+ "name": "Pump Cat",
+ "symbol": "Pumpcat",
+ "marketCap": "1912244.462897262858486588",
+ "price": "0.00193673692136345157",
+ "priceChange24hPercent": "17.78",
+ "volume24h": "156777.34227804832",
+ "communityRecognized": false,
+ "key": "sol--101:ANM35KbUcfKdEVBXzSjZBoT6ceSwYRs3fuc79fp7kRqP",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "MukLDtJ8Cx9DxLbeyLRSWPSposTMWuwHANbuaudpump",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-MukLDtJ8Cx9DxLbeyLRSWPSposTMWuwHANbuaudpump-1788282416465.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-MukLDtJ8Cx9DxLbeyLRSWPSposTMWuwHANbuaudpump-1788282416465.png"
+ ],
+ "name": "OTC",
+ "symbol": "OTC",
+ "marketCap": "18542012.178878264176559004",
+ "price": "0.02608930166714554962",
+ "priceChange24hPercent": "-6.17",
+ "volume24h": "712422.19898538897",
+ "communityRecognized": false,
+ "key": "sol--101:MukLDtJ8Cx9DxLbeyLRSWPSposTMWuwHANbuaudpump",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "Aw6fiDPWLUnjSsJQtsyEMSaoPaKAUUrStAsYPiPwpump",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/77390ed5d0a7e7ae6ab8a0e2685653ff99f696192f784341e9d9bd613dc27472",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/77390ed5d0a7e7ae6ab8a0e2685653ff99f696192f784341e9d9bd613dc27472"
+ ],
+ "name": "Anonymouse",
+ "symbol": "Anonymouse",
+ "marketCap": "495244.582719193909390358",
+ "price": "0.00051975033502052469",
+ "priceChange24hPercent": "-6.03",
+ "volume24h": "69528.76324769967",
+ "communityRecognized": false,
+ "key": "sol--101:Aw6fiDPWLUnjSsJQtsyEMSaoPaKAUUrStAsYPiPwpump",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "9cRCn9rGT8V2imeM2BaKs13yhMEais3ruM3rPvTGpump",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-9cRCn9rGT8V2imeM2BaKs13yhMEais3ruM3rPvTGpump-1782140764006.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-9cRCn9rGT8V2imeM2BaKs13yhMEais3ruM3rPvTGpump-1782140764006.png"
+ ],
+ "name": "The Black Bull",
+ "symbol": "ANSEM",
+ "marketCap": "77436631.923583188307148338",
+ "price": "0.18668778395165902839",
+ "priceChange24hPercent": "-3.18",
+ "volume24h": "1073833.42300743215906272",
+ "communityRecognized": true,
+ "key": "sol--101:9cRCn9rGT8V2imeM2BaKs13yhMEais3ruM3rPvTGpump",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "HcRLc9VDgjLeK154xDawfb1dmVJ98DoSqcwTHGqiDeJR",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-HcRLc9VDgjLeK154xDawfb1dmVJ98DoSqcwTHGqiDeJR-1788454854698.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-HcRLc9VDgjLeK154xDawfb1dmVJ98DoSqcwTHGqiDeJR-1788454854698.png"
+ ],
+ "name": "Anonymous Cat",
+ "symbol": "ZCAT",
+ "marketCap": "138155153.502342882783315452",
+ "price": "0.14258838001416833807",
+ "priceChange24hPercent": "3.44",
+ "volume24h": "490459.44866198587416465",
+ "communityRecognized": true,
+ "key": "sol--101:HcRLc9VDgjLeK154xDawfb1dmVJ98DoSqcwTHGqiDeJR",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "6GmAFSYs4gk3FDao5FzzySQpPZaWsa4rUJHacpMpUNgx",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-6GmAFSYs4gk3FDao5FzzySQpPZaWsa4rUJHacpMpUNgx-1784905991044.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-6GmAFSYs4gk3FDao5FzzySQpPZaWsa4rUJHacpMpUNgx-1784905991044.png"
+ ],
+ "name": "STONK",
+ "symbol": "STONK",
+ "marketCap": "159352032.822599310181812789",
+ "price": "0.18313292094986593893",
+ "priceChange24hPercent": "-11.59",
+ "volume24h": "5761575.469332077492002053",
+ "communityRecognized": true,
+ "key": "sol--101:6GmAFSYs4gk3FDao5FzzySQpPZaWsa4rUJHacpMpUNgx",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "HhXR4SiHzDNYCFXJBpCYg86T4NhzsD4vz4Y5Jtz6ozKx",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/f726c684810fa3c317fc93c5be53f978bd8c53c43e640ba1356f234c0f0904b0",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/f726c684810fa3c317fc93c5be53f978bd8c53c43e640ba1356f234c0f0904b0"
+ ],
+ "name": "OpenAI PreStocks",
+ "symbol": "OPENAI",
+ "marketCap": "2939809.88902212827335016",
+ "price": "0.00002939809927291071",
+ "priceChange24hPercent": "12.73",
+ "volume24h": "16888183.26965703854",
+ "communityRecognized": false,
+ "key": "sol--101:HhXR4SiHzDNYCFXJBpCYg86T4NhzsD4vz4Y5Jtz6ozKx",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "zrmswgfyBjwCFziMo4S5EQdpx2GWRBpEK3vK434tx22",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/f69d8a15e3fd4a40a8ff2356de86f9c973e5e8994adf9f3df9b47c3b7820411e",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/f69d8a15e3fd4a40a8ff2356de86f9c973e5e8994adf9f3df9b47c3b7820411e"
+ ],
+ "name": "Token",
+ "symbol": "Token",
+ "marketCap": "192034.423280784016747696",
+ "price": "0.00019843566334029236",
+ "priceChange24hPercent": "6488.46",
+ "volume24h": "346987.80552515336",
+ "communityRecognized": false,
+ "key": "sol--101:zrmswgfyBjwCFziMo4S5EQdpx2GWRBpEK3vK434tx22",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "CTPoyCwkjMvoJwU4xvZZqoD8tiYk6yDchySiN5gGpump",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-CTPoyCwkjMvoJwU4xvZZqoD8tiYk6yDchySiN5gGpump-1788283052361.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-CTPoyCwkjMvoJwU4xvZZqoD8tiYk6yDchySiN5gGpump-1788283052361.png"
+ ],
+ "name": "apeonfone",
+ "symbol": "fone",
+ "marketCap": "7592997.811728859885287765",
+ "price": "0.00766871347955657293",
+ "priceChange24hPercent": "-2.84",
+ "volume24h": "350753.46263990463",
+ "communityRecognized": true,
+ "key": "sol--101:CTPoyCwkjMvoJwU4xvZZqoD8tiYk6yDchySiN5gGpump",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "CaWZeUM4FvX9dPkjGc2xHS6tSN3qJfTWyvaG77aM5o7h",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-CaWZeUM4FvX9dPkjGc2xHS6tSN3qJfTWyvaG77aM5o7h-1788714223572.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-CaWZeUM4FvX9dPkjGc2xHS6tSN3qJfTWyvaG77aM5o7h-1788714223572.png"
+ ],
+ "name": "artificial gooner intelligence",
+ "symbol": "AGI",
+ "marketCap": "7732106.397339240642815567",
+ "price": "0.00782011642651768863",
+ "priceChange24hPercent": "30.61",
+ "volume24h": "51274.04960503532",
+ "communityRecognized": true,
+ "key": "sol--101:CaWZeUM4FvX9dPkjGc2xHS6tSN3qJfTWyvaG77aM5o7h",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "Cu49bzY6R1wXVqeZzJggYcZiz8fHb9P17mbEzutg4Pq1",
+ "logoUrl": "https://static.oklink.com/cdn/web3/currency/token/large/501-Cu49bzY6R1wXVqeZzJggYcZiz8fHb9P17mbEzutg4Pq1-109/type=default_90_0?v=1788837736188",
+ "logoUrls": [
+ "https://static.oklink.com/cdn/web3/currency/token/large/501-Cu49bzY6R1wXVqeZzJggYcZiz8fHb9P17mbEzutg4Pq1-109/type=default_90_0?v=1788837736188"
+ ],
+ "name": "Xtremely Retarded People",
+ "symbol": "XRP",
+ "marketCap": "219234.994074005715984401",
+ "price": "0.00022574850990482328",
+ "priceChange24hPercent": "701.3",
+ "volume24h": "1391007.17159583104",
+ "communityRecognized": false,
+ "key": "sol--101:Cu49bzY6R1wXVqeZzJggYcZiz8fHb9P17mbEzutg4Pq1",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "XsbEhLAtcf6HdfpFZ5xEMdqW8nfAvcsP5bdudRLJzJp",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-XsbEhLAtcf6HdfpFZ5xEMdqW8nfAvcsP5bdudRLJzJp-1758104899904.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-XsbEhLAtcf6HdfpFZ5xEMdqW8nfAvcsP5bdudRLJzJp-1758104899904.png"
+ ],
+ "name": "Apple xStock",
+ "symbol": "AAPLx",
+ "marketCap": "12728432.798393619419131017",
+ "price": "320.5456290268211648992",
+ "priceChange24hPercent": "0.14",
+ "volume24h": "137420.135276008856195337",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 xStock 代币化发行",
+ "subtitle": "苹果",
+ "source": "xstock",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/xstock.png",
+ "isOpen": true
+ },
+ "key": "sol--101:XsbEhLAtcf6HdfpFZ5xEMdqW8nfAvcsP5bdudRLJzJp",
+ "kind": "stock",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "XsoCS1TfEyfFhfvj8EtZ528L3CaKBDBRqRapnBbDF2W",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-XsoCS1TfEyfFhfvj8EtZ528L3CaKBDBRqRapnBbDF2W-1758104197788.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-XsoCS1TfEyfFhfvj8EtZ528L3CaKBDBRqRapnBbDF2W-1758104197788.png"
+ ],
+ "name": "SP500 xStock",
+ "symbol": "SPYx",
+ "marketCap": "56367005.478836337769633662",
+ "price": "784.81337192531622861759",
+ "priceChange24hPercent": "1.72",
+ "volume24h": "1062831.656541229320294267",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 xStock 代币化发行",
+ "subtitle": "标普500 ETF",
+ "source": "xstock",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/xstock.png",
+ "isOpen": true
+ },
+ "key": "sol--101:XsoCS1TfEyfFhfvj8EtZ528L3CaKBDBRqRapnBbDF2W",
+ "kind": "stock",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "A7bdiYdS5GjqGFtxf17ppRHtDKPkkRqbKtR27dxvQXaS",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-A7bdiYdS5GjqGFtxf17ppRHtDKPkkRqbKtR27dxvQXaS-1760630401975.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-A7bdiYdS5GjqGFtxf17ppRHtDKPkkRqbKtR27dxvQXaS-1760630401975.png"
+ ],
+ "name": "Zcash",
+ "symbol": "ZEC",
+ "marketCap": "108381246.656948456802795032",
+ "price": "1126.76216375512956423137",
+ "priceChange24hPercent": "-0.22",
+ "volume24h": "2078750.68622071550454288",
+ "communityRecognized": true,
+ "key": "sol--101:A7bdiYdS5GjqGFtxf17ppRHtDKPkkRqbKtR27dxvQXaS",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "DoGEV7LASBkQbibMc5k5vKnTZoMg423GpJ5QtJEGfm7R",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/3d506b48124c4da95fa38586899e377b82f98a1d6da24eba1ac8e1c2f82bbb99",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/3d506b48124c4da95fa38586899e377b82f98a1d6da24eba1ac8e1c2f82bbb99"
+ ],
+ "name": "Dogecoin",
+ "symbol": "DOGE",
+ "marketCap": "400294.815377739868067652",
+ "price": "0.09110678797975571486",
+ "priceChange24hPercent": "0.03",
+ "volume24h": "288083.37462907999",
+ "communityRecognized": true,
+ "key": "sol--101:DoGEV7LASBkQbibMc5k5vKnTZoMg423GpJ5QtJEGfm7R",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "GPRR2u6NS5yBQHWGauoJ9HXgjrTH8dDsrBfTV5zAYvDH",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-GPRR2u6NS5yBQHWGauoJ9HXgjrTH8dDsrBfTV5zAYvDH-1788370277445.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-GPRR2u6NS5yBQHWGauoJ9HXgjrTH8dDsrBfTV5zAYvDH-1788370277445.png"
+ ],
+ "name": "GoPro - Backpack Securities",
+ "symbol": "GPRO",
+ "marketCap": "367215.739871755057607796",
+ "price": "1.68106738019190069462",
+ "priceChange24hPercent": "0.35",
+ "volume24h": "32763.089921466631156614",
+ "communityRecognized": false,
+ "key": "sol--101:GPRR2u6NS5yBQHWGauoJ9HXgjrTH8dDsrBfTV5zAYvDH",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "AMC1qwR9KhiyrQBRPrxnfo4JfMeMZqEBvt5tgTytNNoc",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-AMC1qwR9KhiyrQBRPrxnfo4JfMeMZqEBvt5tgTytNNoc-1788800722604.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-AMC1qwR9KhiyrQBRPrxnfo4JfMeMZqEBvt5tgTytNNoc-1788800722604.png"
+ ],
+ "name": "AMC Entertainment - Backpack Securities",
+ "symbol": "AMC",
+ "marketCap": "137339.961933871671759057",
+ "price": "2.67350501964207769533",
+ "priceChange24hPercent": "1.79",
+ "volume24h": "22061.41585705199736821",
+ "communityRecognized": false,
+ "key": "sol--101:AMC1qwR9KhiyrQBRPrxnfo4JfMeMZqEBvt5tgTytNNoc",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "2pwCdsf3KmoQFihDDtxMyPwrTJmimTA8sTBBn57robN6",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/387ad3f11ea3d0cfb99f2460f49f8916c2dab635821ad58ffbfffc7c27bbf2ff",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/387ad3f11ea3d0cfb99f2460f49f8916c2dab635821ad58ffbfffc7c27bbf2ff"
+ ],
+ "name": "PIGEON TRUTH",
+ "symbol": "PIGEONS",
+ "marketCap": "332437.193836544137003246",
+ "price": "0.00033243765117637098",
+ "priceChange24hPercent": "-4.77",
+ "volume24h": "15066.407005770952157754",
+ "communityRecognized": false,
+ "key": "sol--101:2pwCdsf3KmoQFihDDtxMyPwrTJmimTA8sTBBn57robN6",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "NBiSF3UaVUFtRzHwAfxyHsBCAZWGEKnMpewAE4oh7BG",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-NBiSF3UaVUFtRzHwAfxyHsBCAZWGEKnMpewAE4oh7BG-1786640418705.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-NBiSF3UaVUFtRzHwAfxyHsBCAZWGEKnMpewAE4oh7BG-1786640418705.png"
+ ],
+ "name": "Nebius Group N.V. - Backpack Securities",
+ "symbol": "NBIS",
+ "marketCap": "421493.517711081192573879",
+ "price": "233.30936452509079712528",
+ "priceChange24hPercent": "1.25",
+ "volume24h": "31218.70902981121193835",
+ "communityRecognized": false,
+ "key": "sol--101:NBiSF3UaVUFtRzHwAfxyHsBCAZWGEKnMpewAE4oh7BG",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "2NdgMAFbWVHvXJcoAwuRkTfYn1j97THVCThWATKHSTNK",
+ "logoUrl": "https://static.oklink.com/cdn/web3/currency/token/large/501-2NdgMAFbWVHvXJcoAwuRkTfYn1j97THVCThWATKHSTNK-108/type=default_90_0?v=1788837548010",
+ "logoUrls": [
+ "https://static.oklink.com/cdn/web3/currency/token/large/501-2NdgMAFbWVHvXJcoAwuRkTfYn1j97THVCThWATKHSTNK-108/type=default_90_0?v=1788837548010"
+ ],
+ "name": "Universal High Income",
+ "symbol": "UHI",
+ "marketCap": "94808.647286636511653555",
+ "price": "0.00009480864728663651",
+ "priceChange24hPercent": "2411.11",
+ "volume24h": "227180.203563953925241519",
+ "communityRecognized": false,
+ "key": "sol--101:2NdgMAFbWVHvXJcoAwuRkTfYn1j97THVCThWATKHSTNK",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "HooDYv5RewLRiMLnEVq3VJqdqxhuE6c5eYvqejMC3e9A",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-HooDYv5RewLRiMLnEVq3VJqdqxhuE6c5eYvqejMC3e9A-1784387203502.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-HooDYv5RewLRiMLnEVq3VJqdqxhuE6c5eYvqejMC3e9A-1784387203502.png"
+ ],
+ "name": "Robinhood Markets - Backpack Securities",
+ "symbol": "HOOD",
+ "marketCap": "689506.491565078192340844",
+ "price": "123.13754463735993104298",
+ "priceChange24hPercent": "0.19",
+ "volume24h": "2550.651515771657686477",
+ "communityRecognized": false,
+ "key": "sol--101:HooDYv5RewLRiMLnEVq3VJqdqxhuE6c5eYvqejMC3e9A",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "Fxq9URcanj5exGoatPxckVr9KFL3mcpJDMKRfSbyrH8q",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/ac252d3221f62580087c09038a994ea9cf9bfbf0611d8531c325b0fcc86503b3",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/ac252d3221f62580087c09038a994ea9cf9bfbf0611d8531c325b0fcc86503b3"
+ ],
+ "name": "Robinhood",
+ "symbol": "HOOD",
+ "marketCap": "4434319.99587062093524057",
+ "price": "0.00004434320021898187",
+ "priceChange24hPercent": "48.07",
+ "volume24h": "17232565.29144661194",
+ "communityRecognized": false,
+ "key": "sol--101:Fxq9URcanj5exGoatPxckVr9KFL3mcpJDMKRfSbyrH8q",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "XsqE9cRRpzxcGKDXj1BJ7Xmg4GRhZoyY1KpmGSxAWT2",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-XsqE9cRRpzxcGKDXj1BJ7Xmg4GRhZoyY1KpmGSxAWT2-1758106345798.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-XsqE9cRRpzxcGKDXj1BJ7Xmg4GRhZoyY1KpmGSxAWT2-1758106345798.png"
+ ],
+ "name": "McDonald's xStock",
+ "symbol": "MCDx",
+ "marketCap": "1408079.851319124295748968",
+ "price": "256.31462582720271173137",
+ "priceChange24hPercent": "-7.59",
+ "volume24h": "245353.35804878561742377",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 xStock 代币化发行",
+ "subtitle": "麦当劳",
+ "source": "xstock",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/xstock.png",
+ "isOpen": true
+ },
+ "key": "sol--101:XsqE9cRRpzxcGKDXj1BJ7Xmg4GRhZoyY1KpmGSxAWT2",
+ "kind": "stock",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "Ge87EtsjwRQbHaqQmKRno69RFTwh9bfSsm99XNxTpump",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-Ge87EtsjwRQbHaqQmKRno69RFTwh9bfSsm99XNxTpump-1784214599861.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-Ge87EtsjwRQbHaqQmKRno69RFTwh9bfSsm99XNxTpump-1784214599861.png"
+ ],
+ "name": "Jimothy The Raccoon",
+ "symbol": "Jimothy",
+ "marketCap": "5200822.834881967578969978",
+ "price": "0.00520117125559290377",
+ "priceChange24hPercent": "-1",
+ "volume24h": "60966.50474736806",
+ "communityRecognized": true,
+ "key": "sol--101:Ge87EtsjwRQbHaqQmKRno69RFTwh9bfSsm99XNxTpump",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "HmJDgky11u77hpBss6D8sjNpYPD5B6fWgSVDj58jpump",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-HmJDgky11u77hpBss6D8sjNpYPD5B6fWgSVDj58jpump-1788282013603.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-HmJDgky11u77hpBss6D8sjNpYPD5B6fWgSVDj58jpump-1788282013603.png"
+ ],
+ "name": "Solcat",
+ "symbol": "SOLCAT",
+ "marketCap": "807860.209301424790721954",
+ "price": "0.00081644136785127577",
+ "priceChange24hPercent": "1.35",
+ "volume24h": "57351.34971426727",
+ "communityRecognized": true,
+ "key": "sol--101:HmJDgky11u77hpBss6D8sjNpYPD5B6fWgSVDj58jpump",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "GUmbtfjSZkybSFgPibBcvwExEBdXwewJHR5PkTjzpump",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-GUmbtfjSZkybSFgPibBcvwExEBdXwewJHR5PkTjzpump-1787591211649.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-GUmbtfjSZkybSFgPibBcvwExEBdXwewJHR5PkTjzpump-1787591211649.png"
+ ],
+ "name": "Gucci Morty",
+ "symbol": "Morty",
+ "marketCap": "273625.100192616254310048",
+ "price": "0.00028587045567050823",
+ "priceChange24hPercent": "-1.88",
+ "volume24h": "530.87123020311",
+ "communityRecognized": false,
+ "key": "sol--101:GUmbtfjSZkybSFgPibBcvwExEBdXwewJHR5PkTjzpump",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "DUZN7M6ezXez9UVrou4N8UEGRkwnbWmXqqZgEKiZCrnN",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-DUZN7M6ezXez9UVrou4N8UEGRkwnbWmXqqZgEKiZCrnN-1788454967021.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-DUZN7M6ezXez9UVrou4N8UEGRkwnbWmXqqZgEKiZCrnN-1788454967021.png"
+ ],
+ "name": "Marketplier",
+ "symbol": "MARKET",
+ "marketCap": "553744.257303653861128357",
+ "price": "0.00057101973343138657",
+ "priceChange24hPercent": "9.53",
+ "volume24h": "14141.422613061201674312",
+ "communityRecognized": false,
+ "key": "sol--101:DUZN7M6ezXez9UVrou4N8UEGRkwnbWmXqqZgEKiZCrnN",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "Xsc9qvGR1efVDFGLrVsmkzv3qi45LTBjeUKSPmx9qEh",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-Xsc9qvGR1efVDFGLrVsmkzv3qi45LTBjeUKSPmx9qEh-1758104122411.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-Xsc9qvGR1efVDFGLrVsmkzv3qi45LTBjeUKSPmx9qEh-1758104122411.png"
+ ],
+ "name": "NVIDIA xStock",
+ "symbol": "NVDAx",
+ "marketCap": "40688636.700095001974864294",
+ "price": "232.90275658577221331091",
+ "priceChange24hPercent": "0.52",
+ "volume24h": "40255.085480693044612835",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 xStock 代币化发行",
+ "subtitle": "英伟达",
+ "source": "xstock",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/xstock.png",
+ "isOpen": true
+ },
+ "key": "sol--101:Xsc9qvGR1efVDFGLrVsmkzv3qi45LTBjeUKSPmx9qEh",
+ "kind": "stock",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "4k3Dyjzvzp8eMZWUXbBCjEvwSkkk59S5iCNLY3QrkX6R",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-4k3Dyjzvzp8eMZWUXbBCjEvwSkkk59S5iCNLY3QrkX6R-1758104080638.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-4k3Dyjzvzp8eMZWUXbBCjEvwSkkk59S5iCNLY3QrkX6R-1758104080638.png"
+ ],
+ "name": "Raydium",
+ "symbol": "RAY",
+ "marketCap": "686552423.523398301690605977",
+ "price": "1.23703686994343528221",
+ "priceChange24hPercent": "1.89",
+ "volume24h": "1654630.534128704285216447",
+ "communityRecognized": true,
+ "key": "sol--101:4k3Dyjzvzp8eMZWUXbBCjEvwSkkk59S5iCNLY3QrkX6R",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "CSgbRaZ3Gw4TDJvPfCWU3u2kPEQT4JF2v6iB59WwAaMJ",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/d2dc0c132b0cb4f6e97a3bbdeb9fb3aced00ff285c41cae13db9b2edb1224859",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/d2dc0c132b0cb4f6e97a3bbdeb9fb3aced00ff285c41cae13db9b2edb1224859"
+ ],
+ "name": "Baton",
+ "symbol": "BATON",
+ "marketCap": "154107.951097407944104333",
+ "price": "0.00015933796596226775",
+ "priceChange24hPercent": "-27.98",
+ "volume24h": "34496.6995756032",
+ "communityRecognized": false,
+ "key": "sol--101:CSgbRaZ3Gw4TDJvPfCWU3u2kPEQT4JF2v6iB59WwAaMJ",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "6fbgUAM323YmfyA9cE3wozr7UKHhgquW4qBCgGhxHLDt",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/6f197fc8a0fff7decf567fb8951a835c7c7bd0f3c193b2d790af3d400a9fdb25",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/6f197fc8a0fff7decf567fb8951a835c7c7bd0f3c193b2d790af3d400a9fdb25"
+ ],
+ "name": "Prime Cat",
+ "symbol": "PRIMECAT",
+ "marketCap": "211062.448367651928881224",
+ "price": "0.00021106244851708773",
+ "priceChange24hPercent": "0.64",
+ "volume24h": "14088.75263350930272194",
+ "communityRecognized": false,
+ "key": "sol--101:6fbgUAM323YmfyA9cE3wozr7UKHhgquW4qBCgGhxHLDt",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "taoC6xyv2v8tDLcev4uaGUgV4vdQsWJrGft2kcBRrBY",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-taoC6xyv2v8tDLcev4uaGUgV4vdQsWJrGft2kcBRrBY-1778080135513.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-taoC6xyv2v8tDLcev4uaGUgV4vdQsWJrGft2kcBRrBY-1778080135513.png"
+ ],
+ "name": "Bittensor",
+ "symbol": "TAO",
+ "marketCap": "513859.107833253416823347",
+ "price": "253.29102729219274125932",
+ "priceChange24hPercent": "-1.84",
+ "volume24h": "54906.08533931766",
+ "communityRecognized": true,
+ "key": "sol--101:taoC6xyv2v8tDLcev4uaGUgV4vdQsWJrGft2kcBRrBY",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "XsDoVfqeBukxuZHWhdvWHBhgEHjGNst4MLodqsJHzoB",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-XsDoVfqeBukxuZHWhdvWHBhgEHjGNst4MLodqsJHzoB-1758104143706.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-XsDoVfqeBukxuZHWhdvWHBhgEHjGNst4MLodqsJHzoB-1758104143706.png"
+ ],
+ "name": "Tesla xStock",
+ "symbol": "TSLAx",
+ "marketCap": "70828076.651364965334430792",
+ "price": "356.45829518959530641641",
+ "priceChange24hPercent": "-",
+ "volume24h": "484717.127030810410579778",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 xStock 代币化发行",
+ "subtitle": "特斯拉",
+ "source": "xstock",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/xstock.png",
+ "isOpen": true
+ },
+ "key": "sol--101:XsDoVfqeBukxuZHWhdvWHBhgEHjGNst4MLodqsJHzoB",
+ "kind": "stock",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "Xs8S1uUs1zvS2p7iwtsG3b6fkhpvmwz4GYU3gWAmWHZ",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-Xs8S1uUs1zvS2p7iwtsG3b6fkhpvmwz4GYU3gWAmWHZ-1758104625424.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-Xs8S1uUs1zvS2p7iwtsG3b6fkhpvmwz4GYU3gWAmWHZ-1758104625424.png"
+ ],
+ "name": "Nasdaq xStock",
+ "symbol": "QQQx",
+ "marketCap": "36239960.151659816287497574",
+ "price": "718.93420524208829164119",
+ "priceChange24hPercent": "0.45",
+ "volume24h": "55871.902418884720937896",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 xStock 代币化发行",
+ "subtitle": "纳指ETF",
+ "source": "xstock",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/xstock.png",
+ "isOpen": true
+ },
+ "key": "sol--101:Xs8S1uUs1zvS2p7iwtsG3b6fkhpvmwz4GYU3gWAmWHZ",
+ "kind": "stock",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "DRqXeQA5sKGeksnRTvhTGEwpaqNtHQo8bQqub7pjpump",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/2921c4251783973f1883431eb5230fdccad504aee8793234966d2c8864a4206d",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/2921c4251783973f1883431eb5230fdccad504aee8793234966d2c8864a4206d"
+ ],
+ "name": "vc.fun",
+ "symbol": "VC",
+ "marketCap": "2590223.325839916086385083",
+ "price": "0.00259168693805588981",
+ "priceChange24hPercent": "18.59",
+ "volume24h": "39060.81363019642",
+ "communityRecognized": false,
+ "key": "sol--101:DRqXeQA5sKGeksnRTvhTGEwpaqNtHQo8bQqub7pjpump",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "56eTQTFeeB7P3UcCjU6g9gcXEXX8oN3yAVwb329xqymn",
+ "logoUrl": "https://static.oklink.com/cdn/web3/currency/token/large/501-56eTQTFeeB7P3UcCjU6g9gcXEXX8oN3yAVwb329xqymn-107/type=default_90_0?v=1788837928627",
+ "logoUrls": [
+ "https://static.oklink.com/cdn/web3/currency/token/large/501-56eTQTFeeB7P3UcCjU6g9gcXEXX8oN3yAVwb329xqymn-107/type=default_90_0?v=1788837928627"
+ ],
+ "name": "SpaceX",
+ "symbol": "SPCX",
+ "marketCap": "2242391.689156199187656564",
+ "price": "0.00002242391704811804",
+ "priceChange24hPercent": "103517.51",
+ "volume24h": "15668487.08177916906",
+ "communityRecognized": false,
+ "key": "sol--101:56eTQTFeeB7P3UcCjU6g9gcXEXX8oN3yAVwb329xqymn",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "3N7KNXRwdCokLdr88h2FPrtNgyMBKwjkxLQrBAMErvBy",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/822b49ecc68933b8f7ba917f7ce6662718398623600069b770d8467e1ef65909",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/822b49ecc68933b8f7ba917f7ce6662718398623600069b770d8467e1ef65909"
+ ],
+ "name": "Alon Teller Machine",
+ "symbol": "ATM",
+ "marketCap": "17500.148252005563078925",
+ "price": "0.00001750014825200562",
+ "priceChange24hPercent": "-1.17",
+ "volume24h": "16901.95730341869",
+ "communityRecognized": false,
+ "key": "sol--101:3N7KNXRwdCokLdr88h2FPrtNgyMBKwjkxLQrBAMErvBy",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "XsCPL9dNWBMvFtTmwcCA5v3xWPSMEBCszbQdiLLq6aN",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-XsCPL9dNWBMvFtTmwcCA5v3xWPSMEBCszbQdiLLq6aN-1758104813770.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-XsCPL9dNWBMvFtTmwcCA5v3xWPSMEBCszbQdiLLq6aN-1758104813770.png"
+ ],
+ "name": "Alphabet xStock",
+ "symbol": "GOOGLx",
+ "marketCap": "34924511.355344239332582928",
+ "price": "338.91520691789838497732",
+ "priceChange24hPercent": "0.53",
+ "volume24h": "117773.164812989534722744",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 xStock 代币化发行",
+ "subtitle": "谷歌",
+ "source": "xstock",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/xstock.png",
+ "isOpen": true
+ },
+ "key": "sol--101:XsCPL9dNWBMvFtTmwcCA5v3xWPSMEBCszbQdiLLq6aN",
+ "kind": "stock",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "EicWvteVi2fWepEzS3FYWsnuPoP6caZfjnKqNvydLjCH",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-EicWvteVi2fWepEzS3FYWsnuPoP6caZfjnKqNvydLjCH-1768663250541.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-EicWvteVi2fWepEzS3FYWsnuPoP6caZfjnKqNvydLjCH-1768663250541.png"
+ ],
+ "name": "Lighter",
+ "symbol": "LIT",
+ "marketCap": "2406344.494081651100392756",
+ "price": "4.64379141369534667178",
+ "priceChange24hPercent": "0.15",
+ "volume24h": "161313.20380051089",
+ "communityRecognized": false,
+ "key": "sol--101:EicWvteVi2fWepEzS3FYWsnuPoP6caZfjnKqNvydLjCH",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "KLh7sQxoWY4GhRSqHToeCorCHLEWLS7PbRjWYTFpump",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/7b3a4b3a08b4b382b7165fe747a87bcc165b4d3955be1d74626a76d04230db45",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/7b3a4b3a08b4b382b7165fe747a87bcc165b4d3955be1d74626a76d04230db45"
+ ],
+ "name": "Aura Farming",
+ "symbol": "AURA",
+ "marketCap": "524973.320051223562341447",
+ "price": "0.0005316147455895989",
+ "priceChange24hPercent": "40.27",
+ "volume24h": "17144.09897888856",
+ "communityRecognized": false,
+ "key": "sol--101:KLh7sQxoWY4GhRSqHToeCorCHLEWLS7PbRjWYTFpump",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "A13oRB9FFaiUjfi6LdCg6p9ka1u8SfGkUFs4SKvPpump",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-A13oRB9FFaiUjfi6LdCg6p9ka1u8SfGkUFs4SKvPpump-1786208973375.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-A13oRB9FFaiUjfi6LdCg6p9ka1u8SfGkUFs4SKvPpump-1786208973375.png"
+ ],
+ "name": "The Toad Pepe",
+ "symbol": "TOAD",
+ "marketCap": "3811760.624214865858761162",
+ "price": "0.00396827439325526335",
+ "priceChange24hPercent": "-4.53",
+ "volume24h": "47259.09017527402231879",
+ "communityRecognized": true,
+ "key": "sol--101:A13oRB9FFaiUjfi6LdCg6p9ka1u8SfGkUFs4SKvPpump",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "2jzcLT2Xgx8RjJ6q1yUwyVu9qtN8nHjJ7ScgVMnYFL5e",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/480bf15850892d41b7e93ac5bc5c5f96cdb3b6c1d687413254ed6851f0542e3e",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/480bf15850892d41b7e93ac5bc5c5f96cdb3b6c1d687413254ed6851f0542e3e"
+ ],
+ "name": "Google",
+ "symbol": "GOOGL",
+ "marketCap": "4953635.009465024918252686",
+ "price": "0.00004953635042784716",
+ "priceChange24hPercent": "58.37",
+ "volume24h": "17302717.60258284392",
+ "communityRecognized": false,
+ "key": "sol--101:2jzcLT2Xgx8RjJ6q1yUwyVu9qtN8nHjJ7ScgVMnYFL5e",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "FPfi9q1AixdUeWQVPFHJMJQ7a43S78dm6UZ4fzN4pump",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-FPfi9q1AixdUeWQVPFHJMJQ7a43S78dm6UZ4fzN4pump-1786295210474.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-FPfi9q1AixdUeWQVPFHJMJQ7a43S78dm6UZ4fzN4pump-1786295210474.png"
+ ],
+ "name": "9gnosis",
+ "symbol": "nosis",
+ "marketCap": "306063.323882097621475407",
+ "price": "0.00031443043565121607",
+ "priceChange24hPercent": "1.3",
+ "volume24h": "1270.23248657501",
+ "communityRecognized": false,
+ "key": "sol--101:FPfi9q1AixdUeWQVPFHJMJQ7a43S78dm6UZ4fzN4pump",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "3d2UiLwJmRUtgnH5FG7K55GYBmojZmJn5GHPyCUCpump",
+ "logoUrl": "https://static.oklink.com/cdn/web3/currency/token/large/501-3d2UiLwJmRUtgnH5FG7K55GYBmojZmJn5GHPyCUCpump-109/type=default_90_0?v=1788732565873",
+ "logoUrls": [
+ "https://static.oklink.com/cdn/web3/currency/token/large/501-3d2UiLwJmRUtgnH5FG7K55GYBmojZmJn5GHPyCUCpump-109/type=default_90_0?v=1788732565873"
+ ],
+ "name": "Robinhood Killer",
+ "symbol": "KILLER",
+ "marketCap": "63738.326904862725822539",
+ "price": "0.00006726061812649702",
+ "priceChange24hPercent": "135.6",
+ "volume24h": "44237.91736869887",
+ "communityRecognized": false,
+ "key": "sol--101:3d2UiLwJmRUtgnH5FG7K55GYBmojZmJn5GHPyCUCpump",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "8iBSN84vSpZAhMCin81YS9FBgiuQhKns2udaZ8qTzkh5",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/d47faaf1af74dc4b8f159f83c5594fefb37c28f24d40c84c3aa877b59113713c",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/d47faaf1af74dc4b8f159f83c5594fefb37c28f24d40c84c3aa877b59113713c"
+ ],
+ "name": "Boomer",
+ "symbol": "BOOMER",
+ "marketCap": "245795.75122960801241058",
+ "price": "0.00024579648930853509",
+ "priceChange24hPercent": "0.61",
+ "volume24h": "8199.5877771791344289",
+ "communityRecognized": false,
+ "key": "sol--101:8iBSN84vSpZAhMCin81YS9FBgiuQhKns2udaZ8qTzkh5",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "CFNRDaxFcvRwRSNnA5cHrCCr6AHhk9dNkHWpRUjNupFL",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-CFNRDaxFcvRwRSNnA5cHrCCr6AHhk9dNkHWpRUjNupFL-1786726803397.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-CFNRDaxFcvRwRSNnA5cHrCCr6AHhk9dNkHWpRUjNupFL-1786726803397.png"
+ ],
+ "name": "Raydium Cat",
+ "symbol": "RAYCAT",
+ "marketCap": "1893911.010287750036666526",
+ "price": "0.00195948638071893547",
+ "priceChange24hPercent": "21.95",
+ "volume24h": "77383.70959325486",
+ "communityRecognized": false,
+ "key": "sol--101:CFNRDaxFcvRwRSNnA5cHrCCr6AHhk9dNkHWpRUjNupFL",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "AbpWkswGpFNYHatQG3eRTjpQLBoi5EYhbJQ7EspcR23R",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/0cbe60d7253995cacf2a6d839528e4da4b4aacb255dbf8103f9c9a91fc4c008c",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/0cbe60d7253995cacf2a6d839528e4da4b4aacb255dbf8103f9c9a91fc4c008c"
+ ],
+ "name": "Drippy Cat",
+ "symbol": "DripCat",
+ "marketCap": "123951.800721698635174623",
+ "price": "0.00012993824087661078",
+ "priceChange24hPercent": "3.32",
+ "volume24h": "4633.73687048724",
+ "communityRecognized": false,
+ "key": "sol--101:AbpWkswGpFNYHatQG3eRTjpQLBoi5EYhbJQ7EspcR23R",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "49nkLrXi8nCZBVKsShDNasEtPe4Vn1mx9Xbr3kTa8pTL",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-49nkLrXi8nCZBVKsShDNasEtPe4Vn1mx9Xbr3kTa8pTL-1786556164775.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-49nkLrXi8nCZBVKsShDNasEtPe4Vn1mx9Xbr3kTa8pTL-1786556164775.png"
+ ],
+ "name": "Sent from my Pumpfun App",
+ "symbol": "App",
+ "marketCap": "290050.045121946116672975",
+ "price": "0.0003177313555863665",
+ "priceChange24hPercent": "-6.44",
+ "volume24h": "1902.91716591824",
+ "communityRecognized": false,
+ "key": "sol--101:49nkLrXi8nCZBVKsShDNasEtPe4Vn1mx9Xbr3kTa8pTL",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "CWZ6BsdnjkDVTGkmL6bGbJXXig6ceef12KvyGQW14cMt",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-CWZ6BsdnjkDVTGkmL6bGbJXXig6ceef12KvyGQW14cMt-1777993905309.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-CWZ6BsdnjkDVTGkmL6bGbJXXig6ceef12KvyGQW14cMt-1777993905309.png"
+ ],
+ "name": "AntFun",
+ "symbol": "ANTFUN",
+ "marketCap": "146373036.274191056476698399",
+ "price": "0.0775381209271946691",
+ "priceChange24hPercent": "2.19",
+ "volume24h": "634475.49773860441",
+ "communityRecognized": true,
+ "key": "sol--101:CWZ6BsdnjkDVTGkmL6bGbJXXig6ceef12KvyGQW14cMt",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "LLYuwZ33keFihgwoxXsBawy31AiRFLFSva32TYq5TvD",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-LLYuwZ33keFihgwoxXsBawy31AiRFLFSva32TYq5TvD-1787333825011.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-LLYuwZ33keFihgwoxXsBawy31AiRFLFSva32TYq5TvD-1787333825011.png"
+ ],
+ "name": "Eli Lilly and Company - Backpack Securities",
+ "symbol": "LLY",
+ "marketCap": "275626.510340279162671948",
+ "price": "1147.96412125267665952891",
+ "priceChange24hPercent": "-0.27",
+ "volume24h": "15930.227699223354844374",
+ "communityRecognized": false,
+ "key": "sol--101:LLYuwZ33keFihgwoxXsBawy31AiRFLFSva32TYq5TvD",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "dgQorQonJjekhZZttZe9isbqFFsDjXvCGBCMc4pSTNK",
+ "logoUrl": "https://static.oklink.com/cdn/web3/currency/token/large/501-dgQorQonJjekhZZttZe9isbqFFsDjXvCGBCMc4pSTNK-109/type=default_90_0?v=1788832606870",
+ "logoUrls": [
+ "https://static.oklink.com/cdn/web3/currency/token/large/501-dgQorQonJjekhZZttZe9isbqFFsDjXvCGBCMc4pSTNK-109/type=default_90_0?v=1788832606870"
+ ],
+ "name": "CATURN",
+ "symbol": "CATURN",
+ "marketCap": "41110.830725351584742791",
+ "price": "0.00004111119507048669",
+ "priceChange24hPercent": "35.62",
+ "volume24h": "10894.7463919962",
+ "communityRecognized": false,
+ "key": "sol--101:dgQorQonJjekhZZttZe9isbqFFsDjXvCGBCMc4pSTNK",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "FZqdw6oSDCbHtKYxmhnfbi97SnyVy8jaYpdCoMrrjKa2",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-FZqdw6oSDCbHtKYxmhnfbi97SnyVy8jaYpdCoMrrjKa2-1788109336336.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-FZqdw6oSDCbHtKYxmhnfbi97SnyVy8jaYpdCoMrrjKa2-1788109336336.png"
+ ],
+ "name": "Pistacio",
+ "symbol": "Pistacio",
+ "marketCap": "478347.141909431315607453",
+ "price": "0.0004902663352054724",
+ "priceChange24hPercent": "0.17",
+ "volume24h": "5409.36455528491",
+ "communityRecognized": true,
+ "key": "sol--101:FZqdw6oSDCbHtKYxmhnfbi97SnyVy8jaYpdCoMrrjKa2",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "SiLVFMgD3eD2rgK628NbTBq9MnuJF5FW2CRaVyTB35L",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-SiLVFMgD3eD2rgK628NbTBq9MnuJF5FW2CRaVyTB35L-1786641144146.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-SiLVFMgD3eD2rgK628NbTBq9MnuJF5FW2CRaVyTB35L-1786641144146.png"
+ ],
+ "name": "Dominion Silver",
+ "symbol": "SILV",
+ "marketCap": "6193007.964192806796538243",
+ "price": "66.39192033949276572994",
+ "priceChange24hPercent": "0.04",
+ "volume24h": "25862.69152524417",
+ "communityRecognized": true,
+ "key": "sol--101:SiLVFMgD3eD2rgK628NbTBq9MnuJF5FW2CRaVyTB35L",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "SKRbvo6Gf7GondiT3BbTfuRDPqLWei4j2Qy2NPGZhW3",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-SKRbvo6Gf7GondiT3BbTfuRDPqLWei4j2Qy2NPGZhW3-1769007834351.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-SKRbvo6Gf7GondiT3BbTfuRDPqLWei4j2Qy2NPGZhW3-1769007834351.png"
+ ],
+ "name": "Seeker",
+ "symbol": "SKR",
+ "marketCap": "110810462.772040417287604958",
+ "price": "0.02184649957264364455",
+ "priceChange24hPercent": "-1.4",
+ "volume24h": "67144.522462518483079609",
+ "communityRecognized": true,
+ "key": "sol--101:SKRbvo6Gf7GondiT3BbTfuRDPqLWei4j2Qy2NPGZhW3",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "6PRF6c3Le4w1E35Dn7xMLwBwE87yVHZY37VD8Et2pump",
+ "logoUrl": "https://static.oklink.com/cdn/web3/currency/token/large/501-6PRF6c3Le4w1E35Dn7xMLwBwE87yVHZY37VD8Et2pump-107/type=default_90_0?v=1788839814720",
+ "logoUrls": [
+ "https://static.oklink.com/cdn/web3/currency/token/large/501-6PRF6c3Le4w1E35Dn7xMLwBwE87yVHZY37VD8Et2pump-107/type=default_90_0?v=1788839814720"
+ ],
+ "name": "stank memes",
+ "symbol": "STANK",
+ "marketCap": "14450.545795235662678913",
+ "price": "0.00001481053729413321",
+ "priceChange24hPercent": "339.62",
+ "volume24h": "342875.96205770308",
+ "communityRecognized": false,
+ "key": "sol--101:6PRF6c3Le4w1E35Dn7xMLwBwE87yVHZY37VD8Et2pump",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "ApZuxdpzMrbEYTGEzeY9afh5pj9d6qPRJCTgQYiipbKg",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-ApZuxdpzMrbEYTGEzeY9afh5pj9d6qPRJCTgQYiipbKg-1787159398565.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-ApZuxdpzMrbEYTGEzeY9afh5pj9d6qPRJCTgQYiipbKg-1787159398565.png"
+ ],
+ "name": "CyberLeek",
+ "symbol": "CYBERLEEK",
+ "marketCap": "575840.051600828045745536",
+ "price": "0.00078889391430518674",
+ "priceChange24hPercent": "-0.07",
+ "volume24h": "6716.10708954488",
+ "communityRecognized": true,
+ "key": "sol--101:ApZuxdpzMrbEYTGEzeY9afh5pj9d6qPRJCTgQYiipbKg",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "poNSfquKq512ApeYjVghwViSun4x1MhCqHVH2Paq4jN",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-poNSfquKq512ApeYjVghwViSun4x1MhCqHVH2Paq4jN-1788282231281.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-poNSfquKq512ApeYjVghwViSun4x1MhCqHVH2Paq4jN-1788282231281.png"
+ ],
+ "name": "Pons",
+ "symbol": "PONS",
+ "marketCap": "1216890.936296467279698441",
+ "price": "0.70271179731256876631",
+ "priceChange24hPercent": "0.98",
+ "volume24h": "26919.71488216552",
+ "communityRecognized": true,
+ "key": "sol--101:poNSfquKq512ApeYjVghwViSun4x1MhCqHVH2Paq4jN",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "GiUHYs5Hsv94P8bR9m26DsXsX8E786rQsFsPK6spump",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/9eddbda8acf2b136882f4e42c2f8aa2a215e106d7d83dbcb47fa9feccc5ec1fe",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/9eddbda8acf2b136882f4e42c2f8aa2a215e106d7d83dbcb47fa9feccc5ec1fe"
+ ],
+ "name": "Rich Debt",
+ "symbol": "RICHDEBT",
+ "marketCap": "839374.689400874922873267",
+ "price": "0.00085288292501745959",
+ "priceChange24hPercent": "-26.65",
+ "volume24h": "70170.28272844851",
+ "communityRecognized": false,
+ "key": "sol--101:GiUHYs5Hsv94P8bR9m26DsXsX8E786rQsFsPK6spump",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "Xsv9hRk1z5ystj9MhnA7Lq4vjSsLwzL2nxrwmwtD3re",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-Xsv9hRk1z5ystj9MhnA7Lq4vjSsLwzL2nxrwmwtD3re-1758104319384.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-Xsv9hRk1z5ystj9MhnA7Lq4vjSsLwzL2nxrwmwtD3re-1758104319384.png"
+ ],
+ "name": "Gold xStock",
+ "symbol": "GLDx",
+ "marketCap": "10061471.106234484581859928",
+ "price": "406.92792228575909247763",
+ "priceChange24hPercent": "-",
+ "volume24h": "124453.924970523859541315",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 xStock 代币化发行",
+ "subtitle": "黄金ETF",
+ "source": "xstock",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/xstock.png",
+ "isOpen": true
+ },
+ "key": "sol--101:Xsv9hRk1z5ystj9MhnA7Lq4vjSsLwzL2nxrwmwtD3re",
+ "kind": "stock",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "Tqj8yFmagrg7oorpQkVGYR52r96RFTamvWfth9bpump",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-Tqj8yFmagrg7oorpQkVGYR52r96RFTamvWfth9bpump-1779721519876.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-Tqj8yFmagrg7oorpQkVGYR52r96RFTamvWfth9bpump-1779721519876.png"
+ ],
+ "name": "Kintara",
+ "symbol": "KINS",
+ "marketCap": "1078546.330872629076110427",
+ "price": "0.00108755743270806868",
+ "priceChange24hPercent": "1.65",
+ "volume24h": "5219.54279445452",
+ "communityRecognized": true,
+ "key": "sol--101:Tqj8yFmagrg7oorpQkVGYR52r96RFTamvWfth9bpump",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "DkPQvrx7CDYrL4HfHijz6GqZLYm7Pd4rm1kTiumLFwhS",
+ "logoUrl": "https://static.oklink.com/cdn/web3/currency/token/large/501-DkPQvrx7CDYrL4HfHijz6GqZLYm7Pd4rm1kTiumLFwhS-109/type=default_90_0?v=1787582948481",
+ "logoUrls": [
+ "https://static.oklink.com/cdn/web3/currency/token/large/501-DkPQvrx7CDYrL4HfHijz6GqZLYm7Pd4rm1kTiumLFwhS-109/type=default_90_0?v=1787582948481"
+ ],
+ "name": "Stonk Cat",
+ "symbol": "STONKCAT",
+ "marketCap": "369478.282558321845190458",
+ "price": "0.00038189625850559385",
+ "priceChange24hPercent": "-5.63",
+ "volume24h": "3068.5058272686349066",
+ "communityRecognized": false,
+ "key": "sol--101:DkPQvrx7CDYrL4HfHijz6GqZLYm7Pd4rm1kTiumLFwhS",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "RmtMAYVTTFv2iK9muMrXEoAnSSsZPPgRPbqZCKwNDYk",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-RmtMAYVTTFv2iK9muMrXEoAnSSsZPPgRPbqZCKwNDYk-1786986032590.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-RmtMAYVTTFv2iK9muMrXEoAnSSsZPPgRPbqZCKwNDYk-1786986032590.png"
+ ],
+ "name": "BULLS'S EYE",
+ "symbol": "EYE",
+ "marketCap": "147742.068814700823124318",
+ "price": "0.00014786094452955318",
+ "priceChange24hPercent": "-7.52",
+ "volume24h": "3025.0554369577",
+ "communityRecognized": true,
+ "key": "sol--101:RmtMAYVTTFv2iK9muMrXEoAnSSsZPPgRPbqZCKwNDYk",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "E3PDmbvHfaFyzJBjMLXr6aowbMVBS9XeX7jRy1D4pump",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/1d7e9909f533688aa9b6a9e99e02caf4fea6883947163baae8bc365ac4bca854",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/1d7e9909f533688aa9b6a9e99e02caf4fea6883947163baae8bc365ac4bca854"
+ ],
+ "name": "Caliber",
+ "symbol": "CALI",
+ "marketCap": "47231.958374899053684057",
+ "price": "0.00004847768489339015",
+ "priceChange24hPercent": "2.79",
+ "volume24h": "1544.94853258634",
+ "communityRecognized": false,
+ "key": "sol--101:E3PDmbvHfaFyzJBjMLXr6aowbMVBS9XeX7jRy1D4pump",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "zj1jpp7QMveWHLs61vL9KMZf254KvW7j4AAmBF8ry2k",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-zj1jpp7QMveWHLs61vL9KMZf254KvW7j4AAmBF8ry2k-1787073763293.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-zj1jpp7QMveWHLs61vL9KMZf254KvW7j4AAmBF8ry2k-1787073763293.png"
+ ],
+ "name": "Bullshit Coin",
+ "symbol": "BULLSHIT",
+ "marketCap": "1306902.667021594627849551",
+ "price": "0.00133615191602051191",
+ "priceChange24hPercent": "0.09",
+ "volume24h": "29571.09675078206",
+ "communityRecognized": false,
+ "key": "sol--101:zj1jpp7QMveWHLs61vL9KMZf254KvW7j4AAmBF8ry2k",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "CbyTNf7UPzvewHh4Zp6umogM2RWahhmGRJWLJnPwpump",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/1ad9ec1405dec394a6e02b7068dbef43c73e1bb5ea5ae72ce5a4928db4d9c21d",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/1ad9ec1405dec394a6e02b7068dbef43c73e1bb5ea5ae72ce5a4928db4d9c21d"
+ ],
+ "name": "BIKE TYSON",
+ "symbol": "biketyson",
+ "marketCap": "392011.531020567229607162",
+ "price": "0.00040752600518006132",
+ "priceChange24hPercent": "-0.05",
+ "volume24h": "13027.72940194425",
+ "communityRecognized": false,
+ "key": "sol--101:CbyTNf7UPzvewHh4Zp6umogM2RWahhmGRJWLJnPwpump",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "5XZw2LKTyrfvfiskJ78AMpackRjPcyCif1WhUsPDuVqQ",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-5XZw2LKTyrfvfiskJ78AMpackRjPcyCif1WhUsPDuVqQ-1758111740701.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-5XZw2LKTyrfvfiskJ78AMpackRjPcyCif1WhUsPDuVqQ-1758111740701.png"
+ ],
+ "name": "Wrapped BTC",
+ "symbol": "WBTC",
+ "marketCap": "8290927.238752223349579558",
+ "price": "79089.22173279891237352168",
+ "priceChange24hPercent": "-0.07",
+ "volume24h": "8412.9239076224614314",
+ "communityRecognized": true,
+ "key": "sol--101:5XZw2LKTyrfvfiskJ78AMpackRjPcyCif1WhUsPDuVqQ",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "XSTuo1fV7HHMhs4BYiwtrWSLsMCJNrooH2AssWTYZqP",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-XSTuo1fV7HHMhs4BYiwtrWSLsMCJNrooH2AssWTYZqP-1784905308143.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-XSTuo1fV7HHMhs4BYiwtrWSLsMCJNrooH2AssWTYZqP-1784905308143.png"
+ ],
+ "name": "XST",
+ "symbol": "XST",
+ "marketCap": "960617.247138841141352099",
+ "price": "0.00096062306465343849",
+ "priceChange24hPercent": "-1.27",
+ "volume24h": "912.30062051369",
+ "communityRecognized": true,
+ "key": "sol--101:XSTuo1fV7HHMhs4BYiwtrWSLsMCJNrooH2AssWTYZqP",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "AVBN6kXdaw27ySuvMevKYzNTL8d39b7sGQFDCmsvpump",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-AVBN6kXdaw27ySuvMevKYzNTL8d39b7sGQFDCmsvpump-1788195648484.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-AVBN6kXdaw27ySuvMevKYzNTL8d39b7sGQFDCmsvpump-1788195648484.png"
+ ],
+ "name": "PINK COIN",
+ "symbol": "PINK",
+ "marketCap": "128072.951903292332942126",
+ "price": "0.00013228699888000284",
+ "priceChange24hPercent": "4.41",
+ "volume24h": "999.15443998314",
+ "communityRecognized": false,
+ "key": "sol--101:AVBN6kXdaw27ySuvMevKYzNTL8d39b7sGQFDCmsvpump",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "DLvpmv8R4oTbC1DixU5yHLbBcmnvfTckGF3XFzLTpump",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-DLvpmv8R4oTbC1DixU5yHLbBcmnvfTckGF3XFzLTpump-1788369202858.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-DLvpmv8R4oTbC1DixU5yHLbBcmnvfTckGF3XFzLTpump-1788369202858.png"
+ ],
+ "name": "apewifdress",
+ "symbol": "APEWIF",
+ "marketCap": "262486.797769519560689222",
+ "price": "0.00027294229923012884",
+ "priceChange24hPercent": "17.79",
+ "volume24h": "43296.69377008276",
+ "communityRecognized": true,
+ "key": "sol--101:DLvpmv8R4oTbC1DixU5yHLbBcmnvfTckGF3XFzLTpump",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "8Piwyxfm1rfdv3KRHrXFCqWZ9TjPeeUhfkS9AJCmwa4j",
+ "logoUrl": "https://static.oklink.com/cdn/web3/currency/token/large/501-8Piwyxfm1rfdv3KRHrXFCqWZ9TjPeeUhfkS9AJCmwa4j-107/type=default_90_0?v=1788837800322",
+ "logoUrls": [
+ "https://static.oklink.com/cdn/web3/currency/token/large/501-8Piwyxfm1rfdv3KRHrXFCqWZ9TjPeeUhfkS9AJCmwa4j-107/type=default_90_0?v=1788837800322"
+ ],
+ "name": "Route",
+ "symbol": "ROUTE",
+ "marketCap": "340533.954624889003914989",
+ "price": "0.00003405339737396198",
+ "priceChange24hPercent": "730401520.63",
+ "volume24h": "3066364.16796993654",
+ "communityRecognized": false,
+ "key": "sol--101:8Piwyxfm1rfdv3KRHrXFCqWZ9TjPeeUhfkS9AJCmwa4j",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "33LZGLLvtRDx3uAfJ1CcBSC7pNFqdiCBAvwPsVkBpump",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/587aee7fe9bdef600f1764a3c082d4515a5ad9f30f49bbdd7dfe11b1ec2d4391",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/587aee7fe9bdef600f1764a3c082d4515a5ad9f30f49bbdd7dfe11b1ec2d4391"
+ ],
+ "name": "billboard guy",
+ "symbol": "BILL",
+ "marketCap": "102606.968984252517310013",
+ "price": "0.00010307854394336064",
+ "priceChange24hPercent": "-0.84",
+ "volume24h": "4295.86385334378",
+ "communityRecognized": false,
+ "key": "sol--101:33LZGLLvtRDx3uAfJ1CcBSC7pNFqdiCBAvwPsVkBpump",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "orcaEKTdK7LKz57vaAYr9QeNsVEPfiu6QeMU1kektZE",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-orcaEKTdK7LKz57vaAYr9QeNsVEPfiu6QeMU1kektZE-1758104124917.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-orcaEKTdK7LKz57vaAYr9QeNsVEPfiu6QeMU1kektZE-1758104124917.png"
+ ],
+ "name": "orca",
+ "symbol": "ORCA",
+ "marketCap": "88847954.253392842190092166",
+ "price": "1.46134453763818657079",
+ "priceChange24hPercent": "-0.87",
+ "volume24h": "47225.5541411412363357",
+ "communityRecognized": true,
+ "key": "sol--101:orcaEKTdK7LKz57vaAYr9QeNsVEPfiu6QeMU1kektZE",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "E3i7sTY5QYEBh3itepnomZQt7Eh5kzmHFk1vkm2pump",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-E3i7sTY5QYEBh3itepnomZQt7Eh5kzmHFk1vkm2pump-1786556664833.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-E3i7sTY5QYEBh3itepnomZQt7Eh5kzmHFk1vkm2pump-1786556664833.png"
+ ],
+ "name": "creator capital",
+ "symbol": "cc",
+ "marketCap": "739545.370991279808078966",
+ "price": "0.00077617811735732822",
+ "priceChange24hPercent": "-15.37",
+ "volume24h": "20655.78330560159",
+ "communityRecognized": true,
+ "key": "sol--101:E3i7sTY5QYEBh3itepnomZQt7Eh5kzmHFk1vkm2pump",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "SgceNvzKD9Gh7w5mhWvPaYxZq5Qn8Cdq26oPhqfpump",
+ "logoUrl": "https://static.oklink.com/cdn/web3/currency/token/large/501-SgceNvzKD9Gh7w5mhWvPaYxZq5Qn8Cdq26oPhqfpump-109/type=default_90_0?v=1788833195434",
+ "logoUrls": [
+ "https://static.oklink.com/cdn/web3/currency/token/large/501-SgceNvzKD9Gh7w5mhWvPaYxZq5Qn8Cdq26oPhqfpump-109/type=default_90_0?v=1788833195434"
+ ],
+ "name": "StockCat",
+ "symbol": "StockCat",
+ "marketCap": "45689.033488753654772613",
+ "price": "0.00004711134617446573",
+ "priceChange24hPercent": "-67.55",
+ "volume24h": "662669.7607864171",
+ "communityRecognized": false,
+ "key": "sol--101:SgceNvzKD9Gh7w5mhWvPaYxZq5Qn8Cdq26oPhqfpump",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "rBUZDXHWXrCPLfytCVqagvveqzMwB9tYCpZqxSKpump",
+ "logoUrl": "https://static.oklink.com/cdn/web3/currency/token/large/501-rBUZDXHWXrCPLfytCVqagvveqzMwB9tYCpZqxSKpump-107/type=default_90_0?v=1788786466446",
+ "logoUrls": [
+ "https://static.oklink.com/cdn/web3/currency/token/large/501-rBUZDXHWXrCPLfytCVqagvveqzMwB9tYCpZqxSKpump-107/type=default_90_0?v=1788786466446"
+ ],
+ "name": "RST",
+ "symbol": "RST",
+ "marketCap": "276357353.930585846709807917",
+ "price": "0.27636639640813074159",
+ "priceChange24hPercent": "8.01",
+ "volume24h": "66583.08903868548",
+ "communityRecognized": false,
+ "key": "sol--101:rBUZDXHWXrCPLfytCVqagvveqzMwB9tYCpZqxSKpump",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "45mPrFizTwZP4Por6ynbWMMCYKbQAPotar5WsE4Ac9bY",
+ "logoUrl": "https://static.oklink.com/cdn/web3/currency/token/large/501-45mPrFizTwZP4Por6ynbWMMCYKbQAPotar5WsE4Ac9bY-107/type=default_90_0?v=1788837885603",
+ "logoUrls": [
+ "https://static.oklink.com/cdn/web3/currency/token/large/501-45mPrFizTwZP4Por6ynbWMMCYKbQAPotar5WsE4Ac9bY-107/type=default_90_0?v=1788837885603"
+ ],
+ "name": "Mona Lisa",
+ "symbol": "Mona Lisa",
+ "marketCap": "86502.271358201863850262",
+ "price": "0.00008650227135820186",
+ "priceChange24hPercent": "873.53",
+ "volume24h": "159257.28827351268",
+ "communityRecognized": false,
+ "key": "sol--101:45mPrFizTwZP4Por6ynbWMMCYKbQAPotar5WsE4Ac9bY",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "PreweJYECqtQwBtpxHL171nL2K6umo692gTm7Q3rpgF",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-PreweJYECqtQwBtpxHL171nL2K6umo692gTm7Q3rpgF-1760026398838.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-PreweJYECqtQwBtpxHL171nL2K6umo692gTm7Q3rpgF-1760026398838.png"
+ ],
+ "name": "OpenAI PreStocks",
+ "symbol": "OPENAI",
+ "marketCap": "1440213.737147570420238763",
+ "price": "1026.6377008080411145584",
+ "priceChange24hPercent": "0.06",
+ "volume24h": "120829.76635311053",
+ "communityRecognized": true,
+ "key": "sol--101:PreweJYECqtQwBtpxHL171nL2K6umo692gTm7Q3rpgF",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "3P6WB3hifQ9Z38Ja5qNuaETkgstJUWmP6vf58aYupump",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/88451c8ee52b8d269442ba74ae0115e1a2a7414643d36611a7e7692a508d1667",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/88451c8ee52b8d269442ba74ae0115e1a2a7414643d36611a7e7692a508d1667"
+ ],
+ "name": "CIGR",
+ "symbol": "CIGR",
+ "marketCap": "13367511.433462631375552792",
+ "price": "0.01398381296530120212",
+ "priceChange24hPercent": "-0.2",
+ "volume24h": "714.13048975092",
+ "communityRecognized": false,
+ "key": "sol--101:3P6WB3hifQ9Z38Ja5qNuaETkgstJUWmP6vf58aYupump",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "BcHEaaTCvycPwwsJ9yQTXdHP9X2gCLkznDbZ8VySpump",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-BcHEaaTCvycPwwsJ9yQTXdHP9X2gCLkznDbZ8VySpump-1780845541933.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-BcHEaaTCvycPwwsJ9yQTXdHP9X2gCLkznDbZ8VySpump-1780845541933.png"
+ ],
+ "name": "Jotchua",
+ "symbol": "Jotchua",
+ "marketCap": "1667629.942181976472979053",
+ "price": "0.00166788973412663976",
+ "priceChange24hPercent": "-0.36",
+ "volume24h": "1644.20055816975",
+ "communityRecognized": true,
+ "key": "sol--101:BcHEaaTCvycPwwsJ9yQTXdHP9X2gCLkznDbZ8VySpump",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "DUcjrSmisJATtaQY3K7LvKmCr357uWkjoSGRFnNEpump",
+ "logoUrl": "https://static.oklink.com/cdn/web3/currency/token/large/501-DUcjrSmisJATtaQY3K7LvKmCr357uWkjoSGRFnNEpump-109/type=default_90_0?v=1788237152010",
+ "logoUrls": [
+ "https://static.oklink.com/cdn/web3/currency/token/large/501-DUcjrSmisJATtaQY3K7LvKmCr357uWkjoSGRFnNEpump-109/type=default_90_0?v=1788237152010"
+ ],
+ "name": "DONALD DUCK",
+ "symbol": "FUKYEAH",
+ "marketCap": "84420.810511578428988417",
+ "price": "0.00010946106539682822",
+ "priceChange24hPercent": "14.44",
+ "volume24h": "1046.63521542522",
+ "communityRecognized": false,
+ "key": "sol--101:DUcjrSmisJATtaQY3K7LvKmCr357uWkjoSGRFnNEpump",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "G7vQWurMkMMm2dU3iZpXYFTHT9Biio4F4gZCrwFpKNwG",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-G7vQWurMkMMm2dU3iZpXYFTHT9Biio4F4gZCrwFpKNwG-1769612943271.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-G7vQWurMkMMm2dU3iZpXYFTHT9Biio4F4gZCrwFpKNwG-1769612943271.png"
+ ],
+ "name": "Moonbirds",
+ "symbol": "BIRB",
+ "marketCap": "16873768.987134527793675141",
+ "price": "0.05920620697240185191",
+ "priceChange24hPercent": "0.35",
+ "volume24h": "7877.165246",
+ "communityRecognized": true,
+ "key": "sol--101:G7vQWurMkMMm2dU3iZpXYFTHT9Biio4F4gZCrwFpKNwG",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "Ge9V1kPBbYS2ZEFrXNZoQH49mit7wwdDM7nkMWXKoU13",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/3ba11606482d432ebc4b5c1dd4818bca38010abb3a42010023d5cf8970e3e808",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/3ba11606482d432ebc4b5c1dd4818bca38010abb3a42010023d5cf8970e3e808"
+ ],
+ "name": "NVIDIA",
+ "symbol": "NVDA",
+ "marketCap": "1605662.395908015353515114",
+ "price": "0.00001605662415759666",
+ "priceChange24hPercent": "11.04",
+ "volume24h": "16996592.80827670466",
+ "communityRecognized": false,
+ "key": "sol--101:Ge9V1kPBbYS2ZEFrXNZoQH49mit7wwdDM7nkMWXKoU13",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "Pren1FvFX6J3E4kXhJuCiAD5aDmGEb7qJRncwA8Lkhw",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-Pren1FvFX6J3E4kXhJuCiAD5aDmGEb7qJRncwA8Lkhw-1760025966243.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-Pren1FvFX6J3E4kXhJuCiAD5aDmGEb7qJRncwA8Lkhw-1760025966243.png"
+ ],
+ "name": "Anthropic PreStocks",
+ "symbol": "ANTHROPIC",
+ "marketCap": "7016150.444852688717672937",
+ "price": "950.31252774720350071284",
+ "priceChange24hPercent": "0.08",
+ "volume24h": "217869.19335483846107187",
+ "communityRecognized": true,
+ "key": "sol--101:Pren1FvFX6J3E4kXhJuCiAD5aDmGEb7qJRncwA8Lkhw",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "TTWofwAge91oFhZs7kpQdyrVRkmevgM88xijGvQFbKo",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/cf7b658ba2dd37cdb3815701f8819d25118b74c703eb1868f959a2e0350a3366",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/cf7b658ba2dd37cdb3815701f8819d25118b74c703eb1868f959a2e0350a3366"
+ ],
+ "name": "Take-Two Interactive Software - Backpack Securities",
+ "symbol": "TTWO",
+ "marketCap": "386910.08758471716526815",
+ "price": "215.80705034658883619117",
+ "priceChange24hPercent": "0.36",
+ "volume24h": "13759.951772917791243205",
+ "communityRecognized": false,
+ "key": "sol--101:TTWofwAge91oFhZs7kpQdyrVRkmevgM88xijGvQFbKo",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "DVabFaj9qaZaEKgkJVQGmMmNvNCpunqoTKd3w5NSpump",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/96786d4a78793085bfdefe17fe5cb0ec517ed0a2947dad41e2519b87a3cb5ef2",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/96786d4a78793085bfdefe17fe5cb0ec517ed0a2947dad41e2519b87a3cb5ef2"
+ ],
+ "name": "Charley Davidson",
+ "symbol": "CHARLEY",
+ "marketCap": "25246.560096744536018853",
+ "price": "0.0000264703778694293",
+ "priceChange24hPercent": "541.95",
+ "volume24h": "57661.87428425588",
+ "communityRecognized": false,
+ "key": "sol--101:DVabFaj9qaZaEKgkJVQGmMmNvNCpunqoTKd3w5NSpump",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "J3NKxxXZcnNiMjKw9hYb2K4LUxgwB6t1FtPtQVsv3KFr",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-J3NKxxXZcnNiMjKw9hYb2K4LUxgwB6t1FtPtQVsv3KFr-1758104085553.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-J3NKxxXZcnNiMjKw9hYb2K4LUxgwB6t1FtPtQVsv3KFr-1758104085553.png"
+ ],
+ "name": "SPX6900 (Wormhole)",
+ "symbol": "SPX",
+ "marketCap": "43784611.95278649720820325",
+ "price": "0.53348184523597022682",
+ "priceChange24hPercent": "-0.31",
+ "volume24h": "12633.991192352606714202",
+ "communityRecognized": true,
+ "key": "sol--101:J3NKxxXZcnNiMjKw9hYb2K4LUxgwB6t1FtPtQVsv3KFr",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "eYNHsZxBNAG8qbFGaNQZZ5zuRzRNU59VfqpZo9W43GM",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/82f06f3dfa5c5ad9dab76f131460a6bdb7956f6f7d78249c1621fb92fe47d306",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/82f06f3dfa5c5ad9dab76f131460a6bdb7956f6f7d78249c1621fb92fe47d306"
+ ],
+ "name": "NEEGY",
+ "symbol": "NEEGY",
+ "marketCap": "140865.338811542088364795",
+ "price": "0.00017480552822796453",
+ "priceChange24hPercent": "1.16",
+ "volume24h": "13760.973673085925502345",
+ "communityRecognized": false,
+ "key": "sol--101:eYNHsZxBNAG8qbFGaNQZZ5zuRzRNU59VfqpZo9W43GM",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "CFPkPq1eYPR8GLzEo59wUbbMioX4bshaTQiSGzTSpump",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-CFPkPq1eYPR8GLzEo59wUbbMioX4bshaTQiSGzTSpump-1783005606586.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-CFPkPq1eYPR8GLzEo59wUbbMioX4bshaTQiSGzTSpump-1783005606586.png"
+ ],
+ "name": "The Black Table",
+ "symbol": "MENSA",
+ "marketCap": "541070.015238516625159128",
+ "price": "0.00054108642042014937",
+ "priceChange24hPercent": "-0.65",
+ "volume24h": "608.19763470995",
+ "communityRecognized": false,
+ "key": "sol--101:CFPkPq1eYPR8GLzEo59wUbbMioX4bshaTQiSGzTSpump",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "2zCo6bUowJMvr89ajxuWsPadAqJ2F9akCkxumNsSdgsL",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-2zCo6bUowJMvr89ajxuWsPadAqJ2F9akCkxumNsSdgsL-1784819448907.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-2zCo6bUowJMvr89ajxuWsPadAqJ2F9akCkxumNsSdgsL-1784819448907.png"
+ ],
+ "name": "Hylo 3x Leveraged BTC",
+ "symbol": "xBTC",
+ "marketCap": "838685.045678011158375224",
+ "price": "1.88860655963693248077",
+ "priceChange24hPercent": "-1.73",
+ "volume24h": "36450.50334509462353454",
+ "communityRecognized": false,
+ "key": "sol--101:2zCo6bUowJMvr89ajxuWsPadAqJ2F9akCkxumNsSdgsL",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "CzLSujWBLFsSjncfkh59rUFqvafWcY5tzedWJSuypump",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-CzLSujWBLFsSjncfkh59rUFqvafWcY5tzedWJSuypump-1758104099246.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-CzLSujWBLFsSjncfkh59rUFqvafWcY5tzedWJSuypump-1758104099246.png"
+ ],
+ "name": "Goatseus Maximus",
+ "symbol": "GOAT",
+ "marketCap": "16269788.2523932984888182",
+ "price": "0.01627013028",
+ "priceChange24hPercent": "0.45",
+ "volume24h": "6239.91612677772",
+ "communityRecognized": true,
+ "key": "sol--101:CzLSujWBLFsSjncfkh59rUFqvafWcY5tzedWJSuypump",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "XsoBhf2ufR8fTyNSjqfU71DYGaE6Z3SUGAidpzriAA4",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-XsoBhf2ufR8fTyNSjqfU71DYGaE6Z3SUGAidpzriAA4-1758110751941.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-XsoBhf2ufR8fTyNSjqfU71DYGaE6Z3SUGAidpzriAA4-1758110751941.png"
+ ],
+ "name": "Palantir xStock",
+ "symbol": "PLTRx",
+ "marketCap": "2094268.508783606618086425",
+ "price": "174.78809456158453628937",
+ "priceChange24hPercent": "-",
+ "volume24h": "34950.557743423030800108",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 xStock 代币化发行",
+ "subtitle": "帕兰提尔",
+ "source": "xstock",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/xstock.png",
+ "isOpen": true
+ },
+ "key": "sol--101:XsoBhf2ufR8fTyNSjqfU71DYGaE6Z3SUGAidpzriAA4",
+ "kind": "stock",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "SV151D5pjygAKA8aJJcKzm4wFnRX5G92Fye94jQJk7g",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-SV151D5pjygAKA8aJJcKzm4wFnRX5G92Fye94jQJk7g-1780758501370.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-SV151D5pjygAKA8aJJcKzm4wFnRX5G92Fye94jQJk7g-1780758501370.png"
+ ],
+ "name": "Scarlet & Violet 151",
+ "symbol": "SV151",
+ "marketCap": "519370.167398984738736426",
+ "price": "0.51951531193556202131",
+ "priceChange24hPercent": "-11.03",
+ "volume24h": "50858.59752718385",
+ "communityRecognized": true,
+ "key": "sol--101:SV151D5pjygAKA8aJJcKzm4wFnRX5G92Fye94jQJk7g",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "Dz9mQ9NzkBcCsuGPFJ3r1bS4wgqKMHBPiVuniW8Mbonk",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-Dz9mQ9NzkBcCsuGPFJ3r1bS4wgqKMHBPiVuniW8Mbonk-1758104080638.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-Dz9mQ9NzkBcCsuGPFJ3r1bS4wgqKMHBPiVuniW8Mbonk-1758104080638.png"
+ ],
+ "name": "USELESS COIN",
+ "symbol": "USELESS",
+ "marketCap": "221898830.984786235993999999",
+ "price": "0.22210233333333333333",
+ "priceChange24hPercent": "-3.37",
+ "volume24h": "1930821.142224658990331121",
+ "communityRecognized": true,
+ "key": "sol--101:Dz9mQ9NzkBcCsuGPFJ3r1bS4wgqKMHBPiVuniW8Mbonk",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "2pouN3by7twkiZGy5aEKYUpf78ALDpKRTNu2WsQkpkqt",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-2pouN3by7twkiZGy5aEKYUpf78ALDpKRTNu2WsQkpkqt-1788714470837.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-2pouN3by7twkiZGy5aEKYUpf78ALDpKRTNu2WsQkpkqt-1788714470837.png"
+ ],
+ "name": "Buttensor",
+ "symbol": "BUTT",
+ "marketCap": "2775281.48434082555302534",
+ "price": "0.00277825462178035535",
+ "priceChange24hPercent": "-31.48",
+ "volume24h": "21770.30765988294",
+ "communityRecognized": true,
+ "key": "sol--101:2pouN3by7twkiZGy5aEKYUpf78ALDpKRTNu2WsQkpkqt",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "Grass7B4RdKfBCjTKgSqnXkqjwiGvQyFbuSCUJr3XXjs",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-Grass7B4RdKfBCjTKgSqnXkqjwiGvQyFbuSCUJr3XXjs-1758104080638.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-Grass7B4RdKfBCjTKgSqnXkqjwiGvQyFbuSCUJr3XXjs-1758104080638.png"
+ ],
+ "name": "Grass",
+ "symbol": "GRASS",
+ "marketCap": "83861359.777738400910745264",
+ "price": "0.34382783661427715304",
+ "priceChange24hPercent": "-0.18",
+ "volume24h": "1131.77494978856",
+ "communityRecognized": true,
+ "key": "sol--101:Grass7B4RdKfBCjTKgSqnXkqjwiGvQyFbuSCUJr3XXjs",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "6UpQcMAb5xMzxc7ZfPaVMgx3KqsvKZdT5U718BzD5We2",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-6UpQcMAb5xMzxc7ZfPaVMgx3KqsvKZdT5U718BzD5We2-1776527084186.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-6UpQcMAb5xMzxc7ZfPaVMgx3KqsvKZdT5U718BzD5We2-1776527084186.png"
+ ],
+ "name": "Wrapped XRP",
+ "symbol": "wXRP",
+ "marketCap": "1.110847047217613393",
+ "price": "1.6107282184655396619",
+ "priceChange24hPercent": "3.74",
+ "volume24h": "176817.74278250381",
+ "communityRecognized": true,
+ "key": "sol--101:6UpQcMAb5xMzxc7ZfPaVMgx3KqsvKZdT5U718BzD5We2",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ }
+ ],
+ "trending|sol--101|4h|all": [
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "Ai66LHZG9MCzg1WKdawwqduVAXpNDUuV8M3uyq5ppump",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-Ai66LHZG9MCzg1WKdawwqduVAXpNDUuV8M3uyq5ppump-1785164716552.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-Ai66LHZG9MCzg1WKdawwqduVAXpNDUuV8M3uyq5ppump-1785164716552.png"
+ ],
+ "name": "Catecoin",
+ "symbol": "CATE",
+ "marketCap": "27637003.898624685301070993",
+ "price": "0.02866428115523189032",
+ "priceChange24hPercent": "-3.86",
+ "volume24h": "746446.40762749999",
+ "communityRecognized": true,
+ "key": "sol--101:Ai66LHZG9MCzg1WKdawwqduVAXpNDUuV8M3uyq5ppump",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "7Y7V1a4m2nWK7BMgbka5B4vR1pDvCK7yva3Hnrqkraze",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/fa21eef99efb8b7842c131cfa852344958bd4c32e76767446fd4983cb58d673c",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/fa21eef99efb8b7842c131cfa852344958bd4c32e76767446fd4983cb58d673c"
+ ],
+ "name": "Nasduck",
+ "symbol": "Nasduck",
+ "marketCap": "4913127.702769314832757046",
+ "price": "0.00510932448488828094",
+ "priceChange24hPercent": "17.72",
+ "volume24h": "2436553.45424904839",
+ "communityRecognized": false,
+ "key": "sol--101:7Y7V1a4m2nWK7BMgbka5B4vR1pDvCK7yva3Hnrqkraze",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "9GGGhze1NnQwcABTzxdxx89BEFLFtDueHhkwh6japump",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/a6063f660a1b276bba3b9832297a3b2830c66cc58a607c8cc44705fa1b422161",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/a6063f660a1b276bba3b9832297a3b2830c66cc58a607c8cc44705fa1b422161"
+ ],
+ "name": "CatGPT",
+ "symbol": "CatGPT",
+ "marketCap": "623368.05695686272495979",
+ "price": "0.0006395393467819042",
+ "priceChange24hPercent": "-10.21",
+ "volume24h": "360880.25394014403",
+ "communityRecognized": false,
+ "key": "sol--101:9GGGhze1NnQwcABTzxdxx89BEFLFtDueHhkwh6japump",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "8K5X85PAJHAAVSvYaAzgVPPAPsqqHmvx16ZyBiscYF8L",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-8K5X85PAJHAAVSvYaAzgVPPAPsqqHmvx16ZyBiscYF8L-1788368707252.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-8K5X85PAJHAAVSvYaAzgVPPAPsqqHmvx16ZyBiscYF8L-1788368707252.png"
+ ],
+ "name": "Vida Global CTO",
+ "symbol": "CTO",
+ "marketCap": "10592989.552603280506180158",
+ "price": "0.01156116061447085866",
+ "priceChange24hPercent": "61.36",
+ "volume24h": "3958115.039973176600567695",
+ "communityRecognized": false,
+ "key": "sol--101:8K5X85PAJHAAVSvYaAzgVPPAPsqqHmvx16ZyBiscYF8L",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "ANM35KbUcfKdEVBXzSjZBoT6ceSwYRs3fuc79fp7kRqP",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/db4d10c19523308df10f606b8b29d51a6e19419261d663ae88497cd02efd20f6",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/db4d10c19523308df10f606b8b29d51a6e19419261d663ae88497cd02efd20f6"
+ ],
+ "name": "Pump Cat",
+ "symbol": "Pumpcat",
+ "marketCap": "1912244.462897262858486588",
+ "price": "0.00193673692136345157",
+ "priceChange24hPercent": "-30.94",
+ "volume24h": "798893.05192075144",
+ "communityRecognized": false,
+ "key": "sol--101:ANM35KbUcfKdEVBXzSjZBoT6ceSwYRs3fuc79fp7kRqP",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "MukLDtJ8Cx9DxLbeyLRSWPSposTMWuwHANbuaudpump",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-MukLDtJ8Cx9DxLbeyLRSWPSposTMWuwHANbuaudpump-1788282416465.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-MukLDtJ8Cx9DxLbeyLRSWPSposTMWuwHANbuaudpump-1788282416465.png"
+ ],
+ "name": "OTC",
+ "symbol": "OTC",
+ "marketCap": "18542003.993352522923107375",
+ "price": "0.02608929014980599081",
+ "priceChange24hPercent": "-0.89",
+ "volume24h": "2701680.00919471445",
+ "communityRecognized": false,
+ "key": "sol--101:MukLDtJ8Cx9DxLbeyLRSWPSposTMWuwHANbuaudpump",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "Aw6fiDPWLUnjSsJQtsyEMSaoPaKAUUrStAsYPiPwpump",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/77390ed5d0a7e7ae6ab8a0e2685653ff99f696192f784341e9d9bd613dc27472",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/77390ed5d0a7e7ae6ab8a0e2685653ff99f696192f784341e9d9bd613dc27472"
+ ],
+ "name": "Anonymouse",
+ "symbol": "Anonymouse",
+ "marketCap": "495244.582719193909390358",
+ "price": "0.00051975033502052469",
+ "priceChange24hPercent": "131.2",
+ "volume24h": "222582.08252604555",
+ "communityRecognized": false,
+ "key": "sol--101:Aw6fiDPWLUnjSsJQtsyEMSaoPaKAUUrStAsYPiPwpump",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "9cRCn9rGT8V2imeM2BaKs13yhMEais3ruM3rPvTGpump",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-9cRCn9rGT8V2imeM2BaKs13yhMEais3ruM3rPvTGpump-1782140764006.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-9cRCn9rGT8V2imeM2BaKs13yhMEais3ruM3rPvTGpump-1782140764006.png"
+ ],
+ "name": "The Black Bull",
+ "symbol": "ANSEM",
+ "marketCap": "77325665.471428962943680716",
+ "price": "0.18642026093921585565",
+ "priceChange24hPercent": "-2.71",
+ "volume24h": "2451685.733705361772389809",
+ "communityRecognized": true,
+ "key": "sol--101:9cRCn9rGT8V2imeM2BaKs13yhMEais3ruM3rPvTGpump",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "DoGEV7LASBkQbibMc5k5vKnTZoMg423GpJ5QtJEGfm7R",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/3d506b48124c4da95fa38586899e377b82f98a1d6da24eba1ac8e1c2f82bbb99",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/3d506b48124c4da95fa38586899e377b82f98a1d6da24eba1ac8e1c2f82bbb99"
+ ],
+ "name": "Dogecoin",
+ "symbol": "DOGE",
+ "marketCap": "400481.422778761083764556",
+ "price": "0.0911492596787814689",
+ "priceChange24hPercent": "0.12",
+ "volume24h": "1298178.21731061979",
+ "communityRecognized": true,
+ "key": "sol--101:DoGEV7LASBkQbibMc5k5vKnTZoMg423GpJ5QtJEGfm7R",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "6GmAFSYs4gk3FDao5FzzySQpPZaWsa4rUJHacpMpUNgx",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-6GmAFSYs4gk3FDao5FzzySQpPZaWsa4rUJHacpMpUNgx-1784905991044.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-6GmAFSYs4gk3FDao5FzzySQpPZaWsa4rUJHacpMpUNgx-1784905991044.png"
+ ],
+ "name": "STONK",
+ "symbol": "STONK",
+ "marketCap": "159352027.645430898292448588",
+ "price": "0.18313291500008320491",
+ "priceChange24hPercent": "15.01",
+ "volume24h": "20277062.584793341493259307",
+ "communityRecognized": true,
+ "key": "sol--101:6GmAFSYs4gk3FDao5FzzySQpPZaWsa4rUJHacpMpUNgx",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "HcRLc9VDgjLeK154xDawfb1dmVJ98DoSqcwTHGqiDeJR",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-HcRLc9VDgjLeK154xDawfb1dmVJ98DoSqcwTHGqiDeJR-1788454854698.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-HcRLc9VDgjLeK154xDawfb1dmVJ98DoSqcwTHGqiDeJR-1788454854698.png"
+ ],
+ "name": "Anonymous Cat",
+ "symbol": "ZCAT",
+ "marketCap": "140720182.090924911522665955",
+ "price": "0.14523571716999682309",
+ "priceChange24hPercent": "4.82",
+ "volume24h": "1438896.902810541947554315",
+ "communityRecognized": true,
+ "key": "sol--101:HcRLc9VDgjLeK154xDawfb1dmVJ98DoSqcwTHGqiDeJR",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "zrmswgfyBjwCFziMo4S5EQdpx2GWRBpEK3vK434tx22",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/f69d8a15e3fd4a40a8ff2356de86f9c973e5e8994adf9f3df9b47c3b7820411e",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/f69d8a15e3fd4a40a8ff2356de86f9c973e5e8994adf9f3df9b47c3b7820411e"
+ ],
+ "name": "Token",
+ "symbol": "Token",
+ "marketCap": "198527.049043495890539481",
+ "price": "0.00020514471309310782",
+ "priceChange24hPercent": "6587.59",
+ "volume24h": "347473.25863362484",
+ "communityRecognized": false,
+ "key": "sol--101:zrmswgfyBjwCFziMo4S5EQdpx2GWRBpEK3vK434tx22",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "Cu49bzY6R1wXVqeZzJggYcZiz8fHb9P17mbEzutg4Pq1",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/7a37c15079a67b37403f8b313be9451a491e042b2294fcd29ae1159c5ab38496",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/7a37c15079a67b37403f8b313be9451a491e042b2294fcd29ae1159c5ab38496"
+ ],
+ "name": "Xtremely Retarded People",
+ "symbol": "XRP",
+ "marketCap": "221375.195142721610674083",
+ "price": "0.00022795229677835603",
+ "priceChange24hPercent": "7547.77",
+ "volume24h": "1428289.68854337202",
+ "communityRecognized": false,
+ "key": "sol--101:Cu49bzY6R1wXVqeZzJggYcZiz8fHb9P17mbEzutg4Pq1",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "8RDq8d3uD9mD5K75f1dEGyubN6jGArDMZaA8J4MNpump",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/b90aa9cb8975301bb6924ec124111466ea8177e6be04bd055815c3471ddd5865",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/b90aa9cb8975301bb6924ec124111466ea8177e6be04bd055815c3471ddd5865"
+ ],
+ "name": "OnlyPump",
+ "symbol": "ONLYPUMP",
+ "marketCap": "1279009.296098376368849749",
+ "price": "0.0012904439468177897",
+ "priceChange24hPercent": "44333.96",
+ "volume24h": "2021081.36972878951",
+ "communityRecognized": false,
+ "key": "sol--101:8RDq8d3uD9mD5K75f1dEGyubN6jGArDMZaA8J4MNpump",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "XsoCS1TfEyfFhfvj8EtZ528L3CaKBDBRqRapnBbDF2W",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-XsoCS1TfEyfFhfvj8EtZ528L3CaKBDBRqRapnBbDF2W-1758104197788.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-XsoCS1TfEyfFhfvj8EtZ528L3CaKBDBRqRapnBbDF2W-1758104197788.png"
+ ],
+ "name": "SP500 xStock",
+ "symbol": "SPYx",
+ "marketCap": "55326956.881701947839651506",
+ "price": "770.3324883028980769874",
+ "priceChange24hPercent": "-",
+ "volume24h": "3626502.460458947626156418",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 xStock 代币化发行",
+ "subtitle": "标普500 ETF",
+ "source": "xstock",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/xstock.png",
+ "isOpen": true
+ },
+ "key": "sol--101:XsoCS1TfEyfFhfvj8EtZ528L3CaKBDBRqRapnBbDF2W",
+ "kind": "stock",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "HhXR4SiHzDNYCFXJBpCYg86T4NhzsD4vz4Y5Jtz6ozKx",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/f726c684810fa3c317fc93c5be53f978bd8c53c43e640ba1356f234c0f0904b0",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/f726c684810fa3c317fc93c5be53f978bd8c53c43e640ba1356f234c0f0904b0"
+ ],
+ "name": "OpenAI PreStocks",
+ "symbol": "OPENAI",
+ "marketCap": "2942177.182819003860450524",
+ "price": "0.00002939639562681013",
+ "priceChange24hPercent": "74.19",
+ "volume24h": "69577302.34843363388",
+ "communityRecognized": false,
+ "key": "sol--101:HhXR4SiHzDNYCFXJBpCYg86T4NhzsD4vz4Y5Jtz6ozKx",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "A7bdiYdS5GjqGFtxf17ppRHtDKPkkRqbKtR27dxvQXaS",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-A7bdiYdS5GjqGFtxf17ppRHtDKPkkRqbKtR27dxvQXaS-1760630401975.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-A7bdiYdS5GjqGFtxf17ppRHtDKPkkRqbKtR27dxvQXaS-1760630401975.png"
+ ],
+ "name": "Zcash",
+ "symbol": "ZEC",
+ "marketCap": "108488444.161381129526357315",
+ "price": "1127.87661939915831524943",
+ "priceChange24hPercent": "-1.27",
+ "volume24h": "7618875.343477807616293898",
+ "communityRecognized": true,
+ "key": "sol--101:A7bdiYdS5GjqGFtxf17ppRHtDKPkkRqbKtR27dxvQXaS",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "XsCPL9dNWBMvFtTmwcCA5v3xWPSMEBCszbQdiLLq6aN",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-XsCPL9dNWBMvFtTmwcCA5v3xWPSMEBCszbQdiLLq6aN-1758104813770.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-XsCPL9dNWBMvFtTmwcCA5v3xWPSMEBCszbQdiLLq6aN-1758104813770.png"
+ ],
+ "name": "Alphabet xStock",
+ "symbol": "GOOGLx",
+ "marketCap": "34924511.355344239332582928",
+ "price": "338.91520691789838497732",
+ "priceChange24hPercent": "-",
+ "volume24h": "180017.801896100171619308",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 xStock 代币化发行",
+ "subtitle": "谷歌",
+ "source": "xstock",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/xstock.png",
+ "isOpen": true
+ },
+ "key": "sol--101:XsCPL9dNWBMvFtTmwcCA5v3xWPSMEBCszbQdiLLq6aN",
+ "kind": "stock",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "GPRR2u6NS5yBQHWGauoJ9HXgjrTH8dDsrBfTV5zAYvDH",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-GPRR2u6NS5yBQHWGauoJ9HXgjrTH8dDsrBfTV5zAYvDH-1788370277445.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-GPRR2u6NS5yBQHWGauoJ9HXgjrTH8dDsrBfTV5zAYvDH-1788370277445.png"
+ ],
+ "name": "GoPro - Backpack Securities",
+ "symbol": "GPRO",
+ "marketCap": "367215.739871755057607796",
+ "price": "1.68106738019190069462",
+ "priceChange24hPercent": "1.31",
+ "volume24h": "131546.638410052320234002",
+ "communityRecognized": false,
+ "key": "sol--101:GPRR2u6NS5yBQHWGauoJ9HXgjrTH8dDsrBfTV5zAYvDH",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "2NdgMAFbWVHvXJcoAwuRkTfYn1j97THVCThWATKHSTNK",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/ef1725d3508ae9af7847f0a719c073e46c7ef4250a464f545bb6708dbe380f3e",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/ef1725d3508ae9af7847f0a719c073e46c7ef4250a464f545bb6708dbe380f3e"
+ ],
+ "name": "Universal High Income",
+ "symbol": "UHI",
+ "marketCap": "89335.906881641089296959",
+ "price": "0.00008933590688164109",
+ "priceChange24hPercent": "2411.11",
+ "volume24h": "227210.753042026775951519",
+ "communityRecognized": false,
+ "key": "sol--101:2NdgMAFbWVHvXJcoAwuRkTfYn1j97THVCThWATKHSTNK",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "XsbEhLAtcf6HdfpFZ5xEMdqW8nfAvcsP5bdudRLJzJp",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-XsbEhLAtcf6HdfpFZ5xEMdqW8nfAvcsP5bdudRLJzJp-1758104899904.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-XsbEhLAtcf6HdfpFZ5xEMdqW8nfAvcsP5bdudRLJzJp-1758104899904.png"
+ ],
+ "name": "Apple xStock",
+ "symbol": "AAPLx",
+ "marketCap": "12728432.798393619419131017",
+ "price": "320.5456290268211648992",
+ "priceChange24hPercent": "-",
+ "volume24h": "724343.8458113719432975",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 xStock 代币化发行",
+ "subtitle": "苹果",
+ "source": "xstock",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/xstock.png",
+ "isOpen": true
+ },
+ "key": "sol--101:XsbEhLAtcf6HdfpFZ5xEMdqW8nfAvcsP5bdudRLJzJp",
+ "kind": "stock",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "HooDYv5RewLRiMLnEVq3VJqdqxhuE6c5eYvqejMC3e9A",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-HooDYv5RewLRiMLnEVq3VJqdqxhuE6c5eYvqejMC3e9A-1784387203502.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-HooDYv5RewLRiMLnEVq3VJqdqxhuE6c5eYvqejMC3e9A-1784387203502.png"
+ ],
+ "name": "Robinhood Markets - Backpack Securities",
+ "symbol": "HOOD",
+ "marketCap": "689506.491565078192340844",
+ "price": "123.13754463735993104298",
+ "priceChange24hPercent": "-0.17",
+ "volume24h": "23940.216752301568947477",
+ "communityRecognized": false,
+ "key": "sol--101:HooDYv5RewLRiMLnEVq3VJqdqxhuE6c5eYvqejMC3e9A",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "CaWZeUM4FvX9dPkjGc2xHS6tSN3qJfTWyvaG77aM5o7h",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-CaWZeUM4FvX9dPkjGc2xHS6tSN3qJfTWyvaG77aM5o7h-1788714223572.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-CaWZeUM4FvX9dPkjGc2xHS6tSN3qJfTWyvaG77aM5o7h-1788714223572.png"
+ ],
+ "name": "artificial gooner intelligence",
+ "symbol": "AGI",
+ "marketCap": "7732106.397339240642815567",
+ "price": "0.00782011642651768863",
+ "priceChange24hPercent": "47.57",
+ "volume24h": "230160.96831782864",
+ "communityRecognized": true,
+ "key": "sol--101:CaWZeUM4FvX9dPkjGc2xHS6tSN3qJfTWyvaG77aM5o7h",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "4k3Dyjzvzp8eMZWUXbBCjEvwSkkk59S5iCNLY3QrkX6R",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-4k3Dyjzvzp8eMZWUXbBCjEvwSkkk59S5iCNLY3QrkX6R-1758104080638.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-4k3Dyjzvzp8eMZWUXbBCjEvwSkkk59S5iCNLY3QrkX6R-1758104080638.png"
+ ],
+ "name": "Raydium",
+ "symbol": "RAY",
+ "marketCap": "686552423.523398301690605977",
+ "price": "1.23703686994343528221",
+ "priceChange24hPercent": "6.74",
+ "volume24h": "4265611.502853188073579793",
+ "communityRecognized": true,
+ "key": "sol--101:4k3Dyjzvzp8eMZWUXbBCjEvwSkkk59S5iCNLY3QrkX6R",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "Ax5dAamJPeuaLpFUzs9FdcpoUhHDcxyjPzxCJQidjups",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/f95a47c5025540e39d7788ebf9f3511466b4ae8fcb8785968865e70e204ad7a8",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/f95a47c5025540e39d7788ebf9f3511466b4ae8fcb8785968865e70e204ad7a8"
+ ],
+ "name": "Minirouter.sh",
+ "symbol": "MINI",
+ "marketCap": "3600621.986623418221404783",
+ "price": "0.00360072868677601077",
+ "priceChange24hPercent": "31.53",
+ "volume24h": "295545.46696757212",
+ "communityRecognized": false,
+ "key": "sol--101:Ax5dAamJPeuaLpFUzs9FdcpoUhHDcxyjPzxCJQidjups",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "XsqE9cRRpzxcGKDXj1BJ7Xmg4GRhZoyY1KpmGSxAWT2",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-XsqE9cRRpzxcGKDXj1BJ7Xmg4GRhZoyY1KpmGSxAWT2-1758106345798.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-XsqE9cRRpzxcGKDXj1BJ7Xmg4GRhZoyY1KpmGSxAWT2-1758106345798.png"
+ ],
+ "name": "McDonald's xStock",
+ "symbol": "MCDx",
+ "marketCap": "1408079.851319124295748968",
+ "price": "256.31462582720271173137",
+ "priceChange24hPercent": "-",
+ "volume24h": "524839.532219451649037197",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 xStock 代币化发行",
+ "subtitle": "麦当劳",
+ "source": "xstock",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/xstock.png",
+ "isOpen": true
+ },
+ "key": "sol--101:XsqE9cRRpzxcGKDXj1BJ7Xmg4GRhZoyY1KpmGSxAWT2",
+ "kind": "stock",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "SV151D5pjygAKA8aJJcKzm4wFnRX5G92Fye94jQJk7g",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-SV151D5pjygAKA8aJJcKzm4wFnRX5G92Fye94jQJk7g-1780758501370.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-SV151D5pjygAKA8aJJcKzm4wFnRX5G92Fye94jQJk7g-1780758501370.png"
+ ],
+ "name": "Scarlet & Violet 151",
+ "symbol": "SV151",
+ "marketCap": "519370.167398984738736426",
+ "price": "0.51951531193556202131",
+ "priceChange24hPercent": "25.47",
+ "volume24h": "294357.48811478576",
+ "communityRecognized": true,
+ "key": "sol--101:SV151D5pjygAKA8aJJcKzm4wFnRX5G92Fye94jQJk7g",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "PreweJYECqtQwBtpxHL171nL2K6umo692gTm7Q3rpgF",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-PreweJYECqtQwBtpxHL171nL2K6umo692gTm7Q3rpgF-1760026398838.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-PreweJYECqtQwBtpxHL171nL2K6umo692gTm7Q3rpgF-1760026398838.png"
+ ],
+ "name": "OpenAI PreStocks",
+ "symbol": "OPENAI",
+ "marketCap": "1440213.737147570420238763",
+ "price": "1026.6377008080411145584",
+ "priceChange24hPercent": "0.32",
+ "volume24h": "376034.69059939204",
+ "communityRecognized": true,
+ "key": "sol--101:PreweJYECqtQwBtpxHL171nL2K6umo692gTm7Q3rpgF",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "CTPoyCwkjMvoJwU4xvZZqoD8tiYk6yDchySiN5gGpump",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-CTPoyCwkjMvoJwU4xvZZqoD8tiYk6yDchySiN5gGpump-1788283052361.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-CTPoyCwkjMvoJwU4xvZZqoD8tiYk6yDchySiN5gGpump-1788283052361.png"
+ ],
+ "name": "apeonfone",
+ "symbol": "fone",
+ "marketCap": "7592732.649877651372658265",
+ "price": "0.00766844567357097317",
+ "priceChange24hPercent": "-11.23",
+ "volume24h": "1021593.5266866145",
+ "communityRecognized": true,
+ "key": "sol--101:CTPoyCwkjMvoJwU4xvZZqoD8tiYk6yDchySiN5gGpump",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "Ge87EtsjwRQbHaqQmKRno69RFTwh9bfSsm99XNxTpump",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-Ge87EtsjwRQbHaqQmKRno69RFTwh9bfSsm99XNxTpump-1784214599861.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-Ge87EtsjwRQbHaqQmKRno69RFTwh9bfSsm99XNxTpump-1784214599861.png"
+ ],
+ "name": "Jimothy The Raccoon",
+ "symbol": "Jimothy",
+ "marketCap": "5200822.834881967578969978",
+ "price": "0.00520117125559290377",
+ "priceChange24hPercent": "-2.35",
+ "volume24h": "239178.63770737477",
+ "communityRecognized": true,
+ "key": "sol--101:Ge87EtsjwRQbHaqQmKRno69RFTwh9bfSsm99XNxTpump",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "9Pfync3ejPC9eHqVzq3nYQJAhyhjqpnB9UsaSfLxpump",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-9Pfync3ejPC9eHqVzq3nYQJAhyhjqpnB9UsaSfLxpump-1783523508946.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-9Pfync3ejPC9eHqVzq3nYQJAhyhjqpnB9UsaSfLxpump-1783523508946.png"
+ ],
+ "name": "KET",
+ "symbol": "KET",
+ "marketCap": "4577890.825967480937379315",
+ "price": "0.00457795342625807662",
+ "priceChange24hPercent": "-3.27",
+ "volume24h": "29023.45673505204",
+ "communityRecognized": true,
+ "key": "sol--101:9Pfync3ejPC9eHqVzq3nYQJAhyhjqpnB9UsaSfLxpump",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "DVabFaj9qaZaEKgkJVQGmMmNvNCpunqoTKd3w5NSpump",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/96786d4a78793085bfdefe17fe5cb0ec517ed0a2947dad41e2519b87a3cb5ef2",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/96786d4a78793085bfdefe17fe5cb0ec517ed0a2947dad41e2519b87a3cb5ef2"
+ ],
+ "name": "Charley Davidson",
+ "symbol": "CHARLEY",
+ "marketCap": "25246.560096744536018853",
+ "price": "0.0000264703778694293",
+ "priceChange24hPercent": "818.42",
+ "volume24h": "58651.86891240053",
+ "communityRecognized": false,
+ "key": "sol--101:DVabFaj9qaZaEKgkJVQGmMmNvNCpunqoTKd3w5NSpump",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "CGEDT9QZDvvH5GmVkWJH2BXiMJqMJySC9ihWyr7Spump",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-CGEDT9QZDvvH5GmVkWJH2BXiMJqMJySC9ihWyr7Spump-1775315205686.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-CGEDT9QZDvvH5GmVkWJH2BXiMJqMJySC9ihWyr7Spump-1775315205686.png"
+ ],
+ "name": "Burnie Senders",
+ "symbol": "BURNIE",
+ "marketCap": "2020186.857678477830863759",
+ "price": "0.00208340766292912291",
+ "priceChange24hPercent": "21.3",
+ "volume24h": "40778.1704353957",
+ "communityRecognized": true,
+ "key": "sol--101:CGEDT9QZDvvH5GmVkWJH2BXiMJqMJySC9ihWyr7Spump",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "TcnKFgDZc6RhAz83JHHbWeZ5wLc2at8iHK6FhsxkTLh",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/659a26dcb16b02312c48826ba8551dc34d13858cff2c00998dbbbb8ef2aab7dd",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/659a26dcb16b02312c48826ba8551dc34d13858cff2c00998dbbbb8ef2aab7dd"
+ ],
+ "name": "Lucia",
+ "symbol": "Lucia",
+ "marketCap": "162909.72264866850184861",
+ "price": "0.00016896152593551026",
+ "priceChange24hPercent": "121.32",
+ "volume24h": "66942.56136608195",
+ "communityRecognized": false,
+ "key": "sol--101:TcnKFgDZc6RhAz83JHHbWeZ5wLc2at8iHK6FhsxkTLh",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "taoC6xyv2v8tDLcev4uaGUgV4vdQsWJrGft2kcBRrBY",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-taoC6xyv2v8tDLcev4uaGUgV4vdQsWJrGft2kcBRrBY-1778080135513.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-taoC6xyv2v8tDLcev4uaGUgV4vdQsWJrGft2kcBRrBY-1778080135513.png"
+ ],
+ "name": "Bittensor",
+ "symbol": "TAO",
+ "marketCap": "513859.107833253416823347",
+ "price": "253.29102729219274125932",
+ "priceChange24hPercent": "-1.72",
+ "volume24h": "309027.36571607366",
+ "communityRecognized": true,
+ "key": "sol--101:taoC6xyv2v8tDLcev4uaGUgV4vdQsWJrGft2kcBRrBY",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "NBiSF3UaVUFtRzHwAfxyHsBCAZWGEKnMpewAE4oh7BG",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-NBiSF3UaVUFtRzHwAfxyHsBCAZWGEKnMpewAE4oh7BG-1786640418705.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-NBiSF3UaVUFtRzHwAfxyHsBCAZWGEKnMpewAE4oh7BG-1786640418705.png"
+ ],
+ "name": "Nebius Group N.V. - Backpack Securities",
+ "symbol": "NBIS",
+ "marketCap": "421493.517711081192573879",
+ "price": "233.30936452509079712528",
+ "priceChange24hPercent": "1.47",
+ "volume24h": "186414.565088119261856189",
+ "communityRecognized": false,
+ "key": "sol--101:NBiSF3UaVUFtRzHwAfxyHsBCAZWGEKnMpewAE4oh7BG",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "SiLVFMgD3eD2rgK628NbTBq9MnuJF5FW2CRaVyTB35L",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-SiLVFMgD3eD2rgK628NbTBq9MnuJF5FW2CRaVyTB35L-1786641144146.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-SiLVFMgD3eD2rgK628NbTBq9MnuJF5FW2CRaVyTB35L-1786641144146.png"
+ ],
+ "name": "Dominion Silver",
+ "symbol": "SILV",
+ "marketCap": "6193007.964192806796538243",
+ "price": "66.39192033949276572994",
+ "priceChange24hPercent": "1.02",
+ "volume24h": "113419.04354123855",
+ "communityRecognized": true,
+ "key": "sol--101:SiLVFMgD3eD2rgK628NbTBq9MnuJF5FW2CRaVyTB35L",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "XspzcW1PRtgf6Wj92HCiZdjzKCyFekVD8P5Ueh3dRMX",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-XspzcW1PRtgf6Wj92HCiZdjzKCyFekVD8P5Ueh3dRMX-1758110751941.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-XspzcW1PRtgf6Wj92HCiZdjzKCyFekVD8P5Ueh3dRMX-1758110751941.png"
+ ],
+ "name": "Microsoft xStock",
+ "symbol": "MSFTx",
+ "marketCap": "6926994.726502364733218675",
+ "price": "498.69427200083177370255",
+ "priceChange24hPercent": "-",
+ "volume24h": "260223.21404955052170823",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 xStock 代币化发行",
+ "subtitle": "微软",
+ "source": "xstock",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/xstock.png",
+ "isOpen": true
+ },
+ "key": "sol--101:XspzcW1PRtgf6Wj92HCiZdjzKCyFekVD8P5Ueh3dRMX",
+ "kind": "stock",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "Fxq9URcanj5exGoatPxckVr9KFL3mcpJDMKRfSbyrH8q",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/ac252d3221f62580087c09038a994ea9cf9bfbf0611d8531c325b0fcc86503b3",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/ac252d3221f62580087c09038a994ea9cf9bfbf0611d8531c325b0fcc86503b3"
+ ],
+ "name": "Robinhood",
+ "symbol": "HOOD",
+ "marketCap": "4434319.99587062093524057",
+ "price": "0.00004434320021898187",
+ "priceChange24hPercent": "15634.22",
+ "volume24h": "56729461.94570463066",
+ "communityRecognized": false,
+ "key": "sol--101:Fxq9URcanj5exGoatPxckVr9KFL3mcpJDMKRfSbyrH8q",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "DUZN7M6ezXez9UVrou4N8UEGRkwnbWmXqqZgEKiZCrnN",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-DUZN7M6ezXez9UVrou4N8UEGRkwnbWmXqqZgEKiZCrnN-1788454967021.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-DUZN7M6ezXez9UVrou4N8UEGRkwnbWmXqqZgEKiZCrnN-1788454967021.png"
+ ],
+ "name": "Marketplier",
+ "symbol": "MARKET",
+ "marketCap": "553744.257303653861128357",
+ "price": "0.00057101973343138657",
+ "priceChange24hPercent": "11.71",
+ "volume24h": "45913.947255120485007501",
+ "communityRecognized": false,
+ "key": "sol--101:DUZN7M6ezXez9UVrou4N8UEGRkwnbWmXqqZgEKiZCrnN",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "SKHYhSjuRWHgikq8eRKbtBbpABgJSkd7ytQV14i9EQ3",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-SKHYhSjuRWHgikq8eRKbtBbpABgJSkd7ytQV14i9EQ3-1783698573353.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-SKHYhSjuRWHgikq8eRKbtBbpABgJSkd7ytQV14i9EQ3-1783698573353.png"
+ ],
+ "name": "SK Hynix - Backpack Securities",
+ "symbol": "SKHY",
+ "marketCap": "2065.580252752758823912",
+ "price": "187.91028051244970984667",
+ "priceChange24hPercent": "2.84",
+ "volume24h": "752069.04417313681872972",
+ "communityRecognized": false,
+ "key": "sol--101:SKHYhSjuRWHgikq8eRKbtBbpABgJSkd7ytQV14i9EQ3",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "CSgbRaZ3Gw4TDJvPfCWU3u2kPEQT4JF2v6iB59WwAaMJ",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/d2dc0c132b0cb4f6e97a3bbdeb9fb3aced00ff285c41cae13db9b2edb1224859",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/d2dc0c132b0cb4f6e97a3bbdeb9fb3aced00ff285c41cae13db9b2edb1224859"
+ ],
+ "name": "Baton",
+ "symbol": "BATON",
+ "marketCap": "154107.951097407944104333",
+ "price": "0.00015933796596226775",
+ "priceChange24hPercent": "-39.31",
+ "volume24h": "156268.08791202981",
+ "communityRecognized": false,
+ "key": "sol--101:CSgbRaZ3Gw4TDJvPfCWU3u2kPEQT4JF2v6iB59WwAaMJ",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "8iBSN84vSpZAhMCin81YS9FBgiuQhKns2udaZ8qTzkh5",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/d47faaf1af74dc4b8f159f83c5594fefb37c28f24d40c84c3aa877b59113713c",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/d47faaf1af74dc4b8f159f83c5594fefb37c28f24d40c84c3aa877b59113713c"
+ ],
+ "name": "Boomer",
+ "symbol": "BOOMER",
+ "marketCap": "245795.75122960801241058",
+ "price": "0.00024579648930853509",
+ "priceChange24hPercent": "222.42",
+ "volume24h": "99688.337883053194714741",
+ "communityRecognized": false,
+ "key": "sol--101:8iBSN84vSpZAhMCin81YS9FBgiuQhKns2udaZ8qTzkh5",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "A13oRB9FFaiUjfi6LdCg6p9ka1u8SfGkUFs4SKvPpump",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-A13oRB9FFaiUjfi6LdCg6p9ka1u8SfGkUFs4SKvPpump-1786208973375.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-A13oRB9FFaiUjfi6LdCg6p9ka1u8SfGkUFs4SKvPpump-1786208973375.png"
+ ],
+ "name": "The Toad Pepe",
+ "symbol": "TOAD",
+ "marketCap": "3811760.624214865858761162",
+ "price": "0.00396827439325526335",
+ "priceChange24hPercent": "1.03",
+ "volume24h": "212327.374153185996797261",
+ "communityRecognized": true,
+ "key": "sol--101:A13oRB9FFaiUjfi6LdCg6p9ka1u8SfGkUFs4SKvPpump",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "3N7KNXRwdCokLdr88h2FPrtNgyMBKwjkxLQrBAMErvBy",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/822b49ecc68933b8f7ba917f7ce6662718398623600069b770d8467e1ef65909",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/822b49ecc68933b8f7ba917f7ce6662718398623600069b770d8467e1ef65909"
+ ],
+ "name": "Alon Teller Machine",
+ "symbol": "ATM",
+ "marketCap": "17500.148252005563078925",
+ "price": "0.00001750014825200562",
+ "priceChange24hPercent": "360.78",
+ "volume24h": "185744.40042393103",
+ "communityRecognized": false,
+ "key": "sol--101:3N7KNXRwdCokLdr88h2FPrtNgyMBKwjkxLQrBAMErvBy",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "FjhTgMeDgSE2bfo9nHsPtvZanJrDGtVye78a1garpump",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/43903a6e42d7da26082fe1fced6cc266194b4a4cedb8b310198a4a44fae28a07",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/43903a6e42d7da26082fe1fced6cc266194b4a4cedb8b310198a4a44fae28a07"
+ ],
+ "name": "Artificial Giga Inu",
+ "symbol": "AGI",
+ "marketCap": "1452965.581715249728851349",
+ "price": "0.00146282233028788114",
+ "priceChange24hPercent": "50146.19",
+ "volume24h": "2371552.76419104034",
+ "communityRecognized": false,
+ "key": "sol--101:FjhTgMeDgSE2bfo9nHsPtvZanJrDGtVye78a1garpump",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "CFNRDaxFcvRwRSNnA5cHrCCr6AHhk9dNkHWpRUjNupFL",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-CFNRDaxFcvRwRSNnA5cHrCCr6AHhk9dNkHWpRUjNupFL-1786726803397.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-CFNRDaxFcvRwRSNnA5cHrCCr6AHhk9dNkHWpRUjNupFL-1786726803397.png"
+ ],
+ "name": "Raydium Cat",
+ "symbol": "RAYCAT",
+ "marketCap": "1893911.010287750036666526",
+ "price": "0.00195948638071893547",
+ "priceChange24hPercent": "30.54",
+ "volume24h": "156841.41169855144",
+ "communityRecognized": false,
+ "key": "sol--101:CFNRDaxFcvRwRSNnA5cHrCCr6AHhk9dNkHWpRUjNupFL",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "HmJDgky11u77hpBss6D8sjNpYPD5B6fWgSVDj58jpump",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-HmJDgky11u77hpBss6D8sjNpYPD5B6fWgSVDj58jpump-1788282013603.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-HmJDgky11u77hpBss6D8sjNpYPD5B6fWgSVDj58jpump-1788282013603.png"
+ ],
+ "name": "Solcat",
+ "symbol": "SOLCAT",
+ "marketCap": "807860.209301424790721954",
+ "price": "0.00081644136785127577",
+ "priceChange24hPercent": "20.67",
+ "volume24h": "155999.66121988654",
+ "communityRecognized": true,
+ "key": "sol--101:HmJDgky11u77hpBss6D8sjNpYPD5B6fWgSVDj58jpump",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "Xsc9qvGR1efVDFGLrVsmkzv3qi45LTBjeUKSPmx9qEh",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-Xsc9qvGR1efVDFGLrVsmkzv3qi45LTBjeUKSPmx9qEh-1758104122411.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-Xsc9qvGR1efVDFGLrVsmkzv3qi45LTBjeUKSPmx9qEh-1758104122411.png"
+ ],
+ "name": "NVIDIA xStock",
+ "symbol": "NVDAx",
+ "marketCap": "40688636.700095001974864294",
+ "price": "232.90275658577221331091",
+ "priceChange24hPercent": "-",
+ "volume24h": "1213309.513087125634134551",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 xStock 代币化发行",
+ "subtitle": "英伟达",
+ "source": "xstock",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/xstock.png",
+ "isOpen": true
+ },
+ "key": "sol--101:Xsc9qvGR1efVDFGLrVsmkzv3qi45LTBjeUKSPmx9qEh",
+ "kind": "stock",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "2jzcLT2Xgx8RjJ6q1yUwyVu9qtN8nHjJ7ScgVMnYFL5e",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/480bf15850892d41b7e93ac5bc5c5f96cdb3b6c1d687413254ed6851f0542e3e",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/480bf15850892d41b7e93ac5bc5c5f96cdb3b6c1d687413254ed6851f0542e3e"
+ ],
+ "name": "Google",
+ "symbol": "GOOGL",
+ "marketCap": "4953635.009465024918252686",
+ "price": "0.00004953635042784716",
+ "priceChange24hPercent": "17397.64",
+ "volume24h": "49971844.3121303375",
+ "communityRecognized": false,
+ "key": "sol--101:2jzcLT2Xgx8RjJ6q1yUwyVu9qtN8nHjJ7ScgVMnYFL5e",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "3d2UiLwJmRUtgnH5FG7K55GYBmojZmJn5GHPyCUCpump",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/fac45fe6c59a3da6042e6e515cd9b4e1d42cf96f2e1d2fd997311b322c365bf6",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/fac45fe6c59a3da6042e6e515cd9b4e1d42cf96f2e1d2fd997311b322c365bf6"
+ ],
+ "name": "Robinhood Killer",
+ "symbol": "KILLER",
+ "marketCap": "63068.915236774205594382",
+ "price": "0.00006655421360094478",
+ "priceChange24hPercent": "253.04",
+ "volume24h": "57245.32193410101",
+ "communityRecognized": false,
+ "key": "sol--101:3d2UiLwJmRUtgnH5FG7K55GYBmojZmJn5GHPyCUCpump",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "CASHx9KJUStyftLFWGvEVf59SGeG9sh5FfcnZMVPCASH",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-CASHx9KJUStyftLFWGvEVf59SGeG9sh5FfcnZMVPCASH-1760025966243.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-CASHx9KJUStyftLFWGvEVf59SGeG9sh5FfcnZMVPCASH-1760025966243.png"
+ ],
+ "name": "CASH",
+ "symbol": "CASH",
+ "marketCap": "124770342.823262869539783277",
+ "price": "1.00035863706422003936",
+ "priceChange24hPercent": "0",
+ "volume24h": "1517818.44837073681",
+ "communityRecognized": true,
+ "key": "sol--101:CASHx9KJUStyftLFWGvEVf59SGeG9sh5FfcnZMVPCASH",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "6fbgUAM323YmfyA9cE3wozr7UKHhgquW4qBCgGhxHLDt",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/6f197fc8a0fff7decf567fb8951a835c7c7bd0f3c193b2d790af3d400a9fdb25",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/6f197fc8a0fff7decf567fb8951a835c7c7bd0f3c193b2d790af3d400a9fdb25"
+ ],
+ "name": "Prime Cat",
+ "symbol": "PRIMECAT",
+ "marketCap": "211062.448367651928881224",
+ "price": "0.00021106244851708773",
+ "priceChange24hPercent": "-30.47",
+ "volume24h": "116259.639189189474236568",
+ "communityRecognized": false,
+ "key": "sol--101:6fbgUAM323YmfyA9cE3wozr7UKHhgquW4qBCgGhxHLDt",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "56eTQTFeeB7P3UcCjU6g9gcXEXX8oN3yAVwb329xqymn",
+ "logoUrl": "https://static.oklink.com/cdn/web3/currency/token/large/501-56eTQTFeeB7P3UcCjU6g9gcXEXX8oN3yAVwb329xqymn-107/type=default_90_0?v=1788837928627",
+ "logoUrls": [
+ "https://static.oklink.com/cdn/web3/currency/token/large/501-56eTQTFeeB7P3UcCjU6g9gcXEXX8oN3yAVwb329xqymn-107/type=default_90_0?v=1788837928627"
+ ],
+ "name": "SpaceX",
+ "symbol": "SPCX",
+ "marketCap": "2242391.689156199187656564",
+ "price": "0.00002242391704811804",
+ "priceChange24hPercent": "103517.51",
+ "volume24h": "15668487.08177916906",
+ "communityRecognized": false,
+ "key": "sol--101:56eTQTFeeB7P3UcCjU6g9gcXEXX8oN3yAVwb329xqymn",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "EicWvteVi2fWepEzS3FYWsnuPoP6caZfjnKqNvydLjCH",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-EicWvteVi2fWepEzS3FYWsnuPoP6caZfjnKqNvydLjCH-1768663250541.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-EicWvteVi2fWepEzS3FYWsnuPoP6caZfjnKqNvydLjCH-1768663250541.png"
+ ],
+ "name": "Lighter",
+ "symbol": "LIT",
+ "marketCap": "2406987.128450615620423936",
+ "price": "4.64503157692720424005",
+ "priceChange24hPercent": "-1.84",
+ "volume24h": "839535.88121581531",
+ "communityRecognized": false,
+ "key": "sol--101:EicWvteVi2fWepEzS3FYWsnuPoP6caZfjnKqNvydLjCH",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "6UpQcMAb5xMzxc7ZfPaVMgx3KqsvKZdT5U718BzD5We2",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-6UpQcMAb5xMzxc7ZfPaVMgx3KqsvKZdT5U718BzD5We2-1776527084186.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-6UpQcMAb5xMzxc7ZfPaVMgx3KqsvKZdT5U718BzD5We2-1776527084186.png"
+ ],
+ "name": "Wrapped XRP",
+ "symbol": "wXRP",
+ "marketCap": "1.110847047217613393",
+ "price": "1.6107282184655396619",
+ "priceChange24hPercent": "9.24",
+ "volume24h": "649439.21821400755",
+ "communityRecognized": true,
+ "key": "sol--101:6UpQcMAb5xMzxc7ZfPaVMgx3KqsvKZdT5U718BzD5We2",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "SgceNvzKD9Gh7w5mhWvPaYxZq5Qn8Cdq26oPhqfpump",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/53cc7679261cad8e65d0603090dc7bcba8a6ceb17d7b53c672cdc40e1a840cb6",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/53cc7679261cad8e65d0603090dc7bcba8a6ceb17d7b53c672cdc40e1a840cb6"
+ ],
+ "name": "StockCat",
+ "symbol": "StockCat",
+ "marketCap": "45689.033488753654772613",
+ "price": "0.00004711134617446573",
+ "priceChange24hPercent": "1372.44",
+ "volume24h": "1484849.31225379484",
+ "communityRecognized": false,
+ "key": "sol--101:SgceNvzKD9Gh7w5mhWvPaYxZq5Qn8Cdq26oPhqfpump",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "5dRHKSymMTTx64YmtdjDqeqt2PPt5MTaTSthToDD94NW",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/1a2da5d48d30a9336100644de066d872b690565bed9fa2f99938fd2ba1428672",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/1a2da5d48d30a9336100644de066d872b690565bed9fa2f99938fd2ba1428672"
+ ],
+ "name": "PONZI",
+ "symbol": "PONZI",
+ "marketCap": "330064.340635341267361856",
+ "price": "0.00033006436926540323",
+ "priceChange24hPercent": "555.17",
+ "volume24h": "543656.575177618841325176",
+ "communityRecognized": false,
+ "key": "sol--101:5dRHKSymMTTx64YmtdjDqeqt2PPt5MTaTSthToDD94NW",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "dgQorQonJjekhZZttZe9isbqFFsDjXvCGBCMc4pSTNK",
+ "logoUrl": "https://static.oklink.com/cdn/web3/currency/token/large/501-dgQorQonJjekhZZttZe9isbqFFsDjXvCGBCMc4pSTNK-109/type=default_90_0?v=1788832606870",
+ "logoUrls": [
+ "https://static.oklink.com/cdn/web3/currency/token/large/501-dgQorQonJjekhZZttZe9isbqFFsDjXvCGBCMc4pSTNK-109/type=default_90_0?v=1788832606870"
+ ],
+ "name": "CATURN",
+ "symbol": "CATURN",
+ "marketCap": "41110.830725351584742791",
+ "price": "0.00004111119507048669",
+ "priceChange24hPercent": "1173.26",
+ "volume24h": "263719.84626286149",
+ "communityRecognized": false,
+ "key": "sol--101:dgQorQonJjekhZZttZe9isbqFFsDjXvCGBCMc4pSTNK",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "ELYfhvSgsdkLvhG9b6ZByrzgwPebegbdX9rLBNH2VNRp",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/f7d427c3a6e0b3049fdf2d54572fa74778a6370c34a63b2cc5de86b8373796a9",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/f7d427c3a6e0b3049fdf2d54572fa74778a6370c34a63b2cc5de86b8373796a9"
+ ],
+ "name": "Pump Cat Coin",
+ "symbol": "PUMPCAT",
+ "marketCap": "171253.544568353382528792",
+ "price": "0.00017125695114007278",
+ "priceChange24hPercent": "-29.77",
+ "volume24h": "91321.795644479391",
+ "communityRecognized": false,
+ "key": "sol--101:ELYfhvSgsdkLvhG9b6ZByrzgwPebegbdX9rLBNH2VNRp",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "XsDoVfqeBukxuZHWhdvWHBhgEHjGNst4MLodqsJHzoB",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-XsDoVfqeBukxuZHWhdvWHBhgEHjGNst4MLodqsJHzoB-1758104143706.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-XsDoVfqeBukxuZHWhdvWHBhgEHjGNst4MLodqsJHzoB-1758104143706.png"
+ ],
+ "name": "Tesla xStock",
+ "symbol": "TSLAx",
+ "marketCap": "70801653.101877946314046431",
+ "price": "356.32531270795369615926",
+ "priceChange24hPercent": "-",
+ "volume24h": "601306.309444182722762316",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 xStock 代币化发行",
+ "subtitle": "特斯拉",
+ "source": "xstock",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/xstock.png",
+ "isOpen": true
+ },
+ "key": "sol--101:XsDoVfqeBukxuZHWhdvWHBhgEHjGNst4MLodqsJHzoB",
+ "kind": "stock",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "Tqj8yFmagrg7oorpQkVGYR52r96RFTamvWfth9bpump",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-Tqj8yFmagrg7oorpQkVGYR52r96RFTamvWfth9bpump-1779721519876.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-Tqj8yFmagrg7oorpQkVGYR52r96RFTamvWfth9bpump-1779721519876.png"
+ ],
+ "name": "Kintara",
+ "symbol": "KINS",
+ "marketCap": "1078546.330872629076110427",
+ "price": "0.00108755743270806868",
+ "priceChange24hPercent": "11.72",
+ "volume24h": "44497.41688952369",
+ "communityRecognized": true,
+ "key": "sol--101:Tqj8yFmagrg7oorpQkVGYR52r96RFTamvWfth9bpump",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "FZqdw6oSDCbHtKYxmhnfbi97SnyVy8jaYpdCoMrrjKa2",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-FZqdw6oSDCbHtKYxmhnfbi97SnyVy8jaYpdCoMrrjKa2-1788109336336.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-FZqdw6oSDCbHtKYxmhnfbi97SnyVy8jaYpdCoMrrjKa2-1788109336336.png"
+ ],
+ "name": "Pistacio",
+ "symbol": "Pistacio",
+ "marketCap": "478347.141909431315607453",
+ "price": "0.0004902663352054724",
+ "priceChange24hPercent": "-3.22",
+ "volume24h": "20377.58363468456",
+ "communityRecognized": true,
+ "key": "sol--101:FZqdw6oSDCbHtKYxmhnfbi97SnyVy8jaYpdCoMrrjKa2",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "FPfi9q1AixdUeWQVPFHJMJQ7a43S78dm6UZ4fzN4pump",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-FPfi9q1AixdUeWQVPFHJMJQ7a43S78dm6UZ4fzN4pump-1786295210474.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-FPfi9q1AixdUeWQVPFHJMJQ7a43S78dm6UZ4fzN4pump-1786295210474.png"
+ ],
+ "name": "9gnosis",
+ "symbol": "nosis",
+ "marketCap": "306063.323882097621475407",
+ "price": "0.00031443043565121607",
+ "priceChange24hPercent": "-1.8",
+ "volume24h": "2479.63017409559",
+ "communityRecognized": false,
+ "key": "sol--101:FPfi9q1AixdUeWQVPFHJMJQ7a43S78dm6UZ4fzN4pump",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "7HgfXftRBBqsYtAEYcqjGLQrNJLL6Tww9ek4rE3Apump",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-7HgfXftRBBqsYtAEYcqjGLQrNJLL6Tww9ek4rE3Apump-1778599302397.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-7HgfXftRBBqsYtAEYcqjGLQrNJLL6Tww9ek4rE3Apump-1778599302397.png"
+ ],
+ "name": "Red Kitten Crew",
+ "symbol": "RKC",
+ "marketCap": "1497618.816375190732820852",
+ "price": "0.00158860596795566837",
+ "priceChange24hPercent": "11.12",
+ "volume24h": "25327.98991697253",
+ "communityRecognized": true,
+ "key": "sol--101:7HgfXftRBBqsYtAEYcqjGLQrNJLL6Tww9ek4rE3Apump",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "E3PDmbvHfaFyzJBjMLXr6aowbMVBS9XeX7jRy1D4pump",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/1d7e9909f533688aa9b6a9e99e02caf4fea6883947163baae8bc365ac4bca854",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/1d7e9909f533688aa9b6a9e99e02caf4fea6883947163baae8bc365ac4bca854"
+ ],
+ "name": "Caliber",
+ "symbol": "CALI",
+ "marketCap": "47231.958374899053684057",
+ "price": "0.00004847768489339015",
+ "priceChange24hPercent": "34.42",
+ "volume24h": "13437.03697294215",
+ "communityRecognized": false,
+ "key": "sol--101:E3PDmbvHfaFyzJBjMLXr6aowbMVBS9XeX7jRy1D4pump",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "9RS8C1Tfa3tvG8Wv5cXqfFwcGrFBdzxrkhnjMA6qb6iy",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/2d67baf884600a3e110172cd7ada0c32c57ee1b7680d370e866503cb671f4fca",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/2d67baf884600a3e110172cd7ada0c32c57ee1b7680d370e866503cb671f4fca"
+ ],
+ "name": "Fridge Cigs",
+ "symbol": "CIGS",
+ "marketCap": "52952.221343573536660461",
+ "price": "0.00005295295919677196",
+ "priceChange24hPercent": "-2.9",
+ "volume24h": "22385.1095639144369511",
+ "communityRecognized": false,
+ "key": "sol--101:9RS8C1Tfa3tvG8Wv5cXqfFwcGrFBdzxrkhnjMA6qb6iy",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "zj1jpp7QMveWHLs61vL9KMZf254KvW7j4AAmBF8ry2k",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-zj1jpp7QMveWHLs61vL9KMZf254KvW7j4AAmBF8ry2k-1787073763293.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-zj1jpp7QMveWHLs61vL9KMZf254KvW7j4AAmBF8ry2k-1787073763293.png"
+ ],
+ "name": "Bullshit Coin",
+ "symbol": "BULLSHIT",
+ "marketCap": "1306902.667021594627849551",
+ "price": "0.00133615191602051191",
+ "priceChange24hPercent": "-0.52",
+ "volume24h": "82802.15750586543",
+ "communityRecognized": false,
+ "key": "sol--101:zj1jpp7QMveWHLs61vL9KMZf254KvW7j4AAmBF8ry2k",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "Ge9V1kPBbYS2ZEFrXNZoQH49mit7wwdDM7nkMWXKoU13",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/3ba11606482d432ebc4b5c1dd4818bca38010abb3a42010023d5cf8970e3e808",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/3ba11606482d432ebc4b5c1dd4818bca38010abb3a42010023d5cf8970e3e808"
+ ],
+ "name": "NVIDIA",
+ "symbol": "NVDA",
+ "marketCap": "1604937.121712315037175501",
+ "price": "0.00001604937141554999",
+ "priceChange24hPercent": "3617.58",
+ "volume24h": "62739500.7050668511",
+ "communityRecognized": false,
+ "key": "sol--101:Ge9V1kPBbYS2ZEFrXNZoQH49mit7wwdDM7nkMWXKoU13",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "EXinYuNbxamDtbpkqR6RQJ9XWgUb5y2rCBMkAWxEazYt",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/a7a81db4476e0a4f0a25f9857418491edc1126c6965b3f855e4803531d5b6e08",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/a7a81db4476e0a4f0a25f9857418491edc1126c6965b3f855e4803531d5b6e08"
+ ],
+ "name": "Sock and pussy 500",
+ "symbol": "SNP500",
+ "marketCap": "104276.515182582737542743",
+ "price": "0.00010427726895958675",
+ "priceChange24hPercent": "48.38",
+ "volume24h": "16111.066031289391383376",
+ "communityRecognized": false,
+ "key": "sol--101:EXinYuNbxamDtbpkqR6RQJ9XWgUb5y2rCBMkAWxEazYt",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "KLh7sQxoWY4GhRSqHToeCorCHLEWLS7PbRjWYTFpump",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/7b3a4b3a08b4b382b7165fe747a87bcc165b4d3955be1d74626a76d04230db45",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/7b3a4b3a08b4b382b7165fe747a87bcc165b4d3955be1d74626a76d04230db45"
+ ],
+ "name": "Aura Farming",
+ "symbol": "AURA",
+ "marketCap": "524973.320051223562341447",
+ "price": "0.0005316147455895989",
+ "priceChange24hPercent": "-27.15",
+ "volume24h": "103439.51493625064",
+ "communityRecognized": false,
+ "key": "sol--101:KLh7sQxoWY4GhRSqHToeCorCHLEWLS7PbRjWYTFpump",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "6PRF6c3Le4w1E35Dn7xMLwBwE87yVHZY37VD8Et2pump",
+ "logoUrl": "https://static.oklink.com/cdn/web3/currency/token/large/501-6PRF6c3Le4w1E35Dn7xMLwBwE87yVHZY37VD8Et2pump-107/type=default_90_0?v=1788839814720",
+ "logoUrls": [
+ "https://static.oklink.com/cdn/web3/currency/token/large/501-6PRF6c3Le4w1E35Dn7xMLwBwE87yVHZY37VD8Et2pump-107/type=default_90_0?v=1788839814720"
+ ],
+ "name": "stank memes",
+ "symbol": "STANK",
+ "marketCap": "14450.545795235662678913",
+ "price": "0.00001481053729413321",
+ "priceChange24hPercent": "339.62",
+ "volume24h": "342875.96205770308",
+ "communityRecognized": false,
+ "key": "sol--101:6PRF6c3Le4w1E35Dn7xMLwBwE87yVHZY37VD8Et2pump",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "CWZ6BsdnjkDVTGkmL6bGbJXXig6ceef12KvyGQW14cMt",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-CWZ6BsdnjkDVTGkmL6bGbJXXig6ceef12KvyGQW14cMt-1777993905309.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-CWZ6BsdnjkDVTGkmL6bGbJXXig6ceef12KvyGQW14cMt-1777993905309.png"
+ ],
+ "name": "AntFun",
+ "symbol": "ANTFUN",
+ "marketCap": "146460911.563488316479388631",
+ "price": "0.07758467106362334528",
+ "priceChange24hPercent": "3.17",
+ "volume24h": "1844975.09162885787",
+ "communityRecognized": true,
+ "key": "sol--101:CWZ6BsdnjkDVTGkmL6bGbJXXig6ceef12KvyGQW14cMt",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "GiUHYs5Hsv94P8bR9m26DsXsX8E786rQsFsPK6spump",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/9eddbda8acf2b136882f4e42c2f8aa2a215e106d7d83dbcb47fa9feccc5ec1fe",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/9eddbda8acf2b136882f4e42c2f8aa2a215e106d7d83dbcb47fa9feccc5ec1fe"
+ ],
+ "name": "Rich Debt",
+ "symbol": "RICHDEBT",
+ "marketCap": "839374.689400874922873267",
+ "price": "0.00085288292501745959",
+ "priceChange24hPercent": "-27.86",
+ "volume24h": "232394.94920231777",
+ "communityRecognized": false,
+ "key": "sol--101:GiUHYs5Hsv94P8bR9m26DsXsX8E786rQsFsPK6spump",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "6oHYDbrWRRtBhLTLLibJmPXfek9dGzdCgzfDB4xYpump",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/f6aa7ec428c9954c3b2221c4b73a04c76d5946f84cffbee4acc34fd6968ba488",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/f6aa7ec428c9954c3b2221c4b73a04c76d5946f84cffbee4acc34fd6968ba488"
+ ],
+ "name": "Kestrel Browser",
+ "symbol": "KESTREL",
+ "marketCap": "76617.484540006393216051",
+ "price": "0.00007942793618784602",
+ "priceChange24hPercent": "-3.19",
+ "volume24h": "10914.14256938548",
+ "communityRecognized": false,
+ "key": "sol--101:6oHYDbrWRRtBhLTLLibJmPXfek9dGzdCgzfDB4xYpump",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "orcaEKTdK7LKz57vaAYr9QeNsVEPfiu6QeMU1kektZE",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-orcaEKTdK7LKz57vaAYr9QeNsVEPfiu6QeMU1kektZE-1758104124917.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-orcaEKTdK7LKz57vaAYr9QeNsVEPfiu6QeMU1kektZE-1758104124917.png"
+ ],
+ "name": "orca",
+ "symbol": "ORCA",
+ "marketCap": "88847954.253392842190092166",
+ "price": "1.46134453763818657079",
+ "priceChange24hPercent": "-3.41",
+ "volume24h": "948084.631733541069092672",
+ "communityRecognized": true,
+ "key": "sol--101:orcaEKTdK7LKz57vaAYr9QeNsVEPfiu6QeMU1kektZE",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "AVBN6kXdaw27ySuvMevKYzNTL8d39b7sGQFDCmsvpump",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-AVBN6kXdaw27ySuvMevKYzNTL8d39b7sGQFDCmsvpump-1788195648484.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-AVBN6kXdaw27ySuvMevKYzNTL8d39b7sGQFDCmsvpump-1788195648484.png"
+ ],
+ "name": "PINK COIN",
+ "symbol": "PINK",
+ "marketCap": "128072.951903292332942126",
+ "price": "0.00013228699888000284",
+ "priceChange24hPercent": "5.41",
+ "volume24h": "3301.68545014251",
+ "communityRecognized": false,
+ "key": "sol--101:AVBN6kXdaw27ySuvMevKYzNTL8d39b7sGQFDCmsvpump",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "Xs8S1uUs1zvS2p7iwtsG3b6fkhpvmwz4GYU3gWAmWHZ",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-Xs8S1uUs1zvS2p7iwtsG3b6fkhpvmwz4GYU3gWAmWHZ-1758104625424.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-Xs8S1uUs1zvS2p7iwtsG3b6fkhpvmwz4GYU3gWAmWHZ-1758104625424.png"
+ ],
+ "name": "Nasdaq xStock",
+ "symbol": "QQQx",
+ "marketCap": "36431893.669922953564864769",
+ "price": "722.74181349646730498726",
+ "priceChange24hPercent": "-",
+ "volume24h": "214321.703492055423326814",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 xStock 代币化发行",
+ "subtitle": "纳指ETF",
+ "source": "xstock",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/xstock.png",
+ "isOpen": true
+ },
+ "key": "sol--101:Xs8S1uUs1zvS2p7iwtsG3b6fkhpvmwz4GYU3gWAmWHZ",
+ "kind": "stock",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "DSHAT67JxMPmQzBxzNcUHgnPqMaAYAFqA4nHFyVopump",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/2f3af7bb41cab1208dc50813a26c53fcbf48e174f87f3a410a490b541771a7c3",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/2f3af7bb41cab1208dc50813a26c53fcbf48e174f87f3a410a490b541771a7c3"
+ ],
+ "name": "liquidkitty",
+ "symbol": "liquidkitty",
+ "marketCap": "10884.412790704624140349",
+ "price": "0.00001130864924270607",
+ "priceChange24hPercent": "254.13",
+ "volume24h": "495656.18017665074",
+ "communityRecognized": false,
+ "key": "sol--101:DSHAT67JxMPmQzBxzNcUHgnPqMaAYAFqA4nHFyVopump",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "ApZuxdpzMrbEYTGEzeY9afh5pj9d6qPRJCTgQYiipbKg",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-ApZuxdpzMrbEYTGEzeY9afh5pj9d6qPRJCTgQYiipbKg-1787159398565.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-ApZuxdpzMrbEYTGEzeY9afh5pj9d6qPRJCTgQYiipbKg-1787159398565.png"
+ ],
+ "name": "CyberLeek",
+ "symbol": "CYBERLEEK",
+ "marketCap": "575840.051600828045745536",
+ "price": "0.00078889391430518674",
+ "priceChange24hPercent": "5.22",
+ "volume24h": "27095.33517357823",
+ "communityRecognized": true,
+ "key": "sol--101:ApZuxdpzMrbEYTGEzeY9afh5pj9d6qPRJCTgQYiipbKg",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "ARBzQTYDCW2KnVEjs1Mc81LekB1ibVFZKbSVmorkoT9d",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/2724ff5119340a7a7472dab58c4a327569c5eef7931dc55d5203e5db094fd864",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/2724ff5119340a7a7472dab58c4a327569c5eef7931dc55d5203e5db094fd864"
+ ],
+ "name": "Arbitrum",
+ "symbol": "ARB",
+ "marketCap": "195065.143011022580130961",
+ "price": "0.1703764890686246388",
+ "priceChange24hPercent": "0.15",
+ "volume24h": "117367.05442946776",
+ "communityRecognized": true,
+ "key": "sol--101:ARBzQTYDCW2KnVEjs1Mc81LekB1ibVFZKbSVmorkoT9d",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "GUmbtfjSZkybSFgPibBcvwExEBdXwewJHR5PkTjzpump",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-GUmbtfjSZkybSFgPibBcvwExEBdXwewJHR5PkTjzpump-1787591211649.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-GUmbtfjSZkybSFgPibBcvwExEBdXwewJHR5PkTjzpump-1787591211649.png"
+ ],
+ "name": "Gucci Morty",
+ "symbol": "Morty",
+ "marketCap": "273625.100192616254310048",
+ "price": "0.00028587045567050823",
+ "priceChange24hPercent": "-8.2",
+ "volume24h": "4965.99865343796",
+ "communityRecognized": false,
+ "key": "sol--101:GUmbtfjSZkybSFgPibBcvwExEBdXwewJHR5PkTjzpump",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "poNSfquKq512ApeYjVghwViSun4x1MhCqHVH2Paq4jN",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-poNSfquKq512ApeYjVghwViSun4x1MhCqHVH2Paq4jN-1788282231281.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-poNSfquKq512ApeYjVghwViSun4x1MhCqHVH2Paq4jN-1788282231281.png"
+ ],
+ "name": "Pons",
+ "symbol": "PONS",
+ "marketCap": "1216890.936296467279698441",
+ "price": "0.70271179731256876631",
+ "priceChange24hPercent": "-3.6",
+ "volume24h": "175931.954523598373002054",
+ "communityRecognized": true,
+ "key": "sol--101:poNSfquKq512ApeYjVghwViSun4x1MhCqHVH2Paq4jN",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "8Piwyxfm1rfdv3KRHrXFCqWZ9TjPeeUhfkS9AJCmwa4j",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/694001959812939f8c832d2ce03aea67c9d08845943cd9dc010c2be8653991ce",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/694001959812939f8c832d2ce03aea67c9d08845943cd9dc010c2be8653991ce"
+ ],
+ "name": "Route",
+ "symbol": "ROUTE",
+ "marketCap": "340961.867045775654766158",
+ "price": "0.00003409618861845258",
+ "priceChange24hPercent": "727841086.81",
+ "volume24h": "3067462.58899576522",
+ "communityRecognized": false,
+ "key": "sol--101:8Piwyxfm1rfdv3KRHrXFCqWZ9TjPeeUhfkS9AJCmwa4j",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "DVxaAXi3L2NMgqpBqYmuVJkSK4bVJ1JgjvTmQgTpump",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/bb537c80e3a09221aaddd0a58d5ea051a046dc222efdddac962bb70258799b8f",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/bb537c80e3a09221aaddd0a58d5ea051a046dc222efdddac962bb70258799b8f"
+ ],
+ "name": "NO VALUE",
+ "symbol": "NOVALUE",
+ "marketCap": "2860397.67584547564781245",
+ "price": "0.00288817224787105804",
+ "priceChange24hPercent": "3.99",
+ "volume24h": "28715.3820647109",
+ "communityRecognized": false,
+ "key": "sol--101:DVxaAXi3L2NMgqpBqYmuVJkSK4bVJ1JgjvTmQgTpump",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "2pouN3by7twkiZGy5aEKYUpf78ALDpKRTNu2WsQkpkqt",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-2pouN3by7twkiZGy5aEKYUpf78ALDpKRTNu2WsQkpkqt-1788714470837.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-2pouN3by7twkiZGy5aEKYUpf78ALDpKRTNu2WsQkpkqt-1788714470837.png"
+ ],
+ "name": "Buttensor",
+ "symbol": "BUTT",
+ "marketCap": "2775281.48434082555302534",
+ "price": "0.00277825462178035535",
+ "priceChange24hPercent": "47.08",
+ "volume24h": "103333.40323865754",
+ "communityRecognized": true,
+ "key": "sol--101:2pouN3by7twkiZGy5aEKYUpf78ALDpKRTNu2WsQkpkqt",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "6NwarBvDkXhByqVp2Qkq5i9XbtA2B3Bwe8SWGu9vpump",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-6NwarBvDkXhByqVp2Qkq5i9XbtA2B3Bwe8SWGu9vpump-1769095360806.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-6NwarBvDkXhByqVp2Qkq5i9XbtA2B3Bwe8SWGu9vpump-1769095360806.png"
+ ],
+ "name": "Cupsey",
+ "symbol": "Cupsey",
+ "marketCap": "8390785.419706750647263133",
+ "price": "0.00839442236586014876",
+ "priceChange24hPercent": "14.85",
+ "volume24h": "184585.67731323719",
+ "communityRecognized": true,
+ "key": "sol--101:6NwarBvDkXhByqVp2Qkq5i9XbtA2B3Bwe8SWGu9vpump",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "DRqXeQA5sKGeksnRTvhTGEwpaqNtHQo8bQqub7pjpump",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/2921c4251783973f1883431eb5230fdccad504aee8793234966d2c8864a4206d",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/2921c4251783973f1883431eb5230fdccad504aee8793234966d2c8864a4206d"
+ ],
+ "name": "vc.fun",
+ "symbol": "VC",
+ "marketCap": "2590223.325839916086385083",
+ "price": "0.00259168693805588981",
+ "priceChange24hPercent": "9.4",
+ "volume24h": "101891.11325890003",
+ "communityRecognized": false,
+ "key": "sol--101:DRqXeQA5sKGeksnRTvhTGEwpaqNtHQo8bQqub7pjpump",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "2pwCdsf3KmoQFihDDtxMyPwrTJmimTA8sTBBn57robN6",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/387ad3f11ea3d0cfb99f2460f49f8916c2dab635821ad58ffbfffc7c27bbf2ff",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/387ad3f11ea3d0cfb99f2460f49f8916c2dab635821ad58ffbfffc7c27bbf2ff"
+ ],
+ "name": "PIGEON TRUTH",
+ "symbol": "PIGEONS",
+ "marketCap": "332437.193836544137003246",
+ "price": "0.00033243765117637098",
+ "priceChange24hPercent": "-14.47",
+ "volume24h": "109104.607688978839599854",
+ "communityRecognized": false,
+ "key": "sol--101:2pwCdsf3KmoQFihDDtxMyPwrTJmimTA8sTBBn57robN6",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "XSTuo1fV7HHMhs4BYiwtrWSLsMCJNrooH2AssWTYZqP",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-XSTuo1fV7HHMhs4BYiwtrWSLsMCJNrooH2AssWTYZqP-1784905308143.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-XSTuo1fV7HHMhs4BYiwtrWSLsMCJNrooH2AssWTYZqP-1784905308143.png"
+ ],
+ "name": "XST",
+ "symbol": "XST",
+ "marketCap": "960617.247138841141352099",
+ "price": "0.00096062306465343849",
+ "priceChange24hPercent": "-2.65",
+ "volume24h": "4638.89150676301",
+ "communityRecognized": true,
+ "key": "sol--101:XSTuo1fV7HHMhs4BYiwtrWSLsMCJNrooH2AssWTYZqP",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "8U2tRCQZunwjEnEEtLtoKBSnmYPJ7nBodkg6pmqUdcca",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/49b477889b50b2cb277961a270ba2daa5c3b3db9f0c00c3a6c94a90c6fcb891f",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/49b477889b50b2cb277961a270ba2daa5c3b3db9f0c00c3a6c94a90c6fcb891f"
+ ],
+ "name": "Solana & Poors 500",
+ "symbol": "SP500",
+ "marketCap": "63428.500353708866371623",
+ "price": "0.00006557519734568891",
+ "priceChange24hPercent": "91.23",
+ "volume24h": "34830.364455178969720591",
+ "communityRecognized": false,
+ "key": "sol--101:8U2tRCQZunwjEnEEtLtoKBSnmYPJ7nBodkg6pmqUdcca",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "5XZw2LKTyrfvfiskJ78AMpackRjPcyCif1WhUsPDuVqQ",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-5XZw2LKTyrfvfiskJ78AMpackRjPcyCif1WhUsPDuVqQ-1758111740701.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-5XZw2LKTyrfvfiskJ78AMpackRjPcyCif1WhUsPDuVqQ-1758111740701.png"
+ ],
+ "name": "Wrapped BTC",
+ "symbol": "WBTC",
+ "marketCap": "8290927.238752223349579558",
+ "price": "79089.22173279891237352168",
+ "priceChange24hPercent": "-0.21",
+ "volume24h": "15716.7948273528074857",
+ "communityRecognized": true,
+ "key": "sol--101:5XZw2LKTyrfvfiskJ78AMpackRjPcyCif1WhUsPDuVqQ",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "EKpQGSJtjMFqKZ9KQanSqYXRcF8fBopzLHYxdM65zcjm",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-EKpQGSJtjMFqKZ9KQanSqYXRcF8fBopzLHYxdM65zcjm-1758104080638.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-EKpQGSJtjMFqKZ9KQanSqYXRcF8fBopzLHYxdM65zcjm-1758104080638.png"
+ ],
+ "name": "dogwifhat",
+ "symbol": "$WIF",
+ "marketCap": "216833607.666638232419931363",
+ "price": "0.21708569534948936821",
+ "priceChange24hPercent": "0.31",
+ "volume24h": "159692.57614447466422802",
+ "communityRecognized": true,
+ "key": "sol--101:EKpQGSJtjMFqKZ9KQanSqYXRcF8fBopzLHYxdM65zcjm",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "Pren1FvFX6J3E4kXhJuCiAD5aDmGEb7qJRncwA8Lkhw",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-Pren1FvFX6J3E4kXhJuCiAD5aDmGEb7qJRncwA8Lkhw-1760025966243.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-Pren1FvFX6J3E4kXhJuCiAD5aDmGEb7qJRncwA8Lkhw-1760025966243.png"
+ ],
+ "name": "Anthropic PreStocks",
+ "symbol": "ANTHROPIC",
+ "marketCap": "7016152.680524207040099445",
+ "price": "950.31283056092856102565",
+ "priceChange24hPercent": "0.6",
+ "volume24h": "723593.41446754483066347",
+ "communityRecognized": true,
+ "key": "sol--101:Pren1FvFX6J3E4kXhJuCiAD5aDmGEb7qJRncwA8Lkhw",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "PreANxuXjsy2pvisWWMNB6YaJNzr7681wJJr2rHsfTh",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-PreANxuXjsy2pvisWWMNB6YaJNzr7681wJJr2rHsfTh-1760026347869.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-PreANxuXjsy2pvisWWMNB6YaJNzr7681wJJr2rHsfTh-1760026347869.png"
+ ],
+ "name": "SpaceX PreStocks",
+ "symbol": "SPACEX",
+ "marketCap": "1029589.244565884652461681",
+ "price": "117.76798757161917905495",
+ "priceChange24hPercent": "-0.76",
+ "volume24h": "25101.303429364438439454",
+ "communityRecognized": true,
+ "key": "sol--101:PreANxuXjsy2pvisWWMNB6YaJNzr7681wJJr2rHsfTh",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "45mPrFizTwZP4Por6ynbWMMCYKbQAPotar5WsE4Ac9bY",
+ "logoUrl": "https://static.oklink.com/cdn/web3/currency/token/large/501-45mPrFizTwZP4Por6ynbWMMCYKbQAPotar5WsE4Ac9bY-107/type=default_90_0?v=1788837885603",
+ "logoUrls": [
+ "https://static.oklink.com/cdn/web3/currency/token/large/501-45mPrFizTwZP4Por6ynbWMMCYKbQAPotar5WsE4Ac9bY-107/type=default_90_0?v=1788837885603"
+ ],
+ "name": "Mona Lisa",
+ "symbol": "Mona Lisa",
+ "marketCap": "86502.271358201863850262",
+ "price": "0.00008650227135820186",
+ "priceChange24hPercent": "873.53",
+ "volume24h": "159257.28827351268",
+ "communityRecognized": false,
+ "key": "sol--101:45mPrFizTwZP4Por6ynbWMMCYKbQAPotar5WsE4Ac9bY",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "AMC1qwR9KhiyrQBRPrxnfo4JfMeMZqEBvt5tgTytNNoc",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-AMC1qwR9KhiyrQBRPrxnfo4JfMeMZqEBvt5tgTytNNoc-1788800722604.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-AMC1qwR9KhiyrQBRPrxnfo4JfMeMZqEBvt5tgTytNNoc-1788800722604.png"
+ ],
+ "name": "AMC Entertainment - Backpack Securities",
+ "symbol": "AMC",
+ "marketCap": "137339.961933871671759057",
+ "price": "2.67350501964207769533",
+ "priceChange24hPercent": "1.15",
+ "volume24h": "180141.116148029980473814",
+ "communityRecognized": false,
+ "key": "sol--101:AMC1qwR9KhiyrQBRPrxnfo4JfMeMZqEBvt5tgTytNNoc",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "6zTgfUFjBAVywkEbXc4e1mFysNy4T4wJt7HCFiyXpump",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/5d476d89411bbda2e8c84d707142c419990a2ac1922a60d486960e25ab52d369",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/5d476d89411bbda2e8c84d707142c419990a2ac1922a60d486960e25ab52d369"
+ ],
+ "name": "Bitfart",
+ "symbol": "Bitfart",
+ "marketCap": "14269.702958484246645724",
+ "price": "0.00001524005920287354",
+ "priceChange24hPercent": "376.61",
+ "volume24h": "408225.87946597869",
+ "communityRecognized": false,
+ "key": "sol--101:6zTgfUFjBAVywkEbXc4e1mFysNy4T4wJt7HCFiyXpump",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "CFPkPq1eYPR8GLzEo59wUbbMioX4bshaTQiSGzTSpump",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-CFPkPq1eYPR8GLzEo59wUbbMioX4bshaTQiSGzTSpump-1783005606586.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-CFPkPq1eYPR8GLzEo59wUbbMioX4bshaTQiSGzTSpump-1783005606586.png"
+ ],
+ "name": "The Black Table",
+ "symbol": "MENSA",
+ "marketCap": "541070.015238516625159128",
+ "price": "0.00054108642042014937",
+ "priceChange24hPercent": "-3.94",
+ "volume24h": "1971.55466704307",
+ "communityRecognized": false,
+ "key": "sol--101:CFPkPq1eYPR8GLzEo59wUbbMioX4bshaTQiSGzTSpump",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "8sRhsJdypyMSuWpcehmtc2BWaNrDMJxWrd9z4smjpump",
+ "logoUrl": "https://static.oklink.com/cdn/web3/currency/token/large/501-8sRhsJdypyMSuWpcehmtc2BWaNrDMJxWrd9z4smjpump-109/type=default_90_0?v=1788801010584",
+ "logoUrls": [
+ "https://static.oklink.com/cdn/web3/currency/token/large/501-8sRhsJdypyMSuWpcehmtc2BWaNrDMJxWrd9z4smjpump-109/type=default_90_0?v=1788801010584"
+ ],
+ "name": "hoid",
+ "symbol": "hoid",
+ "marketCap": "23521.627006095499031297",
+ "price": "0.0000235216270060955",
+ "priceChange24hPercent": "45.25",
+ "volume24h": "4293.79521524755",
+ "communityRecognized": false,
+ "key": "sol--101:8sRhsJdypyMSuWpcehmtc2BWaNrDMJxWrd9z4smjpump",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ }
+ ],
+ "trending|sol--101|24h|all": [
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "Ai66LHZG9MCzg1WKdawwqduVAXpNDUuV8M3uyq5ppump",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-Ai66LHZG9MCzg1WKdawwqduVAXpNDUuV8M3uyq5ppump-1785164716552.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-Ai66LHZG9MCzg1WKdawwqduVAXpNDUuV8M3uyq5ppump-1785164716552.png"
+ ],
+ "name": "Catecoin",
+ "symbol": "CATE",
+ "marketCap": "27707910.562215997854014575",
+ "price": "0.028737823444707848",
+ "priceChange24hPercent": "-12.27",
+ "volume24h": "4558208.57475499481",
+ "communityRecognized": true,
+ "key": "sol--101:Ai66LHZG9MCzg1WKdawwqduVAXpNDUuV8M3uyq5ppump",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "7Y7V1a4m2nWK7BMgbka5B4vR1pDvCK7yva3Hnrqkraze",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/fa21eef99efb8b7842c131cfa852344958bd4c32e76767446fd4983cb58d673c",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/fa21eef99efb8b7842c131cfa852344958bd4c32e76767446fd4983cb58d673c"
+ ],
+ "name": "Nasduck",
+ "symbol": "Nasduck",
+ "marketCap": "4921873.454147141002757127",
+ "price": "0.00511841948187528899",
+ "priceChange24hPercent": "157.28",
+ "volume24h": "16064707.662112318208330326",
+ "communityRecognized": false,
+ "key": "sol--101:7Y7V1a4m2nWK7BMgbka5B4vR1pDvCK7yva3Hnrqkraze",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "9GGGhze1NnQwcABTzxdxx89BEFLFtDueHhkwh6japump",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/a6063f660a1b276bba3b9832297a3b2830c66cc58a607c8cc44705fa1b422161",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/a6063f660a1b276bba3b9832297a3b2830c66cc58a607c8cc44705fa1b422161"
+ ],
+ "name": "CatGPT",
+ "symbol": "CatGPT",
+ "marketCap": "623368.05695686272495979",
+ "price": "0.0006395393467819042",
+ "priceChange24hPercent": "122.04",
+ "volume24h": "4412941.75019954086",
+ "communityRecognized": false,
+ "key": "sol--101:9GGGhze1NnQwcABTzxdxx89BEFLFtDueHhkwh6japump",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "8K5X85PAJHAAVSvYaAzgVPPAPsqqHmvx16ZyBiscYF8L",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-8K5X85PAJHAAVSvYaAzgVPPAPsqqHmvx16ZyBiscYF8L-1788368707252.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-8K5X85PAJHAAVSvYaAzgVPPAPsqqHmvx16ZyBiscYF8L-1788368707252.png"
+ ],
+ "name": "Vida Global CTO",
+ "symbol": "CTO",
+ "marketCap": "10388682.975129922967356653",
+ "price": "0.01133818095938549687",
+ "priceChange24hPercent": "21.55",
+ "volume24h": "6519863.977586540480567695",
+ "communityRecognized": false,
+ "key": "sol--101:8K5X85PAJHAAVSvYaAzgVPPAPsqqHmvx16ZyBiscYF8L",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "ANM35KbUcfKdEVBXzSjZBoT6ceSwYRs3fuc79fp7kRqP",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/db4d10c19523308df10f606b8b29d51a6e19419261d663ae88497cd02efd20f6",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/db4d10c19523308df10f606b8b29d51a6e19419261d663ae88497cd02efd20f6"
+ ],
+ "name": "Pump Cat",
+ "symbol": "Pumpcat",
+ "marketCap": "1912244.462897262858486588",
+ "price": "0.00193673692136345157",
+ "priceChange24hPercent": "323.07",
+ "volume24h": "6715727.91629509943",
+ "communityRecognized": false,
+ "key": "sol--101:ANM35KbUcfKdEVBXzSjZBoT6ceSwYRs3fuc79fp7kRqP",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "MukLDtJ8Cx9DxLbeyLRSWPSposTMWuwHANbuaudpump",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-MukLDtJ8Cx9DxLbeyLRSWPSposTMWuwHANbuaudpump-1788282416465.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-MukLDtJ8Cx9DxLbeyLRSWPSposTMWuwHANbuaudpump-1788282416465.png"
+ ],
+ "name": "OTC",
+ "symbol": "OTC",
+ "marketCap": "18542012.178878264176559004",
+ "price": "0.02608930166714554962",
+ "priceChange24hPercent": "80.58",
+ "volume24h": "16552451.08960324994",
+ "communityRecognized": false,
+ "key": "sol--101:MukLDtJ8Cx9DxLbeyLRSWPSposTMWuwHANbuaudpump",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "CaWZeUM4FvX9dPkjGc2xHS6tSN3qJfTWyvaG77aM5o7h",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-CaWZeUM4FvX9dPkjGc2xHS6tSN3qJfTWyvaG77aM5o7h-1788714223572.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-CaWZeUM4FvX9dPkjGc2xHS6tSN3qJfTWyvaG77aM5o7h-1788714223572.png"
+ ],
+ "name": "artificial gooner intelligence",
+ "symbol": "AGI",
+ "marketCap": "7732106.397339240642815567",
+ "price": "0.00782011642651768863",
+ "priceChange24hPercent": "21.14",
+ "volume24h": "1665121.74039973695",
+ "communityRecognized": true,
+ "key": "sol--101:CaWZeUM4FvX9dPkjGc2xHS6tSN3qJfTWyvaG77aM5o7h",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "Aw6fiDPWLUnjSsJQtsyEMSaoPaKAUUrStAsYPiPwpump",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/77390ed5d0a7e7ae6ab8a0e2685653ff99f696192f784341e9d9bd613dc27472",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/77390ed5d0a7e7ae6ab8a0e2685653ff99f696192f784341e9d9bd613dc27472"
+ ],
+ "name": "Anonymouse",
+ "symbol": "Anonymouse",
+ "marketCap": "495244.582719193909390358",
+ "price": "0.00051975033502052469",
+ "priceChange24hPercent": "17658.04",
+ "volume24h": "1601186.29228548672",
+ "communityRecognized": false,
+ "key": "sol--101:Aw6fiDPWLUnjSsJQtsyEMSaoPaKAUUrStAsYPiPwpump",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "9cRCn9rGT8V2imeM2BaKs13yhMEais3ruM3rPvTGpump",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-9cRCn9rGT8V2imeM2BaKs13yhMEais3ruM3rPvTGpump-1782140764006.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-9cRCn9rGT8V2imeM2BaKs13yhMEais3ruM3rPvTGpump-1782140764006.png"
+ ],
+ "name": "The Black Bull",
+ "symbol": "ANSEM",
+ "marketCap": "77436631.923583188307148338",
+ "price": "0.18668778395165902839",
+ "priceChange24hPercent": "-17.91",
+ "volume24h": "20608385.897098067210372785",
+ "communityRecognized": true,
+ "key": "sol--101:9cRCn9rGT8V2imeM2BaKs13yhMEais3ruM3rPvTGpump",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "Ge87EtsjwRQbHaqQmKRno69RFTwh9bfSsm99XNxTpump",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-Ge87EtsjwRQbHaqQmKRno69RFTwh9bfSsm99XNxTpump-1784214599861.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-Ge87EtsjwRQbHaqQmKRno69RFTwh9bfSsm99XNxTpump-1784214599861.png"
+ ],
+ "name": "Jimothy The Raccoon",
+ "symbol": "Jimothy",
+ "marketCap": "5200822.834881967578969978",
+ "price": "0.00520117125559290377",
+ "priceChange24hPercent": "5.97",
+ "volume24h": "1897783.31654382573",
+ "communityRecognized": true,
+ "key": "sol--101:Ge87EtsjwRQbHaqQmKRno69RFTwh9bfSsm99XNxTpump",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "HmJDgky11u77hpBss6D8sjNpYPD5B6fWgSVDj58jpump",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-HmJDgky11u77hpBss6D8sjNpYPD5B6fWgSVDj58jpump-1788282013603.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-HmJDgky11u77hpBss6D8sjNpYPD5B6fWgSVDj58jpump-1788282013603.png"
+ ],
+ "name": "Solcat",
+ "symbol": "SOLCAT",
+ "marketCap": "807860.209301424790721954",
+ "price": "0.00081644136785127577",
+ "priceChange24hPercent": "-46.8",
+ "volume24h": "1274864.034126324",
+ "communityRecognized": true,
+ "key": "sol--101:HmJDgky11u77hpBss6D8sjNpYPD5B6fWgSVDj58jpump",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "HcRLc9VDgjLeK154xDawfb1dmVJ98DoSqcwTHGqiDeJR",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-HcRLc9VDgjLeK154xDawfb1dmVJ98DoSqcwTHGqiDeJR-1788454854698.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-HcRLc9VDgjLeK154xDawfb1dmVJ98DoSqcwTHGqiDeJR-1788454854698.png"
+ ],
+ "name": "Anonymous Cat",
+ "symbol": "ZCAT",
+ "marketCap": "138155153.502342882783315452",
+ "price": "0.14258838001416833807",
+ "priceChange24hPercent": "17.57",
+ "volume24h": "10098771.954033552328541081",
+ "communityRecognized": true,
+ "key": "sol--101:HcRLc9VDgjLeK154xDawfb1dmVJ98DoSqcwTHGqiDeJR",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "6GmAFSYs4gk3FDao5FzzySQpPZaWsa4rUJHacpMpUNgx",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-6GmAFSYs4gk3FDao5FzzySQpPZaWsa4rUJHacpMpUNgx-1784905991044.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-6GmAFSYs4gk3FDao5FzzySQpPZaWsa4rUJHacpMpUNgx-1784905991044.png"
+ ],
+ "name": "STONK",
+ "symbol": "STONK",
+ "marketCap": "159352032.822599310181812789",
+ "price": "0.18313292094986593893",
+ "priceChange24hPercent": "33.01",
+ "volume24h": "81034984.270121156774523902",
+ "communityRecognized": true,
+ "key": "sol--101:6GmAFSYs4gk3FDao5FzzySQpPZaWsa4rUJHacpMpUNgx",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "HhXR4SiHzDNYCFXJBpCYg86T4NhzsD4vz4Y5Jtz6ozKx",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/f726c684810fa3c317fc93c5be53f978bd8c53c43e640ba1356f234c0f0904b0",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/f726c684810fa3c317fc93c5be53f978bd8c53c43e640ba1356f234c0f0904b0"
+ ],
+ "name": "OpenAI PreStocks",
+ "symbol": "OPENAI",
+ "marketCap": "2939809.88902212827335016",
+ "price": "0.00002939809927291071",
+ "priceChange24hPercent": "6656.05",
+ "volume24h": "136898296.68461789001",
+ "communityRecognized": false,
+ "key": "sol--101:HhXR4SiHzDNYCFXJBpCYg86T4NhzsD4vz4Y5Jtz6ozKx",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "Ax5dAamJPeuaLpFUzs9FdcpoUhHDcxyjPzxCJQidjups",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/f95a47c5025540e39d7788ebf9f3511466b4ae8fcb8785968865e70e204ad7a8",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/f95a47c5025540e39d7788ebf9f3511466b4ae8fcb8785968865e70e204ad7a8"
+ ],
+ "name": "Minirouter.sh",
+ "symbol": "MINI",
+ "marketCap": "3600621.986623418221404783",
+ "price": "0.00360072868677601077",
+ "priceChange24hPercent": "314.63",
+ "volume24h": "3390539.7770761407",
+ "communityRecognized": false,
+ "key": "sol--101:Ax5dAamJPeuaLpFUzs9FdcpoUhHDcxyjPzxCJQidjups",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "DoGEV7LASBkQbibMc5k5vKnTZoMg423GpJ5QtJEGfm7R",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/3d506b48124c4da95fa38586899e377b82f98a1d6da24eba1ac8e1c2f82bbb99",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/3d506b48124c4da95fa38586899e377b82f98a1d6da24eba1ac8e1c2f82bbb99"
+ ],
+ "name": "Dogecoin",
+ "symbol": "DOGE",
+ "marketCap": "400294.815377739868067652",
+ "price": "0.09110678797975571486",
+ "priceChange24hPercent": "5.17",
+ "volume24h": "9899987.8221936729",
+ "communityRecognized": true,
+ "key": "sol--101:DoGEV7LASBkQbibMc5k5vKnTZoMg423GpJ5QtJEGfm7R",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "XsbEhLAtcf6HdfpFZ5xEMdqW8nfAvcsP5bdudRLJzJp",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-XsbEhLAtcf6HdfpFZ5xEMdqW8nfAvcsP5bdudRLJzJp-1758104899904.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-XsbEhLAtcf6HdfpFZ5xEMdqW8nfAvcsP5bdudRLJzJp-1758104899904.png"
+ ],
+ "name": "Apple xStock",
+ "symbol": "AAPLx",
+ "marketCap": "12728432.798393619419131017",
+ "price": "320.5456290268211648992",
+ "priceChange24hPercent": "0.14",
+ "volume24h": "5775850.031128190728260623",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 xStock 代币化发行",
+ "subtitle": "苹果",
+ "source": "xstock",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/xstock.png",
+ "isOpen": true
+ },
+ "key": "sol--101:XsbEhLAtcf6HdfpFZ5xEMdqW8nfAvcsP5bdudRLJzJp",
+ "kind": "stock",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "XsoCS1TfEyfFhfvj8EtZ528L3CaKBDBRqRapnBbDF2W",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-XsoCS1TfEyfFhfvj8EtZ528L3CaKBDBRqRapnBbDF2W-1758104197788.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-XsoCS1TfEyfFhfvj8EtZ528L3CaKBDBRqRapnBbDF2W-1758104197788.png"
+ ],
+ "name": "SP500 xStock",
+ "symbol": "SPYx",
+ "marketCap": "56367005.478836337769633662",
+ "price": "784.81337192531622861759",
+ "priceChange24hPercent": "1.72",
+ "volume24h": "16711763.143893635352761977",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 xStock 代币化发行",
+ "subtitle": "标普500 ETF",
+ "source": "xstock",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/xstock.png",
+ "isOpen": true
+ },
+ "key": "sol--101:XsoCS1TfEyfFhfvj8EtZ528L3CaKBDBRqRapnBbDF2W",
+ "kind": "stock",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "taoC6xyv2v8tDLcev4uaGUgV4vdQsWJrGft2kcBRrBY",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-taoC6xyv2v8tDLcev4uaGUgV4vdQsWJrGft2kcBRrBY-1778080135513.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-taoC6xyv2v8tDLcev4uaGUgV4vdQsWJrGft2kcBRrBY-1778080135513.png"
+ ],
+ "name": "Bittensor",
+ "symbol": "TAO",
+ "marketCap": "513859.107833253416823347",
+ "price": "253.29102729219274125932",
+ "priceChange24hPercent": "-5.84",
+ "volume24h": "3213008.3181698512",
+ "communityRecognized": true,
+ "key": "sol--101:taoC6xyv2v8tDLcev4uaGUgV4vdQsWJrGft2kcBRrBY",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "6fbgUAM323YmfyA9cE3wozr7UKHhgquW4qBCgGhxHLDt",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/6f197fc8a0fff7decf567fb8951a835c7c7bd0f3c193b2d790af3d400a9fdb25",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/6f197fc8a0fff7decf567fb8951a835c7c7bd0f3c193b2d790af3d400a9fdb25"
+ ],
+ "name": "Prime Cat",
+ "symbol": "PRIMECAT",
+ "marketCap": "211062.448367651928881224",
+ "price": "0.00021106244851708773",
+ "priceChange24hPercent": "-11.71",
+ "volume24h": "642339.777303228594240399",
+ "communityRecognized": false,
+ "key": "sol--101:6fbgUAM323YmfyA9cE3wozr7UKHhgquW4qBCgGhxHLDt",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "RmtMAYVTTFv2iK9muMrXEoAnSSsZPPgRPbqZCKwNDYk",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-RmtMAYVTTFv2iK9muMrXEoAnSSsZPPgRPbqZCKwNDYk-1786986032590.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-RmtMAYVTTFv2iK9muMrXEoAnSSsZPPgRPbqZCKwNDYk-1786986032590.png"
+ ],
+ "name": "BULLS'S EYE",
+ "symbol": "EYE",
+ "marketCap": "147742.068814700823124318",
+ "price": "0.00014786094452955318",
+ "priceChange24hPercent": "-30.06",
+ "volume24h": "55119.66499369511",
+ "communityRecognized": true,
+ "key": "sol--101:RmtMAYVTTFv2iK9muMrXEoAnSSsZPPgRPbqZCKwNDYk",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "9GJQUmiEZBpgSiEaqvi9hXXFs45crcfTwQ1vYY7Xgx6A",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/f489f9e0d4221e30270f32e9e593071fc0ccc0f3debebd41024a54ff69c08365",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/f489f9e0d4221e30270f32e9e593071fc0ccc0f3debebd41024a54ff69c08365"
+ ],
+ "name": "401jk",
+ "symbol": "401jk",
+ "marketCap": "125948.722351959385019986",
+ "price": "0.00013130729042982356",
+ "priceChange24hPercent": "-25.07",
+ "volume24h": "598878.79655740945",
+ "communityRecognized": false,
+ "key": "sol--101:9GJQUmiEZBpgSiEaqvi9hXXFs45crcfTwQ1vYY7Xgx6A",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "7HgfXftRBBqsYtAEYcqjGLQrNJLL6Tww9ek4rE3Apump",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-7HgfXftRBBqsYtAEYcqjGLQrNJLL6Tww9ek4rE3Apump-1778599302397.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-7HgfXftRBBqsYtAEYcqjGLQrNJLL6Tww9ek4rE3Apump-1778599302397.png"
+ ],
+ "name": "Red Kitten Crew",
+ "symbol": "RKC",
+ "marketCap": "1497618.816375190732820852",
+ "price": "0.00158860596795566837",
+ "priceChange24hPercent": "34.74",
+ "volume24h": "121549.79215955782",
+ "communityRecognized": true,
+ "key": "sol--101:7HgfXftRBBqsYtAEYcqjGLQrNJLL6Tww9ek4rE3Apump",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "Xs8S1uUs1zvS2p7iwtsG3b6fkhpvmwz4GYU3gWAmWHZ",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-Xs8S1uUs1zvS2p7iwtsG3b6fkhpvmwz4GYU3gWAmWHZ-1758104625424.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-Xs8S1uUs1zvS2p7iwtsG3b6fkhpvmwz4GYU3gWAmWHZ-1758104625424.png"
+ ],
+ "name": "Nasdaq xStock",
+ "symbol": "QQQx",
+ "marketCap": "36239960.151659816287497574",
+ "price": "718.93420524208829164119",
+ "priceChange24hPercent": "0.45",
+ "volume24h": "2076895.16976137638431684",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 xStock 代币化发行",
+ "subtitle": "纳指ETF",
+ "source": "xstock",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/xstock.png",
+ "isOpen": true
+ },
+ "key": "sol--101:Xs8S1uUs1zvS2p7iwtsG3b6fkhpvmwz4GYU3gWAmWHZ",
+ "kind": "stock",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "zrmswgfyBjwCFziMo4S5EQdpx2GWRBpEK3vK434tx22",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/f69d8a15e3fd4a40a8ff2356de86f9c973e5e8994adf9f3df9b47c3b7820411e",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/f69d8a15e3fd4a40a8ff2356de86f9c973e5e8994adf9f3df9b47c3b7820411e"
+ ],
+ "name": "Token",
+ "symbol": "Token",
+ "marketCap": "192034.423280784016747696",
+ "price": "0.00019843566334029236",
+ "priceChange24hPercent": "6488.46",
+ "volume24h": "346987.80552515336",
+ "communityRecognized": false,
+ "key": "sol--101:zrmswgfyBjwCFziMo4S5EQdpx2GWRBpEK3vK434tx22",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "5dRHKSymMTTx64YmtdjDqeqt2PPt5MTaTSthToDD94NW",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/1a2da5d48d30a9336100644de066d872b690565bed9fa2f99938fd2ba1428672",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/1a2da5d48d30a9336100644de066d872b690565bed9fa2f99938fd2ba1428672"
+ ],
+ "name": "PONZI",
+ "symbol": "PONZI",
+ "marketCap": "330064.340635341267361856",
+ "price": "0.00033006436926540323",
+ "priceChange24hPercent": "8420.24",
+ "volume24h": "640745.754025529614388169",
+ "communityRecognized": false,
+ "key": "sol--101:5dRHKSymMTTx64YmtdjDqeqt2PPt5MTaTSthToDD94NW",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "2pwCdsf3KmoQFihDDtxMyPwrTJmimTA8sTBBn57robN6",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/387ad3f11ea3d0cfb99f2460f49f8916c2dab635821ad58ffbfffc7c27bbf2ff",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/387ad3f11ea3d0cfb99f2460f49f8916c2dab635821ad58ffbfffc7c27bbf2ff"
+ ],
+ "name": "PIGEON TRUTH",
+ "symbol": "PIGEONS",
+ "marketCap": "332437.193836544137003246",
+ "price": "0.00033243765117637098",
+ "priceChange24hPercent": "6247.63",
+ "volume24h": "1120477.91539396885616206",
+ "communityRecognized": false,
+ "key": "sol--101:2pwCdsf3KmoQFihDDtxMyPwrTJmimTA8sTBBn57robN6",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "61KTwuGCkY6J5wb1GLNvUsWrYGnSfUJ1sNmAJ2X9pump",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/c88da8edbc87fb99168afa73ef80ab63b417d5f0f19842adb426c7346ebfb658",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/c88da8edbc87fb99168afa73ef80ab63b417d5f0f19842adb426c7346ebfb658"
+ ],
+ "name": "Hunter Bidet",
+ "symbol": "BIDET",
+ "marketCap": "43238.24850816225128366",
+ "price": "0.00004444999450327959",
+ "priceChange24hPercent": "1428.07",
+ "volume24h": "906198.70208959624",
+ "communityRecognized": false,
+ "key": "sol--101:61KTwuGCkY6J5wb1GLNvUsWrYGnSfUJ1sNmAJ2X9pump",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "Cu49bzY6R1wXVqeZzJggYcZiz8fHb9P17mbEzutg4Pq1",
+ "logoUrl": "https://static.oklink.com/cdn/web3/currency/token/large/501-Cu49bzY6R1wXVqeZzJggYcZiz8fHb9P17mbEzutg4Pq1-109/type=default_90_0?v=1788837736188",
+ "logoUrls": [
+ "https://static.oklink.com/cdn/web3/currency/token/large/501-Cu49bzY6R1wXVqeZzJggYcZiz8fHb9P17mbEzutg4Pq1-109/type=default_90_0?v=1788837736188"
+ ],
+ "name": "Xtremely Retarded People",
+ "symbol": "XRP",
+ "marketCap": "219234.994074005715984401",
+ "price": "0.00022574850990482328",
+ "priceChange24hPercent": "7473.83",
+ "volume24h": "1428288.67174177718",
+ "communityRecognized": false,
+ "key": "sol--101:Cu49bzY6R1wXVqeZzJggYcZiz8fHb9P17mbEzutg4Pq1",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "8RDq8d3uD9mD5K75f1dEGyubN6jGArDMZaA8J4MNpump",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/b90aa9cb8975301bb6924ec124111466ea8177e6be04bd055815c3471ddd5865",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/b90aa9cb8975301bb6924ec124111466ea8177e6be04bd055815c3471ddd5865"
+ ],
+ "name": "OnlyPump",
+ "symbol": "ONLYPUMP",
+ "marketCap": "1278764.360847444143365787",
+ "price": "0.00129019682178680519",
+ "priceChange24hPercent": "44322.07",
+ "volume24h": "2021077.48722244683",
+ "communityRecognized": false,
+ "key": "sol--101:8RDq8d3uD9mD5K75f1dEGyubN6jGArDMZaA8J4MNpump",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "J8PSdNP3QewKq2Z1JJJFDMaqF7KcaiJhR7gbr5KZpump",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-J8PSdNP3QewKq2Z1JJJFDMaqF7KcaiJhR7gbr5KZpump-1772550161045.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-J8PSdNP3QewKq2Z1JJJFDMaqF7KcaiJhR7gbr5KZpump-1772550161045.png"
+ ],
+ "name": "Tung Tung Tung Sahur",
+ "symbol": "TripleT",
+ "marketCap": "8727326.880191006330440166",
+ "price": "0.00872800295600030446",
+ "priceChange24hPercent": "-3.55",
+ "volume24h": "1135808.07330992581",
+ "communityRecognized": true,
+ "key": "sol--101:J8PSdNP3QewKq2Z1JJJFDMaqF7KcaiJhR7gbr5KZpump",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "A7bdiYdS5GjqGFtxf17ppRHtDKPkkRqbKtR27dxvQXaS",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-A7bdiYdS5GjqGFtxf17ppRHtDKPkkRqbKtR27dxvQXaS-1760630401975.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-A7bdiYdS5GjqGFtxf17ppRHtDKPkkRqbKtR27dxvQXaS-1760630401975.png"
+ ],
+ "name": "Zcash",
+ "symbol": "ZEC",
+ "marketCap": "108381246.656948456802795032",
+ "price": "1126.76216375512956423137",
+ "priceChange24hPercent": "-5.51",
+ "volume24h": "48716916.679106672273694412",
+ "communityRecognized": true,
+ "key": "sol--101:A7bdiYdS5GjqGFtxf17ppRHtDKPkkRqbKtR27dxvQXaS",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "8iBSN84vSpZAhMCin81YS9FBgiuQhKns2udaZ8qTzkh5",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/d47faaf1af74dc4b8f159f83c5594fefb37c28f24d40c84c3aa877b59113713c",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/d47faaf1af74dc4b8f159f83c5594fefb37c28f24d40c84c3aa877b59113713c"
+ ],
+ "name": "Boomer",
+ "symbol": "BOOMER",
+ "marketCap": "245795.75122960801241058",
+ "price": "0.00024579648930853509",
+ "priceChange24hPercent": "124.81",
+ "volume24h": "297823.976028928302924049",
+ "communityRecognized": false,
+ "key": "sol--101:8iBSN84vSpZAhMCin81YS9FBgiuQhKns2udaZ8qTzkh5",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "Xsc9qvGR1efVDFGLrVsmkzv3qi45LTBjeUKSPmx9qEh",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-Xsc9qvGR1efVDFGLrVsmkzv3qi45LTBjeUKSPmx9qEh-1758104122411.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-Xsc9qvGR1efVDFGLrVsmkzv3qi45LTBjeUKSPmx9qEh-1758104122411.png"
+ ],
+ "name": "NVIDIA xStock",
+ "symbol": "NVDAx",
+ "marketCap": "40688636.700095001974864294",
+ "price": "232.90275658577221331091",
+ "priceChange24hPercent": "0.52",
+ "volume24h": "3378662.198626062200770673",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 xStock 代币化发行",
+ "subtitle": "英伟达",
+ "source": "xstock",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/xstock.png",
+ "isOpen": true
+ },
+ "key": "sol--101:Xsc9qvGR1efVDFGLrVsmkzv3qi45LTBjeUKSPmx9qEh",
+ "kind": "stock",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "A13oRB9FFaiUjfi6LdCg6p9ka1u8SfGkUFs4SKvPpump",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-A13oRB9FFaiUjfi6LdCg6p9ka1u8SfGkUFs4SKvPpump-1786208973375.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-A13oRB9FFaiUjfi6LdCg6p9ka1u8SfGkUFs4SKvPpump-1786208973375.png"
+ ],
+ "name": "The Toad Pepe",
+ "symbol": "TOAD",
+ "marketCap": "3811760.624214865858761162",
+ "price": "0.00396827439325526335",
+ "priceChange24hPercent": "-25.52",
+ "volume24h": "1879483.582390832095898928",
+ "communityRecognized": true,
+ "key": "sol--101:A13oRB9FFaiUjfi6LdCg6p9ka1u8SfGkUFs4SKvPpump",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "9Pfync3ejPC9eHqVzq3nYQJAhyhjqpnB9UsaSfLxpump",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-9Pfync3ejPC9eHqVzq3nYQJAhyhjqpnB9UsaSfLxpump-1783523508946.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-9Pfync3ejPC9eHqVzq3nYQJAhyhjqpnB9UsaSfLxpump-1783523508946.png"
+ ],
+ "name": "KET",
+ "symbol": "KET",
+ "marketCap": "4577890.825967480937379315",
+ "price": "0.00457795342625807662",
+ "priceChange24hPercent": "28.19",
+ "volume24h": "349524.9398838251",
+ "communityRecognized": true,
+ "key": "sol--101:9Pfync3ejPC9eHqVzq3nYQJAhyhjqpnB9UsaSfLxpump",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "GPRR2u6NS5yBQHWGauoJ9HXgjrTH8dDsrBfTV5zAYvDH",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-GPRR2u6NS5yBQHWGauoJ9HXgjrTH8dDsrBfTV5zAYvDH-1788370277445.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-GPRR2u6NS5yBQHWGauoJ9HXgjrTH8dDsrBfTV5zAYvDH-1788370277445.png"
+ ],
+ "name": "GoPro - Backpack Securities",
+ "symbol": "GPRO",
+ "marketCap": "367215.739871755057607796",
+ "price": "1.68106738019190069462",
+ "priceChange24hPercent": "-1.46",
+ "volume24h": "561738.811637895217205757",
+ "communityRecognized": false,
+ "key": "sol--101:GPRR2u6NS5yBQHWGauoJ9HXgjrTH8dDsrBfTV5zAYvDH",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "poNSfquKq512ApeYjVghwViSun4x1MhCqHVH2Paq4jN",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-poNSfquKq512ApeYjVghwViSun4x1MhCqHVH2Paq4jN-1788282231281.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-poNSfquKq512ApeYjVghwViSun4x1MhCqHVH2Paq4jN-1788282231281.png"
+ ],
+ "name": "Pons",
+ "symbol": "PONS",
+ "marketCap": "1216890.936296467279698441",
+ "price": "0.70271179731256876631",
+ "priceChange24hPercent": "-4.31",
+ "volume24h": "806232.553642153346514904",
+ "communityRecognized": true,
+ "key": "sol--101:poNSfquKq512ApeYjVghwViSun4x1MhCqHVH2Paq4jN",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "6oHYDbrWRRtBhLTLLibJmPXfek9dGzdCgzfDB4xYpump",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/f6aa7ec428c9954c3b2221c4b73a04c76d5946f84cffbee4acc34fd6968ba488",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/f6aa7ec428c9954c3b2221c4b73a04c76d5946f84cffbee4acc34fd6968ba488"
+ ],
+ "name": "Kestrel Browser",
+ "symbol": "KESTREL",
+ "marketCap": "76617.484540006393216051",
+ "price": "0.00007942793618784602",
+ "priceChange24hPercent": "1099.34",
+ "volume24h": "141019.87180678394",
+ "communityRecognized": false,
+ "key": "sol--101:6oHYDbrWRRtBhLTLLibJmPXfek9dGzdCgzfDB4xYpump",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "HooDYv5RewLRiMLnEVq3VJqdqxhuE6c5eYvqejMC3e9A",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-HooDYv5RewLRiMLnEVq3VJqdqxhuE6c5eYvqejMC3e9A-1784387203502.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-HooDYv5RewLRiMLnEVq3VJqdqxhuE6c5eYvqejMC3e9A-1784387203502.png"
+ ],
+ "name": "Robinhood Markets - Backpack Securities",
+ "symbol": "HOOD",
+ "marketCap": "689506.491565078192340844",
+ "price": "123.13754463735993104298",
+ "priceChange24hPercent": "-2.54",
+ "volume24h": "198225.000518418966629992",
+ "communityRecognized": false,
+ "key": "sol--101:HooDYv5RewLRiMLnEVq3VJqdqxhuE6c5eYvqejMC3e9A",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "8H5yfL1GoDETLDaLYZzrgQuZs37eiKJjdfP21b6ypump",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/b5fbc395b6856dcc010801fc6c05e304d7799076767bbca421854113a0e1007a",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/b5fbc395b6856dcc010801fc6c05e304d7799076767bbca421854113a0e1007a"
+ ],
+ "name": "SAAR",
+ "symbol": "SAAR",
+ "marketCap": "911420.909642611661368393",
+ "price": "0.00095726846229586004",
+ "priceChange24hPercent": "10.38",
+ "volume24h": "181155.61632296127",
+ "communityRecognized": false,
+ "key": "sol--101:8H5yfL1GoDETLDaLYZzrgQuZs37eiKJjdfP21b6ypump",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "XsCPL9dNWBMvFtTmwcCA5v3xWPSMEBCszbQdiLLq6aN",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-XsCPL9dNWBMvFtTmwcCA5v3xWPSMEBCszbQdiLLq6aN-1758104813770.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-XsCPL9dNWBMvFtTmwcCA5v3xWPSMEBCszbQdiLLq6aN-1758104813770.png"
+ ],
+ "name": "Alphabet xStock",
+ "symbol": "GOOGLx",
+ "marketCap": "34924511.355344239332582928",
+ "price": "338.91520691789838497732",
+ "priceChange24hPercent": "0.53",
+ "volume24h": "648646.340409903883266569",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 xStock 代币化发行",
+ "subtitle": "谷歌",
+ "source": "xstock",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/xstock.png",
+ "isOpen": true
+ },
+ "key": "sol--101:XsCPL9dNWBMvFtTmwcCA5v3xWPSMEBCszbQdiLLq6aN",
+ "kind": "stock",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "5GefefPX1mDs6ZJB1apYmz6fCTCiNJpHturZ9bvFpump",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/aff58c35fc25bd05538eff881f8ebe2280d9e68e90e2a46c601cf71bbc71b7fd",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/aff58c35fc25bd05538eff881f8ebe2280d9e68e90e2a46c601cf71bbc71b7fd"
+ ],
+ "name": "Pumpoween",
+ "symbol": "Pumpoween",
+ "marketCap": "273726.125359578958990011",
+ "price": "0.00029114292614482808",
+ "priceChange24hPercent": "140.45",
+ "volume24h": "151154.11455812345",
+ "communityRecognized": false,
+ "key": "sol--101:5GefefPX1mDs6ZJB1apYmz6fCTCiNJpHturZ9bvFpump",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "3SXQSMVWTf6rZaJiXn3tHNpNEKLeTK1FShFR3s4fxSUR",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-3SXQSMVWTf6rZaJiXn3tHNpNEKLeTK1FShFR3s4fxSUR-1786122072043.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-3SXQSMVWTf6rZaJiXn3tHNpNEKLeTK1FShFR3s4fxSUR-1786122072043.png"
+ ],
+ "name": "ethics.ltd",
+ "symbol": "ETHICS",
+ "marketCap": "467403.848340582308606956",
+ "price": "0.00047216103413005763",
+ "priceChange24hPercent": "-47.89",
+ "volume24h": "284471.179437806310733999",
+ "communityRecognized": true,
+ "key": "sol--101:3SXQSMVWTf6rZaJiXn3tHNpNEKLeTK1FShFR3s4fxSUR",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "TTWofwAge91oFhZs7kpQdyrVRkmevgM88xijGvQFbKo",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/cf7b658ba2dd37cdb3815701f8819d25118b74c703eb1868f959a2e0350a3366",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/cf7b658ba2dd37cdb3815701f8819d25118b74c703eb1868f959a2e0350a3366"
+ ],
+ "name": "Take-Two Interactive Software - Backpack Securities",
+ "symbol": "TTWO",
+ "marketCap": "386910.08758471716526815",
+ "price": "215.80705034658883619117",
+ "priceChange24hPercent": "-0.18",
+ "volume24h": "442025.424254216652773584",
+ "communityRecognized": false,
+ "key": "sol--101:TTWofwAge91oFhZs7kpQdyrVRkmevgM88xijGvQFbKo",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "AMC1qwR9KhiyrQBRPrxnfo4JfMeMZqEBvt5tgTytNNoc",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-AMC1qwR9KhiyrQBRPrxnfo4JfMeMZqEBvt5tgTytNNoc-1788800722604.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-AMC1qwR9KhiyrQBRPrxnfo4JfMeMZqEBvt5tgTytNNoc-1788800722604.png"
+ ],
+ "name": "AMC Entertainment - Backpack Securities",
+ "symbol": "AMC",
+ "marketCap": "137339.961933871671759057",
+ "price": "2.67350501964207769533",
+ "priceChange24hPercent": "-32.88",
+ "volume24h": "726246.275929027291999682",
+ "communityRecognized": false,
+ "key": "sol--101:AMC1qwR9KhiyrQBRPrxnfo4JfMeMZqEBvt5tgTytNNoc",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "XsqE9cRRpzxcGKDXj1BJ7Xmg4GRhZoyY1KpmGSxAWT2",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-XsqE9cRRpzxcGKDXj1BJ7Xmg4GRhZoyY1KpmGSxAWT2-1758106345798.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-XsqE9cRRpzxcGKDXj1BJ7Xmg4GRhZoyY1KpmGSxAWT2-1758106345798.png"
+ ],
+ "name": "McDonald's xStock",
+ "symbol": "MCDx",
+ "marketCap": "1408079.851319124295748968",
+ "price": "256.31462582720271173137",
+ "priceChange24hPercent": "-7.59",
+ "volume24h": "2375954.462903037537884393",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 xStock 代币化发行",
+ "subtitle": "麦当劳",
+ "source": "xstock",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/xstock.png",
+ "isOpen": true
+ },
+ "key": "sol--101:XsqE9cRRpzxcGKDXj1BJ7Xmg4GRhZoyY1KpmGSxAWT2",
+ "kind": "stock",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "EHpaxqVVjyyPt2cjfft5SqTkfaEjCF7RUCaFxCrZpump",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/98b25149d158ea81c6ba2e37c4e6e08b641d6739e23308262bc9a6867d6ca9bb",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/98b25149d158ea81c6ba2e37c4e6e08b641d6739e23308262bc9a6867d6ca9bb"
+ ],
+ "name": "WHEEL SMITH",
+ "symbol": "wheelsmith",
+ "marketCap": "65507.631500401091565847",
+ "price": "0.00006697080311158935",
+ "priceChange24hPercent": "88.73",
+ "volume24h": "778056.29329107724",
+ "communityRecognized": false,
+ "key": "sol--101:EHpaxqVVjyyPt2cjfft5SqTkfaEjCF7RUCaFxCrZpump",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "CASHx9KJUStyftLFWGvEVf59SGeG9sh5FfcnZMVPCASH",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-CASHx9KJUStyftLFWGvEVf59SGeG9sh5FfcnZMVPCASH-1760025966243.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-CASHx9KJUStyftLFWGvEVf59SGeG9sh5FfcnZMVPCASH-1760025966243.png"
+ ],
+ "name": "CASH",
+ "symbol": "CASH",
+ "marketCap": "124711689.400422448651148305",
+ "price": "0.99988837741113158728",
+ "priceChange24hPercent": "0",
+ "volume24h": "11354558.40892419169",
+ "communityRecognized": true,
+ "key": "sol--101:CASHx9KJUStyftLFWGvEVf59SGeG9sh5FfcnZMVPCASH",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "TcnKFgDZc6RhAz83JHHbWeZ5wLc2at8iHK6FhsxkTLh",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/659a26dcb16b02312c48826ba8551dc34d13858cff2c00998dbbbb8ef2aab7dd",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/659a26dcb16b02312c48826ba8551dc34d13858cff2c00998dbbbb8ef2aab7dd"
+ ],
+ "name": "Lucia",
+ "symbol": "Lucia",
+ "marketCap": "162909.72264866850184861",
+ "price": "0.00016896152593551026",
+ "priceChange24hPercent": "290.96",
+ "volume24h": "185354.21063484473",
+ "communityRecognized": false,
+ "key": "sol--101:TcnKFgDZc6RhAz83JHHbWeZ5wLc2at8iHK6FhsxkTLh",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "2NdgMAFbWVHvXJcoAwuRkTfYn1j97THVCThWATKHSTNK",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/ef1725d3508ae9af7847f0a719c073e46c7ef4250a464f545bb6708dbe380f3e",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/ef1725d3508ae9af7847f0a719c073e46c7ef4250a464f545bb6708dbe380f3e"
+ ],
+ "name": "Universal High Income",
+ "symbol": "UHI",
+ "marketCap": "94808.647286636511653555",
+ "price": "0.00009480864728663651",
+ "priceChange24hPercent": "2411.11",
+ "volume24h": "227180.203563953925241519",
+ "communityRecognized": false,
+ "key": "sol--101:2NdgMAFbWVHvXJcoAwuRkTfYn1j97THVCThWATKHSTNK",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "SV151D5pjygAKA8aJJcKzm4wFnRX5G92Fye94jQJk7g",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-SV151D5pjygAKA8aJJcKzm4wFnRX5G92Fye94jQJk7g-1780758501370.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-SV151D5pjygAKA8aJJcKzm4wFnRX5G92Fye94jQJk7g-1780758501370.png"
+ ],
+ "name": "Scarlet & Violet 151",
+ "symbol": "SV151",
+ "marketCap": "519370.167398984738736426",
+ "price": "0.51951531193556202131",
+ "priceChange24hPercent": "21.32",
+ "volume24h": "978009.34902915672",
+ "communityRecognized": true,
+ "key": "sol--101:SV151D5pjygAKA8aJJcKzm4wFnRX5G92Fye94jQJk7g",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "ATaKBKZCAuiPoxq85UiCQc2uJcFrEfxVY6HLUF4FEi9C",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/55975bb305d14828fc7aa821e1219b10cff63c8dd9f62e09a57707708449f2c8",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/55975bb305d14828fc7aa821e1219b10cff63c8dd9f62e09a57707708449f2c8"
+ ],
+ "name": "Just a Stonk Guy",
+ "symbol": "STONKGUY",
+ "marketCap": "274791.265676792347573236",
+ "price": "0.00027479155554589125",
+ "priceChange24hPercent": "8857.92",
+ "volume24h": "720119.020236050033425722",
+ "communityRecognized": false,
+ "key": "sol--101:ATaKBKZCAuiPoxq85UiCQc2uJcFrEfxVY6HLUF4FEi9C",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "CB1YQfUzgsnaCd93cZLdiX1uASW7utWBaYMUsvcwNUBV",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/099870e2b6d87a6011107891ae76bd483fd6553ca9a6eff9e51ec305e6de1924",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/099870e2b6d87a6011107891ae76bd483fd6553ca9a6eff9e51ec305e6de1924"
+ ],
+ "name": "loom",
+ "symbol": "LOOM",
+ "marketCap": "754258.116789264469801056",
+ "price": "0.00077760395183491932",
+ "priceChange24hPercent": "-57.03",
+ "volume24h": "1504327.57550419181",
+ "communityRecognized": false,
+ "key": "sol--101:CB1YQfUzgsnaCd93cZLdiX1uASW7utWBaYMUsvcwNUBV",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "FPfi9q1AixdUeWQVPFHJMJQ7a43S78dm6UZ4fzN4pump",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-FPfi9q1AixdUeWQVPFHJMJQ7a43S78dm6UZ4fzN4pump-1786295210474.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-FPfi9q1AixdUeWQVPFHJMJQ7a43S78dm6UZ4fzN4pump-1786295210474.png"
+ ],
+ "name": "9gnosis",
+ "symbol": "nosis",
+ "marketCap": "306063.323882097621475407",
+ "price": "0.00031443043565121607",
+ "priceChange24hPercent": "8.74",
+ "volume24h": "28582.11562038784",
+ "communityRecognized": false,
+ "key": "sol--101:FPfi9q1AixdUeWQVPFHJMJQ7a43S78dm6UZ4fzN4pump",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "Cwo8S7E1Gbz7vFAysTENW9h8rKepQc9sdRprtmHUR6Nf",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/2a3bd5f1d4419f48ac04f7414732839471a626f88fbc593d475448b1bb440328",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/2a3bd5f1d4419f48ac04f7414732839471a626f88fbc593d475448b1bb440328"
+ ],
+ "name": "Anthropig",
+ "symbol": "Anthropig",
+ "marketCap": "39597.817175606431345428",
+ "price": "0.00004061801465962368",
+ "priceChange24hPercent": "1126.51",
+ "volume24h": "1597139.79721371688",
+ "communityRecognized": false,
+ "key": "sol--101:Cwo8S7E1Gbz7vFAysTENW9h8rKepQc9sdRprtmHUR6Nf",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "33LZGLLvtRDx3uAfJ1CcBSC7pNFqdiCBAvwPsVkBpump",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/587aee7fe9bdef600f1764a3c082d4515a5ad9f30f49bbdd7dfe11b1ec2d4391",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/587aee7fe9bdef600f1764a3c082d4515a5ad9f30f49bbdd7dfe11b1ec2d4391"
+ ],
+ "name": "billboard guy",
+ "symbol": "BILL",
+ "marketCap": "102606.968984252517310013",
+ "price": "0.00010307854394336064",
+ "priceChange24hPercent": "-57.23",
+ "volume24h": "465269.14551989129",
+ "communityRecognized": false,
+ "key": "sol--101:33LZGLLvtRDx3uAfJ1CcBSC7pNFqdiCBAvwPsVkBpump",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "CSgbRaZ3Gw4TDJvPfCWU3u2kPEQT4JF2v6iB59WwAaMJ",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/d2dc0c132b0cb4f6e97a3bbdeb9fb3aced00ff285c41cae13db9b2edb1224859",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/d2dc0c132b0cb4f6e97a3bbdeb9fb3aced00ff285c41cae13db9b2edb1224859"
+ ],
+ "name": "Baton",
+ "symbol": "BATON",
+ "marketCap": "154107.951097407944104333",
+ "price": "0.00015933796596226775",
+ "priceChange24hPercent": "144.17",
+ "volume24h": "2266313.27507302525",
+ "communityRecognized": false,
+ "key": "sol--101:CSgbRaZ3Gw4TDJvPfCWU3u2kPEQT4JF2v6iB59WwAaMJ",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "GUmbtfjSZkybSFgPibBcvwExEBdXwewJHR5PkTjzpump",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-GUmbtfjSZkybSFgPibBcvwExEBdXwewJHR5PkTjzpump-1787591211649.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-GUmbtfjSZkybSFgPibBcvwExEBdXwewJHR5PkTjzpump-1787591211649.png"
+ ],
+ "name": "Gucci Morty",
+ "symbol": "Morty",
+ "marketCap": "273625.100192616254310048",
+ "price": "0.00028587045567050823",
+ "priceChange24hPercent": "5.16",
+ "volume24h": "121364.52233225408",
+ "communityRecognized": false,
+ "key": "sol--101:GUmbtfjSZkybSFgPibBcvwExEBdXwewJHR5PkTjzpump",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "ELYfhvSgsdkLvhG9b6ZByrzgwPebegbdX9rLBNH2VNRp",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/f7d427c3a6e0b3049fdf2d54572fa74778a6370c34a63b2cc5de86b8373796a9",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/f7d427c3a6e0b3049fdf2d54572fa74778a6370c34a63b2cc5de86b8373796a9"
+ ],
+ "name": "Pump Cat Coin",
+ "symbol": "PUMPCAT",
+ "marketCap": "171253.544568353382528792",
+ "price": "0.00017125695114007278",
+ "priceChange24hPercent": "1253.13",
+ "volume24h": "2584632.058518308852932757",
+ "communityRecognized": false,
+ "key": "sol--101:ELYfhvSgsdkLvhG9b6ZByrzgwPebegbdX9rLBNH2VNRp",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "NBiSF3UaVUFtRzHwAfxyHsBCAZWGEKnMpewAE4oh7BG",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-NBiSF3UaVUFtRzHwAfxyHsBCAZWGEKnMpewAE4oh7BG-1786640418705.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-NBiSF3UaVUFtRzHwAfxyHsBCAZWGEKnMpewAE4oh7BG-1786640418705.png"
+ ],
+ "name": "Nebius Group N.V. - Backpack Securities",
+ "symbol": "NBIS",
+ "marketCap": "421493.517711081192573879",
+ "price": "233.30936452509079712528",
+ "priceChange24hPercent": "3.98",
+ "volume24h": "234805.228460819914458525",
+ "communityRecognized": false,
+ "key": "sol--101:NBiSF3UaVUFtRzHwAfxyHsBCAZWGEKnMpewAE4oh7BG",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "2zCo6bUowJMvr89ajxuWsPadAqJ2F9akCkxumNsSdgsL",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-2zCo6bUowJMvr89ajxuWsPadAqJ2F9akCkxumNsSdgsL-1784819448907.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-2zCo6bUowJMvr89ajxuWsPadAqJ2F9akCkxumNsSdgsL-1784819448907.png"
+ ],
+ "name": "Hylo 3x Leveraged BTC",
+ "symbol": "xBTC",
+ "marketCap": "838685.045678011158375224",
+ "price": "1.88860655963693248077",
+ "priceChange24hPercent": "-3.92",
+ "volume24h": "9648960.968576289012883613",
+ "communityRecognized": false,
+ "key": "sol--101:2zCo6bUowJMvr89ajxuWsPadAqJ2F9akCkxumNsSdgsL",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "9i3NFMa9pqR3suCUhyX3nQE1dy6i5wXafDtppUxYpump",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/4ad7324e6543af740da38ed18307b9bdd15b0ea5c884b97408f73c1ad9869c7e",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/4ad7324e6543af740da38ed18307b9bdd15b0ea5c884b97408f73c1ad9869c7e"
+ ],
+ "name": "Catcoin",
+ "symbol": "CATCOIN",
+ "marketCap": "3719525.083378437358609863",
+ "price": "0.00372161941456153807",
+ "priceChange24hPercent": "32831.24",
+ "volume24h": "499734.90487009407",
+ "communityRecognized": false,
+ "key": "sol--101:9i3NFMa9pqR3suCUhyX3nQE1dy6i5wXafDtppUxYpump",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "EicWvteVi2fWepEzS3FYWsnuPoP6caZfjnKqNvydLjCH",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-EicWvteVi2fWepEzS3FYWsnuPoP6caZfjnKqNvydLjCH-1768663250541.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-EicWvteVi2fWepEzS3FYWsnuPoP6caZfjnKqNvydLjCH-1768663250541.png"
+ ],
+ "name": "Lighter",
+ "symbol": "LIT",
+ "marketCap": "2406344.494081651100392756",
+ "price": "4.64379141369534667178",
+ "priceChange24hPercent": "5.56",
+ "volume24h": "11509709.20882259996",
+ "communityRecognized": false,
+ "key": "sol--101:EicWvteVi2fWepEzS3FYWsnuPoP6caZfjnKqNvydLjCH",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "Xsa62P5mvPszXL1krVUnU5ar38bBSVcWAB6fmPCo5Zu",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-Xsa62P5mvPszXL1krVUnU5ar38bBSVcWAB6fmPCo5Zu-1758104565242.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-Xsa62P5mvPszXL1krVUnU5ar38bBSVcWAB6fmPCo5Zu-1758104565242.png"
+ ],
+ "name": "Meta xStock",
+ "symbol": "METAx",
+ "marketCap": "9426835.040910042921584587",
+ "price": "613.0954425",
+ "priceChange24hPercent": "-0.28",
+ "volume24h": "398011.860590758843178399",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 xStock 代币化发行",
+ "subtitle": "Meta",
+ "source": "xstock",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/xstock.png",
+ "isOpen": true
+ },
+ "key": "sol--101:Xsa62P5mvPszXL1krVUnU5ar38bBSVcWAB6fmPCo5Zu",
+ "kind": "stock",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "J6HiEgR1Tvf6uTbz7kvMLtVWNypkhkwdsMBoRKLz4WQs",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/c8feff0e0bc8364e324ff76aae466a96461529d01162e3ef4769e9599c950989",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/c8feff0e0bc8364e324ff76aae466a96461529d01162e3ef4769e9599c950989"
+ ],
+ "name": "On The Computer",
+ "symbol": "OTC",
+ "marketCap": "23982.277081660736184677",
+ "price": "0.00002563081863626552",
+ "priceChange24hPercent": "576.42",
+ "volume24h": "1054672.69245094955",
+ "communityRecognized": false,
+ "key": "sol--101:J6HiEgR1Tvf6uTbz7kvMLtVWNypkhkwdsMBoRKLz4WQs",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "PreweJYECqtQwBtpxHL171nL2K6umo692gTm7Q3rpgF",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-PreweJYECqtQwBtpxHL171nL2K6umo692gTm7Q3rpgF-1760026398838.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-PreweJYECqtQwBtpxHL171nL2K6umo692gTm7Q3rpgF-1760026398838.png"
+ ],
+ "name": "OpenAI PreStocks",
+ "symbol": "OPENAI",
+ "marketCap": "1440213.737147570420238763",
+ "price": "1026.6377008080411145584",
+ "priceChange24hPercent": "-1.59",
+ "volume24h": "4203991.09783469395",
+ "communityRecognized": true,
+ "key": "sol--101:PreweJYECqtQwBtpxHL171nL2K6umo692gTm7Q3rpgF",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "CzWAZ8yV9jX6CocTFtmhExwCzhXX8mCH6fjm7YN4ZHdP",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/3d2b95ea6ba5ad8ca1e65a1666a594e775546cbc923ff2def12179e71152ffd0",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/3d2b95ea6ba5ad8ca1e65a1666a594e775546cbc923ff2def12179e71152ffd0"
+ ],
+ "name": "OPTIMUS",
+ "symbol": "OPTIMUS",
+ "marketCap": "181245.346936341502021697",
+ "price": "0.00018685188941703919",
+ "priceChange24hPercent": "187.14",
+ "volume24h": "155614.86752077280524838",
+ "communityRecognized": false,
+ "key": "sol--101:CzWAZ8yV9jX6CocTFtmhExwCzhXX8mCH6fjm7YN4ZHdP",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "Xs3oZwbHvqis4NYcf4YKWmEia2eC84wSiVrcYcTqpH8",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-Xs3oZwbHvqis4NYcf4YKWmEia2eC84wSiVrcYcTqpH8-1781088143961.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-Xs3oZwbHvqis4NYcf4YKWmEia2eC84wSiVrcYcTqpH8-1781088143961.png"
+ ],
+ "name": "SpaceX xStock",
+ "symbol": "SPCXx",
+ "marketCap": "84108278.742033447986004943",
+ "price": "150.19453876292317649802",
+ "priceChange24hPercent": "1.17",
+ "volume24h": "2457334.745042750781305113",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 xStock 代币化发行",
+ "subtitle": "SpaceX",
+ "source": "xstock",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/xstock.png",
+ "isOpen": true
+ },
+ "key": "sol--101:Xs3oZwbHvqis4NYcf4YKWmEia2eC84wSiVrcYcTqpH8",
+ "kind": "stock",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "GfWLeKfJcvcUMLCJb46NgXXCda7AWm7TMaUWJaZV8jMQ",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/1ff00b6a93d20449b02790e470ee6d49fcbcfd8cd8130bb9120586f954a7642a",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/1ff00b6a93d20449b02790e470ee6d49fcbcfd8cd8130bb9120586f954a7642a"
+ ],
+ "name": "Mag 5 Index",
+ "symbol": "MAG5",
+ "marketCap": "30271.192613958249854331",
+ "price": "0.00003027146409098735",
+ "priceChange24hPercent": "399.27",
+ "volume24h": "189927.93238687872",
+ "communityRecognized": false,
+ "key": "sol--101:GfWLeKfJcvcUMLCJb46NgXXCda7AWm7TMaUWJaZV8jMQ",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "HxQhDGYqyjorgogMJx7YbBHADEDxuHhLnMMmr6VYpyn",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-HxQhDGYqyjorgogMJx7YbBHADEDxuHhLnMMmr6VYpyn-1786035695378.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-HxQhDGYqyjorgogMJx7YbBHADEDxuHhLnMMmr6VYpyn-1786035695378.png"
+ ],
+ "name": "MANLET",
+ "symbol": "MANLET",
+ "marketCap": "915073.412935451519543334",
+ "price": "0.00092450949575228083",
+ "priceChange24hPercent": "-20.88",
+ "volume24h": "468730.792560654631805035",
+ "communityRecognized": true,
+ "key": "sol--101:HxQhDGYqyjorgogMJx7YbBHADEDxuHhLnMMmr6VYpyn",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "KLh7sQxoWY4GhRSqHToeCorCHLEWLS7PbRjWYTFpump",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/7b3a4b3a08b4b382b7165fe747a87bcc165b4d3955be1d74626a76d04230db45",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/7b3a4b3a08b4b382b7165fe747a87bcc165b4d3955be1d74626a76d04230db45"
+ ],
+ "name": "Aura Farming",
+ "symbol": "AURA",
+ "marketCap": "524973.320051223562341447",
+ "price": "0.0005316147455895989",
+ "priceChange24hPercent": "18.63",
+ "volume24h": "533670.32629955008",
+ "communityRecognized": false,
+ "key": "sol--101:KLh7sQxoWY4GhRSqHToeCorCHLEWLS7PbRjWYTFpump",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "847y1VzYhvdx1XdYohCw5q4XVJsdqegjMkp8LGsf4J2x",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/58ad81b616bd69cbc1a1d9541e53f328154fb4a9357fb58476d6bcab1fc57867",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/58ad81b616bd69cbc1a1d9541e53f328154fb4a9357fb58476d6bcab1fc57867"
+ ],
+ "name": "Titcoin",
+ "symbol": "TITCOIN",
+ "marketCap": "77820.589340306112406574",
+ "price": "0.00007782059408739309",
+ "priceChange24hPercent": "2229.21",
+ "volume24h": "490958.756668828949379034",
+ "communityRecognized": false,
+ "key": "sol--101:847y1VzYhvdx1XdYohCw5q4XVJsdqegjMkp8LGsf4J2x",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "ab8kEtgU9AqnJXv66jAHvhdJvHj5DDMNjdJsckupump",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/e5fb48d54702b49bd31d0551378667606ad6bb5e4e33b94fc32179b14469f2d0",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/e5fb48d54702b49bd31d0551378667606ad6bb5e4e33b94fc32179b14469f2d0"
+ ],
+ "name": "Venezuela Oil Fund",
+ "symbol": "VOF",
+ "marketCap": "4651347.237020453619675486",
+ "price": "0.00465448221177504491",
+ "priceChange24hPercent": "39.08",
+ "volume24h": "212306.68666724079",
+ "communityRecognized": false,
+ "key": "sol--101:ab8kEtgU9AqnJXv66jAHvhdJvHj5DDMNjdJsckupump",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "3GXtoGmXaZHYEASkeDxejdrSWpeqqRWxCdzUVAagpump",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/7516fab2e1c15c5fbb5c14d0b66189313ecae6c94975b399af6484b48ba9d9e7",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/7516fab2e1c15c5fbb5c14d0b66189313ecae6c94975b399af6484b48ba9d9e7"
+ ],
+ "name": "Pump Cat",
+ "symbol": "PUMPCAT",
+ "marketCap": "11318.269046546040280381",
+ "price": "0.00001181335742387887",
+ "priceChange24hPercent": "295.41",
+ "volume24h": "1136273.34534778367",
+ "communityRecognized": false,
+ "key": "sol--101:3GXtoGmXaZHYEASkeDxejdrSWpeqqRWxCdzUVAagpump",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "9mEW4vsVNyHuDZHp5SfYNtGWC8o7HEbNt6fbXP4ypump",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/8356346777831140edc501f7c039ec2abceb49e4ee845cb86f3053a51d691863",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/8356346777831140edc501f7c039ec2abceb49e4ee845cb86f3053a51d691863"
+ ],
+ "name": "AiBSURD",
+ "symbol": "AiBSURD",
+ "marketCap": "32619.128696296840615794",
+ "price": "0.00003307922276695176",
+ "priceChange24hPercent": "951.67",
+ "volume24h": "504042.20755370503",
+ "communityRecognized": false,
+ "key": "sol--101:9mEW4vsVNyHuDZHp5SfYNtGWC8o7HEbNt6fbXP4ypump",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "DRqXeQA5sKGeksnRTvhTGEwpaqNtHQo8bQqub7pjpump",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/2921c4251783973f1883431eb5230fdccad504aee8793234966d2c8864a4206d",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/2921c4251783973f1883431eb5230fdccad504aee8793234966d2c8864a4206d"
+ ],
+ "name": "vc.fun",
+ "symbol": "VC",
+ "marketCap": "2590223.325839916086385083",
+ "price": "0.00259168693805588981",
+ "priceChange24hPercent": "85205.08",
+ "volume24h": "2127628.09933391676",
+ "communityRecognized": false,
+ "key": "sol--101:DRqXeQA5sKGeksnRTvhTGEwpaqNtHQo8bQqub7pjpump",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "4k3Dyjzvzp8eMZWUXbBCjEvwSkkk59S5iCNLY3QrkX6R",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-4k3Dyjzvzp8eMZWUXbBCjEvwSkkk59S5iCNLY3QrkX6R-1758104080638.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-4k3Dyjzvzp8eMZWUXbBCjEvwSkkk59S5iCNLY3QrkX6R-1758104080638.png"
+ ],
+ "name": "Raydium",
+ "symbol": "RAY",
+ "marketCap": "686552423.523398301690605977",
+ "price": "1.23703686994343528221",
+ "priceChange24hPercent": "1.79",
+ "volume24h": "16275032.956970973021021665",
+ "communityRecognized": true,
+ "key": "sol--101:4k3Dyjzvzp8eMZWUXbBCjEvwSkkk59S5iCNLY3QrkX6R",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "Cm6fNnMk7NfzStP9CZpsQA2v3jjzbcYGAxdJySmHpump",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-Cm6fNnMk7NfzStP9CZpsQA2v3jjzbcYGAxdJySmHpump-1768143840927.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-Cm6fNnMk7NfzStP9CZpsQA2v3jjzbcYGAxdJySmHpump-1768143840927.png"
+ ],
+ "name": "Buttcoin",
+ "symbol": "Buttcoin",
+ "marketCap": "11583372.822348437456589253",
+ "price": "0.01158403712129144678",
+ "priceChange24hPercent": "-1.16",
+ "volume24h": "559870.157955905419105583",
+ "communityRecognized": true,
+ "key": "sol--101:Cm6fNnMk7NfzStP9CZpsQA2v3jjzbcYGAxdJySmHpump",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "XSTuo1fV7HHMhs4BYiwtrWSLsMCJNrooH2AssWTYZqP",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-XSTuo1fV7HHMhs4BYiwtrWSLsMCJNrooH2AssWTYZqP-1784905308143.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-XSTuo1fV7HHMhs4BYiwtrWSLsMCJNrooH2AssWTYZqP-1784905308143.png"
+ ],
+ "name": "XST",
+ "symbol": "XST",
+ "marketCap": "960617.247138841141352099",
+ "price": "0.00096062306465343849",
+ "priceChange24hPercent": "-0.97",
+ "volume24h": "56636.92206937328",
+ "communityRecognized": true,
+ "key": "sol--101:XSTuo1fV7HHMhs4BYiwtrWSLsMCJNrooH2AssWTYZqP",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "DUZN7M6ezXez9UVrou4N8UEGRkwnbWmXqqZgEKiZCrnN",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-DUZN7M6ezXez9UVrou4N8UEGRkwnbWmXqqZgEKiZCrnN-1788454967021.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-DUZN7M6ezXez9UVrou4N8UEGRkwnbWmXqqZgEKiZCrnN-1788454967021.png"
+ ],
+ "name": "Marketplier",
+ "symbol": "MARKET",
+ "marketCap": "553744.257303653861128357",
+ "price": "0.00057101973343138657",
+ "priceChange24hPercent": "13.63",
+ "volume24h": "207762.706534695611328831",
+ "communityRecognized": false,
+ "key": "sol--101:DUZN7M6ezXez9UVrou4N8UEGRkwnbWmXqqZgEKiZCrnN",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "CGEDT9QZDvvH5GmVkWJH2BXiMJqMJySC9ihWyr7Spump",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-CGEDT9QZDvvH5GmVkWJH2BXiMJqMJySC9ihWyr7Spump-1775315205686.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-CGEDT9QZDvvH5GmVkWJH2BXiMJqMJySC9ihWyr7Spump-1775315205686.png"
+ ],
+ "name": "Burnie Senders",
+ "symbol": "BURNIE",
+ "marketCap": "2020186.857678477830863759",
+ "price": "0.00208340766292912291",
+ "priceChange24hPercent": "19.9",
+ "volume24h": "188869.7353699072",
+ "communityRecognized": true,
+ "key": "sol--101:CGEDT9QZDvvH5GmVkWJH2BXiMJqMJySC9ihWyr7Spump",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "rxczFZFvzksquCazjtv9vtEBYW7q4SwiqXkzBcw8NFW",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/dc3415ed541cc40513c86e18cee499750bdd8d96ba538fe8c385312b09ea874f",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/dc3415ed541cc40513c86e18cee499750bdd8d96ba538fe8c385312b09ea874f"
+ ],
+ "name": "NFW",
+ "symbol": "NFW",
+ "marketCap": "3855150.074219889758772884",
+ "price": "0.00385515007421988976",
+ "priceChange24hPercent": "-78.03",
+ "volume24h": "987709.33076513445",
+ "communityRecognized": false,
+ "key": "sol--101:rxczFZFvzksquCazjtv9vtEBYW7q4SwiqXkzBcw8NFW",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "CTPoyCwkjMvoJwU4xvZZqoD8tiYk6yDchySiN5gGpump",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-CTPoyCwkjMvoJwU4xvZZqoD8tiYk6yDchySiN5gGpump-1788283052361.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-CTPoyCwkjMvoJwU4xvZZqoD8tiYk6yDchySiN5gGpump-1788283052361.png"
+ ],
+ "name": "apeonfone",
+ "symbol": "fone",
+ "marketCap": "7592997.811728859885287765",
+ "price": "0.00766871347955657293",
+ "priceChange24hPercent": "-26.38",
+ "volume24h": "6687907.54650222805",
+ "communityRecognized": true,
+ "key": "sol--101:CTPoyCwkjMvoJwU4xvZZqoD8tiYk6yDchySiN5gGpump",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "9zwhS3b1oYuUEqWNpu2SPkEH24JMVWFEVQvHuYXZpump",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-9zwhS3b1oYuUEqWNpu2SPkEH24JMVWFEVQvHuYXZpump-1780672047801.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-9zwhS3b1oYuUEqWNpu2SPkEH24JMVWFEVQvHuYXZpump-1780672047801.png"
+ ],
+ "name": "Hunter Biden 2028",
+ "symbol": "HUNTER",
+ "marketCap": "54334.717991925665202019",
+ "price": "0.00005436571502201121",
+ "priceChange24hPercent": "88.85",
+ "volume24h": "122751.15153527124",
+ "communityRecognized": false,
+ "key": "sol--101:9zwhS3b1oYuUEqWNpu2SPkEH24JMVWFEVQvHuYXZpump",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "GiUHYs5Hsv94P8bR9m26DsXsX8E786rQsFsPK6spump",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/9eddbda8acf2b136882f4e42c2f8aa2a215e106d7d83dbcb47fa9feccc5ec1fe",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/9eddbda8acf2b136882f4e42c2f8aa2a215e106d7d83dbcb47fa9feccc5ec1fe"
+ ],
+ "name": "Rich Debt",
+ "symbol": "RICHDEBT",
+ "marketCap": "839374.689400874922873267",
+ "price": "0.00085288292501745959",
+ "priceChange24hPercent": "-19.12",
+ "volume24h": "429254.60571982066",
+ "communityRecognized": false,
+ "key": "sol--101:GiUHYs5Hsv94P8bR9m26DsXsX8E786rQsFsPK6spump",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "7ssJZGFT3twGqeYA1kvpoMWwZYvMZvrMEbjRaWgg46BL",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-7ssJZGFT3twGqeYA1kvpoMWwZYvMZvrMEbjRaWgg46BL-1786036266544.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-7ssJZGFT3twGqeYA1kvpoMWwZYvMZvrMEbjRaWgg46BL-1786036266544.png"
+ ],
+ "name": "BUTTHOLE",
+ "symbol": "BUTTHOLE",
+ "marketCap": "1639122.685232262327554182",
+ "price": "0.00166179685736310259",
+ "priceChange24hPercent": "-20.95",
+ "volume24h": "433739.86355773034",
+ "communityRecognized": false,
+ "key": "sol--101:7ssJZGFT3twGqeYA1kvpoMWwZYvMZvrMEbjRaWgg46BL",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "ACQxHBwfVEXLYcfVsPtJVuMQ55bJAPh883WD1by4c5Sa",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/f2658556712f7141a98dbf07e4c75864d9061ee99e4bdca12fb540264b6c32fb",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/f2658556712f7141a98dbf07e4c75864d9061ee99e4bdca12fb540264b6c32fb"
+ ],
+ "name": "haMSTR",
+ "symbol": "haMSTR",
+ "marketCap": "13099.031501152460438166",
+ "price": "0.00001347756414243774",
+ "priceChange24hPercent": "338.4",
+ "volume24h": "665767.43823003477",
+ "communityRecognized": false,
+ "key": "sol--101:ACQxHBwfVEXLYcfVsPtJVuMQ55bJAPh883WD1by4c5Sa",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "J3NKxxXZcnNiMjKw9hYb2K4LUxgwB6t1FtPtQVsv3KFr",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-J3NKxxXZcnNiMjKw9hYb2K4LUxgwB6t1FtPtQVsv3KFr-1758104085553.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-J3NKxxXZcnNiMjKw9hYb2K4LUxgwB6t1FtPtQVsv3KFr-1758104085553.png"
+ ],
+ "name": "SPX6900 (Wormhole)",
+ "symbol": "SPX",
+ "marketCap": "43784611.95278649720820325",
+ "price": "0.53348184523597022682",
+ "priceChange24hPercent": "-5.01",
+ "volume24h": "722740.942519839186087474",
+ "communityRecognized": true,
+ "key": "sol--101:J3NKxxXZcnNiMjKw9hYb2K4LUxgwB6t1FtPtQVsv3KFr",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "LLYuwZ33keFihgwoxXsBawy31AiRFLFSva32TYq5TvD",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-LLYuwZ33keFihgwoxXsBawy31AiRFLFSva32TYq5TvD-1787333825011.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-LLYuwZ33keFihgwoxXsBawy31AiRFLFSva32TYq5TvD-1787333825011.png"
+ ],
+ "name": "Eli Lilly and Company - Backpack Securities",
+ "symbol": "LLY",
+ "marketCap": "275626.510340279162671948",
+ "price": "1147.96412125267665952891",
+ "priceChange24hPercent": "-0.13",
+ "volume24h": "558064.553010904634886816",
+ "communityRecognized": false,
+ "key": "sol--101:LLYuwZ33keFihgwoxXsBawy31AiRFLFSva32TYq5TvD",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "Fxq9URcanj5exGoatPxckVr9KFL3mcpJDMKRfSbyrH8q",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/ac252d3221f62580087c09038a994ea9cf9bfbf0611d8531c325b0fcc86503b3",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/ac252d3221f62580087c09038a994ea9cf9bfbf0611d8531c325b0fcc86503b3"
+ ],
+ "name": "Robinhood",
+ "symbol": "HOOD",
+ "marketCap": "4434319.99587062093524057",
+ "price": "0.00004434320021898187",
+ "priceChange24hPercent": "15634.22",
+ "volume24h": "56729461.94570463066",
+ "communityRecognized": false,
+ "key": "sol--101:Fxq9URcanj5exGoatPxckVr9KFL3mcpJDMKRfSbyrH8q",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "BoTx8y9ynfdxf5ZjWtCoBVkff52qKA82ysaLU8ZM6d8T",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-BoTx8y9ynfdxf5ZjWtCoBVkff52qKA82ysaLU8ZM6d8T-1782929032590.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-BoTx8y9ynfdxf5ZjWtCoBVkff52qKA82ysaLU8ZM6d8T-1782929032590.png"
+ ],
+ "name": "RoboStrategy - Backpack Securities",
+ "symbol": "BOT",
+ "marketCap": "1486389.773982698285439982",
+ "price": "27.46903610679901051808",
+ "priceChange24hPercent": "0.81",
+ "volume24h": "872807.600112146001844867",
+ "communityRecognized": false,
+ "key": "sol--101:BoTx8y9ynfdxf5ZjWtCoBVkff52qKA82ysaLU8ZM6d8T",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "9RS8C1Tfa3tvG8Wv5cXqfFwcGrFBdzxrkhnjMA6qb6iy",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/2d67baf884600a3e110172cd7ada0c32c57ee1b7680d370e866503cb671f4fca",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/2d67baf884600a3e110172cd7ada0c32c57ee1b7680d370e866503cb671f4fca"
+ ],
+ "name": "Fridge Cigs",
+ "symbol": "CIGS",
+ "marketCap": "52952.221343573536660461",
+ "price": "0.00005295295919677196",
+ "priceChange24hPercent": "-67.42",
+ "volume24h": "160454.379296508361569305",
+ "communityRecognized": false,
+ "key": "sol--101:9RS8C1Tfa3tvG8Wv5cXqfFwcGrFBdzxrkhnjMA6qb6iy",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "Pren1FvFX6J3E4kXhJuCiAD5aDmGEb7qJRncwA8Lkhw",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-Pren1FvFX6J3E4kXhJuCiAD5aDmGEb7qJRncwA8Lkhw-1760025966243.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-Pren1FvFX6J3E4kXhJuCiAD5aDmGEb7qJRncwA8Lkhw-1760025966243.png"
+ ],
+ "name": "Anthropic PreStocks",
+ "symbol": "ANTHROPIC",
+ "marketCap": "7016150.444852688717672937",
+ "price": "950.31252774720350071284",
+ "priceChange24hPercent": "4.73",
+ "volume24h": "7082334.093197675063159074",
+ "communityRecognized": true,
+ "key": "sol--101:Pren1FvFX6J3E4kXhJuCiAD5aDmGEb7qJRncwA8Lkhw",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "GvUCjmWSXA5hrTh9smmNA1AU55YCtP9mDLQcrKA1pump",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-GvUCjmWSXA5hrTh9smmNA1AU55YCtP9mDLQcrKA1pump-1781881725076.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-GvUCjmWSXA5hrTh9smmNA1AU55YCtP9mDLQcrKA1pump-1781881725076.png"
+ ],
+ "name": "WSOP Fantasy Poker",
+ "symbol": "WSOLP",
+ "marketCap": "1468124.185678349887621297",
+ "price": "0.00146813205240955774",
+ "priceChange24hPercent": "-7.83",
+ "volume24h": "111819.71098367997",
+ "communityRecognized": false,
+ "key": "sol--101:GvUCjmWSXA5hrTh9smmNA1AU55YCtP9mDLQcrKA1pump",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "7XQrAYjRJgB1YiwQo9Tv7eQYi96YhNPuKjoT2U14SMET",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/e94d90a7abdd8ac9799fd3a26c9611b313b1fe79558f59aea1f58eea67271804",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/e94d90a7abdd8ac9799fd3a26c9611b313b1fe79558f59aea1f58eea67271804"
+ ],
+ "name": "Doppler Finance",
+ "symbol": "XDP",
+ "marketCap": "150151.141833657634537665",
+ "price": "0.00000150152825035785",
+ "priceChange24hPercent": "245.55",
+ "volume24h": "21339196.24447381449",
+ "communityRecognized": false,
+ "key": "sol--101:7XQrAYjRJgB1YiwQo9Tv7eQYi96YhNPuKjoT2U14SMET",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "7GCihgDB8fe6KNjn2MYtkzZcRjQy3t9GHdC8uHYmW2hr",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-7GCihgDB8fe6KNjn2MYtkzZcRjQy3t9GHdC8uHYmW2hr-1758104099246.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-7GCihgDB8fe6KNjn2MYtkzZcRjQy3t9GHdC8uHYmW2hr-1758104099246.png"
+ ],
+ "name": "POPCAT",
+ "symbol": "POPCAT",
+ "marketCap": "50641526.563133126841381659",
+ "price": "0.05167841729029785272",
+ "priceChange24hPercent": "-1.38",
+ "volume24h": "352512.937030591568935101",
+ "communityRecognized": true,
+ "key": "sol--101:7GCihgDB8fe6KNjn2MYtkzZcRjQy3t9GHdC8uHYmW2hr",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "F8D7kqXEUmheGHefRm1WRReTVSUVQhxL9xfCrrfavCwv",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/7bdfce133c05b8599238ce31d91b954dade60af1d9018fcec2454137d7516fa9",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/7bdfce133c05b8599238ce31d91b954dade60af1d9018fcec2454137d7516fa9"
+ ],
+ "name": "CTO",
+ "symbol": "CTO",
+ "marketCap": "88125.438772778455077232",
+ "price": "0.00009104173877284684",
+ "priceChange24hPercent": "231.09",
+ "volume24h": "612369.06556674673",
+ "communityRecognized": false,
+ "key": "sol--101:F8D7kqXEUmheGHefRm1WRReTVSUVQhxL9xfCrrfavCwv",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "SiLVFMgD3eD2rgK628NbTBq9MnuJF5FW2CRaVyTB35L",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-SiLVFMgD3eD2rgK628NbTBq9MnuJF5FW2CRaVyTB35L-1786641144146.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-SiLVFMgD3eD2rgK628NbTBq9MnuJF5FW2CRaVyTB35L-1786641144146.png"
+ ],
+ "name": "Dominion Silver",
+ "symbol": "SILV",
+ "marketCap": "6193007.964192806796538243",
+ "price": "66.39192033949276572994",
+ "priceChange24hPercent": "0.68",
+ "volume24h": "1251360.97561624705986135",
+ "communityRecognized": true,
+ "key": "sol--101:SiLVFMgD3eD2rgK628NbTBq9MnuJF5FW2CRaVyTB35L",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sol--101",
+ "address": "EjAuFtMEP6LQDgLb11JU9bkcskhFYbgd9Q5NRXJppump",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-EjAuFtMEP6LQDgLb11JU9bkcskhFYbgd9Q5NRXJppump-1787591130935.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/sol--101/tokens/address-EjAuFtMEP6LQDgLb11JU9bkcskhFYbgd9Q5NRXJppump-1787591130935.png"
+ ],
+ "name": "Caesar",
+ "symbol": "Doge2",
+ "marketCap": "94471.355175519001072393",
+ "price": "0.00009804032897504935",
+ "priceChange24hPercent": "31.95",
+ "volume24h": "137682.06891461013",
+ "communityRecognized": false,
+ "key": "sol--101:EjAuFtMEP6LQDgLb11JU9bkcskhFYbgd9Q5NRXJppump",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Solana",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sol.png"
+ }
+ ],
+ "trending|evm--1|5m|all": [
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0xd34a99bc0f67ae1bbd63c660e6d0b0dd03e263b7",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xd34a99bc0f67ae1bbd63c660e6d0b0dd03e263b7-1770962526134.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xd34a99bc0f67ae1bbd63c660e6d0b0dd03e263b7-1770962526134.png"
+ ],
+ "name": "Identity.md",
+ "symbol": "IMD",
+ "marketCap": "10216589.496199146544369432",
+ "price": "3.054251265524185482",
+ "priceChange24hPercent": "-0.25",
+ "volume24h": "3877.889839844289085432",
+ "communityRecognized": false,
+ "key": "evm--1:0xd34a99bc0f67ae1bbd63c660e6d0b0dd03e263b7",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0xa0b73e1ff0b80914ab6fe0444e65848c4c34450b",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xa0b73e1ff0b80914ab6fe0444e65848c4c34450b.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xa0b73e1ff0b80914ab6fe0444e65848c4c34450b.png"
+ ],
+ "name": "Cronos",
+ "symbol": "CRO",
+ "marketCap": "5736203223.882101211438214997",
+ "price": "0.05736203223939463244",
+ "priceChange24hPercent": "-0.26",
+ "volume24h": "1064.4059358850845506",
+ "communityRecognized": true,
+ "key": "evm--1:0xa0b73e1ff0b80914ab6fe0444e65848c4c34450b",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x232ce3bd40fcd6f80f3d55a522d03f25df784ee2",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x232ce3bd40fcd6f80f3d55a522d03f25df784ee2-1783322585018.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x232ce3bd40fcd6f80f3d55a522d03f25df784ee2-1783322585018.png"
+ ],
+ "name": "Lighter",
+ "symbol": "LIT",
+ "marketCap": "1160662782.276054865654467756",
+ "price": "4.64265112910421946262",
+ "priceChange24hPercent": "0.79",
+ "volume24h": "7196.874939374108785",
+ "communityRecognized": true,
+ "key": "evm--1:0x232ce3bd40fcd6f80f3d55a522d03f25df784ee2",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x32708538a107253b51a735a724330a23106ca4ca",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x32708538a107253b51a735a724330a23106ca4ca-1781071464068.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x32708538a107253b51a735a724330a23106ca4ca-1781071464068.png"
+ ],
+ "name": "01",
+ "symbol": "01",
+ "marketCap": "7591728.1926915093572302",
+ "price": "0.38303103971521914096",
+ "priceChange24hPercent": "-0.87",
+ "volume24h": "3252.8611120342243",
+ "communityRecognized": false,
+ "key": "evm--1:0x32708538a107253b51a735a724330a23106ca4ca",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x514910771af9ca656af840dff83e8264ecf986ca",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x514910771af9ca656af840dff83e8264ecf986ca.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x514910771af9ca656af840dff83e8264ecf986ca.png"
+ ],
+ "name": "ChainLink Token",
+ "symbol": "LINK",
+ "marketCap": "12595838798.640615720251183561",
+ "price": "12.59583966012281479998",
+ "priceChange24hPercent": "-0.38",
+ "volume24h": "1172.28924089500368021",
+ "communityRecognized": true,
+ "key": "evm--1:0x514910771af9ca656af840dff83e8264ecf986ca",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x1f9840a85d5af5bf1d1762f925bdaddc4201f984",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x1f9840a85d5af5bf1d1762f925bdaddc4201f984.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x1f9840a85d5af5bf1d1762f925bdaddc4201f984.png"
+ ],
+ "name": "Uniswap",
+ "symbol": "UNI",
+ "marketCap": "6982667914.809130319494285264",
+ "price": "6.98270981484155235271",
+ "priceChange24hPercent": "-0.44",
+ "volume24h": "1096.61497924551764349",
+ "communityRecognized": true,
+ "key": "evm--1:0x1f9840a85d5af5bf1d1762f925bdaddc4201f984",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x0d8775f648430679a709e98d2b0cb6250d2887ef",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x0d8775f648430679a709e98d2b0cb6250d2887ef.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x0d8775f648430679a709e98d2b0cb6250d2887ef.png"
+ ],
+ "name": "BAT",
+ "symbol": "BAT",
+ "marketCap": "113885196.822180145897867722",
+ "price": "0.07595049476386025008",
+ "priceChange24hPercent": "1.07",
+ "volume24h": "1389.0448877628492464",
+ "communityRecognized": true,
+ "key": "evm--1:0x0d8775f648430679a709e98d2b0cb6250d2887ef",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0xe28b3b32b6c345a34ff64674606124dd5aceca30",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xe28b3b32b6c345a34ff64674606124dd5aceca30.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xe28b3b32b6c345a34ff64674606124dd5aceca30.png"
+ ],
+ "name": "Injective Token",
+ "symbol": "INJ",
+ "marketCap": "652548679.90277936730835885",
+ "price": "6.52548679917592222342",
+ "priceChange24hPercent": "0.17",
+ "volume24h": "15757.8049670628289405",
+ "communityRecognized": true,
+ "key": "evm--1:0xe28b3b32b6c345a34ff64674606124dd5aceca30",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x7fc66500c84a76ad7e9c93437bfc5ac33e2ddae9",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x7fc66500c84a76ad7e9c93437bfc5ac33e2ddae9-1768204923952.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x7fc66500c84a76ad7e9c93437bfc5ac33e2ddae9-1768204923952.png"
+ ],
+ "name": "Aave",
+ "symbol": "AAVE",
+ "marketCap": "2097478577.173776740252401922",
+ "price": "131.09241107415034631128",
+ "priceChange24hPercent": "0.08",
+ "volume24h": "698.9048625754005",
+ "communityRecognized": true,
+ "key": "evm--1:0x7fc66500c84a76ad7e9c93437bfc5ac33e2ddae9",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0xf280b16ef293d8e534e370794ef26bf312694126",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xf280b16ef293d8e534e370794ef26bf312694126-1727226900185.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xf280b16ef293d8e534e370794ef26bf312694126-1727226900185.png"
+ ],
+ "name": "Asteroid Shiba",
+ "symbol": "ASTEROID",
+ "marketCap": "7417961.835628052508944778",
+ "price": "0.00001763284564793091",
+ "priceChange24hPercent": "-0.22",
+ "volume24h": "1498.03277431217447508",
+ "communityRecognized": true,
+ "key": "evm--1:0xf280b16ef293d8e534e370794ef26bf312694126",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0xd533a949740bb3306d119cc777fa900ba034cd52",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xd533a949740bb3306d119cc777fa900ba034cd52.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xd533a949740bb3306d119cc777fa900ba034cd52.png"
+ ],
+ "name": "Curve DAO Token",
+ "symbol": "CRV",
+ "marketCap": "876369329.769418025858573012",
+ "price": "0.36267889083621288676",
+ "priceChange24hPercent": "-0.12",
+ "volume24h": "3300.85568239214765891",
+ "communityRecognized": true,
+ "key": "evm--1:0xd533a949740bb3306d119cc777fa900ba034cd52",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x00f3c42833c3170159af4e92dbb451fb3f708917",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x00f3c42833c3170159af4e92dbb451fb3f708917-1757751970323.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x00f3c42833c3170159af4e92dbb451fb3f708917-1757751970323.png"
+ ],
+ "name": "ICP",
+ "symbol": "ICP",
+ "marketCap": "1905906.868587494480933083",
+ "price": "3.02813722699095574803",
+ "priceChange24hPercent": "0.93",
+ "volume24h": "12380.706518752609175",
+ "communityRecognized": true,
+ "key": "evm--1:0x00f3c42833c3170159af4e92dbb451fb3f708917",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x45804880de22913dafe09f4980848ece6ecbaf78",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x45804880de22913dafe09f4980848ece6ecbaf78.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x45804880de22913dafe09f4980848ece6ecbaf78.png"
+ ],
+ "name": "PAX Gold",
+ "symbol": "PAXG",
+ "marketCap": "1909008770.773613853448246035",
+ "price": "4439.69364949688523130396",
+ "priceChange24hPercent": "0.03",
+ "volume24h": "559.045165349245",
+ "communityRecognized": true,
+ "key": "evm--1:0x45804880de22913dafe09f4980848ece6ecbaf78",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x8b1484d57abbe239bb280661377363b03c89caea",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x8b1484d57abbe239bb280661377363b03c89caea-1765433140444.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x8b1484d57abbe239bb280661377363b03c89caea-1765433140444.png"
+ ],
+ "name": "ADI",
+ "symbol": "ADI",
+ "marketCap": "77207866.811593967609057552",
+ "price": "8.23071869147612736618",
+ "priceChange24hPercent": "-0.1",
+ "volume24h": "3007.843139",
+ "communityRecognized": true,
+ "key": "evm--1:0x8b1484d57abbe239bb280661377363b03c89caea",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x5afe3855358e112b5647b952709e6165e1c1eeee",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x5afe3855358e112b5647b952709e6165e1c1eeee.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x5afe3855358e112b5647b952709e6165e1c1eeee.png"
+ ],
+ "name": "Safe Token",
+ "symbol": "SAFE",
+ "marketCap": "81163050.466233622609361953",
+ "price": "0.10468500797680307475",
+ "priceChange24hPercent": "0.84",
+ "volume24h": "4235.714532159921029",
+ "communityRecognized": true,
+ "key": "evm--1:0x5afe3855358e112b5647b952709e6165e1c1eeee",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x33483a58079b4225b10e57958ca28ad7b9cdbaf7",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x33483a58079b4225b10e57958ca28ad7b9cdbaf7-1768539344372.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x33483a58079b4225b10e57958ca28ad7b9cdbaf7-1768539344372.png"
+ ],
+ "name": "BitMine Immersion Technologies (Ondo Tokenized)",
+ "symbol": "BMNRon",
+ "marketCap": "653846.433144777048337471",
+ "price": "25.193887",
+ "priceChange24hPercent": "-",
+ "volume24h": "531.6555536275885",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "BitMine",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--1:0x33483a58079b4225b10e57958ca28ad7b9cdbaf7",
+ "kind": "stock",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0xd7efb00d12c2c13131fd319336fdf952525da2af",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xd7efb00d12c2c13131fd319336fdf952525da2af.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xd7efb00d12c2c13131fd319336fdf952525da2af.png"
+ ],
+ "name": "Proton",
+ "symbol": "XPR",
+ "marketCap": "28020575.717332916931041973",
+ "price": "0.00280205757173329169",
+ "priceChange24hPercent": "2.09",
+ "volume24h": "570.595503765898",
+ "communityRecognized": true,
+ "key": "evm--1:0xd7efb00d12c2c13131fd319336fdf952525da2af",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0xaea46a60368a7bd060eec7df8cba43b7ef41ad85",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xaea46a60368a7bd060eec7df8cba43b7ef41ad85.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xaea46a60368a7bd060eec7df8cba43b7ef41ad85.png"
+ ],
+ "name": "Fetch",
+ "symbol": "FET",
+ "marketCap": "500674501.700723466328696789",
+ "price": "0.18445231067741700647",
+ "priceChange24hPercent": "-0.5",
+ "volume24h": "1434.46079964273406114",
+ "communityRecognized": true,
+ "key": "evm--1:0xaea46a60368a7bd060eec7df8cba43b7ef41ad85",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x111111111117dc0aa78b770fa6a738034120c302",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x111111111117dc0aa78b770fa6a738034120c302.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x111111111117dc0aa78b770fa6a738034120c302.png"
+ ],
+ "name": "1INCH Token",
+ "symbol": "1INCH",
+ "marketCap": "140756864.112418820878878988",
+ "price": "0.09383794371570669218",
+ "priceChange24hPercent": "0.1",
+ "volume24h": "1241.367845470664",
+ "communityRecognized": true,
+ "key": "evm--1:0x111111111117dc0aa78b770fa6a738034120c302",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0xcdf7028ceab81fa0c6971208e83fa7872994bee5",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xcdf7028ceab81fa0c6971208e83fa7872994bee5.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xcdf7028ceab81fa0c6971208e83fa7872994bee5.png"
+ ],
+ "name": "Threshold Network Token",
+ "symbol": "T",
+ "marketCap": "49985445.900066645572746791",
+ "price": "0.00448099021963842632",
+ "priceChange24hPercent": "0.81",
+ "volume24h": "1263.77197333041721",
+ "communityRecognized": true,
+ "key": "evm--1:0xcdf7028ceab81fa0c6971208e83fa7872994bee5",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x57e114b691db790c35207b2e685d4a43181e6061",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x57e114b691db790c35207b2e685d4a43181e6061.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x57e114b691db790c35207b2e685d4a43181e6061.png"
+ ],
+ "name": "ENA",
+ "symbol": "ENA",
+ "marketCap": "1660396713.548207644778402066",
+ "price": "0.16447204715537113336",
+ "priceChange24hPercent": "0.28",
+ "volume24h": "570.3278040834567941",
+ "communityRecognized": true,
+ "key": "evm--1:0x57e114b691db790c35207b2e685d4a43181e6061",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0xcccccccccc33d538dbc2ee4feab0a7a1ff4e8a94",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xcccccccccc33d538dbc2ee4feab0a7a1ff4e8a94-1757752502431.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xcccccccccc33d538dbc2ee4feab0a7a1ff4e8a94-1757752502431.png"
+ ],
+ "name": "Centrifuge",
+ "symbol": "CFG",
+ "marketCap": "49040480.663382475107337512",
+ "price": "0.12892361035323438803",
+ "priceChange24hPercent": "-1.3",
+ "volume24h": "1423.65258177853741438",
+ "communityRecognized": true,
+ "key": "evm--1:0xcccccccccc33d538dbc2ee4feab0a7a1ff4e8a94",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0xb58e61c3098d85632df34eecfb899a1ed80921cb",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xb58e61c3098d85632df34eecfb899a1ed80921cb.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xb58e61c3098d85632df34eecfb899a1ed80921cb.png"
+ ],
+ "name": "Frankencoin",
+ "symbol": "ZCHF",
+ "marketCap": "38581402.158042291088377295",
+ "price": "1.23740818388384416664",
+ "priceChange24hPercent": "0.08",
+ "volume24h": "16342.83170321606",
+ "communityRecognized": true,
+ "key": "evm--1:0xb58e61c3098d85632df34eecfb899a1ed80921cb",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0xcabd955322dfbf94c084929ac5e9eca3feb5556f",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xcabd955322dfbf94c084929ac5e9eca3feb5556f-1757752473436.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xcabd955322dfbf94c084929ac5e9eca3feb5556f-1757752473436.png"
+ ],
+ "name": "MicroStrategy (Ondo Tokenized)",
+ "symbol": "MSTRon",
+ "marketCap": "7417925.74044011110765801",
+ "price": "141.088235",
+ "priceChange24hPercent": "-",
+ "volume24h": "500.04111830128464",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "微策略",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--1:0xcabd955322dfbf94c084929ac5e9eca3feb5556f",
+ "kind": "stock",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x643c4e15d7d62ad0abec4a9bd4b001aa3ef52d66",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x643c4e15d7d62ad0abec4a9bd4b001aa3ef52d66-1731566700069.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x643c4e15d7d62ad0abec4a9bd4b001aa3ef52d66-1731566700069.png"
+ ],
+ "name": "Syrup Token",
+ "symbol": "SYRUP",
+ "marketCap": "273349478.378402015871013651",
+ "price": "0.23419532469120226004",
+ "priceChange24hPercent": "0.7",
+ "volume24h": "25201.62530712152641866",
+ "communityRecognized": true,
+ "key": "evm--1:0x643c4e15d7d62ad0abec4a9bd4b001aa3ef52d66",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x9c7beba8f6ef6643abd725e45a4e8387ef260649",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x9c7beba8f6ef6643abd725e45a4e8387ef260649-1721965702833.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x9c7beba8f6ef6643abd725e45a4e8387ef260649-1721965702833.png"
+ ],
+ "name": "Gravity",
+ "symbol": "G",
+ "marketCap": "29477204.382464561744880746",
+ "price": "0.00407554639103855569",
+ "priceChange24hPercent": "1.77",
+ "volume24h": "5997.164718",
+ "communityRecognized": true,
+ "key": "evm--1:0x9c7beba8f6ef6643abd725e45a4e8387ef260649",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0xa12cc123ba206d4031d1c7f6223d1c2ec249f4f3",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xa12cc123ba206d4031d1c7f6223d1c2ec249f4f3-1765173940271.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xa12cc123ba206d4031d1c7f6223d1c2ec249f4f3-1765173940271.png"
+ ],
+ "name": "Zama",
+ "symbol": "ZAMA",
+ "marketCap": "130340692.466254388020277987",
+ "price": "0.05225030584040281925",
+ "priceChange24hPercent": "-0.2",
+ "volume24h": "1520.45657896125",
+ "communityRecognized": true,
+ "key": "evm--1:0xa12cc123ba206d4031d1c7f6223d1c2ec249f4f3",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x8881562783028f5c1bcb985d2283d5e170d88888",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x8881562783028f5c1bcb985d2283d5e170d88888.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x8881562783028f5c1bcb985d2283d5e170d88888.png"
+ ],
+ "name": "Shuffle",
+ "symbol": "SHFL",
+ "marketCap": "144662098.779715619072842785",
+ "price": "0.30441294768927487944",
+ "priceChange24hPercent": "0.61",
+ "volume24h": "562.971514",
+ "communityRecognized": true,
+ "key": "evm--1:0x8881562783028f5c1bcb985d2283d5e170d88888",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0xfedc5f4a6c38211c1338aa411018dfaf26612c08",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xfedc5f4a6c38211c1338aa411018dfaf26612c08-1757751374641.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xfedc5f4a6c38211c1338aa411018dfaf26612c08-1757751374641.png"
+ ],
+ "name": "SPDR S&P 500 ETF (Ondo Tokenized)",
+ "symbol": "SPYon",
+ "marketCap": "40646758.370754167177623431",
+ "price": "776.144884509197874782",
+ "priceChange24hPercent": "-",
+ "volume24h": "1000.57543671602547",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "标普500 ETF",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--1:0xfedc5f4a6c38211c1338aa411018dfaf26612c08",
+ "kind": "stock",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0xb72e76ccf005313868db7b48070901a44629da98",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xb72e76ccf005313868db7b48070901a44629da98-1726286400579.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xb72e76ccf005313868db7b48070901a44629da98-1726286400579.png"
+ ],
+ "name": "SquidGrow",
+ "symbol": "SQGROW",
+ "marketCap": "4680586.237884865526974496",
+ "price": "0.00468058623788486553",
+ "priceChange24hPercent": "-1.79",
+ "volume24h": "981.9055505077056",
+ "communityRecognized": true,
+ "key": "evm--1:0xb72e76ccf005313868db7b48070901a44629da98",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x68b36248477277865c64dfc78884ef80577078f3",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x68b36248477277865c64dfc78884ef80577078f3.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x68b36248477277865c64dfc78884ef80577078f3.png"
+ ],
+ "name": "Everybody",
+ "symbol": "Hold",
+ "marketCap": "3055508.176890996770953605",
+ "price": "0.00010998667127957455",
+ "priceChange24hPercent": "-3.35",
+ "volume24h": "1458.672432592460175",
+ "communityRecognized": false,
+ "key": "evm--1:0x68b36248477277865c64dfc78884ef80577078f3",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x73e0c0d45e048d25fc26fa3159b0aa04bfa4db98",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x73e0c0d45e048d25fc26fa3159b0aa04bfa4db98-1730181600450.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x73e0c0d45e048d25fc26fa3159b0aa04bfa4db98-1730181600450.png"
+ ],
+ "name": "Kraken Wrapped Bitcoin",
+ "symbol": "kBTC",
+ "marketCap": "513558939.389691777520631919",
+ "price": "78896.89444515781472982523",
+ "priceChange24hPercent": "-0.06",
+ "volume24h": "11279.38169179293",
+ "communityRecognized": true,
+ "key": "evm--1:0x73e0c0d45e048d25fc26fa3159b0aa04bfa4db98",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0xc84782858b7bef5d25182dbac956a6aa463aefe5",
+ "logoUrl": "https://static.oklink.com/cdn/web3/currency/token/large/1-0xc84782858b7bef5d25182dbac956a6aa463aefe5-106/type=default_90_0?v=1788827070648",
+ "logoUrls": [
+ "https://static.oklink.com/cdn/web3/currency/token/large/1-0xc84782858b7bef5d25182dbac956a6aa463aefe5-106/type=default_90_0?v=1788827070648"
+ ],
+ "name": "PRDCTR",
+ "symbol": "PRD",
+ "marketCap": "75127991.272947607548276549",
+ "price": "0.00079082096076786955",
+ "priceChange24hPercent": "-1.96",
+ "volume24h": "2124.25625",
+ "communityRecognized": false,
+ "key": "evm--1:0xc84782858b7bef5d25182dbac956a6aa463aefe5",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x501ebf66d76a96d4fb26ccead42957653e16b8b8",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x501ebf66d76a96d4fb26ccead42957653e16b8b8-1778393097622.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x501ebf66d76a96d4fb26ccead42957653e16b8b8-1778393097622.png"
+ ],
+ "name": "evaUSDT",
+ "symbol": "evaUSDT",
+ "marketCap": "2965373.710763260806931586",
+ "price": "0.99837583686165209406",
+ "priceChange24hPercent": "0",
+ "volume24h": "563.5029573823",
+ "communityRecognized": false,
+ "key": "evm--1:0x501ebf66d76a96d4fb26ccead42957653e16b8b8",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x9fc65df3997073b8551ffd617154b5102facbb88",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x9fc65df3997073b8551ffd617154b5102facbb88-1760162469885.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x9fc65df3997073b8551ffd617154b5102facbb88-1760162469885.png"
+ ],
+ "name": "WrappedTXC",
+ "symbol": "wTXC",
+ "marketCap": "101021.681724845995893223",
+ "price": "0.20204336344969199179",
+ "priceChange24hPercent": "-3.25",
+ "volume24h": "934.753621",
+ "communityRecognized": false,
+ "key": "evm--1:0x9fc65df3997073b8551ffd617154b5102facbb88",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ }
+ ],
+ "trending|evm--1|1h|all": [
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x8602b2fd8d105a56d3152e936e66b1d414142148",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/46be4fa022c8cf4f26df79bb27838188b1097a22d2d5668c723c6177a9bad8e6",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/46be4fa022c8cf4f26df79bb27838188b1097a22d2d5668c723c6177a9bad8e6"
+ ],
+ "name": "Artificial Pepe",
+ "symbol": "AP",
+ "marketCap": "1104363.861105462063331123",
+ "price": "0.00110436386110546206",
+ "priceChange24hPercent": "-12.39",
+ "volume24h": "12448.86978211158126",
+ "communityRecognized": false,
+ "key": "evm--1:0x8602b2fd8d105a56d3152e936e66b1d414142148",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x514910771af9ca656af840dff83e8264ecf986ca",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x514910771af9ca656af840dff83e8264ecf986ca.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x514910771af9ca656af840dff83e8264ecf986ca.png"
+ ],
+ "name": "ChainLink Token",
+ "symbol": "LINK",
+ "marketCap": "12595838798.640615720251183561",
+ "price": "12.59583966012281479998",
+ "priceChange24hPercent": "-0.22",
+ "volume24h": "102948.224904570156541189",
+ "communityRecognized": true,
+ "key": "evm--1:0x514910771af9ca656af840dff83e8264ecf986ca",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x4d224452801aced8b2f0aebe155379bb5d594381",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x4d224452801aced8b2f0aebe155379bb5d594381.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x4d224452801aced8b2f0aebe155379bb5d594381.png"
+ ],
+ "name": "ApeCoin",
+ "symbol": "APE",
+ "marketCap": "145538261.312580194925814975",
+ "price": "0.14554115661043842365",
+ "priceChange24hPercent": "0.41",
+ "volume24h": "24578.4024559569069352",
+ "communityRecognized": true,
+ "key": "evm--1:0x4d224452801aced8b2f0aebe155379bb5d594381",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x643c4e15d7d62ad0abec4a9bd4b001aa3ef52d66",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x643c4e15d7d62ad0abec4a9bd4b001aa3ef52d66-1731566700069.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x643c4e15d7d62ad0abec4a9bd4b001aa3ef52d66-1731566700069.png"
+ ],
+ "name": "Syrup Token",
+ "symbol": "SYRUP",
+ "marketCap": "273349478.378402015871013651",
+ "price": "0.23419532469120226004",
+ "priceChange24hPercent": "7.06",
+ "volume24h": "176559.33406039351692822",
+ "communityRecognized": true,
+ "key": "evm--1:0x643c4e15d7d62ad0abec4a9bd4b001aa3ef52d66",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0xc9eef266834730340a55b6cc24621b31baf55581",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xc9eef266834730340a55b6cc24621b31baf55581-1781279504821.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xc9eef266834730340a55b6cc24621b31baf55581-1781279504821.png"
+ ],
+ "name": "SpaceX (Ondo Tokenized)",
+ "symbol": "SPCXon",
+ "marketCap": "6617015.6851552296714885",
+ "price": "149.92005",
+ "priceChange24hPercent": "-0.78",
+ "volume24h": "4184.34649117248",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "SpaceX",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--1:0xc9eef266834730340a55b6cc24621b31baf55581",
+ "kind": "stock",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x5afe3855358e112b5647b952709e6165e1c1eeee",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x5afe3855358e112b5647b952709e6165e1c1eeee.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x5afe3855358e112b5647b952709e6165e1c1eeee.png"
+ ],
+ "name": "Safe Token",
+ "symbol": "SAFE",
+ "marketCap": "81163050.466233622609361953",
+ "price": "0.10468500797680307475",
+ "priceChange24hPercent": "5.32",
+ "volume24h": "33297.6395304191454023",
+ "communityRecognized": true,
+ "key": "evm--1:0x5afe3855358e112b5647b952709e6165e1c1eeee",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0xa1fa7777974312f7d801a8880714a218f76233f8",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xa1fa7777974312f7d801a8880714a218f76233f8-1788588393995.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xa1fa7777974312f7d801a8880714a218f76233f8-1788588393995.png"
+ ],
+ "name": "USDx",
+ "symbol": "USDx",
+ "marketCap": "66392687.266999613826329497",
+ "price": "1.00007427751974395262",
+ "priceChange24hPercent": "0",
+ "volume24h": "79181.95168146207",
+ "communityRecognized": false,
+ "key": "evm--1:0xa1fa7777974312f7d801a8880714a218f76233f8",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x2d1f7226bd1f780af6b9a49dcc0ae00e8df4bdee",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x2d1f7226bd1f780af6b9a49dcc0ae00e8df4bdee-1757752431638.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x2d1f7226bd1f780af6b9a49dcc0ae00e8df4bdee-1757752431638.png"
+ ],
+ "name": "NVIDIA (Ondo Tokenized)",
+ "symbol": "NVDAon",
+ "marketCap": "18182781.849522944090312949",
+ "price": "233.018432579261589288",
+ "priceChange24hPercent": "0.31",
+ "volume24h": "30484.535607569665277",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "英伟达",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--1:0x2d1f7226bd1f780af6b9a49dcc0ae00e8df4bdee",
+ "kind": "stock",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0xe172e9b6cfbeeb5593bdce3f077356fdb33af904",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xe172e9b6cfbeeb5593bdce3f077356fdb33af904-1786601267038.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xe172e9b6cfbeeb5593bdce3f077356fdb33af904-1786601267038.png"
+ ],
+ "name": "Interfold",
+ "symbol": "FOLD",
+ "marketCap": "18062751.219704692925179986",
+ "price": "0.05553989254753694462",
+ "priceChange24hPercent": "0.14",
+ "volume24h": "17789.7338973739193",
+ "communityRecognized": false,
+ "key": "evm--1:0xe172e9b6cfbeeb5593bdce3f077356fdb33af904",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x44b28991b167582f18ba0259e0173176ca125505",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x44b28991b167582f18ba0259e0173176ca125505-1776492205735.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x44b28991b167582f18ba0259e0173176ca125505-1776492205735.png"
+ ],
+ "name": "Unipeg",
+ "symbol": "uPEG",
+ "marketCap": "1679504.65137640140809086",
+ "price": "167.97818153759384379331",
+ "priceChange24hPercent": "-4.16",
+ "volume24h": "13946.55118933258332797",
+ "communityRecognized": false,
+ "key": "evm--1:0x44b28991b167582f18ba0259e0173176ca125505",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x118b70df4f06fa5678e7d543e6066e028c8ea0c0",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x118b70df4f06fa5678e7d543e6066e028c8ea0c0-1787292766126.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x118b70df4f06fa5678e7d543e6066e028c8ea0c0-1787292766126.png"
+ ],
+ "name": "Kite",
+ "symbol": "KITE",
+ "marketCap": "1166460722.191782736070208",
+ "price": "0.1195267488",
+ "priceChange24hPercent": "-0.7",
+ "volume24h": "2277.862133",
+ "communityRecognized": true,
+ "key": "evm--1:0x118b70df4f06fa5678e7d543e6066e028c8ea0c0",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x1f9840a85d5af5bf1d1762f925bdaddc4201f984",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x1f9840a85d5af5bf1d1762f925bdaddc4201f984.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x1f9840a85d5af5bf1d1762f925bdaddc4201f984.png"
+ ],
+ "name": "Uniswap",
+ "symbol": "UNI",
+ "marketCap": "6982667914.809130319494285264",
+ "price": "6.98270981484155235271",
+ "priceChange24hPercent": "-0.26",
+ "volume24h": "185907.109218236960733896",
+ "communityRecognized": true,
+ "key": "evm--1:0x1f9840a85d5af5bf1d1762f925bdaddc4201f984",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0xd34a99bc0f67ae1bbd63c660e6d0b0dd03e263b7",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xd34a99bc0f67ae1bbd63c660e6d0b0dd03e263b7-1770962526134.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xd34a99bc0f67ae1bbd63c660e6d0b0dd03e263b7-1770962526134.png"
+ ],
+ "name": "Identity.md",
+ "symbol": "IMD",
+ "marketCap": "10216589.496199146544369432",
+ "price": "3.054251265524185482",
+ "priceChange24hPercent": "1.37",
+ "volume24h": "29103.843018271598826292",
+ "communityRecognized": false,
+ "key": "evm--1:0xd34a99bc0f67ae1bbd63c660e6d0b0dd03e263b7",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x0d8775f648430679a709e98d2b0cb6250d2887ef",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x0d8775f648430679a709e98d2b0cb6250d2887ef.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x0d8775f648430679a709e98d2b0cb6250d2887ef.png"
+ ],
+ "name": "BAT",
+ "symbol": "BAT",
+ "marketCap": "113885196.822180145897867722",
+ "price": "0.07595049476386025008",
+ "priceChange24hPercent": "1.27",
+ "volume24h": "9017.10924100640508401",
+ "communityRecognized": true,
+ "key": "evm--1:0x0d8775f648430679a709e98d2b0cb6250d2887ef",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0xa0b73e1ff0b80914ab6fe0444e65848c4c34450b",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xa0b73e1ff0b80914ab6fe0444e65848c4c34450b.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xa0b73e1ff0b80914ab6fe0444e65848c4c34450b.png"
+ ],
+ "name": "Cronos",
+ "symbol": "CRO",
+ "marketCap": "5736203223.882101211438214997",
+ "price": "0.05736203223939463244",
+ "priceChange24hPercent": "1.34",
+ "volume24h": "3175.6756495332066416",
+ "communityRecognized": true,
+ "key": "evm--1:0xa0b73e1ff0b80914ab6fe0444e65848c4c34450b",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x9ff58067bd8d239000010c154c6983a325df138e",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x9ff58067bd8d239000010c154c6983a325df138e.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x9ff58067bd8d239000010c154c6983a325df138e.png"
+ ],
+ "name": "Propchain Token",
+ "symbol": "PROPC",
+ "marketCap": "4337698.488242673103203443",
+ "price": "0.10118003522587297",
+ "priceChange24hPercent": "3.51",
+ "volume24h": "13371.53972430814",
+ "communityRecognized": true,
+ "key": "evm--1:0x9ff58067bd8d239000010c154c6983a325df138e",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0xf6b1117ec07684d3958cad8beb1b302bfd21103f",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xf6b1117ec07684d3958cad8beb1b302bfd21103f-1757751861947.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xf6b1117ec07684d3958cad8beb1b302bfd21103f-1757751861947.png"
+ ],
+ "name": "Tesla (Ondo Tokenized)",
+ "symbol": "TSLAon",
+ "marketCap": "6195761.736132678944775512",
+ "price": "356.316154",
+ "priceChange24hPercent": "-1.35",
+ "volume24h": "579.0949066803863591",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "特斯拉",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--1:0xf6b1117ec07684d3958cad8beb1b302bfd21103f",
+ "kind": "stock",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x3c3a81e81dc49a522a592e7622a7e711c06bf354",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x3c3a81e81dc49a522a592e7622a7e711c06bf354.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x3c3a81e81dc49a522a592e7622a7e711c06bf354.png"
+ ],
+ "name": "Mantle",
+ "symbol": "MNT",
+ "marketCap": "3879622624.428861321586206571",
+ "price": "0.62380206035725838526",
+ "priceChange24hPercent": "0.79",
+ "volume24h": "14988.922567609588343",
+ "communityRecognized": true,
+ "key": "evm--1:0x3c3a81e81dc49a522a592e7622a7e711c06bf354",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x829f4b62eebe12af653b4dd4ffc480966f7d7f09",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x829f4b62eebe12af653b4dd4ffc480966f7d7f09-1777874423255.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x829f4b62eebe12af653b4dd4ffc480966f7d7f09-1777874423255.png"
+ ],
+ "name": "sato",
+ "symbol": "sato",
+ "marketCap": "2511983.201292366762732794",
+ "price": "0.17901016890236116579",
+ "priceChange24hPercent": "0.04",
+ "volume24h": "10886.747758801849034",
+ "communityRecognized": true,
+ "key": "evm--1:0x829f4b62eebe12af653b4dd4ffc480966f7d7f09",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x45804880de22913dafe09f4980848ece6ecbaf78",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x45804880de22913dafe09f4980848ece6ecbaf78.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x45804880de22913dafe09f4980848ece6ecbaf78.png"
+ ],
+ "name": "PAX Gold",
+ "symbol": "PAXG",
+ "marketCap": "1909008770.773613853448246035",
+ "price": "4439.69364949688523130396",
+ "priceChange24hPercent": "0.3",
+ "volume24h": "69011.037316428314802",
+ "communityRecognized": true,
+ "key": "evm--1:0x45804880de22913dafe09f4980848ece6ecbaf78",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x808507121b80c02388fad14726482e061b8da827",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x808507121b80c02388fad14726482e061b8da827.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x808507121b80c02388fad14726482e061b8da827.png"
+ ],
+ "name": "Pendle",
+ "symbol": "PENDLE",
+ "marketCap": "621081372.659827901108210996",
+ "price": "2.20611303111111111322",
+ "priceChange24hPercent": "-0.26",
+ "volume24h": "10719.041352579276872914",
+ "communityRecognized": true,
+ "key": "evm--1:0x808507121b80c02388fad14726482e061b8da827",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0xc00e94cb662c3520282e6f5717214004a7f26888",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xc00e94cb662c3520282e6f5717214004a7f26888.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xc00e94cb662c3520282e6f5717214004a7f26888.png"
+ ],
+ "name": "Compound",
+ "symbol": "COMP",
+ "marketCap": "211636333.466615330952598886",
+ "price": "21.16363335436814378722",
+ "priceChange24hPercent": "0.47",
+ "volume24h": "561.31297924987934",
+ "communityRecognized": true,
+ "key": "evm--1:0xc00e94cb662c3520282e6f5717214004a7f26888",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x01a8b61e7b03891a736b5df865e0ef9c511850ad",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x01a8b61e7b03891a736b5df865e0ef9c511850ad-1773727504923.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x01a8b61e7b03891a736b5df865e0ef9c511850ad-1773727504923.png"
+ ],
+ "name": "syBTC",
+ "symbol": "syBTC",
+ "marketCap": "509161.347738062056423757",
+ "price": "78827.53326949563588574375",
+ "priceChange24hPercent": "-0.42",
+ "volume24h": "2462.7203351015905",
+ "communityRecognized": false,
+ "key": "evm--1:0x01a8b61e7b03891a736b5df865e0ef9c511850ad",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x4a220e6096b25eadb88358cb44068a3248254675",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x4a220e6096b25eadb88358cb44068a3248254675.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x4a220e6096b25eadb88358cb44068a3248254675.png"
+ ],
+ "name": "Quant",
+ "symbol": "QNT",
+ "marketCap": "797969469.930940570527114438",
+ "price": "66.09681001368045678844",
+ "priceChange24hPercent": "0.15",
+ "volume24h": "794.75072799943376505",
+ "communityRecognized": true,
+ "key": "evm--1:0x4a220e6096b25eadb88358cb44068a3248254675",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x0bc529c00c6401aef6d220be8c6ea1667f6ad93e",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x0bc529c00c6401aef6d220be8c6ea1667f6ad93e.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x0bc529c00c6401aef6d220be8c6ea1667f6ad93e.png"
+ ],
+ "name": "yearn.finance",
+ "symbol": "YFI",
+ "marketCap": "83040784.511229895484876496",
+ "price": "2264.78984648529688225813",
+ "priceChange24hPercent": "0.41",
+ "volume24h": "1503.6867293268285176",
+ "communityRecognized": true,
+ "key": "evm--1:0x0bc529c00c6401aef6d220be8c6ea1667f6ad93e",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0xa12cc123ba206d4031d1c7f6223d1c2ec249f4f3",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xa12cc123ba206d4031d1c7f6223d1c2ec249f4f3-1765173940271.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xa12cc123ba206d4031d1c7f6223d1c2ec249f4f3-1765173940271.png"
+ ],
+ "name": "Zama",
+ "symbol": "ZAMA",
+ "marketCap": "130340692.466254388020277987",
+ "price": "0.05225030584040281925",
+ "priceChange24hPercent": "0.29",
+ "volume24h": "13398.32270602925",
+ "communityRecognized": true,
+ "key": "evm--1:0xa12cc123ba206d4031d1c7f6223d1c2ec249f4f3",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x8de39b057cc6522230ab19c0205080a8663331ef",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x8de39b057cc6522230ab19c0205080a8663331ef-1770271422305.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x8de39b057cc6522230ab19c0205080a8663331ef-1770271422305.png"
+ ],
+ "name": "wojak",
+ "symbol": "wojak",
+ "marketCap": "15378843.619726731166986711",
+ "price": "0.00000005027187905948",
+ "priceChange24hPercent": "0.98",
+ "volume24h": "3967.29397597655599957",
+ "communityRecognized": true,
+ "key": "evm--1:0x8de39b057cc6522230ab19c0205080a8663331ef",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0xb197e02499e6502733c6bce2eb39013c39a03147",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xb197e02499e6502733c6bce2eb39013c39a03147-1776319310050.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xb197e02499e6502733c6bce2eb39013c39a03147-1776319310050.png"
+ ],
+ "name": "Wrapped PROS",
+ "symbol": "PROS",
+ "marketCap": "317027.363943091846581165",
+ "price": "0.43860362821739935865",
+ "priceChange24hPercent": "-1.32",
+ "volume24h": "781.132851",
+ "communityRecognized": false,
+ "key": "evm--1:0xb197e02499e6502733c6bce2eb39013c39a03147",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x163f8c2467924be0ae7b5347228cabf260318753",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x163f8c2467924be0ae7b5347228cabf260318753.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x163f8c2467924be0ae7b5347228cabf260318753.png"
+ ],
+ "name": "Worldcoin",
+ "symbol": "WLD",
+ "marketCap": "4740302961.667240564166855584",
+ "price": "0.47403029616672405642",
+ "priceChange24hPercent": "-1.25",
+ "volume24h": "2195.544210417557903198",
+ "communityRecognized": true,
+ "key": "evm--1:0x163f8c2467924be0ae7b5347228cabf260318753",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0xd533a949740bb3306d119cc777fa900ba034cd52",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xd533a949740bb3306d119cc777fa900ba034cd52.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xd533a949740bb3306d119cc777fa900ba034cd52.png"
+ ],
+ "name": "Curve DAO Token",
+ "symbol": "CRV",
+ "marketCap": "876369329.769418025858573012",
+ "price": "0.36267889083621288676",
+ "priceChange24hPercent": "-0.21",
+ "volume24h": "26030.909825396600018522",
+ "communityRecognized": true,
+ "key": "evm--1:0xd533a949740bb3306d119cc777fa900ba034cd52",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x232ce3bd40fcd6f80f3d55a522d03f25df784ee2",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x232ce3bd40fcd6f80f3d55a522d03f25df784ee2-1783322585018.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x232ce3bd40fcd6f80f3d55a522d03f25df784ee2-1783322585018.png"
+ ],
+ "name": "Lighter",
+ "symbol": "LIT",
+ "marketCap": "1160662782.276054865654467756",
+ "price": "4.64265112910421946262",
+ "priceChange24hPercent": "0.04",
+ "volume24h": "38922.9294090774476216",
+ "communityRecognized": true,
+ "key": "evm--1:0x232ce3bd40fcd6f80f3d55a522d03f25df784ee2",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x1789e0043623282d5dcc7f213d703c6d8bafbb04",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x1789e0043623282d5dcc7f213d703c6d8bafbb04-1757750623793.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x1789e0043623282d5dcc7f213d703c6d8bafbb04-1757750623793.png"
+ ],
+ "name": "Linea",
+ "symbol": "LINEA",
+ "marketCap": "62411810.832395445900663721",
+ "price": "0.00277016573143066048",
+ "priceChange24hPercent": "2.84",
+ "volume24h": "1150.50951662515529539",
+ "communityRecognized": true,
+ "key": "evm--1:0x1789e0043623282d5dcc7f213d703c6d8bafbb04",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x85f17cf997934a597031b2e18a9ab6ebd4b9f6a4",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x85f17cf997934a597031b2e18a9ab6ebd4b9f6a4.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x85f17cf997934a597031b2e18a9ab6ebd4b9f6a4.png"
+ ],
+ "name": "NEAR",
+ "symbol": "NEAR",
+ "marketCap": "7622978.845504075352832797",
+ "price": "2.26095015223097112861",
+ "priceChange24hPercent": "-1.88",
+ "volume24h": "3137.88414258198464",
+ "communityRecognized": true,
+ "key": "evm--1:0x85f17cf997934a597031b2e18a9ab6ebd4b9f6a4",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x4e3fbd56cd56c3e72c1403e103b45db9da5b9d2b",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x4e3fbd56cd56c3e72c1403e103b45db9da5b9d2b.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x4e3fbd56cd56c3e72c1403e103b45db9da5b9d2b.png"
+ ],
+ "name": "Convex Token",
+ "symbol": "CVX",
+ "marketCap": "223296148.305160200678174418",
+ "price": "2.23319982805666313798",
+ "priceChange24hPercent": "0.15",
+ "volume24h": "7765.718399060143693787",
+ "communityRecognized": true,
+ "key": "evm--1:0x4e3fbd56cd56c3e72c1403e103b45db9da5b9d2b",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0xda5e1988097297dcdc1f90d4dfe7909e847cbef6",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xda5e1988097297dcdc1f90d4dfe7909e847cbef6-1756694380364.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xda5e1988097297dcdc1f90d4dfe7909e847cbef6-1756694380364.png"
+ ],
+ "name": "World Liberty Financial",
+ "symbol": "WLFI",
+ "marketCap": "1791219453.864127823673972859",
+ "price": "0.05636829013300601131",
+ "priceChange24hPercent": "0.65",
+ "volume24h": "1347.35269315610697",
+ "communityRecognized": true,
+ "key": "evm--1:0xda5e1988097297dcdc1f90d4dfe7909e847cbef6",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x66761fa41377003622aee3c7675fc7b5c1c2fac5",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x66761fa41377003622aee3c7675fc7b5c1c2fac5.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x66761fa41377003622aee3c7675fc7b5c1c2fac5.png"
+ ],
+ "name": "Clearpool",
+ "symbol": "CPOOL",
+ "marketCap": "21189064.22374286427785127",
+ "price": "0.02118906422374286428",
+ "priceChange24hPercent": "1.16",
+ "volume24h": "2221.247040902379345",
+ "communityRecognized": true,
+ "key": "evm--1:0x66761fa41377003622aee3c7675fc7b5c1c2fac5",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x7fc66500c84a76ad7e9c93437bfc5ac33e2ddae9",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x7fc66500c84a76ad7e9c93437bfc5ac33e2ddae9-1768204923952.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x7fc66500c84a76ad7e9c93437bfc5ac33e2ddae9-1768204923952.png"
+ ],
+ "name": "Aave",
+ "symbol": "AAVE",
+ "marketCap": "2097478577.173776740252401922",
+ "price": "131.09241107415034631128",
+ "priceChange24hPercent": "-0.09",
+ "volume24h": "64030.4877108470816569",
+ "communityRecognized": true,
+ "key": "evm--1:0x7fc66500c84a76ad7e9c93437bfc5ac33e2ddae9",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0xf280b16ef293d8e534e370794ef26bf312694126",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xf280b16ef293d8e534e370794ef26bf312694126-1727226900185.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xf280b16ef293d8e534e370794ef26bf312694126-1727226900185.png"
+ ],
+ "name": "Asteroid Shiba",
+ "symbol": "ASTEROID",
+ "marketCap": "7417961.835628052508944778",
+ "price": "0.00001763284564793091",
+ "priceChange24hPercent": "-2.32",
+ "volume24h": "24212.81313949606984092",
+ "communityRecognized": true,
+ "key": "evm--1:0xf280b16ef293d8e534e370794ef26bf312694126",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x767fe9edc9e0df98e07454847909b5e959d7ca0e",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x767fe9edc9e0df98e07454847909b5e959d7ca0e.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x767fe9edc9e0df98e07454847909b5e959d7ca0e.png"
+ ],
+ "name": "Illuvium",
+ "symbol": "ILV",
+ "marketCap": "24388265.414656277661768815",
+ "price": "3.31967901730497027982",
+ "priceChange24hPercent": "1.04",
+ "volume24h": "2231.2916536195173027",
+ "communityRecognized": true,
+ "key": "evm--1:0x767fe9edc9e0df98e07454847909b5e959d7ca0e",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0xaea46a60368a7bd060eec7df8cba43b7ef41ad85",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xaea46a60368a7bd060eec7df8cba43b7ef41ad85.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xaea46a60368a7bd060eec7df8cba43b7ef41ad85.png"
+ ],
+ "name": "Fetch",
+ "symbol": "FET",
+ "marketCap": "500674501.700723466328696789",
+ "price": "0.18445231067741700647",
+ "priceChange24hPercent": "-1.95",
+ "volume24h": "1603.22779026303541262",
+ "communityRecognized": true,
+ "key": "evm--1:0xaea46a60368a7bd060eec7df8cba43b7ef41ad85",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0xfaba6f8e4a5e8ab82f62fe7c39859fa577269be3",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xfaba6f8e4a5e8ab82f62fe7c39859fa577269be3.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xfaba6f8e4a5e8ab82f62fe7c39859fa577269be3.png"
+ ],
+ "name": "Ondo",
+ "symbol": "ONDO",
+ "marketCap": "1845634866.490616603177547368",
+ "price": "0.37903256120586394904",
+ "priceChange24hPercent": "-0.19",
+ "volume24h": "10453.265751051457802452",
+ "communityRecognized": true,
+ "key": "evm--1:0xfaba6f8e4a5e8ab82f62fe7c39859fa577269be3",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x69af81e73a73b40adf4f3d4223cd9b1ece623074",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x69af81e73a73b40adf4f3d4223cd9b1ece623074.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x69af81e73a73b40adf4f3d4223cd9b1ece623074.png"
+ ],
+ "name": "Mask Network",
+ "symbol": "MASK",
+ "marketCap": "47330858.823747443860373263",
+ "price": "0.4733085882374744386",
+ "priceChange24hPercent": "0.93",
+ "volume24h": "644.37576896420873839",
+ "communityRecognized": true,
+ "key": "evm--1:0x69af81e73a73b40adf4f3d4223cd9b1ece623074",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x8b1484d57abbe239bb280661377363b03c89caea",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x8b1484d57abbe239bb280661377363b03c89caea-1765433140444.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x8b1484d57abbe239bb280661377363b03c89caea-1765433140444.png"
+ ],
+ "name": "ADI",
+ "symbol": "ADI",
+ "marketCap": "77207866.811593967609057552",
+ "price": "8.23071869147612736618",
+ "priceChange24hPercent": "-0.1",
+ "volume24h": "28680.3702293678686788",
+ "communityRecognized": true,
+ "key": "evm--1:0x8b1484d57abbe239bb280661377363b03c89caea",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x32708538a107253b51a735a724330a23106ca4ca",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x32708538a107253b51a735a724330a23106ca4ca-1781071464068.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x32708538a107253b51a735a724330a23106ca4ca-1781071464068.png"
+ ],
+ "name": "01",
+ "symbol": "01",
+ "marketCap": "7591728.1926915093572302",
+ "price": "0.38303103971521914096",
+ "priceChange24hPercent": "-3.18",
+ "volume24h": "17857.35489005363626",
+ "communityRecognized": false,
+ "key": "evm--1:0x32708538a107253b51a735a724330a23106ca4ca",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0xec53bf9167f50cdeb3ae105f56099aaab9061f83",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xec53bf9167f50cdeb3ae105f56099aaab9061f83-1727837100115.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xec53bf9167f50cdeb3ae105f56099aaab9061f83-1727837100115.png"
+ ],
+ "name": "Eigen",
+ "symbol": "EIGEN",
+ "marketCap": "200518858.285838481625806543",
+ "price": "0.21781991470018400732",
+ "priceChange24hPercent": "-1.17",
+ "volume24h": "563.461030567131535",
+ "communityRecognized": true,
+ "key": "evm--1:0xec53bf9167f50cdeb3ae105f56099aaab9061f83",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0xdd3b11ef34cd511a2da159034a05fcb94d806686",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xdd3b11ef34cd511a2da159034a05fcb94d806686-1732332192481.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xdd3b11ef34cd511a2da159034a05fcb94d806686-1732332192481.png"
+ ],
+ "name": "Rekt",
+ "symbol": "REKT",
+ "marketCap": "35940618.301550256984789255",
+ "price": "0.0000000854325472475",
+ "priceChange24hPercent": "0.23",
+ "volume24h": "852.8404420598695406",
+ "communityRecognized": true,
+ "key": "evm--1:0xdd3b11ef34cd511a2da159034a05fcb94d806686",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x152649ea73beab28c5b49b26eb48f7ead6d4c898",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x152649ea73beab28c5b49b26eb48f7ead6d4c898-1722500864906.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x152649ea73beab28c5b49b26eb48f7ead6d4c898-1722500864906.png"
+ ],
+ "name": "PancakeSwap Token",
+ "symbol": "Cake",
+ "marketCap": "12131398.244215974526374809",
+ "price": "2.22150660119196165068",
+ "priceChange24hPercent": "-0.83",
+ "volume24h": "3131.82858803913658",
+ "communityRecognized": true,
+ "key": "evm--1:0x152649ea73beab28c5b49b26eb48f7ead6d4c898",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x44ff8620b8ca30902395a7bd3f2407e1a091bf73",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x44ff8620b8ca30902395a7bd3f2407e1a091bf73.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x44ff8620b8ca30902395a7bd3f2407e1a091bf73.png"
+ ],
+ "name": "Virtual Protocol",
+ "symbol": "VIRTUAL",
+ "marketCap": "726561123.715143546118405786",
+ "price": "0.72656112371514354612",
+ "priceChange24hPercent": "-0.53",
+ "volume24h": "3212.11642616121394",
+ "communityRecognized": true,
+ "key": "evm--1:0x44ff8620b8ca30902395a7bd3f2407e1a091bf73",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x28561b8a2360f463011c16b6cc0b0cbef8dbbcad",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x28561b8a2360f463011c16b6cc0b0cbef8dbbcad-1727318700166.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x28561b8a2360f463011c16b6cc0b0cbef8dbbcad-1727318700166.png"
+ ],
+ "name": "MOO DENG",
+ "symbol": "MOODENG",
+ "marketCap": "1651353.033391182551390409",
+ "price": "0.00000404239975992842",
+ "priceChange24hPercent": "-1.13",
+ "volume24h": "1797.754872823506523",
+ "communityRecognized": true,
+ "key": "evm--1:0x28561b8a2360f463011c16b6cc0b0cbef8dbbcad",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0xb131f4a55907b10d1f0a50d8ab8fa09ec342cd74",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xb131f4a55907b10d1f0a50d8ab8fa09ec342cd74.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xb131f4a55907b10d1f0a50d8ab8fa09ec342cd74.png"
+ ],
+ "name": "Memecoin",
+ "symbol": "MEME",
+ "marketCap": "35527931.726438188226784692",
+ "price": "0.00055105681722043497",
+ "priceChange24hPercent": "-1.14",
+ "volume24h": "1565.86529366076550734",
+ "communityRecognized": true,
+ "key": "evm--1:0xb131f4a55907b10d1f0a50d8ab8fa09ec342cd74",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0xe76c5b78f93909d34404e9eb4c1f19e7582a5de1",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xe76c5b78f93909d34404e9eb4c1f19e7582a5de1-1781762787714.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xe76c5b78f93909d34404e9eb4c1f19e7582a5de1-1781762787714.png"
+ ],
+ "name": "Humanity",
+ "symbol": "H",
+ "marketCap": "762388797.168415827831652156",
+ "price": "0.07623887971684158278",
+ "priceChange24hPercent": "0",
+ "volume24h": "1183.29636056779",
+ "communityRecognized": true,
+ "key": "evm--1:0xe76c5b78f93909d34404e9eb4c1f19e7582a5de1",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x4691937a7508860f876c9c0a2a617e7d9e945d4b",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x4691937a7508860f876c9c0a2a617e7d9e945d4b.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x4691937a7508860f876c9c0a2a617e7d9e945d4b.png"
+ ],
+ "name": "Wootrade Network",
+ "symbol": "WOO",
+ "marketCap": "21997289.356453419960463444",
+ "price": "0.01164583190173984521",
+ "priceChange24hPercent": "1.04",
+ "volume24h": "835.869165703216935",
+ "communityRecognized": true,
+ "key": "evm--1:0x4691937a7508860f876c9c0a2a617e7d9e945d4b",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x759f8b83db57033aed95545694f6ada480b6e987",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x759f8b83db57033aed95545694f6ada480b6e987-1780034717145.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x759f8b83db57033aed95545694f6ada480b6e987-1780034717145.png"
+ ],
+ "name": "Dogeus Maximus",
+ "symbol": "DOGEUS",
+ "marketCap": "206682.064568781002170521",
+ "price": "0.000206682064568781",
+ "priceChange24hPercent": "1.56",
+ "volume24h": "802.3419130609448522",
+ "communityRecognized": false,
+ "key": "evm--1:0x759f8b83db57033aed95545694f6ada480b6e987",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0xe53ec727dbdeb9e2d5456c3be40cff031ab40a55",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xe53ec727dbdeb9e2d5456c3be40cff031ab40a55.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xe53ec727dbdeb9e2d5456c3be40cff031ab40a55.png"
+ ],
+ "name": "SuperFarm",
+ "symbol": "SUPER",
+ "marketCap": "121150259.345892956767401585",
+ "price": "0.12115049226777985158",
+ "priceChange24hPercent": "0.71",
+ "volume24h": "6614.49032762899497",
+ "communityRecognized": true,
+ "key": "evm--1:0xe53ec727dbdeb9e2d5456c3be40cff031ab40a55",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x6b3595068778dd592e39a122f4f5a5cf09c90fe2",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x6b3595068778dd592e39a122f4f5a5cf09c90fe2.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x6b3595068778dd592e39a122f4f5a5cf09c90fe2.png"
+ ],
+ "name": "SushiToken",
+ "symbol": "SUSHI",
+ "marketCap": "68988258.86198907047886201",
+ "price": "0.23665443322790596392",
+ "priceChange24hPercent": "-0.1",
+ "volume24h": "2240.008899292396796",
+ "communityRecognized": true,
+ "key": "evm--1:0x6b3595068778dd592e39a122f4f5a5cf09c90fe2",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x58d97b57bb95320f9a05dc918aef65434969c2b2",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x58d97b57bb95320f9a05dc918aef65434969c2b2-1732155300090.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x58d97b57bb95320f9a05dc918aef65434969c2b2-1732155300090.png"
+ ],
+ "name": "Morpho Token",
+ "symbol": "MORPHO",
+ "marketCap": "1689975371.571344596591133167",
+ "price": "2.45376816154570072525",
+ "priceChange24hPercent": "0.34",
+ "volume24h": "6731.616842534810247",
+ "communityRecognized": true,
+ "key": "evm--1:0x58d97b57bb95320f9a05dc918aef65434969c2b2",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x4507cef57c46789ef8d1a19ea45f4216bae2b528",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x4507cef57c46789ef8d1a19ea45f4216bae2b528-1754549170998.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x4507cef57c46789ef8d1a19ea45f4216bae2b528-1754549170998.png"
+ ],
+ "name": "TokenFi",
+ "symbol": "TOKEN",
+ "marketCap": "10837441.055623667327551628",
+ "price": "0.00216748821112473347",
+ "priceChange24hPercent": "-0.55",
+ "volume24h": "740.282876862385336",
+ "communityRecognized": true,
+ "key": "evm--1:0x4507cef57c46789ef8d1a19ea45f4216bae2b528",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x3632dea96a953c11dac2f00b4a05a32cd1063fae",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x3632dea96a953c11dac2f00b4a05a32cd1063fae-1757752464109.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x3632dea96a953c11dac2f00b4a05a32cd1063fae-1757752464109.png"
+ ],
+ "name": "Circle Internet Group (Ondo Tokenized)",
+ "symbol": "CRCLon",
+ "marketCap": "15687232.40004324195637448",
+ "price": "101.653333",
+ "priceChange24hPercent": "-",
+ "volume24h": "14204.1119749037875",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "Circle Internet Group",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--1:0x3632dea96a953c11dac2f00b4a05a32cd1063fae",
+ "kind": "stock",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0xb528edbef013aff855ac3c50b381f253af13b997",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xb528edbef013aff855ac3c50b381f253af13b997.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xb528edbef013aff855ac3c50b381f253af13b997.png"
+ ],
+ "name": "Aevo",
+ "symbol": "AEVO",
+ "marketCap": "21046597.406811732837059353",
+ "price": "0.02385629309534059658",
+ "priceChange24hPercent": "1.27",
+ "volume24h": "2395.278072",
+ "communityRecognized": true,
+ "key": "evm--1:0xb528edbef013aff855ac3c50b381f253af13b997",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0xc20059e0317de91738d13af027dfc4a50781b066",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xc20059e0317de91738d13af027dfc4a50781b066-1757666467162.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xc20059e0317de91738d13af027dfc4a50781b066-1757666467162.png"
+ ],
+ "name": "Spark",
+ "symbol": "SPK",
+ "marketCap": "68452227.498357073041652443",
+ "price": "0.02086256511743863588",
+ "priceChange24hPercent": "0.27",
+ "volume24h": "1599.25109446229043",
+ "communityRecognized": true,
+ "key": "evm--1:0xc20059e0317de91738d13af027dfc4a50781b066",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x0001a500a6b18995b03f44bb040a5ffc28e45cb0",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x0001a500a6b18995b03f44bb040a5ffc28e45cb0.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x0001a500a6b18995b03f44bb040a5ffc28e45cb0.png"
+ ],
+ "name": "Autonolas",
+ "symbol": "OLAS",
+ "marketCap": "14889150.2750985578978088",
+ "price": "0.02815627108303329648",
+ "priceChange24hPercent": "0.64",
+ "volume24h": "848.07647393225715",
+ "communityRecognized": true,
+ "key": "evm--1:0x0001a500a6b18995b03f44bb040a5ffc28e45cb0",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x8e870d67f660d95d5be530380d0ec0bd388289e1",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x8e870d67f660d95d5be530380d0ec0bd388289e1.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x8e870d67f660d95d5be530380d0ec0bd388289e1.png"
+ ],
+ "name": "Paxos Standard",
+ "symbol": "USDP",
+ "marketCap": "27404062.797932465447346002",
+ "price": "0.99748418825631508508",
+ "priceChange24hPercent": "-0.09",
+ "volume24h": "563.60301191632278",
+ "communityRecognized": true,
+ "key": "evm--1:0x8e870d67f660d95d5be530380d0ec0bd388289e1",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x812ba41e071c7b7fa4ebcfb62df5f45f6fa853ee",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x812ba41e071c7b7fa4ebcfb62df5f45f6fa853ee-1729490132076.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x812ba41e071c7b7fa4ebcfb62df5f45f6fa853ee-1729490132076.png"
+ ],
+ "name": "Neiro",
+ "symbol": "Neiro",
+ "marketCap": "37356152.317819854466686123",
+ "price": "0.00008879733846257305",
+ "priceChange24hPercent": "-0.03",
+ "volume24h": "1443.017206434400945",
+ "communityRecognized": true,
+ "key": "evm--1:0x812ba41e071c7b7fa4ebcfb62df5f45f6fa853ee",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x57e114b691db790c35207b2e685d4a43181e6061",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x57e114b691db790c35207b2e685d4a43181e6061.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x57e114b691db790c35207b2e685d4a43181e6061.png"
+ ],
+ "name": "ENA",
+ "symbol": "ENA",
+ "marketCap": "1660396713.548207644778402066",
+ "price": "0.16447204715537113336",
+ "priceChange24hPercent": "-0.78",
+ "volume24h": "5753.9126394432674821",
+ "communityRecognized": true,
+ "key": "evm--1:0x57e114b691db790c35207b2e685d4a43181e6061",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0xb1d1eae60eea9525032a6dcb4c1ce336a1de71be",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xb1d1eae60eea9525032a6dcb4c1ce336a1de71be-1736915881289.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xb1d1eae60eea9525032a6dcb4c1ce336a1de71be-1736915881289.png"
+ ],
+ "name": "Derive",
+ "symbol": "DRV",
+ "marketCap": "127984188.43505609108049628",
+ "price": "0.16119916270213162558",
+ "priceChange24hPercent": "-1.25",
+ "volume24h": "650.184810253448938",
+ "communityRecognized": true,
+ "key": "evm--1:0xb1d1eae60eea9525032a6dcb4c1ce336a1de71be",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0xe28b3b32b6c345a34ff64674606124dd5aceca30",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xe28b3b32b6c345a34ff64674606124dd5aceca30.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xe28b3b32b6c345a34ff64674606124dd5aceca30.png"
+ ],
+ "name": "Injective Token",
+ "symbol": "INJ",
+ "marketCap": "652548679.90277936730835885",
+ "price": "6.52548679917592222342",
+ "priceChange24hPercent": "0.76",
+ "volume24h": "29986.3075881788893747",
+ "communityRecognized": true,
+ "key": "evm--1:0xe28b3b32b6c345a34ff64674606124dd5aceca30",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x6de037ef9ad2725eb40118bb1702ebb27e4aeb24",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x6de037ef9ad2725eb40118bb1702ebb27e4aeb24.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x6de037ef9ad2725eb40118bb1702ebb27e4aeb24.png"
+ ],
+ "name": "Render Token",
+ "symbol": "RNDR",
+ "marketCap": "824262821.040543541994980321",
+ "price": "1.54491651271921396845",
+ "priceChange24hPercent": "-0.34",
+ "volume24h": "8494.8722191223409623",
+ "communityRecognized": true,
+ "key": "evm--1:0x6de037ef9ad2725eb40118bb1702ebb27e4aeb24",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x6982508145454ce325ddbe47a25d4ec3d2311933",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x6982508145454ce325ddbe47a25d4ec3d2311933.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x6982508145454ce325ddbe47a25d4ec3d2311933.png"
+ ],
+ "name": "Pepe",
+ "symbol": "PEPE",
+ "marketCap": "1493558240.201236645376560347",
+ "price": "0.00000360961340628093",
+ "priceChange24hPercent": "0.15",
+ "volume24h": "1894.55938092859241656",
+ "communityRecognized": true,
+ "key": "evm--1:0x6982508145454ce325ddbe47a25d4ec3d2311933",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0xaff2565091e7207191dbe340b8528d02fa78d044",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xaff2565091e7207191dbe340b8528d02fa78d044-1776579686042.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xaff2565091e7207191dbe340b8528d02fa78d044-1776579686042.png"
+ ],
+ "name": "Asteroid",
+ "symbol": "ASTEROID",
+ "marketCap": "2160137.135913627904826177",
+ "price": "0.0021601371359136279",
+ "priceChange24hPercent": "-2.73",
+ "volume24h": "2013.7767705981709974",
+ "communityRecognized": true,
+ "key": "evm--1:0xaff2565091e7207191dbe340b8528d02fa78d044",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x62d0a8458ed7719fdaf978fe5929c6d342b0bfce",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x62d0a8458ed7719fdaf978fe5929c6d342b0bfce.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x62d0a8458ed7719fdaf978fe5929c6d342b0bfce.png"
+ ],
+ "name": "Beam",
+ "symbol": "BEAM",
+ "marketCap": "78817739.001999896246095768",
+ "price": "0.00153640263642117317",
+ "priceChange24hPercent": "0.02",
+ "volume24h": "1691.81181067936590303",
+ "communityRecognized": true,
+ "key": "evm--1:0x62d0a8458ed7719fdaf978fe5929c6d342b0bfce",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x5886e4d8d6a41a5ea2f3f77f23d7a7e942d581f1",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/83c4bb2e3cda0cf67f98df6bc39151db6bcd2a9628bdb21585d1b0bfce38dc2a",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/83c4bb2e3cda0cf67f98df6bc39151db6bcd2a9628bdb21585d1b0bfce38dc2a"
+ ],
+ "name": "Klik",
+ "symbol": "KLIK",
+ "marketCap": "4134378.928421985789081628",
+ "price": "0.00420796368247015225",
+ "priceChange24hPercent": "-6.2",
+ "volume24h": "11026.5331361686701869",
+ "communityRecognized": false,
+ "key": "evm--1:0x5886e4d8d6a41a5ea2f3f77f23d7a7e942d581f1",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x2e44f3f609ff5aa4819b323fd74690f07c3607c4",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x2e44f3f609ff5aa4819b323fd74690f07c3607c4-1731641401028.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x2e44f3f609ff5aa4819b323fd74690f07c3607c4-1731641401028.png"
+ ],
+ "name": "PinLink",
+ "symbol": "Pin",
+ "marketCap": "5160164.512091474449369269",
+ "price": "0.05850086813417833854",
+ "priceChange24hPercent": "1.99",
+ "volume24h": "535.7298213540488",
+ "communityRecognized": true,
+ "key": "evm--1:0x2e44f3f609ff5aa4819b323fd74690f07c3607c4",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x12970e6868f88f6557b76120662c1b3e50a646bf",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x12970e6868f88f6557b76120662c1b3e50a646bf.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x12970e6868f88f6557b76120662c1b3e50a646bf.png"
+ ],
+ "name": "Milady",
+ "symbol": "LADYS",
+ "marketCap": "6405808.461562543221833342",
+ "price": "0.00000000721374230671",
+ "priceChange24hPercent": "-0.85",
+ "volume24h": "821.01700810342957",
+ "communityRecognized": true,
+ "key": "evm--1:0x12970e6868f88f6557b76120662c1b3e50a646bf",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0xa27ec0006e59f245217ff08cd52a7e8b169e62d2",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xa27ec0006e59f245217ff08cd52a7e8b169e62d2-1765087768761.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xa27ec0006e59f245217ff08cd52a7e8b169e62d2-1765087768761.png"
+ ],
+ "name": "AZTEC",
+ "symbol": "AZTEC",
+ "marketCap": "42375716.835073977509763322",
+ "price": "0.01471583647777766656",
+ "priceChange24hPercent": "-0.69",
+ "volume24h": "29880.916605750833104",
+ "communityRecognized": true,
+ "key": "evm--1:0xa27ec0006e59f245217ff08cd52a7e8b169e62d2",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0xfe0c30065b384f05761f15d0cc899d4f9f9cc0eb",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xfe0c30065b384f05761f15d0cc899d4f9f9cc0eb.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xfe0c30065b384f05761f15d0cc899d4f9f9cc0eb.png"
+ ],
+ "name": "ether.fi governance token",
+ "symbol": "ETHFI",
+ "marketCap": "561556279.510491888642734434",
+ "price": "0.58171262185786697948",
+ "priceChange24hPercent": "-0.54",
+ "volume24h": "1436.37500189151099107",
+ "communityRecognized": true,
+ "key": "evm--1:0xfe0c30065b384f05761f15d0cc899d4f9f9cc0eb",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x95ad61b0a150d79219dcf64e1e6cc01f0b64c4ce",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x95ad61b0a150d79219dcf64e1e6cc01f0b64c4ce.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x95ad61b0a150d79219dcf64e1e6cc01f0b64c4ce.png"
+ ],
+ "name": "SHIBA INU",
+ "symbol": "SHIB",
+ "marketCap": "3194887723.572087456545692429",
+ "price": "0.00000541923290262557",
+ "priceChange24hPercent": "0",
+ "volume24h": "1260.100124641946888736",
+ "communityRecognized": true,
+ "key": "evm--1:0x95ad61b0a150d79219dcf64e1e6cc01f0b64c4ce",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0xdef1ca1fb7fbcdc777520aa7f396b4e015f497ab",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xdef1ca1fb7fbcdc777520aa7f396b4e015f497ab-1785401482174.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xdef1ca1fb7fbcdc777520aa7f396b4e015f497ab-1785401482174.png"
+ ],
+ "name": "CoW Protocol Token",
+ "symbol": "COW",
+ "marketCap": "133551224.674999546049151586",
+ "price": "0.13355122467506632166",
+ "priceChange24hPercent": "1.09",
+ "volume24h": "3542.36114194498813512",
+ "communityRecognized": true,
+ "key": "evm--1:0xdef1ca1fb7fbcdc777520aa7f396b4e015f497ab",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0xba47214edd2bb43099611b208f75e4b42fdcfedc",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xba47214edd2bb43099611b208f75e4b42fdcfedc-1757666647794.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xba47214edd2bb43099611b208f75e4b42fdcfedc-1757666647794.png"
+ ],
+ "name": "Alphabet Class A (Ondo Tokenized)",
+ "symbol": "GOOGLon",
+ "marketCap": "9918362.873351126445160617",
+ "price": "339.026684219921645772",
+ "priceChange24hPercent": "-",
+ "volume24h": "1044.4240825215937",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "谷歌",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--1:0xba47214edd2bb43099611b208f75e4b42fdcfedc",
+ "kind": "stock",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x9c7beba8f6ef6643abd725e45a4e8387ef260649",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x9c7beba8f6ef6643abd725e45a4e8387ef260649-1721965702833.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x9c7beba8f6ef6643abd725e45a4e8387ef260649-1721965702833.png"
+ ],
+ "name": "Gravity",
+ "symbol": "G",
+ "marketCap": "29477204.382464561744880746",
+ "price": "0.00407554639103855569",
+ "priceChange24hPercent": "3.51",
+ "volume24h": "9153.34118",
+ "communityRecognized": true,
+ "key": "evm--1:0x9c7beba8f6ef6643abd725e45a4e8387ef260649",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x0f81001ef0a83ecce5ccebf63eb302c70a39a654",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x0f81001ef0a83ecce5ccebf63eb302c70a39a654-1757750425263.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x0f81001ef0a83ecce5ccebf63eb302c70a39a654-1757750425263.png"
+ ],
+ "name": "Dolomite",
+ "symbol": "DOLO",
+ "marketCap": "7106756.518102218506843324",
+ "price": "0.02696267295816859323",
+ "priceChange24hPercent": "0.07",
+ "volume24h": "15597.67702713966731",
+ "communityRecognized": true,
+ "key": "evm--1:0x0f81001ef0a83ecce5ccebf63eb302c70a39a654",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x32b4d049fe4c888d2b92eecaf729f44df6b1f36e",
+ "logoUrl": "https://static.oklink.com/cdn/web3/currency/token/large/1-0x32b4d049fe4c888d2b92eecaf729f44df6b1f36e-106/type=default_90_0?v=1788818579586",
+ "logoUrls": [
+ "https://static.oklink.com/cdn/web3/currency/token/large/1-0x32b4d049fe4c888d2b92eecaf729f44df6b1f36e-106/type=default_90_0?v=1788818579586"
+ ],
+ "name": "Robo Token",
+ "symbol": "ROBO",
+ "marketCap": "26324198.104611956403879731",
+ "price": "0.01179928198324157616",
+ "priceChange24hPercent": "2.41",
+ "volume24h": "932.166219",
+ "communityRecognized": true,
+ "key": "evm--1:0x32b4d049fe4c888d2b92eecaf729f44df6b1f36e",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0xb50721bcf8d664c30412cfbc6cf7a15145234ad1",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xb50721bcf8d664c30412cfbc6cf7a15145234ad1.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xb50721bcf8d664c30412cfbc6cf7a15145234ad1.png"
+ ],
+ "name": "Arbitrum",
+ "symbol": "ARB",
+ "marketCap": "37965118.588461013168066961",
+ "price": "0.17053056603354301373",
+ "priceChange24hPercent": "-1.79",
+ "volume24h": "4890.579669529162110254",
+ "communityRecognized": true,
+ "key": "evm--1:0xb50721bcf8d664c30412cfbc6cf7a15145234ad1",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x6985884c4392d348587b19cb9eaaf157f13271cd",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x6985884c4392d348587b19cb9eaaf157f13271cd-1721275576234.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x6985884c4392d348587b19cb9eaaf157f13271cd-1721275576234.png"
+ ],
+ "name": "LayerZero",
+ "symbol": "ZRO",
+ "marketCap": "1080149474.7580877145563419",
+ "price": "1.13574633729690438428",
+ "priceChange24hPercent": "0.29",
+ "volume24h": "618.126039404204885",
+ "communityRecognized": true,
+ "key": "evm--1:0x6985884c4392d348587b19cb9eaaf157f13271cd",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x292fcdd1b104de5a00250febba9bc6a5092a0076",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x292fcdd1b104de5a00250febba9bc6a5092a0076.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x292fcdd1b104de5a00250febba9bc6a5092a0076.png"
+ ],
+ "name": "HashAI",
+ "symbol": "HashAI",
+ "marketCap": "1114457.189979465254376546",
+ "price": "0.00001317873327440078",
+ "priceChange24hPercent": "0.43",
+ "volume24h": "782.120510083873856",
+ "communityRecognized": false,
+ "key": "evm--1:0x292fcdd1b104de5a00250febba9bc6a5092a0076",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x72e4f9f808c49a2a61de9c5896298920dc4eeea9",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x72e4f9f808c49a2a61de9c5896298920dc4eeea9.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x72e4f9f808c49a2a61de9c5896298920dc4eeea9.png"
+ ],
+ "name": "HarryPotterObamaSonic10Inu",
+ "symbol": "BITCOIN",
+ "marketCap": "18075724.889706554310507744",
+ "price": "0.01807937412097600271",
+ "priceChange24hPercent": "-2.2",
+ "volume24h": "6806.1178444909004801",
+ "communityRecognized": true,
+ "key": "evm--1:0x72e4f9f808c49a2a61de9c5896298920dc4eeea9",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0xbe0ed4138121ecfc5c0e56b40517da27e6c5226b",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xbe0ed4138121ecfc5c0e56b40517da27e6c5226b.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xbe0ed4138121ecfc5c0e56b40517da27e6c5226b.png"
+ ],
+ "name": "Aethir Token",
+ "symbol": "ATH",
+ "marketCap": "99263854.029701203925986804",
+ "price": "0.00493144293933574565",
+ "priceChange24hPercent": "2.03",
+ "volume24h": "3321.654541386143674254",
+ "communityRecognized": true,
+ "key": "evm--1:0xbe0ed4138121ecfc5c0e56b40517da27e6c5226b",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0xb2617246d0c6c0087f18703d576831899ca94f01",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xb2617246d0c6c0087f18703d576831899ca94f01.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xb2617246d0c6c0087f18703d576831899ca94f01.png"
+ ],
+ "name": "ZigCoin",
+ "symbol": "ZIG",
+ "marketCap": "94808705.232990788358788257",
+ "price": "0.04740435261649539418",
+ "priceChange24hPercent": "0.76",
+ "volume24h": "501.6120087057993915",
+ "communityRecognized": true,
+ "key": "evm--1:0xb2617246d0c6c0087f18703d576831899ca94f01",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x3b991130eae3cca364406d718da22fa1c3e7c256",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x3b991130eae3cca364406d718da22fa1c3e7c256-1721965702832.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x3b991130eae3cca364406d718da22fa1c3e7c256-1721965702832.png"
+ ],
+ "name": "Shrub",
+ "symbol": "SHRUB",
+ "marketCap": "1668534.066403978786212648",
+ "price": "0.00177095484417092101",
+ "priceChange24hPercent": "-1.79",
+ "volume24h": "1167.614980751846682",
+ "communityRecognized": false,
+ "key": "evm--1:0x3b991130eae3cca364406d718da22fa1c3e7c256",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x5dd1a7a369e8273371d2dbf9d83356057088082c",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x5dd1a7a369e8273371d2dbf9d83356057088082c-1765831426420.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x5dd1a7a369e8273371d2dbf9d83356057088082c-1765831426420.png"
+ ],
+ "name": "Flying Tulip",
+ "symbol": "FT",
+ "marketCap": "2246721.781190107127622743",
+ "price": "0.10336913148469746443",
+ "priceChange24hPercent": "0.13",
+ "volume24h": "891.622801",
+ "communityRecognized": true,
+ "key": "evm--1:0x5dd1a7a369e8273371d2dbf9d83356057088082c",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0xd9fcd98c322942075a5c3860693e9f4f03aae07b",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xd9fcd98c322942075a5c3860693e9f4f03aae07b.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xd9fcd98c322942075a5c3860693e9f4f03aae07b.png"
+ ],
+ "name": "Euler",
+ "symbol": "EUL",
+ "marketCap": "31276632.048784866114926675",
+ "price": "1.30237941457454878927",
+ "priceChange24hPercent": "-0.9",
+ "volume24h": "1468.66780395049485",
+ "communityRecognized": true,
+ "key": "evm--1:0xd9fcd98c322942075a5c3860693e9f4f03aae07b",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0xc18360217d8f7ab5e7c516566761ea12ce7f9d72",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xc18360217d8f7ab5e7c516566761ea12ce7f9d72.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xc18360217d8f7ab5e7c516566761ea12ce7f9d72.png"
+ ],
+ "name": "Ethereum Name Service",
+ "symbol": "ENS",
+ "marketCap": "611785034.978927212090468133",
+ "price": "6.1178503497892721209",
+ "priceChange24hPercent": "-0.15",
+ "volume24h": "529.735578644726936",
+ "communityRecognized": true,
+ "key": "evm--1:0xc18360217d8f7ab5e7c516566761ea12ce7f9d72",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0xc944e90c64b2c07662a292be6244bdf05cda44a7",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xc944e90c64b2c07662a292be6244bdf05cda44a7.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xc944e90c64b2c07662a292be6244bdf05cda44a7.png"
+ ],
+ "name": "Graph Token",
+ "symbol": "GRT",
+ "marketCap": "213682635.31538619296014973",
+ "price": "0.01978494773274156975",
+ "priceChange24hPercent": "0.03",
+ "volume24h": "895.4927072090040058",
+ "communityRecognized": true,
+ "key": "evm--1:0xc944e90c64b2c07662a292be6244bdf05cda44a7",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0xcf91b70017eabde82c9671e30e5502d312ea6eb2",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xcf91b70017eabde82c9671e30e5502d312ea6eb2.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xcf91b70017eabde82c9671e30e5502d312ea6eb2.png"
+ ],
+ "name": "I love puppies",
+ "symbol": "puppies",
+ "marketCap": "7840080.958106169270076012",
+ "price": "0.00000018636243043425",
+ "priceChange24hPercent": "-0.08",
+ "volume24h": "2231.7003988593022643",
+ "communityRecognized": false,
+ "key": "evm--1:0xcf91b70017eabde82c9671e30e5502d312ea6eb2",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0xf34960d9d60be18cc1d5afc1a6f012a723a28811",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xf34960d9d60be18cc1d5afc1a6f012a723a28811-1757062012772.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xf34960d9d60be18cc1d5afc1a6f012a723a28811-1757062012772.png"
+ ],
+ "name": "KuCoin Token",
+ "symbol": "KCS",
+ "marketCap": "669663.971359230919270077",
+ "price": "7.00549115229823928288",
+ "priceChange24hPercent": "-0.64",
+ "volume24h": "13244.85564133013204",
+ "communityRecognized": false,
+ "key": "evm--1:0xf34960d9d60be18cc1d5afc1a6f012a723a28811",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x54d2252757e1672eead234d27b1270728ff90581",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x54d2252757e1672eead234d27b1270728ff90581-1721965702832.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x54d2252757e1672eead234d27b1270728ff90581-1721965702832.png"
+ ],
+ "name": "BitgetToken",
+ "symbol": "BGB",
+ "marketCap": "1391805427.795165092456564205",
+ "price": "1.98831610767746309218",
+ "priceChange24hPercent": "0",
+ "volume24h": "4426.342612032411513",
+ "communityRecognized": true,
+ "key": "evm--1:0x54d2252757e1672eead234d27b1270728ff90581",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x4206931337dc273a630d328da6441786bfad668f",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x4206931337dc273a630d328da6441786bfad668f-1757751938167.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x4206931337dc273a630d328da6441786bfad668f-1757751938167.png"
+ ],
+ "name": "Dogecoin",
+ "symbol": "DOGE",
+ "marketCap": "5157086.429369882677102401",
+ "price": "0.08991800972667650374",
+ "priceChange24hPercent": "-0.18",
+ "volume24h": "3398.4177505043663",
+ "communityRecognized": true,
+ "key": "evm--1:0x4206931337dc273a630d328da6441786bfad668f",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x6033f7f88332b8db6ad452b7c6d5bb643990ae3f",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x6033f7f88332b8db6ad452b7c6d5bb643990ae3f.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x6033f7f88332b8db6ad452b7c6d5bb643990ae3f.png"
+ ],
+ "name": "Lisk",
+ "symbol": "LSK",
+ "marketCap": "24072151.579462374534703265",
+ "price": "0.10327641363543645482",
+ "priceChange24hPercent": "0.27",
+ "volume24h": "2614.681194462848866",
+ "communityRecognized": true,
+ "key": "evm--1:0x6033f7f88332b8db6ad452b7c6d5bb643990ae3f",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x14c3abf95cb9c93a8b82c1cdcb76d72cb87b2d4c",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x14c3abf95cb9c93a8b82c1cdcb76d72cb87b2d4c-1757665575093.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x14c3abf95cb9c93a8b82c1cdcb76d72cb87b2d4c-1757665575093.png"
+ ],
+ "name": "Apple (Ondo Tokenized)",
+ "symbol": "AAPLon",
+ "marketCap": "5243590.177976232422264391",
+ "price": "320.311828764086964785",
+ "priceChange24hPercent": "-0.51",
+ "volume24h": "4753.4852552858612967",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "苹果",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--1:0x14c3abf95cb9c93a8b82c1cdcb76d72cb87b2d4c",
+ "kind": "stock",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ }
+ ],
+ "trending|evm--1|4h|all": [
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x8602b2fd8d105a56d3152e936e66b1d414142148",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/46be4fa022c8cf4f26df79bb27838188b1097a22d2d5668c723c6177a9bad8e6",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/46be4fa022c8cf4f26df79bb27838188b1097a22d2d5668c723c6177a9bad8e6"
+ ],
+ "name": "Artificial Pepe",
+ "symbol": "AP",
+ "marketCap": "1104363.861105462063331123",
+ "price": "0.00110436386110546206",
+ "priceChange24hPercent": "-13.33",
+ "volume24h": "32233.8194921087521122",
+ "communityRecognized": false,
+ "key": "evm--1:0x8602b2fd8d105a56d3152e936e66b1d414142148",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x5886e4d8d6a41a5ea2f3f77f23d7a7e942d581f1",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/83c4bb2e3cda0cf67f98df6bc39151db6bcd2a9628bdb21585d1b0bfce38dc2a",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/83c4bb2e3cda0cf67f98df6bc39151db6bcd2a9628bdb21585d1b0bfce38dc2a"
+ ],
+ "name": "Klik",
+ "symbol": "KLIK",
+ "marketCap": "4134378.928421985789081628",
+ "price": "0.00420796368247015225",
+ "priceChange24hPercent": "29.84",
+ "volume24h": "495969.571825783421792424",
+ "communityRecognized": false,
+ "key": "evm--1:0x5886e4d8d6a41a5ea2f3f77f23d7a7e942d581f1",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x45804880de22913dafe09f4980848ece6ecbaf78",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x45804880de22913dafe09f4980848ece6ecbaf78.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x45804880de22913dafe09f4980848ece6ecbaf78.png"
+ ],
+ "name": "PAX Gold",
+ "symbol": "PAXG",
+ "marketCap": "1909008770.773613853448246035",
+ "price": "4439.69364949688523130396",
+ "priceChange24hPercent": "0.46",
+ "volume24h": "308543.64451454744376122",
+ "communityRecognized": true,
+ "key": "evm--1:0x45804880de22913dafe09f4980848ece6ecbaf78",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0xe172e9b6cfbeeb5593bdce3f077356fdb33af904",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xe172e9b6cfbeeb5593bdce3f077356fdb33af904-1786601267038.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xe172e9b6cfbeeb5593bdce3f077356fdb33af904-1786601267038.png"
+ ],
+ "name": "Interfold",
+ "symbol": "FOLD",
+ "marketCap": "18062751.219704692925179986",
+ "price": "0.05553989254753694462",
+ "priceChange24hPercent": "0.36",
+ "volume24h": "128930.98135891240135072",
+ "communityRecognized": false,
+ "key": "evm--1:0xe172e9b6cfbeeb5593bdce3f077356fdb33af904",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0xe28b3b32b6c345a34ff64674606124dd5aceca30",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xe28b3b32b6c345a34ff64674606124dd5aceca30.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xe28b3b32b6c345a34ff64674606124dd5aceca30.png"
+ ],
+ "name": "Injective Token",
+ "symbol": "INJ",
+ "marketCap": "652548679.90277936730835885",
+ "price": "6.52548679917592222342",
+ "priceChange24hPercent": "6.06",
+ "volume24h": "187599.015003678498380669",
+ "communityRecognized": true,
+ "key": "evm--1:0xe28b3b32b6c345a34ff64674606124dd5aceca30",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x163f8c2467924be0ae7b5347228cabf260318753",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x163f8c2467924be0ae7b5347228cabf260318753.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x163f8c2467924be0ae7b5347228cabf260318753.png"
+ ],
+ "name": "Worldcoin",
+ "symbol": "WLD",
+ "marketCap": "4740302961.667240564166855584",
+ "price": "0.47403029616672405642",
+ "priceChange24hPercent": "-0.74",
+ "volume24h": "86480.211338423392317598",
+ "communityRecognized": true,
+ "key": "evm--1:0x163f8c2467924be0ae7b5347228cabf260318753",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x5ab3d4c385b400f3abb49e80de2faf6a88a7b691",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x5ab3d4c385b400f3abb49e80de2faf6a88a7b691-1786773628094.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x5ab3d4c385b400f3abb49e80de2faf6a88a7b691-1786773628094.png"
+ ],
+ "name": "FLock.io",
+ "symbol": "FLOCK",
+ "marketCap": "23801.192070825717112147",
+ "price": "0.06192209689038530138",
+ "priceChange24hPercent": "-2.68",
+ "volume24h": "3945.6314723364124798",
+ "communityRecognized": false,
+ "key": "evm--1:0x5ab3d4c385b400f3abb49e80de2faf6a88a7b691",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x4d224452801aced8b2f0aebe155379bb5d594381",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x4d224452801aced8b2f0aebe155379bb5d594381.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x4d224452801aced8b2f0aebe155379bb5d594381.png"
+ ],
+ "name": "ApeCoin",
+ "symbol": "APE",
+ "marketCap": "145538261.312580194925814975",
+ "price": "0.14554115661043842365",
+ "priceChange24hPercent": "0.4",
+ "volume24h": "28168.066515987453913977",
+ "communityRecognized": true,
+ "key": "evm--1:0x4d224452801aced8b2f0aebe155379bb5d594381",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x118b70df4f06fa5678e7d543e6066e028c8ea0c0",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x118b70df4f06fa5678e7d543e6066e028c8ea0c0-1787292766126.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x118b70df4f06fa5678e7d543e6066e028c8ea0c0-1787292766126.png"
+ ],
+ "name": "Kite",
+ "symbol": "KITE",
+ "marketCap": "1166460722.191782736070208",
+ "price": "0.1195267488",
+ "priceChange24hPercent": "-1.17",
+ "volume24h": "9941.693598",
+ "communityRecognized": true,
+ "key": "evm--1:0x118b70df4f06fa5678e7d543e6066e028c8ea0c0",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0xf280b16ef293d8e534e370794ef26bf312694126",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xf280b16ef293d8e534e370794ef26bf312694126-1727226900185.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xf280b16ef293d8e534e370794ef26bf312694126-1727226900185.png"
+ ],
+ "name": "Asteroid Shiba",
+ "symbol": "ASTEROID",
+ "marketCap": "7417961.835628052508944778",
+ "price": "0.00001763284564793091",
+ "priceChange24hPercent": "-7.49",
+ "volume24h": "67022.81289434421737666",
+ "communityRecognized": true,
+ "key": "evm--1:0xf280b16ef293d8e534e370794ef26bf312694126",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x514910771af9ca656af840dff83e8264ecf986ca",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x514910771af9ca656af840dff83e8264ecf986ca.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x514910771af9ca656af840dff83e8264ecf986ca.png"
+ ],
+ "name": "ChainLink Token",
+ "symbol": "LINK",
+ "marketCap": "12595838798.640615720251183561",
+ "price": "12.59583966012281479998",
+ "priceChange24hPercent": "-0.7",
+ "volume24h": "373833.814644074689973183",
+ "communityRecognized": true,
+ "key": "evm--1:0x514910771af9ca656af840dff83e8264ecf986ca",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x44b28991b167582f18ba0259e0173176ca125505",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x44b28991b167582f18ba0259e0173176ca125505-1776492205735.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x44b28991b167582f18ba0259e0173176ca125505-1776492205735.png"
+ ],
+ "name": "Unipeg",
+ "symbol": "uPEG",
+ "marketCap": "1679504.65137640140809086",
+ "price": "167.97818153759384379331",
+ "priceChange24hPercent": "-7.12",
+ "volume24h": "16517.74159175756809076",
+ "communityRecognized": false,
+ "key": "evm--1:0x44b28991b167582f18ba0259e0173176ca125505",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x57e114b691db790c35207b2e685d4a43181e6061",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x57e114b691db790c35207b2e685d4a43181e6061.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x57e114b691db790c35207b2e685d4a43181e6061.png"
+ ],
+ "name": "ENA",
+ "symbol": "ENA",
+ "marketCap": "1660396713.548207644778402066",
+ "price": "0.16447204715537113336",
+ "priceChange24hPercent": "0.04",
+ "volume24h": "50364.227886313998885476",
+ "communityRecognized": true,
+ "key": "evm--1:0x57e114b691db790c35207b2e685d4a43181e6061",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x1f9840a85d5af5bf1d1762f925bdaddc4201f984",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x1f9840a85d5af5bf1d1762f925bdaddc4201f984.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x1f9840a85d5af5bf1d1762f925bdaddc4201f984.png"
+ ],
+ "name": "Uniswap",
+ "symbol": "UNI",
+ "marketCap": "6982667914.809130319494285264",
+ "price": "6.98270981484155235271",
+ "priceChange24hPercent": "1.86",
+ "volume24h": "1976052.715968734955323798",
+ "communityRecognized": true,
+ "key": "evm--1:0x1f9840a85d5af5bf1d1762f925bdaddc4201f984",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x5afe3855358e112b5647b952709e6165e1c1eeee",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x5afe3855358e112b5647b952709e6165e1c1eeee.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x5afe3855358e112b5647b952709e6165e1c1eeee.png"
+ ],
+ "name": "Safe Token",
+ "symbol": "SAFE",
+ "marketCap": "81163050.466233622609361953",
+ "price": "0.10468500797680307475",
+ "priceChange24hPercent": "6.77",
+ "volume24h": "54033.77289405883551303",
+ "communityRecognized": true,
+ "key": "evm--1:0x5afe3855358e112b5647b952709e6165e1c1eeee",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x85f17cf997934a597031b2e18a9ab6ebd4b9f6a4",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x85f17cf997934a597031b2e18a9ab6ebd4b9f6a4.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x85f17cf997934a597031b2e18a9ab6ebd4b9f6a4.png"
+ ],
+ "name": "NEAR",
+ "symbol": "NEAR",
+ "marketCap": "7622978.845504075352832797",
+ "price": "2.26095015223097112861",
+ "priceChange24hPercent": "-1.08",
+ "volume24h": "19055.0768257779388066",
+ "communityRecognized": true,
+ "key": "evm--1:0x85f17cf997934a597031b2e18a9ab6ebd4b9f6a4",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x72e4f9f808c49a2a61de9c5896298920dc4eeea9",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x72e4f9f808c49a2a61de9c5896298920dc4eeea9.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x72e4f9f808c49a2a61de9c5896298920dc4eeea9.png"
+ ],
+ "name": "HarryPotterObamaSonic10Inu",
+ "symbol": "BITCOIN",
+ "marketCap": "18075724.889706554310507744",
+ "price": "0.01807937412097600271",
+ "priceChange24hPercent": "-1.16",
+ "volume24h": "21689.68224141995898099",
+ "communityRecognized": true,
+ "key": "evm--1:0x72e4f9f808c49a2a61de9c5896298920dc4eeea9",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x2d1f7226bd1f780af6b9a49dcc0ae00e8df4bdee",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x2d1f7226bd1f780af6b9a49dcc0ae00e8df4bdee-1757752431638.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x2d1f7226bd1f780af6b9a49dcc0ae00e8df4bdee-1757752431638.png"
+ ],
+ "name": "NVIDIA (Ondo Tokenized)",
+ "symbol": "NVDAon",
+ "marketCap": "18182781.849522944090312949",
+ "price": "233.018432579261589288",
+ "priceChange24hPercent": "-",
+ "volume24h": "119254.892707118247082",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "英伟达",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--1:0x2d1f7226bd1f780af6b9a49dcc0ae00e8df4bdee",
+ "kind": "stock",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x761d38e5ddf6ccf6cf7c55759d5210750b5d60f3",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x761d38e5ddf6ccf6cf7c55759d5210750b5d60f3.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x761d38e5ddf6ccf6cf7c55759d5210750b5d60f3.png"
+ ],
+ "name": "Dogelon",
+ "symbol": "ELON",
+ "marketCap": "32002713.280310162408172193",
+ "price": "0.00000003200271667338",
+ "priceChange24hPercent": "-0.31",
+ "volume24h": "627.2973555089598557",
+ "communityRecognized": true,
+ "key": "evm--1:0x761d38e5ddf6ccf6cf7c55759d5210750b5d60f3",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x9e32b13ce7f2e80a01932b42553652e053d6ed8e",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x9e32b13ce7f2e80a01932b42553652e053d6ed8e.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x9e32b13ce7f2e80a01932b42553652e053d6ed8e.png"
+ ],
+ "name": "Metis Token",
+ "symbol": "Metis",
+ "marketCap": "31190857.881624647466676241",
+ "price": "3.11908578816246474667",
+ "priceChange24hPercent": "-0.39",
+ "volume24h": "22678.6360723621978803",
+ "communityRecognized": true,
+ "key": "evm--1:0x9e32b13ce7f2e80a01932b42553652e053d6ed8e",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0xec53bf9167f50cdeb3ae105f56099aaab9061f83",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xec53bf9167f50cdeb3ae105f56099aaab9061f83-1727837100115.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xec53bf9167f50cdeb3ae105f56099aaab9061f83-1727837100115.png"
+ ],
+ "name": "Eigen",
+ "symbol": "EIGEN",
+ "marketCap": "200518858.285838481625806543",
+ "price": "0.21781991470018400732",
+ "priceChange24hPercent": "1.35",
+ "volume24h": "6443.09205221144772952",
+ "communityRecognized": true,
+ "key": "evm--1:0xec53bf9167f50cdeb3ae105f56099aaab9061f83",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0xfeac2eae96899709a43e252b6b92971d32f9c0f9",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xfeac2eae96899709a43e252b6b92971d32f9c0f9-1721965702832.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xfeac2eae96899709a43e252b6b92971d32f9c0f9-1721965702832.png"
+ ],
+ "name": "ANyONe Protocol",
+ "symbol": "ANYONE",
+ "marketCap": "19334584.547818090106781868",
+ "price": "0.20277495055436214413",
+ "priceChange24hPercent": "5.75",
+ "volume24h": "26825.5148089497073033",
+ "communityRecognized": true,
+ "key": "evm--1:0xfeac2eae96899709a43e252b6b92971d32f9c0f9",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x4d7078ddd6ccfed2f85db5b7d3ff16828d378d48",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x4d7078ddd6ccfed2f85db5b7d3ff16828d378d48-1777528887338.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x4d7078ddd6ccfed2f85db5b7d3ff16828d378d48-1777528887338.png"
+ ],
+ "name": "Gensyn",
+ "symbol": "AI",
+ "marketCap": "9112312.413272017280397296",
+ "price": "0.02062587239460114524",
+ "priceChange24hPercent": "0.71",
+ "volume24h": "5634.12611160780354",
+ "communityRecognized": true,
+ "key": "evm--1:0x4d7078ddd6ccfed2f85db5b7d3ff16828d378d48",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x111111111117dc0aa78b770fa6a738034120c302",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x111111111117dc0aa78b770fa6a738034120c302.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x111111111117dc0aa78b770fa6a738034120c302.png"
+ ],
+ "name": "1INCH Token",
+ "symbol": "1INCH",
+ "marketCap": "140756864.112418820878878988",
+ "price": "0.09383794371570669218",
+ "priceChange24hPercent": "0.22",
+ "volume24h": "9480.889767293942168248",
+ "communityRecognized": true,
+ "key": "evm--1:0x111111111117dc0aa78b770fa6a738034120c302",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x299f137e691751087c6bfa6012f7d56a4da61a68",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x299f137e691751087c6bfa6012f7d56a4da61a68-1788588233662.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x299f137e691751087c6bfa6012f7d56a4da61a68-1788588233662.png"
+ ],
+ "name": "stonky.xyz",
+ "symbol": "STONKY",
+ "marketCap": "22945.935935275783986086",
+ "price": "0.00002294593593527578",
+ "priceChange24hPercent": "-16.72",
+ "volume24h": "971.0872807297769422",
+ "communityRecognized": false,
+ "key": "evm--1:0x299f137e691751087c6bfa6012f7d56a4da61a68",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0xb50721bcf8d664c30412cfbc6cf7a15145234ad1",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xb50721bcf8d664c30412cfbc6cf7a15145234ad1.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xb50721bcf8d664c30412cfbc6cf7a15145234ad1.png"
+ ],
+ "name": "Arbitrum",
+ "symbol": "ARB",
+ "marketCap": "37965118.588461013168066961",
+ "price": "0.17053056603354301373",
+ "priceChange24hPercent": "0.36",
+ "volume24h": "21527.744952807818643654",
+ "communityRecognized": true,
+ "key": "evm--1:0xb50721bcf8d664c30412cfbc6cf7a15145234ad1",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x9f8f72aa9304c8b593d555f12ef6589cc3a579a2",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x9f8f72aa9304c8b593d555f12ef6589cc3a579a2.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x9f8f72aa9304c8b593d555f12ef6589cc3a579a2.png"
+ ],
+ "name": "maker",
+ "symbol": "mkr",
+ "marketCap": "136006467.128762000953566175",
+ "price": "1594.70706898681478602415",
+ "priceChange24hPercent": "1.36",
+ "volume24h": "11123.725487094559973",
+ "communityRecognized": false,
+ "key": "evm--1:0x9f8f72aa9304c8b593d555f12ef6589cc3a579a2",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0xa27ec0006e59f245217ff08cd52a7e8b169e62d2",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xa27ec0006e59f245217ff08cd52a7e8b169e62d2-1765087768761.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xa27ec0006e59f245217ff08cd52a7e8b169e62d2-1765087768761.png"
+ ],
+ "name": "AZTEC",
+ "symbol": "AZTEC",
+ "marketCap": "42375716.835073977509763322",
+ "price": "0.01471583647777766656",
+ "priceChange24hPercent": "1.74",
+ "volume24h": "236970.1426259118465119",
+ "communityRecognized": true,
+ "key": "evm--1:0xa27ec0006e59f245217ff08cd52a7e8b169e62d2",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x4a220e6096b25eadb88358cb44068a3248254675",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x4a220e6096b25eadb88358cb44068a3248254675.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x4a220e6096b25eadb88358cb44068a3248254675.png"
+ ],
+ "name": "Quant",
+ "symbol": "QNT",
+ "marketCap": "797969469.930940570527114438",
+ "price": "66.09681001368045678844",
+ "priceChange24hPercent": "-1.2",
+ "volume24h": "6833.103920137240790156",
+ "communityRecognized": true,
+ "key": "evm--1:0x4a220e6096b25eadb88358cb44068a3248254675",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x6de037ef9ad2725eb40118bb1702ebb27e4aeb24",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x6de037ef9ad2725eb40118bb1702ebb27e4aeb24.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x6de037ef9ad2725eb40118bb1702ebb27e4aeb24.png"
+ ],
+ "name": "Render Token",
+ "symbol": "RNDR",
+ "marketCap": "824262821.040543541994980321",
+ "price": "1.54491651271921396845",
+ "priceChange24hPercent": "-0.2",
+ "volume24h": "68363.2054839636300281",
+ "communityRecognized": true,
+ "key": "evm--1:0x6de037ef9ad2725eb40118bb1702ebb27e4aeb24",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x32708538a107253b51a735a724330a23106ca4ca",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x32708538a107253b51a735a724330a23106ca4ca-1781071464068.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x32708538a107253b51a735a724330a23106ca4ca-1781071464068.png"
+ ],
+ "name": "01",
+ "symbol": "01",
+ "marketCap": "7591728.1926915093572302",
+ "price": "0.38303103971521914096",
+ "priceChange24hPercent": "-2.31",
+ "volume24h": "26522.7405789466878494",
+ "communityRecognized": false,
+ "key": "evm--1:0x32708538a107253b51a735a724330a23106ca4ca",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x3c3a81e81dc49a522a592e7622a7e711c06bf354",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x3c3a81e81dc49a522a592e7622a7e711c06bf354.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x3c3a81e81dc49a522a592e7622a7e711c06bf354.png"
+ ],
+ "name": "Mantle",
+ "symbol": "MNT",
+ "marketCap": "3879622624.428861321586206571",
+ "price": "0.62380206035725838526",
+ "priceChange24hPercent": "0.03",
+ "volume24h": "88817.3850639099047948",
+ "communityRecognized": true,
+ "key": "evm--1:0x3c3a81e81dc49a522a592e7622a7e711c06bf354",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x33483a58079b4225b10e57958ca28ad7b9cdbaf7",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x33483a58079b4225b10e57958ca28ad7b9cdbaf7-1768539344372.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x33483a58079b4225b10e57958ca28ad7b9cdbaf7-1768539344372.png"
+ ],
+ "name": "BitMine Immersion Technologies (Ondo Tokenized)",
+ "symbol": "BMNRon",
+ "marketCap": "653846.433144777048337471",
+ "price": "25.193887",
+ "priceChange24hPercent": "-",
+ "volume24h": "531.6555536275885",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "BitMine",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--1:0x33483a58079b4225b10e57958ca28ad7b9cdbaf7",
+ "kind": "stock",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0xa0b73e1ff0b80914ab6fe0444e65848c4c34450b",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xa0b73e1ff0b80914ab6fe0444e65848c4c34450b.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xa0b73e1ff0b80914ab6fe0444e65848c4c34450b.png"
+ ],
+ "name": "Cronos",
+ "symbol": "CRO",
+ "marketCap": "5736203223.882101211438214997",
+ "price": "0.05736203223939463244",
+ "priceChange24hPercent": "0.99",
+ "volume24h": "3763.4043959855639052",
+ "communityRecognized": true,
+ "key": "evm--1:0xa0b73e1ff0b80914ab6fe0444e65848c4c34450b",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0xd34a99bc0f67ae1bbd63c660e6d0b0dd03e263b7",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xd34a99bc0f67ae1bbd63c660e6d0b0dd03e263b7-1770962526134.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xd34a99bc0f67ae1bbd63c660e6d0b0dd03e263b7-1770962526134.png"
+ ],
+ "name": "Identity.md",
+ "symbol": "IMD",
+ "marketCap": "10216589.496199146544369432",
+ "price": "3.054251265524185482",
+ "priceChange24hPercent": "5.06",
+ "volume24h": "65681.724687694268163737",
+ "communityRecognized": false,
+ "key": "evm--1:0xd34a99bc0f67ae1bbd63c660e6d0b0dd03e263b7",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0xa1fa7777974312f7d801a8880714a218f76233f8",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xa1fa7777974312f7d801a8880714a218f76233f8-1788588393995.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xa1fa7777974312f7d801a8880714a218f76233f8-1788588393995.png"
+ ],
+ "name": "USDx",
+ "symbol": "USDx",
+ "marketCap": "66392687.266999613826329497",
+ "price": "1.00007427751974395262",
+ "priceChange24hPercent": "0.03",
+ "volume24h": "142678.48574363409",
+ "communityRecognized": false,
+ "key": "evm--1:0xa1fa7777974312f7d801a8880714a218f76233f8",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x54d2252757e1672eead234d27b1270728ff90581",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x54d2252757e1672eead234d27b1270728ff90581-1721965702832.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x54d2252757e1672eead234d27b1270728ff90581-1721965702832.png"
+ ],
+ "name": "BitgetToken",
+ "symbol": "BGB",
+ "marketCap": "1391805427.795165092456564205",
+ "price": "1.98831610767746309218",
+ "priceChange24hPercent": "0.16",
+ "volume24h": "5388.497997725559573045",
+ "communityRecognized": true,
+ "key": "evm--1:0x54d2252757e1672eead234d27b1270728ff90581",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0xb131f4a55907b10d1f0a50d8ab8fa09ec342cd74",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xb131f4a55907b10d1f0a50d8ab8fa09ec342cd74.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xb131f4a55907b10d1f0a50d8ab8fa09ec342cd74.png"
+ ],
+ "name": "Memecoin",
+ "symbol": "MEME",
+ "marketCap": "35527931.726438188226784692",
+ "price": "0.00055105681722043497",
+ "priceChange24hPercent": "-1.51",
+ "volume24h": "2134.575662182393294509",
+ "communityRecognized": true,
+ "key": "evm--1:0xb131f4a55907b10d1f0a50d8ab8fa09ec342cd74",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0xfaba6f8e4a5e8ab82f62fe7c39859fa577269be3",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xfaba6f8e4a5e8ab82f62fe7c39859fa577269be3.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xfaba6f8e4a5e8ab82f62fe7c39859fa577269be3.png"
+ ],
+ "name": "Ondo",
+ "symbol": "ONDO",
+ "marketCap": "1845634866.490616603177547368",
+ "price": "0.37903256120586394904",
+ "priceChange24hPercent": "-0.98",
+ "volume24h": "53498.893083509301304257",
+ "communityRecognized": true,
+ "key": "evm--1:0xfaba6f8e4a5e8ab82f62fe7c39859fa577269be3",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x44ff8620b8ca30902395a7bd3f2407e1a091bf73",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x44ff8620b8ca30902395a7bd3f2407e1a091bf73.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x44ff8620b8ca30902395a7bd3f2407e1a091bf73.png"
+ ],
+ "name": "Virtual Protocol",
+ "symbol": "VIRTUAL",
+ "marketCap": "726561123.715143546118405786",
+ "price": "0.72656112371514354612",
+ "priceChange24hPercent": "1.13",
+ "volume24h": "32449.631405697513276662",
+ "communityRecognized": true,
+ "key": "evm--1:0x44ff8620b8ca30902395a7bd3f2407e1a091bf73",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x01a8b61e7b03891a736b5df865e0ef9c511850ad",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x01a8b61e7b03891a736b5df865e0ef9c511850ad-1773727504923.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x01a8b61e7b03891a736b5df865e0ef9c511850ad-1773727504923.png"
+ ],
+ "name": "syBTC",
+ "symbol": "syBTC",
+ "marketCap": "509161.347738062056423757",
+ "price": "78827.53326949563588574375",
+ "priceChange24hPercent": "-0.15",
+ "volume24h": "87882.63362808874162",
+ "communityRecognized": false,
+ "key": "evm--1:0x01a8b61e7b03891a736b5df865e0ef9c511850ad",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0xe76c5b78f93909d34404e9eb4c1f19e7582a5de1",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xe76c5b78f93909d34404e9eb4c1f19e7582a5de1-1781762787714.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xe76c5b78f93909d34404e9eb4c1f19e7582a5de1-1781762787714.png"
+ ],
+ "name": "Humanity",
+ "symbol": "H",
+ "marketCap": "762388797.168415827831652156",
+ "price": "0.07623887971684158278",
+ "priceChange24hPercent": "-1.3",
+ "volume24h": "5189.43506745997",
+ "communityRecognized": true,
+ "key": "evm--1:0xe76c5b78f93909d34404e9eb4c1f19e7582a5de1",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x9ff58067bd8d239000010c154c6983a325df138e",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x9ff58067bd8d239000010c154c6983a325df138e.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x9ff58067bd8d239000010c154c6983a325df138e.png"
+ ],
+ "name": "Propchain Token",
+ "symbol": "PROPC",
+ "marketCap": "4337698.488242673103203443",
+ "price": "0.10118003522587297",
+ "priceChange24hPercent": "8.67",
+ "volume24h": "63979.05719025718",
+ "communityRecognized": true,
+ "key": "evm--1:0x9ff58067bd8d239000010c154c6983a325df138e",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x829f4b62eebe12af653b4dd4ffc480966f7d7f09",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x829f4b62eebe12af653b4dd4ffc480966f7d7f09-1777874423255.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x829f4b62eebe12af653b4dd4ffc480966f7d7f09-1777874423255.png"
+ ],
+ "name": "sato",
+ "symbol": "sato",
+ "marketCap": "2511983.201292366762732794",
+ "price": "0.17901016890236116579",
+ "priceChange24hPercent": "-3.92",
+ "volume24h": "22407.1941685830877455",
+ "communityRecognized": true,
+ "key": "evm--1:0x829f4b62eebe12af653b4dd4ffc480966f7d7f09",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x14c3abf95cb9c93a8b82c1cdcb76d72cb87b2d4c",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x14c3abf95cb9c93a8b82c1cdcb76d72cb87b2d4c-1757665575093.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x14c3abf95cb9c93a8b82c1cdcb76d72cb87b2d4c-1757665575093.png"
+ ],
+ "name": "Apple (Ondo Tokenized)",
+ "symbol": "AAPLon",
+ "marketCap": "5243590.177976232422264391",
+ "price": "320.311828764086964785",
+ "priceChange24hPercent": "-",
+ "volume24h": "18839.6379347249079107",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "苹果",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--1:0x14c3abf95cb9c93a8b82c1cdcb76d72cb87b2d4c",
+ "kind": "stock",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0xc00e94cb662c3520282e6f5717214004a7f26888",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xc00e94cb662c3520282e6f5717214004a7f26888.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xc00e94cb662c3520282e6f5717214004a7f26888.png"
+ ],
+ "name": "Compound",
+ "symbol": "COMP",
+ "marketCap": "211636333.466615330952598886",
+ "price": "21.16363335436814378722",
+ "priceChange24hPercent": "0.34",
+ "volume24h": "7690.880043422831813201",
+ "communityRecognized": true,
+ "key": "evm--1:0xc00e94cb662c3520282e6f5717214004a7f26888",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0xdd3b11ef34cd511a2da159034a05fcb94d806686",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xdd3b11ef34cd511a2da159034a05fcb94d806686-1732332192481.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xdd3b11ef34cd511a2da159034a05fcb94d806686-1732332192481.png"
+ ],
+ "name": "Rekt",
+ "symbol": "REKT",
+ "marketCap": "35940618.301550256984789255",
+ "price": "0.0000000854325472475",
+ "priceChange24hPercent": "0.44",
+ "volume24h": "2964.14627752293558411",
+ "communityRecognized": true,
+ "key": "evm--1:0xdd3b11ef34cd511a2da159034a05fcb94d806686",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x6b7774cb12ed7573a7586e7d0e62a2a563ddd3f0",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x6b7774cb12ed7573a7586e7d0e62a2a563ddd3f0-1757751313514.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x6b7774cb12ed7573a7586e7d0e62a2a563ddd3f0-1757751313514.png"
+ ],
+ "name": "Sophon",
+ "symbol": "SOPH",
+ "marketCap": "35914621.087024163331722442",
+ "price": "0.00869813628201345224",
+ "priceChange24hPercent": "51.74",
+ "volume24h": "27998.4691716877674846",
+ "communityRecognized": true,
+ "key": "evm--1:0x6b7774cb12ed7573a7586e7d0e62a2a563ddd3f0",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x0bc529c00c6401aef6d220be8c6ea1667f6ad93e",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x0bc529c00c6401aef6d220be8c6ea1667f6ad93e.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x0bc529c00c6401aef6d220be8c6ea1667f6ad93e.png"
+ ],
+ "name": "yearn.finance",
+ "symbol": "YFI",
+ "marketCap": "83040784.511229895484876496",
+ "price": "2264.78984648529688225813",
+ "priceChange24hPercent": "-0.68",
+ "volume24h": "1949.267311544988792109",
+ "communityRecognized": true,
+ "key": "evm--1:0x0bc529c00c6401aef6d220be8c6ea1667f6ad93e",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0xcf4d29f14cc585ddd1167f956092852af844e040",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/8e4435c150cb4ada78ce019a188015bf30ad60f917245c32ac6f69eb9aea8dde",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/8e4435c150cb4ada78ce019a188015bf30ad60f917245c32ac6f69eb9aea8dde"
+ ],
+ "name": "Prism",
+ "symbol": "PRISM",
+ "marketCap": "1235349.600642346363882692",
+ "price": "247.06992012846927277654",
+ "priceChange24hPercent": "3.33",
+ "volume24h": "9848.5008946924808317",
+ "communityRecognized": false,
+ "key": "evm--1:0xcf4d29f14cc585ddd1167f956092852af844e040",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0xe41d2489571d322189246dafa5ebde1f4699f498",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xe41d2489571d322189246dafa5ebde1f4699f498.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xe41d2489571d322189246dafa5ebde1f4699f498.png"
+ ],
+ "name": "ZRX",
+ "symbol": "ZRX",
+ "marketCap": "87945333.482793915318585544",
+ "price": "0.10366064329922952868",
+ "priceChange24hPercent": "0.26",
+ "volume24h": "10677.06099459673668164",
+ "communityRecognized": true,
+ "key": "evm--1:0xe41d2489571d322189246dafa5ebde1f4699f498",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x249130f5e2dd4cf278180c0df8273f3592ad1247",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x249130f5e2dd4cf278180c0df8273f3592ad1247-1757752937038.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x249130f5e2dd4cf278180c0df8273f3592ad1247-1757752937038.png"
+ ],
+ "name": "dmt-nat",
+ "symbol": "dmt-nat",
+ "marketCap": "10070602.838551876939472852",
+ "price": "0.00000008183605223409",
+ "priceChange24hPercent": "8.5",
+ "volume24h": "88892.337612998532234142",
+ "communityRecognized": false,
+ "key": "evm--1:0x249130f5e2dd4cf278180c0df8273f3592ad1247",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0xb812837b81a3a6b81d7cd74cfb19a7f2784555e5",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xb812837b81a3a6b81d7cd74cfb19a7f2784555e5-1757750947113.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xb812837b81a3a6b81d7cd74cfb19a7f2784555e5-1757750947113.png"
+ ],
+ "name": "Microsoft (Ondo Tokenized)",
+ "symbol": "MSFTon",
+ "marketCap": "5078051.010709728608843245",
+ "price": "499.626273087059076169",
+ "priceChange24hPercent": "-",
+ "volume24h": "704.00255",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "微软",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--1:0xb812837b81a3a6b81d7cd74cfb19a7f2784555e5",
+ "kind": "stock",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0xb753428af26e81097e7fd17f40c88aaa3e04902c",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xb753428af26e81097e7fd17f40c88aaa3e04902c.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xb753428af26e81097e7fd17f40c88aaa3e04902c.png"
+ ],
+ "name": "Spice",
+ "symbol": "SFI",
+ "marketCap": "14919234.601722163145516909",
+ "price": "149.19234601722163145517",
+ "priceChange24hPercent": "-3.53",
+ "volume24h": "3909.964235294837632",
+ "communityRecognized": false,
+ "key": "evm--1:0xb753428af26e81097e7fd17f40c88aaa3e04902c",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x967da4048cd07ab37855c090aaf366e4ce1b9f48",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x967da4048cd07ab37855c090aaf366e4ce1b9f48.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x967da4048cd07ab37855c090aaf366e4ce1b9f48.png"
+ ],
+ "name": "Ocean Token",
+ "symbol": "OCEAN",
+ "marketCap": "212542658.578105878653802224",
+ "price": "0.15073947416886941748",
+ "priceChange24hPercent": "-0.05",
+ "volume24h": "14975.719000848836742",
+ "communityRecognized": true,
+ "key": "evm--1:0x967da4048cd07ab37855c090aaf366e4ce1b9f48",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x8de39b057cc6522230ab19c0205080a8663331ef",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x8de39b057cc6522230ab19c0205080a8663331ef-1770271422305.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x8de39b057cc6522230ab19c0205080a8663331ef-1770271422305.png"
+ ],
+ "name": "wojak",
+ "symbol": "wojak",
+ "marketCap": "15378843.619726731166986711",
+ "price": "0.00000005027187905948",
+ "priceChange24hPercent": "2.08",
+ "volume24h": "28697.02406399331776893",
+ "communityRecognized": true,
+ "key": "evm--1:0x8de39b057cc6522230ab19c0205080a8663331ef",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0xd533a949740bb3306d119cc777fa900ba034cd52",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xd533a949740bb3306d119cc777fa900ba034cd52.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xd533a949740bb3306d119cc777fa900ba034cd52.png"
+ ],
+ "name": "Curve DAO Token",
+ "symbol": "CRV",
+ "marketCap": "876369329.769418025858573012",
+ "price": "0.36267889083621288676",
+ "priceChange24hPercent": "-1.92",
+ "volume24h": "224343.037843952811557245",
+ "communityRecognized": true,
+ "key": "evm--1:0xd533a949740bb3306d119cc777fa900ba034cd52",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0xc9eef266834730340a55b6cc24621b31baf55581",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xc9eef266834730340a55b6cc24621b31baf55581-1781279504821.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xc9eef266834730340a55b6cc24621b31baf55581-1781279504821.png"
+ ],
+ "name": "SpaceX (Ondo Tokenized)",
+ "symbol": "SPCXon",
+ "marketCap": "6617015.6851552296714885",
+ "price": "149.92005",
+ "priceChange24hPercent": "-",
+ "volume24h": "26217.37679328454353",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "SpaceX",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--1:0xc9eef266834730340a55b6cc24621b31baf55581",
+ "kind": "stock",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0xaa7a9ca87d3694b5755f213b5d04094b8d0f0a6f",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xaa7a9ca87d3694b5755f213b5d04094b8d0f0a6f.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xaa7a9ca87d3694b5755f213b5d04094b8d0f0a6f.png"
+ ],
+ "name": "Trace",
+ "symbol": "TRAC",
+ "marketCap": "152740466.846148294687500017",
+ "price": "0.34149185186286208201",
+ "priceChange24hPercent": "-0.73",
+ "volume24h": "19898.997629155995279061",
+ "communityRecognized": true,
+ "key": "evm--1:0xaa7a9ca87d3694b5755f213b5d04094b8d0f0a6f",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0xb197e02499e6502733c6bce2eb39013c39a03147",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xb197e02499e6502733c6bce2eb39013c39a03147-1776319310050.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xb197e02499e6502733c6bce2eb39013c39a03147-1776319310050.png"
+ ],
+ "name": "Wrapped PROS",
+ "symbol": "PROS",
+ "marketCap": "317027.363943091846581165",
+ "price": "0.43860362821739935865",
+ "priceChange24hPercent": "-4.93",
+ "volume24h": "16407.814422",
+ "communityRecognized": false,
+ "key": "evm--1:0xb197e02499e6502733c6bce2eb39013c39a03147",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0xaea46a60368a7bd060eec7df8cba43b7ef41ad85",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xaea46a60368a7bd060eec7df8cba43b7ef41ad85.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xaea46a60368a7bd060eec7df8cba43b7ef41ad85.png"
+ ],
+ "name": "Fetch",
+ "symbol": "FET",
+ "marketCap": "500674501.700723466328696789",
+ "price": "0.18445231067741700647",
+ "priceChange24hPercent": "0.85",
+ "volume24h": "29167.39990269417177055",
+ "communityRecognized": true,
+ "key": "evm--1:0xaea46a60368a7bd060eec7df8cba43b7ef41ad85",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x4e3fbd56cd56c3e72c1403e103b45db9da5b9d2b",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x4e3fbd56cd56c3e72c1403e103b45db9da5b9d2b.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x4e3fbd56cd56c3e72c1403e103b45db9da5b9d2b.png"
+ ],
+ "name": "Convex Token",
+ "symbol": "CVX",
+ "marketCap": "223296148.305160200678174418",
+ "price": "2.23319982805666313798",
+ "priceChange24hPercent": "0.05",
+ "volume24h": "39908.983375791430242447",
+ "communityRecognized": true,
+ "key": "evm--1:0x4e3fbd56cd56c3e72c1403e103b45db9da5b9d2b",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0xda5e1988097297dcdc1f90d4dfe7909e847cbef6",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xda5e1988097297dcdc1f90d4dfe7909e847cbef6-1756694380364.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xda5e1988097297dcdc1f90d4dfe7909e847cbef6-1756694380364.png"
+ ],
+ "name": "World Liberty Financial",
+ "symbol": "WLFI",
+ "marketCap": "1791219453.864127823673972859",
+ "price": "0.05636829013300601131",
+ "priceChange24hPercent": "-0.02",
+ "volume24h": "2211.3795384747194424",
+ "communityRecognized": true,
+ "key": "evm--1:0xda5e1988097297dcdc1f90d4dfe7909e847cbef6",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x3845badade8e6dff049820680d1f14bd3903a5d0",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x3845badade8e6dff049820680d1f14bd3903a5d0.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x3845badade8e6dff049820680d1f14bd3903a5d0.png"
+ ],
+ "name": "SAND",
+ "symbol": "SAND",
+ "marketCap": "121527159.801150200434141375",
+ "price": "0.04050911306666529185",
+ "priceChange24hPercent": "0.22",
+ "volume24h": "3101.5786191373270848",
+ "communityRecognized": true,
+ "key": "evm--1:0x3845badade8e6dff049820680d1f14bd3903a5d0",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x767fe9edc9e0df98e07454847909b5e959d7ca0e",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x767fe9edc9e0df98e07454847909b5e959d7ca0e.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x767fe9edc9e0df98e07454847909b5e959d7ca0e.png"
+ ],
+ "name": "Illuvium",
+ "symbol": "ILV",
+ "marketCap": "24388265.414656277661768815",
+ "price": "3.31967901730497027982",
+ "priceChange24hPercent": "0.99",
+ "volume24h": "19573.6408209809485523",
+ "communityRecognized": true,
+ "key": "evm--1:0x767fe9edc9e0df98e07454847909b5e959d7ca0e",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0xf411903cbc70a74d22900a5de66a2dda66507255",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xf411903cbc70a74d22900a5de66a2dda66507255.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xf411903cbc70a74d22900a5de66a2dda66507255.png"
+ ],
+ "name": "VERA",
+ "symbol": "VRA",
+ "marketCap": "4899737.996432691919540587",
+ "price": "0.00001728367513698409",
+ "priceChange24hPercent": "-2.21",
+ "volume24h": "1796.061752313119912",
+ "communityRecognized": true,
+ "key": "evm--1:0xf411903cbc70a74d22900a5de66a2dda66507255",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0xa12cc123ba206d4031d1c7f6223d1c2ec249f4f3",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xa12cc123ba206d4031d1c7f6223d1c2ec249f4f3-1765173940271.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xa12cc123ba206d4031d1c7f6223d1c2ec249f4f3-1765173940271.png"
+ ],
+ "name": "Zama",
+ "symbol": "ZAMA",
+ "marketCap": "130340692.466254388020277987",
+ "price": "0.05225030584040281925",
+ "priceChange24hPercent": "2.21",
+ "volume24h": "115767.13101696079",
+ "communityRecognized": true,
+ "key": "evm--1:0xa12cc123ba206d4031d1c7f6223d1c2ec249f4f3",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x232ce3bd40fcd6f80f3d55a522d03f25df784ee2",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x232ce3bd40fcd6f80f3d55a522d03f25df784ee2-1783322585018.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x232ce3bd40fcd6f80f3d55a522d03f25df784ee2-1783322585018.png"
+ ],
+ "name": "Lighter",
+ "symbol": "LIT",
+ "marketCap": "1160662782.276054865654467756",
+ "price": "4.64265112910421946262",
+ "priceChange24hPercent": "-2.06",
+ "volume24h": "102315.33561525456987956",
+ "communityRecognized": true,
+ "key": "evm--1:0x232ce3bd40fcd6f80f3d55a522d03f25df784ee2",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x7fc66500c84a76ad7e9c93437bfc5ac33e2ddae9",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x7fc66500c84a76ad7e9c93437bfc5ac33e2ddae9-1768204923952.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x7fc66500c84a76ad7e9c93437bfc5ac33e2ddae9-1768204923952.png"
+ ],
+ "name": "Aave",
+ "symbol": "AAVE",
+ "marketCap": "2097478577.173776740252401922",
+ "price": "131.09241107415034631128",
+ "priceChange24hPercent": "-0.72",
+ "volume24h": "228083.306911413199848437",
+ "communityRecognized": true,
+ "key": "evm--1:0x7fc66500c84a76ad7e9c93437bfc5ac33e2ddae9",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x9d65ff81a3c488d585bbfb0bfe3c7707c7917f54",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x9d65ff81a3c488d585bbfb0bfe3c7707c7917f54.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x9d65ff81a3c488d585bbfb0bfe3c7707c7917f54.png"
+ ],
+ "name": "SSV Token",
+ "symbol": "SSV",
+ "marketCap": "46613756.160945666344598772",
+ "price": "2.92587376714468440453",
+ "priceChange24hPercent": "0.07",
+ "volume24h": "1594.31713292748240935",
+ "communityRecognized": true,
+ "key": "evm--1:0x9d65ff81a3c488d585bbfb0bfe3c7707c7917f54",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x69af81e73a73b40adf4f3d4223cd9b1ece623074",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x69af81e73a73b40adf4f3d4223cd9b1ece623074.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x69af81e73a73b40adf4f3d4223cd9b1ece623074.png"
+ ],
+ "name": "Mask Network",
+ "symbol": "MASK",
+ "marketCap": "47330858.823747443860373263",
+ "price": "0.4733085882374744386",
+ "priceChange24hPercent": "-0.33",
+ "volume24h": "3973.686763330600014413",
+ "communityRecognized": true,
+ "key": "evm--1:0x69af81e73a73b40adf4f3d4223cd9b1ece623074",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x759f8b83db57033aed95545694f6ada480b6e987",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x759f8b83db57033aed95545694f6ada480b6e987-1780034717145.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x759f8b83db57033aed95545694f6ada480b6e987-1780034717145.png"
+ ],
+ "name": "Dogeus Maximus",
+ "symbol": "DOGEUS",
+ "marketCap": "206682.064568781002170521",
+ "price": "0.000206682064568781",
+ "priceChange24hPercent": "1.58",
+ "volume24h": "1120.5160742295298182",
+ "communityRecognized": false,
+ "key": "evm--1:0x759f8b83db57033aed95545694f6ada480b6e987",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0xb528edbef013aff855ac3c50b381f253af13b997",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xb528edbef013aff855ac3c50b381f253af13b997.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xb528edbef013aff855ac3c50b381f253af13b997.png"
+ ],
+ "name": "Aevo",
+ "symbol": "AEVO",
+ "marketCap": "21046597.406811732837059353",
+ "price": "0.02385629309534059658",
+ "priceChange24hPercent": "0.6",
+ "volume24h": "10810.659421",
+ "communityRecognized": true,
+ "key": "evm--1:0xb528edbef013aff855ac3c50b381f253af13b997",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x6f40d4a6237c257fff2db00fa0510deeecd303eb",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x6f40d4a6237c257fff2db00fa0510deeecd303eb.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x6f40d4a6237c257fff2db00fa0510deeecd303eb.png"
+ ],
+ "name": "Fluid",
+ "symbol": "FLUID",
+ "marketCap": "127007712.845487003389319166",
+ "price": "1.27007712845487003389",
+ "priceChange24hPercent": "-1.22",
+ "volume24h": "4247.021701279372314835",
+ "communityRecognized": true,
+ "key": "evm--1:0x6f40d4a6237c257fff2db00fa0510deeecd303eb",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x152649ea73beab28c5b49b26eb48f7ead6d4c898",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x152649ea73beab28c5b49b26eb48f7ead6d4c898-1722500864906.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x152649ea73beab28c5b49b26eb48f7ead6d4c898-1722500864906.png"
+ ],
+ "name": "PancakeSwap Token",
+ "symbol": "Cake",
+ "marketCap": "12131398.244215974526374809",
+ "price": "2.22150660119196165068",
+ "priceChange24hPercent": "-0.68",
+ "volume24h": "62260.8148425631741939",
+ "communityRecognized": true,
+ "key": "evm--1:0x152649ea73beab28c5b49b26eb48f7ead6d4c898",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x28d38df637db75533bd3f71426f3410a82041544",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x28d38df637db75533bd3f71426f3410a82041544-1757666051889.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x28d38df637db75533bd3f71426f3410a82041544-1757666051889.png"
+ ],
+ "name": "Prompt",
+ "symbol": "PROMPT",
+ "marketCap": "5382704.168164475100106797",
+ "price": "0.02404062911930872189",
+ "priceChange24hPercent": "0.76",
+ "volume24h": "535.072063",
+ "communityRecognized": true,
+ "key": "evm--1:0x28d38df637db75533bd3f71426f3410a82041544",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x66761fa41377003622aee3c7675fc7b5c1c2fac5",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x66761fa41377003622aee3c7675fc7b5c1c2fac5.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x66761fa41377003622aee3c7675fc7b5c1c2fac5.png"
+ ],
+ "name": "Clearpool",
+ "symbol": "CPOOL",
+ "marketCap": "21189064.22374286427785127",
+ "price": "0.02118906422374286428",
+ "priceChange24hPercent": "3.1",
+ "volume24h": "8351.260416557795468",
+ "communityRecognized": true,
+ "key": "evm--1:0x66761fa41377003622aee3c7675fc7b5c1c2fac5",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x582d872a1b094fc48f5de31d3b73f2d9be47def1",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x582d872a1b094fc48f5de31d3b73f2d9be47def1.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x582d872a1b094fc48f5de31d3b73f2d9be47def1.png"
+ ],
+ "name": "Wrapped TON Coin",
+ "symbol": "TONCOIN",
+ "marketCap": "13203044.166941529452144303",
+ "price": "1.42080905643997587737",
+ "priceChange24hPercent": "-1.64",
+ "volume24h": "3275.3729264715870943",
+ "communityRecognized": true,
+ "key": "evm--1:0x582d872a1b094fc48f5de31d3b73f2d9be47def1",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x1776e1f26f98b1a5df9cd347953a26dd3cb46671",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x1776e1f26f98b1a5df9cd347953a26dd3cb46671.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x1776e1f26f98b1a5df9cd347953a26dd3cb46671.png"
+ ],
+ "name": "Numeraire",
+ "symbol": "NMR",
+ "marketCap": "70680937.364584476149988512",
+ "price": "9.43819583006719285331",
+ "priceChange24hPercent": "2.5",
+ "volume24h": "880.0201377498556365",
+ "communityRecognized": true,
+ "key": "evm--1:0x1776e1f26f98b1a5df9cd347953a26dd3cb46671",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x4507cef57c46789ef8d1a19ea45f4216bae2b528",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x4507cef57c46789ef8d1a19ea45f4216bae2b528-1754549170998.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x4507cef57c46789ef8d1a19ea45f4216bae2b528-1754549170998.png"
+ ],
+ "name": "TokenFi",
+ "symbol": "TOKEN",
+ "marketCap": "10837441.055623667327551628",
+ "price": "0.00216748821112473347",
+ "priceChange24hPercent": "0.51",
+ "volume24h": "2985.394061568169249",
+ "communityRecognized": true,
+ "key": "evm--1:0x4507cef57c46789ef8d1a19ea45f4216bae2b528",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0xc011a73ee8576fb46f5e1c5751ca3b9fe0af2a6f",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xc011a73ee8576fb46f5e1c5751ca3b9fe0af2a6f.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xc011a73ee8576fb46f5e1c5751ca3b9fe0af2a6f.png"
+ ],
+ "name": "Synthetix Network Token",
+ "symbol": "SNX",
+ "marketCap": "130232023.226110582145209608",
+ "price": "0.22399566076364685059",
+ "priceChange24hPercent": "0.81",
+ "volume24h": "1923.327982336662032986",
+ "communityRecognized": true,
+ "key": "evm--1:0xc011a73ee8576fb46f5e1c5751ca3b9fe0af2a6f",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x6c5ba91642f10282b576d91922ae6448c9d52f4e",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x6c5ba91642f10282b576d91922ae6448c9d52f4e.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x6c5ba91642f10282b576d91922ae6448c9d52f4e.png"
+ ],
+ "name": "Phala",
+ "symbol": "PHA",
+ "marketCap": "26795671.931691333553662769",
+ "price": "0.02679567193169133355",
+ "priceChange24hPercent": "1.3",
+ "volume24h": "1910.695507654772902",
+ "communityRecognized": true,
+ "key": "evm--1:0x6c5ba91642f10282b576d91922ae6448c9d52f4e",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x4691937a7508860f876c9c0a2a617e7d9e945d4b",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x4691937a7508860f876c9c0a2a617e7d9e945d4b.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x4691937a7508860f876c9c0a2a617e7d9e945d4b.png"
+ ],
+ "name": "Wootrade Network",
+ "symbol": "WOO",
+ "marketCap": "21997289.356453419960463444",
+ "price": "0.01164583190173984521",
+ "priceChange24hPercent": "-0.4",
+ "volume24h": "8156.7905545553203371",
+ "communityRecognized": true,
+ "key": "evm--1:0x4691937a7508860f876c9c0a2a617e7d9e945d4b",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0xfe0c30065b384f05761f15d0cc899d4f9f9cc0eb",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xfe0c30065b384f05761f15d0cc899d4f9f9cc0eb.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xfe0c30065b384f05761f15d0cc899d4f9f9cc0eb.png"
+ ],
+ "name": "ether.fi governance token",
+ "symbol": "ETHFI",
+ "marketCap": "561556279.510491888642734434",
+ "price": "0.58171262185786697948",
+ "priceChange24hPercent": "-1.54",
+ "volume24h": "51332.94265395583021527",
+ "communityRecognized": true,
+ "key": "evm--1:0xfe0c30065b384f05761f15d0cc899d4f9f9cc0eb",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x50d1c9771902476076ecfc8b2a83ad6b9355a4c9",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x50d1c9771902476076ecfc8b2a83ad6b9355a4c9.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x50d1c9771902476076ecfc8b2a83ad6b9355a4c9.png"
+ ],
+ "name": "FTX Token",
+ "symbol": "FTT",
+ "marketCap": "73531486.653551077736124711",
+ "price": "0.22357124141141900137",
+ "priceChange24hPercent": "-0.45",
+ "volume24h": "501.293520817154818533",
+ "communityRecognized": true,
+ "key": "evm--1:0x50d1c9771902476076ecfc8b2a83ad6b9355a4c9",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x6982508145454ce325ddbe47a25d4ec3d2311933",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x6982508145454ce325ddbe47a25d4ec3d2311933.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x6982508145454ce325ddbe47a25d4ec3d2311933.png"
+ ],
+ "name": "Pepe",
+ "symbol": "PEPE",
+ "marketCap": "1493558240.201236645376560347",
+ "price": "0.00000360961340628093",
+ "priceChange24hPercent": "-0.5",
+ "volume24h": "186529.886661495879644197",
+ "communityRecognized": true,
+ "key": "evm--1:0x6982508145454ce325ddbe47a25d4ec3d2311933",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x808507121b80c02388fad14726482e061b8da827",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x808507121b80c02388fad14726482e061b8da827.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x808507121b80c02388fad14726482e061b8da827.png"
+ ],
+ "name": "Pendle",
+ "symbol": "PENDLE",
+ "marketCap": "621081372.659827901108210996",
+ "price": "2.20611303111111111322",
+ "priceChange24hPercent": "-1.85",
+ "volume24h": "135153.136651637385600058",
+ "communityRecognized": true,
+ "key": "evm--1:0x808507121b80c02388fad14726482e061b8da827",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x55296f69f40ea6d20e478533c15a6b08b654e758",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x55296f69f40ea6d20e478533c15a6b08b654e758.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x55296f69f40ea6d20e478533c15a6b08b654e758.png"
+ ],
+ "name": "XY Oracle",
+ "symbol": "XYO",
+ "marketCap": "50891906.336154075144461798",
+ "price": "0.00365317179595353189",
+ "priceChange24hPercent": "1.66",
+ "volume24h": "15462.72831484381968099",
+ "communityRecognized": true,
+ "key": "evm--1:0x55296f69f40ea6d20e478533c15a6b08b654e758",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x12970e6868f88f6557b76120662c1b3e50a646bf",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x12970e6868f88f6557b76120662c1b3e50a646bf.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x12970e6868f88f6557b76120662c1b3e50a646bf.png"
+ ],
+ "name": "Milady",
+ "symbol": "LADYS",
+ "marketCap": "6405808.461562543221833342",
+ "price": "0.00000000721374230671",
+ "priceChange24hPercent": "0.52",
+ "volume24h": "2196.293158898736224",
+ "communityRecognized": true,
+ "key": "evm--1:0x12970e6868f88f6557b76120662c1b3e50a646bf",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0xbe0ed4138121ecfc5c0e56b40517da27e6c5226b",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xbe0ed4138121ecfc5c0e56b40517da27e6c5226b.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xbe0ed4138121ecfc5c0e56b40517da27e6c5226b.png"
+ ],
+ "name": "Aethir Token",
+ "symbol": "ATH",
+ "marketCap": "99263854.029701203925986804",
+ "price": "0.00493144293933574565",
+ "priceChange24hPercent": "3.29",
+ "volume24h": "15160.865170505298716374",
+ "communityRecognized": true,
+ "key": "evm--1:0xbe0ed4138121ecfc5c0e56b40517da27e6c5226b",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x0001a500a6b18995b03f44bb040a5ffc28e45cb0",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x0001a500a6b18995b03f44bb040a5ffc28e45cb0.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x0001a500a6b18995b03f44bb040a5ffc28e45cb0.png"
+ ],
+ "name": "Autonolas",
+ "symbol": "OLAS",
+ "marketCap": "14889150.2750985578978088",
+ "price": "0.02815627108303329648",
+ "priceChange24hPercent": "0.9",
+ "volume24h": "6531.93406782999659065",
+ "communityRecognized": true,
+ "key": "evm--1:0x0001a500a6b18995b03f44bb040a5ffc28e45cb0",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x3b48f83e525268c08426aaa337c3f08f501c824d",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/be7c533498af45f72d35d03413ecc2ca2cb6a3af601c1cd47f3a7c07b88793c1",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/be7c533498af45f72d35d03413ecc2ca2cb6a3af601c1cd47f3a7c07b88793c1"
+ ],
+ "name": "Ethereum Cat",
+ "symbol": "Gio",
+ "marketCap": "232119.066503122231903829",
+ "price": "0.00023211906650312223",
+ "priceChange24hPercent": "70.05",
+ "volume24h": "47138.027548980139703255",
+ "communityRecognized": false,
+ "key": "evm--1:0x3b48f83e525268c08426aaa337c3f08f501c824d",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x467bccd9d29f223bce8043b84e8c8b282827790f",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x467bccd9d29f223bce8043b84e8c8b282827790f.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x467bccd9d29f223bce8043b84e8c8b282827790f.png"
+ ],
+ "name": "Telcoin",
+ "symbol": "TEL",
+ "marketCap": "169668416.934327001657695401",
+ "price": "0.00169668416934327002",
+ "priceChange24hPercent": "-0.46",
+ "volume24h": "4160.9982542423886744",
+ "communityRecognized": true,
+ "key": "evm--1:0x467bccd9d29f223bce8043b84e8c8b282827790f",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x455e53cbb86018ac2b8092fdcd39d8444affc3f6",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x455e53cbb86018ac2b8092fdcd39d8444affc3f6.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x455e53cbb86018ac2b8092fdcd39d8444affc3f6.png"
+ ],
+ "name": "Polygon Ecosystem Token",
+ "symbol": "POL",
+ "marketCap": "1019724022.912920713184625191",
+ "price": "0.09520684289491281305",
+ "priceChange24hPercent": "0.21",
+ "volume24h": "1607.8684078687200901",
+ "communityRecognized": true,
+ "key": "evm--1:0x455e53cbb86018ac2b8092fdcd39d8444affc3f6",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0xcabd955322dfbf94c084929ac5e9eca3feb5556f",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xcabd955322dfbf94c084929ac5e9eca3feb5556f-1757752473436.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xcabd955322dfbf94c084929ac5e9eca3feb5556f-1757752473436.png"
+ ],
+ "name": "MicroStrategy (Ondo Tokenized)",
+ "symbol": "MSTRon",
+ "marketCap": "7417925.74044011110765801",
+ "price": "141.088235",
+ "priceChange24hPercent": "-",
+ "volume24h": "2672.33853564938536",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "微策略",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--1:0xcabd955322dfbf94c084929ac5e9eca3feb5556f",
+ "kind": "stock",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0xfdcd8be9dd37cf982472d30eeee4ec50a0296953",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xfdcd8be9dd37cf982472d30eeee4ec50a0296953-1784354408128.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xfdcd8be9dd37cf982472d30eeee4ec50a0296953-1784354408128.png"
+ ],
+ "name": "Investor Brand Network Ai",
+ "symbol": "IBNAi",
+ "marketCap": "498872.75974993140661978",
+ "price": "0.00049887275974993141",
+ "priceChange24hPercent": "-9.11",
+ "volume24h": "7010.631267778533052221",
+ "communityRecognized": false,
+ "key": "evm--1:0xfdcd8be9dd37cf982472d30eeee4ec50a0296953",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0xc20059e0317de91738d13af027dfc4a50781b066",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xc20059e0317de91738d13af027dfc4a50781b066-1757666467162.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xc20059e0317de91738d13af027dfc4a50781b066-1757666467162.png"
+ ],
+ "name": "Spark",
+ "symbol": "SPK",
+ "marketCap": "68452227.498357073041652443",
+ "price": "0.02086256511743863588",
+ "priceChange24hPercent": "0.11",
+ "volume24h": "50778.56305679313214",
+ "communityRecognized": true,
+ "key": "evm--1:0xc20059e0317de91738d13af027dfc4a50781b066",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0xaff2565091e7207191dbe340b8528d02fa78d044",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xaff2565091e7207191dbe340b8528d02fa78d044-1776579686042.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xaff2565091e7207191dbe340b8528d02fa78d044-1776579686042.png"
+ ],
+ "name": "Asteroid",
+ "symbol": "ASTEROID",
+ "marketCap": "2160137.135913627904826177",
+ "price": "0.0021601371359136279",
+ "priceChange24hPercent": "-5.49",
+ "volume24h": "12371.8631894340199864",
+ "communityRecognized": true,
+ "key": "evm--1:0xaff2565091e7207191dbe340b8528d02fa78d044",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x0d8775f648430679a709e98d2b0cb6250d2887ef",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x0d8775f648430679a709e98d2b0cb6250d2887ef.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x0d8775f648430679a709e98d2b0cb6250d2887ef.png"
+ ],
+ "name": "BAT",
+ "symbol": "BAT",
+ "marketCap": "113885196.822180145897867722",
+ "price": "0.07595049476386025008",
+ "priceChange24hPercent": "2.21",
+ "volume24h": "9082.66794407024385401",
+ "communityRecognized": true,
+ "key": "evm--1:0x0d8775f648430679a709e98d2b0cb6250d2887ef",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ }
+ ],
+ "trending|evm--1|24h|all": [
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x8602b2fd8d105a56d3152e936e66b1d414142148",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/46be4fa022c8cf4f26df79bb27838188b1097a22d2d5668c723c6177a9bad8e6",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/46be4fa022c8cf4f26df79bb27838188b1097a22d2d5668c723c6177a9bad8e6"
+ ],
+ "name": "Artificial Pepe",
+ "symbol": "AP",
+ "marketCap": "1104363.861105462063331123",
+ "price": "0.00110436386110546206",
+ "priceChange24hPercent": "-41.01",
+ "volume24h": "259287.447552382172059949",
+ "communityRecognized": false,
+ "key": "evm--1:0x8602b2fd8d105a56d3152e936e66b1d414142148",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0xe76c5b78f93909d34404e9eb4c1f19e7582a5de1",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xe76c5b78f93909d34404e9eb4c1f19e7582a5de1-1781762787714.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xe76c5b78f93909d34404e9eb4c1f19e7582a5de1-1781762787714.png"
+ ],
+ "name": "Humanity",
+ "symbol": "H",
+ "marketCap": "762388797.168415827831652156",
+ "price": "0.07623887971684158278",
+ "priceChange24hPercent": "-0.5",
+ "volume24h": "126513.21581234089",
+ "communityRecognized": true,
+ "key": "evm--1:0xe76c5b78f93909d34404e9eb4c1f19e7582a5de1",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x514910771af9ca656af840dff83e8264ecf986ca",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x514910771af9ca656af840dff83e8264ecf986ca.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x514910771af9ca656af840dff83e8264ecf986ca.png"
+ ],
+ "name": "ChainLink Token",
+ "symbol": "LINK",
+ "marketCap": "12595838798.640615720251183561",
+ "price": "12.59583966012281479998",
+ "priceChange24hPercent": "-3.84",
+ "volume24h": "5797829.926845522118085494",
+ "communityRecognized": true,
+ "key": "evm--1:0x514910771af9ca656af840dff83e8264ecf986ca",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0xc9eef266834730340a55b6cc24621b31baf55581",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xc9eef266834730340a55b6cc24621b31baf55581-1781279504821.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xc9eef266834730340a55b6cc24621b31baf55581-1781279504821.png"
+ ],
+ "name": "SpaceX (Ondo Tokenized)",
+ "symbol": "SPCXon",
+ "marketCap": "6617015.6851552296714885",
+ "price": "149.92005",
+ "priceChange24hPercent": "-0.78",
+ "volume24h": "558481.8517326951016132",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "SpaceX",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--1:0xc9eef266834730340a55b6cc24621b31baf55581",
+ "kind": "stock",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x1f9840a85d5af5bf1d1762f925bdaddc4201f984",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x1f9840a85d5af5bf1d1762f925bdaddc4201f984.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x1f9840a85d5af5bf1d1762f925bdaddc4201f984.png"
+ ],
+ "name": "Uniswap",
+ "symbol": "UNI",
+ "marketCap": "6982667914.809130319494285264",
+ "price": "6.98270981484155235271",
+ "priceChange24hPercent": "-0.5",
+ "volume24h": "11477372.282655130951397008",
+ "communityRecognized": true,
+ "key": "evm--1:0x1f9840a85d5af5bf1d1762f925bdaddc4201f984",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x5886e4d8d6a41a5ea2f3f77f23d7a7e942d581f1",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/83c4bb2e3cda0cf67f98df6bc39151db6bcd2a9628bdb21585d1b0bfce38dc2a",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/83c4bb2e3cda0cf67f98df6bc39151db6bcd2a9628bdb21585d1b0bfce38dc2a"
+ ],
+ "name": "Klik",
+ "symbol": "KLIK",
+ "marketCap": "4134378.928421985789081628",
+ "price": "0.00420796368247015225",
+ "priceChange24hPercent": "11.16",
+ "volume24h": "560460.355933548143825694",
+ "communityRecognized": false,
+ "key": "evm--1:0x5886e4d8d6a41a5ea2f3f77f23d7a7e942d581f1",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x45804880de22913dafe09f4980848ece6ecbaf78",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x45804880de22913dafe09f4980848ece6ecbaf78.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x45804880de22913dafe09f4980848ece6ecbaf78.png"
+ ],
+ "name": "PAX Gold",
+ "symbol": "PAXG",
+ "marketCap": "1909008770.773613853448246035",
+ "price": "4439.69364949688523130396",
+ "priceChange24hPercent": "0.73",
+ "volume24h": "1576507.371616971145685475",
+ "communityRecognized": true,
+ "key": "evm--1:0x45804880de22913dafe09f4980848ece6ecbaf78",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0xf280b16ef293d8e534e370794ef26bf312694126",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xf280b16ef293d8e534e370794ef26bf312694126-1727226900185.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xf280b16ef293d8e534e370794ef26bf312694126-1727226900185.png"
+ ],
+ "name": "Asteroid Shiba",
+ "symbol": "ASTEROID",
+ "marketCap": "7417961.835628052508944778",
+ "price": "0.00001763284564793091",
+ "priceChange24hPercent": "-16.67",
+ "volume24h": "506150.627601501657999059",
+ "communityRecognized": true,
+ "key": "evm--1:0xf280b16ef293d8e534e370794ef26bf312694126",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x4d224452801aced8b2f0aebe155379bb5d594381",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x4d224452801aced8b2f0aebe155379bb5d594381.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x4d224452801aced8b2f0aebe155379bb5d594381.png"
+ ],
+ "name": "ApeCoin",
+ "symbol": "APE",
+ "marketCap": "145538261.312580194925814975",
+ "price": "0.14554115661043842365",
+ "priceChange24hPercent": "2.2",
+ "volume24h": "125964.156239051083414528",
+ "communityRecognized": true,
+ "key": "evm--1:0x4d224452801aced8b2f0aebe155379bb5d594381",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x6de037ef9ad2725eb40118bb1702ebb27e4aeb24",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x6de037ef9ad2725eb40118bb1702ebb27e4aeb24.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x6de037ef9ad2725eb40118bb1702ebb27e4aeb24.png"
+ ],
+ "name": "Render Token",
+ "symbol": "RNDR",
+ "marketCap": "824262821.040543541994980321",
+ "price": "1.54491651271921396845",
+ "priceChange24hPercent": "1.21",
+ "volume24h": "246481.7494313788287383",
+ "communityRecognized": true,
+ "key": "evm--1:0x6de037ef9ad2725eb40118bb1702ebb27e4aeb24",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0xe172e9b6cfbeeb5593bdce3f077356fdb33af904",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xe172e9b6cfbeeb5593bdce3f077356fdb33af904-1786601267038.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xe172e9b6cfbeeb5593bdce3f077356fdb33af904-1786601267038.png"
+ ],
+ "name": "Interfold",
+ "symbol": "FOLD",
+ "marketCap": "18062751.219704692925179986",
+ "price": "0.05553989254753694462",
+ "priceChange24hPercent": "-0.31",
+ "volume24h": "564070.49329443444642095",
+ "communityRecognized": false,
+ "key": "evm--1:0xe172e9b6cfbeeb5593bdce3f077356fdb33af904",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x5afe3855358e112b5647b952709e6165e1c1eeee",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x5afe3855358e112b5647b952709e6165e1c1eeee.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x5afe3855358e112b5647b952709e6165e1c1eeee.png"
+ ],
+ "name": "Safe Token",
+ "symbol": "SAFE",
+ "marketCap": "81163050.466233622609361953",
+ "price": "0.10468500797680307475",
+ "priceChange24hPercent": "5.27",
+ "volume24h": "93487.034726330327338385",
+ "communityRecognized": true,
+ "key": "evm--1:0x5afe3855358e112b5647b952709e6165e1c1eeee",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x58d97b57bb95320f9a05dc918aef65434969c2b2",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x58d97b57bb95320f9a05dc918aef65434969c2b2-1732155300090.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x58d97b57bb95320f9a05dc918aef65434969c2b2-1732155300090.png"
+ ],
+ "name": "Morpho Token",
+ "symbol": "MORPHO",
+ "marketCap": "1689975371.571344596591133167",
+ "price": "2.45376816154570072525",
+ "priceChange24hPercent": "-5.11",
+ "volume24h": "217364.048106950711074265",
+ "communityRecognized": true,
+ "key": "evm--1:0x58d97b57bb95320f9a05dc918aef65434969c2b2",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x44b28991b167582f18ba0259e0173176ca125505",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x44b28991b167582f18ba0259e0173176ca125505-1776492205735.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x44b28991b167582f18ba0259e0173176ca125505-1776492205735.png"
+ ],
+ "name": "Unipeg",
+ "symbol": "uPEG",
+ "marketCap": "1679504.65137640140809086",
+ "price": "167.97818153759384379331",
+ "priceChange24hPercent": "-13.74",
+ "volume24h": "112373.68960840547005355",
+ "communityRecognized": false,
+ "key": "evm--1:0x44b28991b167582f18ba0259e0173176ca125505",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0xb50721bcf8d664c30412cfbc6cf7a15145234ad1",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xb50721bcf8d664c30412cfbc6cf7a15145234ad1.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xb50721bcf8d664c30412cfbc6cf7a15145234ad1.png"
+ ],
+ "name": "Arbitrum",
+ "symbol": "ARB",
+ "marketCap": "37965118.588461013168066961",
+ "price": "0.17053056603354301373",
+ "priceChange24hPercent": "-2.86",
+ "volume24h": "181114.247712684896570861",
+ "communityRecognized": true,
+ "key": "evm--1:0xb50721bcf8d664c30412cfbc6cf7a15145234ad1",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x6b3595068778dd592e39a122f4f5a5cf09c90fe2",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x6b3595068778dd592e39a122f4f5a5cf09c90fe2.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x6b3595068778dd592e39a122f4f5a5cf09c90fe2.png"
+ ],
+ "name": "SushiToken",
+ "symbol": "SUSHI",
+ "marketCap": "68988258.86198907047886201",
+ "price": "0.23665443322790596392",
+ "priceChange24hPercent": "-1.55",
+ "volume24h": "124484.419273152820730667",
+ "communityRecognized": true,
+ "key": "evm--1:0x6b3595068778dd592e39a122f4f5a5cf09c90fe2",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x163f8c2467924be0ae7b5347228cabf260318753",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x163f8c2467924be0ae7b5347228cabf260318753.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x163f8c2467924be0ae7b5347228cabf260318753.png"
+ ],
+ "name": "Worldcoin",
+ "symbol": "WLD",
+ "marketCap": "4740302961.667240564166855584",
+ "price": "0.47403029616672405642",
+ "priceChange24hPercent": "14.08",
+ "volume24h": "247113.603545003493122204",
+ "communityRecognized": true,
+ "key": "evm--1:0x163f8c2467924be0ae7b5347228cabf260318753",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0xe28b3b32b6c345a34ff64674606124dd5aceca30",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xe28b3b32b6c345a34ff64674606124dd5aceca30.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xe28b3b32b6c345a34ff64674606124dd5aceca30.png"
+ ],
+ "name": "Injective Token",
+ "symbol": "INJ",
+ "marketCap": "652548679.90277936730835885",
+ "price": "6.52548679917592222342",
+ "priceChange24hPercent": "18.68",
+ "volume24h": "836877.778700916874043017",
+ "communityRecognized": true,
+ "key": "evm--1:0xe28b3b32b6c345a34ff64674606124dd5aceca30",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0xec53bf9167f50cdeb3ae105f56099aaab9061f83",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xec53bf9167f50cdeb3ae105f56099aaab9061f83-1727837100115.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xec53bf9167f50cdeb3ae105f56099aaab9061f83-1727837100115.png"
+ ],
+ "name": "Eigen",
+ "symbol": "EIGEN",
+ "marketCap": "200518858.285838481625806543",
+ "price": "0.21781991470018400732",
+ "priceChange24hPercent": "2.74",
+ "volume24h": "34849.091442955670049598",
+ "communityRecognized": true,
+ "key": "evm--1:0xec53bf9167f50cdeb3ae105f56099aaab9061f83",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x72e4f9f808c49a2a61de9c5896298920dc4eeea9",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x72e4f9f808c49a2a61de9c5896298920dc4eeea9.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x72e4f9f808c49a2a61de9c5896298920dc4eeea9.png"
+ ],
+ "name": "HarryPotterObamaSonic10Inu",
+ "symbol": "BITCOIN",
+ "marketCap": "18075724.889706554310507744",
+ "price": "0.01807937412097600271",
+ "priceChange24hPercent": "-3.14",
+ "volume24h": "40236.492907987937137957",
+ "communityRecognized": true,
+ "key": "evm--1:0x72e4f9f808c49a2a61de9c5896298920dc4eeea9",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x0d8775f648430679a709e98d2b0cb6250d2887ef",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x0d8775f648430679a709e98d2b0cb6250d2887ef.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x0d8775f648430679a709e98d2b0cb6250d2887ef.png"
+ ],
+ "name": "BAT",
+ "symbol": "BAT",
+ "marketCap": "113885196.822180145897867722",
+ "price": "0.07595049476386025008",
+ "priceChange24hPercent": "2.31",
+ "volume24h": "26565.198913206884187374",
+ "communityRecognized": true,
+ "key": "evm--1:0x0d8775f648430679a709e98d2b0cb6250d2887ef",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x808507121b80c02388fad14726482e061b8da827",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x808507121b80c02388fad14726482e061b8da827.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x808507121b80c02388fad14726482e061b8da827.png"
+ ],
+ "name": "Pendle",
+ "symbol": "PENDLE",
+ "marketCap": "621081372.659827901108210996",
+ "price": "2.20611303111111111322",
+ "priceChange24hPercent": "7.38",
+ "volume24h": "463905.930171333825441635",
+ "communityRecognized": true,
+ "key": "evm--1:0x808507121b80c02388fad14726482e061b8da827",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x5ab3d4c385b400f3abb49e80de2faf6a88a7b691",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x5ab3d4c385b400f3abb49e80de2faf6a88a7b691-1786773628094.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x5ab3d4c385b400f3abb49e80de2faf6a88a7b691-1786773628094.png"
+ ],
+ "name": "FLock.io",
+ "symbol": "FLOCK",
+ "marketCap": "23801.192070825717112147",
+ "price": "0.06192209689038530138",
+ "priceChange24hPercent": "-16.21",
+ "volume24h": "26669.7259078713035748",
+ "communityRecognized": false,
+ "key": "evm--1:0x5ab3d4c385b400f3abb49e80de2faf6a88a7b691",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0xf6b1117ec07684d3958cad8beb1b302bfd21103f",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xf6b1117ec07684d3958cad8beb1b302bfd21103f-1757751861947.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xf6b1117ec07684d3958cad8beb1b302bfd21103f-1757751861947.png"
+ ],
+ "name": "Tesla (Ondo Tokenized)",
+ "symbol": "TSLAon",
+ "marketCap": "6195761.736132678944775512",
+ "price": "356.316154",
+ "priceChange24hPercent": "-1.35",
+ "volume24h": "229197.7845738287947581",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "特斯拉",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--1:0xf6b1117ec07684d3958cad8beb1b302bfd21103f",
+ "kind": "stock",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x318f96bbfd417e795ee530ec9677a4cea320c8cd",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x318f96bbfd417e795ee530ec9677a4cea320c8cd-1788156202266.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x318f96bbfd417e795ee530ec9677a4cea320c8cd-1788156202266.png"
+ ],
+ "name": "Unistreet 2.0",
+ "symbol": "UNISTREET",
+ "marketCap": "48240.138685214762346042",
+ "price": "0.0499921687803403377",
+ "priceChange24hPercent": "-31.3",
+ "volume24h": "12293.468559",
+ "communityRecognized": false,
+ "key": "evm--1:0x318f96bbfd417e795ee530ec9677a4cea320c8cd",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0xfe0c30065b384f05761f15d0cc899d4f9f9cc0eb",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xfe0c30065b384f05761f15d0cc899d4f9f9cc0eb.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xfe0c30065b384f05761f15d0cc899d4f9f9cc0eb.png"
+ ],
+ "name": "ether.fi governance token",
+ "symbol": "ETHFI",
+ "marketCap": "561556279.510491888642734434",
+ "price": "0.58171262185786697948",
+ "priceChange24hPercent": "1.82",
+ "volume24h": "433928.500562283464092055",
+ "communityRecognized": true,
+ "key": "evm--1:0xfe0c30065b384f05761f15d0cc899d4f9f9cc0eb",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x7fc66500c84a76ad7e9c93437bfc5ac33e2ddae9",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x7fc66500c84a76ad7e9c93437bfc5ac33e2ddae9-1768204923952.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x7fc66500c84a76ad7e9c93437bfc5ac33e2ddae9-1768204923952.png"
+ ],
+ "name": "Aave",
+ "symbol": "AAVE",
+ "marketCap": "2097478577.173776740252401922",
+ "price": "131.09241107415034631128",
+ "priceChange24hPercent": "-1.93",
+ "volume24h": "2573623.79015097575942156",
+ "communityRecognized": true,
+ "key": "evm--1:0x7fc66500c84a76ad7e9c93437bfc5ac33e2ddae9",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x2d1f7226bd1f780af6b9a49dcc0ae00e8df4bdee",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x2d1f7226bd1f780af6b9a49dcc0ae00e8df4bdee-1757752431638.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x2d1f7226bd1f780af6b9a49dcc0ae00e8df4bdee-1757752431638.png"
+ ],
+ "name": "NVIDIA (Ondo Tokenized)",
+ "symbol": "NVDAon",
+ "marketCap": "18182781.849522944090312949",
+ "price": "233.018432579261589288",
+ "priceChange24hPercent": "0.31",
+ "volume24h": "1151227.73716182259742768",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "英伟达",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--1:0x2d1f7226bd1f780af6b9a49dcc0ae00e8df4bdee",
+ "kind": "stock",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0xd533a949740bb3306d119cc777fa900ba034cd52",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xd533a949740bb3306d119cc777fa900ba034cd52.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xd533a949740bb3306d119cc777fa900ba034cd52.png"
+ ],
+ "name": "Curve DAO Token",
+ "symbol": "CRV",
+ "marketCap": "876369329.769418025858573012",
+ "price": "0.36267889083621288676",
+ "priceChange24hPercent": "-6.6",
+ "volume24h": "1483175.798346914450882771",
+ "communityRecognized": true,
+ "key": "evm--1:0xd533a949740bb3306d119cc777fa900ba034cd52",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x95ad61b0a150d79219dcf64e1e6cc01f0b64c4ce",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x95ad61b0a150d79219dcf64e1e6cc01f0b64c4ce.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x95ad61b0a150d79219dcf64e1e6cc01f0b64c4ce.png"
+ ],
+ "name": "SHIBA INU",
+ "symbol": "SHIB",
+ "marketCap": "3194887723.572087456545692429",
+ "price": "0.00000541923290262557",
+ "priceChange24hPercent": "-0.34",
+ "volume24h": "153533.298125084831499686",
+ "communityRecognized": true,
+ "key": "evm--1:0x95ad61b0a150d79219dcf64e1e6cc01f0b64c4ce",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x829f4b62eebe12af653b4dd4ffc480966f7d7f09",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x829f4b62eebe12af653b4dd4ffc480966f7d7f09-1777874423255.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x829f4b62eebe12af653b4dd4ffc480966f7d7f09-1777874423255.png"
+ ],
+ "name": "sato",
+ "symbol": "sato",
+ "marketCap": "2511983.201292366762732794",
+ "price": "0.17901016890236116579",
+ "priceChange24hPercent": "-2.43",
+ "volume24h": "44108.32202991652727313",
+ "communityRecognized": true,
+ "key": "evm--1:0x829f4b62eebe12af653b4dd4ffc480966f7d7f09",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x712f3378cd1a0476b53f0e29b1a9586e00d78683",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x712f3378cd1a0476b53f0e29b1a9586e00d78683-1765692817340.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x712f3378cd1a0476b53f0e29b1a9586e00d78683-1765692817340.png"
+ ],
+ "name": "Tsutsuji the Cate",
+ "symbol": "CATE",
+ "marketCap": "848472.564957288174973692",
+ "price": "0.00084847256495728817",
+ "priceChange24hPercent": "162.86",
+ "volume24h": "214848.023042261328119048",
+ "communityRecognized": false,
+ "key": "evm--1:0x712f3378cd1a0476b53f0e29b1a9586e00d78683",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x643c4e15d7d62ad0abec4a9bd4b001aa3ef52d66",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x643c4e15d7d62ad0abec4a9bd4b001aa3ef52d66-1731566700069.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x643c4e15d7d62ad0abec4a9bd4b001aa3ef52d66-1731566700069.png"
+ ],
+ "name": "Syrup Token",
+ "symbol": "SYRUP",
+ "marketCap": "273349478.378402015871013651",
+ "price": "0.23419532469120226004",
+ "priceChange24hPercent": "6.73",
+ "volume24h": "519730.10890333166973889",
+ "communityRecognized": true,
+ "key": "evm--1:0x643c4e15d7d62ad0abec4a9bd4b001aa3ef52d66",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x56072c95faa701256059aa122697b133aded9279",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x56072c95faa701256059aa122697b133aded9279-1726634701647.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x56072c95faa701256059aa122697b133aded9279-1726634701647.png"
+ ],
+ "name": "SKY Governance Token",
+ "symbol": "SKY",
+ "marketCap": "1604989935.769843774225190779",
+ "price": "0.06850377826381156803",
+ "priceChange24hPercent": "-1.33",
+ "volume24h": "673716.54982476905655406",
+ "communityRecognized": true,
+ "key": "evm--1:0x56072c95faa701256059aa122697b133aded9279",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x111111111117dc0aa78b770fa6a738034120c302",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x111111111117dc0aa78b770fa6a738034120c302.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x111111111117dc0aa78b770fa6a738034120c302.png"
+ ],
+ "name": "1INCH Token",
+ "symbol": "1INCH",
+ "marketCap": "140756864.112418820878878988",
+ "price": "0.09383794371570669218",
+ "priceChange24hPercent": "-1.94",
+ "volume24h": "75295.214815173909091983",
+ "communityRecognized": true,
+ "key": "evm--1:0x111111111117dc0aa78b770fa6a738034120c302",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x00f3c42833c3170159af4e92dbb451fb3f708917",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x00f3c42833c3170159af4e92dbb451fb3f708917-1757751970323.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x00f3c42833c3170159af4e92dbb451fb3f708917-1757751970323.png"
+ ],
+ "name": "ICP",
+ "symbol": "ICP",
+ "marketCap": "1905906.868587494480933083",
+ "price": "3.02813722699095574803",
+ "priceChange24hPercent": "10.3",
+ "volume24h": "1528920.96423519353367398",
+ "communityRecognized": true,
+ "key": "evm--1:0x00f3c42833c3170159af4e92dbb451fb3f708917",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x14c3abf95cb9c93a8b82c1cdcb76d72cb87b2d4c",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x14c3abf95cb9c93a8b82c1cdcb76d72cb87b2d4c-1757665575093.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x14c3abf95cb9c93a8b82c1cdcb76d72cb87b2d4c-1757665575093.png"
+ ],
+ "name": "Apple (Ondo Tokenized)",
+ "symbol": "AAPLon",
+ "marketCap": "5243590.177976232422264391",
+ "price": "320.311828764086964785",
+ "priceChange24hPercent": "-0.51",
+ "volume24h": "126226.7752106128460417",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "苹果",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--1:0x14c3abf95cb9c93a8b82c1cdcb76d72cb87b2d4c",
+ "kind": "stock",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0xfeac2eae96899709a43e252b6b92971d32f9c0f9",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xfeac2eae96899709a43e252b6b92971d32f9c0f9-1721965702832.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xfeac2eae96899709a43e252b6b92971d32f9c0f9-1721965702832.png"
+ ],
+ "name": "ANyONe Protocol",
+ "symbol": "ANYONE",
+ "marketCap": "19334584.547818090106781868",
+ "price": "0.20277495055436214413",
+ "priceChange24hPercent": "32.38",
+ "volume24h": "199541.80112238911568671",
+ "communityRecognized": true,
+ "key": "evm--1:0xfeac2eae96899709a43e252b6b92971d32f9c0f9",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x8b1484d57abbe239bb280661377363b03c89caea",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x8b1484d57abbe239bb280661377363b03c89caea-1765433140444.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x8b1484d57abbe239bb280661377363b03c89caea-1765433140444.png"
+ ],
+ "name": "ADI",
+ "symbol": "ADI",
+ "marketCap": "77207866.811593967609057552",
+ "price": "8.23071869147612736618",
+ "priceChange24hPercent": "2.87",
+ "volume24h": "780877.75531070346990832",
+ "communityRecognized": true,
+ "key": "evm--1:0x8b1484d57abbe239bb280661377363b03c89caea",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0xd34a99bc0f67ae1bbd63c660e6d0b0dd03e263b7",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xd34a99bc0f67ae1bbd63c660e6d0b0dd03e263b7-1770962526134.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xd34a99bc0f67ae1bbd63c660e6d0b0dd03e263b7-1770962526134.png"
+ ],
+ "name": "Identity.md",
+ "symbol": "IMD",
+ "marketCap": "10216589.496199146544369432",
+ "price": "3.054251265524185482",
+ "priceChange24hPercent": "19.09",
+ "volume24h": "547691.031158291899731209",
+ "communityRecognized": false,
+ "key": "evm--1:0xd34a99bc0f67ae1bbd63c660e6d0b0dd03e263b7",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x54d2252757e1672eead234d27b1270728ff90581",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x54d2252757e1672eead234d27b1270728ff90581-1721965702832.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x54d2252757e1672eead234d27b1270728ff90581-1721965702832.png"
+ ],
+ "name": "BitgetToken",
+ "symbol": "BGB",
+ "marketCap": "1391805427.795165092456564205",
+ "price": "1.98831610767746309218",
+ "priceChange24hPercent": "-1.77",
+ "volume24h": "36704.114557338605839411",
+ "communityRecognized": true,
+ "key": "evm--1:0x54d2252757e1672eead234d27b1270728ff90581",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x57e114b691db790c35207b2e685d4a43181e6061",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x57e114b691db790c35207b2e685d4a43181e6061.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x57e114b691db790c35207b2e685d4a43181e6061.png"
+ ],
+ "name": "ENA",
+ "symbol": "ENA",
+ "marketCap": "1660396713.548207644778402066",
+ "price": "0.16447204715537113336",
+ "priceChange24hPercent": "-4.96",
+ "volume24h": "696320.149811754105230201",
+ "communityRecognized": true,
+ "key": "evm--1:0x57e114b691db790c35207b2e685d4a43181e6061",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x812ba41e071c7b7fa4ebcfb62df5f45f6fa853ee",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x812ba41e071c7b7fa4ebcfb62df5f45f6fa853ee-1729490132076.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x812ba41e071c7b7fa4ebcfb62df5f45f6fa853ee-1729490132076.png"
+ ],
+ "name": "Neiro",
+ "symbol": "Neiro",
+ "marketCap": "37356152.317819854466686123",
+ "price": "0.00008879733846257305",
+ "priceChange24hPercent": "-0.58",
+ "volume24h": "157930.631119095252426847",
+ "communityRecognized": true,
+ "key": "evm--1:0x812ba41e071c7b7fa4ebcfb62df5f45f6fa853ee",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x6b7774cb12ed7573a7586e7d0e62a2a563ddd3f0",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x6b7774cb12ed7573a7586e7d0e62a2a563ddd3f0-1757751313514.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x6b7774cb12ed7573a7586e7d0e62a2a563ddd3f0-1757751313514.png"
+ ],
+ "name": "Sophon",
+ "symbol": "SOPH",
+ "marketCap": "35914621.087024163331722442",
+ "price": "0.00869813628201345224",
+ "priceChange24hPercent": "98.08",
+ "volume24h": "57468.43554965537634186",
+ "communityRecognized": true,
+ "key": "evm--1:0x6b7774cb12ed7573a7586e7d0e62a2a563ddd3f0",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x299f137e691751087c6bfa6012f7d56a4da61a68",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x299f137e691751087c6bfa6012f7d56a4da61a68-1788588233662.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x299f137e691751087c6bfa6012f7d56a4da61a68-1788588233662.png"
+ ],
+ "name": "stonky.xyz",
+ "symbol": "STONKY",
+ "marketCap": "22945.935935275783986086",
+ "price": "0.00002294593593527578",
+ "priceChange24hPercent": "9.47",
+ "volume24h": "23158.0300591517927217",
+ "communityRecognized": false,
+ "key": "evm--1:0x299f137e691751087c6bfa6012f7d56a4da61a68",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0xbe0ed4138121ecfc5c0e56b40517da27e6c5226b",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xbe0ed4138121ecfc5c0e56b40517da27e6c5226b.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xbe0ed4138121ecfc5c0e56b40517da27e6c5226b.png"
+ ],
+ "name": "Aethir Token",
+ "symbol": "ATH",
+ "marketCap": "99263854.029701203925986804",
+ "price": "0.00493144293933574565",
+ "priceChange24hPercent": "5.39",
+ "volume24h": "116477.939412420440733882",
+ "communityRecognized": true,
+ "key": "evm--1:0xbe0ed4138121ecfc5c0e56b40517da27e6c5226b",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x95af4af910c28e8ece4512bfe46f1f33687424ce",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x95af4af910c28e8ece4512bfe46f1f33687424ce-1757750689672.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x95af4af910c28e8ece4512bfe46f1f33687424ce-1757750689672.png"
+ ],
+ "name": "Manyu",
+ "symbol": "MANYU",
+ "marketCap": "4354465.06883104792187347",
+ "price": "0.00000000439300193851",
+ "priceChange24hPercent": "8.51",
+ "volume24h": "102215.354585494923779836",
+ "communityRecognized": true,
+ "key": "evm--1:0x95af4af910c28e8ece4512bfe46f1f33687424ce",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0xfedc5f4a6c38211c1338aa411018dfaf26612c08",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xfedc5f4a6c38211c1338aa411018dfaf26612c08-1757751374641.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xfedc5f4a6c38211c1338aa411018dfaf26612c08-1757751374641.png"
+ ],
+ "name": "SPDR S&P 500 ETF (Ondo Tokenized)",
+ "symbol": "SPYon",
+ "marketCap": "40646758.370754167177623431",
+ "price": "776.144884509197874782",
+ "priceChange24hPercent": "0.01",
+ "volume24h": "338903.3520433764834046",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "标普500 ETF",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--1:0xfedc5f4a6c38211c1338aa411018dfaf26612c08",
+ "kind": "stock",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x38e68a37e401f7271568cecaac63c6b1e19130b4",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x38e68a37e401f7271568cecaac63c6b1e19130b4.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x38e68a37e401f7271568cecaac63c6b1e19130b4.png"
+ ],
+ "name": "Banana",
+ "symbol": "BANANA",
+ "marketCap": "16448172.774852108834607465",
+ "price": "4.10052815936691790614",
+ "priceChange24hPercent": "0.52",
+ "volume24h": "200504.56395373226155069",
+ "communityRecognized": true,
+ "key": "evm--1:0x38e68a37e401f7271568cecaac63c6b1e19130b4",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x9e32b13ce7f2e80a01932b42553652e053d6ed8e",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x9e32b13ce7f2e80a01932b42553652e053d6ed8e.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x9e32b13ce7f2e80a01932b42553652e053d6ed8e.png"
+ ],
+ "name": "Metis Token",
+ "symbol": "Metis",
+ "marketCap": "31190857.881624647466676241",
+ "price": "3.11908578816246474667",
+ "priceChange24hPercent": "-3.57",
+ "volume24h": "88363.0901474123216716",
+ "communityRecognized": true,
+ "key": "evm--1:0x9e32b13ce7f2e80a01932b42553652e053d6ed8e",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x3c3a81e81dc49a522a592e7622a7e711c06bf354",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x3c3a81e81dc49a522a592e7622a7e711c06bf354.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x3c3a81e81dc49a522a592e7622a7e711c06bf354.png"
+ ],
+ "name": "Mantle",
+ "symbol": "MNT",
+ "marketCap": "3879622624.428861321586206571",
+ "price": "0.62380206035725838526",
+ "priceChange24hPercent": "-3.83",
+ "volume24h": "715028.30606147928912897",
+ "communityRecognized": true,
+ "key": "evm--1:0x3c3a81e81dc49a522a592e7622a7e711c06bf354",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0xa0b73e1ff0b80914ab6fe0444e65848c4c34450b",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xa0b73e1ff0b80914ab6fe0444e65848c4c34450b.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xa0b73e1ff0b80914ab6fe0444e65848c4c34450b.png"
+ ],
+ "name": "Cronos",
+ "symbol": "CRO",
+ "marketCap": "5736203223.882101211438214997",
+ "price": "0.05736203223939463244",
+ "priceChange24hPercent": "-0.16",
+ "volume24h": "12395.8297691498531395",
+ "communityRecognized": true,
+ "key": "evm--1:0xa0b73e1ff0b80914ab6fe0444e65848c4c34450b",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x118b70df4f06fa5678e7d543e6066e028c8ea0c0",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x118b70df4f06fa5678e7d543e6066e028c8ea0c0-1787292766126.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x118b70df4f06fa5678e7d543e6066e028c8ea0c0-1787292766126.png"
+ ],
+ "name": "Kite",
+ "symbol": "KITE",
+ "marketCap": "1166460722.191782736070208",
+ "price": "0.1195267488",
+ "priceChange24hPercent": "-4.38",
+ "volume24h": "116389.011448",
+ "communityRecognized": true,
+ "key": "evm--1:0x118b70df4f06fa5678e7d543e6066e028c8ea0c0",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0xe41d2489571d322189246dafa5ebde1f4699f498",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xe41d2489571d322189246dafa5ebde1f4699f498.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xe41d2489571d322189246dafa5ebde1f4699f498.png"
+ ],
+ "name": "ZRX",
+ "symbol": "ZRX",
+ "marketCap": "87945333.482793915318585544",
+ "price": "0.10366064329922952868",
+ "priceChange24hPercent": "-0.36",
+ "volume24h": "14548.533609458268915469",
+ "communityRecognized": true,
+ "key": "evm--1:0xe41d2489571d322189246dafa5ebde1f4699f498",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x6982508145454ce325ddbe47a25d4ec3d2311933",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x6982508145454ce325ddbe47a25d4ec3d2311933.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x6982508145454ce325ddbe47a25d4ec3d2311933.png"
+ ],
+ "name": "Pepe",
+ "symbol": "PEPE",
+ "marketCap": "1493558240.201236645376560347",
+ "price": "0.00000360961340628093",
+ "priceChange24hPercent": "1.26",
+ "volume24h": "1278233.783356008991981907",
+ "communityRecognized": true,
+ "key": "evm--1:0x6982508145454ce325ddbe47a25d4ec3d2311933",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0xc18360217d8f7ab5e7c516566761ea12ce7f9d72",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xc18360217d8f7ab5e7c516566761ea12ce7f9d72.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xc18360217d8f7ab5e7c516566761ea12ce7f9d72.png"
+ ],
+ "name": "Ethereum Name Service",
+ "symbol": "ENS",
+ "marketCap": "611785034.978927212090468133",
+ "price": "6.1178503497892721209",
+ "priceChange24hPercent": "-0.13",
+ "volume24h": "36105.99533679980943303",
+ "communityRecognized": true,
+ "key": "evm--1:0xc18360217d8f7ab5e7c516566761ea12ce7f9d72",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x8de39b057cc6522230ab19c0205080a8663331ef",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x8de39b057cc6522230ab19c0205080a8663331ef-1770271422305.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x8de39b057cc6522230ab19c0205080a8663331ef-1770271422305.png"
+ ],
+ "name": "wojak",
+ "symbol": "wojak",
+ "marketCap": "15378843.619726731166986711",
+ "price": "0.00000005027187905948",
+ "priceChange24hPercent": "2.97",
+ "volume24h": "112890.951312032035533275",
+ "communityRecognized": true,
+ "key": "evm--1:0x8de39b057cc6522230ab19c0205080a8663331ef",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x4e3fbd56cd56c3e72c1403e103b45db9da5b9d2b",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x4e3fbd56cd56c3e72c1403e103b45db9da5b9d2b.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x4e3fbd56cd56c3e72c1403e103b45db9da5b9d2b.png"
+ ],
+ "name": "Convex Token",
+ "symbol": "CVX",
+ "marketCap": "223296148.305160200678174418",
+ "price": "2.23319982805666313798",
+ "priceChange24hPercent": "-4.91",
+ "volume24h": "999917.87649930589265577",
+ "communityRecognized": true,
+ "key": "evm--1:0x4e3fbd56cd56c3e72c1403e103b45db9da5b9d2b",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x2b591e99afe9f32eaa6214f7b7629768c40eeb39",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x2b591e99afe9f32eaa6214f7b7629768c40eeb39.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x2b591e99afe9f32eaa6214f7b7629768c40eeb39.png"
+ ],
+ "name": "HEX",
+ "symbol": "HEX",
+ "marketCap": "61931156.656969849434019349",
+ "price": "0.00106244503078276165",
+ "priceChange24hPercent": "-2.66",
+ "volume24h": "212678.054424619355176635",
+ "communityRecognized": false,
+ "key": "evm--1:0x2b591e99afe9f32eaa6214f7b7629768c40eeb39",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0xc944e90c64b2c07662a292be6244bdf05cda44a7",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xc944e90c64b2c07662a292be6244bdf05cda44a7.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xc944e90c64b2c07662a292be6244bdf05cda44a7.png"
+ ],
+ "name": "Graph Token",
+ "symbol": "GRT",
+ "marketCap": "213682635.31538619296014973",
+ "price": "0.01978494773274156975",
+ "priceChange24hPercent": "3.49",
+ "volume24h": "9026.422570863621602184",
+ "communityRecognized": true,
+ "key": "evm--1:0xc944e90c64b2c07662a292be6244bdf05cda44a7",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x33483a58079b4225b10e57958ca28ad7b9cdbaf7",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x33483a58079b4225b10e57958ca28ad7b9cdbaf7-1768539344372.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x33483a58079b4225b10e57958ca28ad7b9cdbaf7-1768539344372.png"
+ ],
+ "name": "BitMine Immersion Technologies (Ondo Tokenized)",
+ "symbol": "BMNRon",
+ "marketCap": "653846.433144777048337471",
+ "price": "25.193887",
+ "priceChange24hPercent": "-0.41",
+ "volume24h": "1544.074190116939362",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "BitMine",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--1:0x33483a58079b4225b10e57958ca28ad7b9cdbaf7",
+ "kind": "stock",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0xfdcd8be9dd37cf982472d30eeee4ec50a0296953",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xfdcd8be9dd37cf982472d30eeee4ec50a0296953-1784354408128.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xfdcd8be9dd37cf982472d30eeee4ec50a0296953-1784354408128.png"
+ ],
+ "name": "Investor Brand Network Ai",
+ "symbol": "IBNAi",
+ "marketCap": "498872.75974993140661978",
+ "price": "0.00049887275974993141",
+ "priceChange24hPercent": "-13.14",
+ "volume24h": "11109.616526622592676872",
+ "communityRecognized": false,
+ "key": "evm--1:0xfdcd8be9dd37cf982472d30eeee4ec50a0296953",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x4d7078ddd6ccfed2f85db5b7d3ff16828d378d48",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x4d7078ddd6ccfed2f85db5b7d3ff16828d378d48-1777528887338.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x4d7078ddd6ccfed2f85db5b7d3ff16828d378d48-1777528887338.png"
+ ],
+ "name": "Gensyn",
+ "symbol": "AI",
+ "marketCap": "9112312.413272017280397296",
+ "price": "0.02062587239460114524",
+ "priceChange24hPercent": "0.84",
+ "volume24h": "53241.17490279844625688",
+ "communityRecognized": true,
+ "key": "evm--1:0x4d7078ddd6ccfed2f85db5b7d3ff16828d378d48",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x232ce3bd40fcd6f80f3d55a522d03f25df784ee2",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x232ce3bd40fcd6f80f3d55a522d03f25df784ee2-1783322585018.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x232ce3bd40fcd6f80f3d55a522d03f25df784ee2-1783322585018.png"
+ ],
+ "name": "Lighter",
+ "symbol": "LIT",
+ "marketCap": "1160662782.276054865654467756",
+ "price": "4.64265112910421946262",
+ "priceChange24hPercent": "5.45",
+ "volume24h": "754534.006970420231594703",
+ "communityRecognized": true,
+ "key": "evm--1:0x232ce3bd40fcd6f80f3d55a522d03f25df784ee2",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x4a220e6096b25eadb88358cb44068a3248254675",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x4a220e6096b25eadb88358cb44068a3248254675.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x4a220e6096b25eadb88358cb44068a3248254675.png"
+ ],
+ "name": "Quant",
+ "symbol": "QNT",
+ "marketCap": "797969469.930940570527114438",
+ "price": "66.09681001368045678844",
+ "priceChange24hPercent": "-0.65",
+ "volume24h": "205713.741061013652669172",
+ "communityRecognized": true,
+ "key": "evm--1:0x4a220e6096b25eadb88358cb44068a3248254675",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0xca14007eff0db1f8135f4c25b34de49ab0d42766",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xca14007eff0db1f8135f4c25b34de49ab0d42766.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xca14007eff0db1f8135f4c25b34de49ab0d42766.png"
+ ],
+ "name": "StarkNet Token",
+ "symbol": "STRK",
+ "marketCap": "312527369.684349208615442257",
+ "price": "0.03118382072463348087",
+ "priceChange24hPercent": "0.72",
+ "volume24h": "35278.15996141759589192",
+ "communityRecognized": true,
+ "key": "evm--1:0xca14007eff0db1f8135f4c25b34de49ab0d42766",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x967da4048cd07ab37855c090aaf366e4ce1b9f48",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x967da4048cd07ab37855c090aaf366e4ce1b9f48.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x967da4048cd07ab37855c090aaf366e4ce1b9f48.png"
+ ],
+ "name": "Ocean Token",
+ "symbol": "OCEAN",
+ "marketCap": "212542658.578105878653802224",
+ "price": "0.15073947416886941748",
+ "priceChange24hPercent": "0.33",
+ "volume24h": "36644.7050352989740875",
+ "communityRecognized": true,
+ "key": "evm--1:0x967da4048cd07ab37855c090aaf366e4ce1b9f48",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0xbb0e17ef65f82ab018d8edd776e8dd940327b28b",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xbb0e17ef65f82ab018d8edd776e8dd940327b28b.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xbb0e17ef65f82ab018d8edd776e8dd940327b28b.png"
+ ],
+ "name": "Axie Infinity Shard",
+ "symbol": "AXS",
+ "marketCap": "261044477.043066689033016494",
+ "price": "0.96683139645580255197",
+ "priceChange24hPercent": "1.1",
+ "volume24h": "736.5437257528456515",
+ "communityRecognized": true,
+ "key": "evm--1:0xbb0e17ef65f82ab018d8edd776e8dd940327b28b",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0xddb3422497e61e13543bea06989c0789117555c5",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xddb3422497e61e13543bea06989c0789117555c5.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xddb3422497e61e13543bea06989c0789117555c5.png"
+ ],
+ "name": "COTI Token",
+ "symbol": "COTI",
+ "marketCap": "77136918.493486786503852486",
+ "price": "0.0160318280801743775",
+ "priceChange24hPercent": "-8.73",
+ "volume24h": "77971.91379660067684812",
+ "communityRecognized": true,
+ "key": "evm--1:0xddb3422497e61e13543bea06989c0789117555c5",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0xbd31ea8212119f94a611fa969881cba3ea06fa3d",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xbd31ea8212119f94a611fa969881cba3ea06fa3d.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xbd31ea8212119f94a611fa969881cba3ea06fa3d.png"
+ ],
+ "name": "LUNA (Wormhole)",
+ "symbol": "LUNA",
+ "marketCap": "1419522.28027240836218694",
+ "price": "0.00007731640849525585",
+ "priceChange24hPercent": "51.45",
+ "volume24h": "1657877.578540698373936599",
+ "communityRecognized": false,
+ "key": "evm--1:0xbd31ea8212119f94a611fa969881cba3ea06fa3d",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x58b6a8a3302369daec383334672404ee733ab239",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x58b6a8a3302369daec383334672404ee733ab239.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x58b6a8a3302369daec383334672404ee733ab239.png"
+ ],
+ "name": "Livepeer",
+ "symbol": "LPT",
+ "marketCap": "36820629.171768600573514433",
+ "price": "1.47764271127142131681",
+ "priceChange24hPercent": "2.36",
+ "volume24h": "2389.75425617955544864",
+ "communityRecognized": true,
+ "key": "evm--1:0x58b6a8a3302369daec383334672404ee733ab239",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0xa27ec0006e59f245217ff08cd52a7e8b169e62d2",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xa27ec0006e59f245217ff08cd52a7e8b169e62d2-1765087768761.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xa27ec0006e59f245217ff08cd52a7e8b169e62d2-1765087768761.png"
+ ],
+ "name": "AZTEC",
+ "symbol": "AZTEC",
+ "marketCap": "42375716.835073977509763322",
+ "price": "0.01471583647777766656",
+ "priceChange24hPercent": "1.04",
+ "volume24h": "926777.51234274357699664",
+ "communityRecognized": true,
+ "key": "evm--1:0xa27ec0006e59f245217ff08cd52a7e8b169e62d2",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0xcf0c122c6b73ff809c693db761e7baebe62b6a2e",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xcf0c122c6b73ff809c693db761e7baebe62b6a2e.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xcf0c122c6b73ff809c693db761e7baebe62b6a2e.png"
+ ],
+ "name": "FLOKI",
+ "symbol": "FLOKI",
+ "marketCap": "272368739.790512625637129351",
+ "price": "0.00002723687403366149",
+ "priceChange24hPercent": "7.61",
+ "volume24h": "42311.776763498539947228",
+ "communityRecognized": true,
+ "key": "evm--1:0xcf0c122c6b73ff809c693db761e7baebe62b6a2e",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x228bec415ade4b61d7caf0adf8c91eac587ba369",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x228bec415ade4b61d7caf0adf8c91eac587ba369-1769666912652.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x228bec415ade4b61d7caf0adf8c91eac587ba369-1769666912652.png"
+ ],
+ "name": "TRIA",
+ "symbol": "TRIA",
+ "marketCap": "9240836.301789379982083197",
+ "price": "0.00428278481036923162",
+ "priceChange24hPercent": "5.14",
+ "volume24h": "6505.86283535865",
+ "communityRecognized": true,
+ "key": "evm--1:0x228bec415ade4b61d7caf0adf8c91eac587ba369",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x516d31321928700c6b4fb0db0c8c6bc5d6799787",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x516d31321928700c6b4fb0db0c8c6bc5d6799787-1760853997427.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x516d31321928700c6b4fb0db0c8c6bc5d6799787-1760853997427.png"
+ ],
+ "name": "SHX",
+ "symbol": "SHX",
+ "marketCap": "14641334.190400517136272598",
+ "price": "0.00382456929741907849",
+ "priceChange24hPercent": "-8.25",
+ "volume24h": "127295.816173610436143",
+ "communityRecognized": true,
+ "key": "evm--1:0x516d31321928700c6b4fb0db0c8c6bc5d6799787",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0xaaee1a9723aadb7afa2810263653a34ba2c21c7a",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xaaee1a9723aadb7afa2810263653a34ba2c21c7a.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xaaee1a9723aadb7afa2810263653a34ba2c21c7a.png"
+ ],
+ "name": "Mog Coin",
+ "symbol": "Mog",
+ "marketCap": "45373077.614541279484436748",
+ "price": "0.0000001161713880672",
+ "priceChange24hPercent": "7.19",
+ "volume24h": "897644.779743019621760613",
+ "communityRecognized": true,
+ "key": "evm--1:0xaaee1a9723aadb7afa2810263653a34ba2c21c7a",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0xda5e1988097297dcdc1f90d4dfe7909e847cbef6",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xda5e1988097297dcdc1f90d4dfe7909e847cbef6-1756694380364.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xda5e1988097297dcdc1f90d4dfe7909e847cbef6-1756694380364.png"
+ ],
+ "name": "World Liberty Financial",
+ "symbol": "WLFI",
+ "marketCap": "1791219453.864127823673972859",
+ "price": "0.05636829013300601131",
+ "priceChange24hPercent": "-1.61",
+ "volume24h": "42470.909585288266314",
+ "communityRecognized": true,
+ "key": "evm--1:0xda5e1988097297dcdc1f90d4dfe7909e847cbef6",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0xb131f4a55907b10d1f0a50d8ab8fa09ec342cd74",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xb131f4a55907b10d1f0a50d8ab8fa09ec342cd74.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xb131f4a55907b10d1f0a50d8ab8fa09ec342cd74.png"
+ ],
+ "name": "Memecoin",
+ "symbol": "MEME",
+ "marketCap": "35527931.726438188226784692",
+ "price": "0.00055105681722043497",
+ "priceChange24hPercent": "-0.15",
+ "volume24h": "12995.518069717358655828",
+ "communityRecognized": true,
+ "key": "evm--1:0xb131f4a55907b10d1f0a50d8ab8fa09ec342cd74",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0xd0580192e98ea6ceb9c7b6191ed2e27560911697",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xd0580192e98ea6ceb9c7b6191ed2e27560911697-1785305021620.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xd0580192e98ea6ceb9c7b6191ed2e27560911697-1785305021620.png"
+ ],
+ "name": "trUSD",
+ "symbol": "trUSD",
+ "marketCap": "66453838.603748551095643387",
+ "price": "1.0000766457551993108",
+ "priceChange24hPercent": "0",
+ "volume24h": "445008.777162",
+ "communityRecognized": true,
+ "key": "evm--1:0xd0580192e98ea6ceb9c7b6191ed2e27560911697",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x32708538a107253b51a735a724330a23106ca4ca",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x32708538a107253b51a735a724330a23106ca4ca-1781071464068.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x32708538a107253b51a735a724330a23106ca4ca-1781071464068.png"
+ ],
+ "name": "01",
+ "symbol": "01",
+ "marketCap": "7591728.1926915093572302",
+ "price": "0.38303103971521914096",
+ "priceChange24hPercent": "-4.52",
+ "volume24h": "177566.4915405247242582",
+ "communityRecognized": false,
+ "key": "evm--1:0x32708538a107253b51a735a724330a23106ca4ca",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x44ff8620b8ca30902395a7bd3f2407e1a091bf73",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x44ff8620b8ca30902395a7bd3f2407e1a091bf73.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x44ff8620b8ca30902395a7bd3f2407e1a091bf73.png"
+ ],
+ "name": "Virtual Protocol",
+ "symbol": "VIRTUAL",
+ "marketCap": "726561123.715143546118405786",
+ "price": "0.72656112371514354612",
+ "priceChange24hPercent": "1.86",
+ "volume24h": "94746.178633703399840606",
+ "communityRecognized": true,
+ "key": "evm--1:0x44ff8620b8ca30902395a7bd3f2407e1a091bf73",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x940a2db1b7008b6c776d4faaca729d6d4a4aa551",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x940a2db1b7008b6c776d4faaca729d6d4a4aa551.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x940a2db1b7008b6c776d4faaca729d6d4a4aa551.png"
+ ],
+ "name": "Dusk Network",
+ "symbol": "DUSK",
+ "marketCap": "39185463.690359092914573738",
+ "price": "0.07837092738071818583",
+ "priceChange24hPercent": "-0.11",
+ "volume24h": "63386.351877461576226",
+ "communityRecognized": true,
+ "key": "evm--1:0x940a2db1b7008b6c776d4faaca729d6d4a4aa551",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0xcccccccccc33d538dbc2ee4feab0a7a1ff4e8a94",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xcccccccccc33d538dbc2ee4feab0a7a1ff4e8a94-1757752502431.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xcccccccccc33d538dbc2ee4feab0a7a1ff4e8a94-1757752502431.png"
+ ],
+ "name": "Centrifuge",
+ "symbol": "CFG",
+ "marketCap": "49040480.663382475107337512",
+ "price": "0.12892361035323438803",
+ "priceChange24hPercent": "0.91",
+ "volume24h": "339013.767973171020837329",
+ "communityRecognized": true,
+ "key": "evm--1:0xcccccccccc33d538dbc2ee4feab0a7a1ff4e8a94",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0xfaba6f8e4a5e8ab82f62fe7c39859fa577269be3",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xfaba6f8e4a5e8ab82f62fe7c39859fa577269be3.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xfaba6f8e4a5e8ab82f62fe7c39859fa577269be3.png"
+ ],
+ "name": "Ondo",
+ "symbol": "ONDO",
+ "marketCap": "1845634866.490616603177547368",
+ "price": "0.37903256120586394904",
+ "priceChange24hPercent": "-1.19",
+ "volume24h": "589998.145119857384026483",
+ "communityRecognized": true,
+ "key": "evm--1:0xfaba6f8e4a5e8ab82f62fe7c39859fa577269be3",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x9ff58067bd8d239000010c154c6983a325df138e",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x9ff58067bd8d239000010c154c6983a325df138e.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x9ff58067bd8d239000010c154c6983a325df138e.png"
+ ],
+ "name": "Propchain Token",
+ "symbol": "PROPC",
+ "marketCap": "4337698.488242673103203443",
+ "price": "0.10118003522587297",
+ "priceChange24hPercent": "9.72",
+ "volume24h": "81379.22727350348",
+ "communityRecognized": true,
+ "key": "evm--1:0x9ff58067bd8d239000010c154c6983a325df138e",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x1151cb3d861920e07a38e03eead12c32178567f6",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x1151cb3d861920e07a38e03eead12c32178567f6.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x1151cb3d861920e07a38e03eead12c32178567f6.png"
+ ],
+ "name": "Bonk",
+ "symbol": "Bonk",
+ "marketCap": "958997.066535357138047833",
+ "price": "0.00000317595720104119",
+ "priceChange24hPercent": "1.15",
+ "volume24h": "692.76949457944382164",
+ "communityRecognized": true,
+ "key": "evm--1:0x1151cb3d861920e07a38e03eead12c32178567f6",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0xffe203b59393593965842439ce1e7d7c78109b46",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xffe203b59393593965842439ce1e7d7c78109b46.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xffe203b59393593965842439ce1e7d7c78109b46.png"
+ ],
+ "name": "Satellite Doge-1 Mission",
+ "symbol": "Doge-1",
+ "marketCap": "255842.964650115866916783",
+ "price": "0.00025584331666859646",
+ "priceChange24hPercent": "-0.88",
+ "volume24h": "8092.4044518245027959",
+ "communityRecognized": false,
+ "key": "evm--1:0xffe203b59393593965842439ce1e7d7c78109b46",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0xc00e94cb662c3520282e6f5717214004a7f26888",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xc00e94cb662c3520282e6f5717214004a7f26888.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xc00e94cb662c3520282e6f5717214004a7f26888.png"
+ ],
+ "name": "Compound",
+ "symbol": "COMP",
+ "marketCap": "211636333.466615330952598886",
+ "price": "21.16363335436814378722",
+ "priceChange24hPercent": "-0.17",
+ "volume24h": "32970.806969883550348604",
+ "communityRecognized": true,
+ "key": "evm--1:0xc00e94cb662c3520282e6f5717214004a7f26888",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x767fe9edc9e0df98e07454847909b5e959d7ca0e",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x767fe9edc9e0df98e07454847909b5e959d7ca0e.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x767fe9edc9e0df98e07454847909b5e959d7ca0e.png"
+ ],
+ "name": "Illuvium",
+ "symbol": "ILV",
+ "marketCap": "24388265.414656277661768815",
+ "price": "3.31967901730497027982",
+ "priceChange24hPercent": "-0.05",
+ "volume24h": "126074.306452358114442",
+ "communityRecognized": true,
+ "key": "evm--1:0x767fe9edc9e0df98e07454847909b5e959d7ca0e",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0xdd3b11ef34cd511a2da159034a05fcb94d806686",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xdd3b11ef34cd511a2da159034a05fcb94d806686-1732332192481.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xdd3b11ef34cd511a2da159034a05fcb94d806686-1732332192481.png"
+ ],
+ "name": "Rekt",
+ "symbol": "REKT",
+ "marketCap": "35940618.301550256984789255",
+ "price": "0.0000000854325472475",
+ "priceChange24hPercent": "-12.38",
+ "volume24h": "186781.179178635116666476",
+ "communityRecognized": true,
+ "key": "evm--1:0xdd3b11ef34cd511a2da159034a05fcb94d806686",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0xa12cc123ba206d4031d1c7f6223d1c2ec249f4f3",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xa12cc123ba206d4031d1c7f6223d1c2ec249f4f3-1765173940271.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xa12cc123ba206d4031d1c7f6223d1c2ec249f4f3-1765173940271.png"
+ ],
+ "name": "Zama",
+ "symbol": "ZAMA",
+ "marketCap": "130340692.466254388020277987",
+ "price": "0.05225030584040281925",
+ "priceChange24hPercent": "-3.5",
+ "volume24h": "656119.66230031805172541",
+ "communityRecognized": true,
+ "key": "evm--1:0xa12cc123ba206d4031d1c7f6223d1c2ec249f4f3",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0xf091867ec603a6628ed83d274e835539d82e9cc8",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xf091867ec603a6628ed83d274e835539d82e9cc8.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xf091867ec603a6628ed83d274e835539d82e9cc8.png"
+ ],
+ "name": "Zeta",
+ "symbol": "ZETA",
+ "marketCap": "21400971.506834632538770786",
+ "price": "0.03566828584472438756",
+ "priceChange24hPercent": "-0.73",
+ "volume24h": "1587.18485060379570473",
+ "communityRecognized": true,
+ "key": "evm--1:0xf091867ec603a6628ed83d274e835539d82e9cc8",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x01791f726b4103694969820be083196cc7c045ff",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x01791f726b4103694969820be083196cc7c045ff-1760421978422.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x01791f726b4103694969820be083196cc7c045ff-1760421978422.png"
+ ],
+ "name": "Yield Basis",
+ "symbol": "YB",
+ "marketCap": "26757285.921695782866555835",
+ "price": "0.10412778266096706652",
+ "priceChange24hPercent": "5.63",
+ "volume24h": "49564.700673514190789248",
+ "communityRecognized": true,
+ "key": "evm--1:0x01791f726b4103694969820be083196cc7c045ff",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x0e397938c1aa0680954093495b70a9f5e2249aba",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x0e397938c1aa0680954093495b70a9f5e2249aba-1757750949444.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x0e397938c1aa0680954093495b70a9f5e2249aba-1757750949444.png"
+ ],
+ "name": "Invesco QQQ (Ondo Tokenized)",
+ "symbol": "QQQon",
+ "marketCap": "26048788.076142114499023002",
+ "price": "725.57711182079716042",
+ "priceChange24hPercent": "0.42",
+ "volume24h": "88695.28981372873267",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "纳指ETF",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--1:0x0e397938c1aa0680954093495b70a9f5e2249aba",
+ "kind": "stock",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0xb753428af26e81097e7fd17f40c88aaa3e04902c",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xb753428af26e81097e7fd17f40c88aaa3e04902c.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0xb753428af26e81097e7fd17f40c88aaa3e04902c.png"
+ ],
+ "name": "Spice",
+ "symbol": "SFI",
+ "marketCap": "14919234.601722163145516909",
+ "price": "149.19234601722163145517",
+ "priceChange24hPercent": "-7.6",
+ "volume24h": "14060.1562869130271005",
+ "communityRecognized": false,
+ "key": "evm--1:0xb753428af26e81097e7fd17f40c88aaa3e04902c",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x0bc529c00c6401aef6d220be8c6ea1667f6ad93e",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x0bc529c00c6401aef6d220be8c6ea1667f6ad93e.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x0bc529c00c6401aef6d220be8c6ea1667f6ad93e.png"
+ ],
+ "name": "yearn.finance",
+ "symbol": "YFI",
+ "marketCap": "83040784.511229895484876496",
+ "price": "2264.78984648529688225813",
+ "priceChange24hPercent": "-2.17",
+ "volume24h": "123602.210603885606428619",
+ "communityRecognized": true,
+ "key": "evm--1:0x0bc529c00c6401aef6d220be8c6ea1667f6ad93e",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x526526528f35ac738177003b8773b402b8df8143",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x526526528f35ac738177003b8773b402b8df8143-1781157791300.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x526526528f35ac738177003b8773b402b8df8143-1781157791300.png"
+ ],
+ "name": "Re Protocol",
+ "symbol": "RE",
+ "marketCap": "72709009.721774556329127997",
+ "price": "0.45557023635197090432",
+ "priceChange24hPercent": "1.45",
+ "volume24h": "548.3446152288675665",
+ "communityRecognized": true,
+ "key": "evm--1:0x526526528f35ac738177003b8773b402b8df8143",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x01a8b61e7b03891a736b5df865e0ef9c511850ad",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x01a8b61e7b03891a736b5df865e0ef9c511850ad-1773727504923.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x01a8b61e7b03891a736b5df865e0ef9c511850ad-1773727504923.png"
+ ],
+ "name": "syBTC",
+ "symbol": "syBTC",
+ "marketCap": "509161.347738062056423757",
+ "price": "78827.53326949563588574375",
+ "priceChange24hPercent": "-1.15",
+ "volume24h": "912132.3048071062944235",
+ "communityRecognized": false,
+ "key": "evm--1:0x01a8b61e7b03891a736b5df865e0ef9c511850ad",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--1",
+ "address": "0x9f8f72aa9304c8b593d555f12ef6589cc3a579a2",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x9f8f72aa9304c8b593d555f12ef6589cc3a579a2.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--1/tokens/address-0x9f8f72aa9304c8b593d555f12ef6589cc3a579a2.png"
+ ],
+ "name": "maker",
+ "symbol": "mkr",
+ "marketCap": "136006467.128762000953566175",
+ "price": "1594.70706898681478602415",
+ "priceChange24hPercent": "-1.65",
+ "volume24h": "67270.990081939739181131",
+ "communityRecognized": false,
+ "key": "evm--1:0x9f8f72aa9304c8b593d555f12ef6589cc3a579a2",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Ethereum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/eth.png"
+ }
+ ],
+ "trending|evm--4663|5m|all": [
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x39dbed3a2bd333467115de45665cc57f813c4571",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x39dbed3a2bd333467115de45665cc57f813c4571-1785145437955.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x39dbed3a2bd333467115de45665cc57f813c4571-1785145437955.png"
+ ],
+ "name": "Pons",
+ "symbol": "PONS",
+ "marketCap": "492687665.20371759125025286",
+ "price": "0.70384361512765804418",
+ "priceChange24hPercent": "-0.47",
+ "volume24h": "143183.4967551728849992",
+ "communityRecognized": true,
+ "key": "evm--4663:0x39dbed3a2bd333467115de45665cc57f813c4571",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x4a72b9702f991b790788f8afa9e7112541f4e8f8",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/a2e5ad0ff8689f1c746d6b07fd9718545cd44c67e13dabe8ba7242d613586821",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/a2e5ad0ff8689f1c746d6b07fd9718545cd44c67e13dabe8ba7242d613586821"
+ ],
+ "name": "Route",
+ "symbol": "ROUTE",
+ "marketCap": "5498451.406603741582838483",
+ "price": "0.00549845140660374158",
+ "priceChange24hPercent": "9.48",
+ "volume24h": "171178.0702755378525467",
+ "communityRecognized": false,
+ "key": "evm--4663:0x4a72b9702f991b790788f8afa9e7112541f4e8f8",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xe2324ff2a59f8ecba8c321c6466e59121c00e795",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/84804585551812a64183c44a4e291f2332c9a5ff2d07e52dbcd3b81d60c989b3",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/84804585551812a64183c44a4e291f2332c9a5ff2d07e52dbcd3b81d60c989b3"
+ ],
+ "name": "Commodity Market Exchange",
+ "symbol": "CME",
+ "marketCap": "2853217.606299477607716679",
+ "price": "0.00285321760629947761",
+ "priceChange24hPercent": "-5.92",
+ "volume24h": "82863.9520620578815923",
+ "communityRecognized": false,
+ "key": "evm--4663:0xe2324ff2a59f8ecba8c321c6466e59121c00e795",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x6b1d42927b1a84ec28fa88d4fc6fa7af404966be",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x6b1d42927b1a84ec28fa88d4fc6fa7af404966be-1788091561508.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x6b1d42927b1a84ec28fa88d4fc6fa7af404966be-1788091561508.png"
+ ],
+ "name": "PAIR",
+ "symbol": "PAIR",
+ "marketCap": "13922294.949687588667787664",
+ "price": "0.01553740059562339121",
+ "priceChange24hPercent": "0.84",
+ "volume24h": "12687.956805398449977",
+ "communityRecognized": false,
+ "key": "evm--4663:0x6b1d42927b1a84ec28fa88d4fc6fa7af404966be",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x0000000005aca17e8bd5779fc87e13cb433aed24",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x0000000005aca17e8bd5779fc87e13cb433aed24-1788697955302.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x0000000005aca17e8bd5779fc87e13cb433aed24-1788697955302.png"
+ ],
+ "name": "NUKE",
+ "symbol": "NUKE",
+ "marketCap": "10344114.294054815385789125",
+ "price": "74.30148928041241780785",
+ "priceChange24hPercent": "6.72",
+ "volume24h": "40547.519082136481161",
+ "communityRecognized": false,
+ "key": "evm--4663:0x0000000005aca17e8bd5779fc87e13cb433aed24",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xab093def657f15df31b33922a95e047add645b29",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xab093def657f15df31b33922a95e047add645b29-1788523212752.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xab093def657f15df31b33922a95e047add645b29-1788523212752.png"
+ ],
+ "name": "MUSHROOM",
+ "symbol": "SHROOM",
+ "marketCap": "31040529.465871812895696673",
+ "price": "0.03143926481944639757",
+ "priceChange24hPercent": "-0.49",
+ "volume24h": "18193.4568723391156388",
+ "communityRecognized": true,
+ "key": "evm--4663:0xab093def657f15df31b33922a95e047add645b29",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x2e8c31162b855a2ffa90f6f8634643ad6f111e18",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x2e8c31162b855a2ffa90f6f8634643ad6f111e18-1785845221968.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x2e8c31162b855a2ffa90f6f8634643ad6f111e18-1785845221968.png"
+ ],
+ "name": "Artificial Inu",
+ "symbol": "AI",
+ "marketCap": "259997174.369260732379842519",
+ "price": "0.26225409551078842417",
+ "priceChange24hPercent": "1.6",
+ "volume24h": "130896.245606234319495291",
+ "communityRecognized": true,
+ "key": "evm--4663:0x2e8c31162b855a2ffa90f6f8634643ad6f111e18",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xd9db30bb0d2b8d2eae3826a1372117e058791e18",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xd9db30bb0d2b8d2eae3826a1372117e058791e18-1788091222725.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xd9db30bb0d2b8d2eae3826a1372117e058791e18-1788091222725.png"
+ ],
+ "name": "Memory cow Moo",
+ "symbol": "MOO",
+ "marketCap": "25421271.013613587865372077",
+ "price": "0.02570519512113269816",
+ "priceChange24hPercent": "2.13",
+ "volume24h": "22519.91438030206006043",
+ "communityRecognized": true,
+ "key": "evm--4663:0xd9db30bb0d2b8d2eae3826a1372117e058791e18",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x7ba36be14dd06ba492f08be6c1b2979c1d0b652c",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x7ba36be14dd06ba492f08be6c1b2979c1d0b652c-1788178016235.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x7ba36be14dd06ba492f08be6c1b2979c1d0b652c-1788178016235.png"
+ ],
+ "name": "PerpsHood",
+ "symbol": "PERPSHOOD",
+ "marketCap": "3111996.446146368568450989",
+ "price": "0.00315860300715415141",
+ "priceChange24hPercent": "-9.25",
+ "volume24h": "4947.62721637187194",
+ "communityRecognized": false,
+ "key": "evm--4663:0x7ba36be14dd06ba492f08be6c1b2979c1d0b652c",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x6d11782ef6cbe773da2defef612f9a57c54012bf",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/aed9300fe93af8a077cf133b5d703e28386f95d7724261f173da91a4cac7df65",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/aed9300fe93af8a077cf133b5d703e28386f95d7724261f173da91a4cac7df65"
+ ],
+ "name": "Macintosh",
+ "symbol": "MACINTOSH",
+ "marketCap": "1400165.612151950161775918",
+ "price": "0.00140016561215195016",
+ "priceChange24hPercent": "-1.41",
+ "volume24h": "11572.55947381776965875",
+ "communityRecognized": false,
+ "key": "evm--4663:0x6d11782ef6cbe773da2defef612f9a57c54012bf",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x15d36b6a28d8327abc7afabf0f106ae2c9af5c4d",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x15d36b6a28d8327abc7afabf0f106ae2c9af5c4d-1788523244923.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x15d36b6a28d8327abc7afabf0f106ae2c9af5c4d-1788523244923.png"
+ ],
+ "name": "Pare",
+ "symbol": "PARE",
+ "marketCap": "12472779.347945200550616218",
+ "price": "0.01247277934794520055",
+ "priceChange24hPercent": "2.18",
+ "volume24h": "5174.92326064325712",
+ "communityRecognized": false,
+ "key": "evm--4663:0x15d36b6a28d8327abc7afabf0f106ae2c9af5c4d",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x79a74fd91f8e1c4ab8e76253dec5c91f3094393f",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/e1f481a4066feec841bf3345c090a6cdd9fd2274a972cf1981f3a0a234f42d9c",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/e1f481a4066feec841bf3345c090a6cdd9fd2274a972cf1981f3a0a234f42d9c"
+ ],
+ "name": "Superstables",
+ "symbol": "STBL",
+ "marketCap": "430052.948915032286294785",
+ "price": "0.00043005294891503229",
+ "priceChange24hPercent": "7.13",
+ "volume24h": "6136.6070952846314038",
+ "communityRecognized": false,
+ "key": "evm--4663:0x79a74fd91f8e1c4ab8e76253dec5c91f3094393f",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x7163ae1b5aea2f09ebc609c52b4dcac0a7a4bc2d",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/b565852235f4b58795118e627a62621101b692c4e2e2801f518600ad55c59755",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/b565852235f4b58795118e627a62621101b692c4e2e2801f518600ad55c59755"
+ ],
+ "name": "GAGE",
+ "symbol": "GAGE",
+ "marketCap": "2031316.219519833826009659",
+ "price": "0.00203131621951983383",
+ "priceChange24hPercent": "-4.57",
+ "volume24h": "8279.7476465481561455",
+ "communityRecognized": false,
+ "key": "evm--4663:0x7163ae1b5aea2f09ebc609c52b4dcac0a7a4bc2d",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xa3602804e096cb73bd8344afc1ff3f3390b899c5",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xa3602804e096cb73bd8344afc1ff3f3390b899c5-1788697149485.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xa3602804e096cb73bd8344afc1ff3f3390b899c5-1788697149485.png"
+ ],
+ "name": "PEZ",
+ "symbol": "PEZ",
+ "marketCap": "2552015.440732567570403185",
+ "price": "0.00255202107719303053",
+ "priceChange24hPercent": "0.12",
+ "volume24h": "1804.192009861124836",
+ "communityRecognized": false,
+ "key": "evm--4663:0xa3602804e096cb73bd8344afc1ff3f3390b899c5",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x76ed1e2a8fc3873fcb5c514688ca2fe8a3600b7f",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/1dbcb030f10554487ca05c3aaa7fcc97cef5b687e39b63bafb0d000d20616792",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/1dbcb030f10554487ca05c3aaa7fcc97cef5b687e39b63bafb0d000d20616792"
+ ],
+ "name": "LAPTOP",
+ "symbol": "LAPTOP",
+ "marketCap": "1179059.264328386209432576",
+ "price": "0.00117905926432838621",
+ "priceChange24hPercent": "-7.22",
+ "volume24h": "13317.66279539332036312",
+ "communityRecognized": false,
+ "key": "evm--4663:0x76ed1e2a8fc3873fcb5c514688ca2fe8a3600b7f",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x98096d17e191b3da1d5f99a6d7b3584351b11e18",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x98096d17e191b3da1d5f99a6d7b3584351b11e18-1787918411975.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x98096d17e191b3da1d5f99a6d7b3584351b11e18-1787918411975.png"
+ ],
+ "name": "Boner Coin",
+ "symbol": "BONER",
+ "marketCap": "58129181.519069637833904517",
+ "price": "0.05812919390713559434",
+ "priceChange24hPercent": "-0.23",
+ "volume24h": "23032.0652066256078314",
+ "communityRecognized": true,
+ "key": "evm--4663:0x98096d17e191b3da1d5f99a6d7b3584351b11e18",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xafe41f4356c24f716111de1fbbc84e061d291e18",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xafe41f4356c24f716111de1fbbc84e061d291e18-1788264039086.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xafe41f4356c24f716111de1fbbc84e061d291e18-1788264039086.png"
+ ],
+ "name": "Cache Cow",
+ "symbol": "CACHE",
+ "marketCap": "1056454.727534532364284546",
+ "price": "0.00105645472753453236",
+ "priceChange24hPercent": "1.47",
+ "volume24h": "7452.600460269864079156",
+ "communityRecognized": false,
+ "key": "evm--4663:0xafe41f4356c24f716111de1fbbc84e061d291e18",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x12d5ee7917ca430073c3a638ee1e6f0648a98a01",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x12d5ee7917ca430073c3a638ee1e6f0648a98a01-1788350677314.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x12d5ee7917ca430073c3a638ee1e6f0648a98a01-1788350677314.png"
+ ],
+ "name": "FATCOIN",
+ "symbol": "FATCOIN",
+ "marketCap": "15073886.50104684331489565",
+ "price": "0.01507388650104684331",
+ "priceChange24hPercent": "5.3",
+ "volume24h": "17320.978238701429329",
+ "communityRecognized": false,
+ "key": "evm--4663:0x12d5ee7917ca430073c3a638ee1e6f0648a98a01",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xd5f1afea47b1a9eab414d2ee740cf1d6d039e725",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xd5f1afea47b1a9eab414d2ee740cf1d6d039e725-1788091431352.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xd5f1afea47b1a9eab414d2ee740cf1d6d039e725-1788091431352.png"
+ ],
+ "name": "microduck",
+ "symbol": "microduck",
+ "marketCap": "18335033.149710684136041623",
+ "price": "0.01833503314971068414",
+ "priceChange24hPercent": "-1.68",
+ "volume24h": "17926.61249360250144",
+ "communityRecognized": false,
+ "key": "evm--4663:0xd5f1afea47b1a9eab414d2ee740cf1d6d039e725",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x020bfc650a365f8bb26819deaabf3e21291018b4",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x020bfc650a365f8bb26819deaabf3e21291018b4-1784778353843.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x020bfc650a365f8bb26819deaabf3e21291018b4-1784778353843.png"
+ ],
+ "name": "Cash Cat",
+ "symbol": "CASHCAT",
+ "marketCap": "188270431.00592652282973507",
+ "price": "0.19053459862614162397",
+ "priceChange24hPercent": "0.38",
+ "volume24h": "41260.7735748453546932",
+ "communityRecognized": true,
+ "key": "evm--4663:0x020bfc650a365f8bb26819deaabf3e21291018b4",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xbe98b75361935b18d688409424a869a4c3dc7401",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xbe98b75361935b18d688409424a869a4c3dc7401-1788436898916.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xbe98b75361935b18d688409424a869a4c3dc7401-1788436898916.png"
+ ],
+ "name": "Send Nudes",
+ "symbol": "NUDES",
+ "marketCap": "14740176.222858396815503008",
+ "price": "0.01474017622285839682",
+ "priceChange24hPercent": "0.27",
+ "volume24h": "6353.50335392964146",
+ "communityRecognized": false,
+ "key": "evm--4663:0xbe98b75361935b18d688409424a869a4c3dc7401",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xbc9cc4b93a08b2dfba87067a9c53e713db3314ce",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/a34bd343ce2418e2688d9be4430fef2415dee4b660c25a3bbbcaaf3481e299a4",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/a34bd343ce2418e2688d9be4430fef2415dee4b660c25a3bbbcaaf3481e299a4"
+ ],
+ "name": "Pink Sheets",
+ "symbol": "PINK",
+ "marketCap": "966041.535560089479163395",
+ "price": "0.00096604153556008948",
+ "priceChange24hPercent": "2.66",
+ "volume24h": "4382.9240515246012657",
+ "communityRecognized": false,
+ "key": "evm--4663:0xbc9cc4b93a08b2dfba87067a9c53e713db3314ce",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xaa07a0e9209e16ac99708c3ec70159c6ef3128a3",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xaa07a0e9209e16ac99708c3ec70159c6ef3128a3-1788352120153.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xaa07a0e9209e16ac99708c3ec70159c6ef3128a3-1788352120153.png"
+ ],
+ "name": "Orbio.so",
+ "symbol": "ORBIO",
+ "marketCap": "17641751.176414680990139658",
+ "price": "0.01857026439622597999",
+ "priceChange24hPercent": "-1.17",
+ "volume24h": "4970.80131025202532",
+ "communityRecognized": false,
+ "key": "evm--4663:0xaa07a0e9209e16ac99708c3ec70159c6ef3128a3",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x62cd5cd9d354a2a50affe9efa21c8918b9640a5b",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x62cd5cd9d354a2a50affe9efa21c8918b9640a5b-1788698087258.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x62cd5cd9d354a2a50affe9efa21c8918b9640a5b-1788698087258.png"
+ ],
+ "name": "LADY Exchange",
+ "symbol": "LDX",
+ "marketCap": "830756.516496992522362611",
+ "price": "0.00083075651649699252",
+ "priceChange24hPercent": "7.49",
+ "volume24h": "3599.878427026122797",
+ "communityRecognized": false,
+ "key": "evm--4663:0x62cd5cd9d354a2a50affe9efa21c8918b9640a5b",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x18e674231a58c239dc7daedcffe15ec3a24cff5c",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x18e674231a58c239dc7daedcffe15ec3a24cff5c-1786190410593.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x18e674231a58c239dc7daedcffe15ec3a24cff5c-1786190410593.png"
+ ],
+ "name": "Hookr.fun",
+ "symbol": "HOOKR",
+ "marketCap": "16452838.291206863943850606",
+ "price": "0.01651296102485698301",
+ "priceChange24hPercent": "-0.89",
+ "volume24h": "16721.49066148841798",
+ "communityRecognized": true,
+ "key": "evm--4663:0x18e674231a58c239dc7daedcffe15ec3a24cff5c",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xe2dae1c072b9f66bed999873b94798b2152af7e1",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xe2dae1c072b9f66bed999873b94798b2152af7e1-1788697020328.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xe2dae1c072b9f66bed999873b94798b2152af7e1-1788697020328.png"
+ ],
+ "name": "Arbitrage Ape",
+ "symbol": "AA",
+ "marketCap": "4410084.102737949468031625",
+ "price": "0.00448979955071063092",
+ "priceChange24hPercent": "-1.41",
+ "volume24h": "11279.296513",
+ "communityRecognized": false,
+ "key": "evm--4663:0xe2dae1c072b9f66bed999873b94798b2152af7e1",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xab35d04e1ee39c789c4a65d522417b3c7f2e4723",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/fac85c085d11f1aa6ae21cc9ad0bb550feec3cb25196bd13e83f1f5c0ef580c0",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/fac85c085d11f1aa6ae21cc9ad0bb550feec3cb25196bd13e83f1f5c0ef580c0"
+ ],
+ "name": "JT MARLIN",
+ "symbol": "MARLIN",
+ "marketCap": "1060606.547335927728558696",
+ "price": "0.00106060654733592773",
+ "priceChange24hPercent": "-15.3",
+ "volume24h": "8617.797065065106684",
+ "communityRecognized": false,
+ "key": "evm--4663:0xab35d04e1ee39c789c4a65d522417b3c7f2e4723",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x7df5daaf80e65dfcc7a1435d9b52bcf2b5753fbe",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x7df5daaf80e65dfcc7a1435d9b52bcf2b5753fbe-1788696318342.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x7df5daaf80e65dfcc7a1435d9b52bcf2b5753fbe-1788696318342.png"
+ ],
+ "name": "Unipcs",
+ "symbol": "UNIPCS",
+ "marketCap": "812253.578531994003406883",
+ "price": "0.00081339741901936819",
+ "priceChange24hPercent": "-12.31",
+ "volume24h": "9027.132592808510024",
+ "communityRecognized": false,
+ "key": "evm--4663:0x7df5daaf80e65dfcc7a1435d9b52bcf2b5753fbe",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x11b70d0243baf75e85ce03201a92b5b7c33beb59",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x11b70d0243baf75e85ce03201a92b5b7c33beb59-1788697768561.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x11b70d0243baf75e85ce03201a92b5b7c33beb59-1788697768561.png"
+ ],
+ "name": "Robin the Frog",
+ "symbol": "ROBIN",
+ "marketCap": "4951105.534710210742606697",
+ "price": "0.00498856354285522312",
+ "priceChange24hPercent": "-2.54",
+ "volume24h": "1637.82823574395995",
+ "communityRecognized": false,
+ "key": "evm--4663:0x11b70d0243baf75e85ce03201a92b5b7c33beb59",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xe934e36a439c94017b64a3fece66af12099abf50",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xe934e36a439c94017b64a3fece66af12099abf50-1785290631562.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xe934e36a439c94017b64a3fece66af12099abf50-1785290631562.png"
+ ],
+ "name": "StonkBroker",
+ "symbol": "STONKBROKER",
+ "marketCap": "20859686.790204419783593692",
+ "price": "0.01705184277003509474",
+ "priceChange24hPercent": "1",
+ "volume24h": "4442.726949577832773",
+ "communityRecognized": true,
+ "key": "evm--4663:0xe934e36a439c94017b64a3fece66af12099abf50",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xca9c78dd337a67f6e0077f65f5e9218719d30edf",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xca9c78dd337a67f6e0077f65f5e9218719d30edf-1785280831816.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xca9c78dd337a67f6e0077f65f5e9218719d30edf-1785280831816.png"
+ ],
+ "name": "NetNet",
+ "symbol": "NET",
+ "marketCap": "3926147.195878461275917068",
+ "price": "669.55921828626485469435",
+ "priceChange24hPercent": "3.9",
+ "volume24h": "5478.8855083028300905",
+ "communityRecognized": false,
+ "key": "evm--4663:0xca9c78dd337a67f6e0077f65f5e9218719d30edf",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x451b42a15100c340ca12f7c66de06fac5ea2d751",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x451b42a15100c340ca12f7c66de06fac5ea2d751-1787832041620.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x451b42a15100c340ca12f7c66de06fac5ea2d751-1787832041620.png"
+ ],
+ "name": "Longbow",
+ "symbol": "BOW",
+ "marketCap": "5578808.666770871173288788",
+ "price": "0.00557880866677087117",
+ "priceChange24hPercent": "-2.25",
+ "volume24h": "1369.988623942060646",
+ "communityRecognized": false,
+ "key": "evm--4663:0x451b42a15100c340ca12f7c66de06fac5ea2d751",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xef67e3064bef1a27e81925ec7132f23e533bd5f6",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xef67e3064bef1a27e81925ec7132f23e533bd5f6-1788782588286.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xef67e3064bef1a27e81925ec7132f23e533bd5f6-1788782588286.png"
+ ],
+ "name": "Greatest Meme Ever",
+ "symbol": "GME",
+ "marketCap": "4341478.594365716540473077",
+ "price": "0.00434147859482062166",
+ "priceChange24hPercent": "-4.29",
+ "volume24h": "3319.7344112470038591",
+ "communityRecognized": false,
+ "key": "evm--4663:0xef67e3064bef1a27e81925ec7132f23e533bd5f6",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x7dbf38976f6d3b9c529e7d9484a71898b409ee6a",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x7dbf38976f6d3b9c529e7d9484a71898b409ee6a-1788610442171.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x7dbf38976f6d3b9c529e7d9484a71898b409ee6a-1788610442171.png"
+ ],
+ "name": "ZZZ",
+ "symbol": "ZZZ",
+ "marketCap": "15387442.310273929590486193",
+ "price": "0.01831838370270705904",
+ "priceChange24hPercent": "0.65",
+ "volume24h": "700.947176066271126",
+ "communityRecognized": false,
+ "key": "evm--4663:0x7dbf38976f6d3b9c529e7d9484a71898b409ee6a",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x2ae1ebeeda58b68a02dc313f7d90aa6ee546df86",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/2d70c37a83c6c75e1500068ec44d7246c00f6c3cc88134c29c693c7ac392bbc0",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/2d70c37a83c6c75e1500068ec44d7246c00f6c3cc88134c29c693c7ac392bbc0"
+ ],
+ "name": "Milk",
+ "symbol": "DC",
+ "marketCap": "45145.159758174458754856",
+ "price": "16.29547279369660484211",
+ "priceChange24hPercent": "-0.08",
+ "volume24h": "3124.733736",
+ "communityRecognized": false,
+ "key": "evm--4663:0x2ae1ebeeda58b68a02dc313f7d90aa6ee546df86",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x78b96280c3347e0f58a7147b73eb0ec5ffff025d",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x78b96280c3347e0f58a7147b73eb0ec5ffff025d-1788697020328.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x78b96280c3347e0f58a7147b73eb0ec5ffff025d-1788697020328.png"
+ ],
+ "name": "Robinhood Hat Strategy",
+ "symbol": "RSTR",
+ "marketCap": "2672483.071352492209339559",
+ "price": "0.00275753651884972012",
+ "priceChange24hPercent": "-1.6",
+ "volume24h": "3160.9154365303316967",
+ "communityRecognized": false,
+ "key": "evm--4663:0x78b96280c3347e0f58a7147b73eb0ec5ffff025d",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x5173d45a1191ee33cbb7d8c7e65f21b04ed54802",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x5173d45a1191ee33cbb7d8c7e65f21b04ed54802-1788264029244.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x5173d45a1191ee33cbb7d8c7e65f21b04ed54802-1788264029244.png"
+ ],
+ "name": "Ramses",
+ "symbol": "RAM",
+ "marketCap": "3424111.664078886069554709",
+ "price": "0.06792829766749973084",
+ "priceChange24hPercent": "0.71",
+ "volume24h": "8657.0125073030137702",
+ "communityRecognized": false,
+ "key": "evm--4663:0x5173d45a1191ee33cbb7d8c7e65f21b04ed54802",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xe1e5f00a9b0255ca4df85b3130ee0f77d15acc2d",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xe1e5f00a9b0255ca4df85b3130ee0f77d15acc2d-1788696640254.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xe1e5f00a9b0255ca4df85b3130ee0f77d15acc2d-1788696640254.png"
+ ],
+ "name": "Pushin' 🅿️",
+ "symbol": "🅿️",
+ "marketCap": "1560449.17224445245957259",
+ "price": "0.00156044917224445246",
+ "priceChange24hPercent": "-5.43",
+ "volume24h": "2641.807689549454774",
+ "communityRecognized": false,
+ "key": "evm--4663:0xe1e5f00a9b0255ca4df85b3130ee0f77d15acc2d",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x16391c40e85fb2246a2c8c17bfa2594c5d3ef84b",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x16391c40e85fb2246a2c8c17bfa2594c5d3ef84b-1788523244923.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x16391c40e85fb2246a2c8c17bfa2594c5d3ef84b-1788523244923.png"
+ ],
+ "name": "Touch Grass",
+ "symbol": "GRASS",
+ "marketCap": "3518252.016007033689843827",
+ "price": "0.00353755075272048435",
+ "priceChange24hPercent": "0.63",
+ "volume24h": "1087.3965090920958924",
+ "communityRecognized": false,
+ "key": "evm--4663:0x16391c40e85fb2246a2c8c17bfa2594c5d3ef84b",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xe8ffd7e24187f72afb08d75b1bb13088a989a791",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xe8ffd7e24187f72afb08d75b1bb13088a989a791-1786708993342.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xe8ffd7e24187f72afb08d75b1bb13088a989a791-1786708993342.png"
+ ],
+ "name": "Delta",
+ "symbol": "DELTA",
+ "marketCap": "13215421.627403756620751773",
+ "price": "0.0132154219860979857",
+ "priceChange24hPercent": "0.18",
+ "volume24h": "2419.9291160518307032",
+ "communityRecognized": false,
+ "key": "evm--4663:0xe8ffd7e24187f72afb08d75b1bb13088a989a791",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x507b6f349a80114097a67b8b4677367acc15b220",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x507b6f349a80114097a67b8b4677367acc15b220-1788610022118.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x507b6f349a80114097a67b8b4677367acc15b220-1788610022118.png"
+ ],
+ "name": "par",
+ "symbol": "par",
+ "marketCap": "1666928.798512164185625413",
+ "price": "0.00176440509201688206",
+ "priceChange24hPercent": "-8.38",
+ "volume24h": "7334.281552729944463",
+ "communityRecognized": false,
+ "key": "evm--4663:0x507b6f349a80114097a67b8b4677367acc15b220",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x215407c134f68b9da4de10c22c948196053a0d5d",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/70a6389f1690a862f8e3a0d61f5a71c1ed8f0eb1c39ccf6f78f60fff4d400471",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/70a6389f1690a862f8e3a0d61f5a71c1ed8f0eb1c39ccf6f78f60fff4d400471"
+ ],
+ "name": "The Wolf of Wall Street",
+ "symbol": "WOLF",
+ "marketCap": "3790390.962235132347890869",
+ "price": "0.01054922634164950775",
+ "priceChange24hPercent": "-0.25",
+ "volume24h": "3868.357826860442389",
+ "communityRecognized": false,
+ "key": "evm--4663:0x215407c134f68b9da4de10c22c948196053a0d5d",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x812486eaea648819853f8e372dc9f1516c7868bd",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x812486eaea648819853f8e372dc9f1516c7868bd-1788354167261.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x812486eaea648819853f8e372dc9f1516c7868bd-1788354167261.png"
+ ],
+ "name": "ubik",
+ "symbol": "UBIK",
+ "marketCap": "17722979.495896872827918012",
+ "price": "0.01772297949589687283",
+ "priceChange24hPercent": "0.23",
+ "volume24h": "3085.944610412854942",
+ "communityRecognized": false,
+ "key": "evm--4663:0x812486eaea648819853f8e372dc9f1516c7868bd",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xcd8df4c1052a3447bda6a7423fbc234102f3b477",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/2c2886d399c18bd4b0702fc8ad6b51ba9787a4d5b3d91c759a3febf9c71697b5",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/2c2886d399c18bd4b0702fc8ad6b51ba9787a4d5b3d91c759a3febf9c71697b5"
+ ],
+ "name": "Silverback",
+ "symbol": "SILVERBACK",
+ "marketCap": "437612.725643649196156586",
+ "price": "0.0004376127256436492",
+ "priceChange24hPercent": "4.92",
+ "volume24h": "1660.5505670329502829",
+ "communityRecognized": false,
+ "key": "evm--4663:0xcd8df4c1052a3447bda6a7423fbc234102f3b477",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xd4dc6b48ad73ec51e71d9b8f65568f88609b92c1",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xd4dc6b48ad73ec51e71d9b8f65568f88609b92c1-1787659267512.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xd4dc6b48ad73ec51e71d9b8f65568f88609b92c1-1787659267512.png"
+ ],
+ "name": "Sherwood",
+ "symbol": "SHERWOOD",
+ "marketCap": "533070.208604035212901932",
+ "price": "0.00053307020860403521",
+ "priceChange24hPercent": "7.44",
+ "volume24h": "2907.6516904744685",
+ "communityRecognized": false,
+ "key": "evm--4663:0xd4dc6b48ad73ec51e71d9b8f65568f88609b92c1",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x56910d4409f3a0c78c64dd8d0545ff0705389870",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x56910d4409f3a0c78c64dd8d0545ff0705389870-1784842044117.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x56910d4409f3a0c78c64dd8d0545ff0705389870-1784842044117.png"
+ ],
+ "name": "The Index",
+ "symbol": "Index",
+ "marketCap": "38890291.530466797635821549",
+ "price": "0.03966234166783410771",
+ "priceChange24hPercent": "1.4",
+ "volume24h": "4167.27305722587867",
+ "communityRecognized": true,
+ "key": "evm--4663:0x56910d4409f3a0c78c64dd8d0545ff0705389870",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xc2362aff2a2a4cc1f48cf3dab2c4e2605eb94ba3",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xc2362aff2a2a4cc1f48cf3dab2c4e2605eb94ba3-1785758420060.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xc2362aff2a2a4cc1f48cf3dab2c4e2605eb94ba3-1785758420060.png"
+ ],
+ "name": "GameStop",
+ "symbol": "GME",
+ "marketCap": "2880525.050645902892669408",
+ "price": "0.00002880525129724091",
+ "priceChange24hPercent": "-0.19",
+ "volume24h": "1763.699762015681368815",
+ "communityRecognized": false,
+ "key": "evm--4663:0xc2362aff2a2a4cc1f48cf3dab2c4e2605eb94ba3",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x1ec871553be07dc68ec1661c32eca7e2e46e1e18",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/ee7408e5fd186d0c6d70812ea983d43036994104aca07d6d3074523eaa5b18a2",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/ee7408e5fd186d0c6d70812ea983d43036994104aca07d6d3074523eaa5b18a2"
+ ],
+ "name": "STONKS",
+ "symbol": "STONKS",
+ "marketCap": "229307.473859529567886593",
+ "price": "0.00022930747385952957",
+ "priceChange24hPercent": "-1.95",
+ "volume24h": "760.32367341205740105",
+ "communityRecognized": false,
+ "key": "evm--4663:0x1ec871553be07dc68ec1661c32eca7e2e46e1e18",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xfe7e19cbce2f896c6c528bc355baf5a768291e18",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xfe7e19cbce2f896c6c528bc355baf5a768291e18-1786017952373.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xfe7e19cbce2f896c6c528bc355baf5a768291e18-1786017952373.png"
+ ],
+ "name": "SPACEHOOD",
+ "symbol": "SPACEHOOD",
+ "marketCap": "8340762.948113254927286612",
+ "price": "0.00834076294811325493",
+ "priceChange24hPercent": "-1.85",
+ "volume24h": "1384.473255770309585",
+ "communityRecognized": false,
+ "key": "evm--4663:0xfe7e19cbce2f896c6c528bc355baf5a768291e18",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x45242320dbb855eea8fd36804c6487e10e97fcf9",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x45242320dbb855eea8fd36804c6487e10e97fcf9-1784778612504.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x45242320dbb855eea8fd36804c6487e10e97fcf9-1784778612504.png"
+ ],
+ "name": "TENDIES",
+ "symbol": "TENDIES",
+ "marketCap": "15386858.066819138866086556",
+ "price": "0.01608684904807764071",
+ "priceChange24hPercent": "0.08",
+ "volume24h": "919.116596486885962",
+ "communityRecognized": false,
+ "key": "evm--4663:0x45242320dbb855eea8fd36804c6487e10e97fcf9",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x384c3f978950a98523529a205163bf63a69e8dd5",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/7a4fae357f9d4613d7f8b5f8bd76e29c37fb44afd8ff4f0da78fe40be38d3dd3",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/7a4fae357f9d4613d7f8b5f8bd76e29c37fb44afd8ff4f0da78fe40be38d3dd3"
+ ],
+ "name": "Kerf",
+ "symbol": "KERF",
+ "marketCap": "658779.614430525705793727",
+ "price": "0.00065877961443052571",
+ "priceChange24hPercent": "-12.02",
+ "volume24h": "6006.630027545113406",
+ "communityRecognized": false,
+ "key": "evm--4663:0x384c3f978950a98523529a205163bf63a69e8dd5",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xa01bc586cd5f4f253bfab4e44400c52dbc18bc50",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/c365b2142e4c766209febdcd7d1678e3519a6be41b491b73bf8cddfc0cd3ab98",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/c365b2142e4c766209febdcd7d1678e3519a6be41b491b73bf8cddfc0cd3ab98"
+ ],
+ "name": "Voxelithic Protocol",
+ "symbol": "VOXEL",
+ "marketCap": "2202165.275282226596140064",
+ "price": "0.0022021652752822266",
+ "priceChange24hPercent": "3.54",
+ "volume24h": "2092.320270137796015",
+ "communityRecognized": false,
+ "key": "evm--4663:0xa01bc586cd5f4f253bfab4e44400c52dbc18bc50",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x385f4f8ae47651ce5f58f5265395a669f8281e18",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x385f4f8ae47651ce5f58f5265395a669f8281e18-1788523250367.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x385f4f8ae47651ce5f58f5265395a669f8281e18-1788523250367.png"
+ ],
+ "name": "A Meme Coin",
+ "symbol": "MEME",
+ "marketCap": "122218256.939187902400649569",
+ "price": "0.12221825699349346093",
+ "priceChange24hPercent": "0.11",
+ "volume24h": "139480.96698361335480763",
+ "communityRecognized": true,
+ "key": "evm--4663:0x385f4f8ae47651ce5f58f5265395a669f8281e18",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xc9a981fee1f9dec688bb123ccdecc63d0debfc4e",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xc9a981fee1f9dec688bb123ccdecc63d0debfc4e-1786795236632.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xc9a981fee1f9dec688bb123ccdecc63d0debfc4e-1786795236632.png"
+ ],
+ "name": "SPDR Gold Trust • Robinhood Token",
+ "symbol": "GLD",
+ "marketCap": "6354008.701438651155577243",
+ "price": "408.71743444665377406854",
+ "priceChange24hPercent": "0.08",
+ "volume24h": "24366.48927090877046626",
+ "communityRecognized": false,
+ "key": "evm--4663:0xc9a981fee1f9dec688bb123ccdecc63d0debfc4e",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x8e859dbdfbfd2df6a99870e2871eaa58e8784e05",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x8e859dbdfbfd2df6a99870e2871eaa58e8784e05-1788610147869.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x8e859dbdfbfd2df6a99870e2871eaa58e8784e05-1788610147869.png"
+ ],
+ "name": "Nest",
+ "symbol": "NEST",
+ "marketCap": "190040.435952781078801715",
+ "price": "0.00019155893691496779",
+ "priceChange24hPercent": "6.06",
+ "volume24h": "2315.928915984643433",
+ "communityRecognized": false,
+ "key": "evm--4663:0x8e859dbdfbfd2df6a99870e2871eaa58e8784e05",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x48e39e56acdba37b09020c0b734a613c9a2f100a",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x48e39e56acdba37b09020c0b734a613c9a2f100a-1787054422497.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x48e39e56acdba37b09020c0b734a613c9a2f100a-1787054422497.png"
+ ],
+ "name": "Blackberry • Robinhood Token",
+ "symbol": "BB",
+ "marketCap": "642801.143627416799148932",
+ "price": "7.76991187735766064532",
+ "priceChange24hPercent": "0.06",
+ "volume24h": "4603.66456415471636",
+ "communityRecognized": false,
+ "key": "evm--4663:0x48e39e56acdba37b09020c0b734a613c9a2f100a",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x05a3d1cd21d0c88145e82600e62e7e496e0f222b",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x05a3d1cd21d0c88145e82600e62e7e496e0f222b-1787313713111.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x05a3d1cd21d0c88145e82600e62e7e496e0f222b-1787313713111.png"
+ ],
+ "name": "AMC Entertainment • Robinhood Token",
+ "symbol": "AMC",
+ "marketCap": "7487887.980742776489741124",
+ "price": "2.63483856620033023001",
+ "priceChange24hPercent": "0.33",
+ "volume24h": "25641.815493457323175996",
+ "communityRecognized": false,
+ "key": "evm--4663:0x05a3d1cd21d0c88145e82600e62e7e496e0f222b",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xc60ba256b44334a0cd2c7242e98b88f031abb006",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xc60ba256b44334a0cd2c7242e98b88f031abb006-1788523227588.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xc60ba256b44334a0cd2c7242e98b88f031abb006-1788523227588.png"
+ ],
+ "name": "Programmable",
+ "symbol": "V4",
+ "marketCap": "2150844.883321342892826478",
+ "price": "0.00215084488332134289",
+ "priceChange24hPercent": "0.02",
+ "volume24h": "821.08014686715283",
+ "communityRecognized": false,
+ "key": "evm--4663:0xc60ba256b44334a0cd2c7242e98b88f031abb006",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xc6911796042b15d7fa4f6cde69e245ddcd3d9c31",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xc6911796042b15d7fa4f6cde69e245ddcd3d9c31-1784781386422.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xc6911796042b15d7fa4f6cde69e245ddcd3d9c31-1784781386422.png"
+ ],
+ "name": "Virtuals Protocol",
+ "symbol": "VIRTUAL",
+ "marketCap": "5995496.587507049618842862",
+ "price": "0.73197010913559321643",
+ "priceChange24hPercent": "0.42",
+ "volume24h": "4717.35956403835572186",
+ "communityRecognized": true,
+ "key": "evm--4663:0xc6911796042b15d7fa4f6cde69e245ddcd3d9c31",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x03dfbbe0ac4e7bcdafd08ed41a400326b77d8c80",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x03dfbbe0ac4e7bcdafd08ed41a400326b77d8c80-1786795236632.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x03dfbbe0ac4e7bcdafd08ed41a400326b77d8c80-1786795236632.png"
+ ],
+ "name": "Johnson & Johnson • Robinhood Token",
+ "symbol": "JNJ",
+ "marketCap": "472773.77661877394734155",
+ "price": "272.67549793940589857359",
+ "priceChange24hPercent": "-0.2",
+ "volume24h": "854.133538260373675",
+ "communityRecognized": false,
+ "key": "evm--4663:0x03dfbbe0ac4e7bcdafd08ed41a400326b77d8c80",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x8ea0eb3505f5b3bd2bbea0febae0ce850cc73ecc",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x8ea0eb3505f5b3bd2bbea0febae0ce850cc73ecc-1788523223085.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x8ea0eb3505f5b3bd2bbea0febae0ce850cc73ecc-1788523223085.png"
+ ],
+ "name": "OuroLayer",
+ "symbol": "OURO",
+ "marketCap": "4926817.198886655333428856",
+ "price": "0.00492681719888665533",
+ "priceChange24hPercent": "-2.02",
+ "volume24h": "39372.603569077765843",
+ "communityRecognized": false,
+ "key": "evm--4663:0x8ea0eb3505f5b3bd2bbea0febae0ce850cc73ecc",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xded852de9fe9ba9b6f27f39e8e81cf851a5c79cc",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xded852de9fe9ba9b6f27f39e8e81cf851a5c79cc-1788264039086.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xded852de9fe9ba9b6f27f39e8e81cf851a5c79cc-1788264039086.png"
+ ],
+ "name": "ROBINCAT",
+ "symbol": "ROBINCAT",
+ "marketCap": "7190591.61911514001329259",
+ "price": "0.00719059161970446676",
+ "priceChange24hPercent": "0.05",
+ "volume24h": "790.3487305646295047",
+ "communityRecognized": false,
+ "key": "evm--4663:0xded852de9fe9ba9b6f27f39e8e81cf851a5c79cc",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x58ffe4a942d3885baa22d7520691f611ef09e7aa",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x58ffe4a942d3885baa22d7520691f611ef09e7aa-1784793636318.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x58ffe4a942d3885baa22d7520691f611ef09e7aa-1784793636318.png"
+ ],
+ "name": "****************************************************",
+ "symbol": "TSM",
+ "marketCap": "1493062.937174059172916264",
+ "price": "432.78231534519635587615",
+ "priceChange24hPercent": "-0.26",
+ "volume24h": "725.408731957717685714",
+ "communityRecognized": false,
+ "key": "evm--4663:0x58ffe4a942d3885baa22d7520691f611ef09e7aa",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xb9972ca7188e511174947e3936a5315ac7073277",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xb9972ca7188e511174947e3936a5315ac7073277-1787400211008.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xb9972ca7188e511174947e3936a5315ac7073277-1787400211008.png"
+ ],
+ "name": "Prologue",
+ "symbol": "PROLOGUE",
+ "marketCap": "10788562.212828897338133307",
+ "price": "0.01078856221282889734",
+ "priceChange24hPercent": "1.63",
+ "volume24h": "10024.6957399759726803",
+ "communityRecognized": true,
+ "key": "evm--4663:0xb9972ca7188e511174947e3936a5315ac7073277",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x649792631ddbc52551fd765a17382b4d375b9b78",
+ "logoUrl": "https://static.oklink.com/cdn/web3/currency/token/large/4663-0x649792631ddbc52551fd765a17382b4d375b9b78-109/type=default_90_0?v=1788838801035",
+ "logoUrls": [
+ "https://static.oklink.com/cdn/web3/currency/token/large/4663-0x649792631ddbc52551fd765a17382b4d375b9b78-109/type=default_90_0?v=1788838801035"
+ ],
+ "name": "Wheel",
+ "symbol": "WHEEL",
+ "marketCap": "326481.748402756313410967",
+ "price": "0.00032648174840275631",
+ "priceChange24hPercent": "-9.5",
+ "volume24h": "24318.0437941493945137",
+ "communityRecognized": false,
+ "key": "evm--4663:0x649792631ddbc52551fd765a17382b4d375b9b78",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x2a4a33a2163d005d8e7f1d9ac08d14c98db288d5",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x2a4a33a2163d005d8e7f1d9ac08d14c98db288d5-1788091203238.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x2a4a33a2163d005d8e7f1d9ac08d14c98db288d5-1788091203238.png"
+ ],
+ "name": "Twofold",
+ "symbol": "TWO",
+ "marketCap": "801501.985267976025979418",
+ "price": "0.00080150198526797603",
+ "priceChange24hPercent": "-8.35",
+ "volume24h": "6933.488304674330791",
+ "communityRecognized": false,
+ "key": "evm--4663:0x2a4a33a2163d005d8e7f1d9ac08d14c98db288d5",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x941ae714ec6d8130c7b75d67160ca08f1e7d11dd",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x941ae714ec6d8130c7b75d67160ca08f1e7d11dd-1784793655021.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x941ae714ec6d8130c7b75d67160ca08f1e7d11dd-1784793655021.png"
+ ],
+ "name": "Dell • Robinhood Token",
+ "symbol": "DELL",
+ "marketCap": "524541.224040588729763102",
+ "price": "520.9461926537941054146",
+ "priceChange24hPercent": "-0.98",
+ "volume24h": "976.58137764979505103",
+ "communityRecognized": false,
+ "key": "evm--4663:0x941ae714ec6d8130c7b75d67160ca08f1e7d11dd",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x319c5b3f8e46b70cb00769bc8020b4c08ddbc182",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/60e8ba9e65543c91a6d374d55be40e3da9889a57723bf9ee7899d799d9b77bad",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/60e8ba9e65543c91a6d374d55be40e3da9889a57723bf9ee7899d799d9b77bad"
+ ],
+ "name": "Scribble Network",
+ "symbol": "SCRIB",
+ "marketCap": "219268.473129512491825661",
+ "price": "0.00021926847312951249",
+ "priceChange24hPercent": "-4.62",
+ "volume24h": "1426.0844648913724205",
+ "communityRecognized": false,
+ "key": "evm--4663:0x319c5b3f8e46b70cb00769bc8020b4c08ddbc182",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x4874845b0d4acffd896dde1e42828a543717af7f",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x4874845b0d4acffd896dde1e42828a543717af7f-1788264008657.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x4874845b0d4acffd896dde1e42828a543717af7f-1788264008657.png"
+ ],
+ "name": "ur mom",
+ "symbol": "urmom",
+ "marketCap": "1390992.305608446453105625",
+ "price": "0.00139099230560844645",
+ "priceChange24hPercent": "-1.08",
+ "volume24h": "5612.972565797448349",
+ "communityRecognized": false,
+ "key": "evm--4663:0x4874845b0d4acffd896dde1e42828a543717af7f",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xf6589f11bc40b669e584073f428b05562f568733",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xf6589f11bc40b669e584073f428b05562f568733-1786795211827.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xf6589f11bc40b669e584073f428b05562f568733-1786795211827.png"
+ ],
+ "name": "Snap • Robinhood Token",
+ "symbol": "SNAP",
+ "marketCap": "1451776.06331411971064837",
+ "price": "5.40733478793026374367",
+ "priceChange24hPercent": "0.02",
+ "volume24h": "22642.53869754349213",
+ "communityRecognized": false,
+ "key": "evm--4663:0xf6589f11bc40b669e584073f428b05562f568733",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xccee82fe024c36fa15e1005ede3e9e4787e23d09",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xccee82fe024c36fa15e1005ede3e9e4787e23d09-1786795236632.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xccee82fe024c36fa15e1005ede3e9e4787e23d09-1786795236632.png"
+ ],
+ "name": "Hims & Hers Health • Robinhood Token",
+ "symbol": "HIMS",
+ "marketCap": "3699914.235348728047757073",
+ "price": "28.27030663922170740723",
+ "priceChange24hPercent": "1.73",
+ "volume24h": "9471.188859110353833",
+ "communityRecognized": false,
+ "key": "evm--4663:0xccee82fe024c36fa15e1005ede3e9e4787e23d09",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x2f36ba966bf29f702bb290245406a5b0e3e1a66e",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x2f36ba966bf29f702bb290245406a5b0e3e1a66e-1787918402449.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x2f36ba966bf29f702bb290245406a5b0e3e1a66e-1787918402449.png"
+ ],
+ "name": "Swole Cat",
+ "symbol": "SWOLE",
+ "marketCap": "1945388.58018398822410244",
+ "price": "0.00198323131846031836",
+ "priceChange24hPercent": "-1.05",
+ "volume24h": "1713.258890863858291",
+ "communityRecognized": false,
+ "key": "evm--4663:0x2f36ba966bf29f702bb290245406a5b0e3e1a66e",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x57c0e45cb534413d1c20a4240955d6bb250bb4f1",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x57c0e45cb534413d1c20a4240955d6bb250bb4f1-1785005199051.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x57c0e45cb534413d1c20a4240955d6bb250bb4f1-1785005199051.png"
+ ],
+ "name": "up",
+ "symbol": "UP",
+ "marketCap": "10679423.77915784801266049",
+ "price": "0.52728418278711020017",
+ "priceChange24hPercent": "-0.4",
+ "volume24h": "1100.1008158037085408",
+ "communityRecognized": true,
+ "key": "evm--4663:0x57c0e45cb534413d1c20a4240955d6bb250bb4f1",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x7fe995a80075df3dc8ae11a9b82c7fe4202cd87f",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x7fe995a80075df3dc8ae11a9b82c7fe4202cd87f-1785325956569.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x7fe995a80075df3dc8ae11a9b82c7fe4202cd87f-1785325956569.png"
+ ],
+ "name": "Thinking Cat",
+ "symbol": "HMM",
+ "marketCap": "12782796.553544718550157926",
+ "price": "0.0129418959993660162",
+ "priceChange24hPercent": "0.29",
+ "volume24h": "2436.276379926800177",
+ "communityRecognized": true,
+ "key": "evm--4663:0x7fe995a80075df3dc8ae11a9b82c7fe4202cd87f",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xcacb0e9caccee63ec4d82952e561a291c68bcb68",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xcacb0e9caccee63ec4d82952e561a291c68bcb68-1788091369454.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xcacb0e9caccee63ec4d82952e561a291c68bcb68-1788091369454.png"
+ ],
+ "name": "Golden Goose",
+ "symbol": "GG",
+ "marketCap": "3896619.35742371599884368",
+ "price": "0.003896619357423716",
+ "priceChange24hPercent": "2.05",
+ "volume24h": "7688.602148297023893",
+ "communityRecognized": false,
+ "key": "evm--4663:0xcacb0e9caccee63ec4d82952e561a291c68bcb68",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x5d6ef090a1461b11c9427ac319260122d1c61e18",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x5d6ef090a1461b11c9427ac319260122d1c61e18-1788353880496.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x5d6ef090a1461b11c9427ac319260122d1c61e18-1788353880496.png"
+ ],
+ "name": "iCoin",
+ "symbol": "ICOIN",
+ "marketCap": "6794960.644377991165801061",
+ "price": "0.00682768607984745341",
+ "priceChange24hPercent": "6.94",
+ "volume24h": "34244.3145706480126839",
+ "communityRecognized": false,
+ "key": "evm--4663:0x5d6ef090a1461b11c9427ac319260122d1c61e18",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xf0c4bf4c582cb3836e98394b1d4e7b7281101be8",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xf0c4bf4c582cb3836e98394b1d4e7b7281101be8-1784793816237.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xf0c4bf4c582cb3836e98394b1d4e7b7281101be8-1784793816237.png"
+ ],
+ "name": "Roblox • Robinhood Token",
+ "symbol": "RBLX",
+ "marketCap": "878984.023486966066749544",
+ "price": "43.13789657392896344331",
+ "priceChange24hPercent": "0.33",
+ "volume24h": "2772.815161394690728027",
+ "communityRecognized": false,
+ "key": "evm--4663:0xf0c4bf4c582cb3836e98394b1d4e7b7281101be8",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xc35968c7f5475bb03a43c7382526f4118e01c0de",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xc35968c7f5475bb03a43c7382526f4118e01c0de-1785145316583.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xc35968c7f5475bb03a43c7382526f4118e01c0de-1785145316583.png"
+ ],
+ "name": "Robinvista",
+ "symbol": "VISTA",
+ "marketCap": "1460204.861878166770380165",
+ "price": "0.00153509736065304017",
+ "priceChange24hPercent": "-2.48",
+ "volume24h": "503.22276666162542",
+ "communityRecognized": false,
+ "key": "evm--4663:0xc35968c7f5475bb03a43c7382526f4118e01c0de",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x32ac8c1d7672667d5ebdea22935f7b06fc8d496f",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x32ac8c1d7672667d5ebdea22935f7b06fc8d496f-1788264019087.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x32ac8c1d7672667d5ebdea22935f7b06fc8d496f-1788264019087.png"
+ ],
+ "name": "HOOD",
+ "symbol": "HOOD",
+ "marketCap": "1325766.900758184127268845",
+ "price": "123.39448593926314245221",
+ "priceChange24hPercent": "0",
+ "volume24h": "6145.292534410052392",
+ "communityRecognized": false,
+ "key": "evm--4663:0x32ac8c1d7672667d5ebdea22935f7b06fc8d496f",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x4d21483a44bf67a86b77e3da301411880797d452",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x4d21483a44bf67a86b77e3da301411880797d452-1784793663856.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x4d21483a44bf67a86b77e3da301411880797d452-1784793663856.png"
+ ],
+ "name": "Boeing • Robinhood Token",
+ "symbol": "BA",
+ "marketCap": "257302.994465980552442396",
+ "price": "209.97641150332707627755",
+ "priceChange24hPercent": "-0.52",
+ "volume24h": "1684.98736420160412",
+ "communityRecognized": false,
+ "key": "evm--4663:0x4d21483a44bf67a86b77e3da301411880797d452",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x829b217ad539ccc53b18e53c63873333650e60f9",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/cd97ef7a1d3188b2454c4613e6d5fbf7d21f387cd59055aab3fe022119d55ca2",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/cd97ef7a1d3188b2454c4613e6d5fbf7d21f387cd59055aab3fe022119d55ca2"
+ ],
+ "name": "cyberbeer",
+ "symbol": "cyberbeer",
+ "marketCap": "193829.036784379513561768",
+ "price": "0.00019382903678437951",
+ "priceChange24hPercent": "-14.38",
+ "volume24h": "3658.6038185436029748",
+ "communityRecognized": false,
+ "key": "evm--4663:0x829b217ad539ccc53b18e53c63873333650e60f9",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x01637b14b7378b99de75a64d50656d98488d9a4d",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x01637b14b7378b99de75a64d50656d98488d9a4d-1784777167517.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x01637b14b7378b99de75a64d50656d98488d9a4d-1784777167517.png"
+ ],
+ "name": "Lady Marian",
+ "symbol": "MARIAN",
+ "marketCap": "597374.064399229200807222",
+ "price": "0.00060705004836253499",
+ "priceChange24hPercent": "-1.19",
+ "volume24h": "2704.02591240651329",
+ "communityRecognized": false,
+ "key": "evm--4663:0x01637b14b7378b99de75a64d50656d98488d9a4d",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x0339f5459fc690ac85f1782e15782a151b4a9e1b",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x0339f5459fc690ac85f1782e15782a151b4a9e1b-1785758409171.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x0339f5459fc690ac85f1782e15782a151b4a9e1b-1785758409171.png"
+ ],
+ "name": "Robinhood Wallet",
+ "symbol": "WALLET",
+ "marketCap": "26136075.878213180937851308",
+ "price": "0.02765169855905048077",
+ "priceChange24hPercent": "1.88",
+ "volume24h": "1690.4038273679542771",
+ "communityRecognized": false,
+ "key": "evm--4663:0x0339f5459fc690ac85f1782e15782a151b4a9e1b",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x350cadde605e083f58d286e8b3a6b086685fa1ec",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/911e7c6d880430e804a2ae69b44d89d663946caececad6c63a7b0a0bbc6a91d8",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/911e7c6d880430e804a2ae69b44d89d663946caececad6c63a7b0a0bbc6a91d8"
+ ],
+ "name": "Commotitties",
+ "symbol": "Titties",
+ "marketCap": "339691.55347485501300593",
+ "price": "0.00033969155347485501",
+ "priceChange24hPercent": "-5.37",
+ "volume24h": "5131.06084520367274",
+ "communityRecognized": false,
+ "key": "evm--4663:0x350cadde605e083f58d286e8b3a6b086685fa1ec",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x14641000a501bdc736116abf84e6fcea9b90a713",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x14641000a501bdc736116abf84e6fcea9b90a713-1788178423240.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x14641000a501bdc736116abf84e6fcea9b90a713-1788178423240.png"
+ ],
+ "name": "MESH Gateway",
+ "symbol": "MESH",
+ "marketCap": "1208210.549215450362706768",
+ "price": "0.00120821054921545036",
+ "priceChange24hPercent": "2.56",
+ "volume24h": "1270.133549862326245",
+ "communityRecognized": false,
+ "key": "evm--4663:0x14641000a501bdc736116abf84e6fcea9b90a713",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x47366e0f257ac009e82bd46fb74e2fb50826ce98",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x47366e0f257ac009e82bd46fb74e2fb50826ce98-1788782573410.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x47366e0f257ac009e82bd46fb74e2fb50826ce98-1788782573410.png"
+ ],
+ "name": "Agent OBS",
+ "symbol": "AOBS",
+ "marketCap": "747177.187161812745613373",
+ "price": "0.00074717718716181275",
+ "priceChange24hPercent": "2",
+ "volume24h": "559.0986688437686085",
+ "communityRecognized": false,
+ "key": "evm--4663:0x47366e0f257ac009e82bd46fb74e2fb50826ce98",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x8005d266423c7ea827372c9c864491e5786600ea",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x8005d266423c7ea827372c9c864491e5786600ea-1784793642266.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x8005d266423c7ea827372c9c864491e5786600ea-1784793642266.png"
+ ],
+ "name": "Eli Lilly • Robinhood Token",
+ "symbol": "LLY",
+ "marketCap": "3656579.752548914628009893",
+ "price": "1147.72362638036987585255",
+ "priceChange24hPercent": "0.32",
+ "volume24h": "20273.666126836364487434",
+ "communityRecognized": false,
+ "key": "evm--4663:0x8005d266423c7ea827372c9c864491e5786600ea",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xc6e8c393d46b685c2fb2177f759f2b16eb7a7d54",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xc6e8c393d46b685c2fb2177f759f2b16eb7a7d54-1788610210822.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xc6e8c393d46b685c2fb2177f759f2b16eb7a7d54-1788610210822.png"
+ ],
+ "name": "Artificial Neko",
+ "symbol": "NEKO",
+ "marketCap": "647276.254200479756141281",
+ "price": "0.00064727625420047976",
+ "priceChange24hPercent": "2.97",
+ "volume24h": "2054.4102332130790864",
+ "communityRecognized": false,
+ "key": "evm--4663:0xc6e8c393d46b685c2fb2177f759f2b16eb7a7d54",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xbf3e53713a53e9c3d5d1ddc25dd2c65669244663",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xbf3e53713a53e9c3d5d1ddc25dd2c65669244663-1788004852603.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xbf3e53713a53e9c3d5d1ddc25dd2c65669244663-1788004852603.png"
+ ],
+ "name": "Pussy Cat Club",
+ "symbol": "PCC",
+ "marketCap": "4137640.067734894772920102",
+ "price": "0.00413764006773489477",
+ "priceChange24hPercent": "1.98",
+ "volume24h": "4033.0487776783484786",
+ "communityRecognized": false,
+ "key": "evm--4663:0xbf3e53713a53e9c3d5d1ddc25dd2c65669244663",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x5759a852243a56a48853af1d28fd4e0f33747c9b",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x5759a852243a56a48853af1d28fd4e0f33747c9b-1788610268473.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x5759a852243a56a48853af1d28fd4e0f33747c9b-1788610268473.png"
+ ],
+ "name": "Robinhood Asteroid",
+ "symbol": "18932",
+ "marketCap": "523109.646147250458358492",
+ "price": "0.00052310964614725046",
+ "priceChange24hPercent": "-6.45",
+ "volume24h": "1812.42172479433641",
+ "communityRecognized": false,
+ "key": "evm--4663:0x5759a852243a56a48853af1d28fd4e0f33747c9b",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x6547911e5b8f3cfa9e6bca37ddde3009e83faa2d",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x6547911e5b8f3cfa9e6bca37ddde3009e83faa2d-1787745669587.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x6547911e5b8f3cfa9e6bca37ddde3009e83faa2d-1787745669587.png"
+ ],
+ "name": "Stock Miners Fuel",
+ "symbol": "FUEL",
+ "marketCap": "274019.769547486526300681",
+ "price": "0.00032909145227569654",
+ "priceChange24hPercent": "-5.78",
+ "volume24h": "828.424513777078884",
+ "communityRecognized": false,
+ "key": "evm--4663:0x6547911e5b8f3cfa9e6bca37ddde3009e83faa2d",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x6b12ec435f15f823ee3c550e9013123e4187429b",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x6b12ec435f15f823ee3c550e9013123e4187429b-1788696318342.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x6b12ec435f15f823ee3c550e9013123e4187429b-1788696318342.png"
+ ],
+ "name": "Rocket",
+ "symbol": "🚀",
+ "marketCap": "351431.232745266008463935",
+ "price": "0.00035143123274526601",
+ "priceChange24hPercent": "-5.94",
+ "volume24h": "1584.243885673878754",
+ "communityRecognized": false,
+ "key": "evm--4663:0x6b12ec435f15f823ee3c550e9013123e4187429b",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xf2e122a481b440c40eee7a7ca6d5eef65a591b76",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xf2e122a481b440c40eee7a7ca6d5eef65a591b76-1788697706307.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xf2e122a481b440c40eee7a7ca6d5eef65a591b76-1788697706307.png"
+ ],
+ "name": "Quantum Cats",
+ "symbol": "QC",
+ "marketCap": "1168948.501236980233192217",
+ "price": "0.00131162658364001449",
+ "priceChange24hPercent": "-2.88",
+ "volume24h": "1552.22006321325718",
+ "communityRecognized": false,
+ "key": "evm--4663:0xf2e122a481b440c40eee7a7ca6d5eef65a591b76",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x822cc93ffd030293e9842c30bbd678f530701867",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x822cc93ffd030293e9842c30bbd678f530701867-1784780807736.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x822cc93ffd030293e9842c30bbd678f530701867-1784780807736.png"
+ ],
+ "name": "Bloom Energy • Robinhood Token",
+ "symbol": "BE",
+ "marketCap": "624295.128366597621044695",
+ "price": "273.44796879168521540422",
+ "priceChange24hPercent": "-0.04",
+ "volume24h": "5102.655031685745901982",
+ "communityRecognized": false,
+ "key": "evm--4663:0x822cc93ffd030293e9842c30bbd678f530701867",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x4e62068525ab11fe768e29dfd00ef909b9803016",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x4e62068525ab11fe768e29dfd00ef909b9803016-1784793635480.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x4e62068525ab11fe768e29dfd00ef909b9803016-1784793635480.png"
+ ],
+ "name": "Lululemon • Robinhood Token",
+ "symbol": "LULU",
+ "marketCap": "1213489.374966781789057352",
+ "price": "100.01053895604716639686",
+ "priceChange24hPercent": "0.56",
+ "volume24h": "2291.50360772099550496",
+ "communityRecognized": false,
+ "key": "evm--4663:0x4e62068525ab11fe768e29dfd00ef909b9803016",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xd18528b39da6464b3662c331a52181ecb15b1e18",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xd18528b39da6464b3662c331a52181ecb15b1e18-1788004841997.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xd18528b39da6464b3662c331a52181ecb15b1e18-1788004841997.png"
+ ],
+ "name": "SAYLORMOON",
+ "symbol": "SAYLORMOON",
+ "marketCap": "2608877.363720267405226701",
+ "price": "0.00260887736372026741",
+ "priceChange24hPercent": "-2.34",
+ "volume24h": "3858.849660412761114825",
+ "communityRecognized": false,
+ "key": "evm--4663:0xd18528b39da6464b3662c331a52181ecb15b1e18",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x0d257ca40d40090be60c2d2ed5bb3535392838cc",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x0d257ca40d40090be60c2d2ed5bb3535392838cc-1788004841997.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x0d257ca40d40090be60c2d2ed5bb3535392838cc-1788004841997.png"
+ ],
+ "name": "Robinhood10 Index",
+ "symbol": "HOOD10",
+ "marketCap": "405196.485759144889519565",
+ "price": "0.00040906055718335232",
+ "priceChange24hPercent": "-3.91",
+ "volume24h": "3160.8891461117763754",
+ "communityRecognized": false,
+ "key": "evm--4663:0x0d257ca40d40090be60c2d2ed5bb3535392838cc",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xee5576fa1bcaa380e591d01245f406f3f384eb01",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xee5576fa1bcaa380e591d01245f406f3f384eb01-1787832045009.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xee5576fa1bcaa380e591d01245f406f3f384eb01-1787832045009.png"
+ ],
+ "name": "Down to Finance",
+ "symbol": "DTF",
+ "marketCap": "8964448.183263811248727251",
+ "price": "0.00896444822483335211",
+ "priceChange24hPercent": "2.55",
+ "volume24h": "17586.22373923396788",
+ "communityRecognized": false,
+ "key": "evm--4663:0xee5576fa1bcaa380e591d01245f406f3f384eb01",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x8729b8979bbfbaed759b95901c5c076b49c36bf5",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/da52d70d6dd9c8af1a1b501d38668404894673b3ca2fc292ca6d03cbebe09ecc",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/da52d70d6dd9c8af1a1b501d38668404894673b3ca2fc292ca6d03cbebe09ecc"
+ ],
+ "name": "EXIT ENGINE",
+ "symbol": "EXIT",
+ "marketCap": "223764.338597723805524923",
+ "price": "0.00022376433859772381",
+ "priceChange24hPercent": "1.48",
+ "volume24h": "518.707423358279773",
+ "communityRecognized": false,
+ "key": "evm--4663:0x8729b8979bbfbaed759b95901c5c076b49c36bf5",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x9fa1c5e90a11294f83a9f135b81ad1b537a5ffdc",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x9fa1c5e90a11294f83a9f135b81ad1b537a5ffdc-1788696957669.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x9fa1c5e90a11294f83a9f135b81ad1b537a5ffdc-1788696957669.png"
+ ],
+ "name": "ZEAL",
+ "symbol": "ZEAL",
+ "marketCap": "1048980.588938960541843968",
+ "price": "0.00104899150394290638",
+ "priceChange24hPercent": "-1.44",
+ "volume24h": "1102.0847337139150036",
+ "communityRecognized": false,
+ "key": "evm--4663:0x9fa1c5e90a11294f83a9f135b81ad1b537a5ffdc",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ }
+ ],
+ "trending|evm--4663|1h|all": [
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x39dbed3a2bd333467115de45665cc57f813c4571",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x39dbed3a2bd333467115de45665cc57f813c4571-1785145437955.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x39dbed3a2bd333467115de45665cc57f813c4571-1785145437955.png"
+ ],
+ "name": "Pons",
+ "symbol": "PONS",
+ "marketCap": "492687665.20371759125025286",
+ "price": "0.70384361512765804418",
+ "priceChange24hPercent": "1.38",
+ "volume24h": "4594004.819939206452462353",
+ "communityRecognized": true,
+ "key": "evm--4663:0x39dbed3a2bd333467115de45665cc57f813c4571",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x4a72b9702f991b790788f8afa9e7112541f4e8f8",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/a2e5ad0ff8689f1c746d6b07fd9718545cd44c67e13dabe8ba7242d613586821",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/a2e5ad0ff8689f1c746d6b07fd9718545cd44c67e13dabe8ba7242d613586821"
+ ],
+ "name": "Route",
+ "symbol": "ROUTE",
+ "marketCap": "5498451.406603741582838483",
+ "price": "0.00549845140660374158",
+ "priceChange24hPercent": "-13.78",
+ "volume24h": "828887.176679169418601673",
+ "communityRecognized": false,
+ "key": "evm--4663:0x4a72b9702f991b790788f8afa9e7112541f4e8f8",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xe2324ff2a59f8ecba8c321c6466e59121c00e795",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/84804585551812a64183c44a4e291f2332c9a5ff2d07e52dbcd3b81d60c989b3",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/84804585551812a64183c44a4e291f2332c9a5ff2d07e52dbcd3b81d60c989b3"
+ ],
+ "name": "Commodity Market Exchange",
+ "symbol": "CME",
+ "marketCap": "2853217.606299477607716679",
+ "price": "0.00285321760629947761",
+ "priceChange24hPercent": "-2",
+ "volume24h": "1108519.402653162408145075",
+ "communityRecognized": false,
+ "key": "evm--4663:0xe2324ff2a59f8ecba8c321c6466e59121c00e795",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x6b1d42927b1a84ec28fa88d4fc6fa7af404966be",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x6b1d42927b1a84ec28fa88d4fc6fa7af404966be-1788091561508.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x6b1d42927b1a84ec28fa88d4fc6fa7af404966be-1788091561508.png"
+ ],
+ "name": "PAIR",
+ "symbol": "PAIR",
+ "marketCap": "13922294.949687588667787664",
+ "price": "0.01553740059562339121",
+ "priceChange24hPercent": "-11.8",
+ "volume24h": "320164.351244709917024389",
+ "communityRecognized": false,
+ "key": "evm--4663:0x6b1d42927b1a84ec28fa88d4fc6fa7af404966be",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x0000000005aca17e8bd5779fc87e13cb433aed24",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x0000000005aca17e8bd5779fc87e13cb433aed24-1788697955302.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x0000000005aca17e8bd5779fc87e13cb433aed24-1788697955302.png"
+ ],
+ "name": "NUKE",
+ "symbol": "NUKE",
+ "marketCap": "10344114.294054815385789125",
+ "price": "74.30148928041241780785",
+ "priceChange24hPercent": "50.66",
+ "volume24h": "396547.430522241568088",
+ "communityRecognized": false,
+ "key": "evm--4663:0x0000000005aca17e8bd5779fc87e13cb433aed24",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xab093def657f15df31b33922a95e047add645b29",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xab093def657f15df31b33922a95e047add645b29-1788523212752.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xab093def657f15df31b33922a95e047add645b29-1788523212752.png"
+ ],
+ "name": "MUSHROOM",
+ "symbol": "SHROOM",
+ "marketCap": "31040529.465871812895696673",
+ "price": "0.03143926481944639757",
+ "priceChange24hPercent": "-2.7",
+ "volume24h": "305346.75044689703074217",
+ "communityRecognized": true,
+ "key": "evm--4663:0xab093def657f15df31b33922a95e047add645b29",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x2e8c31162b855a2ffa90f6f8634643ad6f111e18",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x2e8c31162b855a2ffa90f6f8634643ad6f111e18-1785845221968.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x2e8c31162b855a2ffa90f6f8634643ad6f111e18-1785845221968.png"
+ ],
+ "name": "Artificial Inu",
+ "symbol": "AI",
+ "marketCap": "259997174.369260732379842519",
+ "price": "0.26225409551078842417",
+ "priceChange24hPercent": "-0.31",
+ "volume24h": "1131191.284803277551913739",
+ "communityRecognized": true,
+ "key": "evm--4663:0x2e8c31162b855a2ffa90f6f8634643ad6f111e18",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xd9db30bb0d2b8d2eae3826a1372117e058791e18",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xd9db30bb0d2b8d2eae3826a1372117e058791e18-1788091222725.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xd9db30bb0d2b8d2eae3826a1372117e058791e18-1788091222725.png"
+ ],
+ "name": "Memory cow Moo",
+ "symbol": "MOO",
+ "marketCap": "25421271.013613587865372077",
+ "price": "0.02570519512113269816",
+ "priceChange24hPercent": "-1.77",
+ "volume24h": "379741.16305040806979696",
+ "communityRecognized": true,
+ "key": "evm--4663:0xd9db30bb0d2b8d2eae3826a1372117e058791e18",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x7ba36be14dd06ba492f08be6c1b2979c1d0b652c",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x7ba36be14dd06ba492f08be6c1b2979c1d0b652c-1788178016235.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x7ba36be14dd06ba492f08be6c1b2979c1d0b652c-1788178016235.png"
+ ],
+ "name": "PerpsHood",
+ "symbol": "PERPSHOOD",
+ "marketCap": "3111996.446146368568450989",
+ "price": "0.00315860300715415141",
+ "priceChange24hPercent": "4.58",
+ "volume24h": "59403.394794240909708",
+ "communityRecognized": false,
+ "key": "evm--4663:0x7ba36be14dd06ba492f08be6c1b2979c1d0b652c",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x6d11782ef6cbe773da2defef612f9a57c54012bf",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/aed9300fe93af8a077cf133b5d703e28386f95d7724261f173da91a4cac7df65",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/aed9300fe93af8a077cf133b5d703e28386f95d7724261f173da91a4cac7df65"
+ ],
+ "name": "Macintosh",
+ "symbol": "MACINTOSH",
+ "marketCap": "1400165.612151950161775918",
+ "price": "0.00140016561215195016",
+ "priceChange24hPercent": "68.57",
+ "volume24h": "58118.54419303448624359",
+ "communityRecognized": false,
+ "key": "evm--4663:0x6d11782ef6cbe773da2defef612f9a57c54012bf",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x15d36b6a28d8327abc7afabf0f106ae2c9af5c4d",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x15d36b6a28d8327abc7afabf0f106ae2c9af5c4d-1788523244923.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x15d36b6a28d8327abc7afabf0f106ae2c9af5c4d-1788523244923.png"
+ ],
+ "name": "Pare",
+ "symbol": "PARE",
+ "marketCap": "12472779.347945200550616218",
+ "price": "0.01247277934794520055",
+ "priceChange24hPercent": "2.42",
+ "volume24h": "288719.578127112635378196",
+ "communityRecognized": false,
+ "key": "evm--4663:0x15d36b6a28d8327abc7afabf0f106ae2c9af5c4d",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x79a74fd91f8e1c4ab8e76253dec5c91f3094393f",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/e1f481a4066feec841bf3345c090a6cdd9fd2274a972cf1981f3a0a234f42d9c",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/e1f481a4066feec841bf3345c090a6cdd9fd2274a972cf1981f3a0a234f42d9c"
+ ],
+ "name": "Superstables",
+ "symbol": "STBL",
+ "marketCap": "430052.948915032286294785",
+ "price": "0.00043005294891503229",
+ "priceChange24hPercent": "-32.43",
+ "volume24h": "424879.3609845305841396",
+ "communityRecognized": false,
+ "key": "evm--4663:0x79a74fd91f8e1c4ab8e76253dec5c91f3094393f",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x7163ae1b5aea2f09ebc609c52b4dcac0a7a4bc2d",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/b565852235f4b58795118e627a62621101b692c4e2e2801f518600ad55c59755",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/b565852235f4b58795118e627a62621101b692c4e2e2801f518600ad55c59755"
+ ],
+ "name": "GAGE",
+ "symbol": "GAGE",
+ "marketCap": "2031316.219519833826009659",
+ "price": "0.00203131621951983383",
+ "priceChange24hPercent": "-25.49",
+ "volume24h": "190489.12766874735505156",
+ "communityRecognized": false,
+ "key": "evm--4663:0x7163ae1b5aea2f09ebc609c52b4dcac0a7a4bc2d",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xa3602804e096cb73bd8344afc1ff3f3390b899c5",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xa3602804e096cb73bd8344afc1ff3f3390b899c5-1788697149485.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xa3602804e096cb73bd8344afc1ff3f3390b899c5-1788697149485.png"
+ ],
+ "name": "PEZ",
+ "symbol": "PEZ",
+ "marketCap": "2552015.440732567570403185",
+ "price": "0.00255202107719303053",
+ "priceChange24hPercent": "-20.25",
+ "volume24h": "182125.8597167966900442",
+ "communityRecognized": false,
+ "key": "evm--4663:0xa3602804e096cb73bd8344afc1ff3f3390b899c5",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x76ed1e2a8fc3873fcb5c514688ca2fe8a3600b7f",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/1dbcb030f10554487ca05c3aaa7fcc97cef5b687e39b63bafb0d000d20616792",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/1dbcb030f10554487ca05c3aaa7fcc97cef5b687e39b63bafb0d000d20616792"
+ ],
+ "name": "LAPTOP",
+ "symbol": "LAPTOP",
+ "marketCap": "1179059.264328386209432576",
+ "price": "0.00117905926432838621",
+ "priceChange24hPercent": "0.29",
+ "volume24h": "113913.222387016850798232",
+ "communityRecognized": false,
+ "key": "evm--4663:0x76ed1e2a8fc3873fcb5c514688ca2fe8a3600b7f",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x98096d17e191b3da1d5f99a6d7b3584351b11e18",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x98096d17e191b3da1d5f99a6d7b3584351b11e18-1787918411975.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x98096d17e191b3da1d5f99a6d7b3584351b11e18-1787918411975.png"
+ ],
+ "name": "Boner Coin",
+ "symbol": "BONER",
+ "marketCap": "58129181.519069637833904517",
+ "price": "0.05812919390713559434",
+ "priceChange24hPercent": "-4.38",
+ "volume24h": "328782.575738469457849601",
+ "communityRecognized": true,
+ "key": "evm--4663:0x98096d17e191b3da1d5f99a6d7b3584351b11e18",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x12d5ee7917ca430073c3a638ee1e6f0648a98a01",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x12d5ee7917ca430073c3a638ee1e6f0648a98a01-1788350677314.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x12d5ee7917ca430073c3a638ee1e6f0648a98a01-1788350677314.png"
+ ],
+ "name": "FATCOIN",
+ "symbol": "FATCOIN",
+ "marketCap": "15073886.50104684331489565",
+ "price": "0.01507388650104684331",
+ "priceChange24hPercent": "-8.14",
+ "volume24h": "148673.5751374601391666",
+ "communityRecognized": false,
+ "key": "evm--4663:0x12d5ee7917ca430073c3a638ee1e6f0648a98a01",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xafe41f4356c24f716111de1fbbc84e061d291e18",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xafe41f4356c24f716111de1fbbc84e061d291e18-1788264039086.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xafe41f4356c24f716111de1fbbc84e061d291e18-1788264039086.png"
+ ],
+ "name": "Cache Cow",
+ "symbol": "CACHE",
+ "marketCap": "1056454.727534532364284546",
+ "price": "0.00105645472753453236",
+ "priceChange24hPercent": "-13.76",
+ "volume24h": "45644.897539656605397776",
+ "communityRecognized": false,
+ "key": "evm--4663:0xafe41f4356c24f716111de1fbbc84e061d291e18",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xd5f1afea47b1a9eab414d2ee740cf1d6d039e725",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xd5f1afea47b1a9eab414d2ee740cf1d6d039e725-1788091431352.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xd5f1afea47b1a9eab414d2ee740cf1d6d039e725-1788091431352.png"
+ ],
+ "name": "microduck",
+ "symbol": "microduck",
+ "marketCap": "18335033.149710684136041623",
+ "price": "0.01833503314971068414",
+ "priceChange24hPercent": "-2.88",
+ "volume24h": "155879.79714796412102662",
+ "communityRecognized": false,
+ "key": "evm--4663:0xd5f1afea47b1a9eab414d2ee740cf1d6d039e725",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x020bfc650a365f8bb26819deaabf3e21291018b4",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x020bfc650a365f8bb26819deaabf3e21291018b4-1784778353843.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x020bfc650a365f8bb26819deaabf3e21291018b4-1784778353843.png"
+ ],
+ "name": "Cash Cat",
+ "symbol": "CASHCAT",
+ "marketCap": "188270431.00592652282973507",
+ "price": "0.19053459862614162397",
+ "priceChange24hPercent": "0.13",
+ "volume24h": "501010.853040381066884538",
+ "communityRecognized": true,
+ "key": "evm--4663:0x020bfc650a365f8bb26819deaabf3e21291018b4",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xbe98b75361935b18d688409424a869a4c3dc7401",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xbe98b75361935b18d688409424a869a4c3dc7401-1788436898916.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xbe98b75361935b18d688409424a869a4c3dc7401-1788436898916.png"
+ ],
+ "name": "Send Nudes",
+ "symbol": "NUDES",
+ "marketCap": "14740176.222858396815503008",
+ "price": "0.01474017622285839682",
+ "priceChange24hPercent": "5.07",
+ "volume24h": "164655.76035486521194106",
+ "communityRecognized": false,
+ "key": "evm--4663:0xbe98b75361935b18d688409424a869a4c3dc7401",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xbc9cc4b93a08b2dfba87067a9c53e713db3314ce",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/a34bd343ce2418e2688d9be4430fef2415dee4b660c25a3bbbcaaf3481e299a4",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/a34bd343ce2418e2688d9be4430fef2415dee4b660c25a3bbbcaaf3481e299a4"
+ ],
+ "name": "Pink Sheets",
+ "symbol": "PINK",
+ "marketCap": "966041.535560089479163395",
+ "price": "0.00096604153556008948",
+ "priceChange24hPercent": "-22.86",
+ "volume24h": "132862.81793428022380857",
+ "communityRecognized": false,
+ "key": "evm--4663:0xbc9cc4b93a08b2dfba87067a9c53e713db3314ce",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xaa07a0e9209e16ac99708c3ec70159c6ef3128a3",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xaa07a0e9209e16ac99708c3ec70159c6ef3128a3-1788352120153.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xaa07a0e9209e16ac99708c3ec70159c6ef3128a3-1788352120153.png"
+ ],
+ "name": "Orbio.so",
+ "symbol": "ORBIO",
+ "marketCap": "17641751.176414680990139658",
+ "price": "0.01857026439622597999",
+ "priceChange24hPercent": "-0.05",
+ "volume24h": "80397.6099670979034485",
+ "communityRecognized": false,
+ "key": "evm--4663:0xaa07a0e9209e16ac99708c3ec70159c6ef3128a3",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x62cd5cd9d354a2a50affe9efa21c8918b9640a5b",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x62cd5cd9d354a2a50affe9efa21c8918b9640a5b-1788698087258.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x62cd5cd9d354a2a50affe9efa21c8918b9640a5b-1788698087258.png"
+ ],
+ "name": "LADY Exchange",
+ "symbol": "LDX",
+ "marketCap": "830756.516496992522362611",
+ "price": "0.00083075651649699252",
+ "priceChange24hPercent": "24.46",
+ "volume24h": "27351.83829885822164",
+ "communityRecognized": false,
+ "key": "evm--4663:0x62cd5cd9d354a2a50affe9efa21c8918b9640a5b",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x18e674231a58c239dc7daedcffe15ec3a24cff5c",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x18e674231a58c239dc7daedcffe15ec3a24cff5c-1786190410593.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x18e674231a58c239dc7daedcffe15ec3a24cff5c-1786190410593.png"
+ ],
+ "name": "Hookr.fun",
+ "symbol": "HOOKR",
+ "marketCap": "16452838.291206863943850606",
+ "price": "0.01651296102485698301",
+ "priceChange24hPercent": "-14.08",
+ "volume24h": "97742.22695457739015848",
+ "communityRecognized": true,
+ "key": "evm--4663:0x18e674231a58c239dc7daedcffe15ec3a24cff5c",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xe2dae1c072b9f66bed999873b94798b2152af7e1",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xe2dae1c072b9f66bed999873b94798b2152af7e1-1788697020328.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xe2dae1c072b9f66bed999873b94798b2152af7e1-1788697020328.png"
+ ],
+ "name": "Arbitrage Ape",
+ "symbol": "AA",
+ "marketCap": "4410084.102737949468031625",
+ "price": "0.00448979955071063092",
+ "priceChange24hPercent": "-5.37",
+ "volume24h": "183879.691215007695243",
+ "communityRecognized": false,
+ "key": "evm--4663:0xe2dae1c072b9f66bed999873b94798b2152af7e1",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xab35d04e1ee39c789c4a65d522417b3c7f2e4723",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/fac85c085d11f1aa6ae21cc9ad0bb550feec3cb25196bd13e83f1f5c0ef580c0",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/fac85c085d11f1aa6ae21cc9ad0bb550feec3cb25196bd13e83f1f5c0ef580c0"
+ ],
+ "name": "JT MARLIN",
+ "symbol": "MARLIN",
+ "marketCap": "1060606.547335927728558696",
+ "price": "0.00106060654733592773",
+ "priceChange24hPercent": "-14.96",
+ "volume24h": "152957.1942705519529996",
+ "communityRecognized": false,
+ "key": "evm--4663:0xab35d04e1ee39c789c4a65d522417b3c7f2e4723",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x7df5daaf80e65dfcc7a1435d9b52bcf2b5753fbe",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x7df5daaf80e65dfcc7a1435d9b52bcf2b5753fbe-1788696318342.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x7df5daaf80e65dfcc7a1435d9b52bcf2b5753fbe-1788696318342.png"
+ ],
+ "name": "Unipcs",
+ "symbol": "UNIPCS",
+ "marketCap": "812253.578531994003406883",
+ "price": "0.00081339741901936819",
+ "priceChange24hPercent": "-24.26",
+ "volume24h": "28102.955362371681440725",
+ "communityRecognized": false,
+ "key": "evm--4663:0x7df5daaf80e65dfcc7a1435d9b52bcf2b5753fbe",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x11b70d0243baf75e85ce03201a92b5b7c33beb59",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x11b70d0243baf75e85ce03201a92b5b7c33beb59-1788697768561.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x11b70d0243baf75e85ce03201a92b5b7c33beb59-1788697768561.png"
+ ],
+ "name": "Robin the Frog",
+ "symbol": "ROBIN",
+ "marketCap": "4951105.534710210742606697",
+ "price": "0.00498856354285522312",
+ "priceChange24hPercent": "-16.94",
+ "volume24h": "216010.351728785929439448",
+ "communityRecognized": false,
+ "key": "evm--4663:0x11b70d0243baf75e85ce03201a92b5b7c33beb59",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xe934e36a439c94017b64a3fece66af12099abf50",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xe934e36a439c94017b64a3fece66af12099abf50-1785290631562.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xe934e36a439c94017b64a3fece66af12099abf50-1785290631562.png"
+ ],
+ "name": "StonkBroker",
+ "symbol": "STONKBROKER",
+ "marketCap": "20859686.790204419783593692",
+ "price": "0.01705184277003509474",
+ "priceChange24hPercent": "5.49",
+ "volume24h": "142007.453087770686254203",
+ "communityRecognized": true,
+ "key": "evm--4663:0xe934e36a439c94017b64a3fece66af12099abf50",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xca9c78dd337a67f6e0077f65f5e9218719d30edf",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xca9c78dd337a67f6e0077f65f5e9218719d30edf-1785280831816.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xca9c78dd337a67f6e0077f65f5e9218719d30edf-1785280831816.png"
+ ],
+ "name": "NetNet",
+ "symbol": "NET",
+ "marketCap": "3926147.195878461275917068",
+ "price": "669.55921828626485469435",
+ "priceChange24hPercent": "1.3",
+ "volume24h": "179881.4792505861419609",
+ "communityRecognized": false,
+ "key": "evm--4663:0xca9c78dd337a67f6e0077f65f5e9218719d30edf",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x451b42a15100c340ca12f7c66de06fac5ea2d751",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x451b42a15100c340ca12f7c66de06fac5ea2d751-1787832041620.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x451b42a15100c340ca12f7c66de06fac5ea2d751-1787832041620.png"
+ ],
+ "name": "Longbow",
+ "symbol": "BOW",
+ "marketCap": "5578808.666770871173288788",
+ "price": "0.00557880866677087117",
+ "priceChange24hPercent": "8.95",
+ "volume24h": "73399.3216269064000872",
+ "communityRecognized": false,
+ "key": "evm--4663:0x451b42a15100c340ca12f7c66de06fac5ea2d751",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xef67e3064bef1a27e81925ec7132f23e533bd5f6",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xef67e3064bef1a27e81925ec7132f23e533bd5f6-1788782588286.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xef67e3064bef1a27e81925ec7132f23e533bd5f6-1788782588286.png"
+ ],
+ "name": "Greatest Meme Ever",
+ "symbol": "GME",
+ "marketCap": "4341478.594365716540473077",
+ "price": "0.00434147859482062166",
+ "priceChange24hPercent": "-15.25",
+ "volume24h": "130099.73078045743694375",
+ "communityRecognized": false,
+ "key": "evm--4663:0xef67e3064bef1a27e81925ec7132f23e533bd5f6",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x7dbf38976f6d3b9c529e7d9484a71898b409ee6a",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x7dbf38976f6d3b9c529e7d9484a71898b409ee6a-1788610442171.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x7dbf38976f6d3b9c529e7d9484a71898b409ee6a-1788610442171.png"
+ ],
+ "name": "ZZZ",
+ "symbol": "ZZZ",
+ "marketCap": "15387442.310273929590486193",
+ "price": "0.01831838370270705904",
+ "priceChange24hPercent": "-0.27",
+ "volume24h": "103289.3155115314102035",
+ "communityRecognized": false,
+ "key": "evm--4663:0x7dbf38976f6d3b9c529e7d9484a71898b409ee6a",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x2ae1ebeeda58b68a02dc313f7d90aa6ee546df86",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/2d70c37a83c6c75e1500068ec44d7246c00f6c3cc88134c29c693c7ac392bbc0",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/2d70c37a83c6c75e1500068ec44d7246c00f6c3cc88134c29c693c7ac392bbc0"
+ ],
+ "name": "Milk",
+ "symbol": "DC",
+ "marketCap": "45145.159758174458754856",
+ "price": "16.29547279369660484211",
+ "priceChange24hPercent": "-0.05",
+ "volume24h": "33739.011063",
+ "communityRecognized": false,
+ "key": "evm--4663:0x2ae1ebeeda58b68a02dc313f7d90aa6ee546df86",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x78b96280c3347e0f58a7147b73eb0ec5ffff025d",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x78b96280c3347e0f58a7147b73eb0ec5ffff025d-1788697020328.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x78b96280c3347e0f58a7147b73eb0ec5ffff025d-1788697020328.png"
+ ],
+ "name": "Robinhood Hat Strategy",
+ "symbol": "RSTR",
+ "marketCap": "2672483.071352492209339559",
+ "price": "0.00275753651884972012",
+ "priceChange24hPercent": "-2.2",
+ "volume24h": "151127.2788156899050866",
+ "communityRecognized": false,
+ "key": "evm--4663:0x78b96280c3347e0f58a7147b73eb0ec5ffff025d",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x5173d45a1191ee33cbb7d8c7e65f21b04ed54802",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x5173d45a1191ee33cbb7d8c7e65f21b04ed54802-1788264029244.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x5173d45a1191ee33cbb7d8c7e65f21b04ed54802-1788264029244.png"
+ ],
+ "name": "Ramses",
+ "symbol": "RAM",
+ "marketCap": "3424111.664078886069554709",
+ "price": "0.06792829766749973084",
+ "priceChange24hPercent": "-2.34",
+ "volume24h": "66563.9195628398877082",
+ "communityRecognized": false,
+ "key": "evm--4663:0x5173d45a1191ee33cbb7d8c7e65f21b04ed54802",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x0762c1708f0d23f86b29d6b857121ff7df357506",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x0762c1708f0d23f86b29d6b857121ff7df357506-1785931280846.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x0762c1708f0d23f86b29d6b857121ff7df357506-1785931280846.png"
+ ],
+ "name": "this is not a website",
+ "symbol": "website",
+ "marketCap": "5091239.638660972937935513",
+ "price": "0.00544262796825208841",
+ "priceChange24hPercent": "10.72",
+ "volume24h": "33593.88458500397776067",
+ "communityRecognized": false,
+ "key": "evm--4663:0x0762c1708f0d23f86b29d6b857121ff7df357506",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xe1e5f00a9b0255ca4df85b3130ee0f77d15acc2d",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xe1e5f00a9b0255ca4df85b3130ee0f77d15acc2d-1788696640254.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xe1e5f00a9b0255ca4df85b3130ee0f77d15acc2d-1788696640254.png"
+ ],
+ "name": "Pushin' 🅿️",
+ "symbol": "🅿️",
+ "marketCap": "1560449.17224445245957259",
+ "price": "0.00156044917224445246",
+ "priceChange24hPercent": "-10.72",
+ "volume24h": "120236.571716790099604653",
+ "communityRecognized": false,
+ "key": "evm--4663:0xe1e5f00a9b0255ca4df85b3130ee0f77d15acc2d",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x16391c40e85fb2246a2c8c17bfa2594c5d3ef84b",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x16391c40e85fb2246a2c8c17bfa2594c5d3ef84b-1788523244923.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x16391c40e85fb2246a2c8c17bfa2594c5d3ef84b-1788523244923.png"
+ ],
+ "name": "Touch Grass",
+ "symbol": "GRASS",
+ "marketCap": "3518252.016007033689843827",
+ "price": "0.00353755075272048435",
+ "priceChange24hPercent": "17.43",
+ "volume24h": "77014.9981059395780212",
+ "communityRecognized": false,
+ "key": "evm--4663:0x16391c40e85fb2246a2c8c17bfa2594c5d3ef84b",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x507b6f349a80114097a67b8b4677367acc15b220",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x507b6f349a80114097a67b8b4677367acc15b220-1788610022118.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x507b6f349a80114097a67b8b4677367acc15b220-1788610022118.png"
+ ],
+ "name": "par",
+ "symbol": "par",
+ "marketCap": "1666928.798512164185625413",
+ "price": "0.00176440509201688206",
+ "priceChange24hPercent": "5.69",
+ "volume24h": "25782.545532264411336",
+ "communityRecognized": false,
+ "key": "evm--4663:0x507b6f349a80114097a67b8b4677367acc15b220",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xe8ffd7e24187f72afb08d75b1bb13088a989a791",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xe8ffd7e24187f72afb08d75b1bb13088a989a791-1786708993342.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xe8ffd7e24187f72afb08d75b1bb13088a989a791-1786708993342.png"
+ ],
+ "name": "Delta",
+ "symbol": "DELTA",
+ "marketCap": "13215421.627403756620751773",
+ "price": "0.0132154219860979857",
+ "priceChange24hPercent": "-5.22",
+ "volume24h": "143432.1752576074598206",
+ "communityRecognized": false,
+ "key": "evm--4663:0xe8ffd7e24187f72afb08d75b1bb13088a989a791",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x215407c134f68b9da4de10c22c948196053a0d5d",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/70a6389f1690a862f8e3a0d61f5a71c1ed8f0eb1c39ccf6f78f60fff4d400471",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/70a6389f1690a862f8e3a0d61f5a71c1ed8f0eb1c39ccf6f78f60fff4d400471"
+ ],
+ "name": "The Wolf of Wall Street",
+ "symbol": "WOLF",
+ "marketCap": "3790390.962235132347890869",
+ "price": "0.01054922634164950775",
+ "priceChange24hPercent": "-10.58",
+ "volume24h": "150731.5005592429951946",
+ "communityRecognized": false,
+ "key": "evm--4663:0x215407c134f68b9da4de10c22c948196053a0d5d",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x97216593d3b2769da6f0adeee6fb8e36da4e319f",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x97216593d3b2769da6f0adeee6fb8e36da4e319f-1788782713180.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x97216593d3b2769da6f0adeee6fb8e36da4e319f-1788782713180.png"
+ ],
+ "name": "Ponsancoin",
+ "symbol": "Ponsan",
+ "marketCap": "903418.884954879381383267",
+ "price": "0.00090341888525257061",
+ "priceChange24hPercent": "-11.38",
+ "volume24h": "29857.900017333828226",
+ "communityRecognized": false,
+ "key": "evm--4663:0x97216593d3b2769da6f0adeee6fb8e36da4e319f",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xcd8df4c1052a3447bda6a7423fbc234102f3b477",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/2c2886d399c18bd4b0702fc8ad6b51ba9787a4d5b3d91c759a3febf9c71697b5",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/2c2886d399c18bd4b0702fc8ad6b51ba9787a4d5b3d91c759a3febf9c71697b5"
+ ],
+ "name": "Silverback",
+ "symbol": "SILVERBACK",
+ "marketCap": "437612.725643649196156586",
+ "price": "0.0004376127256436492",
+ "priceChange24hPercent": "12.24",
+ "volume24h": "21880.18441094075064739",
+ "communityRecognized": false,
+ "key": "evm--4663:0xcd8df4c1052a3447bda6a7423fbc234102f3b477",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x812486eaea648819853f8e372dc9f1516c7868bd",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x812486eaea648819853f8e372dc9f1516c7868bd-1788354167261.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x812486eaea648819853f8e372dc9f1516c7868bd-1788354167261.png"
+ ],
+ "name": "ubik",
+ "symbol": "UBIK",
+ "marketCap": "17722979.495896872827918012",
+ "price": "0.01772297949589687283",
+ "priceChange24hPercent": "-7.07",
+ "volume24h": "82509.09902806316787485",
+ "communityRecognized": false,
+ "key": "evm--4663:0x812486eaea648819853f8e372dc9f1516c7868bd",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xd4dc6b48ad73ec51e71d9b8f65568f88609b92c1",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xd4dc6b48ad73ec51e71d9b8f65568f88609b92c1-1787659267512.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xd4dc6b48ad73ec51e71d9b8f65568f88609b92c1-1787659267512.png"
+ ],
+ "name": "Sherwood",
+ "symbol": "SHERWOOD",
+ "marketCap": "533070.208604035212901932",
+ "price": "0.00053307020860403521",
+ "priceChange24hPercent": "-34.26",
+ "volume24h": "47022.9932410537865544",
+ "communityRecognized": false,
+ "key": "evm--4663:0xd4dc6b48ad73ec51e71d9b8f65568f88609b92c1",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x56910d4409f3a0c78c64dd8d0545ff0705389870",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x56910d4409f3a0c78c64dd8d0545ff0705389870-1784842044117.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x56910d4409f3a0c78c64dd8d0545ff0705389870-1784842044117.png"
+ ],
+ "name": "The Index",
+ "symbol": "Index",
+ "marketCap": "38890291.530466797635821549",
+ "price": "0.03966234166783410771",
+ "priceChange24hPercent": "1.2",
+ "volume24h": "57772.338392608404175794",
+ "communityRecognized": true,
+ "key": "evm--4663:0x56910d4409f3a0c78c64dd8d0545ff0705389870",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xc2362aff2a2a4cc1f48cf3dab2c4e2605eb94ba3",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xc2362aff2a2a4cc1f48cf3dab2c4e2605eb94ba3-1785758420060.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xc2362aff2a2a4cc1f48cf3dab2c4e2605eb94ba3-1785758420060.png"
+ ],
+ "name": "GameStop",
+ "symbol": "GME",
+ "marketCap": "2880525.050645902892669408",
+ "price": "0.00002880525129724091",
+ "priceChange24hPercent": "-0.22",
+ "volume24h": "14439.741636078778556897",
+ "communityRecognized": false,
+ "key": "evm--4663:0xc2362aff2a2a4cc1f48cf3dab2c4e2605eb94ba3",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x1ec871553be07dc68ec1661c32eca7e2e46e1e18",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/ee7408e5fd186d0c6d70812ea983d43036994104aca07d6d3074523eaa5b18a2",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/ee7408e5fd186d0c6d70812ea983d43036994104aca07d6d3074523eaa5b18a2"
+ ],
+ "name": "STONKS",
+ "symbol": "STONKS",
+ "marketCap": "229307.473859529567886593",
+ "price": "0.00022930747385952957",
+ "priceChange24hPercent": "-13.69",
+ "volume24h": "10471.732306790275767231",
+ "communityRecognized": false,
+ "key": "evm--4663:0x1ec871553be07dc68ec1661c32eca7e2e46e1e18",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x385f4f8ae47651ce5f58f5265395a669f8281e18",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x385f4f8ae47651ce5f58f5265395a669f8281e18-1788523250367.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x385f4f8ae47651ce5f58f5265395a669f8281e18-1788523250367.png"
+ ],
+ "name": "A Meme Coin",
+ "symbol": "MEME",
+ "marketCap": "122218256.939187902400649569",
+ "price": "0.12221825699349346093",
+ "priceChange24hPercent": "5.14",
+ "volume24h": "791693.016400726786113669",
+ "communityRecognized": true,
+ "key": "evm--4663:0x385f4f8ae47651ce5f58f5265395a669f8281e18",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x384c3f978950a98523529a205163bf63a69e8dd5",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/7a4fae357f9d4613d7f8b5f8bd76e29c37fb44afd8ff4f0da78fe40be38d3dd3",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/7a4fae357f9d4613d7f8b5f8bd76e29c37fb44afd8ff4f0da78fe40be38d3dd3"
+ ],
+ "name": "Kerf",
+ "symbol": "KERF",
+ "marketCap": "658779.614430525705793727",
+ "price": "0.00065877961443052571",
+ "priceChange24hPercent": "56.25",
+ "volume24h": "97523.241069638745329",
+ "communityRecognized": false,
+ "key": "evm--4663:0x384c3f978950a98523529a205163bf63a69e8dd5",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xfe7e19cbce2f896c6c528bc355baf5a768291e18",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xfe7e19cbce2f896c6c528bc355baf5a768291e18-1786017952373.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xfe7e19cbce2f896c6c528bc355baf5a768291e18-1786017952373.png"
+ ],
+ "name": "SPACEHOOD",
+ "symbol": "SPACEHOOD",
+ "marketCap": "8340762.948113254927286612",
+ "price": "0.00834076294811325493",
+ "priceChange24hPercent": "-10.57",
+ "volume24h": "70139.24281025281378814",
+ "communityRecognized": false,
+ "key": "evm--4663:0xfe7e19cbce2f896c6c528bc355baf5a768291e18",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xa01bc586cd5f4f253bfab4e44400c52dbc18bc50",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/c365b2142e4c766209febdcd7d1678e3519a6be41b491b73bf8cddfc0cd3ab98",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/c365b2142e4c766209febdcd7d1678e3519a6be41b491b73bf8cddfc0cd3ab98"
+ ],
+ "name": "Voxelithic Protocol",
+ "symbol": "VOXEL",
+ "marketCap": "2202165.275282226596140064",
+ "price": "0.0022021652752822266",
+ "priceChange24hPercent": "1.69",
+ "volume24h": "31719.1407607237911865",
+ "communityRecognized": false,
+ "key": "evm--4663:0xa01bc586cd5f4f253bfab4e44400c52dbc18bc50",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x45242320dbb855eea8fd36804c6487e10e97fcf9",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x45242320dbb855eea8fd36804c6487e10e97fcf9-1784778612504.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x45242320dbb855eea8fd36804c6487e10e97fcf9-1784778612504.png"
+ ],
+ "name": "TENDIES",
+ "symbol": "TENDIES",
+ "marketCap": "15386858.066819138866086556",
+ "price": "0.01608684904807764071",
+ "priceChange24hPercent": "-6.7",
+ "volume24h": "50364.8280034235428331",
+ "communityRecognized": false,
+ "key": "evm--4663:0x45242320dbb855eea8fd36804c6487e10e97fcf9",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xc9a981fee1f9dec688bb123ccdecc63d0debfc4e",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xc9a981fee1f9dec688bb123ccdecc63d0debfc4e-1786795236632.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xc9a981fee1f9dec688bb123ccdecc63d0debfc4e-1786795236632.png"
+ ],
+ "name": "SPDR Gold Trust • Robinhood Token",
+ "symbol": "GLD",
+ "marketCap": "6354008.701438651155577243",
+ "price": "408.71743444665377406854",
+ "priceChange24hPercent": "0.26",
+ "volume24h": "295932.192033389453038738",
+ "communityRecognized": false,
+ "key": "evm--4663:0xc9a981fee1f9dec688bb123ccdecc63d0debfc4e",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x05a3d1cd21d0c88145e82600e62e7e496e0f222b",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x05a3d1cd21d0c88145e82600e62e7e496e0f222b-1787313713111.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x05a3d1cd21d0c88145e82600e62e7e496e0f222b-1787313713111.png"
+ ],
+ "name": "AMC Entertainment • Robinhood Token",
+ "symbol": "AMC",
+ "marketCap": "7487887.980742776489741124",
+ "price": "2.63483856620033023001",
+ "priceChange24hPercent": "0.5",
+ "volume24h": "307838.969867924688592142",
+ "communityRecognized": false,
+ "key": "evm--4663:0x05a3d1cd21d0c88145e82600e62e7e496e0f222b",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xbbd09f72b025360fee5c928053dca6248d35be54",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xbbd09f72b025360fee5c928053dca6248d35be54-1786881632532.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xbbd09f72b025360fee5c928053dca6248d35be54-1786881632532.png"
+ ],
+ "name": "ON Semiconductor • Robinhood Token",
+ "symbol": "ON",
+ "marketCap": "113275.155798233593657905",
+ "price": "75.60472402777470701443",
+ "priceChange24hPercent": "0.29",
+ "volume24h": "1001.708283",
+ "communityRecognized": false,
+ "key": "evm--4663:0xbbd09f72b025360fee5c928053dca6248d35be54",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xc6911796042b15d7fa4f6cde69e245ddcd3d9c31",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xc6911796042b15d7fa4f6cde69e245ddcd3d9c31-1784781386422.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xc6911796042b15d7fa4f6cde69e245ddcd3d9c31-1784781386422.png"
+ ],
+ "name": "Virtuals Protocol",
+ "symbol": "VIRTUAL",
+ "marketCap": "5995496.587507049618842862",
+ "price": "0.73197010913559321643",
+ "priceChange24hPercent": "-0.1",
+ "volume24h": "87326.88528979294277186",
+ "communityRecognized": true,
+ "key": "evm--4663:0xc6911796042b15d7fa4f6cde69e245ddcd3d9c31",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x71dff63057274f5d20330c5f18b5922b97660f9c",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x71dff63057274f5d20330c5f18b5922b97660f9c-1788610210822.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x71dff63057274f5d20330c5f18b5922b97660f9c-1788610210822.png"
+ ],
+ "name": "Artificial Pepe",
+ "symbol": "AP",
+ "marketCap": "1133542.74249571499612414",
+ "price": "0.001133542742495715",
+ "priceChange24hPercent": "23.08",
+ "volume24h": "11156.9929409469233548",
+ "communityRecognized": false,
+ "key": "evm--4663:0x71dff63057274f5d20330c5f18b5922b97660f9c",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xee5576fa1bcaa380e591d01245f406f3f384eb01",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xee5576fa1bcaa380e591d01245f406f3f384eb01-1787832045009.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xee5576fa1bcaa380e591d01245f406f3f384eb01-1787832045009.png"
+ ],
+ "name": "Down to Finance",
+ "symbol": "DTF",
+ "marketCap": "8964448.183263811248727251",
+ "price": "0.00896444822483335211",
+ "priceChange24hPercent": "9.53",
+ "volume24h": "71035.92614243414637644",
+ "communityRecognized": false,
+ "key": "evm--4663:0xee5576fa1bcaa380e591d01245f406f3f384eb01",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x7168563b0e70124f0c7c0cf2f13a8d1861baf4a5",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x7168563b0e70124f0c7c0cf2f13a8d1861baf4a5-1785276114071.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x7168563b0e70124f0c7c0cf2f13a8d1861baf4a5-1785276114071.png"
+ ],
+ "name": "Backed",
+ "symbol": "BACKED",
+ "marketCap": "683975.046016032677877222",
+ "price": "0.00072634119132098617",
+ "priceChange24hPercent": "1.52",
+ "volume24h": "4602.320740294868786",
+ "communityRecognized": false,
+ "key": "evm--4663:0x7168563b0e70124f0c7c0cf2f13a8d1861baf4a5",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x32ac8c1d7672667d5ebdea22935f7b06fc8d496f",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x32ac8c1d7672667d5ebdea22935f7b06fc8d496f-1788264019087.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x32ac8c1d7672667d5ebdea22935f7b06fc8d496f-1788264019087.png"
+ ],
+ "name": "HOOD",
+ "symbol": "HOOD",
+ "marketCap": "1325766.900758184127268845",
+ "price": "123.39448593926314245221",
+ "priceChange24hPercent": "-0.19",
+ "volume24h": "154544.0000344260841127",
+ "communityRecognized": false,
+ "key": "evm--4663:0x32ac8c1d7672667d5ebdea22935f7b06fc8d496f",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x319c5b3f8e46b70cb00769bc8020b4c08ddbc182",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/60e8ba9e65543c91a6d374d55be40e3da9889a57723bf9ee7899d799d9b77bad",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/60e8ba9e65543c91a6d374d55be40e3da9889a57723bf9ee7899d799d9b77bad"
+ ],
+ "name": "Scribble Network",
+ "symbol": "SCRIB",
+ "marketCap": "219268.473129512491825661",
+ "price": "0.00021926847312951249",
+ "priceChange24hPercent": "0.48",
+ "volume24h": "18813.5938696886001848",
+ "communityRecognized": false,
+ "key": "evm--4663:0x319c5b3f8e46b70cb00769bc8020b4c08ddbc182",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xfe2f0fb0c00d19786a8abf98d4b1f1ac8763b167",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xfe2f0fb0c00d19786a8abf98d4b1f1ac8763b167-1788350974556.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xfe2f0fb0c00d19786a8abf98d4b1f1ac8763b167-1788350974556.png"
+ ],
+ "name": "OrdoFi",
+ "symbol": "ORDO",
+ "marketCap": "957068.714120997363467696",
+ "price": "0.00114104348297268439",
+ "priceChange24hPercent": "0.97",
+ "volume24h": "16892.42867839710883585",
+ "communityRecognized": false,
+ "key": "evm--4663:0xfe2f0fb0c00d19786a8abf98d4b1f1ac8763b167",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x58ffe4a942d3885baa22d7520691f611ef09e7aa",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x58ffe4a942d3885baa22d7520691f611ef09e7aa-1784793636318.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x58ffe4a942d3885baa22d7520691f611ef09e7aa-1784793636318.png"
+ ],
+ "name": "****************************************************",
+ "symbol": "TSM",
+ "marketCap": "1493062.937174059172916264",
+ "price": "432.78231534519635587615",
+ "priceChange24hPercent": "-0.34",
+ "volume24h": "38031.902542061048957668",
+ "communityRecognized": false,
+ "key": "evm--4663:0x58ffe4a942d3885baa22d7520691f611ef09e7aa",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xa3a273b2b389e718c0c490a4baee9347cd4a007b",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xa3a273b2b389e718c0c490a4baee9347cd4a007b-1788698209882.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xa3a273b2b389e718c0c490a4baee9347cd4a007b-1788698209882.png"
+ ],
+ "name": "TAMPONS",
+ "symbol": "TAMPONS",
+ "marketCap": "291576.350752405479894338",
+ "price": "0.00029157635075240548",
+ "priceChange24hPercent": "6.98",
+ "volume24h": "7337.0986920290773372",
+ "communityRecognized": false,
+ "key": "evm--4663:0xa3a273b2b389e718c0c490a4baee9347cd4a007b",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xccee82fe024c36fa15e1005ede3e9e4787e23d09",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xccee82fe024c36fa15e1005ede3e9e4787e23d09-1786795236632.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xccee82fe024c36fa15e1005ede3e9e4787e23d09-1786795236632.png"
+ ],
+ "name": "Hims & Hers Health • Robinhood Token",
+ "symbol": "HIMS",
+ "marketCap": "3699914.235348728047757073",
+ "price": "28.27030663922170740723",
+ "priceChange24hPercent": "2",
+ "volume24h": "121245.124974347599422716",
+ "communityRecognized": false,
+ "key": "evm--4663:0xccee82fe024c36fa15e1005ede3e9e4787e23d09",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xded852de9fe9ba9b6f27f39e8e81cf851a5c79cc",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xded852de9fe9ba9b6f27f39e8e81cf851a5c79cc-1788264039086.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xded852de9fe9ba9b6f27f39e8e81cf851a5c79cc-1788264039086.png"
+ ],
+ "name": "ROBINCAT",
+ "symbol": "ROBINCAT",
+ "marketCap": "7190591.61911514001329259",
+ "price": "0.00719059161970446676",
+ "priceChange24hPercent": "-3.62",
+ "volume24h": "25573.5987120655762651",
+ "communityRecognized": false,
+ "key": "evm--4663:0xded852de9fe9ba9b6f27f39e8e81cf851a5c79cc",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xd18528b39da6464b3662c331a52181ecb15b1e18",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xd18528b39da6464b3662c331a52181ecb15b1e18-1788004841997.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xd18528b39da6464b3662c331a52181ecb15b1e18-1788004841997.png"
+ ],
+ "name": "SAYLORMOON",
+ "symbol": "SAYLORMOON",
+ "marketCap": "2608877.363720267405226701",
+ "price": "0.00260887736372026741",
+ "priceChange24hPercent": "-11.34",
+ "volume24h": "59149.185912796412093167",
+ "communityRecognized": false,
+ "key": "evm--4663:0xd18528b39da6464b3662c331a52181ecb15b1e18",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xf0568863195770965a6d8abb0aa87f4314b80320",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xf0568863195770965a6d8abb0aa87f4314b80320-1785239850960.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xf0568863195770965a6d8abb0aa87f4314b80320-1785239850960.png"
+ ],
+ "name": "SLIPPY",
+ "symbol": "SLIPPY",
+ "marketCap": "2309252.095133014495799251",
+ "price": "0.00230925271940991326",
+ "priceChange24hPercent": "4.01",
+ "volume24h": "4052.598897941787648945",
+ "communityRecognized": false,
+ "key": "evm--4663:0xf0568863195770965a6d8abb0aa87f4314b80320",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x6245e67affa44a23077f0ea7f981a8dc743a0c47",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x6245e67affa44a23077f0ea7f981a8dc743a0c47-1785931207872.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x6245e67affa44a23077f0ea7f981a8dc743a0c47-1785931207872.png"
+ ],
+ "name": "frong",
+ "symbol": "FRONG",
+ "marketCap": "5456493.65293324383718581",
+ "price": "0.00545649365293324384",
+ "priceChange24hPercent": "-3.17",
+ "volume24h": "62753.697791017249949",
+ "communityRecognized": false,
+ "key": "evm--4663:0x6245e67affa44a23077f0ea7f981a8dc743a0c47",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x8005d266423c7ea827372c9c864491e5786600ea",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x8005d266423c7ea827372c9c864491e5786600ea-1784793642266.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x8005d266423c7ea827372c9c864491e5786600ea-1784793642266.png"
+ ],
+ "name": "Eli Lilly • Robinhood Token",
+ "symbol": "LLY",
+ "marketCap": "3656579.752548914628009893",
+ "price": "1147.72362638036987585255",
+ "priceChange24hPercent": "0.19",
+ "volume24h": "100907.813103134789008214",
+ "communityRecognized": false,
+ "key": "evm--4663:0x8005d266423c7ea827372c9c864491e5786600ea",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xac77646bcff9d52e99800534192e0290933f4094",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xac77646bcff9d52e99800534192e0290933f4094-1787572842778.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xac77646bcff9d52e99800534192e0290933f4094-1787572842778.png"
+ ],
+ "name": "Martians",
+ "symbol": "MARTIANS",
+ "marketCap": "413010.743800480512825997",
+ "price": "0.00041301074380704901",
+ "priceChange24hPercent": "-0.29",
+ "volume24h": "753.5439778832861976",
+ "communityRecognized": false,
+ "key": "evm--4663:0xac77646bcff9d52e99800534192e0290933f4094",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x69c68e4c00c6f6e4ac027300293a879be1e11e18",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x69c68e4c00c6f6e4ac027300293a879be1e11e18-1785758427663.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x69c68e4c00c6f6e4ac027300293a879be1e11e18-1785758427663.png"
+ ],
+ "name": "ap",
+ "symbol": "AP",
+ "marketCap": "763612.75535946328125007",
+ "price": "0.00076361275535946328",
+ "priceChange24hPercent": "-5.57",
+ "volume24h": "21017.446314755254883225",
+ "communityRecognized": false,
+ "key": "evm--4663:0x69c68e4c00c6f6e4ac027300293a879be1e11e18",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x03dfbbe0ac4e7bcdafd08ed41a400326b77d8c80",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x03dfbbe0ac4e7bcdafd08ed41a400326b77d8c80-1786795236632.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x03dfbbe0ac4e7bcdafd08ed41a400326b77d8c80-1786795236632.png"
+ ],
+ "name": "Johnson & Johnson • Robinhood Token",
+ "symbol": "JNJ",
+ "marketCap": "472773.77661877394734155",
+ "price": "272.67549793940589857359",
+ "priceChange24hPercent": "0.16",
+ "volume24h": "44839.4687241604218294",
+ "communityRecognized": false,
+ "key": "evm--4663:0x03dfbbe0ac4e7bcdafd08ed41a400326b77d8c80",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xfde6b5d9bb419b10c23268c74e369abff39c0460",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xfde6b5d9bb419b10c23268c74e369abff39c0460-1787054422497.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xfde6b5d9bb419b10c23268c74e369abff39c0460-1787054422497.png"
+ ],
+ "name": "Red Cat • Robinhood Token",
+ "symbol": "RCAT",
+ "marketCap": "174855.222156002873833176",
+ "price": "8.2973151788976736861",
+ "priceChange24hPercent": "-1.15",
+ "volume24h": "29021.7665325786934654",
+ "communityRecognized": false,
+ "key": "evm--4663:0xfde6b5d9bb419b10c23268c74e369abff39c0460",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x7fe995a80075df3dc8ae11a9b82c7fe4202cd87f",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x7fe995a80075df3dc8ae11a9b82c7fe4202cd87f-1785325956569.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x7fe995a80075df3dc8ae11a9b82c7fe4202cd87f-1785325956569.png"
+ ],
+ "name": "Thinking Cat",
+ "symbol": "HMM",
+ "marketCap": "12782796.553544718550157926",
+ "price": "0.0129418959993660162",
+ "priceChange24hPercent": "-3.02",
+ "volume24h": "39135.623856603685498965",
+ "communityRecognized": true,
+ "key": "evm--4663:0x7fe995a80075df3dc8ae11a9b82c7fe4202cd87f",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x1a7eaec7d9e7e5123416b7b29ae8bc9b57c00922",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/bb8ec2c78167c1a4d85a02b0f3c174ba8b5463584504e1802dc2d8bea04d425d",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/bb8ec2c78167c1a4d85a02b0f3c174ba8b5463584504e1802dc2d8bea04d425d"
+ ],
+ "name": "Lucky the cat",
+ "symbol": "LUCKY",
+ "marketCap": "805332.57742409533209769",
+ "price": "0.00080533257742409533",
+ "priceChange24hPercent": "-2.11",
+ "volume24h": "12699.3201516945316248",
+ "communityRecognized": false,
+ "key": "evm--4663:0x1a7eaec7d9e7e5123416b7b29ae8bc9b57c00922",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xf05bcf94c8c020e43de8927b491c6be8b96777e3",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/a1d4ea5354451247f86e166f929ce5bb3ff847ac4adb19417d85ba0180bbda5e",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/a1d4ea5354451247f86e166f929ce5bb3ff847ac4adb19417d85ba0180bbda5e"
+ ],
+ "name": "QUOTRON STRATEGY",
+ "symbol": "QSTRAT",
+ "marketCap": "666696.723084471405430027",
+ "price": "0.00067072104938075594",
+ "priceChange24hPercent": "-5.66",
+ "volume24h": "4652.2060622464432506",
+ "communityRecognized": false,
+ "key": "evm--4663:0xf05bcf94c8c020e43de8927b491c6be8b96777e3",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xbef75684c43c4ea7bd18dd532a2244674ee8b926",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xbef75684c43c4ea7bd18dd532a2244674ee8b926-1784793814498.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xbef75684c43c4ea7bd18dd532a2244674ee8b926-1784793814498.png"
+ ],
+ "name": "Nano Nuclear Energy • Robinhood Token",
+ "symbol": "NNE",
+ "marketCap": "53259.606818762157509999",
+ "price": "17.73401997464814143035",
+ "priceChange24hPercent": "0.57",
+ "volume24h": "1968.658125001977616331",
+ "communityRecognized": false,
+ "key": "evm--4663:0xbef75684c43c4ea7bd18dd532a2244674ee8b926",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x941ae714ec6d8130c7b75d67160ca08f1e7d11dd",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x941ae714ec6d8130c7b75d67160ca08f1e7d11dd-1784793655021.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x941ae714ec6d8130c7b75d67160ca08f1e7d11dd-1784793655021.png"
+ ],
+ "name": "Dell • Robinhood Token",
+ "symbol": "DELL",
+ "marketCap": "524541.224040588729763102",
+ "price": "520.9461926537941054146",
+ "priceChange24hPercent": "0.46",
+ "volume24h": "4173.171778174335118459",
+ "communityRecognized": false,
+ "key": "evm--4663:0x941ae714ec6d8130c7b75d67160ca08f1e7d11dd",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x48e39e56acdba37b09020c0b734a613c9a2f100a",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x48e39e56acdba37b09020c0b734a613c9a2f100a-1787054422497.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x48e39e56acdba37b09020c0b734a613c9a2f100a-1787054422497.png"
+ ],
+ "name": "Blackberry • Robinhood Token",
+ "symbol": "BB",
+ "marketCap": "642801.143627416799148932",
+ "price": "7.76991187735766064532",
+ "priceChange24hPercent": "2.02",
+ "volume24h": "19294.817249076328075158",
+ "communityRecognized": false,
+ "key": "evm--4663:0x48e39e56acdba37b09020c0b734a613c9a2f100a",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xcacb0e9caccee63ec4d82952e561a291c68bcb68",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xcacb0e9caccee63ec4d82952e561a291c68bcb68-1788091369454.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xcacb0e9caccee63ec4d82952e561a291c68bcb68-1788091369454.png"
+ ],
+ "name": "Golden Goose",
+ "symbol": "GG",
+ "marketCap": "3896619.35742371599884368",
+ "price": "0.003896619357423716",
+ "priceChange24hPercent": "-5.16",
+ "volume24h": "57387.5780385977483324",
+ "communityRecognized": false,
+ "key": "evm--4663:0xcacb0e9caccee63ec4d82952e561a291c68bcb68",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xf2e122a481b440c40eee7a7ca6d5eef65a591b76",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xf2e122a481b440c40eee7a7ca6d5eef65a591b76-1788697706307.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xf2e122a481b440c40eee7a7ca6d5eef65a591b76-1788697706307.png"
+ ],
+ "name": "Quantum Cats",
+ "symbol": "QC",
+ "marketCap": "1168948.501236980233192217",
+ "price": "0.00131162658364001449",
+ "priceChange24hPercent": "-7.04",
+ "volume24h": "10042.5252618642574294",
+ "communityRecognized": false,
+ "key": "evm--4663:0xf2e122a481b440c40eee7a7ca6d5eef65a591b76",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x000b2164a76560323163343431db8be550f164b8",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x000b2164a76560323163343431db8be550f164b8-1788523244923.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x000b2164a76560323163343431db8be550f164b8-1788523244923.png"
+ ],
+ "name": "Chrome Dino",
+ "symbol": "DINO",
+ "marketCap": "601059.844869995937586289",
+ "price": "0.00060105984486999594",
+ "priceChange24hPercent": "5.19",
+ "volume24h": "5696.66447036262188684",
+ "communityRecognized": false,
+ "key": "evm--4663:0x000b2164a76560323163343431db8be550f164b8",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x829b217ad539ccc53b18e53c63873333650e60f9",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/cd97ef7a1d3188b2454c4613e6d5fbf7d21f387cd59055aab3fe022119d55ca2",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/cd97ef7a1d3188b2454c4613e6d5fbf7d21f387cd59055aab3fe022119d55ca2"
+ ],
+ "name": "cyberbeer",
+ "symbol": "cyberbeer",
+ "marketCap": "193829.036784379513561768",
+ "price": "0.00019382903678437951",
+ "priceChange24hPercent": "-30.55",
+ "volume24h": "72230.3561165944741062",
+ "communityRecognized": false,
+ "key": "evm--4663:0x829b217ad539ccc53b18e53c63873333650e60f9",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xfa89ed9d12bf74add8253ddfaa426c4d8a0fa603",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xfa89ed9d12bf74add8253ddfaa426c4d8a0fa603-1788609777779.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xfa89ed9d12bf74add8253ddfaa426c4d8a0fa603-1788609777779.png"
+ ],
+ "name": "Shivolink",
+ "symbol": "SLINK",
+ "marketCap": "179369.84960020692323709",
+ "price": "0.00017936984976439931",
+ "priceChange24hPercent": "3.24",
+ "volume24h": "2755.8686981879672226",
+ "communityRecognized": false,
+ "key": "evm--4663:0xfa89ed9d12bf74add8253ddfaa426c4d8a0fa603",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x8e859dbdfbfd2df6a99870e2871eaa58e8784e05",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x8e859dbdfbfd2df6a99870e2871eaa58e8784e05-1788610147869.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x8e859dbdfbfd2df6a99870e2871eaa58e8784e05-1788610147869.png"
+ ],
+ "name": "Nest",
+ "symbol": "NEST",
+ "marketCap": "190040.435952781078801715",
+ "price": "0.00019155893691496779",
+ "priceChange24hPercent": "-20.44",
+ "volume24h": "18595.9332452410293622",
+ "communityRecognized": false,
+ "key": "evm--4663:0x8e859dbdfbfd2df6a99870e2871eaa58e8784e05",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xb7eaecc89d3e2f9fd597d61726ae824900db8360",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xb7eaecc89d3e2f9fd597d61726ae824900db8360-1788610384449.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xb7eaecc89d3e2f9fd597d61726ae824900db8360-1788610384449.png"
+ ],
+ "name": "Stratton Market",
+ "symbol": "STRATTON",
+ "marketCap": "4285202.39674889643268756",
+ "price": "0.00428520239674889643",
+ "priceChange24hPercent": "9.24",
+ "volume24h": "15622.8524265484427",
+ "communityRecognized": false,
+ "key": "evm--4663:0xb7eaecc89d3e2f9fd597d61726ae824900db8360",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x4d21483a44bf67a86b77e3da301411880797d452",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x4d21483a44bf67a86b77e3da301411880797d452-1784793663856.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x4d21483a44bf67a86b77e3da301411880797d452-1784793663856.png"
+ ],
+ "name": "Boeing • Robinhood Token",
+ "symbol": "BA",
+ "marketCap": "257302.994465980552442396",
+ "price": "209.97641150332707627755",
+ "priceChange24hPercent": "-0.8",
+ "volume24h": "21381.656860291378676",
+ "communityRecognized": false,
+ "key": "evm--4663:0x4d21483a44bf67a86b77e3da301411880797d452",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x532c5583671870723ceef573600208af49c87c54",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x532c5583671870723ceef573600208af49c87c54-1787572802676.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x532c5583671870723ceef573600208af49c87c54-1787572802676.png"
+ ],
+ "name": "Canopy Finance",
+ "symbol": "CNPY",
+ "marketCap": "2043406.519085803891568646",
+ "price": "0.00268033834862245422",
+ "priceChange24hPercent": "18.5",
+ "volume24h": "38385.63448397666353553",
+ "communityRecognized": false,
+ "key": "evm--4663:0x532c5583671870723ceef573600208af49c87c54",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xc60ba256b44334a0cd2c7242e98b88f031abb006",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xc60ba256b44334a0cd2c7242e98b88f031abb006-1788523227588.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xc60ba256b44334a0cd2c7242e98b88f031abb006-1788523227588.png"
+ ],
+ "name": "Programmable",
+ "symbol": "V4",
+ "marketCap": "2150844.883321342892826478",
+ "price": "0.00215084488332134289",
+ "priceChange24hPercent": "5.73",
+ "volume24h": "14058.4350157091247972",
+ "communityRecognized": false,
+ "key": "evm--4663:0xc60ba256b44334a0cd2c7242e98b88f031abb006",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xc72f232a6869e6cf34dc06129affd07f8a2a246a",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xc72f232a6869e6cf34dc06129affd07f8a2a246a-1786104032870.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xc72f232a6869e6cf34dc06129affd07f8a2a246a-1786104032870.png"
+ ],
+ "name": "Mancer",
+ "symbol": "MANCER",
+ "marketCap": "5434178.029956089969889554",
+ "price": "0.00217367121198243599",
+ "priceChange24hPercent": "-1.16",
+ "volume24h": "20188.82617226908334701",
+ "communityRecognized": false,
+ "key": "evm--4663:0xc72f232a6869e6cf34dc06129affd07f8a2a246a",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x84cab63bc87912e71ad199ff14a0ba45de68fef8",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x84cab63bc87912e71ad199ff14a0ba45de68fef8-1786795206969.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x84cab63bc87912e71ad199ff14a0ba45de68fef8-1786795206969.png"
+ ],
+ "name": "SK hynix Inc. American Depositary Shares • Robinhood Token",
+ "symbol": "SKHY",
+ "marketCap": "848170.211121570476232188",
+ "price": "186.8200620928412397607",
+ "priceChange24hPercent": "0.8",
+ "volume24h": "17447.098774664583641576",
+ "communityRecognized": false,
+ "key": "evm--4663:0x84cab63bc87912e71ad199ff14a0ba45de68fef8",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x4d41ccaa0eeb95c6ebc56d53adf637198c901e18",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/68ccb386a4a3267b7da38dc5a978adcedc9f0268e78da7605318a384eda4f855",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/68ccb386a4a3267b7da38dc5a978adcedc9f0268e78da7605318a384eda4f855"
+ ],
+ "name": "SENDER",
+ "symbol": "SENDER",
+ "marketCap": "220679.248263885439238517",
+ "price": "0.00022067924826388544",
+ "priceChange24hPercent": "8.18",
+ "volume24h": "3792.68252218438833986",
+ "communityRecognized": false,
+ "key": "evm--4663:0x4d41ccaa0eeb95c6ebc56d53adf637198c901e18",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x52f380a513112428723abf8afed125824e4a1e18",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x52f380a513112428723abf8afed125824e4a1e18-1788436924257.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x52f380a513112428723abf8afed125824e4a1e18-1788436924257.png"
+ ],
+ "name": "Peptides",
+ "symbol": "PEPTIDES",
+ "marketCap": "349702.092655391272595894",
+ "price": "0.00034970209265539127",
+ "priceChange24hPercent": "-1.59",
+ "volume24h": "834.854833705996302315",
+ "communityRecognized": false,
+ "key": "evm--4663:0x52f380a513112428723abf8afed125824e4a1e18",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x2f219c706e052dc25372a0c59dcc2afe0cab12f3",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x2f219c706e052dc25372a0c59dcc2afe0cab12f3-1788697893292.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x2f219c706e052dc25372a0c59dcc2afe0cab12f3-1788697893292.png"
+ ],
+ "name": "Market Cap",
+ "symbol": "CAP",
+ "marketCap": "211749.197113901086298138",
+ "price": "0.00021174919714704178",
+ "priceChange24hPercent": "8.03",
+ "volume24h": "3496.841639",
+ "communityRecognized": false,
+ "key": "evm--4663:0x2f219c706e052dc25372a0c59dcc2afe0cab12f3",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xd7321801caae694090694ff55a9323139f043b88",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xd7321801caae694090694ff55a9323139f043b88-1784779777690.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xd7321801caae694090694ff55a9323139f043b88-1784779777690.png"
+ ],
+ "name": "The Juggernaut",
+ "symbol": "JUGGERNAUT",
+ "marketCap": "2962921.022486917772966586",
+ "price": "0.00316019228885414579",
+ "priceChange24hPercent": "-3.53",
+ "volume24h": "14929.90286103639814131",
+ "communityRecognized": false,
+ "key": "evm--4663:0xd7321801caae694090694ff55a9323139f043b88",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x385b36ff682ab4c76e7c37a66b96aabc466471d5",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x385b36ff682ab4c76e7c37a66b96aabc466471d5-1786017815496.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x385b36ff682ab4c76e7c37a66b96aabc466471d5-1786017815496.png"
+ ],
+ "name": "pools.trade",
+ "symbol": "POOLS",
+ "marketCap": "1556630.67532955837106892",
+ "price": "0.0015566308898872704",
+ "priceChange24hPercent": "-1.94",
+ "volume24h": "8409.6628095912161091",
+ "communityRecognized": false,
+ "key": "evm--4663:0x385b36ff682ab4c76e7c37a66b96aabc466471d5",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ }
+ ],
+ "trending|evm--4663|4h|all": [
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x39dbed3a2bd333467115de45665cc57f813c4571",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x39dbed3a2bd333467115de45665cc57f813c4571-1785145437955.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x39dbed3a2bd333467115de45665cc57f813c4571-1785145437955.png"
+ ],
+ "name": "Pons",
+ "symbol": "PONS",
+ "marketCap": "492687665.20371759125025286",
+ "price": "0.70384361512765804418",
+ "priceChange24hPercent": "-3.98",
+ "volume24h": "16147257.313118758166645932",
+ "communityRecognized": true,
+ "key": "evm--4663:0x39dbed3a2bd333467115de45665cc57f813c4571",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x4a72b9702f991b790788f8afa9e7112541f4e8f8",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/a2e5ad0ff8689f1c746d6b07fd9718545cd44c67e13dabe8ba7242d613586821",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/a2e5ad0ff8689f1c746d6b07fd9718545cd44c67e13dabe8ba7242d613586821"
+ ],
+ "name": "Route",
+ "symbol": "ROUTE",
+ "marketCap": "5495613.913642086667043822",
+ "price": "0.00549561391364208667",
+ "priceChange24hPercent": "-20.01",
+ "volume24h": "4337308.919775547344596535",
+ "communityRecognized": false,
+ "key": "evm--4663:0x4a72b9702f991b790788f8afa9e7112541f4e8f8",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xe2324ff2a59f8ecba8c321c6466e59121c00e795",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/84804585551812a64183c44a4e291f2332c9a5ff2d07e52dbcd3b81d60c989b3",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/84804585551812a64183c44a4e291f2332c9a5ff2d07e52dbcd3b81d60c989b3"
+ ],
+ "name": "Commodity Market Exchange",
+ "symbol": "CME",
+ "marketCap": "2853217.606299477607716679",
+ "price": "0.00290745139658787606",
+ "priceChange24hPercent": "61089.8",
+ "volume24h": "14369548.29813810198583522",
+ "communityRecognized": false,
+ "key": "evm--4663:0xe2324ff2a59f8ecba8c321c6466e59121c00e795",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x6b1d42927b1a84ec28fa88d4fc6fa7af404966be",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x6b1d42927b1a84ec28fa88d4fc6fa7af404966be-1788091561508.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x6b1d42927b1a84ec28fa88d4fc6fa7af404966be-1788091561508.png"
+ ],
+ "name": "PAIR",
+ "symbol": "PAIR",
+ "marketCap": "13922294.949687588667787664",
+ "price": "0.01553740059562339121",
+ "priceChange24hPercent": "-0.51",
+ "volume24h": "1095319.143863372989047109",
+ "communityRecognized": false,
+ "key": "evm--4663:0x6b1d42927b1a84ec28fa88d4fc6fa7af404966be",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x0000000005aca17e8bd5779fc87e13cb433aed24",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x0000000005aca17e8bd5779fc87e13cb433aed24-1788697955302.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x0000000005aca17e8bd5779fc87e13cb433aed24-1788697955302.png"
+ ],
+ "name": "NUKE",
+ "symbol": "NUKE",
+ "marketCap": "10344114.294054815385789125",
+ "price": "74.30148928041241780785",
+ "priceChange24hPercent": "68.75",
+ "volume24h": "491755.5928250900707509",
+ "communityRecognized": false,
+ "key": "evm--4663:0x0000000005aca17e8bd5779fc87e13cb433aed24",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xab093def657f15df31b33922a95e047add645b29",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xab093def657f15df31b33922a95e047add645b29-1788523212752.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xab093def657f15df31b33922a95e047add645b29-1788523212752.png"
+ ],
+ "name": "MUSHROOM",
+ "symbol": "SHROOM",
+ "marketCap": "31040529.465871812895696673",
+ "price": "0.03143926481944639757",
+ "priceChange24hPercent": "14.99",
+ "volume24h": "1720662.285386762261703001",
+ "communityRecognized": true,
+ "key": "evm--4663:0xab093def657f15df31b33922a95e047add645b29",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x2e8c31162b855a2ffa90f6f8634643ad6f111e18",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x2e8c31162b855a2ffa90f6f8634643ad6f111e18-1785845221968.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x2e8c31162b855a2ffa90f6f8634643ad6f111e18-1785845221968.png"
+ ],
+ "name": "Artificial Inu",
+ "symbol": "AI",
+ "marketCap": "259997174.369260732379842519",
+ "price": "0.26225409551078842417",
+ "priceChange24hPercent": "13.55",
+ "volume24h": "10580870.475048249353445796",
+ "communityRecognized": true,
+ "key": "evm--4663:0x2e8c31162b855a2ffa90f6f8634643ad6f111e18",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xd9db30bb0d2b8d2eae3826a1372117e058791e18",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xd9db30bb0d2b8d2eae3826a1372117e058791e18-1788091222725.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xd9db30bb0d2b8d2eae3826a1372117e058791e18-1788091222725.png"
+ ],
+ "name": "Memory cow Moo",
+ "symbol": "MOO",
+ "marketCap": "25421271.013613587865372077",
+ "price": "0.02570519512113269816",
+ "priceChange24hPercent": "4.37",
+ "volume24h": "2385738.17082334984921269",
+ "communityRecognized": true,
+ "key": "evm--4663:0xd9db30bb0d2b8d2eae3826a1372117e058791e18",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x7ba36be14dd06ba492f08be6c1b2979c1d0b652c",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x7ba36be14dd06ba492f08be6c1b2979c1d0b652c-1788178016235.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x7ba36be14dd06ba492f08be6c1b2979c1d0b652c-1788178016235.png"
+ ],
+ "name": "PerpsHood",
+ "symbol": "PERPSHOOD",
+ "marketCap": "3111996.446146368568450989",
+ "price": "0.00315860300715415141",
+ "priceChange24hPercent": "-4.81",
+ "volume24h": "213827.1445454460722907",
+ "communityRecognized": false,
+ "key": "evm--4663:0x7ba36be14dd06ba492f08be6c1b2979c1d0b652c",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x6d11782ef6cbe773da2defef612f9a57c54012bf",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/aed9300fe93af8a077cf133b5d703e28386f95d7724261f173da91a4cac7df65",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/aed9300fe93af8a077cf133b5d703e28386f95d7724261f173da91a4cac7df65"
+ ],
+ "name": "Macintosh",
+ "symbol": "MACINTOSH",
+ "marketCap": "1400165.612151950161775918",
+ "price": "0.00140016561215195016",
+ "priceChange24hPercent": "98.5",
+ "volume24h": "126266.81387384450524869",
+ "communityRecognized": false,
+ "key": "evm--4663:0x6d11782ef6cbe773da2defef612f9a57c54012bf",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x15d36b6a28d8327abc7afabf0f106ae2c9af5c4d",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x15d36b6a28d8327abc7afabf0f106ae2c9af5c4d-1788523244923.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x15d36b6a28d8327abc7afabf0f106ae2c9af5c4d-1788523244923.png"
+ ],
+ "name": "Pare",
+ "symbol": "PARE",
+ "marketCap": "12472779.347945200550616218",
+ "price": "0.01247277934794520055",
+ "priceChange24hPercent": "-0.52",
+ "volume24h": "884002.614093310965744768",
+ "communityRecognized": false,
+ "key": "evm--4663:0x15d36b6a28d8327abc7afabf0f106ae2c9af5c4d",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x79a74fd91f8e1c4ab8e76253dec5c91f3094393f",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/e1f481a4066feec841bf3345c090a6cdd9fd2274a972cf1981f3a0a234f42d9c",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/e1f481a4066feec841bf3345c090a6cdd9fd2274a972cf1981f3a0a234f42d9c"
+ ],
+ "name": "Superstables",
+ "symbol": "STBL",
+ "marketCap": "430052.948915032286294785",
+ "price": "0.00043005294891503229",
+ "priceChange24hPercent": "9558.96",
+ "volume24h": "1204942.26638986803570673",
+ "communityRecognized": false,
+ "key": "evm--4663:0x79a74fd91f8e1c4ab8e76253dec5c91f3094393f",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x7163ae1b5aea2f09ebc609c52b4dcac0a7a4bc2d",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/b565852235f4b58795118e627a62621101b692c4e2e2801f518600ad55c59755",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/b565852235f4b58795118e627a62621101b692c4e2e2801f518600ad55c59755"
+ ],
+ "name": "GAGE",
+ "symbol": "GAGE",
+ "marketCap": "2031316.219519833826009659",
+ "price": "0.00203131621951983383",
+ "priceChange24hPercent": "40.66",
+ "volume24h": "2229815.54342823694595082",
+ "communityRecognized": false,
+ "key": "evm--4663:0x7163ae1b5aea2f09ebc609c52b4dcac0a7a4bc2d",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xa3602804e096cb73bd8344afc1ff3f3390b899c5",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xa3602804e096cb73bd8344afc1ff3f3390b899c5-1788697149485.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xa3602804e096cb73bd8344afc1ff3f3390b899c5-1788697149485.png"
+ ],
+ "name": "PEZ",
+ "symbol": "PEZ",
+ "marketCap": "2552015.440732567570403185",
+ "price": "0.00255202107719303053",
+ "priceChange24hPercent": "-22.78",
+ "volume24h": "327856.89963913760885914",
+ "communityRecognized": false,
+ "key": "evm--4663:0xa3602804e096cb73bd8344afc1ff3f3390b899c5",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x76ed1e2a8fc3873fcb5c514688ca2fe8a3600b7f",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/1dbcb030f10554487ca05c3aaa7fcc97cef5b687e39b63bafb0d000d20616792",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/1dbcb030f10554487ca05c3aaa7fcc97cef5b687e39b63bafb0d000d20616792"
+ ],
+ "name": "LAPTOP",
+ "symbol": "LAPTOP",
+ "marketCap": "1179059.264328386209432576",
+ "price": "0.00117905926432838621",
+ "priceChange24hPercent": "-21.37",
+ "volume24h": "871353.779019088149286158",
+ "communityRecognized": false,
+ "key": "evm--4663:0x76ed1e2a8fc3873fcb5c514688ca2fe8a3600b7f",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x98096d17e191b3da1d5f99a6d7b3584351b11e18",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x98096d17e191b3da1d5f99a6d7b3584351b11e18-1787918411975.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x98096d17e191b3da1d5f99a6d7b3584351b11e18-1787918411975.png"
+ ],
+ "name": "Boner Coin",
+ "symbol": "BONER",
+ "marketCap": "58129181.519069637833904517",
+ "price": "0.05812919390713559434",
+ "priceChange24hPercent": "-3.5",
+ "volume24h": "2642194.239637736357051021",
+ "communityRecognized": true,
+ "key": "evm--4663:0x98096d17e191b3da1d5f99a6d7b3584351b11e18",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x12d5ee7917ca430073c3a638ee1e6f0648a98a01",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x12d5ee7917ca430073c3a638ee1e6f0648a98a01-1788350677314.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x12d5ee7917ca430073c3a638ee1e6f0648a98a01-1788350677314.png"
+ ],
+ "name": "FATCOIN",
+ "symbol": "FATCOIN",
+ "marketCap": "15073886.50104684331489565",
+ "price": "0.01507388650104684331",
+ "priceChange24hPercent": "5.54",
+ "volume24h": "871939.854714300386854286",
+ "communityRecognized": false,
+ "key": "evm--4663:0x12d5ee7917ca430073c3a638ee1e6f0648a98a01",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xafe41f4356c24f716111de1fbbc84e061d291e18",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xafe41f4356c24f716111de1fbbc84e061d291e18-1788264039086.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xafe41f4356c24f716111de1fbbc84e061d291e18-1788264039086.png"
+ ],
+ "name": "Cache Cow",
+ "symbol": "CACHE",
+ "marketCap": "1056454.727534532364284546",
+ "price": "0.00105645472753453236",
+ "priceChange24hPercent": "52.91",
+ "volume24h": "338166.259118893053368491",
+ "communityRecognized": false,
+ "key": "evm--4663:0xafe41f4356c24f716111de1fbbc84e061d291e18",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xd5f1afea47b1a9eab414d2ee740cf1d6d039e725",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xd5f1afea47b1a9eab414d2ee740cf1d6d039e725-1788091431352.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xd5f1afea47b1a9eab414d2ee740cf1d6d039e725-1788091431352.png"
+ ],
+ "name": "microduck",
+ "symbol": "microduck",
+ "marketCap": "18335033.149710684136041623",
+ "price": "0.01833503314971068414",
+ "priceChange24hPercent": "5.43",
+ "volume24h": "1010135.00640750938408628",
+ "communityRecognized": false,
+ "key": "evm--4663:0xd5f1afea47b1a9eab414d2ee740cf1d6d039e725",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x020bfc650a365f8bb26819deaabf3e21291018b4",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x020bfc650a365f8bb26819deaabf3e21291018b4-1784778353843.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x020bfc650a365f8bb26819deaabf3e21291018b4-1784778353843.png"
+ ],
+ "name": "Cash Cat",
+ "symbol": "CASHCAT",
+ "marketCap": "188270431.00592652282973507",
+ "price": "0.19053459862614162397",
+ "priceChange24hPercent": "0.55",
+ "volume24h": "3910533.880400769112091726",
+ "communityRecognized": true,
+ "key": "evm--4663:0x020bfc650a365f8bb26819deaabf3e21291018b4",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xbe98b75361935b18d688409424a869a4c3dc7401",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xbe98b75361935b18d688409424a869a4c3dc7401-1788436898916.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xbe98b75361935b18d688409424a869a4c3dc7401-1788436898916.png"
+ ],
+ "name": "Send Nudes",
+ "symbol": "NUDES",
+ "marketCap": "14740176.222858396815503008",
+ "price": "0.01474017622285839682",
+ "priceChange24hPercent": "-11.74",
+ "volume24h": "780858.40561707256929968",
+ "communityRecognized": false,
+ "key": "evm--4663:0xbe98b75361935b18d688409424a869a4c3dc7401",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xbc9cc4b93a08b2dfba87067a9c53e713db3314ce",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/a34bd343ce2418e2688d9be4430fef2415dee4b660c25a3bbbcaaf3481e299a4",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/a34bd343ce2418e2688d9be4430fef2415dee4b660c25a3bbbcaaf3481e299a4"
+ ],
+ "name": "Pink Sheets",
+ "symbol": "PINK",
+ "marketCap": "966041.535560089479163395",
+ "price": "0.00096604153556008948",
+ "priceChange24hPercent": "2.31",
+ "volume24h": "1130579.3054512794303659",
+ "communityRecognized": false,
+ "key": "evm--4663:0xbc9cc4b93a08b2dfba87067a9c53e713db3314ce",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xaa07a0e9209e16ac99708c3ec70159c6ef3128a3",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xaa07a0e9209e16ac99708c3ec70159c6ef3128a3-1788352120153.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xaa07a0e9209e16ac99708c3ec70159c6ef3128a3-1788352120153.png"
+ ],
+ "name": "Orbio.so",
+ "symbol": "ORBIO",
+ "marketCap": "17641751.176414680990139658",
+ "price": "0.01857026439622597999",
+ "priceChange24hPercent": "-5.75",
+ "volume24h": "197568.401518169894316807",
+ "communityRecognized": false,
+ "key": "evm--4663:0xaa07a0e9209e16ac99708c3ec70159c6ef3128a3",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x62cd5cd9d354a2a50affe9efa21c8918b9640a5b",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x62cd5cd9d354a2a50affe9efa21c8918b9640a5b-1788698087258.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x62cd5cd9d354a2a50affe9efa21c8918b9640a5b-1788698087258.png"
+ ],
+ "name": "LADY Exchange",
+ "symbol": "LDX",
+ "marketCap": "830756.516496992522362611",
+ "price": "0.00083075651649699252",
+ "priceChange24hPercent": "24.69",
+ "volume24h": "271306.6305109773473508",
+ "communityRecognized": false,
+ "key": "evm--4663:0x62cd5cd9d354a2a50affe9efa21c8918b9640a5b",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x18e674231a58c239dc7daedcffe15ec3a24cff5c",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x18e674231a58c239dc7daedcffe15ec3a24cff5c-1786190410593.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x18e674231a58c239dc7daedcffe15ec3a24cff5c-1786190410593.png"
+ ],
+ "name": "Hookr.fun",
+ "symbol": "HOOKR",
+ "marketCap": "16452838.291206863943850606",
+ "price": "0.01651296102485698301",
+ "priceChange24hPercent": "6.38",
+ "volume24h": "648086.075887073828857909",
+ "communityRecognized": true,
+ "key": "evm--4663:0x18e674231a58c239dc7daedcffe15ec3a24cff5c",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xe2dae1c072b9f66bed999873b94798b2152af7e1",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xe2dae1c072b9f66bed999873b94798b2152af7e1-1788697020328.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xe2dae1c072b9f66bed999873b94798b2152af7e1-1788697020328.png"
+ ],
+ "name": "Arbitrage Ape",
+ "symbol": "AA",
+ "marketCap": "4410084.102737949468031625",
+ "price": "0.00448979955071063092",
+ "priceChange24hPercent": "27.25",
+ "volume24h": "536804.342606546329228085",
+ "communityRecognized": false,
+ "key": "evm--4663:0xe2dae1c072b9f66bed999873b94798b2152af7e1",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xab35d04e1ee39c789c4a65d522417b3c7f2e4723",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/fac85c085d11f1aa6ae21cc9ad0bb550feec3cb25196bd13e83f1f5c0ef580c0",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/fac85c085d11f1aa6ae21cc9ad0bb550feec3cb25196bd13e83f1f5c0ef580c0"
+ ],
+ "name": "JT MARLIN",
+ "symbol": "MARLIN",
+ "marketCap": "1060606.547335927728558696",
+ "price": "0.00106060654733592773",
+ "priceChange24hPercent": "85.56",
+ "volume24h": "655462.38261696759115035",
+ "communityRecognized": false,
+ "key": "evm--4663:0xab35d04e1ee39c789c4a65d522417b3c7f2e4723",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x7df5daaf80e65dfcc7a1435d9b52bcf2b5753fbe",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x7df5daaf80e65dfcc7a1435d9b52bcf2b5753fbe-1788696318342.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x7df5daaf80e65dfcc7a1435d9b52bcf2b5753fbe-1788696318342.png"
+ ],
+ "name": "Unipcs",
+ "symbol": "UNIPCS",
+ "marketCap": "812253.578531994003406883",
+ "price": "0.00081339741901936819",
+ "priceChange24hPercent": "-44.03",
+ "volume24h": "147786.830721352828736495",
+ "communityRecognized": false,
+ "key": "evm--4663:0x7df5daaf80e65dfcc7a1435d9b52bcf2b5753fbe",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x11b70d0243baf75e85ce03201a92b5b7c33beb59",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x11b70d0243baf75e85ce03201a92b5b7c33beb59-1788697768561.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x11b70d0243baf75e85ce03201a92b5b7c33beb59-1788697768561.png"
+ ],
+ "name": "Robin the Frog",
+ "symbol": "ROBIN",
+ "marketCap": "4951105.534710210742606697",
+ "price": "0.00498856354285522312",
+ "priceChange24hPercent": "-40.43",
+ "volume24h": "497762.365945094673663914",
+ "communityRecognized": false,
+ "key": "evm--4663:0x11b70d0243baf75e85ce03201a92b5b7c33beb59",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xe934e36a439c94017b64a3fece66af12099abf50",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xe934e36a439c94017b64a3fece66af12099abf50-1785290631562.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xe934e36a439c94017b64a3fece66af12099abf50-1785290631562.png"
+ ],
+ "name": "StonkBroker",
+ "symbol": "STONKBROKER",
+ "marketCap": "20859686.790204419783593692",
+ "price": "0.01705184277003509474",
+ "priceChange24hPercent": "8.24",
+ "volume24h": "400572.245979790685216496",
+ "communityRecognized": true,
+ "key": "evm--4663:0xe934e36a439c94017b64a3fece66af12099abf50",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xca9c78dd337a67f6e0077f65f5e9218719d30edf",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xca9c78dd337a67f6e0077f65f5e9218719d30edf-1785280831816.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xca9c78dd337a67f6e0077f65f5e9218719d30edf-1785280831816.png"
+ ],
+ "name": "NetNet",
+ "symbol": "NET",
+ "marketCap": "3926147.195878461275917068",
+ "price": "669.55921828626485469435",
+ "priceChange24hPercent": "-7.6",
+ "volume24h": "1283216.4740038835170252",
+ "communityRecognized": false,
+ "key": "evm--4663:0xca9c78dd337a67f6e0077f65f5e9218719d30edf",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x451b42a15100c340ca12f7c66de06fac5ea2d751",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x451b42a15100c340ca12f7c66de06fac5ea2d751-1787832041620.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x451b42a15100c340ca12f7c66de06fac5ea2d751-1787832041620.png"
+ ],
+ "name": "Longbow",
+ "symbol": "BOW",
+ "marketCap": "5578808.666770871173288788",
+ "price": "0.00557880866677087117",
+ "priceChange24hPercent": "-1.53",
+ "volume24h": "290313.414342671777794063",
+ "communityRecognized": false,
+ "key": "evm--4663:0x451b42a15100c340ca12f7c66de06fac5ea2d751",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x2ae1ebeeda58b68a02dc313f7d90aa6ee546df86",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/2d70c37a83c6c75e1500068ec44d7246c00f6c3cc88134c29c693c7ac392bbc0",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/2d70c37a83c6c75e1500068ec44d7246c00f6c3cc88134c29c693c7ac392bbc0"
+ ],
+ "name": "Milk",
+ "symbol": "DC",
+ "marketCap": "45145.159758174458754856",
+ "price": "16.29547279369660484211",
+ "priceChange24hPercent": "-0.68",
+ "volume24h": "466170.6680865126006779",
+ "communityRecognized": false,
+ "key": "evm--4663:0x2ae1ebeeda58b68a02dc313f7d90aa6ee546df86",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xef67e3064bef1a27e81925ec7132f23e533bd5f6",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xef67e3064bef1a27e81925ec7132f23e533bd5f6-1788782588286.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xef67e3064bef1a27e81925ec7132f23e533bd5f6-1788782588286.png"
+ ],
+ "name": "Greatest Meme Ever",
+ "symbol": "GME",
+ "marketCap": "4341478.594365716540473077",
+ "price": "0.00434147859482062166",
+ "priceChange24hPercent": "15.78",
+ "volume24h": "668691.217559429348199688",
+ "communityRecognized": false,
+ "key": "evm--4663:0xef67e3064bef1a27e81925ec7132f23e533bd5f6",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x7dbf38976f6d3b9c529e7d9484a71898b409ee6a",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x7dbf38976f6d3b9c529e7d9484a71898b409ee6a-1788610442171.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x7dbf38976f6d3b9c529e7d9484a71898b409ee6a-1788610442171.png"
+ ],
+ "name": "ZZZ",
+ "symbol": "ZZZ",
+ "marketCap": "15387442.310273929590486193",
+ "price": "0.01831838370270705904",
+ "priceChange24hPercent": "-16.31",
+ "volume24h": "791689.026239080155056638",
+ "communityRecognized": false,
+ "key": "evm--4663:0x7dbf38976f6d3b9c529e7d9484a71898b409ee6a",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x78b96280c3347e0f58a7147b73eb0ec5ffff025d",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x78b96280c3347e0f58a7147b73eb0ec5ffff025d-1788697020328.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x78b96280c3347e0f58a7147b73eb0ec5ffff025d-1788697020328.png"
+ ],
+ "name": "Robinhood Hat Strategy",
+ "symbol": "RSTR",
+ "marketCap": "2672483.071352492209339559",
+ "price": "0.00275753651884972012",
+ "priceChange24hPercent": "-10.53",
+ "volume24h": "982214.471948278752045733",
+ "communityRecognized": false,
+ "key": "evm--4663:0x78b96280c3347e0f58a7147b73eb0ec5ffff025d",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x5173d45a1191ee33cbb7d8c7e65f21b04ed54802",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x5173d45a1191ee33cbb7d8c7e65f21b04ed54802-1788264029244.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x5173d45a1191ee33cbb7d8c7e65f21b04ed54802-1788264029244.png"
+ ],
+ "name": "Ramses",
+ "symbol": "RAM",
+ "marketCap": "3424111.664078886069554709",
+ "price": "0.06792829766749973084",
+ "priceChange24hPercent": "8.54",
+ "volume24h": "208092.483938208082488",
+ "communityRecognized": false,
+ "key": "evm--4663:0x5173d45a1191ee33cbb7d8c7e65f21b04ed54802",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x0762c1708f0d23f86b29d6b857121ff7df357506",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x0762c1708f0d23f86b29d6b857121ff7df357506-1785931280846.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x0762c1708f0d23f86b29d6b857121ff7df357506-1785931280846.png"
+ ],
+ "name": "this is not a website",
+ "symbol": "website",
+ "marketCap": "5091239.638660972937935513",
+ "price": "0.00544262796825208841",
+ "priceChange24hPercent": "25.7",
+ "volume24h": "94072.00871213642505836",
+ "communityRecognized": false,
+ "key": "evm--4663:0x0762c1708f0d23f86b29d6b857121ff7df357506",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xe1e5f00a9b0255ca4df85b3130ee0f77d15acc2d",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xe1e5f00a9b0255ca4df85b3130ee0f77d15acc2d-1788696640254.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xe1e5f00a9b0255ca4df85b3130ee0f77d15acc2d-1788696640254.png"
+ ],
+ "name": "Pushin' 🅿️",
+ "symbol": "🅿️",
+ "marketCap": "1560449.17224445245957259",
+ "price": "0.00156044917224445246",
+ "priceChange24hPercent": "-24.02",
+ "volume24h": "402629.388808724937339793",
+ "communityRecognized": false,
+ "key": "evm--4663:0xe1e5f00a9b0255ca4df85b3130ee0f77d15acc2d",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x16391c40e85fb2246a2c8c17bfa2594c5d3ef84b",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x16391c40e85fb2246a2c8c17bfa2594c5d3ef84b-1788523244923.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x16391c40e85fb2246a2c8c17bfa2594c5d3ef84b-1788523244923.png"
+ ],
+ "name": "Touch Grass",
+ "symbol": "GRASS",
+ "marketCap": "3518252.016007033689843827",
+ "price": "0.00353755075272048435",
+ "priceChange24hPercent": "-5.61",
+ "volume24h": "337214.31627353020386104",
+ "communityRecognized": false,
+ "key": "evm--4663:0x16391c40e85fb2246a2c8c17bfa2594c5d3ef84b",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xe8ffd7e24187f72afb08d75b1bb13088a989a791",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xe8ffd7e24187f72afb08d75b1bb13088a989a791-1786708993342.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xe8ffd7e24187f72afb08d75b1bb13088a989a791-1786708993342.png"
+ ],
+ "name": "Delta",
+ "symbol": "DELTA",
+ "marketCap": "13503299.120039831362625184",
+ "price": "0.01350329948654765869",
+ "priceChange24hPercent": "-5.87",
+ "volume24h": "668759.432091087009694058",
+ "communityRecognized": false,
+ "key": "evm--4663:0xe8ffd7e24187f72afb08d75b1bb13088a989a791",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x507b6f349a80114097a67b8b4677367acc15b220",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x507b6f349a80114097a67b8b4677367acc15b220-1788610022118.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x507b6f349a80114097a67b8b4677367acc15b220-1788610022118.png"
+ ],
+ "name": "par",
+ "symbol": "par",
+ "marketCap": "1666928.798512164185625413",
+ "price": "0.00176440509201688206",
+ "priceChange24hPercent": "-18.26",
+ "volume24h": "182240.81246243541915566",
+ "communityRecognized": false,
+ "key": "evm--4663:0x507b6f349a80114097a67b8b4677367acc15b220",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x215407c134f68b9da4de10c22c948196053a0d5d",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/70a6389f1690a862f8e3a0d61f5a71c1ed8f0eb1c39ccf6f78f60fff4d400471",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/70a6389f1690a862f8e3a0d61f5a71c1ed8f0eb1c39ccf6f78f60fff4d400471"
+ ],
+ "name": "The Wolf of Wall Street",
+ "symbol": "WOLF",
+ "marketCap": "3790390.962235132347890869",
+ "price": "0.01054922634164950775",
+ "priceChange24hPercent": "5.55",
+ "volume24h": "7799664.386650095588746494",
+ "communityRecognized": false,
+ "key": "evm--4663:0x215407c134f68b9da4de10c22c948196053a0d5d",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x97216593d3b2769da6f0adeee6fb8e36da4e319f",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x97216593d3b2769da6f0adeee6fb8e36da4e319f-1788782713180.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x97216593d3b2769da6f0adeee6fb8e36da4e319f-1788782713180.png"
+ ],
+ "name": "Ponsancoin",
+ "symbol": "Ponsan",
+ "marketCap": "903418.884954879381383267",
+ "price": "0.00090341888525257061",
+ "priceChange24hPercent": "-8.01",
+ "volume24h": "134735.3182520699752692",
+ "communityRecognized": false,
+ "key": "evm--4663:0x97216593d3b2769da6f0adeee6fb8e36da4e319f",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xcd8df4c1052a3447bda6a7423fbc234102f3b477",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/2c2886d399c18bd4b0702fc8ad6b51ba9787a4d5b3d91c759a3febf9c71697b5",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/2c2886d399c18bd4b0702fc8ad6b51ba9787a4d5b3d91c759a3febf9c71697b5"
+ ],
+ "name": "Silverback",
+ "symbol": "SILVERBACK",
+ "marketCap": "437612.725643649196156586",
+ "price": "0.0004376127256436492",
+ "priceChange24hPercent": "28.29",
+ "volume24h": "87023.0181987772318368",
+ "communityRecognized": false,
+ "key": "evm--4663:0xcd8df4c1052a3447bda6a7423fbc234102f3b477",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x812486eaea648819853f8e372dc9f1516c7868bd",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x812486eaea648819853f8e372dc9f1516c7868bd-1788354167261.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x812486eaea648819853f8e372dc9f1516c7868bd-1788354167261.png"
+ ],
+ "name": "ubik",
+ "symbol": "UBIK",
+ "marketCap": "17722979.495896872827918012",
+ "price": "0.01772297949589687283",
+ "priceChange24hPercent": "-16.99",
+ "volume24h": "564619.60495640592725091",
+ "communityRecognized": false,
+ "key": "evm--4663:0x812486eaea648819853f8e372dc9f1516c7868bd",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xd4dc6b48ad73ec51e71d9b8f65568f88609b92c1",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xd4dc6b48ad73ec51e71d9b8f65568f88609b92c1-1787659267512.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xd4dc6b48ad73ec51e71d9b8f65568f88609b92c1-1787659267512.png"
+ ],
+ "name": "Sherwood",
+ "symbol": "SHERWOOD",
+ "marketCap": "533070.208604035212901932",
+ "price": "0.00053307020860403521",
+ "priceChange24hPercent": "34.27",
+ "volume24h": "155125.266277313414257527",
+ "communityRecognized": false,
+ "key": "evm--4663:0xd4dc6b48ad73ec51e71d9b8f65568f88609b92c1",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x56910d4409f3a0c78c64dd8d0545ff0705389870",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x56910d4409f3a0c78c64dd8d0545ff0705389870-1784842044117.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x56910d4409f3a0c78c64dd8d0545ff0705389870-1784842044117.png"
+ ],
+ "name": "The Index",
+ "symbol": "Index",
+ "marketCap": "38890291.530466797635821549",
+ "price": "0.03966234166783410771",
+ "priceChange24hPercent": "1.06",
+ "volume24h": "565138.906848542843570134",
+ "communityRecognized": true,
+ "key": "evm--4663:0x56910d4409f3a0c78c64dd8d0545ff0705389870",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x1ec871553be07dc68ec1661c32eca7e2e46e1e18",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/ee7408e5fd186d0c6d70812ea983d43036994104aca07d6d3074523eaa5b18a2",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/ee7408e5fd186d0c6d70812ea983d43036994104aca07d6d3074523eaa5b18a2"
+ ],
+ "name": "STONKS",
+ "symbol": "STONKS",
+ "marketCap": "229307.473859529567886593",
+ "price": "0.00022930747385952957",
+ "priceChange24hPercent": "132.8",
+ "volume24h": "135825.015138601586402892",
+ "communityRecognized": false,
+ "key": "evm--4663:0x1ec871553be07dc68ec1661c32eca7e2e46e1e18",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xc2362aff2a2a4cc1f48cf3dab2c4e2605eb94ba3",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xc2362aff2a2a4cc1f48cf3dab2c4e2605eb94ba3-1785758420060.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xc2362aff2a2a4cc1f48cf3dab2c4e2605eb94ba3-1785758420060.png"
+ ],
+ "name": "GameStop",
+ "symbol": "GME",
+ "marketCap": "2880525.050645902892669408",
+ "price": "0.00002880525129724091",
+ "priceChange24hPercent": "-5.25",
+ "volume24h": "61251.791257175990132607",
+ "communityRecognized": false,
+ "key": "evm--4663:0xc2362aff2a2a4cc1f48cf3dab2c4e2605eb94ba3",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x384c3f978950a98523529a205163bf63a69e8dd5",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/7a4fae357f9d4613d7f8b5f8bd76e29c37fb44afd8ff4f0da78fe40be38d3dd3",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/7a4fae357f9d4613d7f8b5f8bd76e29c37fb44afd8ff4f0da78fe40be38d3dd3"
+ ],
+ "name": "Kerf",
+ "symbol": "KERF",
+ "marketCap": "658779.614430525705793727",
+ "price": "0.00065877961443052571",
+ "priceChange24hPercent": "85.75",
+ "volume24h": "644306.349224698598217424",
+ "communityRecognized": false,
+ "key": "evm--4663:0x384c3f978950a98523529a205163bf63a69e8dd5",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xfe7e19cbce2f896c6c528bc355baf5a768291e18",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xfe7e19cbce2f896c6c528bc355baf5a768291e18-1786017952373.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xfe7e19cbce2f896c6c528bc355baf5a768291e18-1786017952373.png"
+ ],
+ "name": "SPACEHOOD",
+ "symbol": "SPACEHOOD",
+ "marketCap": "8340762.948113254927286612",
+ "price": "0.00834076294811325493",
+ "priceChange24hPercent": "-10.56",
+ "volume24h": "341378.955556505119255267",
+ "communityRecognized": false,
+ "key": "evm--4663:0xfe7e19cbce2f896c6c528bc355baf5a768291e18",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x385f4f8ae47651ce5f58f5265395a669f8281e18",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x385f4f8ae47651ce5f58f5265395a669f8281e18-1788523250367.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x385f4f8ae47651ce5f58f5265395a669f8281e18-1788523250367.png"
+ ],
+ "name": "A Meme Coin",
+ "symbol": "MEME",
+ "marketCap": "122218256.939187902400649569",
+ "price": "0.12221825699349346093",
+ "priceChange24hPercent": "-1.5",
+ "volume24h": "5896488.86326963197771903",
+ "communityRecognized": true,
+ "key": "evm--4663:0x385f4f8ae47651ce5f58f5265395a669f8281e18",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x45242320dbb855eea8fd36804c6487e10e97fcf9",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x45242320dbb855eea8fd36804c6487e10e97fcf9-1784778612504.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x45242320dbb855eea8fd36804c6487e10e97fcf9-1784778612504.png"
+ ],
+ "name": "TENDIES",
+ "symbol": "TENDIES",
+ "marketCap": "15386858.066819138866086556",
+ "price": "0.01608684904807764071",
+ "priceChange24hPercent": "-1.69",
+ "volume24h": "299985.753469817502376401",
+ "communityRecognized": false,
+ "key": "evm--4663:0x45242320dbb855eea8fd36804c6487e10e97fcf9",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xa01bc586cd5f4f253bfab4e44400c52dbc18bc50",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/c365b2142e4c766209febdcd7d1678e3519a6be41b491b73bf8cddfc0cd3ab98",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/c365b2142e4c766209febdcd7d1678e3519a6be41b491b73bf8cddfc0cd3ab98"
+ ],
+ "name": "Voxelithic Protocol",
+ "symbol": "VOXEL",
+ "marketCap": "2202165.275282226596140064",
+ "price": "0.0022021652752822266",
+ "priceChange24hPercent": "2.58",
+ "volume24h": "177485.5447201520470285",
+ "communityRecognized": false,
+ "key": "evm--4663:0xa01bc586cd5f4f253bfab4e44400c52dbc18bc50",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xc9a981fee1f9dec688bb123ccdecc63d0debfc4e",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xc9a981fee1f9dec688bb123ccdecc63d0debfc4e-1786795236632.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xc9a981fee1f9dec688bb123ccdecc63d0debfc4e-1786795236632.png"
+ ],
+ "name": "SPDR Gold Trust • Robinhood Token",
+ "symbol": "GLD",
+ "marketCap": "6354008.701438651155577243",
+ "price": "408.71743444665377406854",
+ "priceChange24hPercent": "-2.28",
+ "volume24h": "2549225.35047617687828255",
+ "communityRecognized": false,
+ "key": "evm--4663:0xc9a981fee1f9dec688bb123ccdecc63d0debfc4e",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x05a3d1cd21d0c88145e82600e62e7e496e0f222b",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x05a3d1cd21d0c88145e82600e62e7e496e0f222b-1787313713111.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x05a3d1cd21d0c88145e82600e62e7e496e0f222b-1787313713111.png"
+ ],
+ "name": "AMC Entertainment • Robinhood Token",
+ "symbol": "AMC",
+ "marketCap": "7487887.980742776489741124",
+ "price": "2.63483856620033023001",
+ "priceChange24hPercent": "-0.47",
+ "volume24h": "3318266.526624694945626901",
+ "communityRecognized": false,
+ "key": "evm--4663:0x05a3d1cd21d0c88145e82600e62e7e496e0f222b",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xc6911796042b15d7fa4f6cde69e245ddcd3d9c31",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xc6911796042b15d7fa4f6cde69e245ddcd3d9c31-1784781386422.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xc6911796042b15d7fa4f6cde69e245ddcd3d9c31-1784781386422.png"
+ ],
+ "name": "Virtuals Protocol",
+ "symbol": "VIRTUAL",
+ "marketCap": "5995496.587507049618842862",
+ "price": "0.73197010913559321643",
+ "priceChange24hPercent": "0.5",
+ "volume24h": "539303.889205730303762491",
+ "communityRecognized": true,
+ "key": "evm--4663:0xc6911796042b15d7fa4f6cde69e245ddcd3d9c31",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x48e39e56acdba37b09020c0b734a613c9a2f100a",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x48e39e56acdba37b09020c0b734a613c9a2f100a-1787054422497.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x48e39e56acdba37b09020c0b734a613c9a2f100a-1787054422497.png"
+ ],
+ "name": "Blackberry • Robinhood Token",
+ "symbol": "BB",
+ "marketCap": "642801.143627416799148932",
+ "price": "7.76991187735766064532",
+ "priceChange24hPercent": "2",
+ "volume24h": "50108.828436923847737226",
+ "communityRecognized": false,
+ "key": "evm--4663:0x48e39e56acdba37b09020c0b734a613c9a2f100a",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xf05bcf94c8c020e43de8927b491c6be8b96777e3",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/a1d4ea5354451247f86e166f929ce5bb3ff847ac4adb19417d85ba0180bbda5e",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/a1d4ea5354451247f86e166f929ce5bb3ff847ac4adb19417d85ba0180bbda5e"
+ ],
+ "name": "QUOTRON STRATEGY",
+ "symbol": "QSTRAT",
+ "marketCap": "666696.723084471405430027",
+ "price": "0.00067072104938075594",
+ "priceChange24hPercent": "31.12",
+ "volume24h": "55537.47641304156681585",
+ "communityRecognized": false,
+ "key": "evm--4663:0xf05bcf94c8c020e43de8927b491c6be8b96777e3",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x319c5b3f8e46b70cb00769bc8020b4c08ddbc182",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/60e8ba9e65543c91a6d374d55be40e3da9889a57723bf9ee7899d799d9b77bad",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/60e8ba9e65543c91a6d374d55be40e3da9889a57723bf9ee7899d799d9b77bad"
+ ],
+ "name": "Scribble Network",
+ "symbol": "SCRIB",
+ "marketCap": "219268.473129512491825661",
+ "price": "0.00021926847312951249",
+ "priceChange24hPercent": "-9.75",
+ "volume24h": "113913.22371812313102477",
+ "communityRecognized": false,
+ "key": "evm--4663:0x319c5b3f8e46b70cb00769bc8020b4c08ddbc182",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x808d280e7749d2fab58c2504fc3d87f0d8606753",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/cfc384c50070ed098c8ebd3084525e0fc3d99a6b95a15c0a4b346a5c678c45b0",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/cfc384c50070ed098c8ebd3084525e0fc3d99a6b95a15c0a4b346a5c678c45b0"
+ ],
+ "name": "HOODIECOIN",
+ "symbol": "HOC",
+ "marketCap": "41092.360086418509240619",
+ "price": "0.00004109236008641851",
+ "priceChange24hPercent": "1419.79",
+ "volume24h": "99430.191703753972282",
+ "communityRecognized": false,
+ "key": "evm--4663:0x808d280e7749d2fab58c2504fc3d87f0d8606753",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x9e7abd3c9139d14e4c86dce0e455aab7a0c2fb3e",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x9e7abd3c9139d14e4c86dce0e455aab7a0c2fb3e-1787400073723.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x9e7abd3c9139d14e4c86dce0e455aab7a0c2fb3e-1787400073723.png"
+ ],
+ "name": "WhiteFiber, Inc. • Robinhood Token",
+ "symbol": "WYFI",
+ "marketCap": "218936.077035330690421699",
+ "price": "19.22009287596069706122",
+ "priceChange24hPercent": "1.18",
+ "volume24h": "49546.88996367041824605",
+ "communityRecognized": false,
+ "key": "evm--4663:0x9e7abd3c9139d14e4c86dce0e455aab7a0c2fb3e",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x58ffe4a942d3885baa22d7520691f611ef09e7aa",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x58ffe4a942d3885baa22d7520691f611ef09e7aa-1784793636318.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x58ffe4a942d3885baa22d7520691f611ef09e7aa-1784793636318.png"
+ ],
+ "name": "****************************************************",
+ "symbol": "TSM",
+ "marketCap": "1493062.937174059172916264",
+ "price": "432.78231534519635587615",
+ "priceChange24hPercent": "0.19",
+ "volume24h": "398872.77181093565400075",
+ "communityRecognized": false,
+ "key": "evm--4663:0x58ffe4a942d3885baa22d7520691f611ef09e7aa",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xee5576fa1bcaa380e591d01245f406f3f384eb01",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xee5576fa1bcaa380e591d01245f406f3f384eb01-1787832045009.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xee5576fa1bcaa380e591d01245f406f3f384eb01-1787832045009.png"
+ ],
+ "name": "Down to Finance",
+ "symbol": "DTF",
+ "marketCap": "8964448.183263811248727251",
+ "price": "0.00896444822483335211",
+ "priceChange24hPercent": "2.82",
+ "volume24h": "242467.52477141789580769",
+ "communityRecognized": false,
+ "key": "evm--4663:0xee5576fa1bcaa380e591d01245f406f3f384eb01",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x32ac8c1d7672667d5ebdea22935f7b06fc8d496f",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x32ac8c1d7672667d5ebdea22935f7b06fc8d496f-1788264019087.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x32ac8c1d7672667d5ebdea22935f7b06fc8d496f-1788264019087.png"
+ ],
+ "name": "HOOD",
+ "symbol": "HOOD",
+ "marketCap": "1325766.900758184127268845",
+ "price": "123.39448593926314245221",
+ "priceChange24hPercent": "0.14",
+ "volume24h": "818303.4370839317804684",
+ "communityRecognized": false,
+ "key": "evm--4663:0x32ac8c1d7672667d5ebdea22935f7b06fc8d496f",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x5759a852243a56a48853af1d28fd4e0f33747c9b",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x5759a852243a56a48853af1d28fd4e0f33747c9b-1788610268473.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x5759a852243a56a48853af1d28fd4e0f33747c9b-1788610268473.png"
+ ],
+ "name": "Robinhood Asteroid",
+ "symbol": "18932",
+ "marketCap": "523109.646147250458358492",
+ "price": "0.00052310964614725046",
+ "priceChange24hPercent": "-12.71",
+ "volume24h": "25064.55122729376155463",
+ "communityRecognized": false,
+ "key": "evm--4663:0x5759a852243a56a48853af1d28fd4e0f33747c9b",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x9b23573b156b52565012f5ce02cdf60afbaa70be",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x9b23573b156b52565012f5ce02cdf60afbaa70be-1784793671717.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x9b23573b156b52565012f5ce02cdf60afbaa70be-1784793671717.png"
+ ],
+ "name": "Penguin Solutions • Robinhood Token",
+ "symbol": "PENG",
+ "marketCap": "303836.394771971831054679",
+ "price": "51.82782851253503538496",
+ "priceChange24hPercent": "-1.11",
+ "volume24h": "46808.633913260344559602",
+ "communityRecognized": false,
+ "key": "evm--4663:0x9b23573b156b52565012f5ce02cdf60afbaa70be",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x649792631ddbc52551fd765a17382b4d375b9b78",
+ "logoUrl": "https://static.oklink.com/cdn/web3/currency/token/large/4663-0x649792631ddbc52551fd765a17382b4d375b9b78-109/type=default_90_0?v=1788838801035",
+ "logoUrls": [
+ "https://static.oklink.com/cdn/web3/currency/token/large/4663-0x649792631ddbc52551fd765a17382b4d375b9b78-109/type=default_90_0?v=1788838801035"
+ ],
+ "name": "Wheel",
+ "symbol": "WHEEL",
+ "marketCap": "315341.094960666346220107",
+ "price": "0.00031534109496066635",
+ "priceChange24hPercent": "7144.5",
+ "volume24h": "835183.968961850981327598",
+ "communityRecognized": false,
+ "key": "evm--4663:0x649792631ddbc52551fd765a17382b4d375b9b78",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x8ea0eb3505f5b3bd2bbea0febae0ce850cc73ecc",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x8ea0eb3505f5b3bd2bbea0febae0ce850cc73ecc-1788523223085.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x8ea0eb3505f5b3bd2bbea0febae0ce850cc73ecc-1788523223085.png"
+ ],
+ "name": "OuroLayer",
+ "symbol": "OURO",
+ "marketCap": "4926817.198886655333428856",
+ "price": "0.00492681719888665533",
+ "priceChange24hPercent": "174.33",
+ "volume24h": "1651551.17192592714791464",
+ "communityRecognized": false,
+ "key": "evm--4663:0x8ea0eb3505f5b3bd2bbea0febae0ce850cc73ecc",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x84cab63bc87912e71ad199ff14a0ba45de68fef8",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x84cab63bc87912e71ad199ff14a0ba45de68fef8-1786795206969.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x84cab63bc87912e71ad199ff14a0ba45de68fef8-1786795206969.png"
+ ],
+ "name": "SK hynix Inc. American Depositary Shares • Robinhood Token",
+ "symbol": "SKHY",
+ "marketCap": "848170.211121570476232188",
+ "price": "186.8200620928412397607",
+ "priceChange24hPercent": "1.91",
+ "volume24h": "45532.170212154529905491",
+ "communityRecognized": false,
+ "key": "evm--4663:0x84cab63bc87912e71ad199ff14a0ba45de68fef8",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xb0992820e760d836549ba69bc7598b4af75dee03",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xb0992820e760d836549ba69bc7598b4af75dee03-1784780805755.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xb0992820e760d836549ba69bc7598b4af75dee03-1784780805755.png"
+ ],
+ "name": "Oracle • Robinhood Token",
+ "symbol": "ORCL",
+ "marketCap": "601850.18497312438121263",
+ "price": "161.97745369038217008876",
+ "priceChange24hPercent": "-1.33",
+ "volume24h": "1722.71228521725646237",
+ "communityRecognized": false,
+ "key": "evm--4663:0xb0992820e760d836549ba69bc7598b4af75dee03",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xb9972ca7188e511174947e3936a5315ac7073277",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xb9972ca7188e511174947e3936a5315ac7073277-1787400211008.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xb9972ca7188e511174947e3936a5315ac7073277-1787400211008.png"
+ ],
+ "name": "Prologue",
+ "symbol": "PROLOGUE",
+ "marketCap": "10788562.212828897338133307",
+ "price": "0.01078856221282889734",
+ "priceChange24hPercent": "16.6",
+ "volume24h": "581736.473537979603241404",
+ "communityRecognized": true,
+ "key": "evm--4663:0xb9972ca7188e511174947e3936a5315ac7073277",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x7fe995a80075df3dc8ae11a9b82c7fe4202cd87f",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x7fe995a80075df3dc8ae11a9b82c7fe4202cd87f-1785325956569.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x7fe995a80075df3dc8ae11a9b82c7fe4202cd87f-1785325956569.png"
+ ],
+ "name": "Thinking Cat",
+ "symbol": "HMM",
+ "marketCap": "12782796.553544718550157926",
+ "price": "0.0129418959993660162",
+ "priceChange24hPercent": "2.49",
+ "volume24h": "230136.624048545760894067",
+ "communityRecognized": true,
+ "key": "evm--4663:0x7fe995a80075df3dc8ae11a9b82c7fe4202cd87f",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xfde6b5d9bb419b10c23268c74e369abff39c0460",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xfde6b5d9bb419b10c23268c74e369abff39c0460-1787054422497.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xfde6b5d9bb419b10c23268c74e369abff39c0460-1787054422497.png"
+ ],
+ "name": "Red Cat • Robinhood Token",
+ "symbol": "RCAT",
+ "marketCap": "174855.222156002873833176",
+ "price": "8.2973151788976736861",
+ "priceChange24hPercent": "-1.29",
+ "volume24h": "144018.0509607947891466",
+ "communityRecognized": false,
+ "key": "evm--4663:0xfde6b5d9bb419b10c23268c74e369abff39c0460",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xc7db9a7034d061feca50f0a25636bcc83ca717d9",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/10b09533a117502080d981e8e84fcf6e2ab3e7ff05c60c0d04f259f8e0a07585",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/10b09533a117502080d981e8e84fcf6e2ab3e7ff05c60c0d04f259f8e0a07585"
+ ],
+ "name": "Fab",
+ "symbol": "FAB",
+ "marketCap": "836966.571803669544660081",
+ "price": "0.00085387138809895556",
+ "priceChange24hPercent": "-8.46",
+ "volume24h": "114923.88425488670747056",
+ "communityRecognized": false,
+ "key": "evm--4663:0xc7db9a7034d061feca50f0a25636bcc83ca717d9",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xac77646bcff9d52e99800534192e0290933f4094",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xac77646bcff9d52e99800534192e0290933f4094-1787572842778.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xac77646bcff9d52e99800534192e0290933f4094-1787572842778.png"
+ ],
+ "name": "Martians",
+ "symbol": "MARTIANS",
+ "marketCap": "413010.743800480512825997",
+ "price": "0.00041301074380704901",
+ "priceChange24hPercent": "-0.46",
+ "volume24h": "14905.5467337998832814",
+ "communityRecognized": false,
+ "key": "evm--4663:0xac77646bcff9d52e99800534192e0290933f4094",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xf16d26703d6d9b2b9bf10b6d5af6594598ec1a68",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/fc7cc3617cd3a98242ad2eed63135659025d934f072e6c065f5000ccd8c601a2",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/fc7cc3617cd3a98242ad2eed63135659025d934f072e6c065f5000ccd8c601a2"
+ ],
+ "name": "StockHooks",
+ "symbol": "STOCKHOOKS",
+ "marketCap": "510512.760777756022682291",
+ "price": "0.00051051276077775602",
+ "priceChange24hPercent": "-28.1",
+ "volume24h": "148584.68093014306191807",
+ "communityRecognized": false,
+ "key": "evm--4663:0xf16d26703d6d9b2b9bf10b6d5af6594598ec1a68",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x6245e67affa44a23077f0ea7f981a8dc743a0c47",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x6245e67affa44a23077f0ea7f981a8dc743a0c47-1785931207872.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x6245e67affa44a23077f0ea7f981a8dc743a0c47-1785931207872.png"
+ ],
+ "name": "frong",
+ "symbol": "FRONG",
+ "marketCap": "5456493.65293324383718581",
+ "price": "0.00545649365293324384",
+ "priceChange24hPercent": "-3.15",
+ "volume24h": "189880.321321660844503254",
+ "communityRecognized": false,
+ "key": "evm--4663:0x6245e67affa44a23077f0ea7f981a8dc743a0c47",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x4927370e1053eb0ed11cfeb9f6972e2460a7f560",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/c34541d62d6a52824b542675bc228d6cb4b415d4ce50598ab258a1a28f75eae8",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/c34541d62d6a52824b542675bc228d6cb4b415d4ce50598ab258a1a28f75eae8"
+ ],
+ "name": "RPG",
+ "symbol": "RPG",
+ "marketCap": "523557.279582898628260673",
+ "price": "0.00052355727958289863",
+ "priceChange24hPercent": "16344.44",
+ "volume24h": "2163559.929546857604857198",
+ "communityRecognized": false,
+ "key": "evm--4663:0x4927370e1053eb0ed11cfeb9f6972e2460a7f560",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x385b36ff682ab4c76e7c37a66b96aabc466471d5",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x385b36ff682ab4c76e7c37a66b96aabc466471d5-1786017815496.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x385b36ff682ab4c76e7c37a66b96aabc466471d5-1786017815496.png"
+ ],
+ "name": "pools.trade",
+ "symbol": "POOLS",
+ "marketCap": "1556630.67532955837106892",
+ "price": "0.0015566308898872704",
+ "priceChange24hPercent": "4.92",
+ "volume24h": "84255.2238805302340741",
+ "communityRecognized": false,
+ "key": "evm--4663:0x385b36ff682ab4c76e7c37a66b96aabc466471d5",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x5d6ef090a1461b11c9427ac319260122d1c61e18",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x5d6ef090a1461b11c9427ac319260122d1c61e18-1788353880496.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x5d6ef090a1461b11c9427ac319260122d1c61e18-1788353880496.png"
+ ],
+ "name": "iCoin",
+ "symbol": "ICOIN",
+ "marketCap": "6794960.644377991165801061",
+ "price": "0.00682768607984745341",
+ "priceChange24hPercent": "0.5",
+ "volume24h": "1101913.202899665919845278",
+ "communityRecognized": false,
+ "key": "evm--4663:0x5d6ef090a1461b11c9427ac319260122d1c61e18",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xbbd09f72b025360fee5c928053dca6248d35be54",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xbbd09f72b025360fee5c928053dca6248d35be54-1786881632532.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xbbd09f72b025360fee5c928053dca6248d35be54-1786881632532.png"
+ ],
+ "name": "ON Semiconductor • Robinhood Token",
+ "symbol": "ON",
+ "marketCap": "113275.155798233593657905",
+ "price": "75.60472402777470701443",
+ "priceChange24hPercent": "2.59",
+ "volume24h": "27213.076962049954107",
+ "communityRecognized": false,
+ "key": "evm--4663:0xbbd09f72b025360fee5c928053dca6248d35be54",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x51250b135174ca09450ec01c4aff73cf69dbb590",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x51250b135174ca09450ec01c4aff73cf69dbb590-1788177871008.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x51250b135174ca09450ec01c4aff73cf69dbb590-1788177871008.png"
+ ],
+ "name": "NovaAI",
+ "symbol": "NOVAAI",
+ "marketCap": "205177250.881058881320231645",
+ "price": "0.20517725088105888132",
+ "priceChange24hPercent": "12.83",
+ "volume24h": "720555.7924030171092123",
+ "communityRecognized": false,
+ "key": "evm--4663:0x51250b135174ca09450ec01c4aff73cf69dbb590",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xccee82fe024c36fa15e1005ede3e9e4787e23d09",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xccee82fe024c36fa15e1005ede3e9e4787e23d09-1786795236632.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xccee82fe024c36fa15e1005ede3e9e4787e23d09-1786795236632.png"
+ ],
+ "name": "Hims & Hers Health • Robinhood Token",
+ "symbol": "HIMS",
+ "marketCap": "3699914.235348728047757073",
+ "price": "28.27030663922170740723",
+ "priceChange24hPercent": "1.07",
+ "volume24h": "1513810.346553722359722446",
+ "communityRecognized": false,
+ "key": "evm--4663:0xccee82fe024c36fa15e1005ede3e9e4787e23d09",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xd2a577e92438fd0c1f2485f4fb91b9f866eb1e6c",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xd2a577e92438fd0c1f2485f4fb91b9f866eb1e6c-1788178809817.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xd2a577e92438fd0c1f2485f4fb91b9f866eb1e6c-1788178809817.png"
+ ],
+ "name": "Pepons",
+ "symbol": "PEPONS",
+ "marketCap": "686067.19654221425384943",
+ "price": "0.00068606719654224442",
+ "priceChange24hPercent": "37.22",
+ "volume24h": "52530.130541345663672362",
+ "communityRecognized": false,
+ "key": "evm--4663:0xd2a577e92438fd0c1f2485f4fb91b9f866eb1e6c",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x000b2164a76560323163343431db8be550f164b8",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x000b2164a76560323163343431db8be550f164b8-1788523244923.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x000b2164a76560323163343431db8be550f164b8-1788523244923.png"
+ ],
+ "name": "Chrome Dino",
+ "symbol": "DINO",
+ "marketCap": "601059.844869995937586289",
+ "price": "0.00060105984486999594",
+ "priceChange24hPercent": "23.96",
+ "volume24h": "46293.71526827664027348",
+ "communityRecognized": false,
+ "key": "evm--4663:0x000b2164a76560323163343431db8be550f164b8",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xd18528b39da6464b3662c331a52181ecb15b1e18",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xd18528b39da6464b3662c331a52181ecb15b1e18-1788004841997.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xd18528b39da6464b3662c331a52181ecb15b1e18-1788004841997.png"
+ ],
+ "name": "SAYLORMOON",
+ "symbol": "SAYLORMOON",
+ "marketCap": "2608877.363720267405226701",
+ "price": "0.00260887736372026741",
+ "priceChange24hPercent": "-32.22",
+ "volume24h": "204844.70149354695241707",
+ "communityRecognized": false,
+ "key": "evm--4663:0xd18528b39da6464b3662c331a52181ecb15b1e18",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x4d41ccaa0eeb95c6ebc56d53adf637198c901e18",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/68ccb386a4a3267b7da38dc5a978adcedc9f0268e78da7605318a384eda4f855",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/68ccb386a4a3267b7da38dc5a978adcedc9f0268e78da7605318a384eda4f855"
+ ],
+ "name": "SENDER",
+ "symbol": "SENDER",
+ "marketCap": "220679.248263885439238517",
+ "price": "0.00022067924826388544",
+ "priceChange24hPercent": "76.62",
+ "volume24h": "41088.55728684540253916",
+ "communityRecognized": false,
+ "key": "evm--4663:0x4d41ccaa0eeb95c6ebc56d53adf637198c901e18",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xded852de9fe9ba9b6f27f39e8e81cf851a5c79cc",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xded852de9fe9ba9b6f27f39e8e81cf851a5c79cc-1788264039086.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xded852de9fe9ba9b6f27f39e8e81cf851a5c79cc-1788264039086.png"
+ ],
+ "name": "ROBINCAT",
+ "symbol": "ROBINCAT",
+ "marketCap": "7190591.61911514001329259",
+ "price": "0.00719059161970446676",
+ "priceChange24hPercent": "-14.43",
+ "volume24h": "244054.447986668553304713",
+ "communityRecognized": false,
+ "key": "evm--4663:0xded852de9fe9ba9b6f27f39e8e81cf851a5c79cc",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xa3a273b2b389e718c0c490a4baee9347cd4a007b",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xa3a273b2b389e718c0c490a4baee9347cd4a007b-1788698209882.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xa3a273b2b389e718c0c490a4baee9347cd4a007b-1788698209882.png"
+ ],
+ "name": "TAMPONS",
+ "symbol": "TAMPONS",
+ "marketCap": "291576.350752405479894338",
+ "price": "0.00029157635075240548",
+ "priceChange24hPercent": "-4.2",
+ "volume24h": "39205.2343393147315226",
+ "communityRecognized": false,
+ "key": "evm--4663:0xa3a273b2b389e718c0c490a4baee9347cd4a007b",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xc60ba256b44334a0cd2c7242e98b88f031abb006",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xc60ba256b44334a0cd2c7242e98b88f031abb006-1788523227588.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xc60ba256b44334a0cd2c7242e98b88f031abb006-1788523227588.png"
+ ],
+ "name": "Programmable",
+ "symbol": "V4",
+ "marketCap": "2150844.883321342892826478",
+ "price": "0.00215084488332134289",
+ "priceChange24hPercent": "15.5",
+ "volume24h": "63521.0414388249506288",
+ "communityRecognized": false,
+ "key": "evm--4663:0xc60ba256b44334a0cd2c7242e98b88f031abb006",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xf2e122a481b440c40eee7a7ca6d5eef65a591b76",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xf2e122a481b440c40eee7a7ca6d5eef65a591b76-1788697706307.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xf2e122a481b440c40eee7a7ca6d5eef65a591b76-1788697706307.png"
+ ],
+ "name": "Quantum Cats",
+ "symbol": "QC",
+ "marketCap": "1168948.501236980233192217",
+ "price": "0.00131162658364001449",
+ "priceChange24hPercent": "5.13",
+ "volume24h": "98206.63466110882911783",
+ "communityRecognized": false,
+ "key": "evm--4663:0xf2e122a481b440c40eee7a7ca6d5eef65a591b76",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x59cec17c13cc3d34f5fbc31af26d8091da551e18",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/13189bbd4c1e382e43a5ac50c2f9e4bc93712959426d5ce0d5e0972b4b4760c5",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/13189bbd4c1e382e43a5ac50c2f9e4bc93712959426d5ce0d5e0972b4b4760c5"
+ ],
+ "name": "LMI",
+ "symbol": "LMI",
+ "marketCap": "96532.313132967152968751",
+ "price": "0.00009653231313296715",
+ "priceChange24hPercent": "82.49",
+ "volume24h": "31964.438220762720842702",
+ "communityRecognized": false,
+ "key": "evm--4663:0x59cec17c13cc3d34f5fbc31af26d8091da551e18",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x52f380a513112428723abf8afed125824e4a1e18",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x52f380a513112428723abf8afed125824e4a1e18-1788436924257.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x52f380a513112428723abf8afed125824e4a1e18-1788436924257.png"
+ ],
+ "name": "Peptides",
+ "symbol": "PEPTIDES",
+ "marketCap": "349702.092655391272595894",
+ "price": "0.00034970209265539127",
+ "priceChange24hPercent": "16.9",
+ "volume24h": "13459.935275022933481043",
+ "communityRecognized": false,
+ "key": "evm--4663:0x52f380a513112428723abf8afed125824e4a1e18",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x022c90ed10c2172bb9b2d54838bbe5d0827c4af1",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x022c90ed10c2172bb9b2d54838bbe5d0827c4af1-1788523280801.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x022c90ed10c2172bb9b2d54838bbe5d0827c4af1-1788523280801.png"
+ ],
+ "name": "UNICORN",
+ "symbol": "UNICORN",
+ "marketCap": "232202.499958619967511478",
+ "price": "0.00023220249995861997",
+ "priceChange24hPercent": "140.87",
+ "volume24h": "68688.5465853862658814",
+ "communityRecognized": false,
+ "key": "evm--4663:0x022c90ed10c2172bb9b2d54838bbe5d0827c4af1",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x941ae714ec6d8130c7b75d67160ca08f1e7d11dd",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x941ae714ec6d8130c7b75d67160ca08f1e7d11dd-1784793655021.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x941ae714ec6d8130c7b75d67160ca08f1e7d11dd-1784793655021.png"
+ ],
+ "name": "Dell • Robinhood Token",
+ "symbol": "DELL",
+ "marketCap": "524541.224040588729763102",
+ "price": "520.9461926537941054146",
+ "priceChange24hPercent": "-0.29",
+ "volume24h": "68409.192308625056986536",
+ "communityRecognized": false,
+ "key": "evm--4663:0x941ae714ec6d8130c7b75d67160ca08f1e7d11dd",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x6635c082c14b4206751600d96fe50428815c9fa9",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x6635c082c14b4206751600d96fe50428815c9fa9-1788698209882.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x6635c082c14b4206751600d96fe50428815c9fa9-1788698209882.png"
+ ],
+ "name": "Wood Liquidity",
+ "symbol": "WOOD",
+ "marketCap": "1175297.579973706491685363",
+ "price": "0.00117529757997370649",
+ "priceChange24hPercent": "-11.21",
+ "volume24h": "236287.7665474293645423",
+ "communityRecognized": false,
+ "key": "evm--4663:0x6635c082c14b4206751600d96fe50428815c9fa9",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xf0c4bf4c582cb3836e98394b1d4e7b7281101be8",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xf0c4bf4c582cb3836e98394b1d4e7b7281101be8-1784793816237.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xf0c4bf4c582cb3836e98394b1d4e7b7281101be8-1784793816237.png"
+ ],
+ "name": "Roblox • Robinhood Token",
+ "symbol": "RBLX",
+ "marketCap": "878984.023486966066749544",
+ "price": "43.13789657392896344331",
+ "priceChange24hPercent": "0.69",
+ "volume24h": "429753.7434313824768468",
+ "communityRecognized": false,
+ "key": "evm--4663:0xf0c4bf4c582cb3836e98394b1d4e7b7281101be8",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x69c68e4c00c6f6e4ac027300293a879be1e11e18",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x69c68e4c00c6f6e4ac027300293a879be1e11e18-1785758427663.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x69c68e4c00c6f6e4ac027300293a879be1e11e18-1785758427663.png"
+ ],
+ "name": "ap",
+ "symbol": "AP",
+ "marketCap": "763612.75535946328125007",
+ "price": "0.00076361275535946328",
+ "priceChange24hPercent": "59.37",
+ "volume24h": "88076.388276826714746506",
+ "communityRecognized": false,
+ "key": "evm--4663:0x69c68e4c00c6f6e4ac027300293a879be1e11e18",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ }
+ ],
+ "trending|evm--4663|24h|all": [
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x39dbed3a2bd333467115de45665cc57f813c4571",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x39dbed3a2bd333467115de45665cc57f813c4571-1785145437955.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x39dbed3a2bd333467115de45665cc57f813c4571-1785145437955.png"
+ ],
+ "name": "Pons",
+ "symbol": "PONS",
+ "marketCap": "492687665.20371759125025286",
+ "price": "0.70384361512765804418",
+ "priceChange24hPercent": "-4.3",
+ "volume24h": "119042590.11311583367613792",
+ "communityRecognized": true,
+ "key": "evm--4663:0x39dbed3a2bd333467115de45665cc57f813c4571",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x4a72b9702f991b790788f8afa9e7112541f4e8f8",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/a2e5ad0ff8689f1c746d6b07fd9718545cd44c67e13dabe8ba7242d613586821",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/a2e5ad0ff8689f1c746d6b07fd9718545cd44c67e13dabe8ba7242d613586821"
+ ],
+ "name": "Route",
+ "symbol": "ROUTE",
+ "marketCap": "5498451.406603741582838483",
+ "price": "0.00549845140660374158",
+ "priceChange24hPercent": "120236.36",
+ "volume24h": "13274806.852209821814774284",
+ "communityRecognized": false,
+ "key": "evm--4663:0x4a72b9702f991b790788f8afa9e7112541f4e8f8",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xe2324ff2a59f8ecba8c321c6466e59121c00e795",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/84804585551812a64183c44a4e291f2332c9a5ff2d07e52dbcd3b81d60c989b3",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/84804585551812a64183c44a4e291f2332c9a5ff2d07e52dbcd3b81d60c989b3"
+ ],
+ "name": "Commodity Market Exchange",
+ "symbol": "CME",
+ "marketCap": "2853217.606299477607716679",
+ "price": "0.00285321760629947761",
+ "priceChange24hPercent": "61089.8",
+ "volume24h": "14369548.29813810198583522",
+ "communityRecognized": false,
+ "key": "evm--4663:0xe2324ff2a59f8ecba8c321c6466e59121c00e795",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x6b1d42927b1a84ec28fa88d4fc6fa7af404966be",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x6b1d42927b1a84ec28fa88d4fc6fa7af404966be-1788091561508.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x6b1d42927b1a84ec28fa88d4fc6fa7af404966be-1788091561508.png"
+ ],
+ "name": "PAIR",
+ "symbol": "PAIR",
+ "marketCap": "13922294.949687588667787664",
+ "price": "0.01553740059562339121",
+ "priceChange24hPercent": "-28.2",
+ "volume24h": "9108267.92949791107445029",
+ "communityRecognized": false,
+ "key": "evm--4663:0x6b1d42927b1a84ec28fa88d4fc6fa7af404966be",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x0000000005aca17e8bd5779fc87e13cb433aed24",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x0000000005aca17e8bd5779fc87e13cb433aed24-1788697955302.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x0000000005aca17e8bd5779fc87e13cb433aed24-1788697955302.png"
+ ],
+ "name": "NUKE",
+ "symbol": "NUKE",
+ "marketCap": "10344114.294054815385789125",
+ "price": "74.30148928041241780785",
+ "priceChange24hPercent": "-5.32",
+ "volume24h": "2202546.53977847222464611",
+ "communityRecognized": false,
+ "key": "evm--4663:0x0000000005aca17e8bd5779fc87e13cb433aed24",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x2e8c31162b855a2ffa90f6f8634643ad6f111e18",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x2e8c31162b855a2ffa90f6f8634643ad6f111e18-1785845221968.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x2e8c31162b855a2ffa90f6f8634643ad6f111e18-1785845221968.png"
+ ],
+ "name": "Artificial Inu",
+ "symbol": "AI",
+ "marketCap": "259997174.369260732379842519",
+ "price": "0.26225409551078842417",
+ "priceChange24hPercent": "8.87",
+ "volume24h": "42622967.347285183203911748",
+ "communityRecognized": true,
+ "key": "evm--4663:0x2e8c31162b855a2ffa90f6f8634643ad6f111e18",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xab093def657f15df31b33922a95e047add645b29",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xab093def657f15df31b33922a95e047add645b29-1788523212752.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xab093def657f15df31b33922a95e047add645b29-1788523212752.png"
+ ],
+ "name": "MUSHROOM",
+ "symbol": "SHROOM",
+ "marketCap": "31040529.465871812895696673",
+ "price": "0.03143926481944639757",
+ "priceChange24hPercent": "12.01",
+ "volume24h": "12038351.075527265603646593",
+ "communityRecognized": true,
+ "key": "evm--4663:0xab093def657f15df31b33922a95e047add645b29",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xd9db30bb0d2b8d2eae3826a1372117e058791e18",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xd9db30bb0d2b8d2eae3826a1372117e058791e18-1788091222725.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xd9db30bb0d2b8d2eae3826a1372117e058791e18-1788091222725.png"
+ ],
+ "name": "Memory cow Moo",
+ "symbol": "MOO",
+ "marketCap": "25421271.013613587865372077",
+ "price": "0.02570519512113269816",
+ "priceChange24hPercent": "33.63",
+ "volume24h": "6052645.90619848664018607",
+ "communityRecognized": true,
+ "key": "evm--4663:0xd9db30bb0d2b8d2eae3826a1372117e058791e18",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x7ba36be14dd06ba492f08be6c1b2979c1d0b652c",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x7ba36be14dd06ba492f08be6c1b2979c1d0b652c-1788178016235.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x7ba36be14dd06ba492f08be6c1b2979c1d0b652c-1788178016235.png"
+ ],
+ "name": "PerpsHood",
+ "symbol": "PERPSHOOD",
+ "marketCap": "3111996.446146368568450989",
+ "price": "0.00315860300715415141",
+ "priceChange24hPercent": "167.67",
+ "volume24h": "3608048.798957953338800022",
+ "communityRecognized": false,
+ "key": "evm--4663:0x7ba36be14dd06ba492f08be6c1b2979c1d0b652c",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x6d11782ef6cbe773da2defef612f9a57c54012bf",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/aed9300fe93af8a077cf133b5d703e28386f95d7724261f173da91a4cac7df65",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/aed9300fe93af8a077cf133b5d703e28386f95d7724261f173da91a4cac7df65"
+ ],
+ "name": "Macintosh",
+ "symbol": "MACINTOSH",
+ "marketCap": "1400165.612151950161775918",
+ "price": "0.00140016561215195016",
+ "priceChange24hPercent": "20682.42",
+ "volume24h": "905918.699582794964682102",
+ "communityRecognized": false,
+ "key": "evm--4663:0x6d11782ef6cbe773da2defef612f9a57c54012bf",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x15d36b6a28d8327abc7afabf0f106ae2c9af5c4d",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x15d36b6a28d8327abc7afabf0f106ae2c9af5c4d-1788523244923.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x15d36b6a28d8327abc7afabf0f106ae2c9af5c4d-1788523244923.png"
+ ],
+ "name": "Pare",
+ "symbol": "PARE",
+ "marketCap": "12472779.347945200550616218",
+ "price": "0.01247277934794520055",
+ "priceChange24hPercent": "-20.01",
+ "volume24h": "7251796.417566689101936342",
+ "communityRecognized": false,
+ "key": "evm--4663:0x15d36b6a28d8327abc7afabf0f106ae2c9af5c4d",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x79a74fd91f8e1c4ab8e76253dec5c91f3094393f",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/e1f481a4066feec841bf3345c090a6cdd9fd2274a972cf1981f3a0a234f42d9c",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/e1f481a4066feec841bf3345c090a6cdd9fd2274a972cf1981f3a0a234f42d9c"
+ ],
+ "name": "Superstables",
+ "symbol": "STBL",
+ "marketCap": "430052.948915032286294785",
+ "price": "0.00043005294891503229",
+ "priceChange24hPercent": "9558.96",
+ "volume24h": "1204942.26638986803570673",
+ "communityRecognized": false,
+ "key": "evm--4663:0x79a74fd91f8e1c4ab8e76253dec5c91f3094393f",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x7163ae1b5aea2f09ebc609c52b4dcac0a7a4bc2d",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/b565852235f4b58795118e627a62621101b692c4e2e2801f518600ad55c59755",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/b565852235f4b58795118e627a62621101b692c4e2e2801f518600ad55c59755"
+ ],
+ "name": "GAGE",
+ "symbol": "GAGE",
+ "marketCap": "2031316.219519833826009659",
+ "price": "0.00203131621951983383",
+ "priceChange24hPercent": "45250.35",
+ "volume24h": "5746651.779395893893074001",
+ "communityRecognized": false,
+ "key": "evm--4663:0x7163ae1b5aea2f09ebc609c52b4dcac0a7a4bc2d",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xa3602804e096cb73bd8344afc1ff3f3390b899c5",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xa3602804e096cb73bd8344afc1ff3f3390b899c5-1788697149485.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xa3602804e096cb73bd8344afc1ff3f3390b899c5-1788697149485.png"
+ ],
+ "name": "PEZ",
+ "symbol": "PEZ",
+ "marketCap": "2552015.440732567570403185",
+ "price": "0.00255202107719303053",
+ "priceChange24hPercent": "-43.35",
+ "volume24h": "4491749.83309332852505211",
+ "communityRecognized": false,
+ "key": "evm--4663:0xa3602804e096cb73bd8344afc1ff3f3390b899c5",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x76ed1e2a8fc3873fcb5c514688ca2fe8a3600b7f",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/1dbcb030f10554487ca05c3aaa7fcc97cef5b687e39b63bafb0d000d20616792",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/1dbcb030f10554487ca05c3aaa7fcc97cef5b687e39b63bafb0d000d20616792"
+ ],
+ "name": "LAPTOP",
+ "symbol": "LAPTOP",
+ "marketCap": "1179059.264328386209432576",
+ "price": "0.00117905926432838621",
+ "priceChange24hPercent": "22713.86",
+ "volume24h": "13307398.585952582535407725",
+ "communityRecognized": false,
+ "key": "evm--4663:0x76ed1e2a8fc3873fcb5c514688ca2fe8a3600b7f",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x98096d17e191b3da1d5f99a6d7b3584351b11e18",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x98096d17e191b3da1d5f99a6d7b3584351b11e18-1787918411975.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x98096d17e191b3da1d5f99a6d7b3584351b11e18-1787918411975.png"
+ ],
+ "name": "Boner Coin",
+ "symbol": "BONER",
+ "marketCap": "58129181.519069637833904517",
+ "price": "0.05812919390713559434",
+ "priceChange24hPercent": "-19.51",
+ "volume24h": "14087798.395905450070920405",
+ "communityRecognized": true,
+ "key": "evm--4663:0x98096d17e191b3da1d5f99a6d7b3584351b11e18",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x12d5ee7917ca430073c3a638ee1e6f0648a98a01",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x12d5ee7917ca430073c3a638ee1e6f0648a98a01-1788350677314.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x12d5ee7917ca430073c3a638ee1e6f0648a98a01-1788350677314.png"
+ ],
+ "name": "FATCOIN",
+ "symbol": "FATCOIN",
+ "marketCap": "15073886.50104684331489565",
+ "price": "0.01507388650104684331",
+ "priceChange24hPercent": "-9.52",
+ "volume24h": "7481391.430111711834157202",
+ "communityRecognized": false,
+ "key": "evm--4663:0x12d5ee7917ca430073c3a638ee1e6f0648a98a01",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xafe41f4356c24f716111de1fbbc84e061d291e18",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xafe41f4356c24f716111de1fbbc84e061d291e18-1788264039086.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xafe41f4356c24f716111de1fbbc84e061d291e18-1788264039086.png"
+ ],
+ "name": "Cache Cow",
+ "symbol": "CACHE",
+ "marketCap": "1056454.727534532364284546",
+ "price": "0.00105645472753453236",
+ "priceChange24hPercent": "36.77",
+ "volume24h": "699530.789557390232513401",
+ "communityRecognized": false,
+ "key": "evm--4663:0xafe41f4356c24f716111de1fbbc84e061d291e18",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xd5f1afea47b1a9eab414d2ee740cf1d6d039e725",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xd5f1afea47b1a9eab414d2ee740cf1d6d039e725-1788091431352.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xd5f1afea47b1a9eab414d2ee740cf1d6d039e725-1788091431352.png"
+ ],
+ "name": "microduck",
+ "symbol": "microduck",
+ "marketCap": "18335033.149710684136041623",
+ "price": "0.01833503314971068414",
+ "priceChange24hPercent": "-19.85",
+ "volume24h": "6907045.806081237969223709",
+ "communityRecognized": false,
+ "key": "evm--4663:0xd5f1afea47b1a9eab414d2ee740cf1d6d039e725",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x020bfc650a365f8bb26819deaabf3e21291018b4",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x020bfc650a365f8bb26819deaabf3e21291018b4-1784778353843.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x020bfc650a365f8bb26819deaabf3e21291018b4-1784778353843.png"
+ ],
+ "name": "Cash Cat",
+ "symbol": "CASHCAT",
+ "marketCap": "188270431.00592652282973507",
+ "price": "0.19053459862614162397",
+ "priceChange24hPercent": "-15.2",
+ "volume24h": "21049586.513577617282953021",
+ "communityRecognized": true,
+ "key": "evm--4663:0x020bfc650a365f8bb26819deaabf3e21291018b4",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xbc9cc4b93a08b2dfba87067a9c53e713db3314ce",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/a34bd343ce2418e2688d9be4430fef2415dee4b660c25a3bbbcaaf3481e299a4",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/a34bd343ce2418e2688d9be4430fef2415dee4b660c25a3bbbcaaf3481e299a4"
+ ],
+ "name": "Pink Sheets",
+ "symbol": "PINK",
+ "marketCap": "966041.535560089479163395",
+ "price": "0.00096604153556008948",
+ "priceChange24hPercent": "21873.19",
+ "volume24h": "10467018.639271222260846001",
+ "communityRecognized": false,
+ "key": "evm--4663:0xbc9cc4b93a08b2dfba87067a9c53e713db3314ce",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xbe98b75361935b18d688409424a869a4c3dc7401",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xbe98b75361935b18d688409424a869a4c3dc7401-1788436898916.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xbe98b75361935b18d688409424a869a4c3dc7401-1788436898916.png"
+ ],
+ "name": "Send Nudes",
+ "symbol": "NUDES",
+ "marketCap": "14740176.222858396815503008",
+ "price": "0.01474017622285839682",
+ "priceChange24hPercent": "-28.93",
+ "volume24h": "5248778.674141904601762067",
+ "communityRecognized": false,
+ "key": "evm--4663:0xbe98b75361935b18d688409424a869a4c3dc7401",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xaa07a0e9209e16ac99708c3ec70159c6ef3128a3",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xaa07a0e9209e16ac99708c3ec70159c6ef3128a3-1788352120153.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xaa07a0e9209e16ac99708c3ec70159c6ef3128a3-1788352120153.png"
+ ],
+ "name": "Orbio.so",
+ "symbol": "ORBIO",
+ "marketCap": "17641751.176414680990139658",
+ "price": "0.01857026439622597999",
+ "priceChange24hPercent": "47.72",
+ "volume24h": "4936671.352995991091833662",
+ "communityRecognized": false,
+ "key": "evm--4663:0xaa07a0e9209e16ac99708c3ec70159c6ef3128a3",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x62cd5cd9d354a2a50affe9efa21c8918b9640a5b",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x62cd5cd9d354a2a50affe9efa21c8918b9640a5b-1788698087258.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x62cd5cd9d354a2a50affe9efa21c8918b9640a5b-1788698087258.png"
+ ],
+ "name": "LADY Exchange",
+ "symbol": "LDX",
+ "marketCap": "830756.516496992522362611",
+ "price": "0.00083075651649699252",
+ "priceChange24hPercent": "-59.74",
+ "volume24h": "2044115.795995424424285052",
+ "communityRecognized": false,
+ "key": "evm--4663:0x62cd5cd9d354a2a50affe9efa21c8918b9640a5b",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x18e674231a58c239dc7daedcffe15ec3a24cff5c",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x18e674231a58c239dc7daedcffe15ec3a24cff5c-1786190410593.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x18e674231a58c239dc7daedcffe15ec3a24cff5c-1786190410593.png"
+ ],
+ "name": "Hookr.fun",
+ "symbol": "HOOKR",
+ "marketCap": "16452838.291206863943850606",
+ "price": "0.01651296102485698301",
+ "priceChange24hPercent": "11.54",
+ "volume24h": "3258352.218298740269544869",
+ "communityRecognized": true,
+ "key": "evm--4663:0x18e674231a58c239dc7daedcffe15ec3a24cff5c",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xe2dae1c072b9f66bed999873b94798b2152af7e1",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xe2dae1c072b9f66bed999873b94798b2152af7e1-1788697020328.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xe2dae1c072b9f66bed999873b94798b2152af7e1-1788697020328.png"
+ ],
+ "name": "Arbitrage Ape",
+ "symbol": "AA",
+ "marketCap": "4410084.102737949468031625",
+ "price": "0.00448979955071063092",
+ "priceChange24hPercent": "39.09",
+ "volume24h": "1790937.382855772863069085",
+ "communityRecognized": false,
+ "key": "evm--4663:0xe2dae1c072b9f66bed999873b94798b2152af7e1",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xab35d04e1ee39c789c4a65d522417b3c7f2e4723",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/fac85c085d11f1aa6ae21cc9ad0bb550feec3cb25196bd13e83f1f5c0ef580c0",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/fac85c085d11f1aa6ae21cc9ad0bb550feec3cb25196bd13e83f1f5c0ef580c0"
+ ],
+ "name": "JT MARLIN",
+ "symbol": "MARLIN",
+ "marketCap": "1060606.547335927728558696",
+ "price": "0.00106060654733592773",
+ "priceChange24hPercent": "23054.68",
+ "volume24h": "2228099.583249475032207204",
+ "communityRecognized": false,
+ "key": "evm--4663:0xab35d04e1ee39c789c4a65d522417b3c7f2e4723",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x7df5daaf80e65dfcc7a1435d9b52bcf2b5753fbe",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x7df5daaf80e65dfcc7a1435d9b52bcf2b5753fbe-1788696318342.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x7df5daaf80e65dfcc7a1435d9b52bcf2b5753fbe-1788696318342.png"
+ ],
+ "name": "Unipcs",
+ "symbol": "UNIPCS",
+ "marketCap": "812253.578531994003406883",
+ "price": "0.00081339741901936819",
+ "priceChange24hPercent": "-34.02",
+ "volume24h": "1322451.3614217303533621",
+ "communityRecognized": false,
+ "key": "evm--4663:0x7df5daaf80e65dfcc7a1435d9b52bcf2b5753fbe",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x11b70d0243baf75e85ce03201a92b5b7c33beb59",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x11b70d0243baf75e85ce03201a92b5b7c33beb59-1788697768561.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x11b70d0243baf75e85ce03201a92b5b7c33beb59-1788697768561.png"
+ ],
+ "name": "Robin the Frog",
+ "symbol": "ROBIN",
+ "marketCap": "4951105.534710210742606697",
+ "price": "0.00498856354285522312",
+ "priceChange24hPercent": "-64.12",
+ "volume24h": "3970787.923132925793442297",
+ "communityRecognized": false,
+ "key": "evm--4663:0x11b70d0243baf75e85ce03201a92b5b7c33beb59",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xe934e36a439c94017b64a3fece66af12099abf50",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xe934e36a439c94017b64a3fece66af12099abf50-1785290631562.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xe934e36a439c94017b64a3fece66af12099abf50-1785290631562.png"
+ ],
+ "name": "StonkBroker",
+ "symbol": "STONKBROKER",
+ "marketCap": "20859686.790204419783593692",
+ "price": "0.01705184277003509474",
+ "priceChange24hPercent": "30.22",
+ "volume24h": "4485422.112157915504221191",
+ "communityRecognized": true,
+ "key": "evm--4663:0xe934e36a439c94017b64a3fece66af12099abf50",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xca9c78dd337a67f6e0077f65f5e9218719d30edf",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xca9c78dd337a67f6e0077f65f5e9218719d30edf-1785280831816.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xca9c78dd337a67f6e0077f65f5e9218719d30edf-1785280831816.png"
+ ],
+ "name": "NetNet",
+ "symbol": "NET",
+ "marketCap": "3926147.195878461275917068",
+ "price": "669.55921828626485469435",
+ "priceChange24hPercent": "-11.77",
+ "volume24h": "4895267.49300402102097454",
+ "communityRecognized": false,
+ "key": "evm--4663:0xca9c78dd337a67f6e0077f65f5e9218719d30edf",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xef67e3064bef1a27e81925ec7132f23e533bd5f6",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xef67e3064bef1a27e81925ec7132f23e533bd5f6-1788782588286.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xef67e3064bef1a27e81925ec7132f23e533bd5f6-1788782588286.png"
+ ],
+ "name": "Greatest Meme Ever",
+ "symbol": "GME",
+ "marketCap": "4341478.594365716540473077",
+ "price": "0.00434147859482062166",
+ "priceChange24hPercent": "88.5",
+ "volume24h": "5305491.123288055720530464",
+ "communityRecognized": false,
+ "key": "evm--4663:0xef67e3064bef1a27e81925ec7132f23e533bd5f6",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x451b42a15100c340ca12f7c66de06fac5ea2d751",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x451b42a15100c340ca12f7c66de06fac5ea2d751-1787832041620.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x451b42a15100c340ca12f7c66de06fac5ea2d751-1787832041620.png"
+ ],
+ "name": "Longbow",
+ "symbol": "BOW",
+ "marketCap": "5578808.666770871173288788",
+ "price": "0.00557880866677087117",
+ "priceChange24hPercent": "-34.02",
+ "volume24h": "1436031.902880123203851178",
+ "communityRecognized": false,
+ "key": "evm--4663:0x451b42a15100c340ca12f7c66de06fac5ea2d751",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x7dbf38976f6d3b9c529e7d9484a71898b409ee6a",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x7dbf38976f6d3b9c529e7d9484a71898b409ee6a-1788610442171.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x7dbf38976f6d3b9c529e7d9484a71898b409ee6a-1788610442171.png"
+ ],
+ "name": "ZZZ",
+ "symbol": "ZZZ",
+ "marketCap": "15387442.310273929590486193",
+ "price": "0.01831838370270705904",
+ "priceChange24hPercent": "-13.86",
+ "volume24h": "5043576.981965938822008961",
+ "communityRecognized": false,
+ "key": "evm--4663:0x7dbf38976f6d3b9c529e7d9484a71898b409ee6a",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x2ae1ebeeda58b68a02dc313f7d90aa6ee546df86",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/2d70c37a83c6c75e1500068ec44d7246c00f6c3cc88134c29c693c7ac392bbc0",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/2d70c37a83c6c75e1500068ec44d7246c00f6c3cc88134c29c693c7ac392bbc0"
+ ],
+ "name": "Milk",
+ "symbol": "DC",
+ "marketCap": "45145.159758174458754856",
+ "price": "16.29547279369660484211",
+ "priceChange24hPercent": "-0.68",
+ "volume24h": "466170.6680865126006779",
+ "communityRecognized": false,
+ "key": "evm--4663:0x2ae1ebeeda58b68a02dc313f7d90aa6ee546df86",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x78b96280c3347e0f58a7147b73eb0ec5ffff025d",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x78b96280c3347e0f58a7147b73eb0ec5ffff025d-1788697020328.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x78b96280c3347e0f58a7147b73eb0ec5ffff025d-1788697020328.png"
+ ],
+ "name": "Robinhood Hat Strategy",
+ "symbol": "RSTR",
+ "marketCap": "2672483.071352492209339559",
+ "price": "0.00275753651884972012",
+ "priceChange24hPercent": "569.57",
+ "volume24h": "5005411.916986400790920951",
+ "communityRecognized": false,
+ "key": "evm--4663:0x78b96280c3347e0f58a7147b73eb0ec5ffff025d",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x5173d45a1191ee33cbb7d8c7e65f21b04ed54802",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x5173d45a1191ee33cbb7d8c7e65f21b04ed54802-1788264029244.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x5173d45a1191ee33cbb7d8c7e65f21b04ed54802-1788264029244.png"
+ ],
+ "name": "Ramses",
+ "symbol": "RAM",
+ "marketCap": "3424111.664078886069554709",
+ "price": "0.06792829766749973084",
+ "priceChange24hPercent": "-31.51",
+ "volume24h": "1864539.096927611105482253",
+ "communityRecognized": false,
+ "key": "evm--4663:0x5173d45a1191ee33cbb7d8c7e65f21b04ed54802",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x0762c1708f0d23f86b29d6b857121ff7df357506",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x0762c1708f0d23f86b29d6b857121ff7df357506-1785931280846.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x0762c1708f0d23f86b29d6b857121ff7df357506-1785931280846.png"
+ ],
+ "name": "this is not a website",
+ "symbol": "website",
+ "marketCap": "5091239.638660972937935513",
+ "price": "0.00544262796825208841",
+ "priceChange24hPercent": "16.36",
+ "volume24h": "418235.005360235911153617",
+ "communityRecognized": false,
+ "key": "evm--4663:0x0762c1708f0d23f86b29d6b857121ff7df357506",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xe1e5f00a9b0255ca4df85b3130ee0f77d15acc2d",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xe1e5f00a9b0255ca4df85b3130ee0f77d15acc2d-1788696640254.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xe1e5f00a9b0255ca4df85b3130ee0f77d15acc2d-1788696640254.png"
+ ],
+ "name": "Pushin' 🅿️",
+ "symbol": "🅿️",
+ "marketCap": "1560449.17224445245957259",
+ "price": "0.00156044917224445246",
+ "priceChange24hPercent": "-50.71",
+ "volume24h": "3012692.427963278960900147",
+ "communityRecognized": false,
+ "key": "evm--4663:0xe1e5f00a9b0255ca4df85b3130ee0f77d15acc2d",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x16391c40e85fb2246a2c8c17bfa2594c5d3ef84b",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x16391c40e85fb2246a2c8c17bfa2594c5d3ef84b-1788523244923.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x16391c40e85fb2246a2c8c17bfa2594c5d3ef84b-1788523244923.png"
+ ],
+ "name": "Touch Grass",
+ "symbol": "GRASS",
+ "marketCap": "3518252.016007033689843827",
+ "price": "0.00353755075272048435",
+ "priceChange24hPercent": "-33.37",
+ "volume24h": "2382849.029982304757494799",
+ "communityRecognized": false,
+ "key": "evm--4663:0x16391c40e85fb2246a2c8c17bfa2594c5d3ef84b",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x215407c134f68b9da4de10c22c948196053a0d5d",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/70a6389f1690a862f8e3a0d61f5a71c1ed8f0eb1c39ccf6f78f60fff4d400471",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/70a6389f1690a862f8e3a0d61f5a71c1ed8f0eb1c39ccf6f78f60fff4d400471"
+ ],
+ "name": "The Wolf of Wall Street",
+ "symbol": "WOLF",
+ "marketCap": "3790390.962235132347890869",
+ "price": "0.01054922634164950775",
+ "priceChange24hPercent": "5.48",
+ "volume24h": "8440890.502844689176128551",
+ "communityRecognized": false,
+ "key": "evm--4663:0x215407c134f68b9da4de10c22c948196053a0d5d",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xe8ffd7e24187f72afb08d75b1bb13088a989a791",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xe8ffd7e24187f72afb08d75b1bb13088a989a791-1786708993342.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xe8ffd7e24187f72afb08d75b1bb13088a989a791-1786708993342.png"
+ ],
+ "name": "Delta",
+ "symbol": "DELTA",
+ "marketCap": "13215421.627403756620751773",
+ "price": "0.0132154219860979857",
+ "priceChange24hPercent": "12.71",
+ "volume24h": "3705216.719274172849845356",
+ "communityRecognized": false,
+ "key": "evm--4663:0xe8ffd7e24187f72afb08d75b1bb13088a989a791",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x507b6f349a80114097a67b8b4677367acc15b220",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x507b6f349a80114097a67b8b4677367acc15b220-1788610022118.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x507b6f349a80114097a67b8b4677367acc15b220-1788610022118.png"
+ ],
+ "name": "par",
+ "symbol": "par",
+ "marketCap": "1666928.798512164185625413",
+ "price": "0.00176440509201688206",
+ "priceChange24hPercent": "-57.75",
+ "volume24h": "2531747.387220987817146609",
+ "communityRecognized": false,
+ "key": "evm--4663:0x507b6f349a80114097a67b8b4677367acc15b220",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x385f4f8ae47651ce5f58f5265395a669f8281e18",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x385f4f8ae47651ce5f58f5265395a669f8281e18-1788523250367.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x385f4f8ae47651ce5f58f5265395a669f8281e18-1788523250367.png"
+ ],
+ "name": "A Meme Coin",
+ "symbol": "MEME",
+ "marketCap": "122218256.939187902400649569",
+ "price": "0.12221825699349346093",
+ "priceChange24hPercent": "37.42",
+ "volume24h": "59434876.032533666499376282",
+ "communityRecognized": true,
+ "key": "evm--4663:0x385f4f8ae47651ce5f58f5265395a669f8281e18",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x97216593d3b2769da6f0adeee6fb8e36da4e319f",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x97216593d3b2769da6f0adeee6fb8e36da4e319f-1788782713180.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x97216593d3b2769da6f0adeee6fb8e36da4e319f-1788782713180.png"
+ ],
+ "name": "Ponsancoin",
+ "symbol": "Ponsan",
+ "marketCap": "903418.884954879381383267",
+ "price": "0.00090341888525257061",
+ "priceChange24hPercent": "-8.9",
+ "volume24h": "1582386.965183383122797339",
+ "communityRecognized": false,
+ "key": "evm--4663:0x97216593d3b2769da6f0adeee6fb8e36da4e319f",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xcd8df4c1052a3447bda6a7423fbc234102f3b477",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/2c2886d399c18bd4b0702fc8ad6b51ba9787a4d5b3d91c759a3febf9c71697b5",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/2c2886d399c18bd4b0702fc8ad6b51ba9787a4d5b3d91c759a3febf9c71697b5"
+ ],
+ "name": "Silverback",
+ "symbol": "SILVERBACK",
+ "marketCap": "437612.725643649196156586",
+ "price": "0.0004376127256436492",
+ "priceChange24hPercent": "8174.63",
+ "volume24h": "2857693.284059444199685117",
+ "communityRecognized": false,
+ "key": "evm--4663:0xcd8df4c1052a3447bda6a7423fbc234102f3b477",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x812486eaea648819853f8e372dc9f1516c7868bd",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x812486eaea648819853f8e372dc9f1516c7868bd-1788354167261.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x812486eaea648819853f8e372dc9f1516c7868bd-1788354167261.png"
+ ],
+ "name": "ubik",
+ "symbol": "UBIK",
+ "marketCap": "17722979.495896872827918012",
+ "price": "0.01772297949589687283",
+ "priceChange24hPercent": "-35.96",
+ "volume24h": "3608186.254881486359402754",
+ "communityRecognized": false,
+ "key": "evm--4663:0x812486eaea648819853f8e372dc9f1516c7868bd",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xd4dc6b48ad73ec51e71d9b8f65568f88609b92c1",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xd4dc6b48ad73ec51e71d9b8f65568f88609b92c1-1787659267512.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xd4dc6b48ad73ec51e71d9b8f65568f88609b92c1-1787659267512.png"
+ ],
+ "name": "Sherwood",
+ "symbol": "SHERWOOD",
+ "marketCap": "533070.208604035212901932",
+ "price": "0.00053307020860403521",
+ "priceChange24hPercent": "33.95",
+ "volume24h": "222962.446582517797217027",
+ "communityRecognized": false,
+ "key": "evm--4663:0xd4dc6b48ad73ec51e71d9b8f65568f88609b92c1",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x56910d4409f3a0c78c64dd8d0545ff0705389870",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x56910d4409f3a0c78c64dd8d0545ff0705389870-1784842044117.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x56910d4409f3a0c78c64dd8d0545ff0705389870-1784842044117.png"
+ ],
+ "name": "The Index",
+ "symbol": "Index",
+ "marketCap": "38890291.530466797635821549",
+ "price": "0.03966234166783410771",
+ "priceChange24hPercent": "-11.74",
+ "volume24h": "3882840.254654448118407129",
+ "communityRecognized": true,
+ "key": "evm--4663:0x56910d4409f3a0c78c64dd8d0545ff0705389870",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xc2362aff2a2a4cc1f48cf3dab2c4e2605eb94ba3",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xc2362aff2a2a4cc1f48cf3dab2c4e2605eb94ba3-1785758420060.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xc2362aff2a2a4cc1f48cf3dab2c4e2605eb94ba3-1785758420060.png"
+ ],
+ "name": "GameStop",
+ "symbol": "GME",
+ "marketCap": "2880525.050645902892669408",
+ "price": "0.00002880525129724091",
+ "priceChange24hPercent": "-24.59",
+ "volume24h": "919741.405464808611520823",
+ "communityRecognized": false,
+ "key": "evm--4663:0xc2362aff2a2a4cc1f48cf3dab2c4e2605eb94ba3",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x1ec871553be07dc68ec1661c32eca7e2e46e1e18",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/ee7408e5fd186d0c6d70812ea983d43036994104aca07d6d3074523eaa5b18a2",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/ee7408e5fd186d0c6d70812ea983d43036994104aca07d6d3074523eaa5b18a2"
+ ],
+ "name": "STONKS",
+ "symbol": "STONKS",
+ "marketCap": "229307.473859529567886593",
+ "price": "0.00022930747385952957",
+ "priceChange24hPercent": "49.3",
+ "volume24h": "208750.488720241554985739",
+ "communityRecognized": false,
+ "key": "evm--4663:0x1ec871553be07dc68ec1661c32eca7e2e46e1e18",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x384c3f978950a98523529a205163bf63a69e8dd5",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/7a4fae357f9d4613d7f8b5f8bd76e29c37fb44afd8ff4f0da78fe40be38d3dd3",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/7a4fae357f9d4613d7f8b5f8bd76e29c37fb44afd8ff4f0da78fe40be38d3dd3"
+ ],
+ "name": "Kerf",
+ "symbol": "KERF",
+ "marketCap": "658779.614430525705793727",
+ "price": "0.00065877961443052571",
+ "priceChange24hPercent": "15257.75",
+ "volume24h": "1518597.398192862885950943",
+ "communityRecognized": false,
+ "key": "evm--4663:0x384c3f978950a98523529a205163bf63a69e8dd5",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xfe7e19cbce2f896c6c528bc355baf5a768291e18",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xfe7e19cbce2f896c6c528bc355baf5a768291e18-1786017952373.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xfe7e19cbce2f896c6c528bc355baf5a768291e18-1786017952373.png"
+ ],
+ "name": "SPACEHOOD",
+ "symbol": "SPACEHOOD",
+ "marketCap": "8340762.948113254927286612",
+ "price": "0.00834076294811325493",
+ "priceChange24hPercent": "-8.51",
+ "volume24h": "1380642.209231663055571251",
+ "communityRecognized": false,
+ "key": "evm--4663:0xfe7e19cbce2f896c6c528bc355baf5a768291e18",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xa01bc586cd5f4f253bfab4e44400c52dbc18bc50",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/c365b2142e4c766209febdcd7d1678e3519a6be41b491b73bf8cddfc0cd3ab98",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/c365b2142e4c766209febdcd7d1678e3519a6be41b491b73bf8cddfc0cd3ab98"
+ ],
+ "name": "Voxelithic Protocol",
+ "symbol": "VOXEL",
+ "marketCap": "2202165.275282226596140064",
+ "price": "0.0022021652752822266",
+ "priceChange24hPercent": "10.59",
+ "volume24h": "1567989.729722611398760266",
+ "communityRecognized": false,
+ "key": "evm--4663:0xa01bc586cd5f4f253bfab4e44400c52dbc18bc50",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x45242320dbb855eea8fd36804c6487e10e97fcf9",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x45242320dbb855eea8fd36804c6487e10e97fcf9-1784778612504.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x45242320dbb855eea8fd36804c6487e10e97fcf9-1784778612504.png"
+ ],
+ "name": "TENDIES",
+ "symbol": "TENDIES",
+ "marketCap": "15386858.066819138866086556",
+ "price": "0.01608684904807764071",
+ "priceChange24hPercent": "-6.26",
+ "volume24h": "1795986.621200368815667277",
+ "communityRecognized": false,
+ "key": "evm--4663:0x45242320dbb855eea8fd36804c6487e10e97fcf9",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xc9a981fee1f9dec688bb123ccdecc63d0debfc4e",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xc9a981fee1f9dec688bb123ccdecc63d0debfc4e-1786795236632.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xc9a981fee1f9dec688bb123ccdecc63d0debfc4e-1786795236632.png"
+ ],
+ "name": "SPDR Gold Trust • Robinhood Token",
+ "symbol": "GLD",
+ "marketCap": "6354008.701438651155577243",
+ "price": "408.71743444665377406854",
+ "priceChange24hPercent": "-0.39",
+ "volume24h": "13133869.555799227790832044",
+ "communityRecognized": false,
+ "key": "evm--4663:0xc9a981fee1f9dec688bb123ccdecc63d0debfc4e",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x6635c082c14b4206751600d96fe50428815c9fa9",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x6635c082c14b4206751600d96fe50428815c9fa9-1788698209882.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x6635c082c14b4206751600d96fe50428815c9fa9-1788698209882.png"
+ ],
+ "name": "Wood Liquidity",
+ "symbol": "WOOD",
+ "marketCap": "1175297.579973706491685363",
+ "price": "0.00117529757997370649",
+ "priceChange24hPercent": "163.19",
+ "volume24h": "895758.07177326854857835",
+ "communityRecognized": false,
+ "key": "evm--4663:0x6635c082c14b4206751600d96fe50428815c9fa9",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x319c5b3f8e46b70cb00769bc8020b4c08ddbc182",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/60e8ba9e65543c91a6d374d55be40e3da9889a57723bf9ee7899d799d9b77bad",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/60e8ba9e65543c91a6d374d55be40e3da9889a57723bf9ee7899d799d9b77bad"
+ ],
+ "name": "Scribble Network",
+ "symbol": "SCRIB",
+ "marketCap": "219268.473129512491825661",
+ "price": "0.00021926847312951249",
+ "priceChange24hPercent": "4955.48",
+ "volume24h": "5663189.872754040930705865",
+ "communityRecognized": false,
+ "key": "evm--4663:0x319c5b3f8e46b70cb00769bc8020b4c08ddbc182",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xc7db9a7034d061feca50f0a25636bcc83ca717d9",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/10b09533a117502080d981e8e84fcf6e2ab3e7ff05c60c0d04f259f8e0a07585",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/10b09533a117502080d981e8e84fcf6e2ab3e7ff05c60c0d04f259f8e0a07585"
+ ],
+ "name": "Fab",
+ "symbol": "FAB",
+ "marketCap": "836966.571803669544660081",
+ "price": "0.00085387138809895556",
+ "priceChange24hPercent": "3852.96",
+ "volume24h": "3002924.980689038147612283",
+ "communityRecognized": false,
+ "key": "evm--4663:0xc7db9a7034d061feca50f0a25636bcc83ca717d9",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xee5576fa1bcaa380e591d01245f406f3f384eb01",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xee5576fa1bcaa380e591d01245f406f3f384eb01-1787832045009.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xee5576fa1bcaa380e591d01245f406f3f384eb01-1787832045009.png"
+ ],
+ "name": "Down to Finance",
+ "symbol": "DTF",
+ "marketCap": "8964448.183263811248727251",
+ "price": "0.00896444822483335211",
+ "priceChange24hPercent": "-16.96",
+ "volume24h": "2082334.138465997915784192",
+ "communityRecognized": false,
+ "key": "evm--4663:0xee5576fa1bcaa380e591d01245f406f3f384eb01",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x875bd2fdb280740bf035026057d31c7c33c916ec",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/1137c1b4114dc42826b2abd70a9807f7087e86a0fe0367dd5442e32717bb2542",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/1137c1b4114dc42826b2abd70a9807f7087e86a0fe0367dd5442e32717bb2542"
+ ],
+ "name": "BlendPad",
+ "symbol": "BLEND",
+ "marketCap": "25903.62740039636626527",
+ "price": "0.00002590362740039637",
+ "priceChange24hPercent": "502.53",
+ "volume24h": "3444373.333736733113257344",
+ "communityRecognized": false,
+ "key": "evm--4663:0x875bd2fdb280740bf035026057d31c7c33c916ec",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x71d389c48e29996bd8e20778f87fb915c1ffdcc2",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x71d389c48e29996bd8e20778f87fb915c1ffdcc2-1788697020328.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x71d389c48e29996bd8e20778f87fb915c1ffdcc2-1788697020328.png"
+ ],
+ "name": "Prism Finance",
+ "symbol": "PRISM",
+ "marketCap": "794094.061137476214496407",
+ "price": "0.00079692464931466759",
+ "priceChange24hPercent": "90.4",
+ "volume24h": "4147222.549421664432977738",
+ "communityRecognized": false,
+ "key": "evm--4663:0x71d389c48e29996bd8e20778f87fb915c1ffdcc2",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x8005d266423c7ea827372c9c864491e5786600ea",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x8005d266423c7ea827372c9c864491e5786600ea-1784793642266.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x8005d266423c7ea827372c9c864491e5786600ea-1784793642266.png"
+ ],
+ "name": "Eli Lilly • Robinhood Token",
+ "symbol": "LLY",
+ "marketCap": "3656579.752548914628009893",
+ "price": "1147.72362638036987585255",
+ "priceChange24hPercent": "0",
+ "volume24h": "5687139.743953293159041768",
+ "communityRecognized": false,
+ "key": "evm--4663:0x8005d266423c7ea827372c9c864491e5786600ea",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xc60ba256b44334a0cd2c7242e98b88f031abb006",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xc60ba256b44334a0cd2c7242e98b88f031abb006-1788523227588.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xc60ba256b44334a0cd2c7242e98b88f031abb006-1788523227588.png"
+ ],
+ "name": "Programmable",
+ "symbol": "V4",
+ "marketCap": "2150844.883321342892826478",
+ "price": "0.00215084488332134289",
+ "priceChange24hPercent": "45.71",
+ "volume24h": "757117.554729259601680607",
+ "communityRecognized": false,
+ "key": "evm--4663:0xc60ba256b44334a0cd2c7242e98b88f031abb006",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x58ffe4a942d3885baa22d7520691f611ef09e7aa",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x58ffe4a942d3885baa22d7520691f611ef09e7aa-1784793636318.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x58ffe4a942d3885baa22d7520691f611ef09e7aa-1784793636318.png"
+ ],
+ "name": "****************************************************",
+ "symbol": "TSM",
+ "marketCap": "1493062.937174059172916264",
+ "price": "432.78231534519635587615",
+ "priceChange24hPercent": "0.08",
+ "volume24h": "1660334.612905817073333261",
+ "communityRecognized": false,
+ "key": "evm--4663:0x58ffe4a942d3885baa22d7520691f611ef09e7aa",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x7581ec9347669477711d146e0e43bddda474f415",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/822527b93e27c6a55b37012b304113c00dea3b1f88cac9be3ff46cf9f514342c",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/822527b93e27c6a55b37012b304113c00dea3b1f88cac9be3ff46cf9f514342c"
+ ],
+ "name": "Maxi",
+ "symbol": "MAXI",
+ "marketCap": "1838698.208565334132695159",
+ "price": "0.00183869820856533413",
+ "priceChange24hPercent": "6887.75",
+ "volume24h": "1309003.554351184436576324",
+ "communityRecognized": false,
+ "key": "evm--4663:0x7581ec9347669477711d146e0e43bddda474f415",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xf05bcf94c8c020e43de8927b491c6be8b96777e3",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/a1d4ea5354451247f86e166f929ce5bb3ff847ac4adb19417d85ba0180bbda5e",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/a1d4ea5354451247f86e166f929ce5bb3ff847ac4adb19417d85ba0180bbda5e"
+ ],
+ "name": "QUOTRON STRATEGY",
+ "symbol": "QSTRAT",
+ "marketCap": "666696.723084471405430027",
+ "price": "0.00067072104938075594",
+ "priceChange24hPercent": "-36.59",
+ "volume24h": "1402720.123024376116986329",
+ "communityRecognized": false,
+ "key": "evm--4663:0xf05bcf94c8c020e43de8927b491c6be8b96777e3",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xa3a273b2b389e718c0c490a4baee9347cd4a007b",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xa3a273b2b389e718c0c490a4baee9347cd4a007b-1788698209882.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xa3a273b2b389e718c0c490a4baee9347cd4a007b-1788698209882.png"
+ ],
+ "name": "TAMPONS",
+ "symbol": "TAMPONS",
+ "marketCap": "291576.350752405479894338",
+ "price": "0.00029157635075240548",
+ "priceChange24hPercent": "24.9",
+ "volume24h": "1451217.642954507984489867",
+ "communityRecognized": false,
+ "key": "evm--4663:0xa3a273b2b389e718c0c490a4baee9347cd4a007b",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xd7321801caae694090694ff55a9323139f043b88",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xd7321801caae694090694ff55a9323139f043b88-1784779777690.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xd7321801caae694090694ff55a9323139f043b88-1784779777690.png"
+ ],
+ "name": "The Juggernaut",
+ "symbol": "JUGGERNAUT",
+ "marketCap": "2962921.022486917772966586",
+ "price": "0.00316019228885414579",
+ "priceChange24hPercent": "-19.37",
+ "volume24h": "623741.693028294671944628",
+ "communityRecognized": false,
+ "key": "evm--4663:0xd7321801caae694090694ff55a9323139f043b88",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xee263e06703e63a2d6567002773a5c5fe0e5a0d5",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/91f392c1d47def1fc6928c87a9ba8b40259e5003f5851aa9fbeb135b0248692a",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/91f392c1d47def1fc6928c87a9ba8b40259e5003f5851aa9fbeb135b0248692a"
+ ],
+ "name": "Stratton Capital",
+ "symbol": "STRATCAP",
+ "marketCap": "2446686.062671250207421194",
+ "price": "11.0641295472344482784",
+ "priceChange24hPercent": "121.36",
+ "volume24h": "6185806.34847304233793155",
+ "communityRecognized": false,
+ "key": "evm--4663:0xee263e06703e63a2d6567002773a5c5fe0e5a0d5",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x067d5708e1ae03393368b8d5e2f0b02e75a36ba3",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x067d5708e1ae03393368b8d5e2f0b02e75a36ba3-1785844955438.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x067d5708e1ae03393368b8d5e2f0b02e75a36ba3-1785844955438.png"
+ ],
+ "name": "Lightoor.Fun",
+ "symbol": "Lightoor",
+ "marketCap": "176403.341588914009362488",
+ "price": "0.00000176403341588914",
+ "priceChange24hPercent": "448.59",
+ "volume24h": "1194115.915747252927234137",
+ "communityRecognized": false,
+ "key": "evm--4663:0x067d5708e1ae03393368b8d5e2f0b02e75a36ba3",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x385b36ff682ab4c76e7c37a66b96aabc466471d5",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x385b36ff682ab4c76e7c37a66b96aabc466471d5-1786017815496.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x385b36ff682ab4c76e7c37a66b96aabc466471d5-1786017815496.png"
+ ],
+ "name": "pools.trade",
+ "symbol": "POOLS",
+ "marketCap": "1556630.67532955837106892",
+ "price": "0.0015566308898872704",
+ "priceChange24hPercent": "-22.44",
+ "volume24h": "889850.13087633400855696",
+ "communityRecognized": false,
+ "key": "evm--4663:0x385b36ff682ab4c76e7c37a66b96aabc466471d5",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x05a3d1cd21d0c88145e82600e62e7e496e0f222b",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x05a3d1cd21d0c88145e82600e62e7e496e0f222b-1787313713111.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x05a3d1cd21d0c88145e82600e62e7e496e0f222b-1787313713111.png"
+ ],
+ "name": "AMC Entertainment • Robinhood Token",
+ "symbol": "AMC",
+ "marketCap": "7487887.980742776489741124",
+ "price": "2.63483856620033023001",
+ "priceChange24hPercent": "2.05",
+ "volume24h": "24284390.879904787467684358",
+ "communityRecognized": false,
+ "key": "evm--4663:0x05a3d1cd21d0c88145e82600e62e7e496e0f222b",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xf2e122a481b440c40eee7a7ca6d5eef65a591b76",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xf2e122a481b440c40eee7a7ca6d5eef65a591b76-1788697706307.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xf2e122a481b440c40eee7a7ca6d5eef65a591b76-1788697706307.png"
+ ],
+ "name": "Quantum Cats",
+ "symbol": "QC",
+ "marketCap": "1168948.501236980233192217",
+ "price": "0.00131162658364001449",
+ "priceChange24hPercent": "187.68",
+ "volume24h": "1339991.272153330440401164",
+ "communityRecognized": false,
+ "key": "evm--4663:0xf2e122a481b440c40eee7a7ca6d5eef65a591b76",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x829b217ad539ccc53b18e53c63873333650e60f9",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/cd97ef7a1d3188b2454c4613e6d5fbf7d21f387cd59055aab3fe022119d55ca2",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/cd97ef7a1d3188b2454c4613e6d5fbf7d21f387cd59055aab3fe022119d55ca2"
+ ],
+ "name": "cyberbeer",
+ "symbol": "cyberbeer",
+ "marketCap": "193829.036784379513561768",
+ "price": "0.00019382903678437951",
+ "priceChange24hPercent": "4043.42",
+ "volume24h": "8747134.564810628784585536",
+ "communityRecognized": false,
+ "key": "evm--4663:0x829b217ad539ccc53b18e53c63873333650e60f9",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xb934cabf87781f7eb13265de4cb2ce090d00c4e3",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/9a05baf0cde6952874e0140285139f92d88e498281cb5c33415e9d9ec0ad1115",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/9a05baf0cde6952874e0140285139f92d88e498281cb5c33415e9d9ec0ad1115"
+ ],
+ "name": "SURPLUS",
+ "symbol": "SURPLUS",
+ "marketCap": "409490.737233662315491123",
+ "price": "0.00040950708955983624",
+ "priceChange24hPercent": "-14.62",
+ "volume24h": "1901602.845422783084270443",
+ "communityRecognized": false,
+ "key": "evm--4663:0xb934cabf87781f7eb13265de4cb2ce090d00c4e3",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xf16d26703d6d9b2b9bf10b6d5af6594598ec1a68",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/fc7cc3617cd3a98242ad2eed63135659025d934f072e6c065f5000ccd8c601a2",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/fc7cc3617cd3a98242ad2eed63135659025d934f072e6c065f5000ccd8c601a2"
+ ],
+ "name": "StockHooks",
+ "symbol": "STOCKHOOKS",
+ "marketCap": "507455.332637122819860818",
+ "price": "0.00050745533263712282",
+ "priceChange24hPercent": "98.91",
+ "volume24h": "931694.03913717758566582",
+ "communityRecognized": false,
+ "key": "evm--4663:0xf16d26703d6d9b2b9bf10b6d5af6594598ec1a68",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x8e859dbdfbfd2df6a99870e2871eaa58e8784e05",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x8e859dbdfbfd2df6a99870e2871eaa58e8784e05-1788610147869.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x8e859dbdfbfd2df6a99870e2871eaa58e8784e05-1788610147869.png"
+ ],
+ "name": "Nest",
+ "symbol": "NEST",
+ "marketCap": "190040.435952781078801715",
+ "price": "0.00019155893691496779",
+ "priceChange24hPercent": "-73.45",
+ "volume24h": "531803.000297031448881566",
+ "communityRecognized": false,
+ "key": "evm--4663:0x8e859dbdfbfd2df6a99870e2871eaa58e8784e05",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xfe2f0fb0c00d19786a8abf98d4b1f1ac8763b167",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xfe2f0fb0c00d19786a8abf98d4b1f1ac8763b167-1788350974556.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xfe2f0fb0c00d19786a8abf98d4b1f1ac8763b167-1788350974556.png"
+ ],
+ "name": "OrdoFi",
+ "symbol": "ORDO",
+ "marketCap": "957068.714120997363467696",
+ "price": "0.00114104348297268439",
+ "priceChange24hPercent": "-45.74",
+ "volume24h": "437406.51280425979070913",
+ "communityRecognized": false,
+ "key": "evm--4663:0xfe2f0fb0c00d19786a8abf98d4b1f1ac8763b167",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x51250b135174ca09450ec01c4aff73cf69dbb590",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x51250b135174ca09450ec01c4aff73cf69dbb590-1788177871008.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x51250b135174ca09450ec01c4aff73cf69dbb590-1788177871008.png"
+ ],
+ "name": "NovaAI",
+ "symbol": "NOVAAI",
+ "marketCap": "205177250.881058881320231645",
+ "price": "0.20517725088105888132",
+ "priceChange24hPercent": "48.14",
+ "volume24h": "1717220.24027482687030944",
+ "communityRecognized": false,
+ "key": "evm--4663:0x51250b135174ca09450ec01c4aff73cf69dbb590",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xc6911796042b15d7fa4f6cde69e245ddcd3d9c31",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xc6911796042b15d7fa4f6cde69e245ddcd3d9c31-1784781386422.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xc6911796042b15d7fa4f6cde69e245ddcd3d9c31-1784781386422.png"
+ ],
+ "name": "Virtuals Protocol",
+ "symbol": "VIRTUAL",
+ "marketCap": "5995496.587507049618842862",
+ "price": "0.73197010913559321643",
+ "priceChange24hPercent": "2.04",
+ "volume24h": "3442199.326752585428500022",
+ "communityRecognized": true,
+ "key": "evm--4663:0xc6911796042b15d7fa4f6cde69e245ddcd3d9c31",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x218d0dc56476b05f131bd6cc82b80c7b052fa9b1",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x218d0dc56476b05f131bd6cc82b80c7b052fa9b1-1788697832784.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x218d0dc56476b05f131bd6cc82b80c7b052fa9b1-1788697832784.png"
+ ],
+ "name": "Openbell",
+ "symbol": "BELL",
+ "marketCap": "191750.411215820020418365",
+ "price": "0.00019175041121582002",
+ "priceChange24hPercent": "-44.91",
+ "volume24h": "828285.883307106656046207",
+ "communityRecognized": false,
+ "key": "evm--4663:0x218d0dc56476b05f131bd6cc82b80c7b052fa9b1",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x8ea0eb3505f5b3bd2bbea0febae0ce850cc73ecc",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x8ea0eb3505f5b3bd2bbea0febae0ce850cc73ecc-1788523223085.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x8ea0eb3505f5b3bd2bbea0febae0ce850cc73ecc-1788523223085.png"
+ ],
+ "name": "OuroLayer",
+ "symbol": "OURO",
+ "marketCap": "4926817.198886655333428856",
+ "price": "0.00492681719888665533",
+ "priceChange24hPercent": "89.43",
+ "volume24h": "3352185.736400935665362198",
+ "communityRecognized": false,
+ "key": "evm--4663:0x8ea0eb3505f5b3bd2bbea0febae0ce850cc73ecc",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x24dd1df14fda7d40ebf2d66a330951b8625d8f18",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x24dd1df14fda7d40ebf2d66a330951b8625d8f18-1788178600442.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x24dd1df14fda7d40ebf2d66a330951b8625d8f18-1788178600442.png"
+ ],
+ "name": "Hedgehog",
+ "symbol": "Hedge",
+ "marketCap": "91789.941594233403746303",
+ "price": "0.0000917899415942334",
+ "priceChange24hPercent": "1091.88",
+ "volume24h": "351969.863248",
+ "communityRecognized": false,
+ "key": "evm--4663:0x24dd1df14fda7d40ebf2d66a330951b8625d8f18",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xb0992820e760d836549ba69bc7598b4af75dee03",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xb0992820e760d836549ba69bc7598b4af75dee03-1784780805755.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xb0992820e760d836549ba69bc7598b4af75dee03-1784780805755.png"
+ ],
+ "name": "Oracle • Robinhood Token",
+ "symbol": "ORCL",
+ "marketCap": "601850.18497312438121263",
+ "price": "161.97745369038217008876",
+ "priceChange24hPercent": "0.19",
+ "volume24h": "7263.78502621010760324",
+ "communityRecognized": false,
+ "key": "evm--4663:0xb0992820e760d836549ba69bc7598b4af75dee03",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xd18528b39da6464b3662c331a52181ecb15b1e18",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xd18528b39da6464b3662c331a52181ecb15b1e18-1788004841997.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xd18528b39da6464b3662c331a52181ecb15b1e18-1788004841997.png"
+ ],
+ "name": "SAYLORMOON",
+ "symbol": "SAYLORMOON",
+ "marketCap": "2608877.363720267405226701",
+ "price": "0.00260887736372026741",
+ "priceChange24hPercent": "-22.22",
+ "volume24h": "1116047.503440146240335485",
+ "communityRecognized": false,
+ "key": "evm--4663:0xd18528b39da6464b3662c331a52181ecb15b1e18",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xac77646bcff9d52e99800534192e0290933f4094",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xac77646bcff9d52e99800534192e0290933f4094-1787572842778.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xac77646bcff9d52e99800534192e0290933f4094-1787572842778.png"
+ ],
+ "name": "Martians",
+ "symbol": "MARTIANS",
+ "marketCap": "413010.743800480512825997",
+ "price": "0.00041301074380704901",
+ "priceChange24hPercent": "-16.75",
+ "volume24h": "102975.38063101676551478",
+ "communityRecognized": false,
+ "key": "evm--4663:0xac77646bcff9d52e99800534192e0290933f4094",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x48e39e56acdba37b09020c0b734a613c9a2f100a",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x48e39e56acdba37b09020c0b734a613c9a2f100a-1787054422497.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x48e39e56acdba37b09020c0b734a613c9a2f100a-1787054422497.png"
+ ],
+ "name": "Blackberry • Robinhood Token",
+ "symbol": "BB",
+ "marketCap": "642801.143627416799148932",
+ "price": "7.76991187735766064532",
+ "priceChange24hPercent": "1.01",
+ "volume24h": "253773.866147556864614934",
+ "communityRecognized": false,
+ "key": "evm--4663:0x48e39e56acdba37b09020c0b734a613c9a2f100a",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x6245e67affa44a23077f0ea7f981a8dc743a0c47",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x6245e67affa44a23077f0ea7f981a8dc743a0c47-1785931207872.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x6245e67affa44a23077f0ea7f981a8dc743a0c47-1785931207872.png"
+ ],
+ "name": "frong",
+ "symbol": "FRONG",
+ "marketCap": "5456493.65293324383718581",
+ "price": "0.00545649365293324384",
+ "priceChange24hPercent": "-8.9",
+ "volume24h": "1696380.50656786573547036",
+ "communityRecognized": false,
+ "key": "evm--4663:0x6245e67affa44a23077f0ea7f981a8dc743a0c47",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xfeaf46c2661002dd1402221b08468b276a8e0863",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/bb543c0dd7a9dfb17e198d36901a380450b243bb770199f59d258d8a1dfbad8b",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/bb543c0dd7a9dfb17e198d36901a380450b243bb770199f59d258d8a1dfbad8b"
+ ],
+ "name": "PENNYSTOCKS",
+ "symbol": "PENNYSTOCKS",
+ "marketCap": "315956.926806816185780966",
+ "price": "0.00031595692680681619",
+ "priceChange24hPercent": "8783.36",
+ "volume24h": "612860.889193080829980406",
+ "communityRecognized": false,
+ "key": "evm--4663:0xfeaf46c2661002dd1402221b08468b276a8e0863",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x9936403a9cc72cf306063e3496ea387428a3aecd",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x9936403a9cc72cf306063e3496ea387428a3aecd-1788264039086.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x9936403a9cc72cf306063e3496ea387428a3aecd-1788264039086.png"
+ ],
+ "name": "ABSOLUTE CINEMA",
+ "symbol": "CINEMA",
+ "marketCap": "614255.405654940701529691",
+ "price": "0.0006142554057120901",
+ "priceChange24hPercent": "-32.73",
+ "volume24h": "468466.425943825304644968",
+ "communityRecognized": false,
+ "key": "evm--4663:0x9936403a9cc72cf306063e3496ea387428a3aecd",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xf24f8f6b08fe87cf062e833a732ad7f636064bc8",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/2d9b8bb9c001a2d7cbc46af5e0d4da0e4b52f57551759110a64378fd4b1af38e",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/2d9b8bb9c001a2d7cbc46af5e0d4da0e4b52f57551759110a64378fd4b1af38e"
+ ],
+ "name": "Premium",
+ "symbol": "PRM",
+ "marketCap": "3163130.749263609894095864",
+ "price": "0.00316313074926360989",
+ "priceChange24hPercent": "65.48",
+ "volume24h": "1568522.261159672049446343",
+ "communityRecognized": false,
+ "key": "evm--4663:0xf24f8f6b08fe87cf062e833a732ad7f636064bc8",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x791e750fa8b2237288a6fe6c47ea81c50093449a",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/7b2c46154b9b72ada1a3e8100998205ed9870675fe74930d04725c0087783dc9",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/7b2c46154b9b72ada1a3e8100998205ed9870675fe74930d04725c0087783dc9"
+ ],
+ "name": "Calico Cat",
+ "symbol": "CALICO",
+ "marketCap": "136792.73839230053464427",
+ "price": "0.00013679273839230053",
+ "priceChange24hPercent": "2768.51",
+ "volume24h": "2117398.614722507411094067",
+ "communityRecognized": false,
+ "key": "evm--4663:0x791e750fa8b2237288a6fe6c47ea81c50093449a",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x5d6ef090a1461b11c9427ac319260122d1c61e18",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x5d6ef090a1461b11c9427ac319260122d1c61e18-1788353880496.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x5d6ef090a1461b11c9427ac319260122d1c61e18-1788353880496.png"
+ ],
+ "name": "iCoin",
+ "symbol": "ICOIN",
+ "marketCap": "6794960.644377991165801061",
+ "price": "0.00682768607984745341",
+ "priceChange24hPercent": "24.88",
+ "volume24h": "2599801.989203729299101736",
+ "communityRecognized": false,
+ "key": "evm--4663:0x5d6ef090a1461b11c9427ac319260122d1c61e18",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x75b19a029d6243a847393f6b8874c8d4b69e5ee4",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/5976004e5c829fd019475968b9c62543737aafbf43e7557006a385e5619e34a2",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/5976004e5c829fd019475968b9c62543737aafbf43e7557006a385e5619e34a2"
+ ],
+ "name": "VitaNova",
+ "symbol": "VITA",
+ "marketCap": "2201448.901025334511194173",
+ "price": "0.00220144890102533451",
+ "priceChange24hPercent": "-66.07",
+ "volume24h": "1584615.70845712504497188",
+ "communityRecognized": false,
+ "key": "evm--4663:0x75b19a029d6243a847393f6b8874c8d4b69e5ee4",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xb9972ca7188e511174947e3936a5315ac7073277",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xb9972ca7188e511174947e3936a5315ac7073277-1787400211008.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xb9972ca7188e511174947e3936a5315ac7073277-1787400211008.png"
+ ],
+ "name": "Prologue",
+ "symbol": "PROLOGUE",
+ "marketCap": "10788562.212828897338133307",
+ "price": "0.01078856221282889734",
+ "priceChange24hPercent": "41.64",
+ "volume24h": "3337803.343309082641755744",
+ "communityRecognized": true,
+ "key": "evm--4663:0xb9972ca7188e511174947e3936a5315ac7073277",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x1a7eaec7d9e7e5123416b7b29ae8bc9b57c00922",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/bb8ec2c78167c1a4d85a02b0f3c174ba8b5463584504e1802dc2d8bea04d425d",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/bb8ec2c78167c1a4d85a02b0f3c174ba8b5463584504e1802dc2d8bea04d425d"
+ ],
+ "name": "Lucky the cat",
+ "symbol": "LUCKY",
+ "marketCap": "805332.57742409533209769",
+ "price": "0.00080533257742409533",
+ "priceChange24hPercent": "15348.81",
+ "volume24h": "2459764.646626775419927531",
+ "communityRecognized": false,
+ "key": "evm--4663:0x1a7eaec7d9e7e5123416b7b29ae8bc9b57c00922",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x4ad6f2f349b8031dc09145f2d2c4bbd1852a1e18",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/7af8810a95792a9a810ec71378b38f204ded3e12a9b682e83494494a865d13fc",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/7af8810a95792a9a810ec71378b38f204ded3e12a9b682e83494494a865d13fc"
+ ],
+ "name": "CLOUD",
+ "symbol": "CLOUD",
+ "marketCap": "99323.277045682613338444",
+ "price": "0.00009932327704568261",
+ "priceChange24hPercent": "181.44",
+ "volume24h": "451614.37523754931417691",
+ "communityRecognized": false,
+ "key": "evm--4663:0x4ad6f2f349b8031dc09145f2d2c4bbd1852a1e18",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xe766b582fb90511c923bb28f1c9574170bcb2ac4",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xe766b582fb90511c923bb28f1c9574170bcb2ac4-1788353281631.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xe766b582fb90511c923bb28f1c9574170bcb2ac4-1788353281631.png"
+ ],
+ "name": "Retail",
+ "symbol": "RETAIL",
+ "marketCap": "9872.815346999271311759",
+ "price": "0.00000987284775615957",
+ "priceChange24hPercent": "6.98",
+ "volume24h": "2691.984250643873925235",
+ "communityRecognized": false,
+ "key": "evm--4663:0xe766b582fb90511c923bb28f1c9574170bcb2ac4",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x32ac8c1d7672667d5ebdea22935f7b06fc8d496f",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x32ac8c1d7672667d5ebdea22935f7b06fc8d496f-1788264019087.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x32ac8c1d7672667d5ebdea22935f7b06fc8d496f-1788264019087.png"
+ ],
+ "name": "HOOD",
+ "symbol": "HOOD",
+ "marketCap": "1325766.900758184127268845",
+ "price": "123.39448593926314245221",
+ "priceChange24hPercent": "-3",
+ "volume24h": "5216518.769511768149962521",
+ "communityRecognized": false,
+ "key": "evm--4663:0x32ac8c1d7672667d5ebdea22935f7b06fc8d496f",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ }
+ ],
+ "trending|evm--8453|5m|all": [
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0xc6405d7a226e1c18e559be2f335f74c01ad07bf5",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xc6405d7a226e1c18e559be2f335f74c01ad07bf5-1788700788773.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xc6405d7a226e1c18e559be2f335f74c01ad07bf5-1788700788773.png"
+ ],
+ "name": "Stockify",
+ "symbol": "STFY",
+ "marketCap": "3983052.862173553761505087",
+ "price": "0.00398305286217355376",
+ "priceChange24hPercent": "1.43",
+ "volume24h": "4643.2816464418344",
+ "communityRecognized": false,
+ "key": "evm--8453:0xc6405d7a226e1c18e559be2f335f74c01ad07bf5",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x0f61edbfe6cd86024c0f210c0695b08df55fdfc9",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x0f61edbfe6cd86024c0f210c0695b08df55fdfc9-1787230901831.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x0f61edbfe6cd86024c0f210c0695b08df55fdfc9-1787230901831.png"
+ ],
+ "name": "BaseStonk",
+ "symbol": "BSTONK",
+ "marketCap": "4007938.924999195295310463",
+ "price": "0.00449159458683672726",
+ "priceChange24hPercent": "-3.17",
+ "volume24h": "2288.27403005077294194",
+ "communityRecognized": false,
+ "key": "evm--8453:0x0f61edbfe6cd86024c0f210c0695b08df55fdfc9",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0xacfe6019ed1a7dc6f7b508c02d1b04ec88cc21bf",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xacfe6019ed1a7dc6f7b508c02d1b04ec88cc21bf-1757667200619.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xacfe6019ed1a7dc6f7b508c02d1b04ec88cc21bf-1757667200619.png"
+ ],
+ "name": "Venice Token",
+ "symbol": "VVV",
+ "marketCap": "856673436.750078298169062052",
+ "price": "17.81036746540506978652",
+ "priceChange24hPercent": "-0.11",
+ "volume24h": "3955.9405150056039403",
+ "communityRecognized": true,
+ "key": "evm--8453:0xacfe6019ed1a7dc6f7b508c02d1b04ec88cc21bf",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x0b3e328455c4059eeb9e3f84b5543f74e24e7e1b",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x0b3e328455c4059eeb9e3f84b5543f74e24e7e1b.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x0b3e328455c4059eeb9e3f84b5543f74e24e7e1b.png"
+ ],
+ "name": "Virtual Protocol",
+ "symbol": "VIRTUAL",
+ "marketCap": "362405803.617855007639245042",
+ "price": "0.72917882068234822303",
+ "priceChange24hPercent": "-0.02",
+ "volume24h": "42251.931353265897146855",
+ "communityRecognized": true,
+ "key": "evm--8453:0x0b3e328455c4059eeb9e3f84b5543f74e24e7e1b",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x940181a94a35a4569e4529a3cdfb74e38fd98631",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x940181a94a35a4569e4529a3cdfb74e38fd98631.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x940181a94a35a4569e4529a3cdfb74e38fd98631.png"
+ ],
+ "name": "Aerodrome",
+ "symbol": "AERO",
+ "marketCap": "658141636.853802284056737422",
+ "price": "0.66687044093601599083",
+ "priceChange24hPercent": "0.11",
+ "volume24h": "65198.84948634003725951",
+ "communityRecognized": true,
+ "key": "evm--8453:0x940181a94a35a4569e4529a3cdfb74e38fd98631",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x00f3c42833c3170159af4e92dbb451fb3f708917",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x00f3c42833c3170159af4e92dbb451fb3f708917-1757667396668.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x00f3c42833c3170159af4e92dbb451fb3f708917-1757667396668.png"
+ ],
+ "name": "ICP",
+ "symbol": "ICP",
+ "marketCap": "804715.386932750684455888",
+ "price": "3.03139152906059961695",
+ "priceChange24hPercent": "0.65",
+ "volume24h": "29151.78156013037548115",
+ "communityRecognized": true,
+ "key": "evm--8453:0x00f3c42833c3170159af4e92dbb451fb3f708917",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x5ab3d4c385b400f3abb49e80de2faf6a88a7b691",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x5ab3d4c385b400f3abb49e80de2faf6a88a7b691-1735678408749.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x5ab3d4c385b400f3abb49e80de2faf6a88a7b691-1735678408749.png"
+ ],
+ "name": "FLock.io",
+ "symbol": "FLOCK",
+ "marketCap": "7996244.026812894169753812",
+ "price": "0.06207619062319993757",
+ "priceChange24hPercent": "0.68",
+ "volume24h": "1636.715812357805813",
+ "communityRecognized": true,
+ "key": "evm--8453:0x5ab3d4c385b400f3abb49e80de2faf6a88a7b691",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0xcb585250f852c6c6bf90434ab21a00f02833a4af",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xcb585250f852c6c6bf90434ab21a00f02833a4af-1757667143818.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xcb585250f852c6c6bf90434ab21a00f02833a4af-1757667143818.png"
+ ],
+ "name": "Coinbase Wrapped XRP",
+ "symbol": "cbXRP",
+ "marketCap": "172820953.497926337390032594",
+ "price": "1.39417693988245332438",
+ "priceChange24hPercent": "0",
+ "volume24h": "3683.437751367762073",
+ "communityRecognized": false,
+ "key": "evm--8453:0xcb585250f852c6c6bf90434ab21a00f02833a4af",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x001aad84c21a5cd4d696c56d44866e9703c43f77",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x001aad84c21a5cd4d696c56d44866e9703c43f77-1787144795420.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x001aad84c21a5cd4d696c56d44866e9703c43f77-1787144795420.png"
+ ],
+ "name": "Cluster Protocol",
+ "symbol": "CP",
+ "marketCap": "33358298.59549828667170448",
+ "price": "0.02436527785944727798",
+ "priceChange24hPercent": "-3.64",
+ "volume24h": "71420.421396",
+ "communityRecognized": true,
+ "key": "evm--8453:0x001aad84c21a5cd4d696c56d44866e9703c43f77",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x1217bfe6c773eec6cc4a38b5dc45b92292b6e189",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x1217bfe6c773eec6cc4a38b5dc45b92292b6e189-1757667084889.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x1217bfe6c773eec6cc4a38b5dc45b92292b6e189-1757667084889.png"
+ ],
+ "name": "OpenUSDT",
+ "symbol": "oUSDT",
+ "marketCap": "277857.038749700708089827",
+ "price": "0.99986595586957288418",
+ "priceChange24hPercent": "-0.08",
+ "volume24h": "3005.637814881611182",
+ "communityRecognized": false,
+ "key": "evm--8453:0x1217bfe6c773eec6cc4a38b5dc45b92292b6e189",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0xbaa5cc21fd487b8fcc2f632f3f4e8d37262a0842",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xbaa5cc21fd487b8fcc2f632f3f4e8d37262a0842-1732156200557.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xbaa5cc21fd487b8fcc2f632f3f4e8d37262a0842-1732156200557.png"
+ ],
+ "name": "Morpho Token",
+ "symbol": "MORPHO",
+ "marketCap": "73407846.522022346282977983",
+ "price": "2.44896190806995330815",
+ "priceChange24hPercent": "0.27",
+ "volume24h": "519.7617239128978552",
+ "communityRecognized": true,
+ "key": "evm--8453:0xbaa5cc21fd487b8fcc2f632f3f4e8d37262a0842",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x6985884c4392d348587b19cb9eaaf157f13271cd",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x6985884c4392d348587b19cb9eaaf157f13271cd-1721965709443.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x6985884c4392d348587b19cb9eaaf157f13271cd-1721965709443.png"
+ ],
+ "name": "LayerZero",
+ "symbol": "ZRO",
+ "marketCap": "6920458.000810112126587131",
+ "price": "1.13521434355973562164",
+ "priceChange24hPercent": "-0.31",
+ "volume24h": "1699.478458678005204113",
+ "communityRecognized": true,
+ "key": "evm--8453:0x6985884c4392d348587b19cb9eaaf157f13271cd",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x6b2504a03ca4d43d0d73776f6ad46dab2f2a4cfd",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x6b2504a03ca4d43d0d73776f6ad46dab2f2a4cfd-1732331051328.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x6b2504a03ca4d43d0d73776f6ad46dab2f2a4cfd-1732331051328.png"
+ ],
+ "name": "Unit 00 - Rei",
+ "symbol": "REI",
+ "marketCap": "15211379.164992615033789018",
+ "price": "0.01521137916499261503",
+ "priceChange24hPercent": "-1.31",
+ "volume24h": "3163.016314500320917",
+ "communityRecognized": false,
+ "key": "evm--8453:0x6b2504a03ca4d43d0d73776f6ad46dab2f2a4cfd",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x226a2fa2556c48245e57cd1cba4c6c9e67077dd2",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x226a2fa2556c48245e57cd1cba4c6c9e67077dd2-1757667219038.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x226a2fa2556c48245e57cd1cba4c6c9e67077dd2-1757667219038.png"
+ ],
+ "name": "BIO",
+ "symbol": "BIO",
+ "marketCap": "4967623.345623005329981658",
+ "price": "0.02720951374974361507",
+ "priceChange24hPercent": "0.41",
+ "volume24h": "731.9341262472834",
+ "communityRecognized": true,
+ "key": "evm--8453:0x226a2fa2556c48245e57cd1cba4c6c9e67077dd2",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x1111111111166b7fe7bd91427724b487980afc69",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x1111111111166b7fe7bd91427724b487980afc69-1757667250366.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x1111111111166b7fe7bd91427724b487980afc69-1757667250366.png"
+ ],
+ "name": "Zora",
+ "symbol": "ZORA",
+ "marketCap": "37462242.634859692036956299",
+ "price": "0.00838081490900235055",
+ "priceChange24hPercent": "0.44",
+ "volume24h": "5157.068995910584221148",
+ "communityRecognized": true,
+ "key": "evm--8453:0x1111111111166b7fe7bd91427724b487980afc69",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x9e00fc92493451eba1c63dd3880d68b622037ba3",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x9e00fc92493451eba1c63dd3880d68b622037ba3-1786626056354.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x9e00fc92493451eba1c63dd3880d68b622037ba3-1786626056354.png"
+ ],
+ "name": "A Society For AI Agents",
+ "symbol": "1F916",
+ "marketCap": "1488594.583259108552358875",
+ "price": "0.00001488594583259109",
+ "priceChange24hPercent": "-2.33",
+ "volume24h": "948.843559982311112164",
+ "communityRecognized": false,
+ "key": "evm--8453:0x9e00fc92493451eba1c63dd3880d68b622037ba3",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0xc5fed7c8ccc75d8a72b601a66dffd7a489073f0b",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xc5fed7c8ccc75d8a72b601a66dffd7a489073f0b-1764068796834.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xc5fed7c8ccc75d8a72b601a66dffd7a489073f0b-1764068796834.png"
+ ],
+ "name": "ACU",
+ "symbol": "ACU",
+ "marketCap": "234484.020627272349750803",
+ "price": "0.148385968279971767",
+ "priceChange24hPercent": "-0.54",
+ "volume24h": "561.02116",
+ "communityRecognized": true,
+ "key": "evm--8453:0xc5fed7c8ccc75d8a72b601a66dffd7a489073f0b",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x98d0baa52b2d063e780de12f615f963fe8537553",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x98d0baa52b2d063e780de12f615f963fe8537553-1757667100599.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x98d0baa52b2d063e780de12f615f963fe8537553-1757667100599.png"
+ ],
+ "name": "KAITO",
+ "symbol": "KAITO",
+ "marketCap": "322471494.213727543377481806",
+ "price": "0.32247149523918689824",
+ "priceChange24hPercent": "-0.46",
+ "volume24h": "795.437855928649662",
+ "communityRecognized": true,
+ "key": "evm--8453:0x98d0baa52b2d063e780de12f615f963fe8537553",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0xf43eb8de897fbc7f2502483b2bef7bb9ea179229",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xf43eb8de897fbc7f2502483b2bef7bb9ea179229-1757667269982.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xf43eb8de897fbc7f2502483b2bef7bb9ea179229-1757667269982.png"
+ ],
+ "name": "Horizen",
+ "symbol": "ZEN",
+ "marketCap": "128111264.611485623594030233",
+ "price": "6.98909118493305241645",
+ "priceChange24hPercent": "-0.26",
+ "volume24h": "11279.267080547244541",
+ "communityRecognized": true,
+ "key": "evm--8453:0xf43eb8de897fbc7f2502483b2bef7bb9ea179229",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0xac1bd2486aaf3b5c0fc3fd868558b082a531b2b4",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xac1bd2486aaf3b5c0fc3fd868558b082a531b2b4.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xac1bd2486aaf3b5c0fc3fd868558b082a531b2b4.png"
+ ],
+ "name": "Toshi",
+ "symbol": "TOSHI",
+ "marketCap": "52758550.185044143037974778",
+ "price": "0.00012541071969388395",
+ "priceChange24hPercent": "0",
+ "volume24h": "2081.0757636999537274",
+ "communityRecognized": true,
+ "key": "evm--8453:0xac1bd2486aaf3b5c0fc3fd868558b082a531b2b4",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0xc0634090f2fe6c6d75e61be2b949464abb498973",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xc0634090f2fe6c6d75e61be2b949464abb498973-1757667219038.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xc0634090f2fe6c6d75e61be2b949464abb498973-1757667219038.png"
+ ],
+ "name": "Keeta",
+ "symbol": "KTA",
+ "marketCap": "45263371.92738397429739068",
+ "price": "0.07749364985572725103",
+ "priceChange24hPercent": "2.04",
+ "volume24h": "50416.6066202204069142",
+ "communityRecognized": true,
+ "key": "evm--8453:0xc0634090f2fe6c6d75e61be2b949464abb498973",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x624e2e7fdc8903165f64891672267ab0fcb98831",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x624e2e7fdc8903165f64891672267ab0fcb98831-1757667182323.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x624e2e7fdc8903165f64891672267ab0fcb98831-1757667182323.png"
+ ],
+ "name": "SoSoValue",
+ "symbol": "SOSO",
+ "marketCap": "22753679.363260796692054527",
+ "price": "0.30944416257485148625",
+ "priceChange24hPercent": "0",
+ "volume24h": "7302.132169",
+ "communityRecognized": true,
+ "key": "evm--8453:0x624e2e7fdc8903165f64891672267ab0fcb98831",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0xa002e475acb822cfa4fb029fc475badd3811ab07",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/8bccbe6026be8958a66780b240b155b52b19b3ce62078ac3e3c8bcd3192cc968",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/8bccbe6026be8958a66780b240b155b52b19b3ce62078ac3e3c8bcd3192cc968"
+ ],
+ "name": "Laptop",
+ "symbol": "LAPTOP",
+ "marketCap": "8623286.318341761949939496",
+ "price": "0.00008623286318341762",
+ "priceChange24hPercent": "-0.05",
+ "volume24h": "4622.079211",
+ "communityRecognized": false,
+ "key": "evm--8453:0xa002e475acb822cfa4fb029fc475badd3811ab07",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0xb1a03eda10342529bbf8eb700a06c60441fef25d",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xb1a03eda10342529bbf8eb700a06c60441fef25d-1721965709442.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xb1a03eda10342529bbf8eb700a06c60441fef25d-1721965709442.png"
+ ],
+ "name": "Mister Miggles",
+ "symbol": "MIGGLES",
+ "marketCap": "2249547.202230456412465168",
+ "price": "0.00234629751345051729",
+ "priceChange24hPercent": "0.15",
+ "volume24h": "655.696140829071043",
+ "communityRecognized": false,
+ "key": "evm--8453:0xb1a03eda10342529bbf8eb700a06c60441fef25d",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x15d0e0c55a3e7ee67152ad7e89acf164253ff68d",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x15d0e0c55a3e7ee67152ad7e89acf164253ff68d-1760785371220.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x15d0e0c55a3e7ee67152ad7e89acf164253ff68d-1760785371220.png"
+ ],
+ "name": "HYPE",
+ "symbol": "HYPE",
+ "marketCap": "2086009.960893256620993528",
+ "price": "83.9613718942313370726",
+ "priceChange24hPercent": "0",
+ "volume24h": "969.3381559489450369",
+ "communityRecognized": false,
+ "key": "evm--8453:0x15d0e0c55a3e7ee67152ad7e89acf164253ff68d",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x8b7dde054be9d180c1be7fae0874697374a49832",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x8b7dde054be9d180c1be7fae0874697374a49832-1776337206327.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x8b7dde054be9d180c1be7fae0874697374a49832-1776337206327.png"
+ ],
+ "name": "Wrapped PROS",
+ "symbol": "PROS",
+ "marketCap": "1897581.171233968020403463",
+ "price": "0.43338949332107910306",
+ "priceChange24hPercent": "0.12",
+ "volume24h": "5341.713545",
+ "communityRecognized": true,
+ "key": "evm--8453:0x8b7dde054be9d180c1be7fae0874697374a49832",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x11030f79109269d796fd0fb956d6244e502757f7",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x11030f79109269d796fd0fb956d6244e502757f7-1779879981401.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x11030f79109269d796fd0fb956d6244e502757f7-1779879981401.png"
+ ],
+ "name": "CTR",
+ "symbol": "CTR",
+ "marketCap": "10317208.420480187597943854",
+ "price": "0.01019128717917162601",
+ "priceChange24hPercent": "-0.24",
+ "volume24h": "621.138241",
+ "communityRecognized": true,
+ "key": "evm--8453:0x11030f79109269d796fd0fb956d6244e502757f7",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x3ec2156d4c0a9cbdab4a016633b7bcf6a8d68ea2",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x3ec2156d4c0a9cbdab4a016633b7bcf6a8d68ea2-1757667219038.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x3ec2156d4c0a9cbdab4a016633b7bcf6a8d68ea2-1757667219038.png"
+ ],
+ "name": "DebtReliefBot",
+ "symbol": "DRB",
+ "marketCap": "24160034.358922219351579511",
+ "price": "0.00024162414034483379",
+ "priceChange24hPercent": "-0.15",
+ "volume24h": "1668.55985142615514653",
+ "communityRecognized": true,
+ "key": "evm--8453:0x3ec2156d4c0a9cbdab4a016633b7bcf6a8d68ea2",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x1aa8fd5bcce2231c6100d55bf8b377cff33acfc3",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x1aa8fd5bcce2231c6100d55bf8b377cff33acfc3-1762772563008.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x1aa8fd5bcce2231c6100d55bf8b377cff33acfc3-1762772563008.png"
+ ],
+ "name": "RaveDAO",
+ "symbol": "RAVE",
+ "marketCap": "5622235.397298745197937301",
+ "price": "0.24997547844193722538",
+ "priceChange24hPercent": "-0.67",
+ "volume24h": "537.536181",
+ "communityRecognized": true,
+ "key": "evm--8453:0x1aa8fd5bcce2231c6100d55bf8b377cff33acfc3",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0xeb466342c4d449bc9f53a865d5cb90586f405215",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xeb466342c4d449bc9f53a865d5cb90586f405215.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xeb466342c4d449bc9f53a865d5cb90586f405215.png"
+ ],
+ "name": "Axelar Wrapped USDC",
+ "symbol": "axlUSDC",
+ "marketCap": "585937.916993708067716896",
+ "price": "1.00015944756471875019",
+ "priceChange24hPercent": "0",
+ "volume24h": "794.57769718854766",
+ "communityRecognized": false,
+ "key": "evm--8453:0xeb466342c4d449bc9f53a865d5cb90586f405215",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x9b8df6e244526ab5f6e6400d331db28c8fdddb55",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x9b8df6e244526ab5f6e6400d331db28c8fdddb55-1725084900043.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x9b8df6e244526ab5f6e6400d331db28c8fdddb55-1725084900043.png"
+ ],
+ "name": "Solana (Universal)",
+ "symbol": "uSOL",
+ "marketCap": "2497361.299838751442067724",
+ "price": "103.98362705004751595894",
+ "priceChange24hPercent": "-0.38",
+ "volume24h": "502.2233136598158",
+ "communityRecognized": false,
+ "key": "evm--8453:0x9b8df6e244526ab5f6e6400d331db28c8fdddb55",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x9b5e262cf9bb04869ab40b19af91d2dc85761722",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x9b5e262cf9bb04869ab40b19af91d2dc85761722-1766574146201.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x9b5e262cf9bb04869ab40b19af91d2dc85761722-1766574146201.png"
+ ],
+ "name": "Nock",
+ "symbol": "NOCK",
+ "marketCap": "48712814.333334792165153839",
+ "price": "0.03236960146006352686",
+ "priceChange24hPercent": "0.26",
+ "volume24h": "2774.77819435186304",
+ "communityRecognized": true,
+ "key": "evm--8453:0x9b5e262cf9bb04869ab40b19af91d2dc85761722",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0xed664536023d8e4b1640c394777d34abaff1df8f",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xed664536023d8e4b1640c394777d34abaff1df8f-1772622008103.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xed664536023d8e4b1640c394777d34abaff1df8f-1772622008103.png"
+ ],
+ "name": "Dolphin",
+ "symbol": "POD",
+ "marketCap": "124289193.833143467864730912",
+ "price": "0.24857838767201699449",
+ "priceChange24hPercent": "2.8",
+ "volume24h": "1106.111581",
+ "communityRecognized": false,
+ "key": "evm--8453:0xed664536023d8e4b1640c394777d34abaff1df8f",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x696f9436b67233384889472cd7cd58a6fb5df4f1",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x696f9436b67233384889472cd7cd58a6fb5df4f1-1757667106590.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x696f9436b67233384889472cd7cd58a6fb5df4f1-1757667106590.png"
+ ],
+ "name": "Avantis",
+ "symbol": "AVNT",
+ "marketCap": "40179028.450264009308708623",
+ "price": "0.11393957875719524502",
+ "priceChange24hPercent": "0.36",
+ "volume24h": "4315.4586631037534419",
+ "communityRecognized": true,
+ "key": "evm--8453:0x696f9436b67233384889472cd7cd58a6fb5df4f1",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x9d0e8f5b25384c7310cb8c6ae32c8fbeb645d083",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x9d0e8f5b25384c7310cb8c6ae32c8fbeb645d083-1737003334236.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x9d0e8f5b25384c7310cb8c6ae32c8fbeb645d083-1737003334236.png"
+ ],
+ "name": "Derive",
+ "symbol": "DRV",
+ "marketCap": "25097941.048713283413694444",
+ "price": "0.16308594967932132455",
+ "priceChange24hPercent": "0.82",
+ "volume24h": "11294.987796282555917",
+ "communityRecognized": true,
+ "key": "evm--8453:0x9d0e8f5b25384c7310cb8c6ae32c8fbeb645d083",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x688aee022aa544f150678b8e5720b6b96a9e9a2f",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x688aee022aa544f150678b8e5720b6b96a9e9a2f-1757667109744.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x688aee022aa544f150678b8e5720b6b96a9e9a2f-1757667109744.png"
+ ],
+ "name": "Syrup Token",
+ "symbol": "SYRUP",
+ "marketCap": "995765.586255187201348381",
+ "price": "0.23476840412301995283",
+ "priceChange24hPercent": "1.59",
+ "volume24h": "1169.4076676379940545",
+ "communityRecognized": true,
+ "key": "evm--8453:0x688aee022aa544f150678b8e5720b6b96a9e9a2f",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x853a7c99227499dba9db8c3a02aa691afdebf841",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x853a7c99227499dba9db8c3a02aa691afdebf841-1757667221996.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x853a7c99227499dba9db8c3a02aa691afdebf841-1757667221996.png"
+ ],
+ "name": "Play",
+ "symbol": "PLAY",
+ "marketCap": "13573098.32802464041334227",
+ "price": "0.03634029003487186188",
+ "priceChange24hPercent": "-0.12",
+ "volume24h": "833.850187",
+ "communityRecognized": true,
+ "key": "evm--8453:0x853a7c99227499dba9db8c3a02aa691afdebf841",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0xff0c532fdb8cd566ae169c1cb157ff2bdc83e105",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xff0c532fdb8cd566ae169c1cb157ff2bdc83e105.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xff0c532fdb8cd566ae169c1cb157ff2bdc83e105.png"
+ ],
+ "name": "Fren Pet",
+ "symbol": "Fren Pet",
+ "marketCap": "18878339.800810462486314897",
+ "price": "2.92578124058293993962",
+ "priceChange24hPercent": "0.5",
+ "volume24h": "987.1514237055552",
+ "communityRecognized": false,
+ "key": "evm--8453:0xff0c532fdb8cd566ae169c1cb157ff2bdc83e105",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x1f1c695f6b4a3f8b05f2492cef9474afb6d6ad69",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x1f1c695f6b4a3f8b05f2492cef9474afb6d6ad69-1757667097863.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x1f1c695f6b4a3f8b05f2492cef9474afb6d6ad69-1757667097863.png"
+ ],
+ "name": "Sally",
+ "symbol": "A1C",
+ "marketCap": "3034149.653053263685169522",
+ "price": "0.14448331683909482868",
+ "priceChange24hPercent": "-1.64",
+ "volume24h": "2565.3369576863856395",
+ "communityRecognized": false,
+ "key": "evm--8453:0x1f1c695f6b4a3f8b05f2492cef9474afb6d6ad69",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x9eadbe35f3ee3bf3e28180070c429298a1b02f93",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x9eadbe35f3ee3bf3e28180070c429298a1b02f93-1761217472230.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x9eadbe35f3ee3bf3e28180070c429298a1b02f93-1761217472230.png"
+ ],
+ "name": "Limitless Official Token",
+ "symbol": "LMTS",
+ "marketCap": "9428363.910225808664242546",
+ "price": "0.07164482128715735343",
+ "priceChange24hPercent": "0.06",
+ "volume24h": "1449.072258",
+ "communityRecognized": true,
+ "key": "evm--8453:0x9eadbe35f3ee3bf3e28180070c429298a1b02f93",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x8c0d3adcf8ce094e1ae437557ec90a6374dc9bdd",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x8c0d3adcf8ce094e1ae437557ec90a6374dc9bdd-1773831756184.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x8c0d3adcf8ce094e1ae437557ec90a6374dc9bdd-1773831756184.png"
+ ],
+ "name": "OpenVPP",
+ "symbol": "OVPP",
+ "marketCap": "1990320.340161759129107805",
+ "price": "0.00199032034016175913",
+ "priceChange24hPercent": "-0.98",
+ "volume24h": "653.963863247580803",
+ "communityRecognized": false,
+ "key": "evm--8453:0x8c0d3adcf8ce094e1ae437557ec90a6374dc9bdd",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x00000000a22c618fd6b4d7e9a335c4b96b189a38",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x00000000a22c618fd6b4d7e9a335c4b96b189a38-1757667221996.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x00000000a22c618fd6b4d7e9a335c4b96b189a38-1757667221996.png"
+ ],
+ "name": "Towns",
+ "symbol": "TOWNS",
+ "marketCap": "4090459.37900983754196587",
+ "price": "0.00210564529754326876",
+ "priceChange24hPercent": "-0.73",
+ "volume24h": "1364.28903589074137",
+ "communityRecognized": true,
+ "key": "evm--8453:0x00000000a22c618fd6b4d7e9a335c4b96b189a38",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x0a4c9cb2778ab3302996a34befcf9a8bc288c33b",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x0a4c9cb2778ab3302996a34befcf9a8bc288c33b-1760007602606.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x0a4c9cb2778ab3302996a34befcf9a8bc288c33b-1760007602606.png"
+ ],
+ "name": "XSGD",
+ "symbol": "XSGD",
+ "marketCap": "4202455.074304647980570245",
+ "price": "0.79108475026324400256",
+ "priceChange24hPercent": "0",
+ "volume24h": "1370.439191796252705",
+ "communityRecognized": true,
+ "key": "evm--8453:0x0a4c9cb2778ab3302996a34befcf9a8bc288c33b",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0xcb17c9db87b595717c857a08468793f5bab6445f",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xcb17c9db87b595717c857a08468793f5bab6445f-1757667133019.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xcb17c9db87b595717c857a08468793f5bab6445f-1757667133019.png"
+ ],
+ "name": "Coinbase Wrapped LTC",
+ "symbol": "cbLTC",
+ "marketCap": "4477134.492281745058580781",
+ "price": "54.99038996326167868586",
+ "priceChange24hPercent": "-0.07",
+ "volume24h": "658.8521656711449924",
+ "communityRecognized": false,
+ "key": "evm--8453:0xcb17c9db87b595717c857a08468793f5bab6445f",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0xdcf5130274753c8050ab061b1a1dcbf583f5bfd0",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xdcf5130274753c8050ab061b1a1dcbf583f5bfd0.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xdcf5130274753c8050ab061b1a1dcbf583f5bfd0.png"
+ ],
+ "name": "ViciCoin",
+ "symbol": "VCNT",
+ "marketCap": "48862815.659080184046235859",
+ "price": "18.6908805671802385933",
+ "priceChange24hPercent": "0.54",
+ "volume24h": "625.666448016571459",
+ "communityRecognized": false,
+ "key": "evm--8453:0xdcf5130274753c8050ab061b1a1dcbf583f5bfd0",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x8bfac1b375bf2894d6f12fb2eb48b1c1a7916789",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x8bfac1b375bf2894d6f12fb2eb48b1c1a7916789-1732851000437.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x8bfac1b375bf2894d6f12fb2eb48b1c1a7916789-1732851000437.png"
+ ],
+ "name": "Mey Network",
+ "symbol": "MEY",
+ "marketCap": "17793323.308762987874558432",
+ "price": "0.06258439091095543351",
+ "priceChange24hPercent": "-0.58",
+ "volume24h": "503.5423064134048697",
+ "communityRecognized": true,
+ "key": "evm--8453:0x8bfac1b375bf2894d6f12fb2eb48b1c1a7916789",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x97be14dd8f994a5364573bc035d85309e7cb34de",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x97be14dd8f994a5364573bc035d85309e7cb34de-1779880010762.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x97be14dd8f994a5364573bc035d85309e7cb34de-1779880010762.png"
+ ],
+ "name": "Jito Staked SOL",
+ "symbol": "JitoSOL",
+ "marketCap": "15080654.56409470908490869",
+ "price": "134.19041931174885348232",
+ "priceChange24hPercent": "-0.01",
+ "volume24h": "2030.045018401176204",
+ "communityRecognized": false,
+ "key": "evm--8453:0x97be14dd8f994a5364573bc035d85309e7cb34de",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x9b56b112bbd6343a8961a093315a9a60b8cb1f36",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x9b56b112bbd6343a8961a093315a9a60b8cb1f36-1776423740509.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x9b56b112bbd6343a8961a093315a9a60b8cb1f36-1776423740509.png"
+ ],
+ "name": "PeaqOFT",
+ "symbol": "PEAQ",
+ "marketCap": "159294.42778572059034922",
+ "price": "0.03002946223770515722",
+ "priceChange24hPercent": "1.23",
+ "volume24h": "3835.4645800433731351",
+ "communityRecognized": false,
+ "key": "evm--8453:0x9b56b112bbd6343a8961a093315a9a60b8cb1f36",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0xb20000000000000000000000c361429c17dd140b",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/667495fccd45b33585b0fc6e2bef89faeecf6a7f6e2955e75490b546623ad30c",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/667495fccd45b33585b0fc6e2bef89faeecf6a7f6e2955e75490b546623ad30c"
+ ],
+ "name": "MEME FACTORY",
+ "symbol": "MEMEF",
+ "marketCap": "22933.496384806927726769",
+ "price": "0.00004680305384654475",
+ "priceChange24hPercent": "95.29",
+ "volume24h": "10080.8232756100565",
+ "communityRecognized": false,
+ "key": "evm--8453:0xb20000000000000000000000c361429c17dd140b",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x0a23b7c7a8faa3e1827ec9bdc953f06d4ef04b07",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/61256cce0c5acddbf40d3f9b65572dc6a42f8e6e1c439b521b188f9062eccc2d",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/61256cce0c5acddbf40d3f9b65572dc6a42f8e6e1c439b521b188f9062eccc2d"
+ ],
+ "name": "Basecat",
+ "symbol": "Basecat",
+ "marketCap": "16320.648430656507876938",
+ "price": "0.00000016320648430657",
+ "priceChange24hPercent": "88.42",
+ "volume24h": "26841.60691196579059877",
+ "communityRecognized": false,
+ "key": "evm--8453:0x0a23b7c7a8faa3e1827ec9bdc953f06d4ef04b07",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ }
+ ],
+ "trending|evm--8453|1h|all": [
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x1ea8deb921aa6015f4938010c848140b98108dd2",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/00a064123e96063064250c614f69bf2c6edb8404c740d069035156a73d12f345",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/00a064123e96063064250c614f69bf2c6edb8404c740d069035156a73d12f345"
+ ],
+ "name": "vAPI Network",
+ "symbol": "vAPI",
+ "marketCap": "4572831.578206145279616954",
+ "price": "0.06901217241789399577",
+ "priceChange24hPercent": "0",
+ "volume24h": "640.197459380058332",
+ "communityRecognized": false,
+ "key": "evm--8453:0x1ea8deb921aa6015f4938010c848140b98108dd2",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x182fa643e5f29d5eca75e7b9cf9336a3fe4620b2",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x182fa643e5f29d5eca75e7b9cf9336a3fe4620b2-1781780745426.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x182fa643e5f29d5eca75e7b9cf9336a3fe4620b2-1781780745426.png"
+ ],
+ "name": "o1.exchange",
+ "symbol": "O",
+ "marketCap": "86335783.679999984367826181",
+ "price": "0.5395986479999999023",
+ "priceChange24hPercent": "0.02",
+ "volume24h": "14231.126777807789987",
+ "communityRecognized": true,
+ "key": "evm--8453:0x182fa643e5f29d5eca75e7b9cf9336a3fe4620b2",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x1a44233fae8d50f1aeb3a5d58dd426ff4814cb53",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x1a44233fae8d50f1aeb3a5d58dd426ff4814cb53-1785934801304.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x1a44233fae8d50f1aeb3a5d58dd426ff4814cb53-1785934801304.png"
+ ],
+ "name": "Squid",
+ "symbol": "QUID",
+ "marketCap": "9664218.415965016365917899",
+ "price": "0.06750773707845800003",
+ "priceChange24hPercent": "-0.59",
+ "volume24h": "13910.031912",
+ "communityRecognized": true,
+ "key": "evm--8453:0x1a44233fae8d50f1aeb3a5d58dd426ff4814cb53",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0xab6363da0c80cef3ae105bd6241e30872355d021",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xab6363da0c80cef3ae105bd6241e30872355d021-1768648014135.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xab6363da0c80cef3ae105bd6241e30872355d021-1768648014135.png"
+ ],
+ "name": "Roll",
+ "symbol": "ROLL",
+ "marketCap": "18348293.089659240586468118",
+ "price": "0.1183760844494144554",
+ "priceChange24hPercent": "0.98",
+ "volume24h": "17598.01476500648607805",
+ "communityRecognized": true,
+ "key": "evm--8453:0xab6363da0c80cef3ae105bd6241e30872355d021",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x0f61edbfe6cd86024c0f210c0695b08df55fdfc9",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x0f61edbfe6cd86024c0f210c0695b08df55fdfc9-1787230901831.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x0f61edbfe6cd86024c0f210c0695b08df55fdfc9-1787230901831.png"
+ ],
+ "name": "BaseStonk",
+ "symbol": "BSTONK",
+ "marketCap": "4007938.924999195295310463",
+ "price": "0.00449159458683672726",
+ "priceChange24hPercent": "-6.68",
+ "volume24h": "23415.62471927950000386",
+ "communityRecognized": false,
+ "key": "evm--8453:0x0f61edbfe6cd86024c0f210c0695b08df55fdfc9",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x1bc0c42215582d5a085795f4badbac3ff36d1bcb",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x1bc0c42215582d5a085795f4badbac3ff36d1bcb-1731288600091.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x1bc0c42215582d5a085795f4badbac3ff36d1bcb-1731288600091.png"
+ ],
+ "name": "tokenbot",
+ "symbol": "CLANKER",
+ "marketCap": "12928480.604798781901868544",
+ "price": "13.10836331093307467123",
+ "priceChange24hPercent": "0.08",
+ "volume24h": "6042.912762704755629069",
+ "communityRecognized": true,
+ "key": "evm--8453:0x1bc0c42215582d5a085795f4badbac3ff36d1bcb",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x001aad84c21a5cd4d696c56d44866e9703c43f77",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x001aad84c21a5cd4d696c56d44866e9703c43f77-1787144795420.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x001aad84c21a5cd4d696c56d44866e9703c43f77-1787144795420.png"
+ ],
+ "name": "Cluster Protocol",
+ "symbol": "CP",
+ "marketCap": "33358298.59549828667170448",
+ "price": "0.02436527785944727798",
+ "priceChange24hPercent": "36.4",
+ "volume24h": "1581712.922449923589008907",
+ "communityRecognized": true,
+ "key": "evm--8453:0x001aad84c21a5cd4d696c56d44866e9703c43f77",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x940181a94a35a4569e4529a3cdfb74e38fd98631",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x940181a94a35a4569e4529a3cdfb74e38fd98631.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x940181a94a35a4569e4529a3cdfb74e38fd98631.png"
+ ],
+ "name": "Aerodrome",
+ "symbol": "AERO",
+ "marketCap": "658141636.853802284056737422",
+ "price": "0.66687044093601599083",
+ "priceChange24hPercent": "2.7",
+ "volume24h": "2590559.430665114062505175",
+ "communityRecognized": true,
+ "key": "evm--8453:0x940181a94a35a4569e4529a3cdfb74e38fd98631",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x0b3e328455c4059eeb9e3f84b5543f74e24e7e1b",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x0b3e328455c4059eeb9e3f84b5543f74e24e7e1b.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x0b3e328455c4059eeb9e3f84b5543f74e24e7e1b.png"
+ ],
+ "name": "Virtual Protocol",
+ "symbol": "VIRTUAL",
+ "marketCap": "362405803.617855007639245042",
+ "price": "0.72917882068234822303",
+ "priceChange24hPercent": "-2.28",
+ "volume24h": "619064.911601636078469157",
+ "communityRecognized": true,
+ "key": "evm--8453:0x0b3e328455c4059eeb9e3f84b5543f74e24e7e1b",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x88fb150bdc53a65fe94dea0c9ba0a6daf8c6e196",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x88fb150bdc53a65fe94dea0c9ba0a6daf8c6e196-1757667313556.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x88fb150bdc53a65fe94dea0c9ba0a6daf8c6e196-1757667313556.png"
+ ],
+ "name": "ChainLink Token",
+ "symbol": "LINK",
+ "marketCap": "2335832.918140703969459741",
+ "price": "12.6508949094410090813",
+ "priceChange24hPercent": "-0.13",
+ "volume24h": "1684.39439799286445662",
+ "communityRecognized": true,
+ "key": "evm--8453:0x88fb150bdc53a65fe94dea0c9ba0a6daf8c6e196",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0xacfe6019ed1a7dc6f7b508c02d1b04ec88cc21bf",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xacfe6019ed1a7dc6f7b508c02d1b04ec88cc21bf-1757667200619.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xacfe6019ed1a7dc6f7b508c02d1b04ec88cc21bf-1757667200619.png"
+ ],
+ "name": "Venice Token",
+ "symbol": "VVV",
+ "marketCap": "856673436.750078298169062052",
+ "price": "17.81036746540506978652",
+ "priceChange24hPercent": "-2.74",
+ "volume24h": "691273.569722449587925557",
+ "communityRecognized": true,
+ "key": "evm--8453:0xacfe6019ed1a7dc6f7b508c02d1b04ec88cc21bf",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0xd71bbd77e90a8fb9a23e47f26dc6c30784ba6572",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xd71bbd77e90a8fb9a23e47f26dc6c30784ba6572-1788701572198.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xd71bbd77e90a8fb9a23e47f26dc6c30784ba6572-1788701572198.png"
+ ],
+ "name": "Kuma",
+ "symbol": "KUMA",
+ "marketCap": "103936.364733165399756919",
+ "price": "0.0001124307145261345",
+ "priceChange24hPercent": "-2.98",
+ "volume24h": "769.071261084402285",
+ "communityRecognized": false,
+ "key": "evm--8453:0xd71bbd77e90a8fb9a23e47f26dc6c30784ba6572",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0xa46dfacc9129c62704b75c3e9914a1db3364ba5e",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/ace48847e868bee6f8730809637ad88dcf320d3b44e91ddf0d0683cbd326f498",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/ace48847e868bee6f8730809637ad88dcf320d3b44e91ddf0d0683cbd326f498"
+ ],
+ "name": "Basestocks.fi",
+ "symbol": "BST",
+ "marketCap": "47886.040695560018713052",
+ "price": "0.00004788604070291127",
+ "priceChange24hPercent": "2.41",
+ "volume24h": "966.0618091754696322",
+ "communityRecognized": false,
+ "key": "evm--8453:0xa46dfacc9129c62704b75c3e9914a1db3364ba5e",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x352b850b733ab8bab50aed1dab5d22e3186ce984",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x352b850b733ab8bab50aed1dab5d22e3186ce984-1736307000621.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x352b850b733ab8bab50aed1dab5d22e3186ce984-1736307000621.png"
+ ],
+ "name": "1000x by Virtuals",
+ "symbol": "1000X",
+ "marketCap": "1997524.45764131650686302",
+ "price": "0.00203499557670207466",
+ "priceChange24hPercent": "-0.84",
+ "volume24h": "1651.1968131934388587",
+ "communityRecognized": false,
+ "key": "evm--8453:0x352b850b733ab8bab50aed1dab5d22e3186ce984",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0xb3e3c89b8d9c88b1fe96856e382959ee6291ebba",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xb3e3c89b8d9c88b1fe96856e382959ee6291ebba-1735353000152.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xb3e3c89b8d9c88b1fe96856e382959ee6291ebba-1735353000152.png"
+ ],
+ "name": "Rekt",
+ "symbol": "REKT",
+ "marketCap": "487697.772010453461088474",
+ "price": "0.00000008549682996415",
+ "priceChange24hPercent": "0.41",
+ "volume24h": "1783.16819207394265068",
+ "communityRecognized": true,
+ "key": "evm--8453:0xb3e3c89b8d9c88b1fe96856e382959ee6291ebba",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x23a2847d772803f9efc64b4277b782b06296fe51",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x23a2847d772803f9efc64b4277b782b06296fe51-1781607721666.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x23a2847d772803f9efc64b4277b782b06296fe51-1781607721666.png"
+ ],
+ "name": "Dot",
+ "symbol": "DOT",
+ "marketCap": "2808658.471634364049829141",
+ "price": "0.00338032684968937133",
+ "priceChange24hPercent": "1.16",
+ "volume24h": "12222.449879563068458111",
+ "communityRecognized": false,
+ "key": "evm--8453:0x23a2847d772803f9efc64b4277b782b06296fe51",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0xa002e475acb822cfa4fb029fc475badd3811ab07",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/8bccbe6026be8958a66780b240b155b52b19b3ce62078ac3e3c8bcd3192cc968",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/8bccbe6026be8958a66780b240b155b52b19b3ce62078ac3e3c8bcd3192cc968"
+ ],
+ "name": "Laptop",
+ "symbol": "LAPTOP",
+ "marketCap": "8623286.318341761949939496",
+ "price": "0.00008623286318341762",
+ "priceChange24hPercent": "0.02",
+ "volume24h": "56942.779608",
+ "communityRecognized": false,
+ "key": "evm--8453:0xa002e475acb822cfa4fb029fc475badd3811ab07",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x020eaeee24bcad37cb9a01aa1f8c591c47341ba3",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x020eaeee24bcad37cb9a01aa1f8c591c47341ba3-1788440515710.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x020eaeee24bcad37cb9a01aa1f8c591c47341ba3-1788440515710.png"
+ ],
+ "name": "SETZ",
+ "symbol": "SETZ",
+ "marketCap": "467722.609477382948023255",
+ "price": "0.00000467722609477383",
+ "priceChange24hPercent": "-12.71",
+ "volume24h": "8228.852028681531450049",
+ "communityRecognized": false,
+ "key": "evm--8453:0x020eaeee24bcad37cb9a01aa1f8c591c47341ba3",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x56ab53b77f07da3af732150e8aec4783eb5bba7d",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x56ab53b77f07da3af732150e8aec4783eb5bba7d-1788354128601.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x56ab53b77f07da3af732150e8aec4783eb5bba7d-1788354128601.png"
+ ],
+ "name": "Umia",
+ "symbol": "UMIA",
+ "marketCap": "16429317.110577210198112484",
+ "price": "0.67471943813112648325",
+ "priceChange24hPercent": "-3.95",
+ "volume24h": "31901.8839069661838713",
+ "communityRecognized": true,
+ "key": "evm--8453:0x56ab53b77f07da3af732150e8aec4783eb5bba7d",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x1aa8fd5bcce2231c6100d55bf8b377cff33acfc3",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x1aa8fd5bcce2231c6100d55bf8b377cff33acfc3-1762772563008.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x1aa8fd5bcce2231c6100d55bf8b377cff33acfc3-1762772563008.png"
+ ],
+ "name": "RaveDAO",
+ "symbol": "RAVE",
+ "marketCap": "5622235.397298745197937301",
+ "price": "0.24997547844193722538",
+ "priceChange24hPercent": "-0.2",
+ "volume24h": "3462.97666",
+ "communityRecognized": true,
+ "key": "evm--8453:0x1aa8fd5bcce2231c6100d55bf8b377cff33acfc3",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x0555e30da8f98308edb960aa94c0db47230d2b9c",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x0555e30da8f98308edb960aa94c0db47230d2b9c-1757667160561.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x0555e30da8f98308edb960aa94c0db47230d2b9c-1757667160561.png"
+ ],
+ "name": "Wrapped BTC",
+ "symbol": "WBTC",
+ "marketCap": "5130714.681572329150926017",
+ "price": "78824.44709416919563900666",
+ "priceChange24hPercent": "-0.14",
+ "volume24h": "1649.1561292797779895",
+ "communityRecognized": true,
+ "key": "evm--8453:0x0555e30da8f98308edb960aa94c0db47230d2b9c",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x8ee73c484a26e0a5df2ee2a4960b789967dd0415",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x8ee73c484a26e0a5df2ee2a4960b789967dd0415-1757667273505.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x8ee73c484a26e0a5df2ee2a4960b789967dd0415-1757667273505.png"
+ ],
+ "name": "Curve DAO Token",
+ "symbol": "CRV",
+ "marketCap": "569000.285653014298597697",
+ "price": "0.36268877747502270663",
+ "priceChange24hPercent": "-0.7",
+ "volume24h": "1148.34898739578732027",
+ "communityRecognized": true,
+ "key": "evm--8453:0x8ee73c484a26e0a5df2ee2a4960b789967dd0415",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x9b8df6e244526ab5f6e6400d331db28c8fdddb55",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x9b8df6e244526ab5f6e6400d331db28c8fdddb55-1725084900043.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x9b8df6e244526ab5f6e6400d331db28c8fdddb55-1725084900043.png"
+ ],
+ "name": "Solana (Universal)",
+ "symbol": "uSOL",
+ "marketCap": "2497361.299838751442067724",
+ "price": "103.98362705004751595894",
+ "priceChange24hPercent": "-0.05",
+ "volume24h": "4806.1756140499017206",
+ "communityRecognized": false,
+ "key": "evm--8453:0x9b8df6e244526ab5f6e6400d331db28c8fdddb55",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x5f980dcfc4c0fa3911554cf5ab288ed0eb13dba3",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x5f980dcfc4c0fa3911554cf5ab288ed0eb13dba3-1773486075454.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x5f980dcfc4c0fa3911554cf5ab288ed0eb13dba3-1773486075454.png"
+ ],
+ "name": "gitlawb",
+ "symbol": "GITLAWB",
+ "marketCap": "1610294.761478849110289969",
+ "price": "0.00001615713109050687",
+ "priceChange24hPercent": "-1.41",
+ "volume24h": "4068.74602226969712514",
+ "communityRecognized": false,
+ "key": "evm--8453:0x5f980dcfc4c0fa3911554cf5ab288ed0eb13dba3",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x3722264ab15a1dfce5a5af89e6547f7949a8aba3",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x3722264ab15a1dfce5a5af89e6547f7949a8aba3-1777719665862.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x3722264ab15a1dfce5a5af89e6547f7949a8aba3-1777719665862.png"
+ ],
+ "name": "LienFi",
+ "symbol": "LFI",
+ "marketCap": "4796544.934863510452557522",
+ "price": "0.00007613587050626248",
+ "priceChange24hPercent": "-5.99",
+ "volume24h": "43953.564692097507663353",
+ "communityRecognized": false,
+ "key": "evm--8453:0x3722264ab15a1dfce5a5af89e6547f7949a8aba3",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0xc6405d7a226e1c18e559be2f335f74c01ad07bf5",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xc6405d7a226e1c18e559be2f335f74c01ad07bf5-1788700788773.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xc6405d7a226e1c18e559be2f335f74c01ad07bf5-1788700788773.png"
+ ],
+ "name": "Stockify",
+ "symbol": "STFY",
+ "marketCap": "3983052.862173553761505087",
+ "price": "0.00398305286217355376",
+ "priceChange24hPercent": "6.54",
+ "volume24h": "22229.705629582954099574",
+ "communityRecognized": false,
+ "key": "evm--8453:0xc6405d7a226e1c18e559be2f335f74c01ad07bf5",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x30c7235866872213f68cb1f08c37cb9eccb93452",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x30c7235866872213f68cb1f08c37cb9eccb93452-1757667345357.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x30c7235866872213f68cb1f08c37cb9eccb93452-1757667345357.png"
+ ],
+ "name": "Prompt",
+ "symbol": "PROMPT",
+ "marketCap": "3861471.580124962122825535",
+ "price": "0.02396495671913454759",
+ "priceChange24hPercent": "-0.18",
+ "volume24h": "2024.996873866760054",
+ "communityRecognized": true,
+ "key": "evm--8453:0x30c7235866872213f68cb1f08c37cb9eccb93452",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x6cd905df2ed214b22e0d48ff17cd4200c1c6d8a3",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x6cd905df2ed214b22e0d48ff17cd4200c1c6d8a3-1762340623166.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x6cd905df2ed214b22e0d48ff17cd4200c1c6d8a3-1762340623166.png"
+ ],
+ "name": "Intuition",
+ "symbol": "TRUST",
+ "marketCap": "10129283.497214801500560343",
+ "price": "0.05638411209557375288",
+ "priceChange24hPercent": "1.09",
+ "volume24h": "2008.26824",
+ "communityRecognized": true,
+ "key": "evm--8453:0x6cd905df2ed214b22e0d48ff17cd4200c1c6d8a3",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0xf5f11bc9be9d6690f795d04d2fc9bdd097008a2b",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/f51dce715644a648b66fb92949956078926f240bddb2af258f35d3f0d8d66241",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/f51dce715644a648b66fb92949956078926f240bddb2af258f35d3f0d8d66241"
+ ],
+ "name": "basedpad.fun",
+ "symbol": "BPAD",
+ "marketCap": "291065.544044616879635393",
+ "price": "0.00034070477080070502",
+ "priceChange24hPercent": "-2.75",
+ "volume24h": "1908.02271",
+ "communityRecognized": false,
+ "key": "evm--8453:0xf5f11bc9be9d6690f795d04d2fc9bdd097008a2b",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x4ed4e862860bed51a9570b96d89af5e1b0efefed",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x4ed4e862860bed51a9570b96d89af5e1b0efefed.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x4ed4e862860bed51a9570b96d89af5e1b0efefed.png"
+ ],
+ "name": "Degen",
+ "symbol": "DEGEN",
+ "marketCap": "39377962.393730743116383433",
+ "price": "0.00108793990733865399",
+ "priceChange24hPercent": "1.23",
+ "volume24h": "3194.509251891931985406",
+ "communityRecognized": true,
+ "key": "evm--8453:0x4ed4e862860bed51a9570b96d89af5e1b0efefed",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0xc52aedec3374422d7510e294cfaa90799595cba3",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xc52aedec3374422d7510e294cfaa90799595cba3-1779274812235.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xc52aedec3374422d7510e294cfaa90799595cba3-1779274812235.png"
+ ],
+ "name": "Surplus Intelligence",
+ "symbol": "Surplus",
+ "marketCap": "3382534.022521815174089763",
+ "price": "0.00003382541330856353",
+ "priceChange24hPercent": "-0.38",
+ "volume24h": "511.0991845123798948",
+ "communityRecognized": false,
+ "key": "evm--8453:0xc52aedec3374422d7510e294cfaa90799595cba3",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x16ee7ecac70d1028e7712751e2ee6ba808a7dd92",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x16ee7ecac70d1028e7712751e2ee6ba808a7dd92-1766401243503.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x16ee7ecac70d1028e7712751e2ee6ba808a7dd92-1766401243503.png"
+ ],
+ "name": "Sport.fun",
+ "symbol": "FUN",
+ "marketCap": "3685735.113228658036819774",
+ "price": "0.02070637704061043841",
+ "priceChange24hPercent": "-0.78",
+ "volume24h": "2693.029932",
+ "communityRecognized": true,
+ "key": "evm--8453:0x16ee7ecac70d1028e7712751e2ee6ba808a7dd92",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x54f16bd3996169914c84dbb2a16635100cf48a0a",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x54f16bd3996169914c84dbb2a16635100cf48a0a-1778842983869.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x54f16bd3996169914c84dbb2a16635100cf48a0a-1778842983869.png"
+ ],
+ "name": "Peptai",
+ "symbol": "PEPTAI",
+ "marketCap": "2699930.655241683092524007",
+ "price": "0.26999306552416830925",
+ "priceChange24hPercent": "1.72",
+ "volume24h": "532.659961",
+ "communityRecognized": false,
+ "key": "evm--8453:0x54f16bd3996169914c84dbb2a16635100cf48a0a",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x5ab3d4c385b400f3abb49e80de2faf6a88a7b691",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x5ab3d4c385b400f3abb49e80de2faf6a88a7b691-1735678408749.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x5ab3d4c385b400f3abb49e80de2faf6a88a7b691-1735678408749.png"
+ ],
+ "name": "FLock.io",
+ "symbol": "FLOCK",
+ "marketCap": "7996244.026812894169753812",
+ "price": "0.06207619062319993757",
+ "priceChange24hPercent": "-2.29",
+ "volume24h": "22616.44575335680981304",
+ "communityRecognized": true,
+ "key": "evm--8453:0x5ab3d4c385b400f3abb49e80de2faf6a88a7b691",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x1111111111166b7fe7bd91427724b487980afc69",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x1111111111166b7fe7bd91427724b487980afc69-1757667250366.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x1111111111166b7fe7bd91427724b487980afc69-1757667250366.png"
+ ],
+ "name": "Zora",
+ "symbol": "ZORA",
+ "marketCap": "37462242.634859692036956299",
+ "price": "0.00838081490900235055",
+ "priceChange24hPercent": "0.34",
+ "volume24h": "20544.080917112494866331",
+ "communityRecognized": true,
+ "key": "evm--8453:0x1111111111166b7fe7bd91427724b487980afc69",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0xbaa5cc21fd487b8fcc2f632f3f4e8d37262a0842",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xbaa5cc21fd487b8fcc2f632f3f4e8d37262a0842-1732156200557.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xbaa5cc21fd487b8fcc2f632f3f4e8d37262a0842-1732156200557.png"
+ ],
+ "name": "Morpho Token",
+ "symbol": "MORPHO",
+ "marketCap": "73407846.522022346282977983",
+ "price": "2.44896190806995330815",
+ "priceChange24hPercent": "-0.04",
+ "volume24h": "13759.551590344149631442",
+ "communityRecognized": true,
+ "key": "evm--8453:0xbaa5cc21fd487b8fcc2f632f3f4e8d37262a0842",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x696f9436b67233384889472cd7cd58a6fb5df4f1",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x696f9436b67233384889472cd7cd58a6fb5df4f1-1757667106590.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x696f9436b67233384889472cd7cd58a6fb5df4f1-1757667106590.png"
+ ],
+ "name": "Avantis",
+ "symbol": "AVNT",
+ "marketCap": "40179028.450264009308708623",
+ "price": "0.11393957875719524502",
+ "priceChange24hPercent": "3.14",
+ "volume24h": "55384.426190782262673236",
+ "communityRecognized": true,
+ "key": "evm--8453:0x696f9436b67233384889472cd7cd58a6fb5df4f1",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x00f3c42833c3170159af4e92dbb451fb3f708917",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x00f3c42833c3170159af4e92dbb451fb3f708917-1757667396668.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x00f3c42833c3170159af4e92dbb451fb3f708917-1757667396668.png"
+ ],
+ "name": "ICP",
+ "symbol": "ICP",
+ "marketCap": "804715.386932750684455888",
+ "price": "3.03139152906059961695",
+ "priceChange24hPercent": "0.8",
+ "volume24h": "109643.19607580679714405",
+ "communityRecognized": true,
+ "key": "evm--8453:0x00f3c42833c3170159af4e92dbb451fb3f708917",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0xf1e9baa65d418a9025e1851dd2d37f1ad208bba3",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xf1e9baa65d418a9025e1851dd2d37f1ad208bba3-1780485054872.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xf1e9baa65d418a9025e1851dd2d37f1ad208bba3-1780485054872.png"
+ ],
+ "name": "Ratspeak",
+ "symbol": "Ratspeak",
+ "marketCap": "1368250.772332282499041908",
+ "price": "0.00001425261221181126",
+ "priceChange24hPercent": "-0.52",
+ "volume24h": "817.6301801061898624",
+ "communityRecognized": false,
+ "key": "evm--8453:0xf1e9baa65d418a9025e1851dd2d37f1ad208bba3",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x6985884c4392d348587b19cb9eaaf157f13271cd",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x6985884c4392d348587b19cb9eaaf157f13271cd-1721965709443.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x6985884c4392d348587b19cb9eaaf157f13271cd-1721965709443.png"
+ ],
+ "name": "LayerZero",
+ "symbol": "ZRO",
+ "marketCap": "6920458.000810112126587131",
+ "price": "1.13521434355973562164",
+ "priceChange24hPercent": "0.54",
+ "volume24h": "25979.525926509954348383",
+ "communityRecognized": true,
+ "key": "evm--8453:0x6985884c4392d348587b19cb9eaaf157f13271cd",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0xa99f6e6785da0f5d6fb42495fe424bce029eeb3e",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xa99f6e6785da0f5d6fb42495fe424bce029eeb3e-1735017300059.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xa99f6e6785da0f5d6fb42495fe424bce029eeb3e-1735017300059.png"
+ ],
+ "name": "Pendle",
+ "symbol": "PENDLE",
+ "marketCap": "1266732.04833089394230691",
+ "price": "2.18284202595136507002",
+ "priceChange24hPercent": "-1.15",
+ "volume24h": "7393.8419121352380983",
+ "communityRecognized": true,
+ "key": "evm--8453:0xa99f6e6785da0f5d6fb42495fe424bce029eeb3e",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0xbf927b841994731c573bdf09ceb0c6b0aa887cdd",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xbf927b841994731c573bdf09ceb0c6b0aa887cdd-1757667322651.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xbf927b841994731c573bdf09ceb0c6b0aa887cdd-1757667322651.png"
+ ],
+ "name": "Velvet",
+ "symbol": "VELVET",
+ "marketCap": "1071823.926949795122170354",
+ "price": "0.0798891941969676081",
+ "priceChange24hPercent": "-0.33",
+ "volume24h": "14629.553971740438912461",
+ "communityRecognized": true,
+ "key": "evm--8453:0xbf927b841994731c573bdf09ceb0c6b0aa887cdd",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x6bb7a212910682dcfdbd5bcbb3e28fb4e8da10ee",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x6bb7a212910682dcfdbd5bcbb3e28fb4e8da10ee-1755759133841.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x6bb7a212910682dcfdbd5bcbb3e28fb4e8da10ee-1755759133841.png"
+ ],
+ "name": "Gho Token",
+ "symbol": "GHO",
+ "marketCap": "729190.919650792570499848",
+ "price": "0.99888622132390754508",
+ "priceChange24hPercent": "-0.46",
+ "volume24h": "2437.691244",
+ "communityRecognized": true,
+ "key": "evm--8453:0x6bb7a212910682dcfdbd5bcbb3e28fb4e8da10ee",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0xc5fed7c8ccc75d8a72b601a66dffd7a489073f0b",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xc5fed7c8ccc75d8a72b601a66dffd7a489073f0b-1764068796834.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xc5fed7c8ccc75d8a72b601a66dffd7a489073f0b-1764068796834.png"
+ ],
+ "name": "ACU",
+ "symbol": "ACU",
+ "marketCap": "234484.020627272349750803",
+ "price": "0.148385968279971767",
+ "priceChange24hPercent": "0.27",
+ "volume24h": "6234.573487108994841987",
+ "communityRecognized": true,
+ "key": "evm--8453:0xc5fed7c8ccc75d8a72b601a66dffd7a489073f0b",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0xfb31f85a8367210b2e4ed2360d2da9dc2d2ccc95",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xfb31f85a8367210b2e4ed2360d2da9dc2d2ccc95-1763031927566.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xfb31f85a8367210b2e4ed2360d2da9dc2d2ccc95-1763031927566.png"
+ ],
+ "name": "Edel",
+ "symbol": "EDEL",
+ "marketCap": "6886442.132094868099033462",
+ "price": "0.01033485052099968844",
+ "priceChange24hPercent": "1.7",
+ "volume24h": "5139.43434595780448263",
+ "communityRecognized": true,
+ "key": "evm--8453:0xfb31f85a8367210b2e4ed2360d2da9dc2d2ccc95",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x74ccbe53f77b08632ce0cb91d3a545bf6b8e0979",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x74ccbe53f77b08632ce0cb91d3a545bf6b8e0979.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x74ccbe53f77b08632ce0cb91d3a545bf6b8e0979.png"
+ ],
+ "name": "Fantom Bomb",
+ "symbol": "fBOMB",
+ "marketCap": "4679667.899266750846660007",
+ "price": "0.01979132007060876161",
+ "priceChange24hPercent": "1.18",
+ "volume24h": "5428.677816127430933093",
+ "communityRecognized": false,
+ "key": "evm--8453:0x74ccbe53f77b08632ce0cb91d3a545bf6b8e0979",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x10c56f005a379f8eafc88ff5c3f40d30f0031ac9",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x10c56f005a379f8eafc88ff5c3f40d30f0031ac9-1777460401433.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x10c56f005a379f8eafc88ff5c3f40d30f0031ac9-1777460401433.png"
+ ],
+ "name": "Strike Robot",
+ "symbol": "SR",
+ "marketCap": "1197736.175990428788176242",
+ "price": "0.00119773617599042879",
+ "priceChange24hPercent": "-1.01",
+ "volume24h": "578.181353230847697841",
+ "communityRecognized": false,
+ "key": "evm--8453:0x10c56f005a379f8eafc88ff5c3f40d30f0031ac9",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x1217bfe6c773eec6cc4a38b5dc45b92292b6e189",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x1217bfe6c773eec6cc4a38b5dc45b92292b6e189-1757667084889.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x1217bfe6c773eec6cc4a38b5dc45b92292b6e189-1757667084889.png"
+ ],
+ "name": "OpenUSDT",
+ "symbol": "oUSDT",
+ "marketCap": "277857.038749700708089827",
+ "price": "0.99986595586957288418",
+ "priceChange24hPercent": "-0.04",
+ "volume24h": "17147.75678124327686",
+ "communityRecognized": false,
+ "key": "evm--8453:0x1217bfe6c773eec6cc4a38b5dc45b92292b6e189",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x29cc30f9d113b356ce408667aa6433589cecbdca",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x29cc30f9d113b356ce408667aa6433589cecbdca-1768993229461.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x29cc30f9d113b356ce408667aa6433589cecbdca-1768993229461.png"
+ ],
+ "name": "Elsa",
+ "symbol": "ELSA",
+ "marketCap": "11913928.324771431714086724",
+ "price": "0.05203043202363277017",
+ "priceChange24hPercent": "-0.35",
+ "volume24h": "16157.525478",
+ "communityRecognized": true,
+ "key": "evm--8453:0x29cc30f9d113b356ce408667aa6433589cecbdca",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x07ec06ae91ee22302c097a3781cadcf99ac98e2a",
+ "logoUrl": "https://static.oklink.com/cdn/web3/currency/token/large/8453-0x07ec06ae91ee22302c097a3781cadcf99ac98e2a-106/type=default_90_0?v=1788828983305",
+ "logoUrls": [
+ "https://static.oklink.com/cdn/web3/currency/token/large/8453-0x07ec06ae91ee22302c097a3781cadcf99ac98e2a-106/type=default_90_0?v=1788828983305"
+ ],
+ "name": "DEAI",
+ "symbol": "DEAI",
+ "marketCap": "9217681.640564191016015642",
+ "price": "1.80362063170143495462",
+ "priceChange24hPercent": "-0.61",
+ "volume24h": "703.18884197468518",
+ "communityRecognized": false,
+ "key": "evm--8453:0x07ec06ae91ee22302c097a3781cadcf99ac98e2a",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x63706e401c06ac8513145b7687a14804d17f814b",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x63706e401c06ac8513145b7687a14804d17f814b-1757667080547.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x63706e401c06ac8513145b7687a14804d17f814b-1757667080547.png"
+ ],
+ "name": "Aave Token",
+ "symbol": "AAVE",
+ "marketCap": "4545144.926885475787393735",
+ "price": "130.93372905399936573433",
+ "priceChange24hPercent": "0.02",
+ "volume24h": "1633.313862917847366613",
+ "communityRecognized": true,
+ "key": "evm--8453:0x63706e401c06ac8513145b7687a14804d17f814b",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x9d0e8f5b25384c7310cb8c6ae32c8fbeb645d083",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x9d0e8f5b25384c7310cb8c6ae32c8fbeb645d083-1737003334236.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x9d0e8f5b25384c7310cb8c6ae32c8fbeb645d083-1737003334236.png"
+ ],
+ "name": "Derive",
+ "symbol": "DRV",
+ "marketCap": "25097941.048713283413694444",
+ "price": "0.16308594967932132455",
+ "priceChange24hPercent": "-0.06",
+ "volume24h": "92166.42804231387170977",
+ "communityRecognized": true,
+ "key": "evm--8453:0x9d0e8f5b25384c7310cb8c6ae32c8fbeb645d083",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x226a2fa2556c48245e57cd1cba4c6c9e67077dd2",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x226a2fa2556c48245e57cd1cba4c6c9e67077dd2-1757667219038.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x226a2fa2556c48245e57cd1cba4c6c9e67077dd2-1757667219038.png"
+ ],
+ "name": "BIO",
+ "symbol": "BIO",
+ "marketCap": "4967623.345623005329981658",
+ "price": "0.02720951374974361507",
+ "priceChange24hPercent": "0.13",
+ "volume24h": "6444.593395272631332789",
+ "communityRecognized": true,
+ "key": "evm--8453:0x226a2fa2556c48245e57cd1cba4c6c9e67077dd2",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x3055913c90fcc1a6ce9a358911721eeb942013a1",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x3055913c90fcc1a6ce9a358911721eeb942013a1-1724908500044.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x3055913c90fcc1a6ce9a358911721eeb942013a1-1724908500044.png"
+ ],
+ "name": "PancakeSwap Token",
+ "symbol": "Cake",
+ "marketCap": "994282.72156555590317458",
+ "price": "2.22862379703736382748",
+ "priceChange24hPercent": "-0.25",
+ "volume24h": "7271.543131874209191435",
+ "communityRecognized": true,
+ "key": "evm--8453:0x3055913c90fcc1a6ce9a358911721eeb942013a1",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x11030f79109269d796fd0fb956d6244e502757f7",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x11030f79109269d796fd0fb956d6244e502757f7-1779879981401.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x11030f79109269d796fd0fb956d6244e502757f7-1779879981401.png"
+ ],
+ "name": "CTR",
+ "symbol": "CTR",
+ "marketCap": "10317208.420480187597943854",
+ "price": "0.01019128717917162601",
+ "priceChange24hPercent": "-0.08",
+ "volume24h": "24928.447245",
+ "communityRecognized": true,
+ "key": "evm--8453:0x11030f79109269d796fd0fb956d6244e502757f7",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0xb166e8b140d35d9d8226e40c09f757bac5a4d87d",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xb166e8b140d35d9d8226e40c09f757bac5a4d87d.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xb166e8b140d35d9d8226e40c09f757bac5a4d87d.png"
+ ],
+ "name": "Non-Playable Coin",
+ "symbol": "NPC",
+ "marketCap": "5355719.591537464906403182",
+ "price": "0.01825318252882716056",
+ "priceChange24hPercent": "-5.41",
+ "volume24h": "11056.66778542196835634",
+ "communityRecognized": true,
+ "key": "evm--8453:0xb166e8b140d35d9d8226e40c09f757bac5a4d87d",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x532f27101965dd16442e59d40670faf5ebb142e4",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x532f27101965dd16442e59d40670faf5ebb142e4.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x532f27101965dd16442e59d40670faf5ebb142e4.png"
+ ],
+ "name": "Brett",
+ "symbol": "BRETT",
+ "marketCap": "52141259.957469586091513051",
+ "price": "0.00526168934173603467",
+ "priceChange24hPercent": "0.29",
+ "volume24h": "6261.40786903798878754",
+ "communityRecognized": true,
+ "key": "evm--8453:0x532f27101965dd16442e59d40670faf5ebb142e4",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0xac1bd2486aaf3b5c0fc3fd868558b082a531b2b4",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xac1bd2486aaf3b5c0fc3fd868558b082a531b2b4.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xac1bd2486aaf3b5c0fc3fd868558b082a531b2b4.png"
+ ],
+ "name": "Toshi",
+ "symbol": "TOSHI",
+ "marketCap": "52758550.185044143037974778",
+ "price": "0.00012541071969388395",
+ "priceChange24hPercent": "-0.14",
+ "volume24h": "11927.605377090801185752",
+ "communityRecognized": true,
+ "key": "evm--8453:0xac1bd2486aaf3b5c0fc3fd868558b082a531b2b4",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0xb9a1e52f3ed678b01ff5e256fde43f26f9c01ba3",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/e197c8a7a314decbaf37781a61fd599c28af10d94a6c939ee8c059c102bdc6e6",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/e197c8a7a314decbaf37781a61fd599c28af10d94a6c939ee8c059c102bdc6e6"
+ ],
+ "name": "Homebase",
+ "symbol": "HOME",
+ "marketCap": "1152165.148124647866121165",
+ "price": "0.00001152165148124648",
+ "priceChange24hPercent": "2.65",
+ "volume24h": "2458.069741383045654142",
+ "communityRecognized": false,
+ "key": "evm--8453:0xb9a1e52f3ed678b01ff5e256fde43f26f9c01ba3",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x50da645f148798f68ef2d7db7c1cb22a6819bb2c",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x50da645f148798f68ef2d7db7c1cb22a6819bb2c.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x50da645f148798f68ef2d7db7c1cb22a6819bb2c.png"
+ ],
+ "name": "SPX6900",
+ "symbol": "SPX",
+ "marketCap": "14363785.685294872142258963",
+ "price": "0.54235088153971126766",
+ "priceChange24hPercent": "1.39",
+ "volume24h": "2740.311790106247080059",
+ "communityRecognized": true,
+ "key": "evm--8453:0x50da645f148798f68ef2d7db7c1cb22a6819bb2c",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x764a726d9ced0433a8d7643335919deb03a9a935",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x764a726d9ced0433a8d7643335919deb03a9a935-1724822100033.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x764a726d9ced0433a8d7643335919deb03a9a935-1724822100033.png"
+ ],
+ "name": "Pocket Network",
+ "symbol": "POKT",
+ "marketCap": "337367.060028771238441248",
+ "price": "0.00769259891575875321",
+ "priceChange24hPercent": "0.55",
+ "volume24h": "3614.589186389839623",
+ "communityRecognized": true,
+ "key": "evm--8453:0x764a726d9ced0433a8d7643335919deb03a9a935",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x6b2504a03ca4d43d0d73776f6ad46dab2f2a4cfd",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x6b2504a03ca4d43d0d73776f6ad46dab2f2a4cfd-1732331051328.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x6b2504a03ca4d43d0d73776f6ad46dab2f2a4cfd-1732331051328.png"
+ ],
+ "name": "Unit 00 - Rei",
+ "symbol": "REI",
+ "marketCap": "15211379.164992615033789018",
+ "price": "0.01521137916499261503",
+ "priceChange24hPercent": "-2.24",
+ "volume24h": "33758.214551817751876476",
+ "communityRecognized": false,
+ "key": "evm--8453:0x6b2504a03ca4d43d0d73776f6ad46dab2f2a4cfd",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x5cda0e1ca4ce2af96315f7f8963c85399c172204",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x5cda0e1ca4ce2af96315f7f8963c85399c172204-1771585371108.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x5cda0e1ca4ce2af96315f7f8963c85399c172204-1771585371108.png"
+ ],
+ "name": "Wrapped Coinbase Global Inc ST0x",
+ "symbol": "wtCOIN",
+ "marketCap": "254186.754760467533453862",
+ "price": "189.26939063034043881527",
+ "priceChange24hPercent": "-0.31",
+ "volume24h": "10120.107722145067695159",
+ "communityRecognized": false,
+ "key": "evm--8453:0x5cda0e1ca4ce2af96315f7f8963c85399c172204",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x752c5a95d202972e124390f30a50154409d3c858",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x752c5a95d202972e124390f30a50154409d3c858-1775819380261.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x752c5a95d202972e124390f30a50154409d3c858-1775819380261.png"
+ ],
+ "name": "OFC",
+ "symbol": "OFC",
+ "marketCap": "8538932.214325266439617746",
+ "price": "0.00853893222311206679",
+ "priceChange24hPercent": "1.44",
+ "volume24h": "605.418622",
+ "communityRecognized": true,
+ "key": "evm--8453:0x752c5a95d202972e124390f30a50154409d3c858",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0xa749de6c28262b7ffbc5de27dc845dd7ecd2b358",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xa749de6c28262b7ffbc5de27dc845dd7ecd2b358-1766738515943.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xa749de6c28262b7ffbc5de27dc845dd7ecd2b358-1766738515943.png"
+ ],
+ "name": "zkVerify",
+ "symbol": "VFY",
+ "marketCap": "1433487.247413803402996721",
+ "price": "0.00801609748445997526",
+ "priceChange24hPercent": "0.07",
+ "volume24h": "1207.432416",
+ "communityRecognized": true,
+ "key": "evm--8453:0xa749de6c28262b7ffbc5de27dc845dd7ecd2b358",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x9e00fc92493451eba1c63dd3880d68b622037ba3",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x9e00fc92493451eba1c63dd3880d68b622037ba3-1786626056354.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x9e00fc92493451eba1c63dd3880d68b622037ba3-1786626056354.png"
+ ],
+ "name": "A Society For AI Agents",
+ "symbol": "1F916",
+ "marketCap": "1488594.583259108552358875",
+ "price": "0.00001488594583259109",
+ "priceChange24hPercent": "18.77",
+ "volume24h": "21065.23847244160659096",
+ "communityRecognized": false,
+ "key": "evm--8453:0x9e00fc92493451eba1c63dd3880d68b622037ba3",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0xac485391eb2d7d88253a7f1ef18c37f4242d1a24",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xac485391eb2d7d88253a7f1ef18c37f4242d1a24-1761044406667.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xac485391eb2d7d88253a7f1ef18c37f4242d1a24-1761044406667.png"
+ ],
+ "name": "Lisk",
+ "symbol": "LSK",
+ "marketCap": "149461.02156388111367342",
+ "price": "0.0992662755130416178",
+ "priceChange24hPercent": "0.05",
+ "volume24h": "708.5268285581060674",
+ "communityRecognized": true,
+ "key": "evm--8453:0xac485391eb2d7d88253a7f1ef18c37f4242d1a24",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0xf43eb8de897fbc7f2502483b2bef7bb9ea179229",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xf43eb8de897fbc7f2502483b2bef7bb9ea179229-1757667269982.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xf43eb8de897fbc7f2502483b2bef7bb9ea179229-1757667269982.png"
+ ],
+ "name": "Horizen",
+ "symbol": "ZEN",
+ "marketCap": "128111264.611485623594030233",
+ "price": "6.98909118493305241645",
+ "priceChange24hPercent": "0.28",
+ "volume24h": "324741.490224259163159436",
+ "communityRecognized": true,
+ "key": "evm--8453:0xf43eb8de897fbc7f2502483b2bef7bb9ea179229",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x4f9fd6be4a90f2620860d680c0d4d5fb53d1a825",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x4f9fd6be4a90f2620860d680c0d4d5fb53d1a825-1731991500071.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x4f9fd6be4a90f2620860d680c0d4d5fb53d1a825-1731991500071.png"
+ ],
+ "name": "aixbt by Virtuals",
+ "symbol": "AIXBT",
+ "marketCap": "22091112.461957922867079219",
+ "price": "0.02220974753633014417",
+ "priceChange24hPercent": "-0.44",
+ "volume24h": "910.02087914090181818",
+ "communityRecognized": true,
+ "key": "evm--8453:0x4f9fd6be4a90f2620860d680c0d4d5fb53d1a825",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x7be44338b50591868ef8f469d448467b5c99901d",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/a41e01a821db504ce1ae80211e74349b5817274098108a514c485c55a2ce65e8",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/a41e01a821db504ce1ae80211e74349b5817274098108a514c485c55a2ce65e8"
+ ],
+ "name": "Hunter Biden's Laptop",
+ "symbol": "LAPTOP",
+ "marketCap": "21725.925254301478120545",
+ "price": "0.00002172592525430148",
+ "priceChange24hPercent": "-8.41",
+ "volume24h": "1396.9649067176960585",
+ "communityRecognized": false,
+ "key": "evm--8453:0x7be44338b50591868ef8f469d448467b5c99901d",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x85635006d808030e97f3174c8ea1b4aa1f1feba3",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x85635006d808030e97f3174c8ea1b4aa1f1feba3-1780484439832.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x85635006d808030e97f3174c8ea1b4aa1f1feba3-1780484439832.png"
+ ],
+ "name": "Venice Deity",
+ "symbol": "VVVeity",
+ "marketCap": "153806.338943495338283455",
+ "price": "0.00000153817289347337",
+ "priceChange24hPercent": "-3.7",
+ "volume24h": "1105.91625332176495",
+ "communityRecognized": false,
+ "key": "evm--8453:0x85635006d808030e97f3174c8ea1b4aa1f1feba3",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x9eadbe35f3ee3bf3e28180070c429298a1b02f93",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x9eadbe35f3ee3bf3e28180070c429298a1b02f93-1761217472230.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x9eadbe35f3ee3bf3e28180070c429298a1b02f93-1761217472230.png"
+ ],
+ "name": "Limitless Official Token",
+ "symbol": "LMTS",
+ "marketCap": "9428363.910225808664242546",
+ "price": "0.07164482128715735343",
+ "priceChange24hPercent": "0.18",
+ "volume24h": "11494.558325333476278363",
+ "communityRecognized": true,
+ "key": "evm--8453:0x9eadbe35f3ee3bf3e28180070c429298a1b02f93",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x3ec2156d4c0a9cbdab4a016633b7bcf6a8d68ea2",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x3ec2156d4c0a9cbdab4a016633b7bcf6a8d68ea2-1757667219038.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x3ec2156d4c0a9cbdab4a016633b7bcf6a8d68ea2-1757667219038.png"
+ ],
+ "name": "DebtReliefBot",
+ "symbol": "DRB",
+ "marketCap": "24160034.358922219351579511",
+ "price": "0.00024162414034483379",
+ "priceChange24hPercent": "-6.82",
+ "volume24h": "36350.098777467455857914",
+ "communityRecognized": true,
+ "key": "evm--8453:0x3ec2156d4c0a9cbdab4a016633b7bcf6a8d68ea2",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x85eac631c800af804476b140f87039f742c28ba3",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x85eac631c800af804476b140f87039f742c28ba3-1776598570194.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x85eac631c800af804476b140f87039f742c28ba3-1776598570194.png"
+ ],
+ "name": "WOON",
+ "symbol": "WOON",
+ "marketCap": "1235271.967483925046547957",
+ "price": "0.00001235271967483925",
+ "priceChange24hPercent": "0.13",
+ "volume24h": "776.87613141396316365",
+ "communityRecognized": false,
+ "key": "evm--8453:0x85eac631c800af804476b140f87039f742c28ba3",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x1f16e03c1a5908818f47f6ee7bb16690b40d0671",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x1f16e03c1a5908818f47f6ee7bb16690b40d0671-1760612695963.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x1f16e03c1a5908818f47f6ee7bb16690b40d0671-1760612695963.png"
+ ],
+ "name": "Recall",
+ "symbol": "RECALL",
+ "marketCap": "14205131.13121361987021136",
+ "price": "0.04072844088116470751",
+ "priceChange24hPercent": "-0.34",
+ "volume24h": "3747.914267",
+ "communityRecognized": true,
+ "key": "evm--8453:0x1f16e03c1a5908818f47f6ee7bb16690b40d0671",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0xb3b32f9f8827d4634fe7d973fa1034ec9fddb3b3",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xb3b32f9f8827d4634fe7d973fa1034ec9fddb3b3-1757667425357.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xb3b32f9f8827d4634fe7d973fa1034ec9fddb3b3-1757667425357.png"
+ ],
+ "name": "B3",
+ "symbol": "B3",
+ "marketCap": "46101975.850460289782313152",
+ "price": "0.00046101985491984264",
+ "priceChange24hPercent": "0.5",
+ "volume24h": "5667.619506616370145194",
+ "communityRecognized": true,
+ "key": "evm--8453:0xb3b32f9f8827d4634fe7d973fa1034ec9fddb3b3",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0xb8147ce9b0dac5f8165785dec6494e57748e4b78",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xb8147ce9b0dac5f8165785dec6494e57748e4b78-1757667120022.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xb8147ce9b0dac5f8165785dec6494e57748e4b78-1757667120022.png"
+ ],
+ "name": "DCAI",
+ "symbol": "DCAI",
+ "marketCap": "125383335.476360032019945307",
+ "price": "1.2538333547636003202",
+ "priceChange24hPercent": "-0.16",
+ "volume24h": "843.10067603253129344",
+ "communityRecognized": false,
+ "key": "evm--8453:0xb8147ce9b0dac5f8165785dec6494e57748e4b78",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x98d0baa52b2d063e780de12f615f963fe8537553",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x98d0baa52b2d063e780de12f615f963fe8537553-1757667100599.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x98d0baa52b2d063e780de12f615f963fe8537553-1757667100599.png"
+ ],
+ "name": "KAITO",
+ "symbol": "KAITO",
+ "marketCap": "322471494.213727543377481806",
+ "price": "0.32247149523918689824",
+ "priceChange24hPercent": "0.69",
+ "volume24h": "4817.0783808846948412",
+ "communityRecognized": true,
+ "key": "evm--8453:0x98d0baa52b2d063e780de12f615f963fe8537553",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0xcb585250f852c6c6bf90434ab21a00f02833a4af",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xcb585250f852c6c6bf90434ab21a00f02833a4af-1757667143818.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xcb585250f852c6c6bf90434ab21a00f02833a4af-1757667143818.png"
+ ],
+ "name": "Coinbase Wrapped XRP",
+ "symbol": "cbXRP",
+ "marketCap": "172820953.497926337390032594",
+ "price": "1.39417693988245332438",
+ "priceChange24hPercent": "-1.31",
+ "volume24h": "58495.345414528712764397",
+ "communityRecognized": false,
+ "key": "evm--8453:0xcb585250f852c6c6bf90434ab21a00f02833a4af",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x624e2e7fdc8903165f64891672267ab0fcb98831",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x624e2e7fdc8903165f64891672267ab0fcb98831-1757667182323.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x624e2e7fdc8903165f64891672267ab0fcb98831-1757667182323.png"
+ ],
+ "name": "SoSoValue",
+ "symbol": "SOSO",
+ "marketCap": "22753679.363260796692054527",
+ "price": "0.30944416257485148625",
+ "priceChange24hPercent": "-0.01",
+ "volume24h": "84263.844057",
+ "communityRecognized": true,
+ "key": "evm--8453:0x624e2e7fdc8903165f64891672267ab0fcb98831",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x407a5fb66cb1b3d50004f7091c08a27b42ba6d6f",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x407a5fb66cb1b3d50004f7091c08a27b42ba6d6f-1772017308704.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x407a5fb66cb1b3d50004f7091c08a27b42ba6d6f-1772017308704.png"
+ ],
+ "name": "Robo Token",
+ "symbol": "ROBO",
+ "marketCap": "482859.304300151549599316",
+ "price": "0.01184959164639701158",
+ "priceChange24hPercent": "1.68",
+ "volume24h": "1326.377692360842338",
+ "communityRecognized": false,
+ "key": "evm--8453:0x407a5fb66cb1b3d50004f7091c08a27b42ba6d6f",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0xc0041ef357b183448b235a8ea73ce4e4ec8c265f",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xc0041ef357b183448b235a8ea73ce4e4ec8c265f.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xc0041ef357b183448b235a8ea73ce4e4ec8c265f.png"
+ ],
+ "name": "Cookie",
+ "symbol": "COOKIE",
+ "marketCap": "3012881.722110497048734948",
+ "price": "0.01145881385372818061",
+ "priceChange24hPercent": "0.16",
+ "volume24h": "633.686645963341969496",
+ "communityRecognized": true,
+ "key": "evm--8453:0xc0041ef357b183448b235a8ea73ce4e4ec8c265f",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x8c0d3adcf8ce094e1ae437557ec90a6374dc9bdd",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x8c0d3adcf8ce094e1ae437557ec90a6374dc9bdd-1773831756184.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x8c0d3adcf8ce094e1ae437557ec90a6374dc9bdd-1773831756184.png"
+ ],
+ "name": "OpenVPP",
+ "symbol": "OVPP",
+ "marketCap": "1990320.340161759129107805",
+ "price": "0.00199032034016175913",
+ "priceChange24hPercent": "-0.27",
+ "volume24h": "6893.4356871095304437",
+ "communityRecognized": false,
+ "key": "evm--8453:0x8c0d3adcf8ce094e1ae437557ec90a6374dc9bdd",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x688aee022aa544f150678b8e5720b6b96a9e9a2f",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x688aee022aa544f150678b8e5720b6b96a9e9a2f-1757667109744.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x688aee022aa544f150678b8e5720b6b96a9e9a2f-1757667109744.png"
+ ],
+ "name": "Syrup Token",
+ "symbol": "SYRUP",
+ "marketCap": "995765.586255187201348381",
+ "price": "0.23476840412301995283",
+ "priceChange24hPercent": "6.29",
+ "volume24h": "23541.70581395892477436",
+ "communityRecognized": true,
+ "key": "evm--8453:0x688aee022aa544f150678b8e5720b6b96a9e9a2f",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0xa0a8481fc246cd12f75227abb96220ff5360fad3",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xa0a8481fc246cd12f75227abb96220ff5360fad3-1764500596628.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xa0a8481fc246cd12f75227abb96220ff5360fad3-1764500596628.png"
+ ],
+ "name": "CoinMarketCap 20 Index DTF",
+ "symbol": "CMC20",
+ "marketCap": "610393.638473702936788147",
+ "price": "162.84709535666937316913",
+ "priceChange24hPercent": "-0.23",
+ "volume24h": "2260.257278147924764",
+ "communityRecognized": true,
+ "key": "evm--8453:0xa0a8481fc246cd12f75227abb96220ff5360fad3",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0xa53887f7e7c1bf5010b8627f1c1ba94fe7a5d6e0",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xa53887f7e7c1bf5010b8627f1c1ba94fe7a5d6e0-1770289629072.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xa53887f7e7c1bf5010b8627f1c1ba94fe7a5d6e0-1770289629072.png"
+ ],
+ "name": "Rainbow",
+ "symbol": "RNBW",
+ "marketCap": "6630916.945471507607921933",
+ "price": "0.03157579497843575051",
+ "priceChange24hPercent": "0.68",
+ "volume24h": "1364.9666547879982116",
+ "communityRecognized": true,
+ "key": "evm--8453:0xa53887f7e7c1bf5010b8627f1c1ba94fe7a5d6e0",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x3792dbdd07e87413247df995e692806aa13d3299",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x3792dbdd07e87413247df995e692806aa13d3299.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x3792dbdd07e87413247df995e692806aa13d3299.png"
+ ],
+ "name": "OMI Token",
+ "symbol": "OMI",
+ "marketCap": "13536483.572544776590695353",
+ "price": "0.00023215879228135392",
+ "priceChange24hPercent": "0.36",
+ "volume24h": "712.665922336453292",
+ "communityRecognized": true,
+ "key": "evm--8453:0x3792dbdd07e87413247df995e692806aa13d3299",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x7300b37dfdfab110d83290a29dfb31b1740219fe",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x7300b37dfdfab110d83290a29dfb31b1740219fe-1757667130740.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x7300b37dfdfab110d83290a29dfb31b1740219fe-1757667130740.png"
+ ],
+ "name": "Mamo",
+ "symbol": "MAMO",
+ "marketCap": "4652254.344445816854784532",
+ "price": "0.00770879703989104838",
+ "priceChange24hPercent": "0.46",
+ "volume24h": "772.152060066718675576",
+ "communityRecognized": true,
+ "key": "evm--8453:0x7300b37dfdfab110d83290a29dfb31b1740219fe",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0xa4a2e2ca3fbfe21aed83471d28b6f65a233c6e00",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xa4a2e2ca3fbfe21aed83471d28b6f65a233c6e00-1757667327909.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xa4a2e2ca3fbfe21aed83471d28b6f65a233c6e00-1757667327909.png"
+ ],
+ "name": "Ribbita by Virtuals",
+ "symbol": "TIBBIR",
+ "marketCap": "224197561.980597949193001739",
+ "price": "0.22430166357366588333",
+ "priceChange24hPercent": "-1.53",
+ "volume24h": "66420.397729125031819395",
+ "communityRecognized": true,
+ "key": "evm--8453:0xa4a2e2ca3fbfe21aed83471d28b6f65a233c6e00",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0xc0634090f2fe6c6d75e61be2b949464abb498973",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xc0634090f2fe6c6d75e61be2b949464abb498973-1757667219038.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xc0634090f2fe6c6d75e61be2b949464abb498973-1757667219038.png"
+ ],
+ "name": "Keeta",
+ "symbol": "KTA",
+ "marketCap": "45263371.92738397429739068",
+ "price": "0.07749364985572725103",
+ "priceChange24hPercent": "2.21",
+ "volume24h": "115784.69048457410977768",
+ "communityRecognized": true,
+ "key": "evm--8453:0xc0634090f2fe6c6d75e61be2b949464abb498973",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x9b5e262cf9bb04869ab40b19af91d2dc85761722",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x9b5e262cf9bb04869ab40b19af91d2dc85761722-1766574146201.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x9b5e262cf9bb04869ab40b19af91d2dc85761722-1766574146201.png"
+ ],
+ "name": "Nock",
+ "symbol": "NOCK",
+ "marketCap": "48712814.333334792165153839",
+ "price": "0.03236960146006352686",
+ "priceChange24hPercent": "0.05",
+ "volume24h": "43398.1946466063901222",
+ "communityRecognized": true,
+ "key": "evm--8453:0x9b5e262cf9bb04869ab40b19af91d2dc85761722",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x0c5142bc58f9a61ab8c3d2085dd2f4e550c5ce0b",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x0c5142bc58f9a61ab8c3d2085dd2f4e550c5ce0b-1728807300368.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x0c5142bc58f9a61ab8c3d2085dd2f4e550c5ce0b-1728807300368.png"
+ ],
+ "name": "RUSSELL",
+ "symbol": "RUSSELL",
+ "marketCap": "1805023.424568616554592883",
+ "price": "0.00185896412604427428",
+ "priceChange24hPercent": "-0.49",
+ "volume24h": "1415.0836809759854575",
+ "communityRecognized": false,
+ "key": "evm--8453:0x0c5142bc58f9a61ab8c3d2085dd2f4e550c5ce0b",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x15d0e0c55a3e7ee67152ad7e89acf164253ff68d",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x15d0e0c55a3e7ee67152ad7e89acf164253ff68d-1760785371220.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x15d0e0c55a3e7ee67152ad7e89acf164253ff68d-1760785371220.png"
+ ],
+ "name": "HYPE",
+ "symbol": "HYPE",
+ "marketCap": "2086009.960893256620993528",
+ "price": "83.9613718942313370726",
+ "priceChange24hPercent": "-0.19",
+ "volume24h": "22636.50376252271939782",
+ "communityRecognized": false,
+ "key": "evm--8453:0x15d0e0c55a3e7ee67152ad7e89acf164253ff68d",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0xef5997c2cf2f6c138196f8a6203afc335206b3c1",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xef5997c2cf2f6c138196f8a6203afc335206b3c1-1758117888754.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xef5997c2cf2f6c138196f8a6203afc335206b3c1-1758117888754.png"
+ ],
+ "name": "OWB",
+ "symbol": "OWB",
+ "marketCap": "1567724.87847029871586087",
+ "price": "0.01100155708872840071",
+ "priceChange24hPercent": "0.96",
+ "volume24h": "1923.621699",
+ "communityRecognized": false,
+ "key": "evm--8453:0xef5997c2cf2f6c138196f8a6203afc335206b3c1",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0xf3df0a31ec5ea438150987805e841f960b9471b6",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xf3df0a31ec5ea438150987805e841f960b9471b6-1734879841001.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xf3df0a31ec5ea438150987805e841f960b9471b6-1734879841001.png"
+ ],
+ "name": "WOO",
+ "symbol": "WOO",
+ "marketCap": "184946.393995983051197898",
+ "price": "0.01163383334587447762",
+ "priceChange24hPercent": "0.93",
+ "volume24h": "543.775598247747292124",
+ "communityRecognized": true,
+ "key": "evm--8453:0xf3df0a31ec5ea438150987805e841f960b9471b6",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x1f1c695f6b4a3f8b05f2492cef9474afb6d6ad69",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x1f1c695f6b4a3f8b05f2492cef9474afb6d6ad69-1757667097863.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x1f1c695f6b4a3f8b05f2492cef9474afb6d6ad69-1757667097863.png"
+ ],
+ "name": "Sally",
+ "symbol": "A1C",
+ "marketCap": "3034149.653053263685169522",
+ "price": "0.14448331683909482868",
+ "priceChange24hPercent": "-8.58",
+ "volume24h": "11047.53981822522130485",
+ "communityRecognized": false,
+ "key": "evm--8453:0x1f1c695f6b4a3f8b05f2492cef9474afb6d6ad69",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0xeb466342c4d449bc9f53a865d5cb90586f405215",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xeb466342c4d449bc9f53a865d5cb90586f405215.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xeb466342c4d449bc9f53a865d5cb90586f405215.png"
+ ],
+ "name": "Axelar Wrapped USDC",
+ "symbol": "axlUSDC",
+ "marketCap": "585937.916993708067716896",
+ "price": "1.00015944756471875019",
+ "priceChange24hPercent": "0",
+ "volume24h": "3939.3517940387859524",
+ "communityRecognized": false,
+ "key": "evm--8453:0xeb466342c4d449bc9f53a865d5cb90586f405215",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x6c240dda6b5c336df09a4d011139beaaa1ea2aa2",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x6c240dda6b5c336df09a4d011139beaaa1ea2aa2-1757667219038.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x6c240dda6b5c336df09a4d011139beaaa1ea2aa2-1757667219038.png"
+ ],
+ "name": "ether.fi governance token",
+ "symbol": "ETHFI",
+ "marketCap": "574801.053385841664420322",
+ "price": "0.58217113569314292645",
+ "priceChange24hPercent": "-0.4",
+ "volume24h": "1475.3177894313319631",
+ "communityRecognized": true,
+ "key": "evm--8453:0x6c240dda6b5c336df09a4d011139beaaa1ea2aa2",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x853a7c99227499dba9db8c3a02aa691afdebf841",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x853a7c99227499dba9db8c3a02aa691afdebf841-1757667221996.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x853a7c99227499dba9db8c3a02aa691afdebf841-1757667221996.png"
+ ],
+ "name": "Play",
+ "symbol": "PLAY",
+ "marketCap": "13573098.32802464041334227",
+ "price": "0.03634029003487186188",
+ "priceChange24hPercent": "0.16",
+ "volume24h": "59480.631882",
+ "communityRecognized": true,
+ "key": "evm--8453:0x853a7c99227499dba9db8c3a02aa691afdebf841",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0xbcff5af58099311135f183f1230f5f16bfacf464",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xbcff5af58099311135f183f1230f5f16bfacf464-1781607642159.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xbcff5af58099311135f183f1230f5f16bfacf464-1781607642159.png"
+ ],
+ "name": "Siren Coin",
+ "symbol": "SIREN",
+ "marketCap": "1241714.107341937439187951",
+ "price": "0.00248342821468387488",
+ "priceChange24hPercent": "-2.29",
+ "volume24h": "703.136854241060728094",
+ "communityRecognized": false,
+ "key": "evm--8453:0xbcff5af58099311135f183f1230f5f16bfacf464",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ }
+ ],
+ "trending|evm--8453|4h|all": [
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x0f61edbfe6cd86024c0f210c0695b08df55fdfc9",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x0f61edbfe6cd86024c0f210c0695b08df55fdfc9-1787230901831.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x0f61edbfe6cd86024c0f210c0695b08df55fdfc9-1787230901831.png"
+ ],
+ "name": "BaseStonk",
+ "symbol": "BSTONK",
+ "marketCap": "4007938.924999195295310463",
+ "price": "0.00449159458683672726",
+ "priceChange24hPercent": "6.31",
+ "volume24h": "109669.270089350058637739",
+ "communityRecognized": false,
+ "key": "evm--8453:0x0f61edbfe6cd86024c0f210c0695b08df55fdfc9",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x182fa643e5f29d5eca75e7b9cf9336a3fe4620b2",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x182fa643e5f29d5eca75e7b9cf9336a3fe4620b2-1781780745426.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x182fa643e5f29d5eca75e7b9cf9336a3fe4620b2-1781780745426.png"
+ ],
+ "name": "o1.exchange",
+ "symbol": "O",
+ "marketCap": "86335783.679999984367826181",
+ "price": "0.5395986479999999023",
+ "priceChange24hPercent": "-0.13",
+ "volume24h": "164862.2147959708536336",
+ "communityRecognized": true,
+ "key": "evm--8453:0x182fa643e5f29d5eca75e7b9cf9336a3fe4620b2",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0xab6363da0c80cef3ae105bd6241e30872355d021",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xab6363da0c80cef3ae105bd6241e30872355d021-1768648014135.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xab6363da0c80cef3ae105bd6241e30872355d021-1768648014135.png"
+ ],
+ "name": "Roll",
+ "symbol": "ROLL",
+ "marketCap": "18348293.089659240586468118",
+ "price": "0.1183760844494144554",
+ "priceChange24hPercent": "2.26",
+ "volume24h": "29794.368530182081548145",
+ "communityRecognized": true,
+ "key": "evm--8453:0xab6363da0c80cef3ae105bd6241e30872355d021",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x1a44233fae8d50f1aeb3a5d58dd426ff4814cb53",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x1a44233fae8d50f1aeb3a5d58dd426ff4814cb53-1785934801304.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x1a44233fae8d50f1aeb3a5d58dd426ff4814cb53-1785934801304.png"
+ ],
+ "name": "Squid",
+ "symbol": "QUID",
+ "marketCap": "9664218.415965016365917899",
+ "price": "0.06750773707845800003",
+ "priceChange24hPercent": "-2.47",
+ "volume24h": "30163.103139",
+ "communityRecognized": true,
+ "key": "evm--8453:0x1a44233fae8d50f1aeb3a5d58dd426ff4814cb53",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x1bc0c42215582d5a085795f4badbac3ff36d1bcb",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x1bc0c42215582d5a085795f4badbac3ff36d1bcb-1731288600091.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x1bc0c42215582d5a085795f4badbac3ff36d1bcb-1731288600091.png"
+ ],
+ "name": "tokenbot",
+ "symbol": "CLANKER",
+ "marketCap": "12928480.604798781901868544",
+ "price": "13.10836331093307467123",
+ "priceChange24hPercent": "1.3",
+ "volume24h": "17137.487153435286907828",
+ "communityRecognized": true,
+ "key": "evm--8453:0x1bc0c42215582d5a085795f4badbac3ff36d1bcb",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x6cb927b413068609853a539016f31deff6e9aba3",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x6cb927b413068609853a539016f31deff6e9aba3-1787922051197.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x6cb927b413068609853a539016f31deff6e9aba3-1787922051197.png"
+ ],
+ "name": "PrinterInkCoin",
+ "symbol": "PrinterInkCoin",
+ "marketCap": "83004.463937169341562813",
+ "price": "83004.4639371703004303805",
+ "priceChange24hPercent": "-0.66",
+ "volume24h": "645.596677024327257",
+ "communityRecognized": false,
+ "key": "evm--8453:0x6cb927b413068609853a539016f31deff6e9aba3",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0xb9a1e52f3ed678b01ff5e256fde43f26f9c01ba3",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/e197c8a7a314decbaf37781a61fd599c28af10d94a6c939ee8c059c102bdc6e6",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/e197c8a7a314decbaf37781a61fd599c28af10d94a6c939ee8c059c102bdc6e6"
+ ],
+ "name": "Homebase",
+ "symbol": "HOME",
+ "marketCap": "1152165.148124647866121165",
+ "price": "0.00001152165148124648",
+ "priceChange24hPercent": "7.78",
+ "volume24h": "5918.40829678358232861",
+ "communityRecognized": false,
+ "key": "evm--8453:0xb9a1e52f3ed678b01ff5e256fde43f26f9c01ba3",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x1ea8deb921aa6015f4938010c848140b98108dd2",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/00a064123e96063064250c614f69bf2c6edb8404c740d069035156a73d12f345",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/00a064123e96063064250c614f69bf2c6edb8404c740d069035156a73d12f345"
+ ],
+ "name": "vAPI Network",
+ "symbol": "vAPI",
+ "marketCap": "4572831.578206145279616954",
+ "price": "0.06901217241789399577",
+ "priceChange24hPercent": "-0.19",
+ "volume24h": "2661.3965317739619544",
+ "communityRecognized": false,
+ "key": "evm--8453:0x1ea8deb921aa6015f4938010c848140b98108dd2",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x001aad84c21a5cd4d696c56d44866e9703c43f77",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x001aad84c21a5cd4d696c56d44866e9703c43f77-1787144795420.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x001aad84c21a5cd4d696c56d44866e9703c43f77-1787144795420.png"
+ ],
+ "name": "Cluster Protocol",
+ "symbol": "CP",
+ "marketCap": "33358298.59549828667170448",
+ "price": "0.02436527785944727798",
+ "priceChange24hPercent": "20.78",
+ "volume24h": "1705055.233981273227886847",
+ "communityRecognized": true,
+ "key": "evm--8453:0x001aad84c21a5cd4d696c56d44866e9703c43f77",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x940181a94a35a4569e4529a3cdfb74e38fd98631",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x940181a94a35a4569e4529a3cdfb74e38fd98631.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x940181a94a35a4569e4529a3cdfb74e38fd98631.png"
+ ],
+ "name": "Aerodrome",
+ "symbol": "AERO",
+ "marketCap": "658141636.853802284056737422",
+ "price": "0.66687044093601599083",
+ "priceChange24hPercent": "5.86",
+ "volume24h": "8917796.688949329734324463",
+ "communityRecognized": true,
+ "key": "evm--8453:0x940181a94a35a4569e4529a3cdfb74e38fd98631",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x0b3e328455c4059eeb9e3f84b5543f74e24e7e1b",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x0b3e328455c4059eeb9e3f84b5543f74e24e7e1b.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x0b3e328455c4059eeb9e3f84b5543f74e24e7e1b.png"
+ ],
+ "name": "Virtual Protocol",
+ "symbol": "VIRTUAL",
+ "marketCap": "362405803.617855007639245042",
+ "price": "0.72917882068234822303",
+ "priceChange24hPercent": "1.39",
+ "volume24h": "3080886.651228436060023171",
+ "communityRecognized": true,
+ "key": "evm--8453:0x0b3e328455c4059eeb9e3f84b5543f74e24e7e1b",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0xfcd17ac4c4bf6a72c93018096f3fc09e66573ff9",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xfcd17ac4c4bf6a72c93018096f3fc09e66573ff9-1786712490719.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xfcd17ac4c4bf6a72c93018096f3fc09e66573ff9-1786712490719.png"
+ ],
+ "name": "Wrapped SK hynix Inc. ADR ST0x",
+ "symbol": "wtSKHY",
+ "marketCap": "27294.717298037084174171",
+ "price": "186.81340182767331365864",
+ "priceChange24hPercent": "1.96",
+ "volume24h": "1033.236698",
+ "communityRecognized": false,
+ "key": "evm--8453:0xfcd17ac4c4bf6a72c93018096f3fc09e66573ff9",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x88fb150bdc53a65fe94dea0c9ba0a6daf8c6e196",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x88fb150bdc53a65fe94dea0c9ba0a6daf8c6e196-1757667313556.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x88fb150bdc53a65fe94dea0c9ba0a6daf8c6e196-1757667313556.png"
+ ],
+ "name": "ChainLink Token",
+ "symbol": "LINK",
+ "marketCap": "2335832.918140703969459741",
+ "price": "12.6508949094410090813",
+ "priceChange24hPercent": "-0.82",
+ "volume24h": "17038.674964702268685906",
+ "communityRecognized": true,
+ "key": "evm--8453:0x88fb150bdc53a65fe94dea0c9ba0a6daf8c6e196",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x3722264ab15a1dfce5a5af89e6547f7949a8aba3",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x3722264ab15a1dfce5a5af89e6547f7949a8aba3-1777719665862.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x3722264ab15a1dfce5a5af89e6547f7949a8aba3-1777719665862.png"
+ ],
+ "name": "LienFi",
+ "symbol": "LFI",
+ "marketCap": "4796544.934863510452557522",
+ "price": "0.00007613587050626248",
+ "priceChange24hPercent": "-2.41",
+ "volume24h": "108175.366978387544339534",
+ "communityRecognized": false,
+ "key": "evm--8453:0x3722264ab15a1dfce5a5af89e6547f7949a8aba3",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0xa002e475acb822cfa4fb029fc475badd3811ab07",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/8bccbe6026be8958a66780b240b155b52b19b3ce62078ac3e3c8bcd3192cc968",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/8bccbe6026be8958a66780b240b155b52b19b3ce62078ac3e3c8bcd3192cc968"
+ ],
+ "name": "Laptop",
+ "symbol": "LAPTOP",
+ "marketCap": "8623286.318341761949939496",
+ "price": "0.00008623286318341762",
+ "priceChange24hPercent": "34943531696.5",
+ "volume24h": "23102523.475043775449104086",
+ "communityRecognized": false,
+ "key": "evm--8453:0xa002e475acb822cfa4fb029fc475badd3811ab07",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x352b850b733ab8bab50aed1dab5d22e3186ce984",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x352b850b733ab8bab50aed1dab5d22e3186ce984-1736307000621.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x352b850b733ab8bab50aed1dab5d22e3186ce984-1736307000621.png"
+ ],
+ "name": "1000x by Virtuals",
+ "symbol": "1000X",
+ "marketCap": "1997524.45764131650686302",
+ "price": "0.00203499557670207466",
+ "priceChange24hPercent": "3.26",
+ "volume24h": "2932.7764105284389392",
+ "communityRecognized": false,
+ "key": "evm--8453:0x352b850b733ab8bab50aed1dab5d22e3186ce984",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x56ab53b77f07da3af732150e8aec4783eb5bba7d",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x56ab53b77f07da3af732150e8aec4783eb5bba7d-1788354128601.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x56ab53b77f07da3af732150e8aec4783eb5bba7d-1788354128601.png"
+ ],
+ "name": "Umia",
+ "symbol": "UMIA",
+ "marketCap": "16429317.110577210198112484",
+ "price": "0.67471943813112648325",
+ "priceChange24hPercent": "-3.7",
+ "volume24h": "48368.70232285807538203",
+ "communityRecognized": true,
+ "key": "evm--8453:0x56ab53b77f07da3af732150e8aec4783eb5bba7d",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0xfcb58396bc4d188cd812d1f19d98ac2a58f38dbe",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/f5794d279776dfb3a4e91d35d504681f2e85c87f7a68600b62a076c2d88db65e",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/f5794d279776dfb3a4e91d35d504681f2e85c87f7a68600b62a076c2d88db65e"
+ ],
+ "name": "Cutecat",
+ "symbol": "CUTECAT",
+ "marketCap": "53319.500482584085143988",
+ "price": "0.00005331950048258409",
+ "priceChange24hPercent": "-5.27",
+ "volume24h": "2298.59700388572155824",
+ "communityRecognized": false,
+ "key": "evm--8453:0xfcb58396bc4d188cd812d1f19d98ac2a58f38dbe",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x3ec2156d4c0a9cbdab4a016633b7bcf6a8d68ea2",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x3ec2156d4c0a9cbdab4a016633b7bcf6a8d68ea2-1757667219038.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x3ec2156d4c0a9cbdab4a016633b7bcf6a8d68ea2-1757667219038.png"
+ ],
+ "name": "DebtReliefBot",
+ "symbol": "DRB",
+ "marketCap": "24160034.358922219351579511",
+ "price": "0.00024162414034483379",
+ "priceChange24hPercent": "-3.3",
+ "volume24h": "263479.418091508217465594",
+ "communityRecognized": true,
+ "key": "evm--8453:0x3ec2156d4c0a9cbdab4a016633b7bcf6a8d68ea2",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x9e00fc92493451eba1c63dd3880d68b622037ba3",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x9e00fc92493451eba1c63dd3880d68b622037ba3-1786626056354.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x9e00fc92493451eba1c63dd3880d68b622037ba3-1786626056354.png"
+ ],
+ "name": "A Society For AI Agents",
+ "symbol": "1F916",
+ "marketCap": "1488594.583259108552358875",
+ "price": "0.00001488594583259109",
+ "priceChange24hPercent": "38.05",
+ "volume24h": "102519.847056987654424597",
+ "communityRecognized": false,
+ "key": "evm--8453:0x9e00fc92493451eba1c63dd3880d68b622037ba3",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0xa46dfacc9129c62704b75c3e9914a1db3364ba5e",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/ace48847e868bee6f8730809637ad88dcf320d3b44e91ddf0d0683cbd326f498",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/ace48847e868bee6f8730809637ad88dcf320d3b44e91ddf0d0683cbd326f498"
+ ],
+ "name": "Basestocks.fi",
+ "symbol": "BST",
+ "marketCap": "47886.040695560018713052",
+ "price": "0.00004788604070291127",
+ "priceChange24hPercent": "50.78",
+ "volume24h": "14064.3707483055704265",
+ "communityRecognized": false,
+ "key": "evm--8453:0xa46dfacc9129c62704b75c3e9914a1db3364ba5e",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0xacfe6019ed1a7dc6f7b508c02d1b04ec88cc21bf",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xacfe6019ed1a7dc6f7b508c02d1b04ec88cc21bf-1757667200619.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xacfe6019ed1a7dc6f7b508c02d1b04ec88cc21bf-1757667200619.png"
+ ],
+ "name": "Venice Token",
+ "symbol": "VVV",
+ "marketCap": "856673436.750078298169062052",
+ "price": "17.81036746540506978652",
+ "priceChange24hPercent": "-3.25",
+ "volume24h": "2163124.221706019258761198",
+ "communityRecognized": true,
+ "key": "evm--8453:0xacfe6019ed1a7dc6f7b508c02d1b04ec88cc21bf",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0xfb31f85a8367210b2e4ed2360d2da9dc2d2ccc95",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xfb31f85a8367210b2e4ed2360d2da9dc2d2ccc95-1763031927566.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xfb31f85a8367210b2e4ed2360d2da9dc2d2ccc95-1763031927566.png"
+ ],
+ "name": "Edel",
+ "symbol": "EDEL",
+ "marketCap": "6886442.132094868099033462",
+ "price": "0.01033485052099968844",
+ "priceChange24hPercent": "6.92",
+ "volume24h": "31718.119742853738386918",
+ "communityRecognized": true,
+ "key": "evm--8453:0xfb31f85a8367210b2e4ed2360d2da9dc2d2ccc95",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x020eaeee24bcad37cb9a01aa1f8c591c47341ba3",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x020eaeee24bcad37cb9a01aa1f8c591c47341ba3-1788440515710.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x020eaeee24bcad37cb9a01aa1f8c591c47341ba3-1788440515710.png"
+ ],
+ "name": "SETZ",
+ "symbol": "SETZ",
+ "marketCap": "467722.609477382948023255",
+ "price": "0.00000467722609477383",
+ "priceChange24hPercent": "-0.09",
+ "volume24h": "24928.752869010985883209",
+ "communityRecognized": false,
+ "key": "evm--8453:0x020eaeee24bcad37cb9a01aa1f8c591c47341ba3",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x296eb9c4d8fcbd00fbc6d5027e4202bf955fa76f",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x296eb9c4d8fcbd00fbc6d5027e4202bf955fa76f-1780830412474.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x296eb9c4d8fcbd00fbc6d5027e4202bf955fa76f-1780830412474.png"
+ ],
+ "name": "PEAK",
+ "symbol": "PEAK",
+ "marketCap": "219305.216308303990266927",
+ "price": "0.00029240695507773865",
+ "priceChange24hPercent": "1.6",
+ "volume24h": "2745.153087497657935",
+ "communityRecognized": false,
+ "key": "evm--8453:0x296eb9c4d8fcbd00fbc6d5027e4202bf955fa76f",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0xf3081494b87e8d5fb7960f066e931d1d0e6e3d67",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xf3081494b87e8d5fb7960f066e931d1d0e6e3d67-1787230913021.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xf3081494b87e8d5fb7960f066e931d1d0e6e3d67-1787230913021.png"
+ ],
+ "name": "Bittensor",
+ "symbol": "TAO",
+ "marketCap": "419294.298216799183892678",
+ "price": "256.9401350839333271334",
+ "priceChange24hPercent": "-1.77",
+ "volume24h": "23628.601991",
+ "communityRecognized": false,
+ "key": "evm--8453:0xf3081494b87e8d5fb7960f066e931d1d0e6e3d67",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x16ee7ecac70d1028e7712751e2ee6ba808a7dd92",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x16ee7ecac70d1028e7712751e2ee6ba808a7dd92-1766401243503.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x16ee7ecac70d1028e7712751e2ee6ba808a7dd92-1766401243503.png"
+ ],
+ "name": "Sport.fun",
+ "symbol": "FUN",
+ "marketCap": "3685735.113228658036819774",
+ "price": "0.02070637704061043841",
+ "priceChange24hPercent": "-0.36",
+ "volume24h": "10193.377336",
+ "communityRecognized": true,
+ "key": "evm--8453:0x16ee7ecac70d1028e7712751e2ee6ba808a7dd92",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x0555e30da8f98308edb960aa94c0db47230d2b9c",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x0555e30da8f98308edb960aa94c0db47230d2b9c-1757667160561.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x0555e30da8f98308edb960aa94c0db47230d2b9c-1757667160561.png"
+ ],
+ "name": "Wrapped BTC",
+ "symbol": "WBTC",
+ "marketCap": "5130714.681572329150926017",
+ "price": "78824.44709416919563900666",
+ "priceChange24hPercent": "-0.2",
+ "volume24h": "7378.338938703286746463",
+ "communityRecognized": true,
+ "key": "evm--8453:0x0555e30da8f98308edb960aa94c0db47230d2b9c",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x8ee73c484a26e0a5df2ee2a4960b789967dd0415",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x8ee73c484a26e0a5df2ee2a4960b789967dd0415-1757667273505.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x8ee73c484a26e0a5df2ee2a4960b789967dd0415-1757667273505.png"
+ ],
+ "name": "Curve DAO Token",
+ "symbol": "CRV",
+ "marketCap": "569000.285653014298597697",
+ "price": "0.36268877747502270663",
+ "priceChange24hPercent": "-2.11",
+ "volume24h": "7402.54523757757825417",
+ "communityRecognized": true,
+ "key": "evm--8453:0x8ee73c484a26e0a5df2ee2a4960b789967dd0415",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0xb3e3c89b8d9c88b1fe96856e382959ee6291ebba",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xb3e3c89b8d9c88b1fe96856e382959ee6291ebba-1735353000152.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xb3e3c89b8d9c88b1fe96856e382959ee6291ebba-1735353000152.png"
+ ],
+ "name": "Rekt",
+ "symbol": "REKT",
+ "marketCap": "487697.772010453461088474",
+ "price": "0.00000008549682996415",
+ "priceChange24hPercent": "0.02",
+ "volume24h": "3063.289130853507451111",
+ "communityRecognized": true,
+ "key": "evm--8453:0xb3e3c89b8d9c88b1fe96856e382959ee6291ebba",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0xf1e9baa65d418a9025e1851dd2d37f1ad208bba3",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xf1e9baa65d418a9025e1851dd2d37f1ad208bba3-1780485054872.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xf1e9baa65d418a9025e1851dd2d37f1ad208bba3-1780485054872.png"
+ ],
+ "name": "Ratspeak",
+ "symbol": "Ratspeak",
+ "marketCap": "1368250.772332282499041908",
+ "price": "0.00001425261221181126",
+ "priceChange24hPercent": "4.22",
+ "volume24h": "17925.325117805554407158",
+ "communityRecognized": false,
+ "key": "evm--8453:0xf1e9baa65d418a9025e1851dd2d37f1ad208bba3",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x1f16e03c1a5908818f47f6ee7bb16690b40d0671",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x1f16e03c1a5908818f47f6ee7bb16690b40d0671-1760612695963.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x1f16e03c1a5908818f47f6ee7bb16690b40d0671-1760612695963.png"
+ ],
+ "name": "Recall",
+ "symbol": "RECALL",
+ "marketCap": "14205131.13121361987021136",
+ "price": "0.04072844088116470751",
+ "priceChange24hPercent": "1.41",
+ "volume24h": "33601.0681408720359366",
+ "communityRecognized": true,
+ "key": "evm--8453:0x1f16e03c1a5908818f47f6ee7bb16690b40d0671",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x30c7235866872213f68cb1f08c37cb9eccb93452",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x30c7235866872213f68cb1f08c37cb9eccb93452-1757667345357.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x30c7235866872213f68cb1f08c37cb9eccb93452-1757667345357.png"
+ ],
+ "name": "Prompt",
+ "symbol": "PROMPT",
+ "marketCap": "3861471.580124962122825535",
+ "price": "0.02396495671913454759",
+ "priceChange24hPercent": "0.55",
+ "volume24h": "3685.2681072784823995",
+ "communityRecognized": true,
+ "key": "evm--8453:0x30c7235866872213f68cb1f08c37cb9eccb93452",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0xbf8e8f0e8866a7052f948c16508644347c57aba3",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xbf8e8f0e8866a7052f948c16508644347c57aba3-1773486075454.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xbf8e8f0e8866a7052f948c16508644347c57aba3-1773486075454.png"
+ ],
+ "name": "aeon",
+ "symbol": "aeon",
+ "marketCap": "1651073.629258943048542362",
+ "price": "0.00001651073638746874",
+ "priceChange24hPercent": "-0.59",
+ "volume24h": "2130.00354839453904921",
+ "communityRecognized": false,
+ "key": "evm--8453:0xbf8e8f0e8866a7052f948c16508644347c57aba3",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x3055913c90fcc1a6ce9a358911721eeb942013a1",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x3055913c90fcc1a6ce9a358911721eeb942013a1-1724908500044.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x3055913c90fcc1a6ce9a358911721eeb942013a1-1724908500044.png"
+ ],
+ "name": "PancakeSwap Token",
+ "symbol": "Cake",
+ "marketCap": "994282.72156555590317458",
+ "price": "2.22862379703736382748",
+ "priceChange24hPercent": "0.61",
+ "volume24h": "17612.659555705219588103",
+ "communityRecognized": true,
+ "key": "evm--8453:0x3055913c90fcc1a6ce9a358911721eeb942013a1",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0xdd468a1ddc392dcdbef6db6e34e89aa338f9f186",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xdd468a1ddc392dcdbef6db6e34e89aa338f9f186-1774436602836.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xdd468a1ddc392dcdbef6db6e34e89aa338f9f186-1774436602836.png"
+ ],
+ "name": "Mezo USD",
+ "symbol": "MUSD",
+ "marketCap": "1172505.02352292020766745",
+ "price": "0.98987899805982649907",
+ "priceChange24hPercent": "-0.03",
+ "volume24h": "4412.277775173599459",
+ "communityRecognized": false,
+ "key": "evm--8453:0xdd468a1ddc392dcdbef6db6e34e89aa338f9f186",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0xc6405d7a226e1c18e559be2f335f74c01ad07bf5",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xc6405d7a226e1c18e559be2f335f74c01ad07bf5-1788700788773.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xc6405d7a226e1c18e559be2f335f74c01ad07bf5-1788700788773.png"
+ ],
+ "name": "Stockify",
+ "symbol": "STFY",
+ "marketCap": "3983052.862173553761505087",
+ "price": "0.00398305286217355376",
+ "priceChange24hPercent": "51.75",
+ "volume24h": "119711.054762194287913324",
+ "communityRecognized": false,
+ "key": "evm--8453:0xc6405d7a226e1c18e559be2f335f74c01ad07bf5",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x2615a94df961278dcbc41fb0a54fec5f10a693ae",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x2615a94df961278dcbc41fb0a54fec5f10a693ae-1731723300159.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x2615a94df961278dcbc41fb0a54fec5f10a693ae-1731723300159.png"
+ ],
+ "name": "XRP (Universal)",
+ "symbol": "uXRP",
+ "marketCap": "2384466.984734847885614263",
+ "price": "1.38849992992956514409",
+ "priceChange24hPercent": "-0.62",
+ "volume24h": "1117.584078814074719999",
+ "communityRecognized": false,
+ "key": "evm--8453:0x2615a94df961278dcbc41fb0a54fec5f10a693ae",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x1217bfe6c773eec6cc4a38b5dc45b92292b6e189",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x1217bfe6c773eec6cc4a38b5dc45b92292b6e189-1757667084889.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x1217bfe6c773eec6cc4a38b5dc45b92292b6e189-1757667084889.png"
+ ],
+ "name": "OpenUSDT",
+ "symbol": "oUSDT",
+ "marketCap": "277857.038749700708089827",
+ "price": "0.99986595586957288418",
+ "priceChange24hPercent": "-0.1",
+ "volume24h": "95430.642840341549742066",
+ "communityRecognized": false,
+ "key": "evm--8453:0x1217bfe6c773eec6cc4a38b5dc45b92292b6e189",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x9b8df6e244526ab5f6e6400d331db28c8fdddb55",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x9b8df6e244526ab5f6e6400d331db28c8fdddb55-1725084900043.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x9b8df6e244526ab5f6e6400d331db28c8fdddb55-1725084900043.png"
+ ],
+ "name": "Solana (Universal)",
+ "symbol": "uSOL",
+ "marketCap": "2497361.299838751442067724",
+ "price": "103.98362705004751595894",
+ "priceChange24hPercent": "-0.55",
+ "volume24h": "32123.777574623453736221",
+ "communityRecognized": false,
+ "key": "evm--8453:0x9b8df6e244526ab5f6e6400d331db28c8fdddb55",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x9d0e8f5b25384c7310cb8c6ae32c8fbeb645d083",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x9d0e8f5b25384c7310cb8c6ae32c8fbeb645d083-1737003334236.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x9d0e8f5b25384c7310cb8c6ae32c8fbeb645d083-1737003334236.png"
+ ],
+ "name": "Derive",
+ "symbol": "DRV",
+ "marketCap": "25097941.048713283413694444",
+ "price": "0.16308594967932132455",
+ "priceChange24hPercent": "3.75",
+ "volume24h": "232953.308504516058255698",
+ "communityRecognized": true,
+ "key": "evm--8453:0x9d0e8f5b25384c7310cb8c6ae32c8fbeb645d083",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x5577a294ae5a21446a11b0e4100ca83803995720",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x5577a294ae5a21446a11b0e4100ca83803995720-1788701221016.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x5577a294ae5a21446a11b0e4100ca83803995720-1788701221016.png"
+ ],
+ "name": "Pump (Bankr Bridged)",
+ "symbol": "ba3PUMP",
+ "marketCap": "74247.325451718472425612",
+ "price": "0.00436796742123381222",
+ "priceChange24hPercent": "-0.29",
+ "volume24h": "4019.607205",
+ "communityRecognized": false,
+ "key": "evm--8453:0x5577a294ae5a21446a11b0e4100ca83803995720",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0xab964f7b7b6391bd6c4e8512ef00d01f255d9c0d",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xab964f7b7b6391bd6c4e8512ef00d01f255d9c0d-1730011500051.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xab964f7b7b6391bd6c4e8512ef00d01f255d9c0d-1730011500051.png"
+ ],
+ "name": "Prefrontal Cortex Convo Agent by Virtuals",
+ "symbol": "CONVO",
+ "marketCap": "746296.730078480786006529",
+ "price": "0.00081289772020289598",
+ "priceChange24hPercent": "2.57",
+ "volume24h": "1075.88832530992712629",
+ "communityRecognized": false,
+ "key": "evm--8453:0xab964f7b7b6391bd6c4e8512ef00d01f255d9c0d",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x79bbf4508b1391af3a0f4b30bb5fc4aa9ab0e07c",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x79bbf4508b1391af3a0f4b30bb5fc4aa9ab0e07c-1735965900062.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x79bbf4508b1391af3a0f4b30bb5fc4aa9ab0e07c-1735965900062.png"
+ ],
+ "name": "HeyAnon",
+ "symbol": "Anon",
+ "marketCap": "418216.063825616955509474",
+ "price": "0.26379025810398659701",
+ "priceChange24hPercent": "0.48",
+ "volume24h": "859.9219154149193085",
+ "communityRecognized": true,
+ "key": "evm--8453:0x79bbf4508b1391af3a0f4b30bb5fc4aa9ab0e07c",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x5ab3d4c385b400f3abb49e80de2faf6a88a7b691",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x5ab3d4c385b400f3abb49e80de2faf6a88a7b691-1735678408749.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x5ab3d4c385b400f3abb49e80de2faf6a88a7b691-1735678408749.png"
+ ],
+ "name": "FLock.io",
+ "symbol": "FLOCK",
+ "marketCap": "7996244.026812894169753812",
+ "price": "0.06207619062319993757",
+ "priceChange24hPercent": "-3.17",
+ "volume24h": "203883.148897334320596259",
+ "communityRecognized": true,
+ "key": "evm--8453:0x5ab3d4c385b400f3abb49e80de2faf6a88a7b691",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x85e90a5430af45776548adb82ee4cd9e33b08077",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x85e90a5430af45776548adb82ee4cd9e33b08077.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x85e90a5430af45776548adb82ee4cd9e33b08077.png"
+ ],
+ "name": "DINO",
+ "symbol": "DINO",
+ "marketCap": "1704817.310523718185209533",
+ "price": "0.00017048173105237182",
+ "priceChange24hPercent": "0.18",
+ "volume24h": "6353.559083219053028024",
+ "communityRecognized": false,
+ "key": "evm--8453:0x85e90a5430af45776548adb82ee4cd9e33b08077",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x696f9436b67233384889472cd7cd58a6fb5df4f1",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x696f9436b67233384889472cd7cd58a6fb5df4f1-1757667106590.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x696f9436b67233384889472cd7cd58a6fb5df4f1-1757667106590.png"
+ ],
+ "name": "Avantis",
+ "symbol": "AVNT",
+ "marketCap": "40179028.450264009308708623",
+ "price": "0.11393957875719524502",
+ "priceChange24hPercent": "6.8",
+ "volume24h": "136678.136453008344786068",
+ "communityRecognized": true,
+ "key": "evm--8453:0x696f9436b67233384889472cd7cd58a6fb5df4f1",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x752c5a95d202972e124390f30a50154409d3c858",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x752c5a95d202972e124390f30a50154409d3c858-1775819380261.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x752c5a95d202972e124390f30a50154409d3c858-1775819380261.png"
+ ],
+ "name": "OFC",
+ "symbol": "OFC",
+ "marketCap": "8538932.214325266439617746",
+ "price": "0.00853893222311206679",
+ "priceChange24hPercent": "1.73",
+ "volume24h": "1715.597377",
+ "communityRecognized": true,
+ "key": "evm--8453:0x752c5a95d202972e124390f30a50154409d3c858",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x4ed4e862860bed51a9570b96d89af5e1b0efefed",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x4ed4e862860bed51a9570b96d89af5e1b0efefed.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x4ed4e862860bed51a9570b96d89af5e1b0efefed.png"
+ ],
+ "name": "Degen",
+ "symbol": "DEGEN",
+ "marketCap": "39377962.393730743116383433",
+ "price": "0.00108793990733865399",
+ "priceChange24hPercent": "0.89",
+ "volume24h": "9317.788197331011680651",
+ "communityRecognized": true,
+ "key": "evm--8453:0x4ed4e862860bed51a9570b96d89af5e1b0efefed",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x6cd905df2ed214b22e0d48ff17cd4200c1c6d8a3",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x6cd905df2ed214b22e0d48ff17cd4200c1c6d8a3-1762340623166.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x6cd905df2ed214b22e0d48ff17cd4200c1c6d8a3-1762340623166.png"
+ ],
+ "name": "Intuition",
+ "symbol": "TRUST",
+ "marketCap": "10129283.497214801500560343",
+ "price": "0.05638411209557375288",
+ "priceChange24hPercent": "0.96",
+ "volume24h": "5670.58636",
+ "communityRecognized": true,
+ "key": "evm--8453:0x6cd905df2ed214b22e0d48ff17cd4200c1c6d8a3",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x5cda0e1ca4ce2af96315f7f8963c85399c172204",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x5cda0e1ca4ce2af96315f7f8963c85399c172204-1771585371108.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x5cda0e1ca4ce2af96315f7f8963c85399c172204-1771585371108.png"
+ ],
+ "name": "Wrapped Coinbase Global Inc ST0x",
+ "symbol": "wtCOIN",
+ "marketCap": "254186.754760467533453862",
+ "price": "189.26939063034043881527",
+ "priceChange24hPercent": "0.89",
+ "volume24h": "245253.123469077595723069",
+ "communityRecognized": false,
+ "key": "evm--8453:0x5cda0e1ca4ce2af96315f7f8963c85399c172204",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0xa1f72459dfa10bad200ac160ecd78c6b77a747be",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xa1f72459dfa10bad200ac160ecd78c6b77a747be-1769857806006.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xa1f72459dfa10bad200ac160ecd78c6b77a747be-1769857806006.png"
+ ],
+ "name": "CLAWNCH",
+ "symbol": "CLAWNCH",
+ "marketCap": "257196.824494973779747974",
+ "price": "0.00000258374597075594",
+ "priceChange24hPercent": "-3.31",
+ "volume24h": "2319.89938755741351163",
+ "communityRecognized": false,
+ "key": "evm--8453:0xa1f72459dfa10bad200ac160ecd78c6b77a747be",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0xc52aedec3374422d7510e294cfaa90799595cba3",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xc52aedec3374422d7510e294cfaa90799595cba3-1779274812235.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xc52aedec3374422d7510e294cfaa90799595cba3-1779274812235.png"
+ ],
+ "name": "Surplus Intelligence",
+ "symbol": "Surplus",
+ "marketCap": "3382534.022521815174089763",
+ "price": "0.00003382541330856353",
+ "priceChange24hPercent": "-5.65",
+ "volume24h": "10197.5459519235573395",
+ "communityRecognized": false,
+ "key": "evm--8453:0xc52aedec3374422d7510e294cfaa90799595cba3",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0xf83f2488376b072d4095852fc27c1d7788615d49",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/089b77ee67537414ac666b5d3a9cd70ef266a276abd6d64544c6aceae5aef2d5",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/089b77ee67537414ac666b5d3a9cd70ef266a276abd6d64544c6aceae5aef2d5"
+ ],
+ "name": "Google Wizard Cat",
+ "symbol": "MOMO",
+ "marketCap": "30568.953610554281228635",
+ "price": "0.0000323246535435723",
+ "priceChange24hPercent": "6.48",
+ "volume24h": "716.76280706273387445",
+ "communityRecognized": false,
+ "key": "evm--8453:0xf83f2488376b072d4095852fc27c1d7788615d49",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x50da645f148798f68ef2d7db7c1cb22a6819bb2c",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x50da645f148798f68ef2d7db7c1cb22a6819bb2c.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x50da645f148798f68ef2d7db7c1cb22a6819bb2c.png"
+ ],
+ "name": "SPX6900",
+ "symbol": "SPX",
+ "marketCap": "14363785.685294872142258963",
+ "price": "0.54235088153971126766",
+ "priceChange24hPercent": "-0.41",
+ "volume24h": "14731.997679484638827378",
+ "communityRecognized": true,
+ "key": "evm--8453:0x50da645f148798f68ef2d7db7c1cb22a6819bb2c",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0xf5f11bc9be9d6690f795d04d2fc9bdd097008a2b",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/f51dce715644a648b66fb92949956078926f240bddb2af258f35d3f0d8d66241",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/f51dce715644a648b66fb92949956078926f240bddb2af258f35d3f0d8d66241"
+ ],
+ "name": "basedpad.fun",
+ "symbol": "BPAD",
+ "marketCap": "291065.544044616879635393",
+ "price": "0.00034070477080070502",
+ "priceChange24hPercent": "-26.37",
+ "volume24h": "13544.732389875860668125",
+ "communityRecognized": false,
+ "key": "evm--8453:0xf5f11bc9be9d6690f795d04d2fc9bdd097008a2b",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x54f16bd3996169914c84dbb2a16635100cf48a0a",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x54f16bd3996169914c84dbb2a16635100cf48a0a-1778842983869.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x54f16bd3996169914c84dbb2a16635100cf48a0a-1778842983869.png"
+ ],
+ "name": "Peptai",
+ "symbol": "PEPTAI",
+ "marketCap": "2699930.655241683092524007",
+ "price": "0.26999306552416830925",
+ "priceChange24hPercent": "1.64",
+ "volume24h": "1814.723125720424395613",
+ "communityRecognized": false,
+ "key": "evm--8453:0x54f16bd3996169914c84dbb2a16635100cf48a0a",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x23a2847d772803f9efc64b4277b782b06296fe51",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x23a2847d772803f9efc64b4277b782b06296fe51-1781607721666.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x23a2847d772803f9efc64b4277b782b06296fe51-1781607721666.png"
+ ],
+ "name": "Dot",
+ "symbol": "DOT",
+ "marketCap": "2808658.471634364049829141",
+ "price": "0.00338032684968937133",
+ "priceChange24hPercent": "-1.19",
+ "volume24h": "55192.308616546758036821",
+ "communityRecognized": false,
+ "key": "evm--8453:0x23a2847d772803f9efc64b4277b782b06296fe51",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x9a26f5433671751c3276a065f57e5a02d2817973",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x9a26f5433671751c3276a065f57e5a02d2817973.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x9a26f5433671751c3276a065f57e5a02d2817973.png"
+ ],
+ "name": "Keyboard Cat",
+ "symbol": "KEYCAT",
+ "marketCap": "7188849.093615804048017137",
+ "price": "0.00071889730093917319",
+ "priceChange24hPercent": "-0.29",
+ "volume24h": "1778.654905162796332772",
+ "communityRecognized": true,
+ "key": "evm--8453:0x9a26f5433671751c3276a065f57e5a02d2817973",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0xc5fed7c8ccc75d8a72b601a66dffd7a489073f0b",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xc5fed7c8ccc75d8a72b601a66dffd7a489073f0b-1764068796834.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xc5fed7c8ccc75d8a72b601a66dffd7a489073f0b-1764068796834.png"
+ ],
+ "name": "ACU",
+ "symbol": "ACU",
+ "marketCap": "234484.020627272349750803",
+ "price": "0.148385968279971767",
+ "priceChange24hPercent": "1.6",
+ "volume24h": "34711.613826740620580837",
+ "communityRecognized": true,
+ "key": "evm--8453:0xc5fed7c8ccc75d8a72b601a66dffd7a489073f0b",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x1aa8fd5bcce2231c6100d55bf8b377cff33acfc3",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x1aa8fd5bcce2231c6100d55bf8b377cff33acfc3-1762772563008.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x1aa8fd5bcce2231c6100d55bf8b377cff33acfc3-1762772563008.png"
+ ],
+ "name": "RaveDAO",
+ "symbol": "RAVE",
+ "marketCap": "5622235.397298745197937301",
+ "price": "0.24997547844193722538",
+ "priceChange24hPercent": "-0.7",
+ "volume24h": "23380.504596",
+ "communityRecognized": true,
+ "key": "evm--8453:0x1aa8fd5bcce2231c6100d55bf8b377cff33acfc3",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x00f3c42833c3170159af4e92dbb451fb3f708917",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x00f3c42833c3170159af4e92dbb451fb3f708917-1757667396668.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x00f3c42833c3170159af4e92dbb451fb3f708917-1757667396668.png"
+ ],
+ "name": "ICP",
+ "symbol": "ICP",
+ "marketCap": "804715.386932750684455888",
+ "price": "3.03139152906059961695",
+ "priceChange24hPercent": "0.55",
+ "volume24h": "257824.508997802908058448",
+ "communityRecognized": true,
+ "key": "evm--8453:0x00f3c42833c3170159af4e92dbb451fb3f708917",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x6985884c4392d348587b19cb9eaaf157f13271cd",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x6985884c4392d348587b19cb9eaaf157f13271cd-1721965709443.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x6985884c4392d348587b19cb9eaaf157f13271cd-1721965709443.png"
+ ],
+ "name": "LayerZero",
+ "symbol": "ZRO",
+ "marketCap": "6920458.000810112126587131",
+ "price": "1.13521434355973562164",
+ "priceChange24hPercent": "0.18",
+ "volume24h": "111675.481237575260440864",
+ "communityRecognized": true,
+ "key": "evm--8453:0x6985884c4392d348587b19cb9eaaf157f13271cd",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x6b2504a03ca4d43d0d73776f6ad46dab2f2a4cfd",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x6b2504a03ca4d43d0d73776f6ad46dab2f2a4cfd-1732331051328.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x6b2504a03ca4d43d0d73776f6ad46dab2f2a4cfd-1732331051328.png"
+ ],
+ "name": "Unit 00 - Rei",
+ "symbol": "REI",
+ "marketCap": "15211379.164992615033789018",
+ "price": "0.01521137916499261503",
+ "priceChange24hPercent": "-4.57",
+ "volume24h": "75041.977447183736044465",
+ "communityRecognized": false,
+ "key": "evm--8453:0x6b2504a03ca4d43d0d73776f6ad46dab2f2a4cfd",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x39cd7417080695f4e49b64f6f243b7804a0ea8ef",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x39cd7417080695f4e49b64f6f243b7804a0ea8ef-1779447867556.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x39cd7417080695f4e49b64f6f243b7804a0ea8ef-1779447867556.png"
+ ],
+ "name": "LSteak",
+ "symbol": "LSTEAK",
+ "marketCap": "167994.877415679392584726",
+ "price": "0.86017433297763662756",
+ "priceChange24hPercent": "2.46",
+ "volume24h": "18416.846517987029091439",
+ "communityRecognized": false,
+ "key": "evm--8453:0x39cd7417080695f4e49b64f6f243b7804a0ea8ef",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x63706e401c06ac8513145b7687a14804d17f814b",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x63706e401c06ac8513145b7687a14804d17f814b-1757667080547.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x63706e401c06ac8513145b7687a14804d17f814b-1757667080547.png"
+ ],
+ "name": "Aave Token",
+ "symbol": "AAVE",
+ "marketCap": "4545144.926885475787393735",
+ "price": "130.93372905399936573433",
+ "priceChange24hPercent": "-0.93",
+ "volume24h": "31640.158939249411230631",
+ "communityRecognized": true,
+ "key": "evm--8453:0x63706e401c06ac8513145b7687a14804d17f814b",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0xb166e8b140d35d9d8226e40c09f757bac5a4d87d",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xb166e8b140d35d9d8226e40c09f757bac5a4d87d.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xb166e8b140d35d9d8226e40c09f757bac5a4d87d.png"
+ ],
+ "name": "Non-Playable Coin",
+ "symbol": "NPC",
+ "marketCap": "5355719.591537464906403182",
+ "price": "0.01825318252882716056",
+ "priceChange24hPercent": "-3.16",
+ "volume24h": "16817.188119803860579502",
+ "communityRecognized": true,
+ "key": "evm--8453:0xb166e8b140d35d9d8226e40c09f757bac5a4d87d",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x4dcdf3451dfc114991283c2e5b72823d69882ba3",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/1ccd3933dca97d9cb594193ce6db2f19dfe7b63f8ca7881de4a1889207091161",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/1ccd3933dca97d9cb594193ce6db2f19dfe7b63f8ca7881de4a1889207091161"
+ ],
+ "name": "Free Bots",
+ "symbol": "Bots",
+ "marketCap": "273462.850508281296945587",
+ "price": "0.00000273462850508281",
+ "priceChange24hPercent": "-2.64",
+ "volume24h": "2813.722788088564616809",
+ "communityRecognized": false,
+ "key": "evm--8453:0x4dcdf3451dfc114991283c2e5b72823d69882ba3",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x7f2f00e54dcaa8b248bdfd75da2ae859d4d8ff3e",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x7f2f00e54dcaa8b248bdfd75da2ae859d4d8ff3e-1784027379406.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x7f2f00e54dcaa8b248bdfd75da2ae859d4d8ff3e-1784027379406.png"
+ ],
+ "name": "TAOT",
+ "symbol": "TAOT",
+ "marketCap": "80494506.833981288667786697",
+ "price": "0.32197802733592515467",
+ "priceChange24hPercent": "0.59",
+ "volume24h": "1762.514001",
+ "communityRecognized": false,
+ "key": "evm--8453:0x7f2f00e54dcaa8b248bdfd75da2ae859d4d8ff3e",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x7be44338b50591868ef8f469d448467b5c99901d",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/a41e01a821db504ce1ae80211e74349b5817274098108a514c485c55a2ce65e8",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/a41e01a821db504ce1ae80211e74349b5817274098108a514c485c55a2ce65e8"
+ ],
+ "name": "Hunter Biden's Laptop",
+ "symbol": "LAPTOP",
+ "marketCap": "21725.925254301478120545",
+ "price": "0.00002172592525430148",
+ "priceChange24hPercent": "26.84",
+ "volume24h": "5005.0198431861429151",
+ "communityRecognized": false,
+ "key": "evm--8453:0x7be44338b50591868ef8f469d448467b5c99901d",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x2b11834ed1feaed4b4b3a86a6f571315e25a884d",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x2b11834ed1feaed4b4b3a86a6f571315e25a884d-1757667143818.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x2b11834ed1feaed4b4b3a86a6f571315e25a884d-1757667143818.png"
+ ],
+ "name": "Moca",
+ "symbol": "MOCA",
+ "marketCap": "883914.75335487484221987",
+ "price": "0.00878012335575261709",
+ "priceChange24hPercent": "0.24",
+ "volume24h": "2362.770796",
+ "communityRecognized": true,
+ "key": "evm--8453:0x2b11834ed1feaed4b4b3a86a6f571315e25a884d",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x764a726d9ced0433a8d7643335919deb03a9a935",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x764a726d9ced0433a8d7643335919deb03a9a935-1724822100033.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x764a726d9ced0433a8d7643335919deb03a9a935-1724822100033.png"
+ ],
+ "name": "Pocket Network",
+ "symbol": "POKT",
+ "marketCap": "337367.060028771238441248",
+ "price": "0.00769259891575875321",
+ "priceChange24hPercent": "1.83",
+ "volume24h": "5514.8009402937302382",
+ "communityRecognized": true,
+ "key": "evm--8453:0x764a726d9ced0433a8d7643335919deb03a9a935",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0xc08cd26474722ce93f4d0c34d16201461c10aa8c",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xc08cd26474722ce93f4d0c34d16201461c10aa8c-1728540000079.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xc08cd26474722ce93f4d0c34d16201461c10aa8c-1728540000079.png"
+ ],
+ "name": "CARV",
+ "symbol": "CARV",
+ "marketCap": "20688732.303840038554893076",
+ "price": "0.0366654931973830941",
+ "priceChange24hPercent": "0.38",
+ "volume24h": "1303.7251665475654243",
+ "communityRecognized": true,
+ "key": "evm--8453:0xc08cd26474722ce93f4d0c34d16201461c10aa8c",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0xbaa5cc21fd487b8fcc2f632f3f4e8d37262a0842",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xbaa5cc21fd487b8fcc2f632f3f4e8d37262a0842-1732156200557.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xbaa5cc21fd487b8fcc2f632f3f4e8d37262a0842-1732156200557.png"
+ ],
+ "name": "Morpho Token",
+ "symbol": "MORPHO",
+ "marketCap": "73407846.522022346282977983",
+ "price": "2.44896190806995330815",
+ "priceChange24hPercent": "-0.83",
+ "volume24h": "178496.776595845832781685",
+ "communityRecognized": true,
+ "key": "evm--8453:0xbaa5cc21fd487b8fcc2f632f3f4e8d37262a0842",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x768be13e1680b5ebe0024c42c896e3db59ec0149",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x768be13e1680b5ebe0024c42c896e3db59ec0149.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x768be13e1680b5ebe0024c42c896e3db59ec0149.png"
+ ],
+ "name": "SKI MASK DOG",
+ "symbol": "SKI",
+ "marketCap": "3064102.474366209906374827",
+ "price": "0.00309693917488133549",
+ "priceChange24hPercent": "-2.4",
+ "volume24h": "3039.14895810493755312",
+ "communityRecognized": true,
+ "key": "evm--8453:0x768be13e1680b5ebe0024c42c896e3db59ec0149",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x226a2fa2556c48245e57cd1cba4c6c9e67077dd2",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x226a2fa2556c48245e57cd1cba4c6c9e67077dd2-1757667219038.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x226a2fa2556c48245e57cd1cba4c6c9e67077dd2-1757667219038.png"
+ ],
+ "name": "BIO",
+ "symbol": "BIO",
+ "marketCap": "4967623.345623005329981658",
+ "price": "0.02720951374974361507",
+ "priceChange24hPercent": "-0.17",
+ "volume24h": "42594.613844351175803111",
+ "communityRecognized": true,
+ "key": "evm--8453:0x226a2fa2556c48245e57cd1cba4c6c9e67077dd2",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x53f39e5c53ee40bbc3da97c3b47bd2968d110a8d",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x53f39e5c53ee40bbc3da97c3b47bd2968d110a8d-1787317544384.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x53f39e5c53ee40bbc3da97c3b47bd2968d110a8d-1787317544384.png"
+ ],
+ "name": "Aligned Token",
+ "symbol": "ALIGN",
+ "marketCap": "3139670.813946540830622204",
+ "price": "0.00784258933830054385",
+ "priceChange24hPercent": "-7.72",
+ "volume24h": "9977.893739379909752707",
+ "communityRecognized": false,
+ "key": "evm--8453:0x53f39e5c53ee40bbc3da97c3b47bd2968d110a8d",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x16332535e2c27da578bc2e82beb09ce9d3c8eb07",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x16332535e2c27da578bc2e82beb09ce9d3c8eb07-1770809039917.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x16332535e2c27da578bc2e82beb09ce9d3c8eb07-1770809039917.png"
+ ],
+ "name": "ClawBank",
+ "symbol": "ClawBank",
+ "marketCap": "1127623.030737907936545092",
+ "price": "0.00001127623030748278",
+ "priceChange24hPercent": "6.5",
+ "volume24h": "2534.218165899697930386",
+ "communityRecognized": false,
+ "key": "evm--8453:0x16332535e2c27da578bc2e82beb09ce9d3c8eb07",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0xbcff5af58099311135f183f1230f5f16bfacf464",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xbcff5af58099311135f183f1230f5f16bfacf464-1781607642159.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xbcff5af58099311135f183f1230f5f16bfacf464-1781607642159.png"
+ ],
+ "name": "Siren Coin",
+ "symbol": "SIREN",
+ "marketCap": "1241714.107341937439187951",
+ "price": "0.00248342821468387488",
+ "priceChange24hPercent": "-1.04",
+ "volume24h": "1016.35118708615731466",
+ "communityRecognized": false,
+ "key": "evm--8453:0xbcff5af58099311135f183f1230f5f16bfacf464",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0xd71bbd77e90a8fb9a23e47f26dc6c30784ba6572",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xd71bbd77e90a8fb9a23e47f26dc6c30784ba6572-1788701572198.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xd71bbd77e90a8fb9a23e47f26dc6c30784ba6572-1788701572198.png"
+ ],
+ "name": "Kuma",
+ "symbol": "KUMA",
+ "marketCap": "103936.364733165399756919",
+ "price": "0.0001124307145261345",
+ "priceChange24hPercent": "10.04",
+ "volume24h": "2860.576365409627107486",
+ "communityRecognized": false,
+ "key": "evm--8453:0xd71bbd77e90a8fb9a23e47f26dc6c30784ba6572",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x5875eee11cf8398102fdad704c9e96607675467a",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x5875eee11cf8398102fdad704c9e96607675467a-1734160500375.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x5875eee11cf8398102fdad704c9e96607675467a-1734160500375.png"
+ ],
+ "name": "Savings USDS",
+ "symbol": "sUSDS",
+ "marketCap": "224856276.435445889192414198",
+ "price": "1.10882688596123185365",
+ "priceChange24hPercent": "0",
+ "volume24h": "105751.5932050006219159",
+ "communityRecognized": false,
+ "key": "evm--8453:0x5875eee11cf8398102fdad704c9e96607675467a",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0xb0ffa8000886e57f86dd5264b9582b2ad87b2b91",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xb0ffa8000886e57f86dd5264b9582b2ad87b2b91.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xb0ffa8000886e57f86dd5264b9582b2ad87b2b91.png"
+ ],
+ "name": "Wormhole Token",
+ "symbol": "W",
+ "marketCap": "747202.032675757312870102",
+ "price": "0.01015341300646277109",
+ "priceChange24hPercent": "-1.16",
+ "volume24h": "2910.458015209630016551",
+ "communityRecognized": true,
+ "key": "evm--8453:0xb0ffa8000886e57f86dd5264b9582b2ad87b2b91",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0xa749de6c28262b7ffbc5de27dc845dd7ecd2b358",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xa749de6c28262b7ffbc5de27dc845dd7ecd2b358-1766738515943.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xa749de6c28262b7ffbc5de27dc845dd7ecd2b358-1766738515943.png"
+ ],
+ "name": "zkVerify",
+ "symbol": "VFY",
+ "marketCap": "1433487.247413803402996721",
+ "price": "0.00801609748445997526",
+ "priceChange24hPercent": "-0.06",
+ "volume24h": "5195.826396",
+ "communityRecognized": true,
+ "key": "evm--8453:0xa749de6c28262b7ffbc5de27dc845dd7ecd2b358",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0xad46308a6f6999bacc099f3029b77c352e772ba3",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xad46308a6f6999bacc099f3029b77c352e772ba3-1788181476321.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xad46308a6f6999bacc099f3029b77c352e772ba3-1788181476321.png"
+ ],
+ "name": "defi-native",
+ "symbol": "defi-native",
+ "marketCap": "221632.306685117066459175",
+ "price": "0.00000221632306685117",
+ "priceChange24hPercent": "-16.95",
+ "volume24h": "7292.449409072809638068",
+ "communityRecognized": false,
+ "key": "evm--8453:0xad46308a6f6999bacc099f3029b77c352e772ba3",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0xbf927b841994731c573bdf09ceb0c6b0aa887cdd",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xbf927b841994731c573bdf09ceb0c6b0aa887cdd-1757667322651.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xbf927b841994731c573bdf09ceb0c6b0aa887cdd-1757667322651.png"
+ ],
+ "name": "Velvet",
+ "symbol": "VELVET",
+ "marketCap": "1071823.926949795122170354",
+ "price": "0.0798891941969676081",
+ "priceChange24hPercent": "-0.43",
+ "volume24h": "109648.798331055206878",
+ "communityRecognized": true,
+ "key": "evm--8453:0xbf927b841994731c573bdf09ceb0c6b0aa887cdd",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x54330d28ca3357f294334bdc454a032e7f353416",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x54330d28ca3357f294334bdc454a032e7f353416-1757667273505.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x54330d28ca3357f294334bdc454a032e7f353416-1757667273505.png"
+ ],
+ "name": "Autonolas",
+ "symbol": "OLAS",
+ "marketCap": "339122.668987486467211949",
+ "price": "0.02781867477389578371",
+ "priceChange24hPercent": "0.1",
+ "volume24h": "10042.8722215553734953",
+ "communityRecognized": true,
+ "key": "evm--8453:0x54330d28ca3357f294334bdc454a032e7f353416",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x937a1cfaf0a3d9f5dc4d0927f72ee5e3e5f82a00",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x937a1cfaf0a3d9f5dc4d0927f72ee5e3e5f82a00-1757667355659.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x937a1cfaf0a3d9f5dc4d0927f72ee5e3e5f82a00-1757667355659.png"
+ ],
+ "name": "Cocoro",
+ "symbol": "Cocoro",
+ "marketCap": "1445193.941644469913353986",
+ "price": "0.0018127236646528315",
+ "priceChange24hPercent": "1.62",
+ "volume24h": "1620.0430819705245",
+ "communityRecognized": false,
+ "key": "evm--8453:0x937a1cfaf0a3d9f5dc4d0927f72ee5e3e5f82a00",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x5f980dcfc4c0fa3911554cf5ab288ed0eb13dba3",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x5f980dcfc4c0fa3911554cf5ab288ed0eb13dba3-1773486075454.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x5f980dcfc4c0fa3911554cf5ab288ed0eb13dba3-1773486075454.png"
+ ],
+ "name": "gitlawb",
+ "symbol": "GITLAWB",
+ "marketCap": "1610294.761478849110289969",
+ "price": "0.00001615713109050687",
+ "priceChange24hPercent": "-4.91",
+ "volume24h": "11197.052051260864918776",
+ "communityRecognized": false,
+ "key": "evm--8453:0x5f980dcfc4c0fa3911554cf5ab288ed0eb13dba3",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0xa0a8481fc246cd12f75227abb96220ff5360fad3",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xa0a8481fc246cd12f75227abb96220ff5360fad3-1764500596628.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xa0a8481fc246cd12f75227abb96220ff5360fad3-1764500596628.png"
+ ],
+ "name": "CoinMarketCap 20 Index DTF",
+ "symbol": "CMC20",
+ "marketCap": "610393.638473702936788147",
+ "price": "162.84709535666937316913",
+ "priceChange24hPercent": "-0.36",
+ "volume24h": "13843.28832327647103324",
+ "communityRecognized": true,
+ "key": "evm--8453:0xa0a8481fc246cd12f75227abb96220ff5360fad3",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0xc0634090f2fe6c6d75e61be2b949464abb498973",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xc0634090f2fe6c6d75e61be2b949464abb498973-1757667219038.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xc0634090f2fe6c6d75e61be2b949464abb498973-1757667219038.png"
+ ],
+ "name": "Keeta",
+ "symbol": "KTA",
+ "marketCap": "45263371.92738397429739068",
+ "price": "0.07749364985572725103",
+ "priceChange24hPercent": "3.59",
+ "volume24h": "198599.409799512854342431",
+ "communityRecognized": true,
+ "key": "evm--8453:0xc0634090f2fe6c6d75e61be2b949464abb498973",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0xa99f6e6785da0f5d6fb42495fe424bce029eeb3e",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xa99f6e6785da0f5d6fb42495fe424bce029eeb3e-1735017300059.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xa99f6e6785da0f5d6fb42495fe424bce029eeb3e-1735017300059.png"
+ ],
+ "name": "Pendle",
+ "symbol": "PENDLE",
+ "marketCap": "1266732.04833089394230691",
+ "price": "2.18284202595136507002",
+ "priceChange24hPercent": "-2.87",
+ "volume24h": "34441.750548966502409361",
+ "communityRecognized": true,
+ "key": "evm--8453:0xa99f6e6785da0f5d6fb42495fe424bce029eeb3e",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x920e753d8d7d5b598063c89b6f06288803448d06",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x920e753d8d7d5b598063c89b6f06288803448d06-1764673316643.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x920e753d8d7d5b598063c89b6f06288803448d06-1764673316643.png"
+ ],
+ "name": "PlanetIX",
+ "symbol": "AIX",
+ "marketCap": "1077085.549400390153811558",
+ "price": "0.00456585650445269247",
+ "priceChange24hPercent": "3.6",
+ "volume24h": "1559.27249725637839256",
+ "communityRecognized": false,
+ "key": "evm--8453:0x920e753d8d7d5b598063c89b6f06288803448d06",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x9ce4331dad842609b77be76a322aebc0bb323222",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/df8152a4eb67e65d907729c55d663d70251b222ea9dd85017bf40b64b70f1a81",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/df8152a4eb67e65d907729c55d663d70251b222ea9dd85017bf40b64b70f1a81"
+ ],
+ "name": "Nikola",
+ "symbol": "NIKOLA",
+ "marketCap": "6953.704556166932065958",
+ "price": "0.00000695370455616693",
+ "priceChange24hPercent": "-5.78",
+ "volume24h": "2889.931769067415573223",
+ "communityRecognized": false,
+ "key": "evm--8453:0x9ce4331dad842609b77be76a322aebc0bb323222",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x1111111111166b7fe7bd91427724b487980afc69",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x1111111111166b7fe7bd91427724b487980afc69-1757667250366.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x1111111111166b7fe7bd91427724b487980afc69-1757667250366.png"
+ ],
+ "name": "Zora",
+ "symbol": "ZORA",
+ "marketCap": "37462242.634859692036956299",
+ "price": "0.00838081490900235055",
+ "priceChange24hPercent": "-1.18",
+ "volume24h": "128076.344774857769966077",
+ "communityRecognized": true,
+ "key": "evm--8453:0x1111111111166b7fe7bd91427724b487980afc69",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0xfbb75a59193a3525a8825bebe7d4b56899e2f7e1",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xfbb75a59193a3525a8825bebe7d4b56899e2f7e1.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xfbb75a59193a3525a8825bebe7d4b56899e2f7e1.png"
+ ],
+ "name": "ResearchCoin",
+ "symbol": "RSC",
+ "marketCap": "4991675.144629933201031277",
+ "price": "0.06002978882278599682",
+ "priceChange24hPercent": "0.57",
+ "volume24h": "1376.116712106729236688",
+ "communityRecognized": true,
+ "key": "evm--8453:0xfbb75a59193a3525a8825bebe7d4b56899e2f7e1",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x0c5142bc58f9a61ab8c3d2085dd2f4e550c5ce0b",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x0c5142bc58f9a61ab8c3d2085dd2f4e550c5ce0b-1728807300368.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x0c5142bc58f9a61ab8c3d2085dd2f4e550c5ce0b-1728807300368.png"
+ ],
+ "name": "RUSSELL",
+ "symbol": "RUSSELL",
+ "marketCap": "1805023.424568616554592883",
+ "price": "0.00185896412604427428",
+ "priceChange24hPercent": "-3.99",
+ "volume24h": "29581.922793906638493365",
+ "communityRecognized": false,
+ "key": "evm--8453:0x0c5142bc58f9a61ab8c3d2085dd2f4e550c5ce0b",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x85eac631c800af804476b140f87039f742c28ba3",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x85eac631c800af804476b140f87039f742c28ba3-1776598570194.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x85eac631c800af804476b140f87039f742c28ba3-1776598570194.png"
+ ],
+ "name": "WOON",
+ "symbol": "WOON",
+ "marketCap": "1235271.967483925046547957",
+ "price": "0.00001235271967483925",
+ "priceChange24hPercent": "0.32",
+ "volume24h": "2423.047567313827026838",
+ "communityRecognized": false,
+ "key": "evm--8453:0x85eac631c800af804476b140f87039f742c28ba3",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x11030f79109269d796fd0fb956d6244e502757f7",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x11030f79109269d796fd0fb956d6244e502757f7-1779879981401.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x11030f79109269d796fd0fb956d6244e502757f7-1779879981401.png"
+ ],
+ "name": "CTR",
+ "symbol": "CTR",
+ "marketCap": "10317208.420480187597943854",
+ "price": "0.01019128717917162601",
+ "priceChange24hPercent": "-1.57",
+ "volume24h": "122864.72972634320645203",
+ "communityRecognized": true,
+ "key": "evm--8453:0x11030f79109269d796fd0fb956d6244e502757f7",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0xff7f8f301f7a706e3cfd3d2275f5dc0b9ee8009b",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xff7f8f301f7a706e3cfd3d2275f5dc0b9ee8009b-1761760480675.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xff7f8f301f7a706e3cfd3d2275f5dc0b9ee8009b-1761760480675.png"
+ ],
+ "name": "Folks Finance",
+ "symbol": "FOLKS",
+ "marketCap": "358586.329645390364851485",
+ "price": "1.96133514851485148515",
+ "priceChange24hPercent": "-1.43",
+ "volume24h": "4324.254336",
+ "communityRecognized": true,
+ "key": "evm--8453:0xff7f8f301f7a706e3cfd3d2275f5dc0b9ee8009b",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x407a5fb66cb1b3d50004f7091c08a27b42ba6d6f",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x407a5fb66cb1b3d50004f7091c08a27b42ba6d6f-1772017308704.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x407a5fb66cb1b3d50004f7091c08a27b42ba6d6f-1772017308704.png"
+ ],
+ "name": "Robo Token",
+ "symbol": "ROBO",
+ "marketCap": "482859.304300151549599316",
+ "price": "0.01184959164639701158",
+ "priceChange24hPercent": "0.51",
+ "volume24h": "4433.51124674831654972",
+ "communityRecognized": false,
+ "key": "evm--8453:0x407a5fb66cb1b3d50004f7091c08a27b42ba6d6f",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ }
+ ],
+ "trending|evm--8453|24h|all": [
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x0f61edbfe6cd86024c0f210c0695b08df55fdfc9",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x0f61edbfe6cd86024c0f210c0695b08df55fdfc9-1787230901831.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x0f61edbfe6cd86024c0f210c0695b08df55fdfc9-1787230901831.png"
+ ],
+ "name": "BaseStonk",
+ "symbol": "BSTONK",
+ "marketCap": "4007938.924999195295310463",
+ "price": "0.00449159458683672726",
+ "priceChange24hPercent": "-41.22",
+ "volume24h": "1125344.527089769304228895",
+ "communityRecognized": false,
+ "key": "evm--8453:0x0f61edbfe6cd86024c0f210c0695b08df55fdfc9",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x001aad84c21a5cd4d696c56d44866e9703c43f77",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x001aad84c21a5cd4d696c56d44866e9703c43f77-1787144795420.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x001aad84c21a5cd4d696c56d44866e9703c43f77-1787144795420.png"
+ ],
+ "name": "Cluster Protocol",
+ "symbol": "CP",
+ "marketCap": "33358298.59549828667170448",
+ "price": "0.02436527785944727798",
+ "priceChange24hPercent": "14.92",
+ "volume24h": "2900055.075010855556772237",
+ "communityRecognized": true,
+ "key": "evm--8453:0x001aad84c21a5cd4d696c56d44866e9703c43f77",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0xf5f11bc9be9d6690f795d04d2fc9bdd097008a2b",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/f51dce715644a648b66fb92949956078926f240bddb2af258f35d3f0d8d66241",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/f51dce715644a648b66fb92949956078926f240bddb2af258f35d3f0d8d66241"
+ ],
+ "name": "basedpad.fun",
+ "symbol": "BPAD",
+ "marketCap": "291065.544044616879635393",
+ "price": "0.00034070477080070502",
+ "priceChange24hPercent": "25.22",
+ "volume24h": "141786.305942188290675094",
+ "communityRecognized": false,
+ "key": "evm--8453:0xf5f11bc9be9d6690f795d04d2fc9bdd097008a2b",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0xfcd17ac4c4bf6a72c93018096f3fc09e66573ff9",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xfcd17ac4c4bf6a72c93018096f3fc09e66573ff9-1786712490719.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xfcd17ac4c4bf6a72c93018096f3fc09e66573ff9-1786712490719.png"
+ ],
+ "name": "Wrapped SK hynix Inc. ADR ST0x",
+ "symbol": "wtSKHY",
+ "marketCap": "27294.717298037084174171",
+ "price": "186.81340182767331365864",
+ "priceChange24hPercent": "4.81",
+ "volume24h": "4601.01130620169552348",
+ "communityRecognized": false,
+ "key": "evm--8453:0xfcd17ac4c4bf6a72c93018096f3fc09e66573ff9",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x56ab53b77f07da3af732150e8aec4783eb5bba7d",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x56ab53b77f07da3af732150e8aec4783eb5bba7d-1788354128601.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x56ab53b77f07da3af732150e8aec4783eb5bba7d-1788354128601.png"
+ ],
+ "name": "Umia",
+ "symbol": "UMIA",
+ "marketCap": "16429317.110577210198112484",
+ "price": "0.67471943813112648325",
+ "priceChange24hPercent": "1.86",
+ "volume24h": "470582.27882386852253588",
+ "communityRecognized": true,
+ "key": "evm--8453:0x56ab53b77f07da3af732150e8aec4783eb5bba7d",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0xb200000000000000000000b8d3746d2e56596578",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/1dfc02b96f20f13bb84403a9a744f8a15ff2f0fdf60058db1653fbff834b2681",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/1dfc02b96f20f13bb84403a9a744f8a15ff2f0fdf60058db1653fbff834b2681"
+ ],
+ "name": "KittehCoin",
+ "symbol": "MEOW",
+ "marketCap": "158275.668599828043508142",
+ "price": "0.0001582756686239103",
+ "priceChange24hPercent": "-41.14",
+ "volume24h": "23163.578763630122288456",
+ "communityRecognized": false,
+ "key": "evm--8453:0xb200000000000000000000b8d3746d2e56596578",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x182fa643e5f29d5eca75e7b9cf9336a3fe4620b2",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x182fa643e5f29d5eca75e7b9cf9336a3fe4620b2-1781780745426.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x182fa643e5f29d5eca75e7b9cf9336a3fe4620b2-1781780745426.png"
+ ],
+ "name": "o1.exchange",
+ "symbol": "O",
+ "marketCap": "86335783.679999984367826181",
+ "price": "0.5395986479999999023",
+ "priceChange24hPercent": "1.54",
+ "volume24h": "776596.431224875497352804",
+ "communityRecognized": true,
+ "key": "evm--8453:0x182fa643e5f29d5eca75e7b9cf9336a3fe4620b2",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0xc52aedec3374422d7510e294cfaa90799595cba3",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xc52aedec3374422d7510e294cfaa90799595cba3-1779274812235.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xc52aedec3374422d7510e294cfaa90799595cba3-1779274812235.png"
+ ],
+ "name": "Surplus Intelligence",
+ "symbol": "Surplus",
+ "marketCap": "3382534.022521815174089763",
+ "price": "0.00003382541330856353",
+ "priceChange24hPercent": "-6.25",
+ "volume24h": "135444.161239600248561147",
+ "communityRecognized": false,
+ "key": "evm--8453:0xc52aedec3374422d7510e294cfaa90799595cba3",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x50caaef23732c1017cb7e37e3106824689757fb9",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/a09de3e352fbf06167f4d88ac1a086db1e836af00985d4451152ccf25d6c8f30",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/a09de3e352fbf06167f4d88ac1a086db1e836af00985d4451152ccf25d6c8f30"
+ ],
+ "name": "basedpair.fund",
+ "symbol": "BPAIR",
+ "marketCap": "99438.483363916435955976",
+ "price": "0.00009943848336391644",
+ "priceChange24hPercent": "3122.76",
+ "volume24h": "866915.141234104784947172",
+ "communityRecognized": false,
+ "key": "evm--8453:0x50caaef23732c1017cb7e37e3106824689757fb9",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0xa46dfacc9129c62704b75c3e9914a1db3364ba5e",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/ace48847e868bee6f8730809637ad88dcf320d3b44e91ddf0d0683cbd326f498",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/ace48847e868bee6f8730809637ad88dcf320d3b44e91ddf0d0683cbd326f498"
+ ],
+ "name": "Basestocks.fi",
+ "symbol": "BST",
+ "marketCap": "47886.040695560018713052",
+ "price": "0.00004788604070291127",
+ "priceChange24hPercent": "-23.54",
+ "volume24h": "47500.747724880926147802",
+ "communityRecognized": false,
+ "key": "evm--8453:0xa46dfacc9129c62704b75c3e9914a1db3364ba5e",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0xacfe6019ed1a7dc6f7b508c02d1b04ec88cc21bf",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xacfe6019ed1a7dc6f7b508c02d1b04ec88cc21bf-1757667200619.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xacfe6019ed1a7dc6f7b508c02d1b04ec88cc21bf-1757667200619.png"
+ ],
+ "name": "Venice Token",
+ "symbol": "VVV",
+ "marketCap": "856673436.750078298169062052",
+ "price": "17.81036746540506978652",
+ "priceChange24hPercent": "4.72",
+ "volume24h": "9694735.678822404116641892",
+ "communityRecognized": true,
+ "key": "evm--8453:0xacfe6019ed1a7dc6f7b508c02d1b04ec88cc21bf",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x940181a94a35a4569e4529a3cdfb74e38fd98631",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x940181a94a35a4569e4529a3cdfb74e38fd98631.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x940181a94a35a4569e4529a3cdfb74e38fd98631.png"
+ ],
+ "name": "Aerodrome",
+ "symbol": "AERO",
+ "marketCap": "658141636.853802284056737422",
+ "price": "0.66687044093601599083",
+ "priceChange24hPercent": "23.48",
+ "volume24h": "46680074.290640295146669344",
+ "communityRecognized": true,
+ "key": "evm--8453:0x940181a94a35a4569e4529a3cdfb74e38fd98631",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x1a91df4a970ebab1bb4af32eb6d10509028ee4b8",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x1a91df4a970ebab1bb4af32eb6d10509028ee4b8-1785409249772.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x1a91df4a970ebab1bb4af32eb6d10509028ee4b8-1785409249772.png"
+ ],
+ "name": "Wrapped Roundhill Memory ETF ST0x",
+ "symbol": "wtDRAM",
+ "marketCap": "14512.647542038476768878",
+ "price": "62.30018887897584405404",
+ "priceChange24hPercent": "5.19",
+ "volume24h": "3866.763212",
+ "communityRecognized": false,
+ "key": "evm--8453:0x1a91df4a970ebab1bb4af32eb6d10509028ee4b8",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x0fb07c88bc6d195c196279523957c004eb868248",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x0fb07c88bc6d195c196279523957c004eb868248-1779188488767.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x0fb07c88bc6d195c196279523957c004eb868248-1779188488767.png"
+ ],
+ "name": "SPARK",
+ "symbol": "SPARK",
+ "marketCap": "1501239.948544950930622826",
+ "price": "0.00151517173971451816",
+ "priceChange24hPercent": "-4.18",
+ "volume24h": "12591.90129532060919965",
+ "communityRecognized": false,
+ "key": "evm--8453:0x0fb07c88bc6d195c196279523957c004eb868248",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x3722264ab15a1dfce5a5af89e6547f7949a8aba3",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x3722264ab15a1dfce5a5af89e6547f7949a8aba3-1777719665862.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x3722264ab15a1dfce5a5af89e6547f7949a8aba3-1777719665862.png"
+ ],
+ "name": "LienFi",
+ "symbol": "LFI",
+ "marketCap": "4796544.934863510452557522",
+ "price": "0.00007613587050626248",
+ "priceChange24hPercent": "-4.38",
+ "volume24h": "248724.227751251435660598",
+ "communityRecognized": false,
+ "key": "evm--8453:0x3722264ab15a1dfce5a5af89e6547f7949a8aba3",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x9e00fc92493451eba1c63dd3880d68b622037ba3",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x9e00fc92493451eba1c63dd3880d68b622037ba3-1786626056354.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x9e00fc92493451eba1c63dd3880d68b622037ba3-1786626056354.png"
+ ],
+ "name": "A Society For AI Agents",
+ "symbol": "1F916",
+ "marketCap": "1488594.583259108552358875",
+ "price": "0.00001488594583259109",
+ "priceChange24hPercent": "175.97",
+ "volume24h": "266751.138669428709921397",
+ "communityRecognized": false,
+ "key": "evm--8453:0x9e00fc92493451eba1c63dd3880d68b622037ba3",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x1a44233fae8d50f1aeb3a5d58dd426ff4814cb53",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x1a44233fae8d50f1aeb3a5d58dd426ff4814cb53-1785934801304.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x1a44233fae8d50f1aeb3a5d58dd426ff4814cb53-1785934801304.png"
+ ],
+ "name": "Squid",
+ "symbol": "QUID",
+ "marketCap": "9664218.415965016365917899",
+ "price": "0.06750773707845800003",
+ "priceChange24hPercent": "0.45",
+ "volume24h": "368303.978259",
+ "communityRecognized": true,
+ "key": "evm--8453:0x1a44233fae8d50f1aeb3a5d58dd426ff4814cb53",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x1bc0c42215582d5a085795f4badbac3ff36d1bcb",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x1bc0c42215582d5a085795f4badbac3ff36d1bcb-1731288600091.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x1bc0c42215582d5a085795f4badbac3ff36d1bcb-1731288600091.png"
+ ],
+ "name": "tokenbot",
+ "symbol": "CLANKER",
+ "marketCap": "12928480.604798781901868544",
+ "price": "13.10836331093307467123",
+ "priceChange24hPercent": "0.16",
+ "volume24h": "206588.414905620129396617",
+ "communityRecognized": true,
+ "key": "evm--8453:0x1bc0c42215582d5a085795f4badbac3ff36d1bcb",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x1ea8deb921aa6015f4938010c848140b98108dd2",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/00a064123e96063064250c614f69bf2c6edb8404c740d069035156a73d12f345",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/00a064123e96063064250c614f69bf2c6edb8404c740d069035156a73d12f345"
+ ],
+ "name": "vAPI Network",
+ "symbol": "vAPI",
+ "marketCap": "4572831.578206145279616954",
+ "price": "0.06901217241789399577",
+ "priceChange24hPercent": "4.24",
+ "volume24h": "36382.8417296863469108",
+ "communityRecognized": false,
+ "key": "evm--8453:0x1ea8deb921aa6015f4938010c848140b98108dd2",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x6cb927b413068609853a539016f31deff6e9aba3",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x6cb927b413068609853a539016f31deff6e9aba3-1787922051197.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x6cb927b413068609853a539016f31deff6e9aba3-1787922051197.png"
+ ],
+ "name": "PrinterInkCoin",
+ "symbol": "PrinterInkCoin",
+ "marketCap": "83004.463937169341562813",
+ "price": "83004.4639371703004303805",
+ "priceChange24hPercent": "-8.73",
+ "volume24h": "2401.7037412564622665",
+ "communityRecognized": false,
+ "key": "evm--8453:0x6cb927b413068609853a539016f31deff6e9aba3",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0xab6363da0c80cef3ae105bd6241e30872355d021",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xab6363da0c80cef3ae105bd6241e30872355d021-1768648014135.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xab6363da0c80cef3ae105bd6241e30872355d021-1768648014135.png"
+ ],
+ "name": "Roll",
+ "symbol": "ROLL",
+ "marketCap": "18348293.089659240586468118",
+ "price": "0.1183760844494144554",
+ "priceChange24hPercent": "-4.47",
+ "volume24h": "70346.050235889863314287",
+ "communityRecognized": true,
+ "key": "evm--8453:0xab6363da0c80cef3ae105bd6241e30872355d021",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x0b3e328455c4059eeb9e3f84b5543f74e24e7e1b",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x0b3e328455c4059eeb9e3f84b5543f74e24e7e1b.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x0b3e328455c4059eeb9e3f84b5543f74e24e7e1b.png"
+ ],
+ "name": "Virtual Protocol",
+ "symbol": "VIRTUAL",
+ "marketCap": "362405803.617855007639245042",
+ "price": "0.72917882068234822303",
+ "priceChange24hPercent": "1.84",
+ "volume24h": "16840670.705694693664953989",
+ "communityRecognized": true,
+ "key": "evm--8453:0x0b3e328455c4059eeb9e3f84b5543f74e24e7e1b",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x3ec2156d4c0a9cbdab4a016633b7bcf6a8d68ea2",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x3ec2156d4c0a9cbdab4a016633b7bcf6a8d68ea2-1757667219038.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x3ec2156d4c0a9cbdab4a016633b7bcf6a8d68ea2-1757667219038.png"
+ ],
+ "name": "DebtReliefBot",
+ "symbol": "DRB",
+ "marketCap": "24160034.358922219351579511",
+ "price": "0.00024162414034483379",
+ "priceChange24hPercent": "-8.88",
+ "volume24h": "1610372.502474621101165845",
+ "communityRecognized": true,
+ "key": "evm--8453:0x3ec2156d4c0a9cbdab4a016633b7bcf6a8d68ea2",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x88fb150bdc53a65fe94dea0c9ba0a6daf8c6e196",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x88fb150bdc53a65fe94dea0c9ba0a6daf8c6e196-1757667313556.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x88fb150bdc53a65fe94dea0c9ba0a6daf8c6e196-1757667313556.png"
+ ],
+ "name": "ChainLink Token",
+ "symbol": "LINK",
+ "marketCap": "2335832.918140703969459741",
+ "price": "12.6508949094410090813",
+ "priceChange24hPercent": "-2.75",
+ "volume24h": "336018.154466173087586042",
+ "communityRecognized": true,
+ "key": "evm--8453:0x88fb150bdc53a65fe94dea0c9ba0a6daf8c6e196",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0xf3081494b87e8d5fb7960f066e931d1d0e6e3d67",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xf3081494b87e8d5fb7960f066e931d1d0e6e3d67-1787230913021.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xf3081494b87e8d5fb7960f066e931d1d0e6e3d67-1787230913021.png"
+ ],
+ "name": "Bittensor",
+ "symbol": "TAO",
+ "marketCap": "419294.298216799183892678",
+ "price": "256.9401350839333271334",
+ "priceChange24hPercent": "-4.37",
+ "volume24h": "255047.805294",
+ "communityRecognized": false,
+ "key": "evm--8453:0xf3081494b87e8d5fb7960f066e931d1d0e6e3d67",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0xbf8e8f0e8866a7052f948c16508644347c57aba3",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xbf8e8f0e8866a7052f948c16508644347c57aba3-1773486075454.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xbf8e8f0e8866a7052f948c16508644347c57aba3-1773486075454.png"
+ ],
+ "name": "aeon",
+ "symbol": "aeon",
+ "marketCap": "1651073.629258943048542362",
+ "price": "0.00001651073638746874",
+ "priceChange24hPercent": "-2.18",
+ "volume24h": "47148.047323247077780986",
+ "communityRecognized": false,
+ "key": "evm--8453:0xbf8e8f0e8866a7052f948c16508644347c57aba3",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x63706e401c06ac8513145b7687a14804d17f814b",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x63706e401c06ac8513145b7687a14804d17f814b-1757667080547.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x63706e401c06ac8513145b7687a14804d17f814b-1757667080547.png"
+ ],
+ "name": "Aave Token",
+ "symbol": "AAVE",
+ "marketCap": "4545144.926885475787393735",
+ "price": "130.93372905399936573433",
+ "priceChange24hPercent": "-1.62",
+ "volume24h": "522723.64622119217437831",
+ "communityRecognized": true,
+ "key": "evm--8453:0x63706e401c06ac8513145b7687a14804d17f814b",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x7be44338b50591868ef8f469d448467b5c99901d",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/a41e01a821db504ce1ae80211e74349b5817274098108a514c485c55a2ce65e8",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/a41e01a821db504ce1ae80211e74349b5817274098108a514c485c55a2ce65e8"
+ ],
+ "name": "Hunter Biden's Laptop",
+ "symbol": "LAPTOP",
+ "marketCap": "21725.925254301478120545",
+ "price": "0.00002172592525430148",
+ "priceChange24hPercent": "421.63",
+ "volume24h": "141188.712827927444965221",
+ "communityRecognized": false,
+ "key": "evm--8453:0x7be44338b50591868ef8f469d448467b5c99901d",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x5f980dcfc4c0fa3911554cf5ab288ed0eb13dba3",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x5f980dcfc4c0fa3911554cf5ab288ed0eb13dba3-1773486075454.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x5f980dcfc4c0fa3911554cf5ab288ed0eb13dba3-1773486075454.png"
+ ],
+ "name": "gitlawb",
+ "symbol": "GITLAWB",
+ "marketCap": "1610294.761478849110289969",
+ "price": "0.00001615713109050687",
+ "priceChange24hPercent": "-10.17",
+ "volume24h": "87471.860573636612303976",
+ "communityRecognized": false,
+ "key": "evm--8453:0x5f980dcfc4c0fa3911554cf5ab288ed0eb13dba3",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x18a8bd1fe17a1bb9ffb39ecd83e9489cfd17a022",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x18a8bd1fe17a1bb9ffb39ecd83e9489cfd17a022.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x18a8bd1fe17a1bb9ffb39ecd83e9489cfd17a022.png"
+ ],
+ "name": "Andy",
+ "symbol": "ANDY",
+ "marketCap": "340449.867112796212627146",
+ "price": "0.00034044990115778633",
+ "priceChange24hPercent": "-4.24",
+ "volume24h": "1154.71366234070497299",
+ "communityRecognized": false,
+ "key": "evm--8453:0x18a8bd1fe17a1bb9ffb39ecd83e9489cfd17a022",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x1111111111166b7fe7bd91427724b487980afc69",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x1111111111166b7fe7bd91427724b487980afc69-1757667250366.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x1111111111166b7fe7bd91427724b487980afc69-1757667250366.png"
+ ],
+ "name": "Zora",
+ "symbol": "ZORA",
+ "marketCap": "37462242.634859692036956299",
+ "price": "0.00838081490900235055",
+ "priceChange24hPercent": "3.71",
+ "volume24h": "1310817.202569941536692314",
+ "communityRecognized": true,
+ "key": "evm--8453:0x1111111111166b7fe7bd91427724b487980afc69",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x23a2847d772803f9efc64b4277b782b06296fe51",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x23a2847d772803f9efc64b4277b782b06296fe51-1781607721666.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x23a2847d772803f9efc64b4277b782b06296fe51-1781607721666.png"
+ ],
+ "name": "Dot",
+ "symbol": "DOT",
+ "marketCap": "2808658.471634364049829141",
+ "price": "0.00338032684968937133",
+ "priceChange24hPercent": "48.93",
+ "volume24h": "200073.434625603083920394",
+ "communityRecognized": false,
+ "key": "evm--8453:0x23a2847d772803f9efc64b4277b782b06296fe51",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0xfcb58396bc4d188cd812d1f19d98ac2a58f38dbe",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/f5794d279776dfb3a4e91d35d504681f2e85c87f7a68600b62a076c2d88db65e",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/f5794d279776dfb3a4e91d35d504681f2e85c87f7a68600b62a076c2d88db65e"
+ ],
+ "name": "Cutecat",
+ "symbol": "CUTECAT",
+ "marketCap": "53319.500482584085143988",
+ "price": "0.00005331950048258409",
+ "priceChange24hPercent": "-67.74",
+ "volume24h": "76586.800605678154782679",
+ "communityRecognized": false,
+ "key": "evm--8453:0xfcb58396bc4d188cd812d1f19d98ac2a58f38dbe",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x696f9436b67233384889472cd7cd58a6fb5df4f1",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x696f9436b67233384889472cd7cd58a6fb5df4f1-1757667106590.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x696f9436b67233384889472cd7cd58a6fb5df4f1-1757667106590.png"
+ ],
+ "name": "Avantis",
+ "symbol": "AVNT",
+ "marketCap": "40179028.450264009308708623",
+ "price": "0.11393957875719524502",
+ "priceChange24hPercent": "6.34",
+ "volume24h": "510794.765757306230408891",
+ "communityRecognized": true,
+ "key": "evm--8453:0x696f9436b67233384889472cd7cd58a6fb5df4f1",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x1aa8fd5bcce2231c6100d55bf8b377cff33acfc3",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x1aa8fd5bcce2231c6100d55bf8b377cff33acfc3-1762772563008.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x1aa8fd5bcce2231c6100d55bf8b377cff33acfc3-1762772563008.png"
+ ],
+ "name": "RaveDAO",
+ "symbol": "RAVE",
+ "marketCap": "5622235.397298745197937301",
+ "price": "0.24997547844193722538",
+ "priceChange24hPercent": "-1.35",
+ "volume24h": "106844.130193",
+ "communityRecognized": true,
+ "key": "evm--8453:0x1aa8fd5bcce2231c6100d55bf8b377cff33acfc3",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0xfca95aeb5bf44ae355806a5ad14659c940dc6bf7",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xfca95aeb5bf44ae355806a5ad14659c940dc6bf7-1757667238026.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xfca95aeb5bf44ae355806a5ad14659c940dc6bf7-1757667238026.png"
+ ],
+ "name": "SHIBA INU",
+ "symbol": "SHIB",
+ "marketCap": "567212.699294624132990433",
+ "price": "0.00000000084235115413",
+ "priceChange24hPercent": "3.14",
+ "volume24h": "4389.865785422797173257",
+ "communityRecognized": false,
+ "key": "evm--8453:0xfca95aeb5bf44ae355806a5ad14659c940dc6bf7",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0xac1bd2486aaf3b5c0fc3fd868558b082a531b2b4",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xac1bd2486aaf3b5c0fc3fd868558b082a531b2b4.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xac1bd2486aaf3b5c0fc3fd868558b082a531b2b4.png"
+ ],
+ "name": "Toshi",
+ "symbol": "TOSHI",
+ "marketCap": "52758550.185044143037974778",
+ "price": "0.00012541071969388395",
+ "priceChange24hPercent": "-3.29",
+ "volume24h": "443220.597522642545575572",
+ "communityRecognized": true,
+ "key": "evm--8453:0xac1bd2486aaf3b5c0fc3fd868558b082a531b2b4",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x16ee7ecac70d1028e7712751e2ee6ba808a7dd92",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x16ee7ecac70d1028e7712751e2ee6ba808a7dd92-1766401243503.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x16ee7ecac70d1028e7712751e2ee6ba808a7dd92-1766401243503.png"
+ ],
+ "name": "Sport.fun",
+ "symbol": "FUN",
+ "marketCap": "3685735.113228658036819774",
+ "price": "0.02070637704061043841",
+ "priceChange24hPercent": "-0.76",
+ "volume24h": "112125.21683862657241823",
+ "communityRecognized": true,
+ "key": "evm--8453:0x16ee7ecac70d1028e7712751e2ee6ba808a7dd92",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0xa002e475acb822cfa4fb029fc475badd3811ab07",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/8bccbe6026be8958a66780b240b155b52b19b3ce62078ac3e3c8bcd3192cc968",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/8bccbe6026be8958a66780b240b155b52b19b3ce62078ac3e3c8bcd3192cc968"
+ ],
+ "name": "Laptop",
+ "symbol": "LAPTOP",
+ "marketCap": "8623286.318341761949939496",
+ "price": "0.00008623286318341762",
+ "priceChange24hPercent": "34943531696.5",
+ "volume24h": "23102523.475043775449104086",
+ "communityRecognized": false,
+ "key": "evm--8453:0xa002e475acb822cfa4fb029fc475badd3811ab07",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x00f3c42833c3170159af4e92dbb451fb3f708917",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x00f3c42833c3170159af4e92dbb451fb3f708917-1757667396668.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x00f3c42833c3170159af4e92dbb451fb3f708917-1757667396668.png"
+ ],
+ "name": "ICP",
+ "symbol": "ICP",
+ "marketCap": "804715.386932750684455888",
+ "price": "3.03139152906059961695",
+ "priceChange24hPercent": "10.35",
+ "volume24h": "2722761.296688561089280021",
+ "communityRecognized": true,
+ "key": "evm--8453:0x00f3c42833c3170159af4e92dbb451fb3f708917",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x5cda0e1ca4ce2af96315f7f8963c85399c172204",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x5cda0e1ca4ce2af96315f7f8963c85399c172204-1771585371108.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x5cda0e1ca4ce2af96315f7f8963c85399c172204-1771585371108.png"
+ ],
+ "name": "Wrapped Coinbase Global Inc ST0x",
+ "symbol": "wtCOIN",
+ "marketCap": "254186.754760467533453862",
+ "price": "189.26939063034043881527",
+ "priceChange24hPercent": "1.12",
+ "volume24h": "518371.502133036606523431",
+ "communityRecognized": false,
+ "key": "evm--8453:0x5cda0e1ca4ce2af96315f7f8963c85399c172204",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x1217bfe6c773eec6cc4a38b5dc45b92292b6e189",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x1217bfe6c773eec6cc4a38b5dc45b92292b6e189-1757667084889.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x1217bfe6c773eec6cc4a38b5dc45b92292b6e189-1757667084889.png"
+ ],
+ "name": "OpenUSDT",
+ "symbol": "oUSDT",
+ "marketCap": "277857.038749700708089827",
+ "price": "0.99986595586957288418",
+ "priceChange24hPercent": "-0.01",
+ "volume24h": "427706.656123378385635366",
+ "communityRecognized": false,
+ "key": "evm--8453:0x1217bfe6c773eec6cc4a38b5dc45b92292b6e189",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0xdd468a1ddc392dcdbef6db6e34e89aa338f9f186",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xdd468a1ddc392dcdbef6db6e34e89aa338f9f186-1774436602836.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xdd468a1ddc392dcdbef6db6e34e89aa338f9f186-1774436602836.png"
+ ],
+ "name": "Mezo USD",
+ "symbol": "MUSD",
+ "marketCap": "1172505.02352292020766745",
+ "price": "0.98987899805982649907",
+ "priceChange24hPercent": "-0.09",
+ "volume24h": "39021.91431490874444357",
+ "communityRecognized": false,
+ "key": "evm--8453:0xdd468a1ddc392dcdbef6db6e34e89aa338f9f186",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x5577a294ae5a21446a11b0e4100ca83803995720",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x5577a294ae5a21446a11b0e4100ca83803995720-1788701221016.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x5577a294ae5a21446a11b0e4100ca83803995720-1788701221016.png"
+ ],
+ "name": "Pump (Bankr Bridged)",
+ "symbol": "ba3PUMP",
+ "marketCap": "74247.325451718472425612",
+ "price": "0.00436796742123381222",
+ "priceChange24hPercent": "9.62",
+ "volume24h": "26968.826531",
+ "communityRecognized": false,
+ "key": "evm--8453:0x5577a294ae5a21446a11b0e4100ca83803995720",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x5ab3d4c385b400f3abb49e80de2faf6a88a7b691",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x5ab3d4c385b400f3abb49e80de2faf6a88a7b691-1735678408749.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x5ab3d4c385b400f3abb49e80de2faf6a88a7b691-1735678408749.png"
+ ],
+ "name": "FLock.io",
+ "symbol": "FLOCK",
+ "marketCap": "7996244.026812894169753812",
+ "price": "0.06207619062319993757",
+ "priceChange24hPercent": "-16.08",
+ "volume24h": "1839069.158913827140022291",
+ "communityRecognized": true,
+ "key": "evm--8453:0x5ab3d4c385b400f3abb49e80de2faf6a88a7b691",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x0480dfeb876221ad9ab90d4687efd6d5d6c839c2",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/106dcd9b4b3f940c4e4881bc73705a8da4d0cf92fcea7833b56eb52add1b05d8",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/106dcd9b4b3f940c4e4881bc73705a8da4d0cf92fcea7833b56eb52add1b05d8"
+ ],
+ "name": "TZ Token",
+ "symbol": "TZ",
+ "marketCap": "878103.146534744075076858",
+ "price": "0.00778025027141945722",
+ "priceChange24hPercent": "127.09",
+ "volume24h": "9253.0940257094353022",
+ "communityRecognized": false,
+ "key": "evm--8453:0x0480dfeb876221ad9ab90d4687efd6d5d6c839c2",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0xeb466342c4d449bc9f53a865d5cb90586f405215",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xeb466342c4d449bc9f53a865d5cb90586f405215.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xeb466342c4d449bc9f53a865d5cb90586f405215.png"
+ ],
+ "name": "Axelar Wrapped USDC",
+ "symbol": "axlUSDC",
+ "marketCap": "585937.916993708067716896",
+ "price": "1.00015944756471875019",
+ "priceChange24hPercent": "0.03",
+ "volume24h": "92710.360176724249115312",
+ "communityRecognized": false,
+ "key": "evm--8453:0xeb466342c4d449bc9f53a865d5cb90586f405215",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x0555e30da8f98308edb960aa94c0db47230d2b9c",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x0555e30da8f98308edb960aa94c0db47230d2b9c-1757667160561.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x0555e30da8f98308edb960aa94c0db47230d2b9c-1757667160561.png"
+ ],
+ "name": "Wrapped BTC",
+ "symbol": "WBTC",
+ "marketCap": "5130714.681572329150926017",
+ "price": "78824.44709416919563900666",
+ "priceChange24hPercent": "-0.82",
+ "volume24h": "61221.452020880853505533",
+ "communityRecognized": true,
+ "key": "evm--8453:0x0555e30da8f98308edb960aa94c0db47230d2b9c",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0xf83f2488376b072d4095852fc27c1d7788615d49",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/089b77ee67537414ac666b5d3a9cd70ef266a276abd6d64544c6aceae5aef2d5",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/089b77ee67537414ac666b5d3a9cd70ef266a276abd6d64544c6aceae5aef2d5"
+ ],
+ "name": "Google Wizard Cat",
+ "symbol": "MOMO",
+ "marketCap": "30568.953610554281228635",
+ "price": "0.0000323246535435723",
+ "priceChange24hPercent": "-21.3",
+ "volume24h": "21602.428085467033190945",
+ "communityRecognized": false,
+ "key": "evm--8453:0xf83f2488376b072d4095852fc27c1d7788615d49",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x9e1028f5f1d5ede59748ffcee5532509976840e0",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x9e1028f5f1d5ede59748ffcee5532509976840e0-1725440265752.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x9e1028f5f1d5ede59748ffcee5532509976840e0-1725440265752.png"
+ ],
+ "name": "Compound",
+ "symbol": "COMP",
+ "marketCap": "199615.180593075020149228",
+ "price": "20.94241040349455886221",
+ "priceChange24hPercent": "-1.03",
+ "volume24h": "3681.48643037193628792",
+ "communityRecognized": true,
+ "key": "evm--8453:0x9e1028f5f1d5ede59748ffcee5532509976840e0",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0xb200000000000000000000dfea18f58cd9adbc01",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xb200000000000000000000dfea18f58cd9adbc01-1785236436954.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xb200000000000000000000dfea18f58cd9adbc01-1785236436954.png"
+ ],
+ "name": "HAYLORD",
+ "symbol": "HAYLORD",
+ "marketCap": "90072.303504673097690079",
+ "price": "0.00009007445865899228",
+ "priceChange24hPercent": "-17.56",
+ "volume24h": "5568.474298472664525299",
+ "communityRecognized": false,
+ "key": "evm--8453:0xb200000000000000000000dfea18f58cd9adbc01",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x0db510e79909666d6dec7f5e49370838c16d950f",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x0db510e79909666d6dec7f5e49370838c16d950f-1732156200557.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x0db510e79909666d6dec7f5e49370838c16d950f-1732156200557.png"
+ ],
+ "name": "Super Anon",
+ "symbol": "ANON",
+ "marketCap": "95456.980371849575501603",
+ "price": "0.00009943433454551863",
+ "priceChange24hPercent": "-34.67",
+ "volume24h": "9374.17874155452356465",
+ "communityRecognized": false,
+ "key": "evm--8453:0x0db510e79909666d6dec7f5e49370838c16d950f",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x532f27101965dd16442e59d40670faf5ebb142e4",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x532f27101965dd16442e59d40670faf5ebb142e4.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x532f27101965dd16442e59d40670faf5ebb142e4.png"
+ ],
+ "name": "Brett",
+ "symbol": "BRETT",
+ "marketCap": "52141259.957469586091513051",
+ "price": "0.00526168934173603467",
+ "priceChange24hPercent": "-2.33",
+ "volume24h": "277285.717870458177733064",
+ "communityRecognized": true,
+ "key": "evm--8453:0x532f27101965dd16442e59d40670faf5ebb142e4",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x020eaeee24bcad37cb9a01aa1f8c591c47341ba3",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x020eaeee24bcad37cb9a01aa1f8c591c47341ba3-1788440515710.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x020eaeee24bcad37cb9a01aa1f8c591c47341ba3-1788440515710.png"
+ ],
+ "name": "SETZ",
+ "symbol": "SETZ",
+ "marketCap": "467722.609477382948023255",
+ "price": "0.00000467722609477383",
+ "priceChange24hPercent": "-3.88",
+ "volume24h": "135778.925121308956154589",
+ "communityRecognized": false,
+ "key": "evm--8453:0x020eaeee24bcad37cb9a01aa1f8c591c47341ba3",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x4dcdf3451dfc114991283c2e5b72823d69882ba3",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/1ccd3933dca97d9cb594193ce6db2f19dfe7b63f8ca7881de4a1889207091161",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/1ccd3933dca97d9cb594193ce6db2f19dfe7b63f8ca7881de4a1889207091161"
+ ],
+ "name": "Free Bots",
+ "symbol": "Bots",
+ "marketCap": "273462.850508281296945587",
+ "price": "0.00000273462850508281",
+ "priceChange24hPercent": "-28.42",
+ "volume24h": "29431.748206013919983197",
+ "communityRecognized": false,
+ "key": "evm--8453:0x4dcdf3451dfc114991283c2e5b72823d69882ba3",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0xf1e9baa65d418a9025e1851dd2d37f1ad208bba3",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xf1e9baa65d418a9025e1851dd2d37f1ad208bba3-1780485054872.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xf1e9baa65d418a9025e1851dd2d37f1ad208bba3-1780485054872.png"
+ ],
+ "name": "Ratspeak",
+ "symbol": "Ratspeak",
+ "marketCap": "1368250.772332282499041908",
+ "price": "0.00001425261221181126",
+ "priceChange24hPercent": "-12.38",
+ "volume24h": "159816.190866291736865011",
+ "communityRecognized": false,
+ "key": "evm--8453:0xf1e9baa65d418a9025e1851dd2d37f1ad208bba3",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x30c7235866872213f68cb1f08c37cb9eccb93452",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x30c7235866872213f68cb1f08c37cb9eccb93452-1757667345357.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x30c7235866872213f68cb1f08c37cb9eccb93452-1757667345357.png"
+ ],
+ "name": "Prompt",
+ "symbol": "PROMPT",
+ "marketCap": "3861471.580124962122825535",
+ "price": "0.02396495671913454759",
+ "priceChange24hPercent": "-1.77",
+ "volume24h": "45528.013956690798584494",
+ "communityRecognized": true,
+ "key": "evm--8453:0x30c7235866872213f68cb1f08c37cb9eccb93452",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x53f39e5c53ee40bbc3da97c3b47bd2968d110a8d",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x53f39e5c53ee40bbc3da97c3b47bd2968d110a8d-1787317544384.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x53f39e5c53ee40bbc3da97c3b47bd2968d110a8d-1787317544384.png"
+ ],
+ "name": "Aligned Token",
+ "symbol": "ALIGN",
+ "marketCap": "3139670.813946540830622204",
+ "price": "0.00784258933830054385",
+ "priceChange24hPercent": "-0.56",
+ "volume24h": "169934.217343103536801189",
+ "communityRecognized": false,
+ "key": "evm--8453:0x53f39e5c53ee40bbc3da97c3b47bd2968d110a8d",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x50da645f148798f68ef2d7db7c1cb22a6819bb2c",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x50da645f148798f68ef2d7db7c1cb22a6819bb2c.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x50da645f148798f68ef2d7db7c1cb22a6819bb2c.png"
+ ],
+ "name": "SPX6900",
+ "symbol": "SPX",
+ "marketCap": "14363785.685294872142258963",
+ "price": "0.54235088153971126766",
+ "priceChange24hPercent": "-3.78",
+ "volume24h": "46122.442773171892035231",
+ "communityRecognized": true,
+ "key": "evm--8453:0x50da645f148798f68ef2d7db7c1cb22a6819bb2c",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0xc5fed7c8ccc75d8a72b601a66dffd7a489073f0b",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xc5fed7c8ccc75d8a72b601a66dffd7a489073f0b-1764068796834.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xc5fed7c8ccc75d8a72b601a66dffd7a489073f0b-1764068796834.png"
+ ],
+ "name": "ACU",
+ "symbol": "ACU",
+ "marketCap": "234484.020627272349750803",
+ "price": "0.148385968279971767",
+ "priceChange24hPercent": "9.14",
+ "volume24h": "120524.059741726626434828",
+ "communityRecognized": true,
+ "key": "evm--8453:0xc5fed7c8ccc75d8a72b601a66dffd7a489073f0b",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x16332535e2c27da578bc2e82beb09ce9d3c8eb07",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x16332535e2c27da578bc2e82beb09ce9d3c8eb07-1770809039917.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x16332535e2c27da578bc2e82beb09ce9d3c8eb07-1770809039917.png"
+ ],
+ "name": "ClawBank",
+ "symbol": "ClawBank",
+ "marketCap": "1127623.030737907936545092",
+ "price": "0.00001127623030748278",
+ "priceChange24hPercent": "11.53",
+ "volume24h": "23197.446369960471906024",
+ "communityRecognized": false,
+ "key": "evm--8453:0x16332535e2c27da578bc2e82beb09ce9d3c8eb07",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0xfb31f85a8367210b2e4ed2360d2da9dc2d2ccc95",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xfb31f85a8367210b2e4ed2360d2da9dc2d2ccc95-1763031927566.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xfb31f85a8367210b2e4ed2360d2da9dc2d2ccc95-1763031927566.png"
+ ],
+ "name": "Edel",
+ "symbol": "EDEL",
+ "marketCap": "6886442.132094868099033462",
+ "price": "0.01033485052099968844",
+ "priceChange24hPercent": "-7.06",
+ "volume24h": "272800.604339746798234553",
+ "communityRecognized": true,
+ "key": "evm--8453:0xfb31f85a8367210b2e4ed2360d2da9dc2d2ccc95",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x29cc30f9d113b356ce408667aa6433589cecbdca",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x29cc30f9d113b356ce408667aa6433589cecbdca-1768993229461.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x29cc30f9d113b356ce408667aa6433589cecbdca-1768993229461.png"
+ ],
+ "name": "Elsa",
+ "symbol": "ELSA",
+ "marketCap": "11913928.324771431714086724",
+ "price": "0.05203043202363277017",
+ "priceChange24hPercent": "1.17",
+ "volume24h": "326920.592482625273500075",
+ "communityRecognized": true,
+ "key": "evm--8453:0x29cc30f9d113b356ce408667aa6433589cecbdca",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0xff8104251e7761163fac3211ef5583fb3f8583d6",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xff8104251e7761163fac3211ef5583fb3f8583d6-1763809280868.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xff8104251e7761163fac3211ef5583fb3f8583d6-1763809280868.png"
+ ],
+ "name": "REPPO",
+ "symbol": "REPPO",
+ "marketCap": "5799466.451661356484227306",
+ "price": "0.01455197070421824568",
+ "priceChange24hPercent": "-5.08",
+ "volume24h": "163000.225390821282757456",
+ "communityRecognized": true,
+ "key": "evm--8453:0xff8104251e7761163fac3211ef5583fb3f8583d6",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x2a06a17cbc6d0032cac2c6696da90f29d39a1a29",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x2a06a17cbc6d0032cac2c6696da90f29d39a1a29-1721965709443.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x2a06a17cbc6d0032cac2c6696da90f29d39a1a29-1721965709443.png"
+ ],
+ "name": "HarryPotterObamaSonic10Inu",
+ "symbol": "BITCOIN",
+ "marketCap": "185314.822400857885619373",
+ "price": "0.01846990070738081723",
+ "priceChange24hPercent": "-2.99",
+ "volume24h": "852.309434501528077404",
+ "communityRecognized": true,
+ "key": "evm--8453:0x2a06a17cbc6d0032cac2c6696da90f29d39a1a29",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x9d0e8f5b25384c7310cb8c6ae32c8fbeb645d083",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x9d0e8f5b25384c7310cb8c6ae32c8fbeb645d083-1737003334236.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x9d0e8f5b25384c7310cb8c6ae32c8fbeb645d083-1737003334236.png"
+ ],
+ "name": "Derive",
+ "symbol": "DRV",
+ "marketCap": "25097941.048713283413694444",
+ "price": "0.16308594967932132455",
+ "priceChange24hPercent": "2",
+ "volume24h": "474908.007853676704332238",
+ "communityRecognized": true,
+ "key": "evm--8453:0x9d0e8f5b25384c7310cb8c6ae32c8fbeb645d083",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x9b8df6e244526ab5f6e6400d331db28c8fdddb55",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x9b8df6e244526ab5f6e6400d331db28c8fdddb55-1725084900043.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x9b8df6e244526ab5f6e6400d331db28c8fdddb55-1725084900043.png"
+ ],
+ "name": "Solana (Universal)",
+ "symbol": "uSOL",
+ "marketCap": "2497361.299838751442067724",
+ "price": "103.98362705004751595894",
+ "priceChange24hPercent": "-1.32",
+ "volume24h": "296195.476249392326871448",
+ "communityRecognized": false,
+ "key": "evm--8453:0x9b8df6e244526ab5f6e6400d331db28c8fdddb55",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x3055913c90fcc1a6ce9a358911721eeb942013a1",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x3055913c90fcc1a6ce9a358911721eeb942013a1-1724908500044.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x3055913c90fcc1a6ce9a358911721eeb942013a1-1724908500044.png"
+ ],
+ "name": "PancakeSwap Token",
+ "symbol": "Cake",
+ "marketCap": "994282.72156555590317458",
+ "price": "2.22862379703736382748",
+ "priceChange24hPercent": "1.99",
+ "volume24h": "185228.92374627792780063",
+ "communityRecognized": true,
+ "key": "evm--8453:0x3055913c90fcc1a6ce9a358911721eeb942013a1",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0xc0634090f2fe6c6d75e61be2b949464abb498973",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xc0634090f2fe6c6d75e61be2b949464abb498973-1757667219038.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xc0634090f2fe6c6d75e61be2b949464abb498973-1757667219038.png"
+ ],
+ "name": "Keeta",
+ "symbol": "KTA",
+ "marketCap": "45263371.92738397429739068",
+ "price": "0.07749364985572725103",
+ "priceChange24hPercent": "6.51",
+ "volume24h": "443033.63050307748719886",
+ "communityRecognized": true,
+ "key": "evm--8453:0xc0634090f2fe6c6d75e61be2b949464abb498973",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x79bbf4508b1391af3a0f4b30bb5fc4aa9ab0e07c",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x79bbf4508b1391af3a0f4b30bb5fc4aa9ab0e07c-1735965900062.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x79bbf4508b1391af3a0f4b30bb5fc4aa9ab0e07c-1735965900062.png"
+ ],
+ "name": "HeyAnon",
+ "symbol": "Anon",
+ "marketCap": "418216.063825616955509474",
+ "price": "0.26379025810398659701",
+ "priceChange24hPercent": "2.05",
+ "volume24h": "3225.4600349511227186",
+ "communityRecognized": true,
+ "key": "evm--8453:0x79bbf4508b1391af3a0f4b30bb5fc4aa9ab0e07c",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x11030f79109269d796fd0fb956d6244e502757f7",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x11030f79109269d796fd0fb956d6244e502757f7-1779879981401.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x11030f79109269d796fd0fb956d6244e502757f7-1779879981401.png"
+ ],
+ "name": "CTR",
+ "symbol": "CTR",
+ "marketCap": "10317208.420480187597943854",
+ "price": "0.01019128717917162601",
+ "priceChange24hPercent": "8.48",
+ "volume24h": "983793.694522466725883046",
+ "communityRecognized": true,
+ "key": "evm--8453:0x11030f79109269d796fd0fb956d6244e502757f7",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x85635006d808030e97f3174c8ea1b4aa1f1feba3",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x85635006d808030e97f3174c8ea1b4aa1f1feba3-1780484439832.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x85635006d808030e97f3174c8ea1b4aa1f1feba3-1780484439832.png"
+ ],
+ "name": "Venice Deity",
+ "symbol": "VVVeity",
+ "marketCap": "153806.338943495338283455",
+ "price": "0.00000153817289347337",
+ "priceChange24hPercent": "-3.87",
+ "volume24h": "104154.378322767566065452",
+ "communityRecognized": false,
+ "key": "evm--8453:0x85635006d808030e97f3174c8ea1b4aa1f1feba3",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x8ee73c484a26e0a5df2ee2a4960b789967dd0415",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x8ee73c484a26e0a5df2ee2a4960b789967dd0415-1757667273505.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x8ee73c484a26e0a5df2ee2a4960b789967dd0415-1757667273505.png"
+ ],
+ "name": "Curve DAO Token",
+ "symbol": "CRV",
+ "marketCap": "569000.285653014298597697",
+ "price": "0.36268877747502270663",
+ "priceChange24hPercent": "-6.7",
+ "volume24h": "66099.779786522920402679",
+ "communityRecognized": true,
+ "key": "evm--8453:0x8ee73c484a26e0a5df2ee2a4960b789967dd0415",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0xa99f6e6785da0f5d6fb42495fe424bce029eeb3e",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xa99f6e6785da0f5d6fb42495fe424bce029eeb3e-1735017300059.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xa99f6e6785da0f5d6fb42495fe424bce029eeb3e-1735017300059.png"
+ ],
+ "name": "Pendle",
+ "symbol": "PENDLE",
+ "marketCap": "1266732.04833089394230691",
+ "price": "2.18284202595136507002",
+ "priceChange24hPercent": "6.55",
+ "volume24h": "165957.881500387604101375",
+ "communityRecognized": true,
+ "key": "evm--8453:0xa99f6e6785da0f5d6fb42495fe424bce029eeb3e",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x4ed4e862860bed51a9570b96d89af5e1b0efefed",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x4ed4e862860bed51a9570b96d89af5e1b0efefed.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x4ed4e862860bed51a9570b96d89af5e1b0efefed.png"
+ ],
+ "name": "Degen",
+ "symbol": "DEGEN",
+ "marketCap": "39377962.393730743116383433",
+ "price": "0.00108793990733865399",
+ "priceChange24hPercent": "0.71",
+ "volume24h": "50219.469364222144444457",
+ "communityRecognized": true,
+ "key": "evm--8453:0x4ed4e862860bed51a9570b96d89af5e1b0efefed",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0xab964f7b7b6391bd6c4e8512ef00d01f255d9c0d",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xab964f7b7b6391bd6c4e8512ef00d01f255d9c0d-1730011500051.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xab964f7b7b6391bd6c4e8512ef00d01f255d9c0d-1730011500051.png"
+ ],
+ "name": "Prefrontal Cortex Convo Agent by Virtuals",
+ "symbol": "CONVO",
+ "marketCap": "746296.730078480786006529",
+ "price": "0.00081289772020289598",
+ "priceChange24hPercent": "0.8",
+ "volume24h": "1894.31246618316957649",
+ "communityRecognized": false,
+ "key": "evm--8453:0xab964f7b7b6391bd6c4e8512ef00d01f255d9c0d",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x9a26f5433671751c3276a065f57e5a02d2817973",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x9a26f5433671751c3276a065f57e5a02d2817973.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x9a26f5433671751c3276a065f57e5a02d2817973.png"
+ ],
+ "name": "Keyboard Cat",
+ "symbol": "KEYCAT",
+ "marketCap": "7188849.093615804048017137",
+ "price": "0.00071889730093917319",
+ "priceChange24hPercent": "-4.58",
+ "volume24h": "114197.215287111714126963",
+ "communityRecognized": true,
+ "key": "evm--8453:0x9a26f5433671751c3276a065f57e5a02d2817973",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x2615a94df961278dcbc41fb0a54fec5f10a693ae",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x2615a94df961278dcbc41fb0a54fec5f10a693ae-1731723300159.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x2615a94df961278dcbc41fb0a54fec5f10a693ae-1731723300159.png"
+ ],
+ "name": "XRP (Universal)",
+ "symbol": "uXRP",
+ "marketCap": "2384466.984734847885614263",
+ "price": "1.38849992992956514409",
+ "priceChange24hPercent": "-1.05",
+ "volume24h": "15794.136033663759170143",
+ "communityRecognized": false,
+ "key": "evm--8453:0x2615a94df961278dcbc41fb0a54fec5f10a693ae",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0xbcff5af58099311135f183f1230f5f16bfacf464",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xbcff5af58099311135f183f1230f5f16bfacf464-1781607642159.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xbcff5af58099311135f183f1230f5f16bfacf464-1781607642159.png"
+ ],
+ "name": "Siren Coin",
+ "symbol": "SIREN",
+ "marketCap": "1241714.107341937439187951",
+ "price": "0.00248342821468387488",
+ "priceChange24hPercent": "2.69",
+ "volume24h": "3948.346294899878683905",
+ "communityRecognized": false,
+ "key": "evm--8453:0xbcff5af58099311135f183f1230f5f16bfacf464",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x5875eee11cf8398102fdad704c9e96607675467a",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x5875eee11cf8398102fdad704c9e96607675467a-1734160500375.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x5875eee11cf8398102fdad704c9e96607675467a-1734160500375.png"
+ ],
+ "name": "Savings USDS",
+ "symbol": "sUSDS",
+ "marketCap": "224856276.435445889192414198",
+ "price": "1.10882688596123185365",
+ "priceChange24hPercent": "0",
+ "volume24h": "580602.0130741898130165",
+ "communityRecognized": false,
+ "key": "evm--8453:0x5875eee11cf8398102fdad704c9e96607675467a",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x04d5ddf5f3a8939889f11e97f8c4bb48317f1938",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x04d5ddf5f3a8939889f11e97f8c4bb48317f1938.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x04d5ddf5f3a8939889f11e97f8c4bb48317f1938.png"
+ ],
+ "name": "USDz",
+ "symbol": "USDz",
+ "marketCap": "6508097.593572206532910646",
+ "price": "0.97203590042322726602",
+ "priceChange24hPercent": "-0.51",
+ "volume24h": "3531.797370040485878988",
+ "communityRecognized": false,
+ "key": "evm--8453:0x04d5ddf5f3a8939889f11e97f8c4bb48317f1938",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x226a2fa2556c48245e57cd1cba4c6c9e67077dd2",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x226a2fa2556c48245e57cd1cba4c6c9e67077dd2-1757667219038.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x226a2fa2556c48245e57cd1cba4c6c9e67077dd2-1757667219038.png"
+ ],
+ "name": "BIO",
+ "symbol": "BIO",
+ "marketCap": "4967623.345623005329981658",
+ "price": "0.02720951374974361507",
+ "priceChange24hPercent": "0.47",
+ "volume24h": "179510.088921452967651318",
+ "communityRecognized": true,
+ "key": "evm--8453:0x226a2fa2556c48245e57cd1cba4c6c9e67077dd2",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x731814e491571a2e9ee3c5b1f7f3b962ee8f4870",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x731814e491571a2e9ee3c5b1f7f3b962ee8f4870-1732255200084.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x731814e491571a2e9ee3c5b1f7f3b962ee8f4870-1732255200084.png"
+ ],
+ "name": "VaderAI by Virtuals",
+ "symbol": "VADER",
+ "marketCap": "1155562.237046156324449546",
+ "price": "0.00117814834661054795",
+ "priceChange24hPercent": "0.05",
+ "volume24h": "1367.01471006136721301",
+ "communityRecognized": true,
+ "key": "evm--8453:0x731814e491571a2e9ee3c5b1f7f3b962ee8f4870",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0xd71bbd77e90a8fb9a23e47f26dc6c30784ba6572",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xd71bbd77e90a8fb9a23e47f26dc6c30784ba6572-1788701572198.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xd71bbd77e90a8fb9a23e47f26dc6c30784ba6572-1788701572198.png"
+ ],
+ "name": "Kuma",
+ "symbol": "KUMA",
+ "marketCap": "103936.364733165399756919",
+ "price": "0.0001124307145261345",
+ "priceChange24hPercent": "-41",
+ "volume24h": "31105.849275450484139986",
+ "communityRecognized": false,
+ "key": "evm--8453:0xd71bbd77e90a8fb9a23e47f26dc6c30784ba6572",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x6b2504a03ca4d43d0d73776f6ad46dab2f2a4cfd",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x6b2504a03ca4d43d0d73776f6ad46dab2f2a4cfd-1732331051328.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x6b2504a03ca4d43d0d73776f6ad46dab2f2a4cfd-1732331051328.png"
+ ],
+ "name": "Unit 00 - Rei",
+ "symbol": "REI",
+ "marketCap": "15211379.164992615033789018",
+ "price": "0.01521137916499261503",
+ "priceChange24hPercent": "-12.51",
+ "volume24h": "208650.372209649996184048",
+ "communityRecognized": false,
+ "key": "evm--8453:0x6b2504a03ca4d43d0d73776f6ad46dab2f2a4cfd",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0xc08cd26474722ce93f4d0c34d16201461c10aa8c",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xc08cd26474722ce93f4d0c34d16201461c10aa8c-1728540000079.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xc08cd26474722ce93f4d0c34d16201461c10aa8c-1728540000079.png"
+ ],
+ "name": "CARV",
+ "symbol": "CARV",
+ "marketCap": "20688732.303840038554893076",
+ "price": "0.0366654931973830941",
+ "priceChange24hPercent": "-0.67",
+ "volume24h": "10914.62542704126118987",
+ "communityRecognized": true,
+ "key": "evm--8453:0xc08cd26474722ce93f4d0c34d16201461c10aa8c",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0xb0ffa8000886e57f86dd5264b9582b2ad87b2b91",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xb0ffa8000886e57f86dd5264b9582b2ad87b2b91.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xb0ffa8000886e57f86dd5264b9582b2ad87b2b91.png"
+ ],
+ "name": "Wormhole Token",
+ "symbol": "W",
+ "marketCap": "747202.032675757312870102",
+ "price": "0.01015341300646277109",
+ "priceChange24hPercent": "-2.18",
+ "volume24h": "10521.81271051950609171",
+ "communityRecognized": true,
+ "key": "evm--8453:0xb0ffa8000886e57f86dd5264b9582b2ad87b2b91",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x0c5142bc58f9a61ab8c3d2085dd2f4e550c5ce0b",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x0c5142bc58f9a61ab8c3d2085dd2f4e550c5ce0b-1728807300368.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x0c5142bc58f9a61ab8c3d2085dd2f4e550c5ce0b-1728807300368.png"
+ ],
+ "name": "RUSSELL",
+ "symbol": "RUSSELL",
+ "marketCap": "1805023.424568616554592883",
+ "price": "0.00185896412604427428",
+ "priceChange24hPercent": "-12.41",
+ "volume24h": "122934.689735867653794216",
+ "communityRecognized": false,
+ "key": "evm--8453:0x0c5142bc58f9a61ab8c3d2085dd2f4e550c5ce0b",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0xb3b32f9f8827d4634fe7d973fa1034ec9fddb3b3",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xb3b32f9f8827d4634fe7d973fa1034ec9fddb3b3-1757667425357.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xb3b32f9f8827d4634fe7d973fa1034ec9fddb3b3-1757667425357.png"
+ ],
+ "name": "B3",
+ "symbol": "B3",
+ "marketCap": "46101975.850460289782313152",
+ "price": "0.00046101985491984264",
+ "priceChange24hPercent": "0.37",
+ "volume24h": "86834.574762279229418974",
+ "communityRecognized": true,
+ "key": "evm--8453:0xb3b32f9f8827d4634fe7d973fa1034ec9fddb3b3",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x0c41f1fc9022feb69af6dc666abfe73c9ffda7ce",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x0c41f1fc9022feb69af6dc666abfe73c9ffda7ce-1721965709443.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x0c41f1fc9022feb69af6dc666abfe73c9ffda7ce-1721965709443.png"
+ ],
+ "name": "Bitcoin on Base",
+ "symbol": "BTCB",
+ "marketCap": "1031384.607671964330598667",
+ "price": "0.06598982383836983192",
+ "priceChange24hPercent": "-0.6",
+ "volume24h": "755.692200617929753361",
+ "communityRecognized": false,
+ "key": "evm--8453:0x0c41f1fc9022feb69af6dc666abfe73c9ffda7ce",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x624e2e7fdc8903165f64891672267ab0fcb98831",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x624e2e7fdc8903165f64891672267ab0fcb98831-1757667182323.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x624e2e7fdc8903165f64891672267ab0fcb98831-1757667182323.png"
+ ],
+ "name": "SoSoValue",
+ "symbol": "SOSO",
+ "marketCap": "22753679.363260796692054527",
+ "price": "0.30944416257485148625",
+ "priceChange24hPercent": "-0.3",
+ "volume24h": "2090609.8456259988988657",
+ "communityRecognized": true,
+ "key": "evm--8453:0x624e2e7fdc8903165f64891672267ab0fcb98831",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x752c5a95d202972e124390f30a50154409d3c858",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x752c5a95d202972e124390f30a50154409d3c858-1775819380261.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x752c5a95d202972e124390f30a50154409d3c858-1775819380261.png"
+ ],
+ "name": "OFC",
+ "symbol": "OFC",
+ "marketCap": "8538932.214325266439617746",
+ "price": "0.00853893222311206679",
+ "priceChange24hPercent": "4.54",
+ "volume24h": "10287.92199811513521167",
+ "communityRecognized": true,
+ "key": "evm--8453:0x752c5a95d202972e124390f30a50154409d3c858",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x2da56acb9ea78330f947bd57c54119debda7af71",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x2da56acb9ea78330f947bd57c54119debda7af71.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x2da56acb9ea78330f947bd57c54119debda7af71.png"
+ ],
+ "name": "Mog Coin",
+ "symbol": "Mog",
+ "marketCap": "12418641.041767454461119291",
+ "price": "0.00000011241219122351",
+ "priceChange24hPercent": "3.35",
+ "volume24h": "1787.034495800511379502",
+ "communityRecognized": true,
+ "key": "evm--8453:0x2da56acb9ea78330f947bd57c54119debda7af71",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x54f16bd3996169914c84dbb2a16635100cf48a0a",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x54f16bd3996169914c84dbb2a16635100cf48a0a-1778842983869.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x54f16bd3996169914c84dbb2a16635100cf48a0a-1778842983869.png"
+ ],
+ "name": "Peptai",
+ "symbol": "PEPTAI",
+ "marketCap": "2699930.655241683092524007",
+ "price": "0.26999306552416830925",
+ "priceChange24hPercent": "0.09",
+ "volume24h": "11354.659167837864222443",
+ "communityRecognized": false,
+ "key": "evm--8453:0x54f16bd3996169914c84dbb2a16635100cf48a0a",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0xad46308a6f6999bacc099f3029b77c352e772ba3",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xad46308a6f6999bacc099f3029b77c352e772ba3-1788181476321.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xad46308a6f6999bacc099f3029b77c352e772ba3-1788181476321.png"
+ ],
+ "name": "defi-native",
+ "symbol": "defi-native",
+ "marketCap": "221632.306685117066459175",
+ "price": "0.00000221632306685117",
+ "priceChange24hPercent": "-24.43",
+ "volume24h": "48893.910339512711910722",
+ "communityRecognized": false,
+ "key": "evm--8453:0xad46308a6f6999bacc099f3029b77c352e772ba3",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0xf6e932ca12afa26665dc4dde7e27be02a7c02e50",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xf6e932ca12afa26665dc4dde7e27be02a7c02e50.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xf6e932ca12afa26665dc4dde7e27be02a7c02e50.png"
+ ],
+ "name": "Mochi",
+ "symbol": "MOCHI",
+ "marketCap": "1009663.729761957087688081",
+ "price": "0.00000107682532530098",
+ "priceChange24hPercent": "-7.97",
+ "volume24h": "6103.551166516511728666",
+ "communityRecognized": true,
+ "key": "evm--8453:0xf6e932ca12afa26665dc4dde7e27be02a7c02e50",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0xeb6d78148f001f3aa2f588997c5e102e489ad341",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xeb6d78148f001f3aa2f588997c5e102e489ad341-1732156200557.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0xeb6d78148f001f3aa2f588997c5e102e489ad341-1732156200557.png"
+ ],
+ "name": "Super Champs",
+ "symbol": "CHAMP",
+ "marketCap": "476152.138799022390088434",
+ "price": "0.00047615213889824946",
+ "priceChange24hPercent": "-1.96",
+ "volume24h": "828.72855682584115933",
+ "communityRecognized": false,
+ "key": "evm--8453:0xeb6d78148f001f3aa2f588997c5e102e489ad341",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x764a726d9ced0433a8d7643335919deb03a9a935",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x764a726d9ced0433a8d7643335919deb03a9a935-1724822100033.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x764a726d9ced0433a8d7643335919deb03a9a935-1724822100033.png"
+ ],
+ "name": "Pocket Network",
+ "symbol": "POKT",
+ "marketCap": "337367.060028771238441248",
+ "price": "0.00769259891575875321",
+ "priceChange24hPercent": "0.88",
+ "volume24h": "21047.2334931335481193",
+ "communityRecognized": true,
+ "key": "evm--8453:0x764a726d9ced0433a8d7643335919deb03a9a935",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x937a1cfaf0a3d9f5dc4d0927f72ee5e3e5f82a00",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x937a1cfaf0a3d9f5dc4d0927f72ee5e3e5f82a00-1757667355659.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x937a1cfaf0a3d9f5dc4d0927f72ee5e3e5f82a00-1757667355659.png"
+ ],
+ "name": "Cocoro",
+ "symbol": "Cocoro",
+ "marketCap": "1445193.941644469913353986",
+ "price": "0.0018127236646528315",
+ "priceChange24hPercent": "0.82",
+ "volume24h": "3103.429595095123467",
+ "communityRecognized": false,
+ "key": "evm--8453:0x937a1cfaf0a3d9f5dc4d0927f72ee5e3e5f82a00",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--8453",
+ "address": "0x8c0d3adcf8ce094e1ae437557ec90a6374dc9bdd",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x8c0d3adcf8ce094e1ae437557ec90a6374dc9bdd-1773831756184.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--8453/tokens/address-0x8c0d3adcf8ce094e1ae437557ec90a6374dc9bdd-1773831756184.png"
+ ],
+ "name": "OpenVPP",
+ "symbol": "OVPP",
+ "marketCap": "1990320.340161759129107805",
+ "price": "0.00199032034016175913",
+ "priceChange24hPercent": "-1.4",
+ "volume24h": "161037.434028121150589532",
+ "communityRecognized": false,
+ "key": "evm--8453:0x8c0d3adcf8ce094e1ae437557ec90a6374dc9bdd",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Base",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/base.png"
+ }
+ ],
+ "trending|sui--mainnet|5m|all": [
+ {
+ "isNative": false,
+ "networkId": "sui--mainnet",
+ "address": "0xdeeb7a4662eec9f2f3def03fb937a663dddaa2e215b8078a284d026b7946c270::deep::DEEP",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-onchain/sui--mainnet/tokens/0xdeeb7a4662eec9f2f3def03fb937a663dddaa2e215b8078a284d026b7946c270::deep::DEEP.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-onchain/sui--mainnet/tokens/0xdeeb7a4662eec9f2f3def03fb937a663dddaa2e215b8078a284d026b7946c270::deep::DEEP.png"
+ ],
+ "name": "DeepBook Token",
+ "symbol": "DEEP",
+ "marketCap": "92513275.605854737610588388",
+ "price": "0.01610275176958694093",
+ "priceChange24hPercent": "0.03",
+ "volume24h": "1172.5770385598682",
+ "communityRecognized": true,
+ "key": "sui--mainnet:0xdeeb7a4662eec9f2f3def03fb937a663dddaa2e215b8078a284d026b7946c270::deep::DEEP",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Sui",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sui.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sui--mainnet",
+ "address": "0x0041f9f9344cac094454cd574e333c4fdb132d7bcc9379bcd4aab485b2a63942::wbtc::WBTC",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/dd32930dcb280ef60957dbbdfb568248af2b960919f965b4f05f9a20085fd567",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/dd32930dcb280ef60957dbbdfb568248af2b960919f965b4f05f9a20085fd567"
+ ],
+ "name": "Wrapped BTC",
+ "symbol": "WBTC",
+ "price": "78672.01719550714950392535",
+ "priceChange24hPercent": "-0.11",
+ "volume24h": "761.070156506825",
+ "communityRecognized": false,
+ "key": "sui--mainnet:0x0041f9f9344cac094454cd574e333c4fdb132d7bcc9379bcd4aab485b2a63942::wbtc::WBTC",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Sui",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sui.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sui--mainnet",
+ "address": "0x356a26eb9e012a68958082340d4c4116e7f55615cf27affcff209cf0ae544f59::wal::WAL",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-onchain/sui--mainnet/tokens/0x356a26eb9e012a68958082340d4c4116e7f55615cf27affcff209cf0ae544f59::wal::WAL.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-onchain/sui--mainnet/tokens/0x356a26eb9e012a68958082340d4c4116e7f55615cf27affcff209cf0ae544f59::wal::WAL.png"
+ ],
+ "name": "WAL Token",
+ "symbol": "WAL",
+ "marketCap": "70091456.868764486884665164",
+ "price": "0.0279225656083281303",
+ "priceChange24hPercent": "-0.2",
+ "volume24h": "1390.7984335762974",
+ "communityRecognized": true,
+ "key": "sui--mainnet:0x356a26eb9e012a68958082340d4c4116e7f55615cf27affcff209cf0ae544f59::wal::WAL",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Sui",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sui.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sui--mainnet",
+ "address": "0x9f854b3ad20f8161ec0886f15f4a1752bf75d22261556f14cc8d3a1c5d50e529::magma::MAGMA",
+ "logoUrl": "https://coin-images.coingecko.com/coins/images/71100/large/magma.png?1765796989",
+ "logoUrls": [
+ "https://coin-images.coingecko.com/coins/images/71100/large/magma.png?1765796989"
+ ],
+ "name": "Magma Token",
+ "symbol": "MAGMA",
+ "marketCap": "240069477.224090492204218893",
+ "price": "0.2400694772240904922",
+ "priceChange24hPercent": "0.08",
+ "volume24h": "11424.8400950309568",
+ "communityRecognized": true,
+ "key": "sui--mainnet:0x9f854b3ad20f8161ec0886f15f4a1752bf75d22261556f14cc8d3a1c5d50e529::magma::MAGMA",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Sui",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sui.png"
+ }
+ ],
+ "trending|sui--mainnet|1h|all": [
+ {
+ "isNative": false,
+ "networkId": "sui--mainnet",
+ "address": "0xee962a61432231c2ede6946515beb02290cb516ad087bb06a731e922b2a5f57a::us::US",
+ "logoUrl": "https://coin-images.coingecko.com/coins/images/70693/large/us-icon.png?1763129786",
+ "logoUrls": [
+ "https://coin-images.coingecko.com/coins/images/70693/large/us-icon.png?1763129786"
+ ],
+ "name": "Talus Token",
+ "symbol": "US",
+ "marketCap": "150420240",
+ "price": "0.015042024",
+ "priceChange24hPercent": "-0.5",
+ "volume24h": "9911.545872",
+ "communityRecognized": true,
+ "key": "sui--mainnet:0xee962a61432231c2ede6946515beb02290cb516ad087bb06a731e922b2a5f57a::us::US",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Sui",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sui.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sui--mainnet",
+ "address": "0x0a48f85a3905cfa49a652bdb074d9e9fabad27892d54afaa5c9e0adeb7ac3cdf::swarm_network_token::SWARM_NETWORK_TOKEN",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/7058e87db0ac657acd1dbdb4b48557476288f95d851dfd4db1ce0b572949c5e4",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/7058e87db0ac657acd1dbdb4b48557476288f95d851dfd4db1ce0b572949c5e4"
+ ],
+ "name": "Swarm Network",
+ "symbol": "TRUTH",
+ "marketCap": "123507894.153172941395107111",
+ "price": "0.01235078941531729414",
+ "priceChange24hPercent": "0",
+ "volume24h": "633.318415",
+ "communityRecognized": true,
+ "key": "sui--mainnet:0x0a48f85a3905cfa49a652bdb074d9e9fabad27892d54afaa5c9e0adeb7ac3cdf::swarm_network_token::SWARM_NETWORK_TOKEN",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Sui",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sui.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sui--mainnet",
+ "address": "0xdeeb7a4662eec9f2f3def03fb937a663dddaa2e215b8078a284d026b7946c270::deep::DEEP",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-onchain/sui--mainnet/tokens/0xdeeb7a4662eec9f2f3def03fb937a663dddaa2e215b8078a284d026b7946c270::deep::DEEP.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-onchain/sui--mainnet/tokens/0xdeeb7a4662eec9f2f3def03fb937a663dddaa2e215b8078a284d026b7946c270::deep::DEEP.png"
+ ],
+ "name": "DeepBook Token",
+ "symbol": "DEEP",
+ "marketCap": "92513275.605854737610588388",
+ "price": "0.01610275176958694093",
+ "priceChange24hPercent": "0.08",
+ "volume24h": "43776.8053694180451",
+ "communityRecognized": true,
+ "key": "sui--mainnet:0xdeeb7a4662eec9f2f3def03fb937a663dddaa2e215b8078a284d026b7946c270::deep::DEEP",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Sui",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sui.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sui--mainnet",
+ "address": "0x0041f9f9344cac094454cd574e333c4fdb132d7bcc9379bcd4aab485b2a63942::wbtc::WBTC",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/dd32930dcb280ef60957dbbdfb568248af2b960919f965b4f05f9a20085fd567",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/dd32930dcb280ef60957dbbdfb568248af2b960919f965b4f05f9a20085fd567"
+ ],
+ "name": "Wrapped BTC",
+ "symbol": "WBTC",
+ "price": "78672.01719550714950392535",
+ "priceChange24hPercent": "-0.23",
+ "volume24h": "13349.999663876745942",
+ "communityRecognized": false,
+ "key": "sui--mainnet:0x0041f9f9344cac094454cd574e333c4fdb132d7bcc9379bcd4aab485b2a63942::wbtc::WBTC",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Sui",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sui.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sui--mainnet",
+ "address": "0x76a49ebaf991fa2d4cb6a352af14425d453fe2ba6802b5ed2361b227150b6689::take::TAKE",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-onchain/sui--mainnet/tokens/0x76a49ebaf991fa2d4cb6a352af14425d453fe2ba6802b5ed2361b227150b6689::take::TAKE.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-onchain/sui--mainnet/tokens/0x76a49ebaf991fa2d4cb6a352af14425d453fe2ba6802b5ed2361b227150b6689::take::TAKE.png"
+ ],
+ "name": "TAKE",
+ "symbol": "TAKE",
+ "marketCap": "62751511.293141534725371733",
+ "price": "0.06275151129314153473",
+ "priceChange24hPercent": "1.55",
+ "volume24h": "596.3546499797525",
+ "communityRecognized": false,
+ "key": "sui--mainnet:0x76a49ebaf991fa2d4cb6a352af14425d453fe2ba6802b5ed2361b227150b6689::take::TAKE",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Sui",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sui.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sui--mainnet",
+ "address": "0x5145494a5f5100e645e4b0aa950fa6b68f614e8c59e17bc5ded3495123a79178::ns::NS",
+ "logoUrl": "https://coin-images.coingecko.com/coins/images/40110/large/NS_coin.png?1725704829",
+ "logoUrls": [
+ "https://coin-images.coingecko.com/coins/images/40110/large/NS_coin.png?1725704829"
+ ],
+ "name": "SuiNS Token",
+ "symbol": "NS",
+ "marketCap": "6994217.161972698047605592",
+ "price": "0.0139884343239453961",
+ "priceChange24hPercent": "0.17",
+ "volume24h": "4625.0545351587229",
+ "communityRecognized": true,
+ "key": "sui--mainnet:0x5145494a5f5100e645e4b0aa950fa6b68f614e8c59e17bc5ded3495123a79178::ns::NS",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Sui",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sui.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sui--mainnet",
+ "address": "0x06864a6f921804860930db6ddbe2e16acdf8504495ea7481637a1c8b9a8fe54b::cetus::CETUS",
+ "logoUrl": "https://static.oklink.com/cdn/web3/currency/token/large/784-0x06864a6f921804860930db6ddbe2e16acdf8504495ea7481637a1c8b9a8fe54b::cetus::CETUS-107/type=default_90_0?v=1788830400330",
+ "logoUrls": [
+ "https://static.oklink.com/cdn/web3/currency/token/large/784-0x06864a6f921804860930db6ddbe2e16acdf8504495ea7481637a1c8b9a8fe54b::cetus::CETUS-107/type=default_90_0?v=1788830400330"
+ ],
+ "name": "Cetus Token",
+ "symbol": "CETUS",
+ "marketCap": "22788423.740342889693112432",
+ "price": "0.02278842374034288969",
+ "priceChange24hPercent": "-0.14",
+ "volume24h": "6113.8985465833837512",
+ "communityRecognized": true,
+ "key": "sui--mainnet:0x06864a6f921804860930db6ddbe2e16acdf8504495ea7481637a1c8b9a8fe54b::cetus::CETUS",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Sui",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sui.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sui--mainnet",
+ "address": "0xf22da9a24ad027cccb5f2d496cbe91de953d363513db08a3a734d361c7c17503::LOFI::LOFI",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-onchain/sui--mainnet/tokens/0xf22da9a24ad027cccb5f2d496cbe91de953d363513db08a3a734d361c7c17503::LOFI::LOFI.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-onchain/sui--mainnet/tokens/0xf22da9a24ad027cccb5f2d496cbe91de953d363513db08a3a734d361c7c17503::LOFI::LOFI.png"
+ ],
+ "name": "LOFI",
+ "symbol": "LOFI",
+ "marketCap": "3578553.114208961018635224",
+ "price": "0.00357855311420896102",
+ "priceChange24hPercent": "-2.51",
+ "volume24h": "640.8718387689847",
+ "communityRecognized": true,
+ "key": "sui--mainnet:0xf22da9a24ad027cccb5f2d496cbe91de953d363513db08a3a734d361c7c17503::LOFI::LOFI",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Sui",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sui.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sui--mainnet",
+ "address": "0x9d297676e7a4b771ab023291377b2adfaa4938fb9080b8d12430e4b108b836a9::xaum::XAUM",
+ "logoUrl": "https://coin-images.coingecko.com/coins/images/51962/large/xaum_200px_logo_1x.png?1733560735",
+ "logoUrls": [
+ "https://coin-images.coingecko.com/coins/images/51962/large/xaum_200px_logo_1x.png?1733560735"
+ ],
+ "name": "Matrixdock Gold",
+ "symbol": "XAUM",
+ "marketCap": "11743861.665257931866038303",
+ "price": "4391.70761054848089842575",
+ "priceChange24hPercent": "0.01",
+ "volume24h": "1092.7874064840727",
+ "communityRecognized": false,
+ "key": "sui--mainnet:0x9d297676e7a4b771ab023291377b2adfaa4938fb9080b8d12430e4b108b836a9::xaum::XAUM",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Sui",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sui.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sui--mainnet",
+ "address": "0x356a26eb9e012a68958082340d4c4116e7f55615cf27affcff209cf0ae544f59::wal::WAL",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-onchain/sui--mainnet/tokens/0x356a26eb9e012a68958082340d4c4116e7f55615cf27affcff209cf0ae544f59::wal::WAL.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-onchain/sui--mainnet/tokens/0x356a26eb9e012a68958082340d4c4116e7f55615cf27affcff209cf0ae544f59::wal::WAL.png"
+ ],
+ "name": "WAL Token",
+ "symbol": "WAL",
+ "marketCap": "70091456.868764486884665164",
+ "price": "0.0279225656083281303",
+ "priceChange24hPercent": "0.42",
+ "volume24h": "45283.8808970651875",
+ "communityRecognized": true,
+ "key": "sui--mainnet:0x356a26eb9e012a68958082340d4c4116e7f55615cf27affcff209cf0ae544f59::wal::WAL",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Sui",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sui.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sui--mainnet",
+ "address": "0x7016aae72cfc67f2fadf55769c0a7dd54291a583b63051a5ed71081cce836ac6::sca::SCA",
+ "logoUrl": "https://coin-images.coingecko.com/coins/images/34648/large/sca.png?1705592307",
+ "logoUrls": [
+ "https://coin-images.coingecko.com/coins/images/34648/large/sca.png?1705592307"
+ ],
+ "name": "Scallop",
+ "symbol": "SCA",
+ "price": "0.00422250648978846478",
+ "priceChange24hPercent": "0.03",
+ "volume24h": "1010.6546506947698",
+ "communityRecognized": true,
+ "key": "sui--mainnet:0x7016aae72cfc67f2fadf55769c0a7dd54291a583b63051a5ed71081cce836ac6::sca::SCA",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Sui",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sui.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sui--mainnet",
+ "address": "0x3a304c7feba2d819ea57c3542d68439ca2c386ba02159c740f7b406e592c62ea::haedal::HAEDAL",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-onchain/sui--mainnet/tokens/0x3a304c7feba2d819ea57c3542d68439ca2c386ba02159c740f7b406e592c62ea::haedal::HAEDAL.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-onchain/sui--mainnet/tokens/0x3a304c7feba2d819ea57c3542d68439ca2c386ba02159c740f7b406e592c62ea::haedal::HAEDAL.png"
+ ],
+ "name": "Haedal",
+ "symbol": "HAEDAL",
+ "marketCap": "18441763.345992663927178135",
+ "price": "0.01844176334599266393",
+ "priceChange24hPercent": "0.24",
+ "volume24h": "557.9948595266968",
+ "communityRecognized": true,
+ "key": "sui--mainnet:0x3a304c7feba2d819ea57c3542d68439ca2c386ba02159c740f7b406e592c62ea::haedal::HAEDAL",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Sui",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sui.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sui--mainnet",
+ "address": "0x35169bc93e1fddfcf3a82a9eae726d349689ed59e4b065369af8789fe59f8608::mmt::MMT",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-onchain/sui--mainnet/tokens/0x35169bc93e1fddfcf3a82a9eae726d349689ed59e4b065369af8789fe59f8608::mmt::MMT.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-onchain/sui--mainnet/tokens/0x35169bc93e1fddfcf3a82a9eae726d349689ed59e4b065369af8789fe59f8608::mmt::MMT.png"
+ ],
+ "name": "MMT",
+ "symbol": "MMT",
+ "marketCap": "34672768.243454849205575237",
+ "price": "0.16988508396667849449",
+ "priceChange24hPercent": "0.2",
+ "volume24h": "1507.789854378429",
+ "communityRecognized": true,
+ "key": "sui--mainnet:0x35169bc93e1fddfcf3a82a9eae726d349689ed59e4b065369af8789fe59f8608::mmt::MMT",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Sui",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sui.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sui--mainnet",
+ "address": "0x9f854b3ad20f8161ec0886f15f4a1752bf75d22261556f14cc8d3a1c5d50e529::magma::MAGMA",
+ "logoUrl": "https://coin-images.coingecko.com/coins/images/71100/large/magma.png?1765796989",
+ "logoUrls": [
+ "https://coin-images.coingecko.com/coins/images/71100/large/magma.png?1765796989"
+ ],
+ "name": "Magma Token",
+ "symbol": "MAGMA",
+ "marketCap": "240069477.224090492204218893",
+ "price": "0.2400694772240904922",
+ "priceChange24hPercent": "0.17",
+ "volume24h": "66633.0066472809531",
+ "communityRecognized": true,
+ "key": "sui--mainnet:0x9f854b3ad20f8161ec0886f15f4a1752bf75d22261556f14cc8d3a1c5d50e529::magma::MAGMA",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Sui",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sui.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sui--mainnet",
+ "address": "0xf8bfaf1cfefdc539a00e0bc37213c8f339cb411a6b0c4c023ed92f36c68d0fb6::bluwhale_ai::BLUWHALE_AI",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-onchain/sui--mainnet/tokens/0xf8bfaf1cfefdc539a00e0bc37213c8f339cb411a6b0c4c023ed92f36c68d0fb6::bluwhale_ai::BLUWHALE_AI.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-onchain/sui--mainnet/tokens/0xf8bfaf1cfefdc539a00e0bc37213c8f339cb411a6b0c4c023ed92f36c68d0fb6::bluwhale_ai::BLUWHALE_AI.png"
+ ],
+ "name": "Bluwhale AI",
+ "symbol": "BLUAI",
+ "price": "0.01095241776245544669",
+ "priceChange24hPercent": "1.95",
+ "volume24h": "1242.5585539017543",
+ "communityRecognized": false,
+ "key": "sui--mainnet:0xf8bfaf1cfefdc539a00e0bc37213c8f339cb411a6b0c4c023ed92f36c68d0fb6::bluwhale_ai::BLUWHALE_AI",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Sui",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sui.png"
+ }
+ ],
+ "trending|sui--mainnet|4h|all": [
+ {
+ "isNative": false,
+ "networkId": "sui--mainnet",
+ "address": "0xee962a61432231c2ede6946515beb02290cb516ad087bb06a731e922b2a5f57a::us::US",
+ "logoUrl": "https://coin-images.coingecko.com/coins/images/70693/large/us-icon.png?1763129786",
+ "logoUrls": [
+ "https://coin-images.coingecko.com/coins/images/70693/large/us-icon.png?1763129786"
+ ],
+ "name": "Talus Token",
+ "symbol": "US",
+ "marketCap": "150420240",
+ "price": "0.015042024",
+ "priceChange24hPercent": "-1.03",
+ "volume24h": "29797.905668",
+ "communityRecognized": true,
+ "key": "sui--mainnet:0xee962a61432231c2ede6946515beb02290cb516ad087bb06a731e922b2a5f57a::us::US",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Sui",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sui.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sui--mainnet",
+ "address": "0x0a48f85a3905cfa49a652bdb074d9e9fabad27892d54afaa5c9e0adeb7ac3cdf::swarm_network_token::SWARM_NETWORK_TOKEN",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/7058e87db0ac657acd1dbdb4b48557476288f95d851dfd4db1ce0b572949c5e4",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/7058e87db0ac657acd1dbdb4b48557476288f95d851dfd4db1ce0b572949c5e4"
+ ],
+ "name": "Swarm Network",
+ "symbol": "TRUTH",
+ "marketCap": "123507894.153172941395107111",
+ "price": "0.01235078941531729414",
+ "priceChange24hPercent": "-0.1",
+ "volume24h": "2921.375649",
+ "communityRecognized": true,
+ "key": "sui--mainnet:0x0a48f85a3905cfa49a652bdb074d9e9fabad27892d54afaa5c9e0adeb7ac3cdf::swarm_network_token::SWARM_NETWORK_TOKEN",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Sui",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sui.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sui--mainnet",
+ "address": "0xdeeb7a4662eec9f2f3def03fb937a663dddaa2e215b8078a284d026b7946c270::deep::DEEP",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-onchain/sui--mainnet/tokens/0xdeeb7a4662eec9f2f3def03fb937a663dddaa2e215b8078a284d026b7946c270::deep::DEEP.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-onchain/sui--mainnet/tokens/0xdeeb7a4662eec9f2f3def03fb937a663dddaa2e215b8078a284d026b7946c270::deep::DEEP.png"
+ ],
+ "name": "DeepBook Token",
+ "symbol": "DEEP",
+ "marketCap": "92513275.605854737610588388",
+ "price": "0.01610275176958694093",
+ "priceChange24hPercent": "-0.29",
+ "volume24h": "412283.9688366419311",
+ "communityRecognized": true,
+ "key": "sui--mainnet:0xdeeb7a4662eec9f2f3def03fb937a663dddaa2e215b8078a284d026b7946c270::deep::DEEP",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Sui",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sui.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sui--mainnet",
+ "address": "0x8993129d72e733985f7f1a00396cbd055bad6f817fee36576ce483c8bbb8b87b::sudeng::SUDENG",
+ "logoUrl": "https://coin-images.coingecko.com/coins/images/50450/large/sudeng.png?1753214629",
+ "logoUrls": [
+ "https://coin-images.coingecko.com/coins/images/50450/large/sudeng.png?1753214629"
+ ],
+ "name": "sudeng",
+ "symbol": "HIPPO",
+ "marketCap": "1269279.203587223743234456",
+ "price": "0.00012692792035872237",
+ "priceChange24hPercent": "2.51",
+ "volume24h": "1919.0693061077914",
+ "communityRecognized": true,
+ "key": "sui--mainnet:0x8993129d72e733985f7f1a00396cbd055bad6f817fee36576ce483c8bbb8b87b::sudeng::SUDENG",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Sui",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sui.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sui--mainnet",
+ "address": "0x7262fb2f7a3a14c888c438a3cd9b912469a58cf60f367352c46584262e8299aa::ika::IKA",
+ "logoUrl": "https://coin-images.coingecko.com/coins/images/67598/large/ika.jpg?1753770879",
+ "logoUrls": [
+ "https://coin-images.coingecko.com/coins/images/67598/large/ika.jpg?1753770879"
+ ],
+ "name": "IKA Token",
+ "symbol": "IKA",
+ "marketCap": "20828325.608959615203374421",
+ "price": "0.00208283256089596152",
+ "priceChange24hPercent": "-0.94",
+ "volume24h": "782.6546443977609",
+ "communityRecognized": true,
+ "key": "sui--mainnet:0x7262fb2f7a3a14c888c438a3cd9b912469a58cf60f367352c46584262e8299aa::ika::IKA",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Sui",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sui.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sui--mainnet",
+ "address": "0x0041f9f9344cac094454cd574e333c4fdb132d7bcc9379bcd4aab485b2a63942::wbtc::WBTC",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/dd32930dcb280ef60957dbbdfb568248af2b960919f965b4f05f9a20085fd567",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/dd32930dcb280ef60957dbbdfb568248af2b960919f965b4f05f9a20085fd567"
+ ],
+ "name": "Wrapped BTC",
+ "symbol": "WBTC",
+ "price": "78672.01719550714950392535",
+ "priceChange24hPercent": "-0.37",
+ "volume24h": "53043.9245623578764292",
+ "communityRecognized": false,
+ "key": "sui--mainnet:0x0041f9f9344cac094454cd574e333c4fdb132d7bcc9379bcd4aab485b2a63942::wbtc::WBTC",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Sui",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sui.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sui--mainnet",
+ "address": "0x03bc8959a87448e241edbf2a4fae18c740698253773496e50bae8c8b3e0d5b3e::agi::AGI",
+ "logoUrl": "https://static.oklink.com/cdn/web3/currency/token/large/784-0x03bc8959a87448e241edbf2a4fae18c740698253773496e50bae8c8b3e0d5b3e::agi::AGI-107/type=default_90_0?v=1788835349047",
+ "logoUrls": [
+ "https://static.oklink.com/cdn/web3/currency/token/large/784-0x03bc8959a87448e241edbf2a4fae18c740698253773496e50bae8c8b3e0d5b3e::agi::AGI-107/type=default_90_0?v=1788835349047"
+ ],
+ "name": "Artificial Giga Inu",
+ "symbol": "AGI",
+ "marketCap": "11597.781268305266816045",
+ "price": "0.00001159778126830527",
+ "priceChange24hPercent": "31.51",
+ "volume24h": "1349.934282792892",
+ "communityRecognized": false,
+ "key": "sui--mainnet:0x03bc8959a87448e241edbf2a4fae18c740698253773496e50bae8c8b3e0d5b3e::agi::AGI",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Sui",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sui.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sui--mainnet",
+ "address": "0x76a49ebaf991fa2d4cb6a352af14425d453fe2ba6802b5ed2361b227150b6689::take::TAKE",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-onchain/sui--mainnet/tokens/0x76a49ebaf991fa2d4cb6a352af14425d453fe2ba6802b5ed2361b227150b6689::take::TAKE.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-onchain/sui--mainnet/tokens/0x76a49ebaf991fa2d4cb6a352af14425d453fe2ba6802b5ed2361b227150b6689::take::TAKE.png"
+ ],
+ "name": "TAKE",
+ "symbol": "TAKE",
+ "marketCap": "62751511.293141534725371733",
+ "price": "0.06275151129314153473",
+ "priceChange24hPercent": "0.09",
+ "volume24h": "1789.3225490940421",
+ "communityRecognized": false,
+ "key": "sui--mainnet:0x76a49ebaf991fa2d4cb6a352af14425d453fe2ba6802b5ed2361b227150b6689::take::TAKE",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Sui",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sui.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sui--mainnet",
+ "address": "0x5145494a5f5100e645e4b0aa950fa6b68f614e8c59e17bc5ded3495123a79178::ns::NS",
+ "logoUrl": "https://coin-images.coingecko.com/coins/images/40110/large/NS_coin.png?1725704829",
+ "logoUrls": [
+ "https://coin-images.coingecko.com/coins/images/40110/large/NS_coin.png?1725704829"
+ ],
+ "name": "SuiNS Token",
+ "symbol": "NS",
+ "marketCap": "6994217.161972698047605592",
+ "price": "0.0139884343239453961",
+ "priceChange24hPercent": "0.66",
+ "volume24h": "20718.8693874755976",
+ "communityRecognized": true,
+ "key": "sui--mainnet:0x5145494a5f5100e645e4b0aa950fa6b68f614e8c59e17bc5ded3495123a79178::ns::NS",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Sui",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sui.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sui--mainnet",
+ "address": "0x06864a6f921804860930db6ddbe2e16acdf8504495ea7481637a1c8b9a8fe54b::cetus::CETUS",
+ "logoUrl": "https://static.oklink.com/cdn/web3/currency/token/large/784-0x06864a6f921804860930db6ddbe2e16acdf8504495ea7481637a1c8b9a8fe54b::cetus::CETUS-107/type=default_90_0?v=1788830400330",
+ "logoUrls": [
+ "https://static.oklink.com/cdn/web3/currency/token/large/784-0x06864a6f921804860930db6ddbe2e16acdf8504495ea7481637a1c8b9a8fe54b::cetus::CETUS-107/type=default_90_0?v=1788830400330"
+ ],
+ "name": "Cetus Token",
+ "symbol": "CETUS",
+ "marketCap": "22788423.740342889693112432",
+ "price": "0.02278842374034288969",
+ "priceChange24hPercent": "0",
+ "volume24h": "22533.911193154716424892",
+ "communityRecognized": true,
+ "key": "sui--mainnet:0x06864a6f921804860930db6ddbe2e16acdf8504495ea7481637a1c8b9a8fe54b::cetus::CETUS",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Sui",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sui.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sui--mainnet",
+ "address": "0xf22da9a24ad027cccb5f2d496cbe91de953d363513db08a3a734d361c7c17503::LOFI::LOFI",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-onchain/sui--mainnet/tokens/0xf22da9a24ad027cccb5f2d496cbe91de953d363513db08a3a734d361c7c17503::LOFI::LOFI.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-onchain/sui--mainnet/tokens/0xf22da9a24ad027cccb5f2d496cbe91de953d363513db08a3a734d361c7c17503::LOFI::LOFI.png"
+ ],
+ "name": "LOFI",
+ "symbol": "LOFI",
+ "marketCap": "3578553.114208961018635224",
+ "price": "0.00357855311420896102",
+ "priceChange24hPercent": "-3.44",
+ "volume24h": "1349.1560908777631",
+ "communityRecognized": true,
+ "key": "sui--mainnet:0xf22da9a24ad027cccb5f2d496cbe91de953d363513db08a3a734d361c7c17503::LOFI::LOFI",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Sui",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sui.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sui--mainnet",
+ "address": "0xe1b45a0e641b9955a20aa0ad1c1f4ad86aad8afb07296d4085e349a50e90bdca::blue::BLUE",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-onchain/sui--mainnet/tokens/0xe1b45a0e641b9955a20aa0ad1c1f4ad86aad8afb07296d4085e349a50e90bdca::blue::BLUE.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-onchain/sui--mainnet/tokens/0xe1b45a0e641b9955a20aa0ad1c1f4ad86aad8afb07296d4085e349a50e90bdca::blue::BLUE.png"
+ ],
+ "name": "Bluefin",
+ "symbol": "BLUE",
+ "price": "0.00992499258730470741",
+ "priceChange24hPercent": "-1.24",
+ "volume24h": "1154.7862143152097",
+ "communityRecognized": true,
+ "key": "sui--mainnet:0xe1b45a0e641b9955a20aa0ad1c1f4ad86aad8afb07296d4085e349a50e90bdca::blue::BLUE",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Sui",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sui.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sui--mainnet",
+ "address": "0x9d297676e7a4b771ab023291377b2adfaa4938fb9080b8d12430e4b108b836a9::xaum::XAUM",
+ "logoUrl": "https://coin-images.coingecko.com/coins/images/51962/large/xaum_200px_logo_1x.png?1733560735",
+ "logoUrls": [
+ "https://coin-images.coingecko.com/coins/images/51962/large/xaum_200px_logo_1x.png?1733560735"
+ ],
+ "name": "Matrixdock Gold",
+ "symbol": "XAUM",
+ "marketCap": "11743861.665257931866038303",
+ "price": "4391.70761054848089842575",
+ "priceChange24hPercent": "0.41",
+ "volume24h": "13060.4633787856149",
+ "communityRecognized": false,
+ "key": "sui--mainnet:0x9d297676e7a4b771ab023291377b2adfaa4938fb9080b8d12430e4b108b836a9::xaum::XAUM",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Sui",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sui.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sui--mainnet",
+ "address": "0x7a479e7a6e75323ac9125656a9ca795e11ea42165ac4206af44d1b66e9563be9::svbtc::SVBTC",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/c0ae94109b30c82bf49ccbcc253ff5fdc79b754d162e60378948e95ca0f6bf35",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/c0ae94109b30c82bf49ccbcc253ff5fdc79b754d162e60378948e95ca0f6bf35"
+ ],
+ "name": "Svalbard BTC",
+ "symbol": "SVBTC",
+ "price": "79624.61353778783962307395",
+ "priceChange24hPercent": "0.39",
+ "volume24h": "1869.53356223852015",
+ "communityRecognized": false,
+ "key": "sui--mainnet:0x7a479e7a6e75323ac9125656a9ca795e11ea42165ac4206af44d1b66e9563be9::svbtc::SVBTC",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Sui",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sui.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sui--mainnet",
+ "address": "0x356a26eb9e012a68958082340d4c4116e7f55615cf27affcff209cf0ae544f59::wal::WAL",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-onchain/sui--mainnet/tokens/0x356a26eb9e012a68958082340d4c4116e7f55615cf27affcff209cf0ae544f59::wal::WAL.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-onchain/sui--mainnet/tokens/0x356a26eb9e012a68958082340d4c4116e7f55615cf27affcff209cf0ae544f59::wal::WAL.png"
+ ],
+ "name": "WAL Token",
+ "symbol": "WAL",
+ "marketCap": "70091456.868764486884665164",
+ "price": "0.0279225656083281303",
+ "priceChange24hPercent": "0.39",
+ "volume24h": "131020.9714931843851",
+ "communityRecognized": true,
+ "key": "sui--mainnet:0x356a26eb9e012a68958082340d4c4116e7f55615cf27affcff209cf0ae544f59::wal::WAL",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Sui",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sui.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sui--mainnet",
+ "address": "0xfa7ac3951fdca92c5200d468d31a365eb03b2be9936fde615e69f0c1274ad3a0::BLUB::BLUB",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-onchain/sui--mainnet/tokens/0xfa7ac3951fdca92c5200d468d31a365eb03b2be9936fde615e69f0c1274ad3a0::BLUB::BLUB.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-onchain/sui--mainnet/tokens/0xfa7ac3951fdca92c5200d468d31a365eb03b2be9936fde615e69f0c1274ad3a0::BLUB::BLUB.png"
+ ],
+ "name": "BLUB",
+ "symbol": "BLUB",
+ "marketCap": "1083555.260918580712322302",
+ "price": "0.00000000257566203361",
+ "priceChange24hPercent": "2.76",
+ "volume24h": "787.9589630056869",
+ "communityRecognized": false,
+ "key": "sui--mainnet:0xfa7ac3951fdca92c5200d468d31a365eb03b2be9936fde615e69f0c1274ad3a0::BLUB::BLUB",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Sui",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sui.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sui--mainnet",
+ "address": "0x7016aae72cfc67f2fadf55769c0a7dd54291a583b63051a5ed71081cce836ac6::sca::SCA",
+ "logoUrl": "https://coin-images.coingecko.com/coins/images/34648/large/sca.png?1705592307",
+ "logoUrls": [
+ "https://coin-images.coingecko.com/coins/images/34648/large/sca.png?1705592307"
+ ],
+ "name": "Scallop",
+ "symbol": "SCA",
+ "price": "0.00422250648978846478",
+ "priceChange24hPercent": "-0.19",
+ "volume24h": "4445.3694816973529",
+ "communityRecognized": true,
+ "key": "sui--mainnet:0x7016aae72cfc67f2fadf55769c0a7dd54291a583b63051a5ed71081cce836ac6::sca::SCA",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Sui",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sui.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sui--mainnet",
+ "address": "0x3a304c7feba2d819ea57c3542d68439ca2c386ba02159c740f7b406e592c62ea::haedal::HAEDAL",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-onchain/sui--mainnet/tokens/0x3a304c7feba2d819ea57c3542d68439ca2c386ba02159c740f7b406e592c62ea::haedal::HAEDAL.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-onchain/sui--mainnet/tokens/0x3a304c7feba2d819ea57c3542d68439ca2c386ba02159c740f7b406e592c62ea::haedal::HAEDAL.png"
+ ],
+ "name": "Haedal",
+ "symbol": "HAEDAL",
+ "marketCap": "18441763.345992663927178135",
+ "price": "0.01844176334599266393",
+ "priceChange24hPercent": "-0.38",
+ "volume24h": "1930.3966311316675",
+ "communityRecognized": true,
+ "key": "sui--mainnet:0x3a304c7feba2d819ea57c3542d68439ca2c386ba02159c740f7b406e592c62ea::haedal::HAEDAL",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Sui",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sui.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sui--mainnet",
+ "address": "0xa99b8952d4f7d947ea77fe0ecdcc9e5fc0bcab2841d6e2a5aa00c3044e5544b5::navx::NAVX",
+ "logoUrl": "https://uni-test.onekey-asset.com/server-service-onchain/sui--mainnet/tokens/0xa99b8952d4f7d947ea77fe0ecdcc9e5fc0bcab2841d6e2a5aa00c3044e5544b5::navx::NAVX.png",
+ "logoUrls": [
+ "https://uni-test.onekey-asset.com/server-service-onchain/sui--mainnet/tokens/0xa99b8952d4f7d947ea77fe0ecdcc9e5fc0bcab2841d6e2a5aa00c3044e5544b5::navx::NAVX.png"
+ ],
+ "name": "NAVX Token",
+ "symbol": "NAVX",
+ "marketCap": "10123900.670334838697998109",
+ "price": "0.0101239006703348387",
+ "priceChange24hPercent": "-0.47",
+ "volume24h": "1492.8011027366824",
+ "communityRecognized": true,
+ "key": "sui--mainnet:0xa99b8952d4f7d947ea77fe0ecdcc9e5fc0bcab2841d6e2a5aa00c3044e5544b5::navx::NAVX",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Sui",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sui.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sui--mainnet",
+ "address": "0x41d587e5336f1c86cad50d38a7136db99333bb9bda91cea4ba69115defeb1402::sui_usde::SUI_USDE",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-onchain/sui--mainnet/tokens/0x41d587e5336f1c86cad50d38a7136db99333bb9bda91cea4ba69115defeb1402::sui_usde::SUI_USDE.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-onchain/sui--mainnet/tokens/0x41d587e5336f1c86cad50d38a7136db99333bb9bda91cea4ba69115defeb1402::sui_usde::SUI_USDE.png"
+ ],
+ "name": "eSui Dollar",
+ "symbol": "suiUSDe",
+ "marketCap": "13080284.243158565661478599",
+ "price": "0.99878404669260700389",
+ "priceChange24hPercent": "-0.08",
+ "volume24h": "93629.384904",
+ "communityRecognized": false,
+ "key": "sui--mainnet:0x41d587e5336f1c86cad50d38a7136db99333bb9bda91cea4ba69115defeb1402::sui_usde::SUI_USDE",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Sui",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sui.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sui--mainnet",
+ "address": "0x35169bc93e1fddfcf3a82a9eae726d349689ed59e4b065369af8789fe59f8608::mmt::MMT",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-onchain/sui--mainnet/tokens/0x35169bc93e1fddfcf3a82a9eae726d349689ed59e4b065369af8789fe59f8608::mmt::MMT.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-onchain/sui--mainnet/tokens/0x35169bc93e1fddfcf3a82a9eae726d349689ed59e4b065369af8789fe59f8608::mmt::MMT.png"
+ ],
+ "name": "MMT",
+ "symbol": "MMT",
+ "marketCap": "34672768.243454849205575237",
+ "price": "0.16988508396667849449",
+ "priceChange24hPercent": "1.35",
+ "volume24h": "5399.4528028450146",
+ "communityRecognized": true,
+ "key": "sui--mainnet:0x35169bc93e1fddfcf3a82a9eae726d349689ed59e4b065369af8789fe59f8608::mmt::MMT",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Sui",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sui.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sui--mainnet",
+ "address": "0x9f854b3ad20f8161ec0886f15f4a1752bf75d22261556f14cc8d3a1c5d50e529::magma::MAGMA",
+ "logoUrl": "https://coin-images.coingecko.com/coins/images/71100/large/magma.png?1765796989",
+ "logoUrls": [
+ "https://coin-images.coingecko.com/coins/images/71100/large/magma.png?1765796989"
+ ],
+ "name": "Magma Token",
+ "symbol": "MAGMA",
+ "marketCap": "240069477.224090492204218893",
+ "price": "0.2400694772240904922",
+ "priceChange24hPercent": "0.12",
+ "volume24h": "423832.1521772686952",
+ "communityRecognized": true,
+ "key": "sui--mainnet:0x9f854b3ad20f8161ec0886f15f4a1752bf75d22261556f14cc8d3a1c5d50e529::magma::MAGMA",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Sui",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sui.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sui--mainnet",
+ "address": "0xf8bfaf1cfefdc539a00e0bc37213c8f339cb411a6b0c4c023ed92f36c68d0fb6::bluwhale_ai::BLUWHALE_AI",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-onchain/sui--mainnet/tokens/0xf8bfaf1cfefdc539a00e0bc37213c8f339cb411a6b0c4c023ed92f36c68d0fb6::bluwhale_ai::BLUWHALE_AI.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-onchain/sui--mainnet/tokens/0xf8bfaf1cfefdc539a00e0bc37213c8f339cb411a6b0c4c023ed92f36c68d0fb6::bluwhale_ai::BLUWHALE_AI.png"
+ ],
+ "name": "Bluwhale AI",
+ "symbol": "BLUAI",
+ "price": "0.01095241776245544669",
+ "priceChange24hPercent": "0.38",
+ "volume24h": "4983.9673717767245",
+ "communityRecognized": false,
+ "key": "sui--mainnet:0xf8bfaf1cfefdc539a00e0bc37213c8f339cb411a6b0c4c023ed92f36c68d0fb6::bluwhale_ai::BLUWHALE_AI",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Sui",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sui.png"
+ }
+ ],
+ "trending|sui--mainnet|24h|all": [
+ {
+ "isNative": false,
+ "networkId": "sui--mainnet",
+ "address": "0xee962a61432231c2ede6946515beb02290cb516ad087bb06a731e922b2a5f57a::us::US",
+ "logoUrl": "https://coin-images.coingecko.com/coins/images/70693/large/us-icon.png?1763129786",
+ "logoUrls": [
+ "https://coin-images.coingecko.com/coins/images/70693/large/us-icon.png?1763129786"
+ ],
+ "name": "Talus Token",
+ "symbol": "US",
+ "marketCap": "150420240",
+ "price": "0.015042024",
+ "priceChange24hPercent": "-6.66",
+ "volume24h": "133956.198902",
+ "communityRecognized": true,
+ "key": "sui--mainnet:0xee962a61432231c2ede6946515beb02290cb516ad087bb06a731e922b2a5f57a::us::US",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Sui",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sui.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sui--mainnet",
+ "address": "0x0a48f85a3905cfa49a652bdb074d9e9fabad27892d54afaa5c9e0adeb7ac3cdf::swarm_network_token::SWARM_NETWORK_TOKEN",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/7058e87db0ac657acd1dbdb4b48557476288f95d851dfd4db1ce0b572949c5e4",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/7058e87db0ac657acd1dbdb4b48557476288f95d851dfd4db1ce0b572949c5e4"
+ ],
+ "name": "Swarm Network",
+ "symbol": "TRUTH",
+ "marketCap": "123507894.153172941395107111",
+ "price": "0.01235078941531729414",
+ "priceChange24hPercent": "0.17",
+ "volume24h": "47000.943745",
+ "communityRecognized": true,
+ "key": "sui--mainnet:0x0a48f85a3905cfa49a652bdb074d9e9fabad27892d54afaa5c9e0adeb7ac3cdf::swarm_network_token::SWARM_NETWORK_TOKEN",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Sui",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sui.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sui--mainnet",
+ "address": "0xfe3afec26c59e874f3c1d60b8203cb3852d2bb2aa415df9548b8d688e6683f93::alpha::ALPHA",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-onchain/sui--mainnet/tokens/0xfe3afec26c59e874f3c1d60b8203cb3852d2bb2aa415df9548b8d688e6683f93::alpha::ALPHA.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-onchain/sui--mainnet/tokens/0xfe3afec26c59e874f3c1d60b8203cb3852d2bb2aa415df9548b8d688e6683f93::alpha::ALPHA.png"
+ ],
+ "name": "ALPHA Token",
+ "symbol": "ALPHA",
+ "marketCap": "1112950.757654235099893792",
+ "price": "0.7419671717694900666",
+ "priceChange24hPercent": "3.18",
+ "volume24h": "672.8727283613171",
+ "communityRecognized": false,
+ "key": "sui--mainnet:0xfe3afec26c59e874f3c1d60b8203cb3852d2bb2aa415df9548b8d688e6683f93::alpha::ALPHA",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Sui",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sui.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sui--mainnet",
+ "address": "0xdeeb7a4662eec9f2f3def03fb937a663dddaa2e215b8078a284d026b7946c270::deep::DEEP",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-onchain/sui--mainnet/tokens/0xdeeb7a4662eec9f2f3def03fb937a663dddaa2e215b8078a284d026b7946c270::deep::DEEP.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-onchain/sui--mainnet/tokens/0xdeeb7a4662eec9f2f3def03fb937a663dddaa2e215b8078a284d026b7946c270::deep::DEEP.png"
+ ],
+ "name": "DeepBook Token",
+ "symbol": "DEEP",
+ "marketCap": "92513275.605854737610588388",
+ "price": "0.01610275176958694093",
+ "priceChange24hPercent": "1.23",
+ "volume24h": "1856105.338736893040506281",
+ "communityRecognized": true,
+ "key": "sui--mainnet:0xdeeb7a4662eec9f2f3def03fb937a663dddaa2e215b8078a284d026b7946c270::deep::DEEP",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Sui",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sui.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sui--mainnet",
+ "address": "0x50c9c77f29de11a2abdbe60e0869a026dc47c94bfc4e7d461c80313b079d44d2::warped::WARPED",
+ "logoUrl": "https://coin-images.coingecko.com/coins/images/33307/large/WarpedGames_Logo_Main_Isotype_Color-TransparentBG.png?1763209428",
+ "logoUrls": [
+ "https://coin-images.coingecko.com/coins/images/33307/large/WarpedGames_Logo_Main_Isotype_Color-TransparentBG.png?1763209428"
+ ],
+ "name": "Warped",
+ "symbol": "WARPED",
+ "price": "0.00007392100128069132",
+ "priceChange24hPercent": "3.33",
+ "volume24h": "778.5976849585288",
+ "communityRecognized": false,
+ "key": "sui--mainnet:0x50c9c77f29de11a2abdbe60e0869a026dc47c94bfc4e7d461c80313b079d44d2::warped::WARPED",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Sui",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sui.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sui--mainnet",
+ "address": "0x8993129d72e733985f7f1a00396cbd055bad6f817fee36576ce483c8bbb8b87b::sudeng::SUDENG",
+ "logoUrl": "https://coin-images.coingecko.com/coins/images/50450/large/sudeng.png?1753214629",
+ "logoUrls": [
+ "https://coin-images.coingecko.com/coins/images/50450/large/sudeng.png?1753214629"
+ ],
+ "name": "sudeng",
+ "symbol": "HIPPO",
+ "marketCap": "1269279.203587223743234456",
+ "price": "0.00012692792035872237",
+ "priceChange24hPercent": "7.13",
+ "volume24h": "7077.797347581268",
+ "communityRecognized": true,
+ "key": "sui--mainnet:0x8993129d72e733985f7f1a00396cbd055bad6f817fee36576ce483c8bbb8b87b::sudeng::SUDENG",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Sui",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sui.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sui--mainnet",
+ "address": "0x7262fb2f7a3a14c888c438a3cd9b912469a58cf60f367352c46584262e8299aa::ika::IKA",
+ "logoUrl": "https://coin-images.coingecko.com/coins/images/67598/large/ika.jpg?1753770879",
+ "logoUrls": [
+ "https://coin-images.coingecko.com/coins/images/67598/large/ika.jpg?1753770879"
+ ],
+ "name": "IKA Token",
+ "symbol": "IKA",
+ "marketCap": "20828325.608959615203374421",
+ "price": "0.00208283256089596152",
+ "priceChange24hPercent": "-0.01",
+ "volume24h": "10609.6108824912421",
+ "communityRecognized": true,
+ "key": "sui--mainnet:0x7262fb2f7a3a14c888c438a3cd9b912469a58cf60f367352c46584262e8299aa::ika::IKA",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Sui",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sui.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sui--mainnet",
+ "address": "0xc466c28d87b3d5cd34f3d5c088751532d71a38d93a8aae4551dd56272cfb4355::manifest::MANIFEST",
+ "logoUrl": "data:image/jpeg;base64,/9j/4AAQSkZJRgABAQAAAQABAAD/4gHYSUNDX1BST0ZJTEUAAQEAAAHIAAAAAAQwAABtbnRyUkdCIFhZWiAH4AABAAEAAAAAAABhY3NwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAA9tYAAQAAAADTLQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlkZXNjAAAA8AAAACRyWFlaAAABFAAAABRnWFlaAAABKAAAABRiWFlaAAABPAAAABR3dHB0AAABUAAAABRyVFJDAAABZAAAAChnVFJDAAABZAAAAChiVFJDAAABZAAAAChjcHJ0AAABjAAAADxtbHVjAAAAAAAAAAEAAAAMZW5VUwAAAAgAAAAcAHMAUgBHAEJYWVogAAAAAAAAb6IAADj1AAADkFhZWiAAAAAAAABimQAAt4UAABjaWFlaIAAAAAAAACSgAAAPhAAAts9YWVogAAAAAAAA9tYAAQAAAADTLXBhcmEAAAAAAAQAAAACZmYAAPKnAAANWQAAE9AAAApbAAAAAAAAAABtbHVjAAAAAAAAAAEAAAAMZW5VUwAAACAAAAAcAEcAbwBvAGcAbABlACAASQBuAGMALgAgADIAMAAxADb/2wBDAAYEBQYFBAYGBQYHBwYIChAKCgkJChQODwwQFxQYGBcUFhYaHSUfGhsjHBYWICwgIyYnKSopGR8tMC0oMCUoKSj/2wBDAQcHBwoIChMKChMoGhYaKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCj/wAARCAD6APMDASIAAhEBAxEB/8QAHQABAAEFAQEBAAAAAAAAAAAAAAUDBAYHCAIBCf/EAEwQAAEDAwMBBAUHBwkFCQAAAAEAAgMEBREGEiExBxNRcRQiQWGRFiMygZOh0hVCU1SxwdEIJDNDYnKCkvAXUnOU4TQ3dYOEssLT8f/EABcBAQEBAQAAAAAAAAAAAAAAAAABAgP/xAAhEQEBAQACAgICAwAAAAAAAAAAARECEgMhEzEEMkFRkf/aAAwDAQACEQMRAD8A6pRFgdf2uaHoL6+0VV+hZWRy9xJ828xsfnG10gbtBz4nhBniLGdVa80xpR8TL/eaSkmlxshLi6R2eAdjQXY9+MK91JqiyaZoG1l/udLQU7s7TM/Bf7cNHVx9wBQTKKysl1o73aaW52yYT0NVGJYZQ0t3tPQ4IB+KxG+9reibHeJbXcr5HHWQu2StZFJI2J3g5zWloPmeEGdosE1B2t6I0/XCju18jgnMbJQGwSyNLXDLSHNaQcg+KP7WtEssDbyb3H+T3zGnY/uZNz5AAS1rNu44BHQYQZ2ig9I6rsur7aa7T1dHWUzXlji0FpY7wc1wBB8wpxAREQEREBERAREQEREBERAREQEREBERAREQEREA9Fy1qqi1BpnSNx7O5tPRVc2orpK233FtSwiUPkD97o/pgtA5PQcc+PUqg5dL22bVsOo545JbnBTmmhc95LImE5O1vQE+09ccINYfygdP2+g7KKqr9Ep33Nhoqd1YYx3rmtlYMF3XHuWd9otmttw0ZdKyuoaaoqqS2VJp5ZYw50RMRyWk9DwOngpfV2m7fquxy2m8Rvko5Xse5rHlpy1wcOR7wFf3CghuFrqbfUgmnqIXQSAHBLXNLTz5FBiHYh/3RaU/8Pi/9q1doGeqpuyXVlTFZaW8VEl2rvynBUVHcZj53EuwTnAHHvW+dPWak0/Y6O021jmUdJEIYmucXENHTk9Vh937JdN3K41tUXXOljr3mSspaStkigqXHqXsacHPt6ZQYDruopa/+T3pero6EUNPLU0Bipu8MndM7wYbuPJ49pWy9V0dqku9smhZb36tggldaYqyVzGEkDedreox1OCQpO96Ps9409S2Oqpi220z4nxRROLAwxnLAMewYVLWOibTqxtG65CpiqqJxdTVVLM6GaEkYO1zTnkIMD7CDUM1Jr2O9wxQaiNwjkrI6Y5pwCz1DH7eRnOeVuJY5o3R1p0jBUstTJ3TVUne1NTUSullmfjGXOdyVkaAiIgIiICIiAiIgIiICIiAiIgIiICIiAiIgIiICtqS4UdZNURUlVBPLTu2TMjkDjG7wcB0PmrlY3baKa3alvFSyjd6NVejtYY9o6B25xGegzygm2V9I9zWtqYS50roWgPHMjc5aPeNp49xVytc6o01Wu1HXV9DFWOpXNppO7pphG5zzIWzlnIw7u44hnI43AdSqEFPqyBkEIhr3l0cb2yOma4RANmGx5Lsl3MWTzk85OEGzUWttU0twpqKw26l/K81Q+mqC5tPWOEhl2tLXOeXDIDj4/VhUq2k1ZLN6I1tcGh0veVDJw1r2PkhIDTu3AhglHQY5x7EGypp4oGtM0jIw5wYC44y48AeZVRaun09d6uplpaiO6ujFa1zpnVp7t0QmBYYxu3NIYOSNp69Sci0qLZrA1FDHH+U2tjgdFJK2p3Et2yAdXgbs7OSCTwdw5QbcRapt9s1X+UbQ6c3GKmicOBMXdJcuMgMp4LMcHfjnGFd6kt+qJLvdH2v08PcJe5kbUYhMRgwxjW7uH97znA8/Yg2PJPFHLFHJIxskpIY0nBcQMkDx4BKqZwtTXywagdc6k26O6GeDv8A0WpfV7oww02xgaHPyH7yeSM85J5U/oy13eOuMl0fX+ixQH0dk8xzuc924OG927jbjcTjPGOUGbQTRVELZYJGyROGWvacg+RVQkAZK1DJp/UlvtopqCO4uilihL2sqz83JmbdtG9pA5i4DgOh5wQch0hR3+G/zSXZtY6GSjG98suWCXbH6rWhxB538hrcc53ZygzmnniqYI56eRksMjQ9j2HLXNIyCD7Qqi0rbrBqmm07QUlPFd6anhhpI6iH0ndIZGwzNkMZEgwzcYOA4D1enjKGzatkuNd39Tcj3gjZvZNtYWboM7cP9VwAk6NH53JyEG1kWCVNuu8Wm6SleLlOyK5T98yGpIqJKXfL3QEhcD7YT9LOAfJQNXatWSOmbF+VGVLosd6awFnd+jNbsGCB3nfZO7aPbzzhBs6ruVFRTwQ1dXBBNOdsTJJA10hyBhoPXqPirtarq9KXc3qkqojXv9ElLIpHVjie6NVC/By71h3fedc8AD2BVZ9OX+eGKR9RdGzmKmdIGVz2jvHTnv8AgOwB3fsHA9nKDZ6psnifNJEyRrpYwC9gPLc9MhauFn1ay704ZUV7aeEPZA4zb2gCWXHeZf62YzHyQ4+R5U/2d22toqm5T11NXwmdkAzWT969z2tIeQdzsDJ4/YgzZERAREQEREBERAREQEREBERB8LQXAkDI6FfURAREQEREBERAREQEREBERAREQEREBERAREQEREBERAREQEREBERAREQEREBERAREQEREBERAREQEREBERAREQEREBERAREQEREBERAREQEREBERAREQEREBERAREQEREBERAREQEREBERAREQEREBERAREQEREBERAREQEREBERAREQEREBERAREQEREBERAREQEREBERAREQEREBERAREQEREBERAREQERYHr7tHt2l4ZIoS2prgPoA+q0+8/uTNGeLy+RjBl72tHvOFyffe0HXV9L3QXB1BTO+ixmIuPqG5ay1LdtS08odcrtWkP8AoltS47vvW/jqa70kudDH/SVlM3zlaP3qib7ah1uVGP8Azm/xX50S3a5TPAbX1Tnk4wZnfvKnaKwahq4RKy7BjT1/nLyR5gLXxp2d+MvVsecMuFI4+6Zv8VdxTwzDMUrHj+y4FfnzcLdfrXb6mqfe5iyFuTgud14AyfNTvZrJXS281L7tLFUySYjDqlzTge0YOeql8eHZ3ai5w032kai0/Xx0lzmNwpsZ2zO3Ox4h/X45W89N6ott+ofSKSYMc3HeRSENcw+/+KxeNiy6nEUcb3bvykyg9LjNW8ZbGDnP19Ff97H3mze3fjO3PPwUV6REQEREBERAREQEREBERAREQEReJ5WQQvllcGRsBc5xPAAQe0Whu0rtjqrf6ZHp+WkayJje7dnfLK5x6BpGBj2rC9Lau11eMVV9vk1LTHkMZhjnDyHRbnCpsdWqC1jqKPTVmkrn081S4cNiiaSXHGcceS1L8vjRQhkdRJK4dXySFxPxUFc+0uZ2d9Qce52E6GskvHaRqGp0s2aptJtM1Q520bjnZ+aCXYw7xH7Oi1q+2XCV/plZR1k0j/Wae4eWt+7lVJe0dkErpYRE2YjBkAG4+Z6lRdX2lVdU/aJnuz0aDwtyYi8norg6N0goatzQM8RO58lrm9W+8VF1dVV1qrW07M7GmM/UMYWx6TULzGZK+vbGQ3f3TDl23xPgP2+zK+3C8VM5jbQ3G3wwPpHVW99Qdxx+Zx9F/uyVrWb6aJraadspdLG+NxOfXGP2q8ob1PR5AmftPHqPwR9avtV3WuguXE2S5oeTsaHc+JxnK+WHUNdLUd1LCKqPGXbnbA0eO7oE7Kj75f57hSMovntu/cXOlLtw9481lplpLJa6Q1E7GtETduOcuxkjj35VK5Uck9HHNaN9ZO4kPjpiX7OOpxnA8z/0h6PTV1qKqOSta8tjOQ1zs8qW6ZidptZ0UlTFukjABx83A8n/AKrZcU1HV28slhZOx7OYZW8PHXDgf9BYNQWCq3AhoaVLGgqIMROkDXvHAJxlBtrs00jom8RzflO3UcVbG/EELKh7BG08/N4cPHn25W0tN6OodP3B81sLo6Ug7YXPfIQT1O5ziT5Lga7NuNFd3iKeYP3cFjiumuxbtEuVukttj1ZNUVDKwhkFXIBhjz0YTnJB6ZIxlcuUaldDoiLKiIiAiIgIiICIiAiIgIiIC152iakbDM62hm+nDA6Utd9J2foHwGOVk+t7yNPaUuV1cCW0sJkOOq5W112iUohZLA587J+TLE8EZ8/Fa4z+Uqx1fIJ7uZKaGnE8rvnZcNY1jQOgHifHzUDcrnVMA3VkRHTbG4kqAq9T22qyXemNceuSD+5RFRcqF59SWUf3gurLJ7jdmspoBBVmWVw9ePbtDD4bieT9WPesbnlrqhxfJPCB7G983j71Gy1MJztm+IVs+Vh6SNyp7F1USysfh0gcf7Lsqma6VvDHbfJWzWvleGxje4nADeVc/km4YyaSYebcKexkljudENOzU8lQI6+SUvldIPptwA0A+7n4qTOrbRRQgRWulq6ttOKcHae7z+kOcZd/BYA6lmY8se3Y4dQ4gEK7orZLKc7mAeaey4unCa8Vck9RPE2SR2XOeT+wAlTbo6SxWwbqc3Dfh7nhjmxnHBwSBnGR8fNerLbadtTBFJOzfI9rByCeTjoqfp1yu8UVFbIzJSwOeMgtyAQWuHQdQ7xWaqS0nVUc1zjktJNtu23+jY7DJWkfQ88Y58T06kT981FUR1rhStjgYcHGwOOcDPJ961nE19DVS18DJGkSFoDgOPacj2cftWTaprQ+vZJnLpGNe7jHJGSrF5TE3FqO5OP/AGwjyYwfuVKtv9fjea2bLeR62Asap53vOGNJ8lWrKSudBuFPLtPtLThaxlJxFlfdKeVwHzj2n4lW9Nf6qs1k4ulIgMuyNo6MDTiPHwCjbPVTU1ypopiWt7xvBHiVI2aAVmq7WynhYIGuax4Iw/cCeTzz5rNWO/7dMai300x6yRNefrAKuFbWxnd22lZgjbE0YPUcBXK5tCIiAiIgIiICIiAiJlARfMryXgDkoMR7Y4DUdluqIx1NBKfg3P7lwVFdIrda7dTm2UFQ2aEve+aMlzjud7QR4L9CtTQ091stZbppdkdTGY3nGctPUeRXOWtOySyPZF308MMdM3bG+CQRnHXkO4WuKVoX0m3TRlzrFQD3tkmH/wA1avZbnnm2hg/sTv8A3krK7nYdN2+odTnUEsZbx/QiUfFpUXLarMDmDU1O7w3072q6IZ1HbXdKapaf+OPwqi630vJayYecgP7lMG0wf1V/trh7y4fuXx1tLGcXS1v8pT/BXRY2u0x1BfGKqWAdcdc/sU7T6SgcNzrlOT4AKIpXspqndLVwlo9kZzlS0OoKSAfSfJ7gQFNoxi90LqGpLdxdg4yVbUspB6qU1BcYrk/dDG2Px3PBUfSskYRgxN955WvuJib03IXXqkxyd+R5gZXuxV9bZJ56mqD2vgO5jC4ZHJacA+z1lTtNdQ0VxiqLjVFwjBLY4Y+pwRyfBTeoIZb4IqizMpZqcM2iJnDmctJBHhwosRNc9tTDbW0hLqp875pi08gOxtH3O+Knq9tudWfORVVXUMaGubGwuAIHO7/9VrabZ6AIpqljH3BoO2FnO12T6zvAAHgf6F9HY7vcHNM1ROcDA9bbx9SnGY35efyXXuG4yUzA6loYKVnQPkeMjzxlw+KsbleTJE4TXKJgHTuYw4fec/cp2j7Ou/INQXOz4klT9D2X2447ynDvMLTnjSVyr4TNG+nqJ5pWuBLnjAGDnhbZ7I7XQXTV9vulTXwNpu9Er4nfSY4Zz9XJ+5ZrQdl9lGN1tgd/eZlZbZtE0NvH8zpIoM9e7YG5Uqt2U14t07R3NZA4ez1wr5krHjLHtcPccrV9vsTi4Nja4nwCyiisFRFtJmDCPAnhYwZUioU0b44mtkeXuH5x9qrBRX1ERAREQEREBMIiDyW5VvNTGQY3kK6RBCVNl74H508rX+sOyCn1C90pq5GSEdCSW/BbbRXaOVrp/JtqXOJgqGn3tKx6q/k5Xlmdkx/y5XZSK9qY4im/k939nSVv1tKtHdgWoh/WQ/AruggH2LyWNPVo+Cvepjhb/YJqAdZYfvXpnYNex9KVn1BdzGGI9Y2fBefRof0TP8qdxxHH2EXT86QferyHsHrP6yYjyJXaHo0H6Jn+VPRoP0TP8qdxx/B2CRnBmfK4/wB4qYoOw6hgIOyXP/Ed/FdUejQ/omfBPRof0TPgp2HP1t7L6WibiKBrfq6qfpdEMjxiP7luIU8Q/q2/Bewxo6NA8gnYazpdI4wGwk/Upyk0g0AGRzWe4DJWZYRTVQEemaRo+k/P1KuyxQMIIc4+eFMImihT0zYRhuMe5oCrYX1FAREQEREBERAREQEREBERAREQEREBERAREQEREBERAREQEREBERAREQEREBERAREQEREBERAREQEREBERAREQEREBERAREQEREBERAREQEREBERAREQEREBEJx1XjvGf7w+KDEe0OouVBLYqq33KSmhdcqemmgbGwiZskgBySCRxnphZirepipqlrG1EcMoY8SNDwHbXDkOGehHiq3eM/3m/FDHpF8a9ruhBTcPEIIy+PlaImwTyMlcHBkcYGXuxwSTwAPapGDf3LO9IMm0biOmfaqdTTU1Vt9Jhhm29O8YHY+Kqt2taGtwAOAAg9ImQfavm4eIQWN3LxHGI5nxuLjhrNodJ6pO0F3A8fqXuzzPntdLLMd0jowXH345VaohgqY9lRHHKzrte0OH3qowMjYGMDWtAwAOAEHpEyPFfMjxQWd3qX0tG50TXGRxDGkNLtpP5xA9g6rxYKh1TaKWV73SPLBuc4YJPir/I8QvMbWRsDWBrWjoBwAg9omR4pkeKCzuz5I6B5gOJCWtB3AdXAdTx7V4s8zpIZGSF5lieWP3ODueDwQBkYI9ivJWxyxuZIGvY4YLXDIK8wRQ08YjgYyOMdGsAAH1IKqJkeKZA9qChX1HotFNOW7u7YXY8cK1s1RNLG+KrH85jxvIOWnPIwr921zS12CDwQfaqdPBBTM2U8ccTM52saGj7kFZF8yPFfchAPRUafJc873OaDgZ93X/XuVXI8UaA0YGAEH1EyiAiIgp1ELKiCSGUZjkaWuGcZB4KwIdjuiG/RtEv/AD1R/wDYtgopZL9t8PJz4frcYG3sk0Y3papR/wCtqPxqq3ss0iOlsk/5yf8AGs3RTpx/p2n5n5E+vJf9qG07pm16dZMy0U7oGzEF4Mr35x0+kSqbtJWVziTSOJJyfn5PxKdRWST1HDnz5eTl253agfkjZP1N328n4k+SNk/U3fbyfiU8irKOtlloLW976GExueMOJkc7I+slWs+lrPPNJNLSudI9xc4988ZJ/wASm0QQPyRsn6m77eT8SfJGyfqbvt5PxKeRBF22w2621BmooDHIW7STI93HkSfBU6zTVqramSoqaZz5nnLnd68Z4x0BwphEED8kbJ+pu+3k/EnyRsn6m77eT8SnkQRNBp210FUyopKdzJm5w4yvd1GOhOF9uGnrZcal1RWU7pJSAC4Svb09wOFKoggfkjZP1R328n4k+SNk/VHfbyfiU8iCGpNM2mkqY56emcyWM5a7vnnH1E4Va52K33OdstbA6SRrdoIkc3j6iFJoggfkjZP1R328n4l9bpOzN6Ujvt5PxKdRBEwaetkEjZIqdzXtIIPevOD8VeVdBT1hYahheW9PWIx8CrpEFi200bfoxEf43fxVVtDTt+iwj/EVcogptgjb0H3qoiICIiD/2Q==",
+ "logoUrls": [
+ "data:image/jpeg;base64,/9j/4AAQSkZJRgABAQAAAQABAAD/4gHYSUNDX1BST0ZJTEUAAQEAAAHIAAAAAAQwAABtbnRyUkdCIFhZWiAH4AABAAEAAAAAAABhY3NwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAA9tYAAQAAAADTLQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlkZXNjAAAA8AAAACRyWFlaAAABFAAAABRnWFlaAAABKAAAABRiWFlaAAABPAAAABR3dHB0AAABUAAAABRyVFJDAAABZAAAAChnVFJDAAABZAAAAChiVFJDAAABZAAAAChjcHJ0AAABjAAAADxtbHVjAAAAAAAAAAEAAAAMZW5VUwAAAAgAAAAcAHMAUgBHAEJYWVogAAAAAAAAb6IAADj1AAADkFhZWiAAAAAAAABimQAAt4UAABjaWFlaIAAAAAAAACSgAAAPhAAAts9YWVogAAAAAAAA9tYAAQAAAADTLXBhcmEAAAAAAAQAAAACZmYAAPKnAAANWQAAE9AAAApbAAAAAAAAAABtbHVjAAAAAAAAAAEAAAAMZW5VUwAAACAAAAAcAEcAbwBvAGcAbABlACAASQBuAGMALgAgADIAMAAxADb/2wBDAAYEBQYFBAYGBQYHBwYIChAKCgkJChQODwwQFxQYGBcUFhYaHSUfGhsjHBYWICwgIyYnKSopGR8tMC0oMCUoKSj/2wBDAQcHBwoIChMKChMoGhYaKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCj/wAARCAD6APMDASIAAhEBAxEB/8QAHQABAAEFAQEBAAAAAAAAAAAAAAUDBAYHCAIBCf/EAEwQAAEDAwMBBAUHBwkFCQAAAAEAAgMEBREGEiExBxNRcRQiQWGRFiMygZOh0hVCU1SxwdEIJDNDYnKCkvAXUnOU4TQ3dYOEssLT8f/EABcBAQEBAQAAAAAAAAAAAAAAAAABAgP/xAAhEQEBAQACAgICAwAAAAAAAAAAARECEgMhEzEEMkFRkf/aAAwDAQACEQMRAD8A6pRFgdf2uaHoL6+0VV+hZWRy9xJ828xsfnG10gbtBz4nhBniLGdVa80xpR8TL/eaSkmlxshLi6R2eAdjQXY9+MK91JqiyaZoG1l/udLQU7s7TM/Bf7cNHVx9wBQTKKysl1o73aaW52yYT0NVGJYZQ0t3tPQ4IB+KxG+9reibHeJbXcr5HHWQu2StZFJI2J3g5zWloPmeEGdosE1B2t6I0/XCju18jgnMbJQGwSyNLXDLSHNaQcg+KP7WtEssDbyb3H+T3zGnY/uZNz5AAS1rNu44BHQYQZ2ig9I6rsur7aa7T1dHWUzXlji0FpY7wc1wBB8wpxAREQEREBERAREQEREBERAREQEREBERAREQEREA9Fy1qqi1BpnSNx7O5tPRVc2orpK233FtSwiUPkD97o/pgtA5PQcc+PUqg5dL22bVsOo545JbnBTmmhc95LImE5O1vQE+09ccINYfygdP2+g7KKqr9Ep33Nhoqd1YYx3rmtlYMF3XHuWd9otmttw0ZdKyuoaaoqqS2VJp5ZYw50RMRyWk9DwOngpfV2m7fquxy2m8Rvko5Xse5rHlpy1wcOR7wFf3CghuFrqbfUgmnqIXQSAHBLXNLTz5FBiHYh/3RaU/8Pi/9q1doGeqpuyXVlTFZaW8VEl2rvynBUVHcZj53EuwTnAHHvW+dPWak0/Y6O021jmUdJEIYmucXENHTk9Vh937JdN3K41tUXXOljr3mSspaStkigqXHqXsacHPt6ZQYDruopa/+T3pero6EUNPLU0Bipu8MndM7wYbuPJ49pWy9V0dqku9smhZb36tggldaYqyVzGEkDedreox1OCQpO96Ps9409S2Oqpi220z4nxRROLAwxnLAMewYVLWOibTqxtG65CpiqqJxdTVVLM6GaEkYO1zTnkIMD7CDUM1Jr2O9wxQaiNwjkrI6Y5pwCz1DH7eRnOeVuJY5o3R1p0jBUstTJ3TVUne1NTUSullmfjGXOdyVkaAiIgIiICIiAiIgIiICIiAiIgIiICIiAiIgIiICtqS4UdZNURUlVBPLTu2TMjkDjG7wcB0PmrlY3baKa3alvFSyjd6NVejtYY9o6B25xGegzygm2V9I9zWtqYS50roWgPHMjc5aPeNp49xVytc6o01Wu1HXV9DFWOpXNppO7pphG5zzIWzlnIw7u44hnI43AdSqEFPqyBkEIhr3l0cb2yOma4RANmGx5Lsl3MWTzk85OEGzUWttU0twpqKw26l/K81Q+mqC5tPWOEhl2tLXOeXDIDj4/VhUq2k1ZLN6I1tcGh0veVDJw1r2PkhIDTu3AhglHQY5x7EGypp4oGtM0jIw5wYC44y48AeZVRaun09d6uplpaiO6ujFa1zpnVp7t0QmBYYxu3NIYOSNp69Sci0qLZrA1FDHH+U2tjgdFJK2p3Et2yAdXgbs7OSCTwdw5QbcRapt9s1X+UbQ6c3GKmicOBMXdJcuMgMp4LMcHfjnGFd6kt+qJLvdH2v08PcJe5kbUYhMRgwxjW7uH97znA8/Yg2PJPFHLFHJIxskpIY0nBcQMkDx4BKqZwtTXywagdc6k26O6GeDv8A0WpfV7oww02xgaHPyH7yeSM85J5U/oy13eOuMl0fX+ixQH0dk8xzuc924OG927jbjcTjPGOUGbQTRVELZYJGyROGWvacg+RVQkAZK1DJp/UlvtopqCO4uilihL2sqz83JmbdtG9pA5i4DgOh5wQch0hR3+G/zSXZtY6GSjG98suWCXbH6rWhxB538hrcc53ZygzmnniqYI56eRksMjQ9j2HLXNIyCD7Qqi0rbrBqmm07QUlPFd6anhhpI6iH0ndIZGwzNkMZEgwzcYOA4D1enjKGzatkuNd39Tcj3gjZvZNtYWboM7cP9VwAk6NH53JyEG1kWCVNuu8Wm6SleLlOyK5T98yGpIqJKXfL3QEhcD7YT9LOAfJQNXatWSOmbF+VGVLosd6awFnd+jNbsGCB3nfZO7aPbzzhBs6ruVFRTwQ1dXBBNOdsTJJA10hyBhoPXqPirtarq9KXc3qkqojXv9ElLIpHVjie6NVC/By71h3fedc8AD2BVZ9OX+eGKR9RdGzmKmdIGVz2jvHTnv8AgOwB3fsHA9nKDZ6psnifNJEyRrpYwC9gPLc9MhauFn1ay704ZUV7aeEPZA4zb2gCWXHeZf62YzHyQ4+R5U/2d22toqm5T11NXwmdkAzWT969z2tIeQdzsDJ4/YgzZERAREQEREBERAREQEREBERB8LQXAkDI6FfURAREQEREBERAREQEREBERAREQEREBERAREQEREBERAREQEREBERAREQEREBERAREQEREBERAREQEREBERAREQEREBERAREQEREBERAREQEREBERAREQEREBERAREQEREBERAREQEREBERAREQEREBERAREQEREBERAREQEREBERAREQEREBERAREQEREBERAREQEREBERAREQEREBERAREQEREBERAREQERYHr7tHt2l4ZIoS2prgPoA+q0+8/uTNGeLy+RjBl72tHvOFyffe0HXV9L3QXB1BTO+ixmIuPqG5ay1LdtS08odcrtWkP8AoltS47vvW/jqa70kudDH/SVlM3zlaP3qib7ah1uVGP8Azm/xX50S3a5TPAbX1Tnk4wZnfvKnaKwahq4RKy7BjT1/nLyR5gLXxp2d+MvVsecMuFI4+6Zv8VdxTwzDMUrHj+y4FfnzcLdfrXb6mqfe5iyFuTgud14AyfNTvZrJXS281L7tLFUySYjDqlzTge0YOeql8eHZ3ai5w032kai0/Xx0lzmNwpsZ2zO3Ox4h/X45W89N6ott+ofSKSYMc3HeRSENcw+/+KxeNiy6nEUcb3bvykyg9LjNW8ZbGDnP19Ff97H3mze3fjO3PPwUV6REQEREBERAREQEREBERAREQEReJ5WQQvllcGRsBc5xPAAQe0Whu0rtjqrf6ZHp+WkayJje7dnfLK5x6BpGBj2rC9Lau11eMVV9vk1LTHkMZhjnDyHRbnCpsdWqC1jqKPTVmkrn081S4cNiiaSXHGcceS1L8vjRQhkdRJK4dXySFxPxUFc+0uZ2d9Qce52E6GskvHaRqGp0s2aptJtM1Q520bjnZ+aCXYw7xH7Oi1q+2XCV/plZR1k0j/Wae4eWt+7lVJe0dkErpYRE2YjBkAG4+Z6lRdX2lVdU/aJnuz0aDwtyYi8norg6N0goatzQM8RO58lrm9W+8VF1dVV1qrW07M7GmM/UMYWx6TULzGZK+vbGQ3f3TDl23xPgP2+zK+3C8VM5jbQ3G3wwPpHVW99Qdxx+Zx9F/uyVrWb6aJraadspdLG+NxOfXGP2q8ob1PR5AmftPHqPwR9avtV3WuguXE2S5oeTsaHc+JxnK+WHUNdLUd1LCKqPGXbnbA0eO7oE7Kj75f57hSMovntu/cXOlLtw9481lplpLJa6Q1E7GtETduOcuxkjj35VK5Uck9HHNaN9ZO4kPjpiX7OOpxnA8z/0h6PTV1qKqOSta8tjOQ1zs8qW6ZidptZ0UlTFukjABx83A8n/AKrZcU1HV28slhZOx7OYZW8PHXDgf9BYNQWCq3AhoaVLGgqIMROkDXvHAJxlBtrs00jom8RzflO3UcVbG/EELKh7BG08/N4cPHn25W0tN6OodP3B81sLo6Ug7YXPfIQT1O5ziT5Lga7NuNFd3iKeYP3cFjiumuxbtEuVukttj1ZNUVDKwhkFXIBhjz0YTnJB6ZIxlcuUaldDoiLKiIiAiIgIiICIiAiIgIiIC152iakbDM62hm+nDA6Utd9J2foHwGOVk+t7yNPaUuV1cCW0sJkOOq5W112iUohZLA587J+TLE8EZ8/Fa4z+Uqx1fIJ7uZKaGnE8rvnZcNY1jQOgHifHzUDcrnVMA3VkRHTbG4kqAq9T22qyXemNceuSD+5RFRcqF59SWUf3gurLJ7jdmspoBBVmWVw9ePbtDD4bieT9WPesbnlrqhxfJPCB7G983j71Gy1MJztm+IVs+Vh6SNyp7F1USysfh0gcf7Lsqma6VvDHbfJWzWvleGxje4nADeVc/km4YyaSYebcKexkljudENOzU8lQI6+SUvldIPptwA0A+7n4qTOrbRRQgRWulq6ttOKcHae7z+kOcZd/BYA6lmY8se3Y4dQ4gEK7orZLKc7mAeaey4unCa8Vck9RPE2SR2XOeT+wAlTbo6SxWwbqc3Dfh7nhjmxnHBwSBnGR8fNerLbadtTBFJOzfI9rByCeTjoqfp1yu8UVFbIzJSwOeMgtyAQWuHQdQ7xWaqS0nVUc1zjktJNtu23+jY7DJWkfQ88Y58T06kT981FUR1rhStjgYcHGwOOcDPJ961nE19DVS18DJGkSFoDgOPacj2cftWTaprQ+vZJnLpGNe7jHJGSrF5TE3FqO5OP/AGwjyYwfuVKtv9fjea2bLeR62Asap53vOGNJ8lWrKSudBuFPLtPtLThaxlJxFlfdKeVwHzj2n4lW9Nf6qs1k4ulIgMuyNo6MDTiPHwCjbPVTU1ypopiWt7xvBHiVI2aAVmq7WynhYIGuax4Iw/cCeTzz5rNWO/7dMai300x6yRNefrAKuFbWxnd22lZgjbE0YPUcBXK5tCIiAiIgIiICIiAiJlARfMryXgDkoMR7Y4DUdluqIx1NBKfg3P7lwVFdIrda7dTm2UFQ2aEve+aMlzjud7QR4L9CtTQ091stZbppdkdTGY3nGctPUeRXOWtOySyPZF308MMdM3bG+CQRnHXkO4WuKVoX0m3TRlzrFQD3tkmH/wA1avZbnnm2hg/sTv8A3krK7nYdN2+odTnUEsZbx/QiUfFpUXLarMDmDU1O7w3072q6IZ1HbXdKapaf+OPwqi630vJayYecgP7lMG0wf1V/trh7y4fuXx1tLGcXS1v8pT/BXRY2u0x1BfGKqWAdcdc/sU7T6SgcNzrlOT4AKIpXspqndLVwlo9kZzlS0OoKSAfSfJ7gQFNoxi90LqGpLdxdg4yVbUspB6qU1BcYrk/dDG2Px3PBUfSskYRgxN955WvuJib03IXXqkxyd+R5gZXuxV9bZJ56mqD2vgO5jC4ZHJacA+z1lTtNdQ0VxiqLjVFwjBLY4Y+pwRyfBTeoIZb4IqizMpZqcM2iJnDmctJBHhwosRNc9tTDbW0hLqp875pi08gOxtH3O+Knq9tudWfORVVXUMaGubGwuAIHO7/9VrabZ6AIpqljH3BoO2FnO12T6zvAAHgf6F9HY7vcHNM1ROcDA9bbx9SnGY35efyXXuG4yUzA6loYKVnQPkeMjzxlw+KsbleTJE4TXKJgHTuYw4fec/cp2j7Ou/INQXOz4klT9D2X2447ynDvMLTnjSVyr4TNG+nqJ5pWuBLnjAGDnhbZ7I7XQXTV9vulTXwNpu9Er4nfSY4Zz9XJ+5ZrQdl9lGN1tgd/eZlZbZtE0NvH8zpIoM9e7YG5Uqt2U14t07R3NZA4ez1wr5krHjLHtcPccrV9vsTi4Nja4nwCyiisFRFtJmDCPAnhYwZUioU0b44mtkeXuH5x9qrBRX1ERAREQEREBMIiDyW5VvNTGQY3kK6RBCVNl74H508rX+sOyCn1C90pq5GSEdCSW/BbbRXaOVrp/JtqXOJgqGn3tKx6q/k5Xlmdkx/y5XZSK9qY4im/k939nSVv1tKtHdgWoh/WQ/AruggH2LyWNPVo+Cvepjhb/YJqAdZYfvXpnYNex9KVn1BdzGGI9Y2fBefRof0TP8qdxxHH2EXT86QferyHsHrP6yYjyJXaHo0H6Jn+VPRoP0TP8qdxx/B2CRnBmfK4/wB4qYoOw6hgIOyXP/Ed/FdUejQ/omfBPRof0TPgp2HP1t7L6WibiKBrfq6qfpdEMjxiP7luIU8Q/q2/Bewxo6NA8gnYazpdI4wGwk/Upyk0g0AGRzWe4DJWZYRTVQEemaRo+k/P1KuyxQMIIc4+eFMImihT0zYRhuMe5oCrYX1FAREQEREBERAREQEREBERAREQEREBERAREQEREBERAREQEREBERAREQEREBERAREQEREBERAREQEREBERAREQEREBERAREQEREBERAREQEREBERAREQEREBEJx1XjvGf7w+KDEe0OouVBLYqq33KSmhdcqemmgbGwiZskgBySCRxnphZirepipqlrG1EcMoY8SNDwHbXDkOGehHiq3eM/3m/FDHpF8a9ruhBTcPEIIy+PlaImwTyMlcHBkcYGXuxwSTwAPapGDf3LO9IMm0biOmfaqdTTU1Vt9Jhhm29O8YHY+Kqt2taGtwAOAAg9ImQfavm4eIQWN3LxHGI5nxuLjhrNodJ6pO0F3A8fqXuzzPntdLLMd0jowXH345VaohgqY9lRHHKzrte0OH3qowMjYGMDWtAwAOAEHpEyPFfMjxQWd3qX0tG50TXGRxDGkNLtpP5xA9g6rxYKh1TaKWV73SPLBuc4YJPir/I8QvMbWRsDWBrWjoBwAg9omR4pkeKCzuz5I6B5gOJCWtB3AdXAdTx7V4s8zpIZGSF5lieWP3ODueDwQBkYI9ivJWxyxuZIGvY4YLXDIK8wRQ08YjgYyOMdGsAAH1IKqJkeKZA9qChX1HotFNOW7u7YXY8cK1s1RNLG+KrH85jxvIOWnPIwr921zS12CDwQfaqdPBBTM2U8ccTM52saGj7kFZF8yPFfchAPRUafJc873OaDgZ93X/XuVXI8UaA0YGAEH1EyiAiIgp1ELKiCSGUZjkaWuGcZB4KwIdjuiG/RtEv/AD1R/wDYtgopZL9t8PJz4frcYG3sk0Y3papR/wCtqPxqq3ss0iOlsk/5yf8AGs3RTpx/p2n5n5E+vJf9qG07pm16dZMy0U7oGzEF4Mr35x0+kSqbtJWVziTSOJJyfn5PxKdRWST1HDnz5eTl253agfkjZP1N328n4k+SNk/U3fbyfiU8irKOtlloLW976GExueMOJkc7I+slWs+lrPPNJNLSudI9xc4988ZJ/wASm0QQPyRsn6m77eT8SfJGyfqbvt5PxKeRBF22w2621BmooDHIW7STI93HkSfBU6zTVqramSoqaZz5nnLnd68Z4x0BwphEED8kbJ+pu+3k/EnyRsn6m77eT8SnkQRNBp210FUyopKdzJm5w4yvd1GOhOF9uGnrZcal1RWU7pJSAC4Svb09wOFKoggfkjZP1R328n4k+SNk/VHfbyfiU8iCGpNM2mkqY56emcyWM5a7vnnH1E4Va52K33OdstbA6SRrdoIkc3j6iFJoggfkjZP1R328n4l9bpOzN6Ujvt5PxKdRBEwaetkEjZIqdzXtIIPevOD8VeVdBT1hYahheW9PWIx8CrpEFi200bfoxEf43fxVVtDTt+iwj/EVcogptgjb0H3qoiICIiD/2Q=="
+ ],
+ "name": "MANIFEST",
+ "symbol": "MANIFEST",
+ "marketCap": "800692.517293559405863505",
+ "price": "0.00080069254652534955",
+ "priceChange24hPercent": "5.01",
+ "volume24h": "6155.2167946372431",
+ "communityRecognized": false,
+ "key": "sui--mainnet:0xc466c28d87b3d5cd34f3d5c088751532d71a38d93a8aae4551dd56272cfb4355::manifest::MANIFEST",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Sui",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sui.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sui--mainnet",
+ "address": "0x0041f9f9344cac094454cd574e333c4fdb132d7bcc9379bcd4aab485b2a63942::wbtc::WBTC",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/dd32930dcb280ef60957dbbdfb568248af2b960919f965b4f05f9a20085fd567",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/dd32930dcb280ef60957dbbdfb568248af2b960919f965b4f05f9a20085fd567"
+ ],
+ "name": "Wrapped BTC",
+ "symbol": "WBTC",
+ "price": "78672.01719550714950392535",
+ "priceChange24hPercent": "-1.05",
+ "volume24h": "445589.11192097956093179",
+ "communityRecognized": false,
+ "key": "sui--mainnet:0x0041f9f9344cac094454cd574e333c4fdb132d7bcc9379bcd4aab485b2a63942::wbtc::WBTC",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Sui",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sui.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sui--mainnet",
+ "address": "0x03bc8959a87448e241edbf2a4fae18c740698253773496e50bae8c8b3e0d5b3e::agi::AGI",
+ "logoUrl": "https://static.oklink.com/cdn/web3/currency/token/large/784-0x03bc8959a87448e241edbf2a4fae18c740698253773496e50bae8c8b3e0d5b3e::agi::AGI-107/type=default_90_0?v=1788835349047",
+ "logoUrls": [
+ "https://static.oklink.com/cdn/web3/currency/token/large/784-0x03bc8959a87448e241edbf2a4fae18c740698253773496e50bae8c8b3e0d5b3e::agi::AGI-107/type=default_90_0?v=1788835349047"
+ ],
+ "name": "Artificial Giga Inu",
+ "symbol": "AGI",
+ "marketCap": "11597.781268305266816045",
+ "price": "0.00001159778126830527",
+ "priceChange24hPercent": "31.51",
+ "volume24h": "1349.934282792892",
+ "communityRecognized": false,
+ "key": "sui--mainnet:0x03bc8959a87448e241edbf2a4fae18c740698253773496e50bae8c8b3e0d5b3e::agi::AGI",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Sui",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sui.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sui--mainnet",
+ "address": "0xea65bb5a79ff34ca83e2995f9ff6edd0887b08da9b45bf2e31f930d3efb82866::s::S",
+ "logoUrl": "https://coin-images.coingecko.com/coins/images/53004/large/1000276184.jpg?1734984802",
+ "logoUrls": [
+ "https://coin-images.coingecko.com/coins/images/53004/large/1000276184.jpg?1734984802"
+ ],
+ "name": "Agent S",
+ "symbol": "S",
+ "marketCap": "67679.880309046658171453",
+ "price": "0.00006767988030904666",
+ "priceChange24hPercent": "-8.46",
+ "volume24h": "552.52752868109",
+ "communityRecognized": false,
+ "key": "sui--mainnet:0xea65bb5a79ff34ca83e2995f9ff6edd0887b08da9b45bf2e31f930d3efb82866::s::S",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Sui",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sui.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sui--mainnet",
+ "address": "0x76a49ebaf991fa2d4cb6a352af14425d453fe2ba6802b5ed2361b227150b6689::take::TAKE",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-onchain/sui--mainnet/tokens/0x76a49ebaf991fa2d4cb6a352af14425d453fe2ba6802b5ed2361b227150b6689::take::TAKE.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-onchain/sui--mainnet/tokens/0x76a49ebaf991fa2d4cb6a352af14425d453fe2ba6802b5ed2361b227150b6689::take::TAKE.png"
+ ],
+ "name": "TAKE",
+ "symbol": "TAKE",
+ "marketCap": "62751511.293141534725371733",
+ "price": "0.06275151129314153473",
+ "priceChange24hPercent": "6.82",
+ "volume24h": "26317.4912063823739",
+ "communityRecognized": false,
+ "key": "sui--mainnet:0x76a49ebaf991fa2d4cb6a352af14425d453fe2ba6802b5ed2361b227150b6689::take::TAKE",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Sui",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sui.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sui--mainnet",
+ "address": "0x0c104ec7de77b382a4af29075515956e34754744e418879db5bf138d95afebbe::usad::USAD",
+ "logoUrl": "https://static.oklink.com/cdn/web3/currency/token/large/784-0x0c104ec7de77b382a4af29075515956e34754744e418879db5bf138d95afebbe::usad::USAD-107/type=default_90_0?v=1788825667532",
+ "logoUrls": [
+ "https://static.oklink.com/cdn/web3/currency/token/large/784-0x0c104ec7de77b382a4af29075515956e34754744e418879db5bf138d95afebbe::usad::USAD-107/type=default_90_0?v=1788825667532"
+ ],
+ "name": "USAD",
+ "symbol": "USAD",
+ "marketCap": "1000128.770761923936398342",
+ "price": "1.0001287707619239364",
+ "priceChange24hPercent": "0.01",
+ "volume24h": "3572.893357",
+ "communityRecognized": false,
+ "key": "sui--mainnet:0x0c104ec7de77b382a4af29075515956e34754744e418879db5bf138d95afebbe::usad::USAD",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Sui",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sui.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sui--mainnet",
+ "address": "0x5145494a5f5100e645e4b0aa950fa6b68f614e8c59e17bc5ded3495123a79178::ns::NS",
+ "logoUrl": "https://coin-images.coingecko.com/coins/images/40110/large/NS_coin.png?1725704829",
+ "logoUrls": [
+ "https://coin-images.coingecko.com/coins/images/40110/large/NS_coin.png?1725704829"
+ ],
+ "name": "SuiNS Token",
+ "symbol": "NS",
+ "marketCap": "6994217.161972698047605592",
+ "price": "0.0139884343239453961",
+ "priceChange24hPercent": "4.73",
+ "volume24h": "107065.6799735782368",
+ "communityRecognized": true,
+ "key": "sui--mainnet:0x5145494a5f5100e645e4b0aa950fa6b68f614e8c59e17bc5ded3495123a79178::ns::NS",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Sui",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sui.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sui--mainnet",
+ "address": "0x06864a6f921804860930db6ddbe2e16acdf8504495ea7481637a1c8b9a8fe54b::cetus::CETUS",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/cdf55a5f44dc4e2c64bb1ae6616312b2bb287f952bc7ca7897d61e11dda56e66",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/cdf55a5f44dc4e2c64bb1ae6616312b2bb287f952bc7ca7897d61e11dda56e66"
+ ],
+ "name": "Cetus Token",
+ "symbol": "CETUS",
+ "marketCap": "22788423.740342889693112432",
+ "price": "0.02278842374034288969",
+ "priceChange24hPercent": "-2.21",
+ "volume24h": "366935.626039658608233329",
+ "communityRecognized": true,
+ "key": "sui--mainnet:0x06864a6f921804860930db6ddbe2e16acdf8504495ea7481637a1c8b9a8fe54b::cetus::CETUS",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Sui",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sui.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sui--mainnet",
+ "address": "0xf22da9a24ad027cccb5f2d496cbe91de953d363513db08a3a734d361c7c17503::LOFI::LOFI",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-onchain/sui--mainnet/tokens/0xf22da9a24ad027cccb5f2d496cbe91de953d363513db08a3a734d361c7c17503::LOFI::LOFI.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-onchain/sui--mainnet/tokens/0xf22da9a24ad027cccb5f2d496cbe91de953d363513db08a3a734d361c7c17503::LOFI::LOFI.png"
+ ],
+ "name": "LOFI",
+ "symbol": "LOFI",
+ "marketCap": "3578553.114208961018635224",
+ "price": "0.00357855311420896102",
+ "priceChange24hPercent": "-7.66",
+ "volume24h": "8105.1861001749461",
+ "communityRecognized": true,
+ "key": "sui--mainnet:0xf22da9a24ad027cccb5f2d496cbe91de953d363513db08a3a734d361c7c17503::LOFI::LOFI",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Sui",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sui.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sui--mainnet",
+ "address": "0xe1b45a0e641b9955a20aa0ad1c1f4ad86aad8afb07296d4085e349a50e90bdca::blue::BLUE",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-onchain/sui--mainnet/tokens/0xe1b45a0e641b9955a20aa0ad1c1f4ad86aad8afb07296d4085e349a50e90bdca::blue::BLUE.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-onchain/sui--mainnet/tokens/0xe1b45a0e641b9955a20aa0ad1c1f4ad86aad8afb07296d4085e349a50e90bdca::blue::BLUE.png"
+ ],
+ "name": "Bluefin",
+ "symbol": "BLUE",
+ "price": "0.00992499258730470741",
+ "priceChange24hPercent": "-0.43",
+ "volume24h": "23698.3066880735811",
+ "communityRecognized": true,
+ "key": "sui--mainnet:0xe1b45a0e641b9955a20aa0ad1c1f4ad86aad8afb07296d4085e349a50e90bdca::blue::BLUE",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Sui",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sui.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sui--mainnet",
+ "address": "0x9d297676e7a4b771ab023291377b2adfaa4938fb9080b8d12430e4b108b836a9::xaum::XAUM",
+ "logoUrl": "https://coin-images.coingecko.com/coins/images/51962/large/xaum_200px_logo_1x.png?1733560735",
+ "logoUrls": [
+ "https://coin-images.coingecko.com/coins/images/51962/large/xaum_200px_logo_1x.png?1733560735"
+ ],
+ "name": "Matrixdock Gold",
+ "symbol": "XAUM",
+ "marketCap": "11743861.665257931866038303",
+ "price": "4391.70761054848089842575",
+ "priceChange24hPercent": "0.63",
+ "volume24h": "56504.8667400401744",
+ "communityRecognized": false,
+ "key": "sui--mainnet:0x9d297676e7a4b771ab023291377b2adfaa4938fb9080b8d12430e4b108b836a9::xaum::XAUM",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Sui",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sui.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sui--mainnet",
+ "address": "0x7a479e7a6e75323ac9125656a9ca795e11ea42165ac4206af44d1b66e9563be9::svbtc::SVBTC",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/c0ae94109b30c82bf49ccbcc253ff5fdc79b754d162e60378948e95ca0f6bf35",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/c0ae94109b30c82bf49ccbcc253ff5fdc79b754d162e60378948e95ca0f6bf35"
+ ],
+ "name": "Svalbard BTC",
+ "symbol": "SVBTC",
+ "price": "79624.61353778783962307395",
+ "priceChange24hPercent": "-0.75",
+ "volume24h": "2038.67269403777806",
+ "communityRecognized": false,
+ "key": "sui--mainnet:0x7a479e7a6e75323ac9125656a9ca795e11ea42165ac4206af44d1b66e9563be9::svbtc::SVBTC",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Sui",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sui.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sui--mainnet",
+ "address": "0x356a26eb9e012a68958082340d4c4116e7f55615cf27affcff209cf0ae544f59::wal::WAL",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-onchain/sui--mainnet/tokens/0x356a26eb9e012a68958082340d4c4116e7f55615cf27affcff209cf0ae544f59::wal::WAL.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-onchain/sui--mainnet/tokens/0x356a26eb9e012a68958082340d4c4116e7f55615cf27affcff209cf0ae544f59::wal::WAL.png"
+ ],
+ "name": "WAL Token",
+ "symbol": "WAL",
+ "marketCap": "70091456.868764486884665164",
+ "price": "0.0279225656083281303",
+ "priceChange24hPercent": "-0.33",
+ "volume24h": "596982.218140996572",
+ "communityRecognized": true,
+ "key": "sui--mainnet:0x356a26eb9e012a68958082340d4c4116e7f55615cf27affcff209cf0ae544f59::wal::WAL",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Sui",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sui.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sui--mainnet",
+ "address": "0xf00eb7ab086967a33c04a853ad960e5c6b0955ef5a47d50b376d83856dc1215e::axol::AXOL",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-onchain/sui--mainnet/tokens/0xf00eb7ab086967a33c04a853ad960e5c6b0955ef5a47d50b376d83856dc1215e::axol::AXOL.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-onchain/sui--mainnet/tokens/0xf00eb7ab086967a33c04a853ad960e5c6b0955ef5a47d50b376d83856dc1215e::axol::AXOL.png"
+ ],
+ "name": "AXOLcoin",
+ "symbol": "AXOL",
+ "marketCap": "387907.943891996434099068",
+ "price": "0.00038790794389199643",
+ "priceChange24hPercent": "-1.21",
+ "volume24h": "1220.0829099930829",
+ "communityRecognized": false,
+ "key": "sui--mainnet:0xf00eb7ab086967a33c04a853ad960e5c6b0955ef5a47d50b376d83856dc1215e::axol::AXOL",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Sui",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sui.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sui--mainnet",
+ "address": "0x0ee60b2540f5373903679500d0f88710cbb106d47c6dae028fb9c4795a835dda::coin::COIN",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/18ab5020b95a10b3b7b27299a0692107dca74946e2fca5e1b90ea7ccbd9855b6",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/18ab5020b95a10b3b7b27299a0692107dca74946e2fca5e1b90ea7ccbd9855b6"
+ ],
+ "name": "SPX6900",
+ "symbol": "SPX",
+ "price": "0.54084682917478229442",
+ "priceChange24hPercent": "-6.33",
+ "volume24h": "1192.9540489458472",
+ "communityRecognized": false,
+ "key": "sui--mainnet:0x0ee60b2540f5373903679500d0f88710cbb106d47c6dae028fb9c4795a835dda::coin::COIN",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Sui",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sui.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sui--mainnet",
+ "address": "0xfa7ac3951fdca92c5200d468d31a365eb03b2be9936fde615e69f0c1274ad3a0::BLUB::BLUB",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-onchain/sui--mainnet/tokens/0xfa7ac3951fdca92c5200d468d31a365eb03b2be9936fde615e69f0c1274ad3a0::BLUB::BLUB.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-onchain/sui--mainnet/tokens/0xfa7ac3951fdca92c5200d468d31a365eb03b2be9936fde615e69f0c1274ad3a0::BLUB::BLUB.png"
+ ],
+ "name": "BLUB",
+ "symbol": "BLUB",
+ "marketCap": "1083555.260918580712322302",
+ "price": "0.00000000257566203361",
+ "priceChange24hPercent": "4.82",
+ "volume24h": "1251.3170607745699",
+ "communityRecognized": false,
+ "key": "sui--mainnet:0xfa7ac3951fdca92c5200d468d31a365eb03b2be9936fde615e69f0c1274ad3a0::BLUB::BLUB",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Sui",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sui.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sui--mainnet",
+ "address": "0x2e5d480ddfeb8a593184a078eb59bc0c4d2bb7d6ce2b00e9972a963f50501348::uspd::USPD",
+ "logoUrl": "https://arweave.net/v69wXs5gA-zerxEoYO4ySCtry0PO2wMntPdYz7C04L8",
+ "logoUrls": [
+ "https://arweave.net/v69wXs5gA-zerxEoYO4ySCtry0PO2wMntPdYz7C04L8"
+ ],
+ "name": "USPD",
+ "symbol": "USPD",
+ "marketCap": "10000525.029274163850280993",
+ "price": "1.00005250292741638503",
+ "priceChange24hPercent": "0",
+ "volume24h": "2352",
+ "communityRecognized": false,
+ "key": "sui--mainnet:0x2e5d480ddfeb8a593184a078eb59bc0c4d2bb7d6ce2b00e9972a963f50501348::uspd::USPD",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Sui",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sui.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sui--mainnet",
+ "address": "0x97c7571f4406cdd7a95f3027075ab80d3e9c937c2a567690d31e14ab1872ccee::xmn::XMN",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-onchain/sui--mainnet/tokens/0x97c7571f4406cdd7a95f3027075ab80d3e9c937c2a567690d31e14ab1872ccee::xmn::XMN.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-onchain/sui--mainnet/tokens/0x97c7571f4406cdd7a95f3027075ab80d3e9c937c2a567690d31e14ab1872ccee::xmn::XMN.png"
+ ],
+ "name": "xMoney Token",
+ "symbol": "XMN",
+ "marketCap": "1584157.272351532090879832",
+ "price": "0.00059288453226252521",
+ "priceChange24hPercent": "-4.53",
+ "volume24h": "2343.4791109758709",
+ "communityRecognized": true,
+ "key": "sui--mainnet:0x97c7571f4406cdd7a95f3027075ab80d3e9c937c2a567690d31e14ab1872ccee::xmn::XMN",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Sui",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sui.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sui--mainnet",
+ "address": "0x7016aae72cfc67f2fadf55769c0a7dd54291a583b63051a5ed71081cce836ac6::sca::SCA",
+ "logoUrl": "https://coin-images.coingecko.com/coins/images/34648/large/sca.png?1705592307",
+ "logoUrls": [
+ "https://coin-images.coingecko.com/coins/images/34648/large/sca.png?1705592307"
+ ],
+ "name": "Scallop",
+ "symbol": "SCA",
+ "price": "0.00422250648978846478",
+ "priceChange24hPercent": "-4.04",
+ "volume24h": "33679.2962463032831",
+ "communityRecognized": true,
+ "key": "sui--mainnet:0x7016aae72cfc67f2fadf55769c0a7dd54291a583b63051a5ed71081cce836ac6::sca::SCA",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Sui",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sui.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sui--mainnet",
+ "address": "0x63e89267aad1dcbd9fb84e7686db54bd128cb25ce4e9f1fda97fc716c4b73682::suipump::SUIPUMP",
+ "logoUrl": "https://i.imgur.com/4o1xcLy.jpeg",
+ "logoUrls": [
+ "https://i.imgur.com/4o1xcLy.jpeg"
+ ],
+ "name": "Suicat",
+ "symbol": "SUICAT",
+ "marketCap": "142575.612546260045177857",
+ "price": "0.00015471631381885697",
+ "priceChange24hPercent": "-2.51",
+ "volume24h": "10918.1488156463664",
+ "communityRecognized": false,
+ "key": "sui--mainnet:0x63e89267aad1dcbd9fb84e7686db54bd128cb25ce4e9f1fda97fc716c4b73682::suipump::SUIPUMP",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Sui",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sui.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sui--mainnet",
+ "address": "0x3a304c7feba2d819ea57c3542d68439ca2c386ba02159c740f7b406e592c62ea::haedal::HAEDAL",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-onchain/sui--mainnet/tokens/0x3a304c7feba2d819ea57c3542d68439ca2c386ba02159c740f7b406e592c62ea::haedal::HAEDAL.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-onchain/sui--mainnet/tokens/0x3a304c7feba2d819ea57c3542d68439ca2c386ba02159c740f7b406e592c62ea::haedal::HAEDAL.png"
+ ],
+ "name": "Haedal",
+ "symbol": "HAEDAL",
+ "marketCap": "18441763.345992663927178135",
+ "price": "0.01844176334599266393",
+ "priceChange24hPercent": "-0.85",
+ "volume24h": "19537.329320271251",
+ "communityRecognized": true,
+ "key": "sui--mainnet:0x3a304c7feba2d819ea57c3542d68439ca2c386ba02159c740f7b406e592c62ea::haedal::HAEDAL",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Sui",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sui.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sui--mainnet",
+ "address": "0x0a672389b7b73df60d40666ac9545433d59d3128086b9e3a425a66bbffdf4dc5::susn::SUSN",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/c55d204e4397b89a633b73082f8a820e85de339ca73c738b068520e2cd47d038",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/c55d204e4397b89a633b73082f8a820e85de339ca73c738b068520e2cd47d038"
+ ],
+ "name": "Staked USN",
+ "symbol": "sUSN",
+ "price": "1.22031971347382757343",
+ "priceChange24hPercent": "0",
+ "volume24h": "5002.118081",
+ "communityRecognized": false,
+ "key": "sui--mainnet:0x0a672389b7b73df60d40666ac9545433d59d3128086b9e3a425a66bbffdf4dc5::susn::SUSN",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Sui",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sui.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sui--mainnet",
+ "address": "0xa99b8952d4f7d947ea77fe0ecdcc9e5fc0bcab2841d6e2a5aa00c3044e5544b5::navx::NAVX",
+ "logoUrl": "https://uni-test.onekey-asset.com/server-service-onchain/sui--mainnet/tokens/0xa99b8952d4f7d947ea77fe0ecdcc9e5fc0bcab2841d6e2a5aa00c3044e5544b5::navx::NAVX.png",
+ "logoUrls": [
+ "https://uni-test.onekey-asset.com/server-service-onchain/sui--mainnet/tokens/0xa99b8952d4f7d947ea77fe0ecdcc9e5fc0bcab2841d6e2a5aa00c3044e5544b5::navx::NAVX.png"
+ ],
+ "name": "NAVX Token",
+ "symbol": "NAVX",
+ "marketCap": "10123900.670334838697998109",
+ "price": "0.0101239006703348387",
+ "priceChange24hPercent": "-2.31",
+ "volume24h": "18264.8914064400753",
+ "communityRecognized": true,
+ "key": "sui--mainnet:0xa99b8952d4f7d947ea77fe0ecdcc9e5fc0bcab2841d6e2a5aa00c3044e5544b5::navx::NAVX",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Sui",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sui.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sui--mainnet",
+ "address": "0x76cb819b01abed502bee8a702b4c2d547532c12f25001c9dea795a5e631c26f1::fud::FUD",
+ "logoUrl": "data:image/webp;base64,UklGRkAkAABXRUJQVlA4TDMkAAAvf8KfANWK27aRJKlKyj/q+frWOjMiJiCv/fuS4YscG7cQ56O5NumsCeIRMhUB7+mogsqVMKDQ1ld8S9g+4SlbxS3KuhM97JVVZH/qaxIvwcvkyRXqlnWkla1tcQ1Q7Vs3+4V0VhQPW2VGgEBAIECH5KhlVeXtvAAoa3+u/XYmkoGkw3nvMGyA0+f7Dw4lZ9ujSNJV8yh5FI5CXw3/k53hwI6eB8sKmgoJCEr0SA/e9YDtTUrUBiEbSVqUMflxfKFDGRRGkSRFSimthED6SAD2fI6U/suibaVuLTRjcBBwXEIejUpbb/2R5Wrb0zhbTVvILIWleG0/H9j+fvD7pH5XCI2bRBin5467FJj0KilkJElalEbZfw/7UAbFLCNJg3L+FI9w3335KP2XBUl23DbDxyIoAgs7d4DH96Djy5sDQHobV9umpXgpWgqXkAUk52gpWsps7bCrq6uqi0Z+KhQ1H40xQSY8MOlJD/OdCISgHvkH4SHoMIQkSdKgFEqhtMl9Ai/AogzKoDCGJElQodTzLHbQG+EQCqX/sGjbpludwyAbR4ukIpIe9/FDO7ZtuW2kUBiKQkEoCkWhKBRkoioSBO4591yW+OcenucB6hE90eCnGnU9oEfYhbJBtpFqcofy6I9yKAbZRirK/Cke5d6k/7JoW43b6goWCBBaGetI2M0bvj774+aXvvYfwn/Cf8J/wn/Cf8J/wn/Cf8J/wn/Cf8J/wn/Cf8J/wn/Cf8J/wn/Cf54xyJv/Qb5HSsC/9b25H+SCtznaAqcfq6vVe7MeZLvNWWoD2gLkceizWN0vszfLfd++NfzBbnPnaaUNKAvcY4TqYJGv8ttfaP1+2BU7ygzlPTQlKn+zzNmADeLKWyBtsMiJ2S09zcUEHe3Ou9oNeFwqxa78NS+DP0ZaCaQ9RXQh8MuNophfYQ+6tRvyuNRlq7Y/Ukq0EjhShNMrqaVsr+ucX1zY0R701m7I4/Ie59Oe7d1oEHcJ2FHfO8JWSkf0SOp9z8jT3m22KX/Lr1SXLdp4RQDE980biYoacoYUndTlvSu0xA65tYqAA+Qc1L2wH27gKgspujl0jhZjhGVZAETuXT4GecvvEDORbQFoZTxbl49B/l75mSGInZ9F8AOS8cB87CFmRTUGd5tAbk/87tOxJ4NhL7PkD1kKd11xbU5yuy3kUdw57mQyCqDt5TDdF0cdXhdz8Pz+xWXTc8d8IEB287jzmH2Raw98MOdionQMd9RDvrXY0+735f9mLEpy4+gLMUQFj/isehhqQMGhqCO3+1TUXT3ytrEt0tijgONOgFY//T4GSXVysa0rUNLvi9FZBOk69ug/2r9kPQ5zUFTb+v0rYsi496HG8UhcDY49ZyZ6OMt6XEeqh59txAh6X0ttQvb8OgLpHogRHvw4j7CVYusgDzgOawtZbpNw98Weryca8EQnYoiRWew0mMwi5S62iUf2/EdDfLc1hB2mkLZ7NDjiGHvzbDDhWgyOPo5xSwHZJKR1QybxyzHHc0GJjbhg0t+LwWSyFvDPEhnFP8ceS06beg4p9PfYXkJ72kzN0kytDWBqaCplmGpN07SEENlaNEUF53QPo9APG014IevvytXHxmZT42LTwKRRHQNELeSRZsooPh8KjpKNYUmUu0+NP5sabzY9mDSRB0AbVAsV6OsWETaQ4w1Lzay7H3xq3sMm8WEwDSApUY7V6wIXcmEDhXzgZLukTOuj3Nx4Yg+ACYku4OX+hZnsdO5bVfwimnYgDV8MiJfW9+ECEq0OsqYlXpbJZvKlukvHMAKP58iTmLtvqSPH++HiEsU6Ada3LyIvFduaQnDnWEkghhHVULFf6ccnTpfqI8vaNAAXehHvBbISoqCoDVn0RkEU4/pO7oJVNVNDDuORuaiB4Y4ue2/wIPzdT/Pu7bYtNkbbd7VNIy0WGe2uyphdsN+7zHdfcyY7qnyP4qSliNhFkTftvvxohXXExnN9/OOE9F5k4jNBFJldAKMnAr6RhO7HSobqWxG7FALk7v2dYUFdLRCLPPD3q0j8lQyiyPSTBZluWdKLGnfTy68LYqdfy2uzmJ6mMyy4CwAfvnzhjowj/nco/xTtAJjhBjF66kWLhHegX8lDJF2WnIA9AFRbY0I721c/MUfGIRb0Inh2+aLaWnTDruYIElnE3NZV7Y9PfrzFnPcsQAZAbK1phbx3McbxtBv26/ABVffTi+9/ao9WQbG6qN/EiZAPIJF7yteLq6/6LtdmXdDSNnBXbKuMRgC8fx9Za1jG25bu4K5qMP51O2Zz+yU2+YuUigFiThKqplXxck0gp3cmEYr8Wn2Xc6He1pZbU4msZbA0RP55fUIvpiDM5FhRtDE8zCC7Mk9kIS/+vJweajfUWUOJyA1tHRsO3w1ZA4ETSCWImYsVAjaEljGk/wKQrN2oR9uGW3KnRFx33GmZlzRMvhuy9kfAXrYdY2byz2RY1c0hJlGeXoKvycyb2hnjWU+ZOfcC/OvrzY49yGNnaymnGsDSJJpRA5khMuvYGWPx8+fnzBbJj14pNqMRtGkqMCXwbe2OGjEec9duui2F4iV3raantU/fAcQg/LxiEtjDR+e1nsqhEeSKLZpR78Nxlp7YfvqOKTSknGb4XuaozFljKaKbuZ0sDL3f5WhiQ09tn14oKGRUAUsF5iiSbx1rKnp7e5VtahyG+/3DLyvJIxHSbn8hqUAcVTUkLpmvwMEtA4J49zAiL0XzR/JvO66XKXH9haQCzXoYGOc2K+LYbze9+xjITNwDvCh+Kc0jgyXjgFRgXbz3LeujHehOLbj1WxGAz00Q7gn7HBCUu/5CUYFlLQfeqU3BAlsTyHNtmYlHFmxNcgNiYMUJEaCvF4mhTFY7whyZ7SZ9GwU16FHBkmYxc50MnwKN0+vQsM+sBwrOW6FuawVwIIIvig8H89h+MQEEFTg5yqbhupmvMARJ+P5+SQpGxqp4ZWKJCeBXiZNjERnYzmJHpwgjE3uZ7u1Ko1Fiw990B7zN+fbAszVtH3QZSHUkA0Puo2btoahXqTq5JGNbyUTbQMOhacctqh1dSYR57YBdbyOwLqeUqpU+GbpKjAe24qFzdrRXA47URuKYxuxo84qm6LzSiWIb8H7zbepBK+pUymRZd+wOlt7xgxJNpSYNbSwTlOLotpwQqgpdx5C/npAw23Np6EBXVxkPXZjafej9tMGXpmTUFAxUyZBPOYIBz7mpC7deGX0XKtpvO9pq7OnLAUiiAudclAYDvWw4Wf4iSUMaHLoeAKsbmv/GGdFHgJi6AWpcG06kG+tztCN9SYtD2WNfBRhGBDM07f8yApKHPf9DU92gkT27f9gfhH6WnbPToYtT98vPvEZgXiqwO8c0H2V06uKlDs+2888tn6/GFLHyu6hnXZzxH+arKaD0eNtA/MY/5aCEcFrqeBhmKZsu2NZLpsWhG2lNZTgG7th6oVA0VwElhLOKLgiH7R3Zwm9lpgO4yQbhSMK9YGAS9VnKjYRwTB0SeOcsK+fFKglKZJTeRJ1Mo7BzAqb4SQapQ5zTFHgW2VYp5hUi00Dxmi/wxKdifZnCyWKIAtXVJ6PUIZo/hj2TvWO3oIt3aYRwLkblw9iajU8d82EMqT9KHYL5n9q9WxtZrsHexqag4NwTNeQ7d+3bJ5MjPz9GHaL527A0FPKruy4WnAKhoHXX5LaEtjc58vMjtFAxMH9ow9tGmlbwSRYbNVjl69qz29vcGPH8adhwBhwJXIctNPI8Is+jNa2IsO2C3xdjz2/n0Aa+mZKh6ZDCGTUeqEDvcdExYOd9OrRbqIHh5wetQ5BlHcbGB1Ug72NjxuoASU074UPv0cZQg3z5+XFZotP2PQPm2LAJ+CRbrP3oyBW67oJLi5Zh58elQ5Tb2s7QT8Ri7odKxOuW9kj+fHVrDDs/KB3ifK1z6Z4Y2XSJjxGHQ/L6Cgw7PyTqBDYSsmLvx9n3e5q8boUnmptt2MKB+NpQeGy80mBf9A5U92BEsaN3a6OIuSTDkdKQwNc2bsAfXWPO9So+kPtj9sMGntorNN+j8vv03RMC5+1maTzyVLECe86h6l6JwcPUO7Yl1BImifNQBxlE0sdjE5Hq/q3Beu2GGK5wEvuVYY/RHEN9FR1xzOCRGOe8pzXNwXotihkWHYKbfcZdFdI1mciyd5xUmbPiCxrWVJx5pkuGoUMOnxuFlFYsyogjzrCuptyg80FwduDwqNGWfYS67oI5sWAbMYMmR+DsAHKWTCvMadBINRhCDcwaRQymugTMdTI8He5de33QilUkFqkbaE6saAKm3TvCfAw6JHBsdLpYpKwjkGhGyxCSo1FP0XwNiJGo3+3+1SO6jkhiBbuvyQ9PDkcduBlpd0Nd9zeUuJlKE8pPurMDytah46nR6kK7LsKOSEka8KFFmg+Ls8PeWRVXFctdtLHEEm9DDeuNUQIBRl1vmpJgP2A3i+4QEeHJqDg7PABamiJccTb96lfZ0gd7W2WH2AK4N6KI3s0w1SE1GukaALWp44Rc21d1iB2Hnx+Q20x6212L5eZyr/17N++fQldiV8QGjIPE4QrncZuJsXqzGOG+tOiRi7FrCgfEFS45woImzaIN6MwC7gft5iBJyKdXnAVuRBHcoWZvB9VuDaEvPjjWDFtAKjBLs0B+cmNbajNZrs4sCH3xwcGGPJkaRLLiToHgEGFhjphbsDR5aiBuNy8RFTjEFS70NhMDNNXuCKHBgbs5yrot6HuCOecSDNJuWtNw9pyl956RVkST4BA8H4bYljYNBcNyiYElobbKrj1io9/wfDKT2uiZP9Sq3THx6ADUYyZZgY5+w/OpTGqj/cTbolUlRoiOLgbZ3Wd09BueT2JWEWO0USfGiI4QHM00OiF4PomhVfVlLKrUYvAJTyGCg5neGseRBK3BEZdOmCZVy60LQx4CUUQLsB0OPJ+8dMI8OSvaGDKOiLX6fXM7+HzyngU/uuOiHF3TAPN+u0gi1P7zgFbmH/9xSFs6YXAKvIYki10Ja94HQsyiwY4c8OVHZQs5QadA6UFwLoYMJWJNVZl92pEDYT5ZK+mgyH1clF4QRYYSwaYy9ely8PkkraSDLd8KBjGyxBLBYhLBISQX9Apc0OWDXhAlSzARK6YiOIwEmlbxBGfRvF2RgtKxClJ9ThblbkMclBir5vqDseao2p9SSRIXemuJk57/Gmr1cXQ6nL8CIUlraMO3XDC6PGIZalQk3t5dC11uUXFy02/gmFWw/Nox9kiZSgq7lzpJii561wPzQoGJi7f3OI4pZWQ4ZTLG3hJnRxWafgMnECy+sSMPNKH2+uSoGrVqB/8p0JViPo238zKQLm4s59sIxFlBQndABaqAiPhBZfqP5dZ6nhw180ExO3iyJ6xZYWNGC/t0rIarSQsQEEgSKXlG+FGFEzxpodAy65RakZQxcLwJOwt2RdbzaAPsHPDkgknRW6AoicXcaEeRaIhUdhwog55mqjxM9ssELqrPb5LMQa72QXzsW+ucy945qFD2JSfm8szi2dMYaH2OIeQgN0mg+Z4c9SoZZnQdRlUZek1zzWPEt15nPI+hra88KBKlUDsja2V7N3P7N0VWBmOgue88DIPHz9phqGJor1dmkjDLjzf5TS1wCg5xeqvHkmwMtJ8S5EO1SMdaqkOCPPU5yIEC0eKqWbVw+o6YeizHxkHTfIQ8p5TKRXaVcCkhLxmADCgObQCQ49qLVDh9hTHH5NhY6PHo+hHtVEI+14LQj0cIMgTGoR6v2uHVIhduP6qxDjb8vePa7FpBKS0Cvswl14LQuw6A9ZUBhaHRtemAnirUflJj/Va882gAdRQPPIaW7OHlNBOWRQ3A0NLNKQlt1KAbZXNL9AhR+7ei2DPAfZaIqjx37DWODAYlvtz50jPMmaOKwL0pdtyR0Nd11W+lcNoZ6o/oY403A0MBbRNrlxgmg1DlrFytFPgq505aVGTkEOQYlDt2Ppb6sPBe7hF8uJDjBKEF0Lqhb63gfVxWMWydIcxUo51uBubL7TqWOcWg1VHOHovTkkrvpMH7tWYOnztZeFLUQLJSU9uQGP0twMFF570HMtMLZ8ldIxtQM9UBu8YlyvwWTCmZV7MOLu2mGo2F73XOXzL9Dq8/ENFN3ucZcvD0nsKcojpQFyElY6AE6nWIbnq/JRctPNkCfTIoopLJz8C5HMEpq5K2BCkp45gg8xp3OHdxhzV5aJl40dN6STAnBycSMxMskq93cKZxM97odmjH/hAz8KhRIgDn5UZ2dvszgR0DXq+ksScnzegMg0N34LGYhppPHTkW1yn52W1LcSwTOxL2MjeX4JBahW+IwSG36pW9QUxDzVuxy1BUUoV5JjaGvc7NyVkpXBMZHL057r25iEE15DaWAD47hiksOFKJjLnPp1sGsRqw5c4bNAPPiKkobl9ahwcPj53CqAxkIKNCJeoxylGfLY/vumu4Qy8p7pG0ebO9SODB6/M2ab0bZhfh5QUPCAlHfWtBAK8HdOZtQk5FYetSaSOBq/KwchkN4rqd4cICgDJs1rQOu4BvLZgK8IenPPCguAtP+DUkSgMJLBN/NjFmJykRkhYAqKrGdbGgFjSRUeLQ03IuyKbadi6jugbyJwS2lcxQBgfCt33EsZOocX5qeHynUe33VXWyFIYd1Hb6RPN6PpfhIQFqjck6J5mRIFcoNIIfwKe0Pb5gx8dXSuASnUHQKcO2g9lmnaMMzjXkUbSJUPaHBwEwqVVCjGcbotrzBYQFegreAFaOqXc8JNiADmD0RQYn2lFVRY0bd2+AKQPbbpegmoH29lCbDQs49SAV3N+isi5x01x8fuygWWSwZBaSRmcogwC8CTBvAaopQ+ZiQ1IOfhITgSx65yU1vg94JHiI0LInlBR2wytaWq4we0OheUgtZdg7ycuABsTuLwGN8t/gmapLcT7MaILyVjw5Z5BTeuIBnRsKWcsFZndoNEuSlYJ9AppbfuxYBqL9r6rFbmGW46vrFQPMxDQXa8ICLmxMc6YO/7FjfwQi/lqegT/K/2J9fJGHKy44oXJL9SWY1mSlxEjPT+M5g1Y/pA7+ZkzKMO/FU9d72FYAmpSLF+d5QN4izA9vKJQPzMgtlCUenueZmRtAJGk88rf9NQ1sGFr+dPrs/FyrAE2COconL8Nq+4skqDMzFuDkiIjcQlni9fM84WzSUTDbi/Daj6rGcZ7H0fJ2S6zxZ6aQgCaBqdiSjD5Oe4+ucSDtF7O+lzCVMiqSdKhC9snBsxoQII8i3Et9G7AX+R7++IvIcZfMA85oVYXX7iJwp5ZuWolY3LNcrQOZz10uGmHxmSGjElvrXXz8bD2TixqLBcosuvY+AEld8et7jozKc6RtDO6UeA9mVQFCD27oZyAlpQ+6PgdWa7KxtdoG75lcnPLPM1PT9bYP7HVo04DdJJCTHm3/wcTWajuOWUhTYMUKv+pIYx3Y91CbsNefOL/XMB5pXtVoGCJRVzr4QiCPakvrwL6H3ARwUXq/A30m+t5oNA6NqLbmgKv/SHeRgSfV6d+ewHEUowUNrz4YjeahEdUHFhhW33khA3tflxz9ClJdyb5qPocGohFlQEaR1eH9r77sXQYRAzTAQWtZPhttIipRWYrMYnuRr4W2JfW7RSpZrxuRedYlBNaBq58g2kxUomaQiFF0ITxd3da7sVSu8NhRYP3xDBSPYPhCTDNANaFjBEIA0XgT7rPweCOOlWhnWAOw83AWkg2by5X6kQl9BlWFjhEhQI38QwhIif6/d/pJnbTzZS1+nzl//RzoB6sr7G/GlKBPFYLKBpBDfAmRACovJ60HX7RTwIUH/rFmfbG1jCAep8DZjh1DLykq/yhEERhqgLys/M+gkwsFxDPQvu+QVdHuoF/XF0zLEjISIuLTTKKKUs0p0TowqmKDErzwDWTYm3GsCeHl5TPglxcQN9RMxMS3fbpJVenYeQBSFVhdEH+c0oSFRybD3uSKrnFdr8haNl0RJKY0H6FPKSFfeCOqAEI0AKN43SpwYT9Obk7wv2mdW9c14ktr2xA+ReznM67VzgfsuW+aCkEwHYA8iFbOhLqwj7jSK6fPvNw/2supYVgfzce9FyRL4N9vm1A3TLGHQTWj0BlxGRsvFKZd3F4B2KGnbdsAw7wheeOu6husoNCCpLUvpRvtpx6zwvmb/sDkhT7GKUsgDEG004B+4aa8wQq6TDH2ARNXu/YBPzQqZ6yBnJ7wm07po5U2zTDMG5I37rm8wQ6ak5U09oRfAQuQn4GVKGfw5wp7lZ+ixdMEmrudVkFY3rwPYVxIUrgD5BwhWz3TGRWTO9ca9CptnnMGzd1Oqy7MLfv1Re0higsktXkGnGyeYp/jZ3JSzhdvIXC/UrIaOt7claX1TjzXkTTUUGsHcPGcgIIp3nxhAkMfDqShyzT3QqQ2BId8AaC7Abh/anamgHKWBJn9nE6rHvT24YT4gF4aPZzDFBXbVexoeZCSp+MDDreHPLlpChleDOet3tKEH/mSohdNSiEcj98oAYn9eT7Y0q0CXnV/O/N5L56D7SdoBncPBQMl3VNp8O/+v082sXLfpKFA9wi9GjhxiD3dcX5tSHyY75GCWd7TB1yPKY7EpsEuP3eqr69cMPQwMZdjVU+D6FzWmdWxUy50AGZ0TOibiD07zzENrNOF5papd6VUrGOi1zsyI3tkfCnn10N5eIVTofzORfSid6qeWEjcnLEhgRkVQp1egoCvXJCGOSxVCeYn2kEq0JKrk1QpEdWh8/zTdz+QdkT//SWwkV2t05wqQrOsl+pVSVBn/W4HZBQ/FvG9VgulFM331bRxx44Nwms1OQxcNfBZHVGRLgX+ux3g6378g6vPUnSf9zsXYM4fKDq+TtqPVenoiHrwWehdsdUsZvtluz0T9ODp8LCyeuT3LX6A9/1QQXb4Md5z89AJ6KCvHIAvi7tNwCvv3ZUJztCVP8XBes0ChlD3wAl2l1CKwHFVr5KdANMoMV+z1d3m6dvry/nUN/YxOJO/N0j2SACd4xSnIobZt3jQui+OiCrKLKws3oJ3AkBSTqs0TXKAZx1ZBL7n0xH6MjkB7huSJxeT7D2Lef+cyLpGbEUWcN0rKciDmZJ1EGBFZfxejI/4gkM2+AO0z6fVPgZbuwFn+SGM94SN7LwdGnneApec5v3owtVPvFgMD8DOu0nxVrk0DcH2sAP6bPOpZ6yAhf6eeMu5kQoGJSvYpa+MQmiXN+CqPCQCH1wdwQ0g9gfToncxt5jZIO9Nkd7TaynZy+ytRWbQaU+04CZhwDfdslSA3y7LQDggIsfZ09I0d5hHw+lv9uF9WJa3FeAFe09Kydx3zAq+CYB23kbEZjH3Iz4kWJh1EGwD5XfoYDJ/E3fttIXTs02XZs1DnaZo9GgLwEYLHUob0E3r6Rmh1aQoOL3eMvSFQnHhEBOyi55kP5/yFATaQPG2kSBaKNGgme709MzlUzqYM+nCuCBnAEDcD48E8dzZfhIEn/4HxW1AkDyOOgIZeKFEqVR7mHvcRgG7C8ka0EbFPdZFtr5xZ8THfTtsNCxLVZo5EqdnPmUhWRf3bHHY8PYyFMf6qsUCvKgDw6RFjbwfQHMgbLRLWZCgljuio4lLh0pPb2BJ2ux5X0B+3F8/6qj3hQze5YFWOu4/lPhfme39u8EljtIb8F0uZTryLGQerjV5aXCdAQ++IjwuVtp3Lp71cb5IbWPX5XXPdnj0FeOQqPu7eVHOs/0U7r/QyftA11qMev9PBxpXKQwMyNwbhzzijPZJaJtzfWg8KeMQzJrCM5NR+8o4n3KxEmI8PDDUZgMzVa0pVaITbkjfHEGAhP2Ndk0IPCll+o1+1x3ybe831VjnxBgz8sDRHQu2rBmebhBHX+phwWZ6zYSHhPAg6zKHuvujstdFwyMoH97X6N1UFy6YkRFQ3jkPurOhzYqIWwASCsdA6F9yZjGb1DKu31U9kH2EBnLtmOSJNlY/e95DPnlfWboDktus+/uJmHcHo/QvKUSWeHaF+qOaBiKVDmFNzXlhlPeaob8duMVX9vuJpL8w52mkikhx//U1mgZiPofkw77sMi89ATyjxHTZEb5NkxYqX7jsq4CYaP68wwjWPeEbFTTp8uQpZsmg11vtANoDlBwFLK5RBryAJ70oJgksqkb6gRJkdHsQP/Hsb7RVelJLAlhMbU5RQiagde98MbgbUY9S4tvAWo5qoC8M1j2mMKifgEcC8BLlXrEd8CEaWqqgCcK67yQG9ZN1aUwhFdYyLmrGnpAq+7QLroWfcFS786fbHfO6C88GzG38UngC2y7iJ150lDr3XCzRugJYNl7uS8uXYtRBT2Dds1JKG6ItutO0WXzbWbKnGO67NZFlR2gD3zwdF2c9AHnea9Fdb+TMI0J1YbxLosCe0Apv2/BpQgClweVLbjmWZZLpbjqe9QRg4FEwPEQMUAER0O1mXzyL5VOTXzA87wG9cCfQ+TfYY4922odv9LkjIEyfe9W1fClJxQFYQX4D/+ex+EtT+0Hfx0fElh31S4kbYkKD/JmUsvDjp3+znR8/NLUYvhQZiFwuAFLyhj5OvoOsm6nsm4/0fVDRRTIiORKAlL4BiL14VQvPmhINrmwH8F2Aop9CiErVF4CG6gZLLAhCsvEQVbGWW507zKXorHIXyoLQMEBaO2gSuNuzeFrc2Yp9WmFScqWqbuQ3DPjfbKSPE/6cBaXi3OMwTLFn/iGSKE+JoGE0l3UAdtxgqU+PPK84NNjhlhWmPiWDhqFceNQ+T+q8z1ehSoMd5bbOGUnbI3HpYcVIiWDmucVVraQT5cb4Y0dl4AlO5SPltnaotyw/brRI/WtPbW1Vh97IWC4JqLRK5R/sT3Aqo6qhTqi8tubFjRVJoWKLq+LiWkSP5DhNl4TyjPE39ic4ygnjC1SNt0d0NBb4u+qJFgniQsvl0FxqXKvpvrd1TIacmR/M7ZLzBNjWxLjHVYOGOmrz5cWMBDDzsks25x+uEaZktzgjqmjL/v0SxY0EMfOyg34DYLuBGLsaumRzPwCR6u/93IHblc/6G7ruSYcERr5pbcru+QRwIE9lRzDyDX1fKDBI4l4NIXCBO73dGYw8sr8CYeQR+f6FA10CvSoEUfLnGESJq5JgZM6I4o1nTVBXfXR3Og/2HMUp9EkXFKfMW8M4xd4axNA399Yc5p7Jnz+8O3+FP+EYhtGmr99BON/Qrk3DysrEXW4eWQi3KNovDmHYRyCHYWZ9hHKAfWRyGbzHDYYbQGkfkYw9Yr7djooxpmbH0oS+ww2CKOigH+MiCFwRhwMi5xFvKl0lo+vuxcfK1cwhLR0TnuRHQsXzTPTRaWRwPmJAq0EJUsbb1RrIbVAgCwcx0Mml8rhPEiA1UGuLW+U4dlzuqMO62sAyqOJwQ7YF2ScC9lQqFJcDspkIW1vuZNxwRtcjHjwbsFp1eLgcUX0S0i/11ZDVCoMiuht1CPXVoNUqVal0NWouLvjDP8Qq3YwK2egZQTwcC5s6nQQbwQfz8HAo5FBSI6YiNIUsYB5N3amSoQ1HpdhI1QGpk1o4KsVGMYM6AHWSgRS1kWwURlAHnU54DGajZQ+mcAgr4dnodrAFLCW+EicVup1sgUgpFSxFuUCjVCkMdAFFKRIY64L+Bw6BHtKFofJkKPqefxqGNhTm2sh41C4N+ceFwlwc6TJS3du6c6AwV0diRap7WXeNFObsCLgBHRF7z/KP6nYTYw6PkKoVe0/yk7pZzOlVTwNi70X+IdG6/QDB7I2r1wj465PkRajbB1SjO1BA6CcKutvkdfsGex0woY8oQw0Cfh9hD5kg9AwlBwm/r7CXhSL0B2UpNL/PICJCn1AQ5l+Eq1x06FD8ihDInxf+9dU7DcNQeYqXEdqMlNrrqnesgaX4GQE0yizZ+K+s/xr8EvvbRJbiawRSLV10zcqolSigQfG3O4AS0oiLrgsrvRoUxroUpJeg+CIBFS0VFz2uQxHxnasG8Con+pJeTf9lEYdivQan22EkyyiKzxaVkNjlFnHYJcucbnObUERlXly0VMRKiVoiS/HWRVjmy0VzgXcBeSBFL1XdwcjiKz3gxWV+v8pKYmiTR+GCA1HS3I/jQcvmRPPCshvBUj9ZOlGtBVci1da1ll/JmNssofg7r7GlzhLDJF5wKlchli4/lUQsPxUZ7y2AVbbgXpappo+OxTzWfIZfEZJe9SwLv/xeeN6bhCiqhV5xNKnmPI6DfhrHnGtN9OqjKfN8a5B9i4W+U5gUYwyCFGNkV1+O9jLguY3Uwh8B8iOhCFefj46/326OAI0jwfjqG7pBHQkfb37pa/8h/Cf8J/wn/Cf8J/wn/Cf8J/wn/Cf8J/wn/Cf8J/wn/Cf8J/wn/Cf85xmTfAQA",
+ "logoUrls": [
+ "data:image/webp;base64,UklGRkAkAABXRUJQVlA4TDMkAAAvf8KfANWK27aRJKlKyj/q+frWOjMiJiCv/fuS4YscG7cQ56O5NumsCeIRMhUB7+mogsqVMKDQ1ld8S9g+4SlbxS3KuhM97JVVZH/qaxIvwcvkyRXqlnWkla1tcQ1Q7Vs3+4V0VhQPW2VGgEBAIECH5KhlVeXtvAAoa3+u/XYmkoGkw3nvMGyA0+f7Dw4lZ9ujSNJV8yh5FI5CXw3/k53hwI6eB8sKmgoJCEr0SA/e9YDtTUrUBiEbSVqUMflxfKFDGRRGkSRFSimthED6SAD2fI6U/suibaVuLTRjcBBwXEIejUpbb/2R5Wrb0zhbTVvILIWleG0/H9j+fvD7pH5XCI2bRBin5467FJj0KilkJElalEbZfw/7UAbFLCNJg3L+FI9w3335KP2XBUl23DbDxyIoAgs7d4DH96Djy5sDQHobV9umpXgpWgqXkAUk52gpWsps7bCrq6uqi0Z+KhQ1H40xQSY8MOlJD/OdCISgHvkH4SHoMIQkSdKgFEqhtMl9Ai/AogzKoDCGJElQodTzLHbQG+EQCqX/sGjbpludwyAbR4ukIpIe9/FDO7ZtuW2kUBiKQkEoCkWhKBRkoioSBO4591yW+OcenucB6hE90eCnGnU9oEfYhbJBtpFqcofy6I9yKAbZRirK/Cke5d6k/7JoW43b6goWCBBaGetI2M0bvj774+aXvvYfwn/Cf8J/wn/Cf8J/wn/Cf8J/wn/Cf8J/wn/Cf8J/wn/Cf8J/wn/Cf54xyJv/Qb5HSsC/9b25H+SCtznaAqcfq6vVe7MeZLvNWWoD2gLkceizWN0vszfLfd++NfzBbnPnaaUNKAvcY4TqYJGv8ttfaP1+2BU7ygzlPTQlKn+zzNmADeLKWyBtsMiJ2S09zcUEHe3Ou9oNeFwqxa78NS+DP0ZaCaQ9RXQh8MuNophfYQ+6tRvyuNRlq7Y/Ukq0EjhShNMrqaVsr+ucX1zY0R701m7I4/Ie59Oe7d1oEHcJ2FHfO8JWSkf0SOp9z8jT3m22KX/Lr1SXLdp4RQDE980biYoacoYUndTlvSu0xA65tYqAA+Qc1L2wH27gKgspujl0jhZjhGVZAETuXT4GecvvEDORbQFoZTxbl49B/l75mSGInZ9F8AOS8cB87CFmRTUGd5tAbk/87tOxJ4NhL7PkD1kKd11xbU5yuy3kUdw57mQyCqDt5TDdF0cdXhdz8Pz+xWXTc8d8IEB287jzmH2Raw98MOdionQMd9RDvrXY0+735f9mLEpy4+gLMUQFj/isehhqQMGhqCO3+1TUXT3ytrEt0tijgONOgFY//T4GSXVysa0rUNLvi9FZBOk69ug/2r9kPQ5zUFTb+v0rYsi496HG8UhcDY49ZyZ6OMt6XEeqh59txAh6X0ttQvb8OgLpHogRHvw4j7CVYusgDzgOawtZbpNw98Weryca8EQnYoiRWew0mMwi5S62iUf2/EdDfLc1hB2mkLZ7NDjiGHvzbDDhWgyOPo5xSwHZJKR1QybxyzHHc0GJjbhg0t+LwWSyFvDPEhnFP8ceS06beg4p9PfYXkJ72kzN0kytDWBqaCplmGpN07SEENlaNEUF53QPo9APG014IevvytXHxmZT42LTwKRRHQNELeSRZsooPh8KjpKNYUmUu0+NP5sabzY9mDSRB0AbVAsV6OsWETaQ4w1Lzay7H3xq3sMm8WEwDSApUY7V6wIXcmEDhXzgZLukTOuj3Nx4Yg+ACYku4OX+hZnsdO5bVfwimnYgDV8MiJfW9+ECEq0OsqYlXpbJZvKlukvHMAKP58iTmLtvqSPH++HiEsU6Ada3LyIvFduaQnDnWEkghhHVULFf6ccnTpfqI8vaNAAXehHvBbISoqCoDVn0RkEU4/pO7oJVNVNDDuORuaiB4Y4ue2/wIPzdT/Pu7bYtNkbbd7VNIy0WGe2uyphdsN+7zHdfcyY7qnyP4qSliNhFkTftvvxohXXExnN9/OOE9F5k4jNBFJldAKMnAr6RhO7HSobqWxG7FALk7v2dYUFdLRCLPPD3q0j8lQyiyPSTBZluWdKLGnfTy68LYqdfy2uzmJ6mMyy4CwAfvnzhjowj/nco/xTtAJjhBjF66kWLhHegX8lDJF2WnIA9AFRbY0I721c/MUfGIRb0Inh2+aLaWnTDruYIElnE3NZV7Y9PfrzFnPcsQAZAbK1phbx3McbxtBv26/ABVffTi+9/ao9WQbG6qN/EiZAPIJF7yteLq6/6LtdmXdDSNnBXbKuMRgC8fx9Za1jG25bu4K5qMP51O2Zz+yU2+YuUigFiThKqplXxck0gp3cmEYr8Wn2Xc6He1pZbU4msZbA0RP55fUIvpiDM5FhRtDE8zCC7Mk9kIS/+vJweajfUWUOJyA1tHRsO3w1ZA4ETSCWImYsVAjaEljGk/wKQrN2oR9uGW3KnRFx33GmZlzRMvhuy9kfAXrYdY2byz2RY1c0hJlGeXoKvycyb2hnjWU+ZOfcC/OvrzY49yGNnaymnGsDSJJpRA5khMuvYGWPx8+fnzBbJj14pNqMRtGkqMCXwbe2OGjEec9duui2F4iV3raantU/fAcQg/LxiEtjDR+e1nsqhEeSKLZpR78Nxlp7YfvqOKTSknGb4XuaozFljKaKbuZ0sDL3f5WhiQ09tn14oKGRUAUsF5iiSbx1rKnp7e5VtahyG+/3DLyvJIxHSbn8hqUAcVTUkLpmvwMEtA4J49zAiL0XzR/JvO66XKXH9haQCzXoYGOc2K+LYbze9+xjITNwDvCh+Kc0jgyXjgFRgXbz3LeujHehOLbj1WxGAz00Q7gn7HBCUu/5CUYFlLQfeqU3BAlsTyHNtmYlHFmxNcgNiYMUJEaCvF4mhTFY7whyZ7SZ9GwU16FHBkmYxc50MnwKN0+vQsM+sBwrOW6FuawVwIIIvig8H89h+MQEEFTg5yqbhupmvMARJ+P5+SQpGxqp4ZWKJCeBXiZNjERnYzmJHpwgjE3uZ7u1Ko1Fiw990B7zN+fbAszVtH3QZSHUkA0Puo2btoahXqTq5JGNbyUTbQMOhacctqh1dSYR57YBdbyOwLqeUqpU+GbpKjAe24qFzdrRXA47URuKYxuxo84qm6LzSiWIb8H7zbepBK+pUymRZd+wOlt7xgxJNpSYNbSwTlOLotpwQqgpdx5C/npAw23Np6EBXVxkPXZjafej9tMGXpmTUFAxUyZBPOYIBz7mpC7deGX0XKtpvO9pq7OnLAUiiAudclAYDvWw4Wf4iSUMaHLoeAKsbmv/GGdFHgJi6AWpcG06kG+tztCN9SYtD2WNfBRhGBDM07f8yApKHPf9DU92gkT27f9gfhH6WnbPToYtT98vPvEZgXiqwO8c0H2V06uKlDs+2888tn6/GFLHyu6hnXZzxH+arKaD0eNtA/MY/5aCEcFrqeBhmKZsu2NZLpsWhG2lNZTgG7th6oVA0VwElhLOKLgiH7R3Zwm9lpgO4yQbhSMK9YGAS9VnKjYRwTB0SeOcsK+fFKglKZJTeRJ1Mo7BzAqb4SQapQ5zTFHgW2VYp5hUi00Dxmi/wxKdifZnCyWKIAtXVJ6PUIZo/hj2TvWO3oIt3aYRwLkblw9iajU8d82EMqT9KHYL5n9q9WxtZrsHexqag4NwTNeQ7d+3bJ5MjPz9GHaL527A0FPKruy4WnAKhoHXX5LaEtjc58vMjtFAxMH9ow9tGmlbwSRYbNVjl69qz29vcGPH8adhwBhwJXIctNPI8Is+jNa2IsO2C3xdjz2/n0Aa+mZKh6ZDCGTUeqEDvcdExYOd9OrRbqIHh5wetQ5BlHcbGB1Ug72NjxuoASU074UPv0cZQg3z5+XFZotP2PQPm2LAJ+CRbrP3oyBW67oJLi5Zh58elQ5Tb2s7QT8Ri7odKxOuW9kj+fHVrDDs/KB3ifK1z6Z4Y2XSJjxGHQ/L6Cgw7PyTqBDYSsmLvx9n3e5q8boUnmptt2MKB+NpQeGy80mBf9A5U92BEsaN3a6OIuSTDkdKQwNc2bsAfXWPO9So+kPtj9sMGntorNN+j8vv03RMC5+1maTzyVLECe86h6l6JwcPUO7Yl1BImifNQBxlE0sdjE5Hq/q3Beu2GGK5wEvuVYY/RHEN9FR1xzOCRGOe8pzXNwXotihkWHYKbfcZdFdI1mciyd5xUmbPiCxrWVJx5pkuGoUMOnxuFlFYsyogjzrCuptyg80FwduDwqNGWfYS67oI5sWAbMYMmR+DsAHKWTCvMadBINRhCDcwaRQymugTMdTI8He5de33QilUkFqkbaE6saAKm3TvCfAw6JHBsdLpYpKwjkGhGyxCSo1FP0XwNiJGo3+3+1SO6jkhiBbuvyQ9PDkcduBlpd0Nd9zeUuJlKE8pPurMDytah46nR6kK7LsKOSEka8KFFmg+Ls8PeWRVXFctdtLHEEm9DDeuNUQIBRl1vmpJgP2A3i+4QEeHJqDg7PABamiJccTb96lfZ0gd7W2WH2AK4N6KI3s0w1SE1GukaALWp44Rc21d1iB2Hnx+Q20x6212L5eZyr/17N++fQldiV8QGjIPE4QrncZuJsXqzGOG+tOiRi7FrCgfEFS45woImzaIN6MwC7gft5iBJyKdXnAVuRBHcoWZvB9VuDaEvPjjWDFtAKjBLs0B+cmNbajNZrs4sCH3xwcGGPJkaRLLiToHgEGFhjphbsDR5aiBuNy8RFTjEFS70NhMDNNXuCKHBgbs5yrot6HuCOecSDNJuWtNw9pyl956RVkST4BA8H4bYljYNBcNyiYElobbKrj1io9/wfDKT2uiZP9Sq3THx6ADUYyZZgY5+w/OpTGqj/cTbolUlRoiOLgbZ3Wd09BueT2JWEWO0USfGiI4QHM00OiF4PomhVfVlLKrUYvAJTyGCg5neGseRBK3BEZdOmCZVy60LQx4CUUQLsB0OPJ+8dMI8OSvaGDKOiLX6fXM7+HzyngU/uuOiHF3TAPN+u0gi1P7zgFbmH/9xSFs6YXAKvIYki10Ja94HQsyiwY4c8OVHZQs5QadA6UFwLoYMJWJNVZl92pEDYT5ZK+mgyH1clF4QRYYSwaYy9ely8PkkraSDLd8KBjGyxBLBYhLBISQX9Apc0OWDXhAlSzARK6YiOIwEmlbxBGfRvF2RgtKxClJ9ThblbkMclBir5vqDseao2p9SSRIXemuJk57/Gmr1cXQ6nL8CIUlraMO3XDC6PGIZalQk3t5dC11uUXFy02/gmFWw/Nox9kiZSgq7lzpJii561wPzQoGJi7f3OI4pZWQ4ZTLG3hJnRxWafgMnECy+sSMPNKH2+uSoGrVqB/8p0JViPo238zKQLm4s59sIxFlBQndABaqAiPhBZfqP5dZ6nhw180ExO3iyJ6xZYWNGC/t0rIarSQsQEEgSKXlG+FGFEzxpodAy65RakZQxcLwJOwt2RdbzaAPsHPDkgknRW6AoicXcaEeRaIhUdhwog55mqjxM9ssELqrPb5LMQa72QXzsW+ucy945qFD2JSfm8szi2dMYaH2OIeQgN0mg+Z4c9SoZZnQdRlUZek1zzWPEt15nPI+hra88KBKlUDsja2V7N3P7N0VWBmOgue88DIPHz9phqGJor1dmkjDLjzf5TS1wCg5xeqvHkmwMtJ8S5EO1SMdaqkOCPPU5yIEC0eKqWbVw+o6YeizHxkHTfIQ8p5TKRXaVcCkhLxmADCgObQCQ49qLVDh9hTHH5NhY6PHo+hHtVEI+14LQj0cIMgTGoR6v2uHVIhduP6qxDjb8vePa7FpBKS0Cvswl14LQuw6A9ZUBhaHRtemAnirUflJj/Va882gAdRQPPIaW7OHlNBOWRQ3A0NLNKQlt1KAbZXNL9AhR+7ei2DPAfZaIqjx37DWODAYlvtz50jPMmaOKwL0pdtyR0Nd11W+lcNoZ6o/oY403A0MBbRNrlxgmg1DlrFytFPgq505aVGTkEOQYlDt2Ppb6sPBe7hF8uJDjBKEF0Lqhb63gfVxWMWydIcxUo51uBubL7TqWOcWg1VHOHovTkkrvpMH7tWYOnztZeFLUQLJSU9uQGP0twMFF570HMtMLZ8ldIxtQM9UBu8YlyvwWTCmZV7MOLu2mGo2F73XOXzL9Dq8/ENFN3ucZcvD0nsKcojpQFyElY6AE6nWIbnq/JRctPNkCfTIoopLJz8C5HMEpq5K2BCkp45gg8xp3OHdxhzV5aJl40dN6STAnBycSMxMskq93cKZxM97odmjH/hAz8KhRIgDn5UZ2dvszgR0DXq+ksScnzegMg0N34LGYhppPHTkW1yn52W1LcSwTOxL2MjeX4JBahW+IwSG36pW9QUxDzVuxy1BUUoV5JjaGvc7NyVkpXBMZHL057r25iEE15DaWAD47hiksOFKJjLnPp1sGsRqw5c4bNAPPiKkobl9ahwcPj53CqAxkIKNCJeoxylGfLY/vumu4Qy8p7pG0ebO9SODB6/M2ab0bZhfh5QUPCAlHfWtBAK8HdOZtQk5FYetSaSOBq/KwchkN4rqd4cICgDJs1rQOu4BvLZgK8IenPPCguAtP+DUkSgMJLBN/NjFmJykRkhYAqKrGdbGgFjSRUeLQ03IuyKbadi6jugbyJwS2lcxQBgfCt33EsZOocX5qeHynUe33VXWyFIYd1Hb6RPN6PpfhIQFqjck6J5mRIFcoNIIfwKe0Pb5gx8dXSuASnUHQKcO2g9lmnaMMzjXkUbSJUPaHBwEwqVVCjGcbotrzBYQFegreAFaOqXc8JNiADmD0RQYn2lFVRY0bd2+AKQPbbpegmoH29lCbDQs49SAV3N+isi5x01x8fuygWWSwZBaSRmcogwC8CTBvAaopQ+ZiQ1IOfhITgSx65yU1vg94JHiI0LInlBR2wytaWq4we0OheUgtZdg7ycuABsTuLwGN8t/gmapLcT7MaILyVjw5Z5BTeuIBnRsKWcsFZndoNEuSlYJ9AppbfuxYBqL9r6rFbmGW46vrFQPMxDQXa8ICLmxMc6YO/7FjfwQi/lqegT/K/2J9fJGHKy44oXJL9SWY1mSlxEjPT+M5g1Y/pA7+ZkzKMO/FU9d72FYAmpSLF+d5QN4izA9vKJQPzMgtlCUenueZmRtAJGk88rf9NQ1sGFr+dPrs/FyrAE2COconL8Nq+4skqDMzFuDkiIjcQlni9fM84WzSUTDbi/Daj6rGcZ7H0fJ2S6zxZ6aQgCaBqdiSjD5Oe4+ucSDtF7O+lzCVMiqSdKhC9snBsxoQII8i3Et9G7AX+R7++IvIcZfMA85oVYXX7iJwp5ZuWolY3LNcrQOZz10uGmHxmSGjElvrXXz8bD2TixqLBcosuvY+AEld8et7jozKc6RtDO6UeA9mVQFCD27oZyAlpQ+6PgdWa7KxtdoG75lcnPLPM1PT9bYP7HVo04DdJJCTHm3/wcTWajuOWUhTYMUKv+pIYx3Y91CbsNefOL/XMB5pXtVoGCJRVzr4QiCPakvrwL6H3ARwUXq/A30m+t5oNA6NqLbmgKv/SHeRgSfV6d+ewHEUowUNrz4YjeahEdUHFhhW33khA3tflxz9ClJdyb5qPocGohFlQEaR1eH9r77sXQYRAzTAQWtZPhttIipRWYrMYnuRr4W2JfW7RSpZrxuRedYlBNaBq58g2kxUomaQiFF0ITxd3da7sVSu8NhRYP3xDBSPYPhCTDNANaFjBEIA0XgT7rPweCOOlWhnWAOw83AWkg2by5X6kQl9BlWFjhEhQI38QwhIif6/d/pJnbTzZS1+nzl//RzoB6sr7G/GlKBPFYLKBpBDfAmRACovJ60HX7RTwIUH/rFmfbG1jCAep8DZjh1DLykq/yhEERhqgLys/M+gkwsFxDPQvu+QVdHuoF/XF0zLEjISIuLTTKKKUs0p0TowqmKDErzwDWTYm3GsCeHl5TPglxcQN9RMxMS3fbpJVenYeQBSFVhdEH+c0oSFRybD3uSKrnFdr8haNl0RJKY0H6FPKSFfeCOqAEI0AKN43SpwYT9Obk7wv2mdW9c14ktr2xA+ReznM67VzgfsuW+aCkEwHYA8iFbOhLqwj7jSK6fPvNw/2supYVgfzce9FyRL4N9vm1A3TLGHQTWj0BlxGRsvFKZd3F4B2KGnbdsAw7wheeOu6husoNCCpLUvpRvtpx6zwvmb/sDkhT7GKUsgDEG004B+4aa8wQq6TDH2ARNXu/YBPzQqZ6yBnJ7wm07po5U2zTDMG5I37rm8wQ6ak5U09oRfAQuQn4GVKGfw5wp7lZ+ixdMEmrudVkFY3rwPYVxIUrgD5BwhWz3TGRWTO9ca9CptnnMGzd1Oqy7MLfv1Re0higsktXkGnGyeYp/jZ3JSzhdvIXC/UrIaOt7claX1TjzXkTTUUGsHcPGcgIIp3nxhAkMfDqShyzT3QqQ2BId8AaC7Abh/anamgHKWBJn9nE6rHvT24YT4gF4aPZzDFBXbVexoeZCSp+MDDreHPLlpChleDOet3tKEH/mSohdNSiEcj98oAYn9eT7Y0q0CXnV/O/N5L56D7SdoBncPBQMl3VNp8O/+v082sXLfpKFA9wi9GjhxiD3dcX5tSHyY75GCWd7TB1yPKY7EpsEuP3eqr69cMPQwMZdjVU+D6FzWmdWxUy50AGZ0TOibiD07zzENrNOF5papd6VUrGOi1zsyI3tkfCnn10N5eIVTofzORfSid6qeWEjcnLEhgRkVQp1egoCvXJCGOSxVCeYn2kEq0JKrk1QpEdWh8/zTdz+QdkT//SWwkV2t05wqQrOsl+pVSVBn/W4HZBQ/FvG9VgulFM331bRxx44Nwms1OQxcNfBZHVGRLgX+ux3g6378g6vPUnSf9zsXYM4fKDq+TtqPVenoiHrwWehdsdUsZvtluz0T9ODp8LCyeuT3LX6A9/1QQXb4Md5z89AJ6KCvHIAvi7tNwCvv3ZUJztCVP8XBes0ChlD3wAl2l1CKwHFVr5KdANMoMV+z1d3m6dvry/nUN/YxOJO/N0j2SACd4xSnIobZt3jQui+OiCrKLKws3oJ3AkBSTqs0TXKAZx1ZBL7n0xH6MjkB7huSJxeT7D2Lef+cyLpGbEUWcN0rKciDmZJ1EGBFZfxejI/4gkM2+AO0z6fVPgZbuwFn+SGM94SN7LwdGnneApec5v3owtVPvFgMD8DOu0nxVrk0DcH2sAP6bPOpZ6yAhf6eeMu5kQoGJSvYpa+MQmiXN+CqPCQCH1wdwQ0g9gfToncxt5jZIO9Nkd7TaynZy+ytRWbQaU+04CZhwDfdslSA3y7LQDggIsfZ09I0d5hHw+lv9uF9WJa3FeAFe09Kydx3zAq+CYB23kbEZjH3Iz4kWJh1EGwD5XfoYDJ/E3fttIXTs02XZs1DnaZo9GgLwEYLHUob0E3r6Rmh1aQoOL3eMvSFQnHhEBOyi55kP5/yFATaQPG2kSBaKNGgme709MzlUzqYM+nCuCBnAEDcD48E8dzZfhIEn/4HxW1AkDyOOgIZeKFEqVR7mHvcRgG7C8ka0EbFPdZFtr5xZ8THfTtsNCxLVZo5EqdnPmUhWRf3bHHY8PYyFMf6qsUCvKgDw6RFjbwfQHMgbLRLWZCgljuio4lLh0pPb2BJ2ux5X0B+3F8/6qj3hQze5YFWOu4/lPhfme39u8EljtIb8F0uZTryLGQerjV5aXCdAQ++IjwuVtp3Lp71cb5IbWPX5XXPdnj0FeOQqPu7eVHOs/0U7r/QyftA11qMev9PBxpXKQwMyNwbhzzijPZJaJtzfWg8KeMQzJrCM5NR+8o4n3KxEmI8PDDUZgMzVa0pVaITbkjfHEGAhP2Ndk0IPCll+o1+1x3ybe831VjnxBgz8sDRHQu2rBmebhBHX+phwWZ6zYSHhPAg6zKHuvujstdFwyMoH97X6N1UFy6YkRFQ3jkPurOhzYqIWwASCsdA6F9yZjGb1DKu31U9kH2EBnLtmOSJNlY/e95DPnlfWboDktus+/uJmHcHo/QvKUSWeHaF+qOaBiKVDmFNzXlhlPeaob8duMVX9vuJpL8w52mkikhx//U1mgZiPofkw77sMi89ATyjxHTZEb5NkxYqX7jsq4CYaP68wwjWPeEbFTTp8uQpZsmg11vtANoDlBwFLK5RBryAJ70oJgksqkb6gRJkdHsQP/Hsb7RVelJLAlhMbU5RQiagde98MbgbUY9S4tvAWo5qoC8M1j2mMKifgEcC8BLlXrEd8CEaWqqgCcK67yQG9ZN1aUwhFdYyLmrGnpAq+7QLroWfcFS786fbHfO6C88GzG38UngC2y7iJ150lDr3XCzRugJYNl7uS8uXYtRBT2Dds1JKG6ItutO0WXzbWbKnGO67NZFlR2gD3zwdF2c9AHnea9Fdb+TMI0J1YbxLosCe0Apv2/BpQgClweVLbjmWZZLpbjqe9QRg4FEwPEQMUAER0O1mXzyL5VOTXzA87wG9cCfQ+TfYY4922odv9LkjIEyfe9W1fClJxQFYQX4D/+ex+EtT+0Hfx0fElh31S4kbYkKD/JmUsvDjp3+znR8/NLUYvhQZiFwuAFLyhj5OvoOsm6nsm4/0fVDRRTIiORKAlL4BiL14VQvPmhINrmwH8F2Aop9CiErVF4CG6gZLLAhCsvEQVbGWW507zKXorHIXyoLQMEBaO2gSuNuzeFrc2Yp9WmFScqWqbuQ3DPjfbKSPE/6cBaXi3OMwTLFn/iGSKE+JoGE0l3UAdtxgqU+PPK84NNjhlhWmPiWDhqFceNQ+T+q8z1ehSoMd5bbOGUnbI3HpYcVIiWDmucVVraQT5cb4Y0dl4AlO5SPltnaotyw/brRI/WtPbW1Vh97IWC4JqLRK5R/sT3Aqo6qhTqi8tubFjRVJoWKLq+LiWkSP5DhNl4TyjPE39ic4ygnjC1SNt0d0NBb4u+qJFgniQsvl0FxqXKvpvrd1TIacmR/M7ZLzBNjWxLjHVYOGOmrz5cWMBDDzsks25x+uEaZktzgjqmjL/v0SxY0EMfOyg34DYLuBGLsaumRzPwCR6u/93IHblc/6G7ruSYcERr5pbcru+QRwIE9lRzDyDX1fKDBI4l4NIXCBO73dGYw8sr8CYeQR+f6FA10CvSoEUfLnGESJq5JgZM6I4o1nTVBXfXR3Og/2HMUp9EkXFKfMW8M4xd4axNA399Yc5p7Jnz+8O3+FP+EYhtGmr99BON/Qrk3DysrEXW4eWQi3KNovDmHYRyCHYWZ9hHKAfWRyGbzHDYYbQGkfkYw9Yr7djooxpmbH0oS+ww2CKOigH+MiCFwRhwMi5xFvKl0lo+vuxcfK1cwhLR0TnuRHQsXzTPTRaWRwPmJAq0EJUsbb1RrIbVAgCwcx0Mml8rhPEiA1UGuLW+U4dlzuqMO62sAyqOJwQ7YF2ScC9lQqFJcDspkIW1vuZNxwRtcjHjwbsFp1eLgcUX0S0i/11ZDVCoMiuht1CPXVoNUqVal0NWouLvjDP8Qq3YwK2egZQTwcC5s6nQQbwQfz8HAo5FBSI6YiNIUsYB5N3amSoQ1HpdhI1QGpk1o4KsVGMYM6AHWSgRS1kWwURlAHnU54DGajZQ+mcAgr4dnodrAFLCW+EicVup1sgUgpFSxFuUCjVCkMdAFFKRIY64L+Bw6BHtKFofJkKPqefxqGNhTm2sh41C4N+ceFwlwc6TJS3du6c6AwV0diRap7WXeNFObsCLgBHRF7z/KP6nYTYw6PkKoVe0/yk7pZzOlVTwNi70X+IdG6/QDB7I2r1wj465PkRajbB1SjO1BA6CcKutvkdfsGex0woY8oQw0Cfh9hD5kg9AwlBwm/r7CXhSL0B2UpNL/PICJCn1AQ5l+Eq1x06FD8ihDInxf+9dU7DcNQeYqXEdqMlNrrqnesgaX4GQE0yizZ+K+s/xr8EvvbRJbiawRSLV10zcqolSigQfG3O4AS0oiLrgsrvRoUxroUpJeg+CIBFS0VFz2uQxHxnasG8Con+pJeTf9lEYdivQan22EkyyiKzxaVkNjlFnHYJcucbnObUERlXly0VMRKiVoiS/HWRVjmy0VzgXcBeSBFL1XdwcjiKz3gxWV+v8pKYmiTR+GCA1HS3I/jQcvmRPPCshvBUj9ZOlGtBVci1da1ll/JmNssofg7r7GlzhLDJF5wKlchli4/lUQsPxUZ7y2AVbbgXpappo+OxTzWfIZfEZJe9SwLv/xeeN6bhCiqhV5xNKnmPI6DfhrHnGtN9OqjKfN8a5B9i4W+U5gUYwyCFGNkV1+O9jLguY3Uwh8B8iOhCFefj46/326OAI0jwfjqG7pBHQkfb37pa/8h/Cf8J/wn/Cf8J/wn/Cf8J/wn/Cf8J/wn/Cf8J/wn/Cf8J/wn/Cf85xmTfAQA"
+ ],
+ "name": "FUD",
+ "symbol": "FUD",
+ "marketCap": "858235.252223350016963688",
+ "price": "0.00000000858235252223",
+ "priceChange24hPercent": "1.32",
+ "volume24h": "1576.5409843159956",
+ "communityRecognized": false,
+ "key": "sui--mainnet:0x76cb819b01abed502bee8a702b4c2d547532c12f25001c9dea795a5e631c26f1::fud::FUD",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Sui",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sui.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sui--mainnet",
+ "address": "0x1ef4c0b20340b8c6a59438204467ca71e1e7cbe918526f9c2c6c5444517cd5ca::chirp::CHIRP",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-onchain/sui--mainnet/tokens/0x1ef4c0b20340b8c6a59438204467ca71e1e7cbe918526f9c2c6c5444517cd5ca::chirp::CHIRP.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-onchain/sui--mainnet/tokens/0x1ef4c0b20340b8c6a59438204467ca71e1e7cbe918526f9c2c6c5444517cd5ca::chirp::CHIRP.png"
+ ],
+ "name": "Chirp Token",
+ "symbol": "CHIRP",
+ "price": "0.00454766668974760772",
+ "priceChange24hPercent": "-9.41",
+ "volume24h": "2363.470077211408",
+ "communityRecognized": true,
+ "key": "sui--mainnet:0x1ef4c0b20340b8c6a59438204467ca71e1e7cbe918526f9c2c6c5444517cd5ca::chirp::CHIRP",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Sui",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sui.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sui--mainnet",
+ "address": "0x04deb377c33bfced1ab81cde96918e2538fe78735777150b0064ccf7df5e1c81::tato::TATO",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/ae1e1edfed1c6895a4972e05cb896e571f9b272ae1dec942da83edad0f94dbd4",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/ae1e1edfed1c6895a4972e05cb896e571f9b272ae1dec942da83edad0f94dbd4"
+ ],
+ "name": "Pawtato",
+ "symbol": "TATO",
+ "marketCap": "3890285.30892192071166272",
+ "price": "0.00389028530892192071",
+ "priceChange24hPercent": "-17.68",
+ "volume24h": "1472.7240418640979",
+ "communityRecognized": false,
+ "key": "sui--mainnet:0x04deb377c33bfced1ab81cde96918e2538fe78735777150b0064ccf7df5e1c81::tato::TATO",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Sui",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sui.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sui--mainnet",
+ "address": "0x41d587e5336f1c86cad50d38a7136db99333bb9bda91cea4ba69115defeb1402::sui_usde::SUI_USDE",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-onchain/sui--mainnet/tokens/0x41d587e5336f1c86cad50d38a7136db99333bb9bda91cea4ba69115defeb1402::sui_usde::SUI_USDE.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-onchain/sui--mainnet/tokens/0x41d587e5336f1c86cad50d38a7136db99333bb9bda91cea4ba69115defeb1402::sui_usde::SUI_USDE.png"
+ ],
+ "name": "eSui Dollar",
+ "symbol": "suiUSDe",
+ "marketCap": "13080284.243158565661478599",
+ "price": "0.99878404669260700389",
+ "priceChange24hPercent": "-0.12",
+ "volume24h": "219303.571929",
+ "communityRecognized": false,
+ "key": "sui--mainnet:0x41d587e5336f1c86cad50d38a7136db99333bb9bda91cea4ba69115defeb1402::sui_usde::SUI_USDE",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Sui",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sui.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sui--mainnet",
+ "address": "0xdeb831e796f16f8257681c0d5d4108fa94333060300b2459133a96631bf470b8::suitrump::SUITRUMP",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-onchain/sui--mainnet/tokens/0xdeb831e796f16f8257681c0d5d4108fa94333060300b2459133a96631bf470b8::suitrump::SUITRUMP.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-onchain/sui--mainnet/tokens/0xdeb831e796f16f8257681c0d5d4108fa94333060300b2459133a96631bf470b8::suitrump::SUITRUMP.png"
+ ],
+ "name": "SUI TRUMP",
+ "symbol": "SUITRUMP",
+ "marketCap": "120480.436235751322821342",
+ "price": "0.00001204804362357513",
+ "priceChange24hPercent": "-0.05",
+ "volume24h": "2800.2999514658579",
+ "communityRecognized": false,
+ "key": "sui--mainnet:0xdeb831e796f16f8257681c0d5d4108fa94333060300b2459133a96631bf470b8::suitrump::SUITRUMP",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Sui",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sui.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sui--mainnet",
+ "address": "0x35169bc93e1fddfcf3a82a9eae726d349689ed59e4b065369af8789fe59f8608::mmt::MMT",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-onchain/sui--mainnet/tokens/0x35169bc93e1fddfcf3a82a9eae726d349689ed59e4b065369af8789fe59f8608::mmt::MMT.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-onchain/sui--mainnet/tokens/0x35169bc93e1fddfcf3a82a9eae726d349689ed59e4b065369af8789fe59f8608::mmt::MMT.png"
+ ],
+ "name": "MMT",
+ "symbol": "MMT",
+ "marketCap": "34672768.243454849205575237",
+ "price": "0.16988508396667849449",
+ "priceChange24hPercent": "1.96",
+ "volume24h": "36171.9156932429238",
+ "communityRecognized": true,
+ "key": "sui--mainnet:0x35169bc93e1fddfcf3a82a9eae726d349689ed59e4b065369af8789fe59f8608::mmt::MMT",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Sui",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sui.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sui--mainnet",
+ "address": "0xb2f40a50fec54e308e69c71271b04a30fc470b1db683dff9e64c752bc1f6384d::coin::COIN",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/05dcd6cc613a756b01c4672aa48d19eb192012c9b514b8445c662393145ffa9d",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/05dcd6cc613a756b01c4672aa48d19eb192012c9b514b8445c662393145ffa9d"
+ ],
+ "name": "Yelay",
+ "symbol": "YLAY",
+ "price": "0.00332105223675389084",
+ "priceChange24hPercent": "0.51",
+ "volume24h": "1309.3629765352053",
+ "communityRecognized": false,
+ "key": "sui--mainnet:0xb2f40a50fec54e308e69c71271b04a30fc470b1db683dff9e64c752bc1f6384d::coin::COIN",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Sui",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sui.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sui--mainnet",
+ "address": "0x32a976482bf4154961bf20bfa3567a80122fdf8e8f8b28d752b609d8640f7846::miu::MIU",
+ "logoUrl": "https://miucoin.io/favicon.ico",
+ "logoUrls": [
+ "https://miucoin.io/favicon.ico"
+ ],
+ "name": "MIU",
+ "symbol": "MIU",
+ "marketCap": "1759614.449419802719106139",
+ "price": "0.00000000195512716602",
+ "priceChange24hPercent": "-0.22",
+ "volume24h": "2739.0617148347229",
+ "communityRecognized": true,
+ "key": "sui--mainnet:0x32a976482bf4154961bf20bfa3567a80122fdf8e8f8b28d752b609d8640f7846::miu::MIU",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Sui",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sui.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sui--mainnet",
+ "address": "0x335c08f644f8ac5fe86f2ed480afac90917812f89c3c092fe8d3265dbb25cc59::suipump::SUIPUMP",
+ "logoUrl": "https://i.imgur.com/CELtWka.jpeg",
+ "logoUrls": [
+ "https://i.imgur.com/CELtWka.jpeg"
+ ],
+ "name": "SERPENT",
+ "symbol": "SERP",
+ "marketCap": "12829.598023170297344076",
+ "price": "0.00001491813723624453",
+ "priceChange24hPercent": "-22.76",
+ "volume24h": "880.6003127227789",
+ "communityRecognized": false,
+ "key": "sui--mainnet:0x335c08f644f8ac5fe86f2ed480afac90917812f89c3c092fe8d3265dbb25cc59::suipump::SUIPUMP",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Sui",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sui.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sui--mainnet",
+ "address": "0x9f854b3ad20f8161ec0886f15f4a1752bf75d22261556f14cc8d3a1c5d50e529::magma::MAGMA",
+ "logoUrl": "https://coin-images.coingecko.com/coins/images/71100/large/magma.png?1765796989",
+ "logoUrls": [
+ "https://coin-images.coingecko.com/coins/images/71100/large/magma.png?1765796989"
+ ],
+ "name": "Magma Token",
+ "symbol": "MAGMA",
+ "marketCap": "240069477.224090492204218893",
+ "price": "0.2400694772240904922",
+ "priceChange24hPercent": "-5.56",
+ "volume24h": "3340111.7716962504039",
+ "communityRecognized": true,
+ "key": "sui--mainnet:0x9f854b3ad20f8161ec0886f15f4a1752bf75d22261556f14cc8d3a1c5d50e529::magma::MAGMA",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Sui",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sui.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sui--mainnet",
+ "address": "0x5d1f47ea69bb0de31c313d7acf89b890dbb8991ea8e03c6c355171f84bb1ba4a::turbos::TURBOS",
+ "logoUrl": "https://uni-test.onekey-asset.com/server-service-onchain/sui--mainnet/tokens/0x5d1f47ea69bb0de31c313d7acf89b890dbb8991ea8e03c6c355171f84bb1ba4a::turbos::TURBOS.png",
+ "logoUrls": [
+ "https://uni-test.onekey-asset.com/server-service-onchain/sui--mainnet/tokens/0x5d1f47ea69bb0de31c313d7acf89b890dbb8991ea8e03c6c355171f84bb1ba4a::turbos::TURBOS.png"
+ ],
+ "name": "Turbos",
+ "symbol": "TURBOS",
+ "marketCap": "1097933.055945639250945092",
+ "price": "0.00010979330559456393",
+ "priceChange24hPercent": "2.47",
+ "volume24h": "2559.4112843402603",
+ "communityRecognized": true,
+ "key": "sui--mainnet:0x5d1f47ea69bb0de31c313d7acf89b890dbb8991ea8e03c6c355171f84bb1ba4a::turbos::TURBOS",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Sui",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sui.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sui--mainnet",
+ "address": "0xf8bfaf1cfefdc539a00e0bc37213c8f339cb411a6b0c4c023ed92f36c68d0fb6::bluwhale_ai::BLUWHALE_AI",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-onchain/sui--mainnet/tokens/0xf8bfaf1cfefdc539a00e0bc37213c8f339cb411a6b0c4c023ed92f36c68d0fb6::bluwhale_ai::BLUWHALE_AI.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-onchain/sui--mainnet/tokens/0xf8bfaf1cfefdc539a00e0bc37213c8f339cb411a6b0c4c023ed92f36c68d0fb6::bluwhale_ai::BLUWHALE_AI.png"
+ ],
+ "name": "Bluwhale AI",
+ "symbol": "BLUAI",
+ "price": "0.01095241776245544669",
+ "priceChange24hPercent": "-10.79",
+ "volume24h": "51106.5696978378788",
+ "communityRecognized": false,
+ "key": "sui--mainnet:0xf8bfaf1cfefdc539a00e0bc37213c8f339cb411a6b0c4c023ed92f36c68d0fb6::bluwhale_ai::BLUWHALE_AI",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Sui",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sui.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sui--mainnet",
+ "address": "0x1a8f4bc33f8ef7fbc851f156857aa65d397a6a6fd27a7ac2ca717b51f2fd9489::alkimi::ALKIMI",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-onchain/sui--mainnet/tokens/0x1a8f4bc33f8ef7fbc851f156857aa65d397a6a6fd27a7ac2ca717b51f2fd9489::alkimi::ALKIMI.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-onchain/sui--mainnet/tokens/0x1a8f4bc33f8ef7fbc851f156857aa65d397a6a6fd27a7ac2ca717b51f2fd9489::alkimi::ALKIMI.png"
+ ],
+ "name": "Alkimi",
+ "symbol": "ALKIMI",
+ "marketCap": "651036.968711831539727253",
+ "price": "0.00065103696871183154",
+ "priceChange24hPercent": "7.44",
+ "volume24h": "1570.0331590012545",
+ "communityRecognized": false,
+ "key": "sui--mainnet:0x1a8f4bc33f8ef7fbc851f156857aa65d397a6a6fd27a7ac2ca717b51f2fd9489::alkimi::ALKIMI",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Sui",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sui.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sui--mainnet",
+ "address": "0x3766e534b5dc6cdb7defd998debf19f72565f4a7b8224e36b050f690b71a8819::boom::BOOM",
+ "logoUrl": "https://ipfs.io/ipfs/bafybeidcrjtdybxdkgxbi55ghmwpkcxkj2gwvzgchqx6ht2xxrqmatnfsi",
+ "logoUrls": [
+ "https://ipfs.io/ipfs/bafybeidcrjtdybxdkgxbi55ghmwpkcxkj2gwvzgchqx6ht2xxrqmatnfsi"
+ ],
+ "name": "Boom Bots AI",
+ "symbol": "BOOM",
+ "marketCap": "35857.214852677736318886",
+ "price": "0.00003585721485267774",
+ "priceChange24hPercent": "6.27",
+ "volume24h": "706.9095430923938",
+ "communityRecognized": false,
+ "key": "sui--mainnet:0x3766e534b5dc6cdb7defd998debf19f72565f4a7b8224e36b050f690b71a8819::boom::BOOM",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Sui",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sui.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "sui--mainnet",
+ "address": "0xf54752c9be1cf8a4c2c590f3c3b05be4fec5b7f726325d51e46919a986555494::usbd::USBD",
+ "logoUrl": "https://arweave.net/uzoJjF81rkPVrkrT3Vf4OzyHQrh3h0JOTz48i0saREM",
+ "logoUrls": [
+ "https://arweave.net/uzoJjF81rkPVrkrT3Vf4OzyHQrh3h0JOTz48i0saREM"
+ ],
+ "name": "USBD",
+ "symbol": "USBD",
+ "marketCap": "10001236.211015193925087459",
+ "price": "1.00012362110151939251",
+ "priceChange24hPercent": "0",
+ "volume24h": "2376",
+ "communityRecognized": false,
+ "key": "sui--mainnet:0xf54752c9be1cf8a4c2c590f3c3b05be4fec5b7f726325d51e46919a986555494::usbd::USBD",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Sui",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/sui.png"
+ }
+ ],
+ "trending|evm--196|5m|all": [
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0xff637d2d435d6745df3faf61272b1216e7e8b727",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/9fc774ca51417bc1bbf6bd03e602e39c5b991c3dee079065d7ce9c06c7da7d64",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/9fc774ca51417bc1bbf6bd03e602e39c5b991c3dee079065d7ce9c06c7da7d64"
+ ],
+ "name": "Wrapped SHEIN xStock",
+ "symbol": "wSHEINx",
+ "marketCap": "9941.072056639699888951",
+ "price": "5.2204262143685951143",
+ "priceChange24hPercent": "-0.09",
+ "volume24h": "531.744141815175594",
+ "communityRecognized": false,
+ "key": "evm--196:0xff637d2d435d6745df3faf61272b1216e7e8b727",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0x90a2a4c76b5d8c0bc892a69ea28aa775a8f2dd48",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/ab5f79fac87972384ec00b70cbf1425ff50db03221af2080d087d63a2a6ecaa4",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/ab5f79fac87972384ec00b70cbf1425ff50db03221af2080d087d63a2a6ecaa4"
+ ],
+ "name": "SP500 xStock",
+ "symbol": "SPYx",
+ "marketCap": "819712532527.486",
+ "price": "770.1950225",
+ "priceChange24hPercent": "-0.05",
+ "volume24h": "822.74752183399451",
+ "communityRecognized": false,
+ "key": "evm--196:0x90a2a4c76b5d8c0bc892a69ea28aa775a8f2dd48",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0xae2f842ef90c0d5213259ab82639d5bbf649b08e",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/bd9738f19f874389dfe2c4479c32384f2f14538182cf1a1be0e349146c7b02fa",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/bd9738f19f874389dfe2c4479c32384f2f14538182cf1a1be0e349146c7b02fa"
+ ],
+ "name": "MicroStrategy xStock",
+ "symbol": "MSTRx",
+ "marketCap": "47161642520",
+ "price": "141.0851625",
+ "priceChange24hPercent": "-0.27",
+ "volume24h": "936.41400451416236",
+ "communityRecognized": false,
+ "key": "evm--196:0xae2f842ef90c0d5213259ab82639d5bbf649b08e",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0x4d0ba049c430a7a80a61e7ebdf50b6daac6c3bd6",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/8ca3e425fcf50782e666099b0bb7d4e4d34cd0c4ff4e11de15e937436ffdd5c6",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/8ca3e425fcf50782e666099b0bb7d4e4d34cd0c4ff4e11de15e937436ffdd5c6"
+ ],
+ "name": "SHEIN xStock",
+ "symbol": "SHEINx",
+ "marketCap": "14505345255.232093",
+ "price": "5.2204262143685951143",
+ "priceChange24hPercent": "-",
+ "volume24h": "1048.006608125403165",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 xStock 代币化发行",
+ "source": "xstock",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/xstock.png",
+ "isOpen": true
+ },
+ "key": "evm--196:0x4d0ba049c430a7a80a61e7ebdf50b6daac6c3bd6",
+ "kind": "stock",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0x12992613fdd35abe95dec5a4964331b1ee23b50d",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/4b23fb99949e84e6442b058824036a6796df1ad762e1435b2e9bf54ec7b26aed",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/4b23fb99949e84e6442b058824036a6796df1ad762e1435b2e9bf54ec7b26aed"
+ ],
+ "name": "Berkshire Hathaway xStock",
+ "symbol": "BRK.Bx",
+ "marketCap": "1090408119220.225",
+ "price": "503.3609",
+ "priceChange24hPercent": "0.37",
+ "volume24h": "500",
+ "communityRecognized": false,
+ "key": "evm--196:0x12992613fdd35abe95dec5a4964331b1ee23b50d",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ }
+ ],
+ "trending|evm--196|1h|all": [
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0x0c9535416fd3b772646c4575e0664fd65afeeeee",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/06d415460409e8d3490a37fdffff10dcae078212668149add6cac2ccc487227d",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/06d415460409e8d3490a37fdffff10dcae078212668149add6cac2ccc487227d"
+ ],
+ "name": "IGNIX",
+ "symbol": "IGNIX",
+ "marketCap": "2050669.850711109531315621",
+ "price": "0.00205066985071110953",
+ "priceChange24hPercent": "-12.69",
+ "volume24h": "7093.94993930115084062",
+ "communityRecognized": false,
+ "key": "evm--196:0x0c9535416fd3b772646c4575e0664fd65afeeeee",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0x68fa48b1c2fe52b3d776e1953e0e782b5044ce28",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/c87a8ce3e8952900ef0a4b64d5f35f964395958d1bd69e7388b453e696cb8f8d",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/c87a8ce3e8952900ef0a4b64d5f35f964395958d1bd69e7388b453e696cb8f8d"
+ ],
+ "name": "SpaceX xStock",
+ "symbol": "SPCXx",
+ "marketCap": "1107304878126",
+ "price": "149.9150225",
+ "priceChange24hPercent": "0.42",
+ "volume24h": "58916.205234392071501334",
+ "communityRecognized": false,
+ "key": "evm--196:0x68fa48b1c2fe52b3d776e1953e0e782b5044ce28",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0x8ad3c73f833d3f9a523ab01476625f269aeb7cf0",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/d20fbce76659b93e5e02cd823afdf5bcac92ba2b71b111deb9ca1fe769ef63d4",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/d20fbce76659b93e5e02cd823afdf5bcac92ba2b71b111deb9ca1fe769ef63d4"
+ ],
+ "name": "Tesla xStock",
+ "symbol": "TSLAx",
+ "marketCap": "1393688637562.962",
+ "price": "356.3350975",
+ "priceChange24hPercent": "0.15",
+ "volume24h": "2443.81930642511568594",
+ "communityRecognized": false,
+ "key": "evm--196:0x8ad3c73f833d3f9a523ab01476625f269aeb7cf0",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0x4fec966f98d8530507787d947d1ab24fa145a999",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/5114ae6a8dd22ff7afd7dc72ba2065ab2dc5914e10df890f2c0971f48049eb1f",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/5114ae6a8dd22ff7afd7dc72ba2065ab2dc5914e10df890f2c0971f48049eb1f"
+ ],
+ "name": "LAIKA Coin",
+ "symbol": "LAIKA",
+ "marketCap": "2972813.068622393815012273",
+ "price": "0.00297281315186116207",
+ "priceChange24hPercent": "-0.63",
+ "volume24h": "1346.97947486758652458",
+ "communityRecognized": false,
+ "key": "evm--196:0x4fec966f98d8530507787d947d1ab24fa145a999",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0xff637d2d435d6745df3faf61272b1216e7e8b727",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/9fc774ca51417bc1bbf6bd03e602e39c5b991c3dee079065d7ce9c06c7da7d64",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/9fc774ca51417bc1bbf6bd03e602e39c5b991c3dee079065d7ce9c06c7da7d64"
+ ],
+ "name": "Wrapped SHEIN xStock",
+ "symbol": "wSHEINx",
+ "marketCap": "9941.072056639699888951",
+ "price": "5.2204262143685951143",
+ "priceChange24hPercent": "0.72",
+ "volume24h": "1799.981682804096366",
+ "communityRecognized": false,
+ "key": "evm--196:0xff637d2d435d6745df3faf61272b1216e7e8b727",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0xf8a80d1cb9cfd70d03d655d9df42339846f3b3c8",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/1e720661a824f8fa58ab89efae4df73c288c398ec4528d3843ac3b7a5448d89b",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/1e720661a824f8fa58ab89efae4df73c288c398ec4528d3843ac3b7a5448d89b"
+ ],
+ "name": "Intel xStock",
+ "symbol": "INTCx",
+ "marketCap": "483659047740.336",
+ "price": "100.6050225",
+ "priceChange24hPercent": "0.55",
+ "volume24h": "857.06949906281404",
+ "communityRecognized": false,
+ "key": "evm--196:0xf8a80d1cb9cfd70d03d655d9df42339846f3b3c8",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0xb63efbc28860c8097e341de1fcf59456161e9d98",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/40d968af1f2303f4272fd4cee6151e7094b40350c2b598d5ce76e20cf90e44d4",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/40d968af1f2303f4272fd4cee6151e7094b40350c2b598d5ce76e20cf90e44d4"
+ ],
+ "name": "Sandisk Corporation xStock",
+ "symbol": "SNDKx",
+ "marketCap": "256808803334.25",
+ "price": "1811.872175",
+ "priceChange24hPercent": "0.57",
+ "volume24h": "657.948325351870651",
+ "communityRecognized": false,
+ "key": "evm--196:0xb63efbc28860c8097e341de1fcf59456161e9d98",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0xf6a873bae4ba1b304e45df52a4b7d176e1c6a8c4",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/b9ac0da769e65f7d17afb241122f9b4dc45269526fe2ae4a010d494d2833c128",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/b9ac0da769e65f7d17afb241122f9b4dc45269526fe2ae4a010d494d2833c128"
+ ],
+ "name": "Micron Technology xStock",
+ "symbol": "MUx",
+ "marketCap": "1146219040390",
+ "price": "1053.540925",
+ "priceChange24hPercent": "0.62",
+ "volume24h": "1260.01167500335472",
+ "communityRecognized": false,
+ "key": "evm--196:0xf6a873bae4ba1b304e45df52a4b7d176e1c6a8c4",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0xae2f842ef90c0d5213259ab82639d5bbf649b08e",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/bd9738f19f874389dfe2c4479c32384f2f14538182cf1a1be0e349146c7b02fa",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/bd9738f19f874389dfe2c4479c32384f2f14538182cf1a1be0e349146c7b02fa"
+ ],
+ "name": "MicroStrategy xStock",
+ "symbol": "MSTRx",
+ "marketCap": "47161642520",
+ "price": "141.0851625",
+ "priceChange24hPercent": "-0.31",
+ "volume24h": "2631.33199461843108",
+ "communityRecognized": false,
+ "key": "evm--196:0xae2f842ef90c0d5213259ab82639d5bbf649b08e",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0x90a2a4c76b5d8c0bc892a69ea28aa775a8f2dd48",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/ab5f79fac87972384ec00b70cbf1425ff50db03221af2080d087d63a2a6ecaa4",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/ab5f79fac87972384ec00b70cbf1425ff50db03221af2080d087d63a2a6ecaa4"
+ ],
+ "name": "SP500 xStock",
+ "symbol": "SPYx",
+ "marketCap": "819712532527.486",
+ "price": "770.1950225",
+ "priceChange24hPercent": "-0.11",
+ "volume24h": "3056.9198524127860877",
+ "communityRecognized": false,
+ "key": "evm--196:0x90a2a4c76b5d8c0bc892a69ea28aa775a8f2dd48",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0xb91b2771554e6a23e2e5e04f926e8757befb1111",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/5334d97a49e68503fbc62629a9272d347e518bb2727f81de4a59a3556484e3ea",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/5334d97a49e68503fbc62629a9272d347e518bb2727f81de4a59a3556484e3ea"
+ ],
+ "name": "Xstocks Index",
+ "symbol": "XSTX",
+ "marketCap": "245681.358174407850698621",
+ "price": "0.00025298512365361515",
+ "priceChange24hPercent": "-9.92",
+ "volume24h": "1493.6236982112120164",
+ "communityRecognized": false,
+ "key": "evm--196:0xb91b2771554e6a23e2e5e04f926e8757befb1111",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0x58100046a4afcd4ee4fadbd4244f3f895a341c56",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/4fd969289568ffbf56842450e095b49af94d061e07a3df17bf9395cf1c78b898",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/4fd969289568ffbf56842450e095b49af94d061e07a3df17bf9395cf1c78b898"
+ ],
+ "name": "SK hynix xStock",
+ "symbol": "SKHYx",
+ "marketCap": "1242473212815.12",
+ "price": "188.030225",
+ "priceChange24hPercent": "0.86",
+ "volume24h": "3760.0717386205864625",
+ "communityRecognized": false,
+ "key": "evm--196:0x58100046a4afcd4ee4fadbd4244f3f895a341c56",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0x4d0ba049c430a7a80a61e7ebdf50b6daac6c3bd6",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/8ca3e425fcf50782e666099b0bb7d4e4d34cd0c4ff4e11de15e937436ffdd5c6",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/8ca3e425fcf50782e666099b0bb7d4e4d34cd0c4ff4e11de15e937436ffdd5c6"
+ ],
+ "name": "SHEIN xStock",
+ "symbol": "SHEINx",
+ "marketCap": "14505345255.232093",
+ "price": "5.2204262143685951143",
+ "priceChange24hPercent": "3.11",
+ "volume24h": "3058.1627948234356405",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 xStock 代币化发行",
+ "source": "xstock",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/xstock.png",
+ "isOpen": true
+ },
+ "key": "evm--196:0x4d0ba049c430a7a80a61e7ebdf50b6daac6c3bd6",
+ "kind": "stock",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0xfebded1b0986a8ee107f5ab1a1c5a813491deceb",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/6e71c4111bb41fb57e0d90d614c3c0e8339ad259da31d58876bc1e4dc0f968d3",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/6e71c4111bb41fb57e0d90d614c3c0e8339ad259da31d58876bc1e4dc0f968d3"
+ ],
+ "name": "Circle xStock",
+ "symbol": "CRCLx",
+ "marketCap": "27201638329.312",
+ "price": "101.665425",
+ "priceChange24hPercent": "-0.38",
+ "volume24h": "4928.817272791304693",
+ "communityRecognized": false,
+ "key": "evm--196:0xfebded1b0986a8ee107f5ab1a1c5a813491deceb",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0xc845b2894dbddd03858fd2d643b4ef725fe0849d",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/c962a251f19235c6d17ad9faab7ae8a2269a67dacdece8b4d65da8a626688ac4",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/c962a251f19235c6d17ad9faab7ae8a2269a67dacdece8b4d65da8a626688ac4"
+ ],
+ "name": "NVIDIA xStock",
+ "symbol": "NVDAx",
+ "marketCap": "5557847544000",
+ "price": "232.80009",
+ "priceChange24hPercent": "0.58",
+ "volume24h": "9300.8601869170154766",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 xStock 代币化发行",
+ "subtitle": "英伟达",
+ "source": "xstock",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/xstock.png",
+ "isOpen": true
+ },
+ "key": "evm--196:0xc845b2894dbddd03858fd2d643b4ef725fe0849d",
+ "kind": "stock",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0xfa15e42c18cf57aeef4b1bac1cee7754af7cfe42",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/5b255d183ca8bf08544874058aec758f5611f62d7baa9a8ae5ec7299f85e5925",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/5b255d183ca8bf08544874058aec758f5611f62d7baa9a8ae5ec7299f85e5925"
+ ],
+ "name": "Tencent xStock",
+ "symbol": "TCENTx",
+ "marketCap": "502936578300.8625061",
+ "price": "56.40899701723985906959",
+ "priceChange24hPercent": "1.04",
+ "volume24h": "32235.64580164172753",
+ "communityRecognized": false,
+ "key": "evm--196:0xfa15e42c18cf57aeef4b1bac1cee7754af7cfe42",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0x9d275685dc284c8eb1c79f6aba7a63dc75ec890a",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/f7766b51eba9fdbfea502dade3edb7d75bd7be4f06d88da48c993803ac207dd1",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/f7766b51eba9fdbfea502dade3edb7d75bd7be4f06d88da48c993803ac207dd1"
+ ],
+ "name": "Apple xStock",
+ "symbol": "AAPLx",
+ "marketCap": "4700614851020",
+ "price": "319.2050825",
+ "priceChange24hPercent": "0",
+ "volume24h": "2100.335162021795222",
+ "communityRecognized": false,
+ "key": "evm--196:0x9d275685dc284c8eb1c79f6aba7a63dc75ec890a",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0x0cc24c51bf89c00c5affbfcf5e856c25ecbdb48e",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/15aefb29f27b6e5d7d418c6b92b3b352e389680196962804a9a8b9fd54a42e65",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/15aefb29f27b6e5d7d418c6b92b3b352e389680196962804a9a8b9fd54a42e65"
+ ],
+ "name": "XDOG",
+ "symbol": "XDOG",
+ "marketCap": "7480555.168651944658385309",
+ "price": "0.00749722661221643887",
+ "priceChange24hPercent": "-3.87",
+ "volume24h": "37002.800725150945529834",
+ "communityRecognized": true,
+ "key": "evm--196:0x0cc24c51bf89c00c5affbfcf5e856c25ecbdb48e",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0xb77d57b65b67b45c89b9626eeeece90adc8ceeee",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/63fe1b3bd826064cefff99d1b9f790f346c4dc61301c9695cd92612e1a758ae5",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/63fe1b3bd826064cefff99d1b9f790f346c4dc61301c9695cd92612e1a758ae5"
+ ],
+ "name": "XLore",
+ "symbol": "XLORE",
+ "marketCap": "25675.519747364235465714",
+ "price": "0.00002567551974736424",
+ "priceChange24hPercent": "-14.51",
+ "volume24h": "574.680890511894724",
+ "communityRecognized": false,
+ "key": "evm--196:0xb77d57b65b67b45c89b9626eeeece90adc8ceeee",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0xeaad46f4146ded5a47b55aa7f6c48c191deaec88",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/9129ae59a1eadcefc57e4314cef2907d779cc0697cb7925e5524868a34919df6",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/9129ae59a1eadcefc57e4314cef2907d779cc0697cb7925e5524868a34919df6"
+ ],
+ "name": "Marvell xStock",
+ "symbol": "MRVLx",
+ "marketCap": "194743209654",
+ "price": "228.750125",
+ "priceChange24hPercent": "0.21",
+ "volume24h": "615.873959",
+ "communityRecognized": false,
+ "key": "evm--196:0xeaad46f4146ded5a47b55aa7f6c48c191deaec88",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0x70bf3e2b75d8832d7f790a87fffc1fa9d63dc5bb",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-onchain/evm--196/tokens/0x70bf3e2b75d8832d7f790a87fffc1fa9d63dc5bb.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-onchain/evm--196/tokens/0x70bf3e2b75d8832d7f790a87fffc1fa9d63dc5bb.png"
+ ],
+ "name": "DOGSHIT",
+ "symbol": "DOGSHIT",
+ "marketCap": "2237067.781213217688276395",
+ "price": "0.0000487548632937951",
+ "priceChange24hPercent": "2.06",
+ "volume24h": "6006.0008482655861934",
+ "communityRecognized": false,
+ "key": "evm--196:0x70bf3e2b75d8832d7f790a87fffc1fa9d63dc5bb",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0xfb4f81f511b40b80996062032260a539e60adfc0",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/8e483e11911b39a3cb2e584c5dea7c0f2c0cccc2b99fb60de60a485a6122c118",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/8e483e11911b39a3cb2e584c5dea7c0f2c0cccc2b99fb60de60a485a6122c118"
+ ],
+ "name": "Xiaomi xStock",
+ "symbol": "XIAOx",
+ "marketCap": "88093136141.41892151",
+ "price": "3.45590358333333333333",
+ "priceChange24hPercent": "1.06",
+ "volume24h": "48380.735753444161289",
+ "communityRecognized": false,
+ "key": "evm--196:0xfb4f81f511b40b80996062032260a539e60adfc0",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0xf86b7a4629b276a9cbf2c04e869ff6273940df0d",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/912ee7862f0e5c0577105c8818ceb6ad8e60d72d8770b32b3c1be112758195c7",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/912ee7862f0e5c0577105c8818ceb6ad8e60d72d8770b32b3c1be112758195c7"
+ ],
+ "name": "X Infinity",
+ "symbol": "Infinity",
+ "marketCap": "25320.493857924392767737",
+ "price": "0.00002532049385792439",
+ "priceChange24hPercent": "138.5",
+ "volume24h": "2963.23530458",
+ "communityRecognized": false,
+ "key": "evm--196:0xf86b7a4629b276a9cbf2c04e869ff6273940df0d",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0x3cfbcebf998a27007326d18cffa5ba9cad041111",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-onchain/evm--196/tokens/0x3cfbcebf998a27007326d18cffa5ba9cad041111.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-onchain/evm--196/tokens/0x3cfbcebf998a27007326d18cffa5ba9cad041111.png"
+ ],
+ "name": "PANGJU",
+ "symbol": "PANGJU",
+ "marketCap": "1058021.776301474865265633",
+ "price": "0.00118278270721894853",
+ "priceChange24hPercent": "2.38",
+ "volume24h": "858.2125648536439",
+ "communityRecognized": false,
+ "key": "evm--196:0x3cfbcebf998a27007326d18cffa5ba9cad041111",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0x6d482cec5f9dd1f05ccee9fd3ff79b246170f8e2",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/d61bfa6be9b8bd77e8bf544df65dded913bd8232a94c5b0c1fa1c408249ba8b2",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/d61bfa6be9b8bd77e8bf544df65dded913bd8232a94c5b0c1fa1c408249ba8b2"
+ ],
+ "name": "Palantir xStock",
+ "symbol": "PLTRx",
+ "marketCap": "400579260410",
+ "price": "174.1653375",
+ "priceChange24hPercent": "0.04",
+ "volume24h": "999.9209",
+ "communityRecognized": false,
+ "key": "evm--196:0x6d482cec5f9dd1f05ccee9fd3ff79b246170f8e2",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0x548308e91ec9f285c7bff05295badbd56a6e4971",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/efe6b0307875bbf4ef200c09455dda858e2aac3eebb73734b85692cb2d3873e4",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/efe6b0307875bbf4ef200c09455dda858e2aac3eebb73734b85692cb2d3873e4"
+ ],
+ "name": "Oracle xStock",
+ "symbol": "ORCLx",
+ "marketCap": "460080190280",
+ "price": "165.2902",
+ "priceChange24hPercent": "0.66",
+ "volume24h": "700.842856",
+ "communityRecognized": false,
+ "key": "evm--196:0x548308e91ec9f285c7bff05295badbd56a6e4971",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0xa753a7395cae905cd615da0b82a53e0560f250af",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/42ad7708d2687a1bf5d184a656106f73dc08b9914b7e48b49ad31e7065dff7ba",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/42ad7708d2687a1bf5d184a656106f73dc08b9914b7e48b49ad31e7065dff7ba"
+ ],
+ "name": "Nasdaq xStock",
+ "symbol": "QQQx",
+ "marketCap": "511222723932.57",
+ "price": "723.1650525",
+ "priceChange24hPercent": "0.14",
+ "volume24h": "2910.400401969685118",
+ "communityRecognized": false,
+ "key": "evm--196:0xa753a7395cae905cd615da0b82a53e0560f250af",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0x3522513e5f146a2006e2901b05f16b2821485e19",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/066cb4195b4adf0e8ba32bfcd644dc4e800bd8389c9adcd62a3e526ea5a3d27f",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/066cb4195b4adf0e8ba32bfcd644dc4e800bd8389c9adcd62a3e526ea5a3d27f"
+ ],
+ "name": "AMD xStock",
+ "symbol": "AMDx",
+ "marketCap": "776576511200",
+ "price": "488.051125",
+ "priceChange24hPercent": "0.31",
+ "volume24h": "585.28064325197003",
+ "communityRecognized": false,
+ "key": "evm--196:0x3522513e5f146a2006e2901b05f16b2821485e19",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0xa49e20536132223d412b656dc3dfbf98303b1111",
+ "logoUrl": "https://static.oklink.com/cdn/web3/currency/token/large/196-0xa49e20536132223d412b656dc3dfbf98303b1111-107/type=default_90_0?v=1788631073037",
+ "logoUrls": [
+ "https://static.oklink.com/cdn/web3/currency/token/large/196-0xa49e20536132223d412b656dc3dfbf98303b1111-107/type=default_90_0?v=1788631073037"
+ ],
+ "name": "MAS",
+ "symbol": "MAS",
+ "marketCap": "146211.06067782257496662",
+ "price": "0.000148420258594152",
+ "priceChange24hPercent": "-7.16",
+ "volume24h": "1055.55483939147777318",
+ "communityRecognized": false,
+ "key": "evm--196:0xa49e20536132223d412b656dc3dfbf98303b1111",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0x3a0a47a9c2713a7049d1052cc8ebd39c41570580",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/fdd4008d93c1eb55a0c7075452b37045f2cab8956865849f173c999003dc91c3",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/fdd4008d93c1eb55a0c7075452b37045f2cab8956865849f173c999003dc91c3"
+ ],
+ "name": "Pop Mart International xStock",
+ "symbol": "POPMTx",
+ "marketCap": "26195642517.61172346",
+ "price": "19.98810943596885588402",
+ "priceChange24hPercent": "-0.53",
+ "volume24h": "12084.021986890094116617",
+ "communityRecognized": false,
+ "key": "evm--196:0x3a0a47a9c2713a7049d1052cc8ebd39c41570580",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0x12992613fdd35abe95dec5a4964331b1ee23b50d",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/4b23fb99949e84e6442b058824036a6796df1ad762e1435b2e9bf54ec7b26aed",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/4b23fb99949e84e6442b058824036a6796df1ad762e1435b2e9bf54ec7b26aed"
+ ],
+ "name": "Berkshire Hathaway xStock",
+ "symbol": "BRK.Bx",
+ "marketCap": "1090408119220.225",
+ "price": "503.3609",
+ "priceChange24hPercent": "0.21",
+ "volume24h": "2497.896168",
+ "communityRecognized": false,
+ "key": "evm--196:0x12992613fdd35abe95dec5a4964331b1ee23b50d",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ }
+ ],
+ "trending|evm--196|4h|all": [
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0x0c9535416fd3b772646c4575e0664fd65afeeeee",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/06d415460409e8d3490a37fdffff10dcae078212668149add6cac2ccc487227d",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/06d415460409e8d3490a37fdffff10dcae078212668149add6cac2ccc487227d"
+ ],
+ "name": "IGNIX",
+ "symbol": "IGNIX",
+ "marketCap": "2050669.850711109531315621",
+ "price": "0.00205066985071110953",
+ "priceChange24hPercent": "15.86",
+ "volume24h": "31463.10312625660707983",
+ "communityRecognized": false,
+ "key": "evm--196:0x0c9535416fd3b772646c4575e0664fd65afeeeee",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0x4fec966f98d8530507787d947d1ab24fa145a999",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/5114ae6a8dd22ff7afd7dc72ba2065ab2dc5914e10df890f2c0971f48049eb1f",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/5114ae6a8dd22ff7afd7dc72ba2065ab2dc5914e10df890f2c0971f48049eb1f"
+ ],
+ "name": "LAIKA Coin",
+ "symbol": "LAIKA",
+ "marketCap": "2972813.068622393815012273",
+ "price": "0.00297281315186116207",
+ "priceChange24hPercent": "-1.1",
+ "volume24h": "14445.790118403620364904",
+ "communityRecognized": false,
+ "key": "evm--196:0x4fec966f98d8530507787d947d1ab24fa145a999",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0xa7dba7be294a4828828b0c4e82ef5f23914b85a4",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/c66df7096574ca1cd5958bde6042d85cd3ab75a5a247b8042f7a3941c3706837",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/c66df7096574ca1cd5958bde6042d85cd3ab75a5a247b8042f7a3941c3706837"
+ ],
+ "name": "XCat",
+ "symbol": "XCat",
+ "marketCap": "34395.76442988127799948",
+ "price": "0.00003439576442988128",
+ "priceChange24hPercent": "43.06",
+ "volume24h": "2369.6950017902879436",
+ "communityRecognized": false,
+ "key": "evm--196:0xa7dba7be294a4828828b0c4e82ef5f23914b85a4",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0xf8a80d1cb9cfd70d03d655d9df42339846f3b3c8",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/1e720661a824f8fa58ab89efae4df73c288c398ec4528d3843ac3b7a5448d89b",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/1e720661a824f8fa58ab89efae4df73c288c398ec4528d3843ac3b7a5448d89b"
+ ],
+ "name": "Intel xStock",
+ "symbol": "INTCx",
+ "marketCap": "483659047740.336",
+ "price": "100.6050225",
+ "priceChange24hPercent": "1.79",
+ "volume24h": "5008.2393205752476",
+ "communityRecognized": false,
+ "key": "evm--196:0xf8a80d1cb9cfd70d03d655d9df42339846f3b3c8",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0x68fa48b1c2fe52b3d776e1953e0e782b5044ce28",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/c87a8ce3e8952900ef0a4b64d5f35f964395958d1bd69e7388b453e696cb8f8d",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/c87a8ce3e8952900ef0a4b64d5f35f964395958d1bd69e7388b453e696cb8f8d"
+ ],
+ "name": "SpaceX xStock",
+ "symbol": "SPCXx",
+ "marketCap": "1107304878126",
+ "price": "149.9150225",
+ "priceChange24hPercent": "0.74",
+ "volume24h": "301712.507367018141043139",
+ "communityRecognized": false,
+ "key": "evm--196:0x68fa48b1c2fe52b3d776e1953e0e782b5044ce28",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0x8ad3c73f833d3f9a523ab01476625f269aeb7cf0",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/d20fbce76659b93e5e02cd823afdf5bcac92ba2b71b111deb9ca1fe769ef63d4",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/d20fbce76659b93e5e02cd823afdf5bcac92ba2b71b111deb9ca1fe769ef63d4"
+ ],
+ "name": "Tesla xStock",
+ "symbol": "TSLAx",
+ "marketCap": "1393688637562.962",
+ "price": "356.3350975",
+ "priceChange24hPercent": "0.46",
+ "volume24h": "10866.55830863558035669",
+ "communityRecognized": false,
+ "key": "evm--196:0x8ad3c73f833d3f9a523ab01476625f269aeb7cf0",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0xfa15e42c18cf57aeef4b1bac1cee7754af7cfe42",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/5b255d183ca8bf08544874058aec758f5611f62d7baa9a8ae5ec7299f85e5925",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/5b255d183ca8bf08544874058aec758f5611f62d7baa9a8ae5ec7299f85e5925"
+ ],
+ "name": "Tencent xStock",
+ "symbol": "TCENTx",
+ "marketCap": "502936578300.8625061",
+ "price": "56.40899701723985906959",
+ "priceChange24hPercent": "-2.16",
+ "volume24h": "97655.023904357693626",
+ "communityRecognized": false,
+ "key": "evm--196:0xfa15e42c18cf57aeef4b1bac1cee7754af7cfe42",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0xff637d2d435d6745df3faf61272b1216e7e8b727",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/9fc774ca51417bc1bbf6bd03e602e39c5b991c3dee079065d7ce9c06c7da7d64",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/9fc774ca51417bc1bbf6bd03e602e39c5b991c3dee079065d7ce9c06c7da7d64"
+ ],
+ "name": "Wrapped SHEIN xStock",
+ "symbol": "wSHEINx",
+ "marketCap": "9941.072056639699888951",
+ "price": "5.2204262143685951143",
+ "priceChange24hPercent": "4.19",
+ "volume24h": "4537.214964230971305",
+ "communityRecognized": false,
+ "key": "evm--196:0xff637d2d435d6745df3faf61272b1216e7e8b727",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0xf6a873bae4ba1b304e45df52a4b7d176e1c6a8c4",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/b9ac0da769e65f7d17afb241122f9b4dc45269526fe2ae4a010d494d2833c128",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/b9ac0da769e65f7d17afb241122f9b4dc45269526fe2ae4a010d494d2833c128"
+ ],
+ "name": "Micron Technology xStock",
+ "symbol": "MUx",
+ "marketCap": "1146219040390",
+ "price": "1053.540925",
+ "priceChange24hPercent": "0.66",
+ "volume24h": "9198.29680700537001",
+ "communityRecognized": false,
+ "key": "evm--196:0xf6a873bae4ba1b304e45df52a4b7d176e1c6a8c4",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0x18a4f9d450f46f9dea99da758b4c29ad620aae93",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/7f955a6a6dee09fb9ac522f8cb7e1a71c93623576fd8adf1a10945361176072b",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/7f955a6a6dee09fb9ac522f8cb7e1a71c93623576fd8adf1a10945361176072b"
+ ],
+ "name": "NVDA RTX STOCKS",
+ "symbol": "RTX",
+ "marketCap": "233108.573806167014996223",
+ "price": "0.0002384584825317207",
+ "priceChange24hPercent": "5.85",
+ "volume24h": "7127.89183853178032445",
+ "communityRecognized": false,
+ "key": "evm--196:0x18a4f9d450f46f9dea99da758b4c29ad620aae93",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0xb63efbc28860c8097e341de1fcf59456161e9d98",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/40d968af1f2303f4272fd4cee6151e7094b40350c2b598d5ce76e20cf90e44d4",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/40d968af1f2303f4272fd4cee6151e7094b40350c2b598d5ce76e20cf90e44d4"
+ ],
+ "name": "Sandisk Corporation xStock",
+ "symbol": "SNDKx",
+ "marketCap": "256808803334.25",
+ "price": "1811.872175",
+ "priceChange24hPercent": "0.44",
+ "volume24h": "4887.389579751027618",
+ "communityRecognized": false,
+ "key": "evm--196:0xb63efbc28860c8097e341de1fcf59456161e9d98",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0xffc2af7ff3dc845ec8324b4bfa0478761b1c3333",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/e197c8a7a314decbaf37781a61fd599c28af10d94a6c939ee8c059c102bdc6e6",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/e197c8a7a314decbaf37781a61fd599c28af10d94a6c939ee8c059c102bdc6e6"
+ ],
+ "name": "HEALTH",
+ "symbol": "HEALTH",
+ "marketCap": "2316624.677718363926565637",
+ "price": "0.22104638055934490577",
+ "priceChange24hPercent": "-3.6",
+ "volume24h": "1024.7075287377942013",
+ "communityRecognized": false,
+ "key": "evm--196:0xffc2af7ff3dc845ec8324b4bfa0478761b1c3333",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0xfb4f81f511b40b80996062032260a539e60adfc0",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/8e483e11911b39a3cb2e584c5dea7c0f2c0cccc2b99fb60de60a485a6122c118",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/8e483e11911b39a3cb2e584c5dea7c0f2c0cccc2b99fb60de60a485a6122c118"
+ ],
+ "name": "Xiaomi xStock",
+ "symbol": "XIAOx",
+ "marketCap": "88093136141.41892151",
+ "price": "3.45590358333333333333",
+ "priceChange24hPercent": "-4.55",
+ "volume24h": "141584.864386319601947",
+ "communityRecognized": false,
+ "key": "evm--196:0xfb4f81f511b40b80996062032260a539e60adfc0",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0xb91b2771554e6a23e2e5e04f926e8757befb1111",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/5334d97a49e68503fbc62629a9272d347e518bb2727f81de4a59a3556484e3ea",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/5334d97a49e68503fbc62629a9272d347e518bb2727f81de4a59a3556484e3ea"
+ ],
+ "name": "Xstocks Index",
+ "symbol": "XSTX",
+ "marketCap": "245681.358174407850698621",
+ "price": "0.00025298512365361515",
+ "priceChange24hPercent": "5.87",
+ "volume24h": "4139.945375219264738993",
+ "communityRecognized": false,
+ "key": "evm--196:0xb91b2771554e6a23e2e5e04f926e8757befb1111",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0x64c1c1a6453abb3ebbfc69e3e8f8e75953abd46a",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/2a61b97559e6415b60fb3da1e39565de846c68f3fbe677b480dc3b26afa18f87",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/2a61b97559e6415b60fb3da1e39565de846c68f3fbe677b480dc3b26afa18f87"
+ ],
+ "name": "Hong Kong Exchanges and Clearing xStock",
+ "symbol": "HKEXCx",
+ "marketCap": "64937846752.11317855",
+ "price": "51.32253065962188",
+ "priceChange24hPercent": "-2.7",
+ "volume24h": "7958.3566984592228615",
+ "communityRecognized": false,
+ "key": "evm--196:0x64c1c1a6453abb3ebbfc69e3e8f8e75953abd46a",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0x381bcca21e3d2e069fb2ba44569c1054cc62eeee",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/6957dac910419a804bcd680faec14c8ccd3c3b64d97e799f1b7876c799dcddc2",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/6957dac910419a804bcd680faec14c8ccd3c3b64d97e799f1b7876c799dcddc2"
+ ],
+ "name": "Starcoin",
+ "symbol": "STARCOIN",
+ "marketCap": "38659.072509209109245114",
+ "price": "0.00003865907250920911",
+ "priceChange24hPercent": "28.72",
+ "volume24h": "612.631117722069565",
+ "communityRecognized": false,
+ "key": "evm--196:0x381bcca21e3d2e069fb2ba44569c1054cc62eeee",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0x12992613fdd35abe95dec5a4964331b1ee23b50d",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/4b23fb99949e84e6442b058824036a6796df1ad762e1435b2e9bf54ec7b26aed",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/4b23fb99949e84e6442b058824036a6796df1ad762e1435b2e9bf54ec7b26aed"
+ ],
+ "name": "Berkshire Hathaway xStock",
+ "symbol": "BRK.Bx",
+ "marketCap": "1090408119220.225",
+ "price": "503.3609",
+ "priceChange24hPercent": "0.01",
+ "volume24h": "8447.737066",
+ "communityRecognized": false,
+ "key": "evm--196:0x12992613fdd35abe95dec5a4964331b1ee23b50d",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0x6c54dd1187bf84b7ed9f786e9eb5d25f0d9beeee",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/4f0a55ec3fc985320a4ce2f2b094eb6d157feb5d6791d1c2f21a6f050c0ea43a",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/4f0a55ec3fc985320a4ce2f2b094eb6d157feb5d6791d1c2f21a6f050c0ea43a"
+ ],
+ "name": "XCAT",
+ "symbol": "XCAT",
+ "marketCap": "49528.407191216687709309",
+ "price": "0.00004952840719121669",
+ "priceChange24hPercent": "23.91",
+ "volume24h": "1620.764385612247398",
+ "communityRecognized": false,
+ "key": "evm--196:0x6c54dd1187bf84b7ed9f786e9eb5d25f0d9beeee",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0xd624079f9062aab098d28a05bad2f19614e6c5ac",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/9afc4a78a26974f2c12e7e5afe1454f7e8746a11cb7183bd944373f4c5aab0bf",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/9afc4a78a26974f2c12e7e5afe1454f7e8746a11cb7183bd944373f4c5aab0bf"
+ ],
+ "name": "GPU",
+ "symbol": "GPU",
+ "marketCap": "78281.636953461080269251",
+ "price": "0.00009236203314283411",
+ "priceChange24hPercent": "10.19",
+ "volume24h": "4984.6063349177487441",
+ "communityRecognized": false,
+ "key": "evm--196:0xd624079f9062aab098d28a05bad2f19614e6c5ac",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0xb77d57b65b67b45c89b9626eeeece90adc8ceeee",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/63fe1b3bd826064cefff99d1b9f790f346c4dc61301c9695cd92612e1a758ae5",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/63fe1b3bd826064cefff99d1b9f790f346c4dc61301c9695cd92612e1a758ae5"
+ ],
+ "name": "XLore",
+ "symbol": "XLORE",
+ "marketCap": "25675.519747364235465714",
+ "price": "0.00002567551974736424",
+ "priceChange24hPercent": "22.24",
+ "volume24h": "2532.681123777232097",
+ "communityRecognized": false,
+ "key": "evm--196:0xb77d57b65b67b45c89b9626eeeece90adc8ceeee",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0xae2f842ef90c0d5213259ab82639d5bbf649b08e",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/bd9738f19f874389dfe2c4479c32384f2f14538182cf1a1be0e349146c7b02fa",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/bd9738f19f874389dfe2c4479c32384f2f14538182cf1a1be0e349146c7b02fa"
+ ],
+ "name": "MicroStrategy xStock",
+ "symbol": "MSTRx",
+ "marketCap": "47161642520",
+ "price": "141.0851625",
+ "priceChange24hPercent": "-0.21",
+ "volume24h": "37277.903419301303279",
+ "communityRecognized": false,
+ "key": "evm--196:0xae2f842ef90c0d5213259ab82639d5bbf649b08e",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0x58100046a4afcd4ee4fadbd4244f3f895a341c56",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/4fd969289568ffbf56842450e095b49af94d061e07a3df17bf9395cf1c78b898",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/4fd969289568ffbf56842450e095b49af94d061e07a3df17bf9395cf1c78b898"
+ ],
+ "name": "SK hynix xStock",
+ "symbol": "SKHYx",
+ "marketCap": "1242473212815.12",
+ "price": "188.030225",
+ "priceChange24hPercent": "2.29",
+ "volume24h": "19409.7491635407219816",
+ "communityRecognized": false,
+ "key": "evm--196:0x58100046a4afcd4ee4fadbd4244f3f895a341c56",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0xfebded1b0986a8ee107f5ab1a1c5a813491deceb",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/6e71c4111bb41fb57e0d90d614c3c0e8339ad259da31d58876bc1e4dc0f968d3",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/6e71c4111bb41fb57e0d90d614c3c0e8339ad259da31d58876bc1e4dc0f968d3"
+ ],
+ "name": "Circle xStock",
+ "symbol": "CRCLx",
+ "marketCap": "27201638329.312",
+ "price": "101.665425",
+ "priceChange24hPercent": "0.17",
+ "volume24h": "27960.705758434175995",
+ "communityRecognized": false,
+ "key": "evm--196:0xfebded1b0986a8ee107f5ab1a1c5a813491deceb",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0x0cc24c51bf89c00c5affbfcf5e856c25ecbdb48e",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/15aefb29f27b6e5d7d418c6b92b3b352e389680196962804a9a8b9fd54a42e65",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/15aefb29f27b6e5d7d418c6b92b3b352e389680196962804a9a8b9fd54a42e65"
+ ],
+ "name": "XDOG",
+ "symbol": "XDOG",
+ "marketCap": "7480555.168651944658385309",
+ "price": "0.00749722661221643887",
+ "priceChange24hPercent": "11.15",
+ "volume24h": "191194.81494395408376627",
+ "communityRecognized": true,
+ "key": "evm--196:0x0cc24c51bf89c00c5affbfcf5e856c25ecbdb48e",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0x6d482cec5f9dd1f05ccee9fd3ff79b246170f8e2",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/d61bfa6be9b8bd77e8bf544df65dded913bd8232a94c5b0c1fa1c408249ba8b2",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/d61bfa6be9b8bd77e8bf544df65dded913bd8232a94c5b0c1fa1c408249ba8b2"
+ ],
+ "name": "Palantir xStock",
+ "symbol": "PLTRx",
+ "marketCap": "400579260410",
+ "price": "174.1653375",
+ "priceChange24hPercent": "-1.25",
+ "volume24h": "44150.51170494693038",
+ "communityRecognized": false,
+ "key": "evm--196:0x6d482cec5f9dd1f05ccee9fd3ff79b246170f8e2",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0x5621737f42dae558b81269fcb9e9e70c19aa6b35",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/595188dee4eab51d28c130b807bf2d62db007ae91da21987b5eb1e20060df698",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/595188dee4eab51d28c130b807bf2d62db007ae91da21987b5eb1e20060df698"
+ ],
+ "name": "Microsoft xStock",
+ "symbol": "MSFTx",
+ "marketCap": "3709121629400",
+ "price": "496.8452325",
+ "priceChange24hPercent": "0.32",
+ "volume24h": "3274.23793831248",
+ "communityRecognized": false,
+ "key": "evm--196:0x5621737f42dae558b81269fcb9e9e70c19aa6b35",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0xc845b2894dbddd03858fd2d643b4ef725fe0849d",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/c962a251f19235c6d17ad9faab7ae8a2269a67dacdece8b4d65da8a626688ac4",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/c962a251f19235c6d17ad9faab7ae8a2269a67dacdece8b4d65da8a626688ac4"
+ ],
+ "name": "NVIDIA xStock",
+ "symbol": "NVDAx",
+ "marketCap": "5557847544000",
+ "price": "232.80009",
+ "priceChange24hPercent": "-",
+ "volume24h": "66402.84203067571686402",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 xStock 代币化发行",
+ "subtitle": "英伟达",
+ "source": "xstock",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/xstock.png",
+ "isOpen": true
+ },
+ "key": "evm--196:0xc845b2894dbddd03858fd2d643b4ef725fe0849d",
+ "kind": "stock",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0x90a2a4c76b5d8c0bc892a69ea28aa775a8f2dd48",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/ab5f79fac87972384ec00b70cbf1425ff50db03221af2080d087d63a2a6ecaa4",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/ab5f79fac87972384ec00b70cbf1425ff50db03221af2080d087d63a2a6ecaa4"
+ ],
+ "name": "SP500 xStock",
+ "symbol": "SPYx",
+ "marketCap": "819712532527.486",
+ "price": "770.1950225",
+ "priceChange24hPercent": "0.12",
+ "volume24h": "12223.09123949621194383",
+ "communityRecognized": false,
+ "key": "evm--196:0x90a2a4c76b5d8c0bc892a69ea28aa775a8f2dd48",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0x41c8044fb5ba79d3032afa660868dfdfa3f17777",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/6722b2d36900b90f026fc221c2e21969fca97e5a99c6134a91156ca0378be984",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/6722b2d36900b90f026fc221c2e21969fca97e5a99c6134a91156ca0378be984"
+ ],
+ "name": "AI Xplosion",
+ "symbol": "X",
+ "marketCap": "3538428.030667218300440461",
+ "price": "0.00596896275652608686",
+ "priceChange24hPercent": "1.11",
+ "volume24h": "1975.23680221046890307",
+ "communityRecognized": false,
+ "key": "evm--196:0x41c8044fb5ba79d3032afa660868dfdfa3f17777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0xeaad46f4146ded5a47b55aa7f6c48c191deaec88",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/9129ae59a1eadcefc57e4314cef2907d779cc0697cb7925e5524868a34919df6",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/9129ae59a1eadcefc57e4314cef2907d779cc0697cb7925e5524868a34919df6"
+ ],
+ "name": "Marvell xStock",
+ "symbol": "MRVLx",
+ "marketCap": "194743209654",
+ "price": "228.750125",
+ "priceChange24hPercent": "0.77",
+ "volume24h": "3773.126704",
+ "communityRecognized": false,
+ "key": "evm--196:0xeaad46f4146ded5a47b55aa7f6c48c191deaec88",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0xe92f673ca36c5e2efd2de7628f815f84807e803f",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/9420336004bb86f7b03b2f1aa63f93b33b1c424465f44445976df384a45b4ccf",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/9420336004bb86f7b03b2f1aa63f93b33b1c424465f44445976df384a45b4ccf"
+ ],
+ "name": "Alphabet xStock",
+ "symbol": "GOOGLx",
+ "marketCap": "4098876173566.626",
+ "price": "338.2051125",
+ "priceChange24hPercent": "0.28",
+ "volume24h": "3491.942915714755734",
+ "communityRecognized": false,
+ "key": "evm--196:0xe92f673ca36c5e2efd2de7628f815f84807e803f",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0xf93de4ef61309ca8bcd0feab0c6f4dd9b2c4eeee",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/64c2e47ff80f1bf64129d2f1adbc694fa9727ad126405abd75aced8e53aef7af",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/64c2e47ff80f1bf64129d2f1adbc694fa9727ad126405abd75aced8e53aef7af"
+ ],
+ "name": "万事ok",
+ "symbol": "万事OK",
+ "marketCap": "38548.235940986557385497",
+ "price": "0.00003854823594098656",
+ "priceChange24hPercent": "13.58",
+ "volume24h": "2542.8747585115702434",
+ "communityRecognized": false,
+ "key": "evm--196:0xf93de4ef61309ca8bcd0feab0c6f4dd9b2c4eeee",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0x96702be57cd9777f835117a809c7124fe4ec989a",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/2b54a3825421e09678281a433260cded6223ed15ce3b5cc88fe2db05f751d08e",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/2b54a3825421e09678281a433260cded6223ed15ce3b5cc88fe2db05f751d08e"
+ ],
+ "name": "Meta xStock",
+ "symbol": "METAx",
+ "marketCap": "1566956441720.43",
+ "price": "613.140435",
+ "priceChange24hPercent": "0.1",
+ "volume24h": "685.264383",
+ "communityRecognized": false,
+ "key": "evm--196:0x96702be57cd9777f835117a809c7124fe4ec989a",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0x3a0a47a9c2713a7049d1052cc8ebd39c41570580",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/fdd4008d93c1eb55a0c7075452b37045f2cab8956865849f173c999003dc91c3",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/fdd4008d93c1eb55a0c7075452b37045f2cab8956865849f173c999003dc91c3"
+ ],
+ "name": "Pop Mart International xStock",
+ "symbol": "POPMTx",
+ "marketCap": "26195642517.61172346",
+ "price": "19.98810943596885588402",
+ "priceChange24hPercent": "0.49",
+ "volume24h": "18304.130419685107491617",
+ "communityRecognized": false,
+ "key": "evm--196:0x3a0a47a9c2713a7049d1052cc8ebd39c41570580",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0x4d0ba049c430a7a80a61e7ebdf50b6daac6c3bd6",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/8ca3e425fcf50782e666099b0bb7d4e4d34cd0c4ff4e11de15e937436ffdd5c6",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/8ca3e425fcf50782e666099b0bb7d4e4d34cd0c4ff4e11de15e937436ffdd5c6"
+ ],
+ "name": "SHEIN xStock",
+ "symbol": "SHEINx",
+ "marketCap": "14505345255.232093",
+ "price": "5.2204262143685951143",
+ "priceChange24hPercent": "-",
+ "volume24h": "6094.478883070576358454",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 xStock 代币化发行",
+ "source": "xstock",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/xstock.png",
+ "isOpen": true
+ },
+ "key": "evm--196:0x4d0ba049c430a7a80a61e7ebdf50b6daac6c3bd6",
+ "kind": "stock",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0xf86b7a4629b276a9cbf2c04e869ff6273940df0d",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/912ee7862f0e5c0577105c8818ceb6ad8e60d72d8770b32b3c1be112758195c7",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/912ee7862f0e5c0577105c8818ceb6ad8e60d72d8770b32b3c1be112758195c7"
+ ],
+ "name": "X Infinity",
+ "symbol": "Infinity",
+ "marketCap": "25320.493857924392767737",
+ "price": "0.00002532049385792439",
+ "priceChange24hPercent": "138.5",
+ "volume24h": "2963.23530458",
+ "communityRecognized": false,
+ "key": "evm--196:0xf86b7a4629b276a9cbf2c04e869ff6273940df0d",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0x9e3bf4ecfc44eedd624f26656b6736a3f093b073",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/c8018122e31e618b053616c4001d7e0b7b3315875db1314eef74350eb4d6c766",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/c8018122e31e618b053616c4001d7e0b7b3315875db1314eef74350eb4d6c766"
+ ],
+ "name": "TSMC xStock",
+ "symbol": "TSMx",
+ "marketCap": "2219554116000",
+ "price": "433.62095",
+ "priceChange24hPercent": "0.73",
+ "volume24h": "1970.918401",
+ "communityRecognized": false,
+ "key": "evm--196:0x9e3bf4ecfc44eedd624f26656b6736a3f093b073",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0x3cfbcebf998a27007326d18cffa5ba9cad041111",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-onchain/evm--196/tokens/0x3cfbcebf998a27007326d18cffa5ba9cad041111.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-onchain/evm--196/tokens/0x3cfbcebf998a27007326d18cffa5ba9cad041111.png"
+ ],
+ "name": "PANGJU",
+ "symbol": "PANGJU",
+ "marketCap": "1058021.776301474865265633",
+ "price": "0.00118278270721894853",
+ "priceChange24hPercent": "2.38",
+ "volume24h": "858.2125648536439",
+ "communityRecognized": false,
+ "key": "evm--196:0x3cfbcebf998a27007326d18cffa5ba9cad041111",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0x2782df1cc877f720c81b4f6568db64563f1d3aa3",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/4ef634bb7afd8d8754c1249d7e1ed5b5d1cc5e522e15b9baf6c2fcd9430af16b",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/4ef634bb7afd8d8754c1249d7e1ed5b5d1cc5e522e15b9baf6c2fcd9430af16b"
+ ],
+ "name": "Dell Technologies Inc. xStock",
+ "symbol": "DELLx",
+ "marketCap": "347171419609.893",
+ "price": "528.9091375",
+ "priceChange24hPercent": "0.36",
+ "volume24h": "2870.80204554770632",
+ "communityRecognized": false,
+ "key": "evm--196:0x2782df1cc877f720c81b4f6568db64563f1d3aa3",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0xa753a7395cae905cd615da0b82a53e0560f250af",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/42ad7708d2687a1bf5d184a656106f73dc08b9914b7e48b49ad31e7065dff7ba",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/42ad7708d2687a1bf5d184a656106f73dc08b9914b7e48b49ad31e7065dff7ba"
+ ],
+ "name": "Nasdaq xStock",
+ "symbol": "QQQx",
+ "marketCap": "511222723932.57",
+ "price": "723.1650525",
+ "priceChange24hPercent": "0.5",
+ "volume24h": "19395.0661425723346795",
+ "communityRecognized": false,
+ "key": "evm--196:0xa753a7395cae905cd615da0b82a53e0560f250af",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0x70bf3e2b75d8832d7f790a87fffc1fa9d63dc5bb",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-onchain/evm--196/tokens/0x70bf3e2b75d8832d7f790a87fffc1fa9d63dc5bb.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-onchain/evm--196/tokens/0x70bf3e2b75d8832d7f790a87fffc1fa9d63dc5bb.png"
+ ],
+ "name": "DOGSHIT",
+ "symbol": "DOGSHIT",
+ "marketCap": "2237067.781213217688276395",
+ "price": "0.0000487548632937951",
+ "priceChange24hPercent": "6.13",
+ "volume24h": "12291.03521250639364416",
+ "communityRecognized": false,
+ "key": "evm--196:0x70bf3e2b75d8832d7f790a87fffc1fa9d63dc5bb",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0x548308e91ec9f285c7bff05295badbd56a6e4971",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/efe6b0307875bbf4ef200c09455dda858e2aac3eebb73734b85692cb2d3873e4",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/efe6b0307875bbf4ef200c09455dda858e2aac3eebb73734b85692cb2d3873e4"
+ ],
+ "name": "Oracle xStock",
+ "symbol": "ORCLx",
+ "marketCap": "460080190280",
+ "price": "165.2902",
+ "priceChange24hPercent": "1.26",
+ "volume24h": "3847.778563",
+ "communityRecognized": false,
+ "key": "evm--196:0x548308e91ec9f285c7bff05295badbd56a6e4971",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0x8fa39ff32b316e2296630aa05bdd6a4a2e4b7598",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/7467b82fba63d95d7b352f81c3e0ea67a04430b870ba0e02aacecb5c85ec220a",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/7467b82fba63d95d7b352f81c3e0ea67a04430b870ba0e02aacecb5c85ec220a"
+ ],
+ "name": "Mixue xStock",
+ "symbol": "MIXUx",
+ "marketCap": "9887015835.259728",
+ "price": "26.082403883391864",
+ "priceChange24hPercent": "0.75",
+ "volume24h": "778.89706989058053",
+ "communityRecognized": false,
+ "key": "evm--196:0x8fa39ff32b316e2296630aa05bdd6a4a2e4b7598",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0xe5f6d3b2405abdfe6f660e63202b25d23763160d",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/c8e7d6a17329a183f305a423a0fbede00933e97270713df33b760d012af42bd0",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/c8e7d6a17329a183f305a423a0fbede00933e97270713df33b760d012af42bd0"
+ ],
+ "name": "Gamestop xStock",
+ "symbol": "GMEx",
+ "marketCap": "8613526060.629",
+ "price": "19.1950375",
+ "priceChange24hPercent": "-0.05",
+ "volume24h": "4695.54794396439546",
+ "communityRecognized": false,
+ "key": "evm--196:0xe5f6d3b2405abdfe6f660e63202b25d23763160d",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0x9d275685dc284c8eb1c79f6aba7a63dc75ec890a",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/f7766b51eba9fdbfea502dade3edb7d75bd7be4f06d88da48c993803ac207dd1",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/f7766b51eba9fdbfea502dade3edb7d75bd7be4f06d88da48c993803ac207dd1"
+ ],
+ "name": "Apple xStock",
+ "symbol": "AAPLx",
+ "marketCap": "4700614851020",
+ "price": "319.2050825",
+ "priceChange24hPercent": "0.12",
+ "volume24h": "6549.674691198778857",
+ "communityRecognized": false,
+ "key": "evm--196:0x9d275685dc284c8eb1c79f6aba7a63dc75ec890a",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0x3522513e5f146a2006e2901b05f16b2821485e19",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/066cb4195b4adf0e8ba32bfcd644dc4e800bd8389c9adcd62a3e526ea5a3d27f",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/066cb4195b4adf0e8ba32bfcd644dc4e800bd8389c9adcd62a3e526ea5a3d27f"
+ ],
+ "name": "AMD xStock",
+ "symbol": "AMDx",
+ "marketCap": "776576511200",
+ "price": "488.051125",
+ "priceChange24hPercent": "1.61",
+ "volume24h": "3257.04672212718187",
+ "communityRecognized": false,
+ "key": "evm--196:0x3522513e5f146a2006e2901b05f16b2821485e19",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0x0024af2ca56e822ad487c0bedc52a82028a55f86",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/b4007beb48f81f8713c6f0e2b8360c048b0396d3d50957cd5e8050b58d5e3264",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/b4007beb48f81f8713c6f0e2b8360c048b0396d3d50957cd5e8050b58d5e3264"
+ ],
+ "name": "Meituan xStock",
+ "symbol": "MEITx",
+ "marketCap": "58206641880.65815776",
+ "price": "10.410520811835679",
+ "priceChange24hPercent": "0.42",
+ "volume24h": "46350.567283630151438",
+ "communityRecognized": false,
+ "key": "evm--196:0x0024af2ca56e822ad487c0bedc52a82028a55f86",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0xc0b417e7f83db438631eb5e096684dd742e5294f",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/1d489b8abd7f01a91100a066bf3c24282552c6f50e89256c76157f1600cf43cc",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/1d489b8abd7f01a91100a066bf3c24282552c6f50e89256c76157f1600cf43cc"
+ ],
+ "name": "ASML xStock",
+ "symbol": "ASMLx",
+ "marketCap": "659384661542.53",
+ "price": "1751.238075",
+ "priceChange24hPercent": "1.36",
+ "volume24h": "3328.758691",
+ "communityRecognized": false,
+ "key": "evm--196:0xc0b417e7f83db438631eb5e096684dd742e5294f",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0xa49e20536132223d412b656dc3dfbf98303b1111",
+ "logoUrl": "https://static.oklink.com/cdn/web3/currency/token/large/196-0xa49e20536132223d412b656dc3dfbf98303b1111-107/type=default_90_0?v=1788631073037",
+ "logoUrls": [
+ "https://static.oklink.com/cdn/web3/currency/token/large/196-0xa49e20536132223d412b656dc3dfbf98303b1111-107/type=default_90_0?v=1788631073037"
+ ],
+ "name": "MAS",
+ "symbol": "MAS",
+ "marketCap": "146211.06067782257496662",
+ "price": "0.000148420258594152",
+ "priceChange24hPercent": "-5.15",
+ "volume24h": "1055.67111171147777318",
+ "communityRecognized": false,
+ "key": "evm--196:0xa49e20536132223d412b656dc3dfbf98303b1111",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0x38bac69cbbd28156796e4163b2b6dcb81e336565",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/3c14283bd16e45b209be014cd676be5a14401be216a73317090043b9d314a368",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/3c14283bd16e45b209be014cd676be5a14401be216a73317090043b9d314a368"
+ ],
+ "name": "Broadcom xStock",
+ "symbol": "AVGOx",
+ "marketCap": "1698651120780",
+ "price": "362.7851375",
+ "priceChange24hPercent": "1.11",
+ "volume24h": "2637.979987",
+ "communityRecognized": false,
+ "key": "evm--196:0x38bac69cbbd28156796e4163b2b6dcb81e336565",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0x364f210f430ec2448fc68a49203040f6124096f0",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/165861d2690f5a62acc1451fc0c6a428ab2e7750b39ff554a57c9ce69e480f40",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/165861d2690f5a62acc1451fc0c6a428ab2e7750b39ff554a57c9ce69e480f40"
+ ],
+ "name": "Coinbase xStock",
+ "symbol": "COINx",
+ "marketCap": "48800870987.904",
+ "price": "183.665725",
+ "priceChange24hPercent": "-0.24",
+ "volume24h": "7654.112180882319801",
+ "communityRecognized": false,
+ "key": "evm--196:0x364f210f430ec2448fc68a49203040f6124096f0",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0xaeb681b69e5094e04d11bcef51a71358a374c3ed",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/dc3c929308c02add1043b5cb331b3d62e5f8ab03cb41543dab6ac16ef307f566",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/dc3c929308c02add1043b5cb331b3d62e5f8ab03cb41543dab6ac16ef307f566"
+ ],
+ "name": "Bitmine xStock",
+ "symbol": "BMNRx",
+ "marketCap": "14220624115.402",
+ "price": "25.200025",
+ "priceChange24hPercent": "-0.01",
+ "volume24h": "3838.483823077631635",
+ "communityRecognized": false,
+ "key": "evm--196:0xaeb681b69e5094e04d11bcef51a71358a374c3ed",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0x00880ec7de7397e4e25ad5fbd69d97db91e90372",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-onchain/evm--196/tokens/0x00880ec7de7397e4e25ad5fbd69d97db91e90372.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-onchain/evm--196/tokens/0x00880ec7de7397e4e25ad5fbd69d97db91e90372.png"
+ ],
+ "name": "欧易人生",
+ "symbol": "欧易人生",
+ "marketCap": "90422.46986929614550427",
+ "price": "0.00009042246986929615",
+ "priceChange24hPercent": "-1.24",
+ "volume24h": "510.04941306250232209",
+ "communityRecognized": false,
+ "key": "evm--196:0x00880ec7de7397e4e25ad5fbd69d97db91e90372",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0xe1385fdd5ffb10081cd52c56584f25efa9084015",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/067e78bb7b4527217818a7e40c19c0f1f19717350e97271f5656c9abade91b43",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/067e78bb7b4527217818a7e40c19c0f1f19717350e97271f5656c9abade91b43"
+ ],
+ "name": "Robinhood xStock",
+ "symbol": "HOODx",
+ "marketCap": "109777950661.5",
+ "price": "122.9851725",
+ "priceChange24hPercent": "-0.14",
+ "volume24h": "6311.49941220160846",
+ "communityRecognized": false,
+ "key": "evm--196:0xe1385fdd5ffb10081cd52c56584f25efa9084015",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0x0361d9e8a923d0fe9b8877d9bc9f38abffb46f74",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/19a7eb01db73949d00e179a0bdd013e9fa6c0faa6ded23dac4e00e4cb9796092",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/19a7eb01db73949d00e179a0bdd013e9fa6c0faa6ded23dac4e00e4cb9796092"
+ ],
+ "name": "Nebius xStock",
+ "symbol": "NBISx",
+ "marketCap": "54070560000",
+ "price": "232.450125",
+ "priceChange24hPercent": "1.32",
+ "volume24h": "1357.145980876937116",
+ "communityRecognized": false,
+ "key": "evm--196:0x0361d9e8a923d0fe9b8877d9bc9f38abffb46f74",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0x3557ba345b01efa20a1bddc61f573bfd87195081",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/c7562b5c972efdf12e909d86d747e213ce40a4d796452f3bb3ac18a626846b5e",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/c7562b5c972efdf12e909d86d747e213ce40a4d796452f3bb3ac18a626846b5e"
+ ],
+ "name": "Amazon.com xStock",
+ "symbol": "AMZNx",
+ "marketCap": "2778537415800",
+ "price": "258.290285",
+ "priceChange24hPercent": "0.45",
+ "volume24h": "525.060415",
+ "communityRecognized": false,
+ "key": "evm--196:0x3557ba345b01efa20a1bddc61f573bfd87195081",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0x5c8a4613fb70f5e685e714fef1f14dee82b88ee0",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/7c19f617e45d5a81d04d2ee8e7d42e9b1095876d0ab3c90c0504c031f5d45d25",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/7c19f617e45d5a81d04d2ee8e7d42e9b1095876d0ab3c90c0504c031f5d45d25"
+ ],
+ "name": "Xlayer Cat",
+ "symbol": "XCAT",
+ "marketCap": "38098.869484026706595522",
+ "price": "0.00003844588604629254",
+ "priceChange24hPercent": "17.42",
+ "volume24h": "1097.376628358678908911",
+ "communityRecognized": false,
+ "key": "evm--196:0x5c8a4613fb70f5e685e714fef1f14dee82b88ee0",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0xdcc1a2699441079da889b1f49e12b69cc791129b",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/8011b1ac08943d66f15ff68caf40cbe99610ddae9549ff3f9055e7e37e349149",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/8011b1ac08943d66f15ff68caf40cbe99610ddae9549ff3f9055e7e37e349149"
+ ],
+ "name": "Coca-Cola xStock",
+ "symbol": "KOx",
+ "marketCap": "379162124808.75",
+ "price": "87.8951125",
+ "priceChange24hPercent": "-0.3",
+ "volume24h": "3150.070797",
+ "communityRecognized": false,
+ "key": "evm--196:0xdcc1a2699441079da889b1f49e12b69cc791129b",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0x17d8186ed8f68059124190d147174d0f6697dc40",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/a51ffba34a1084ded8d12997930eb670516fcd756cb2573fa3433b15987378f2",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/a51ffba34a1084ded8d12997930eb670516fcd756cb2573fa3433b15987378f2"
+ ],
+ "name": "Merck xStock",
+ "symbol": "MRKx",
+ "marketCap": "372883544320",
+ "price": "148.450625",
+ "priceChange24hPercent": "-0.33",
+ "volume24h": "25192.459306",
+ "communityRecognized": false,
+ "key": "evm--196:0x17d8186ed8f68059124190d147174d0f6697dc40",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0xefd30445a4ec1f4b3e0a6f4d9bdbd215f805047f",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/ece3df68db44eceb1e7423a7fb86a9a3970f161632224aa635e64bffe91fe8d2",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/ece3df68db44eceb1e7423a7fb86a9a3970f161632224aa635e64bffe91fe8d2"
+ ],
+ "name": "Moderna xStock",
+ "symbol": "MRNAx",
+ "marketCap": "57557777160",
+ "price": "144.9755375",
+ "priceChange24hPercent": "-",
+ "volume24h": "12657.49475909812456",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 xStock 代币化发行",
+ "subtitle": "莫德纳",
+ "source": "xstock",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/xstock.png",
+ "isOpen": true
+ },
+ "key": "evm--196:0xefd30445a4ec1f4b3e0a6f4d9bdbd215f805047f",
+ "kind": "stock",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0xc80f3ea9516fabde1383cd082cf8ed88587df888",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/0f684026d4a60ca8a0939eafa3e17ddcad83bc7c879e223b5d79b363d25dff0d",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/0f684026d4a60ca8a0939eafa3e17ddcad83bc7c879e223b5d79b363d25dff0d"
+ ],
+ "name": "OEOE",
+ "symbol": "OEOE",
+ "marketCap": "1283613.249589773053397235",
+ "price": "0.0000128498615702151",
+ "priceChange24hPercent": "-2.99",
+ "volume24h": "1692.600538946298840134",
+ "communityRecognized": false,
+ "key": "evm--196:0xc80f3ea9516fabde1383cd082cf8ed88587df888",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0xac2a03492dee554e6d2f3d48a8f0c8db7866eeee",
+ "logoUrl": "https://static.oklink.com/cdn/web3/currency/token/large/196-0xac2a03492dee554e6d2f3d48a8f0c8db7866eeee-107/type=default_90_0?v=1788817257816",
+ "logoUrls": [
+ "https://static.oklink.com/cdn/web3/currency/token/large/196-0xac2a03492dee554e6d2f3d48a8f0c8db7866eeee-107/type=default_90_0?v=1788817257816"
+ ],
+ "name": "xstocks",
+ "symbol": "XSTOCKS",
+ "marketCap": "12801.052736750042860564",
+ "price": "0.00001280105273675004",
+ "priceChange24hPercent": "26.58",
+ "volume24h": "859.14430130687707",
+ "communityRecognized": false,
+ "key": "evm--196:0xac2a03492dee554e6d2f3d48a8f0c8db7866eeee",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0x87669801a1fad6dad9db70d27ac752f452989667",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-onchain/evm--196/tokens/0x87669801a1fad6dad9db70d27ac752f452989667.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-onchain/evm--196/tokens/0x87669801a1fad6dad9db70d27ac752f452989667.png"
+ ],
+ "name": "牛马",
+ "symbol": "NIUMA",
+ "marketCap": "27109.336674980742774547",
+ "price": "0.00002785893036425397",
+ "priceChange24hPercent": "10.81",
+ "volume24h": "584.182956651494878752",
+ "communityRecognized": false,
+ "key": "evm--196:0x87669801a1fad6dad9db70d27ac752f452989667",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0x16d91d1615fc55b76d5f92365bd60c069b46ef78",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-onchain/evm--196/tokens/0x16d91d1615fc55b76d5f92365bd60c069b46ef78.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-onchain/evm--196/tokens/0x16d91d1615fc55b76d5f92365bd60c069b46ef78.png"
+ ],
+ "name": "Banmao",
+ "symbol": "banmao",
+ "marketCap": "28414.687579224636528566",
+ "price": "0.0000284847172880104",
+ "priceChange24hPercent": "15.97",
+ "volume24h": "808.70406039233781015",
+ "communityRecognized": false,
+ "key": "evm--196:0x16d91d1615fc55b76d5f92365bd60c069b46ef78",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0xee64c2d7453acfb3b19f0687c71e7f0a749f69b8",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/d14cd751dbea71ef63a0351e7b86b6aa07ef7f459fd3435dbe7651b047ff3c21",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/d14cd751dbea71ef63a0351e7b86b6aa07ef7f459fd3435dbe7651b047ff3c21"
+ ],
+ "name": "万事OK",
+ "symbol": "万事OK",
+ "marketCap": "104379.16764525734482144",
+ "price": "0.00010437916764525734",
+ "priceChange24hPercent": "11.12",
+ "volume24h": "828.51686489215041075",
+ "communityRecognized": false,
+ "key": "evm--196:0xee64c2d7453acfb3b19f0687c71e7f0a749f69b8",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0x980855ca48b601df572e6877ff908c8bed38bcb5",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/bf00724b949f3f484d223243696968feff0df66ae28492f1ec8ae93295652824",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/bf00724b949f3f484d223243696968feff0df66ae28492f1ec8ae93295652824"
+ ],
+ "name": "OKOX",
+ "symbol": "OKOX",
+ "marketCap": "75946.41383350847163502",
+ "price": "0.00000084983276165868",
+ "priceChange24hPercent": "10.95",
+ "volume24h": "929.2702114712146989",
+ "communityRecognized": false,
+ "key": "evm--196:0x980855ca48b601df572e6877ff908c8bed38bcb5",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ }
+ ],
+ "trending|evm--196|24h|all": [
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0x0c9535416fd3b772646c4575e0664fd65afeeeee",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/06d415460409e8d3490a37fdffff10dcae078212668149add6cac2ccc487227d",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/06d415460409e8d3490a37fdffff10dcae078212668149add6cac2ccc487227d"
+ ],
+ "name": "IGNIX",
+ "symbol": "IGNIX",
+ "marketCap": "2050669.850711109531315621",
+ "price": "0.00205066985071110953",
+ "priceChange24hPercent": "347.74",
+ "volume24h": "325174.178547519804874318",
+ "communityRecognized": false,
+ "key": "evm--196:0x0c9535416fd3b772646c4575e0664fd65afeeeee",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0x4fec966f98d8530507787d947d1ab24fa145a999",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/5114ae6a8dd22ff7afd7dc72ba2065ab2dc5914e10df890f2c0971f48049eb1f",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/5114ae6a8dd22ff7afd7dc72ba2065ab2dc5914e10df890f2c0971f48049eb1f"
+ ],
+ "name": "LAIKA Coin",
+ "symbol": "LAIKA",
+ "marketCap": "2972813.068622393815012273",
+ "price": "0.00297281315186116207",
+ "priceChange24hPercent": "2.94",
+ "volume24h": "88038.244386887014596988",
+ "communityRecognized": false,
+ "key": "evm--196:0x4fec966f98d8530507787d947d1ab24fa145a999",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0xf93de4ef61309ca8bcd0feab0c6f4dd9b2c4eeee",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/64c2e47ff80f1bf64129d2f1adbc694fa9727ad126405abd75aced8e53aef7af",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/64c2e47ff80f1bf64129d2f1adbc694fa9727ad126405abd75aced8e53aef7af"
+ ],
+ "name": "万事ok",
+ "symbol": "万事OK",
+ "marketCap": "38548.235940986557385497",
+ "price": "0.00003854823594098656",
+ "priceChange24hPercent": "511.66",
+ "volume24h": "19578.080176215100635698",
+ "communityRecognized": false,
+ "key": "evm--196:0xf93de4ef61309ca8bcd0feab0c6f4dd9b2c4eeee",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0x8ad3c73f833d3f9a523ab01476625f269aeb7cf0",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/d20fbce76659b93e5e02cd823afdf5bcac92ba2b71b111deb9ca1fe769ef63d4",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/d20fbce76659b93e5e02cd823afdf5bcac92ba2b71b111deb9ca1fe769ef63d4"
+ ],
+ "name": "Tesla xStock",
+ "symbol": "TSLAx",
+ "marketCap": "1393688637562.962",
+ "price": "356.3350975",
+ "priceChange24hPercent": "0.16",
+ "volume24h": "500887.488378147663411809",
+ "communityRecognized": false,
+ "key": "evm--196:0x8ad3c73f833d3f9a523ab01476625f269aeb7cf0",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0x18a4f9d450f46f9dea99da758b4c29ad620aae93",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/7f955a6a6dee09fb9ac522f8cb7e1a71c93623576fd8adf1a10945361176072b",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/7f955a6a6dee09fb9ac522f8cb7e1a71c93623576fd8adf1a10945361176072b"
+ ],
+ "name": "NVDA RTX STOCKS",
+ "symbol": "RTX",
+ "marketCap": "233108.573806167014996223",
+ "price": "0.0002384584825317207",
+ "priceChange24hPercent": "91.23",
+ "volume24h": "106615.252344310812640814",
+ "communityRecognized": false,
+ "key": "evm--196:0x18a4f9d450f46f9dea99da758b4c29ad620aae93",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0x381bcca21e3d2e069fb2ba44569c1054cc62eeee",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/6957dac910419a804bcd680faec14c8ccd3c3b64d97e799f1b7876c799dcddc2",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/6957dac910419a804bcd680faec14c8ccd3c3b64d97e799f1b7876c799dcddc2"
+ ],
+ "name": "Starcoin",
+ "symbol": "STARCOIN",
+ "marketCap": "38659.072509209109245114",
+ "price": "0.00003865907250920911",
+ "priceChange24hPercent": "216.28",
+ "volume24h": "15568.5012262490715965",
+ "communityRecognized": false,
+ "key": "evm--196:0x381bcca21e3d2e069fb2ba44569c1054cc62eeee",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0xffc2af7ff3dc845ec8324b4bfa0478761b1c3333",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/e197c8a7a314decbaf37781a61fd599c28af10d94a6c939ee8c059c102bdc6e6",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/e197c8a7a314decbaf37781a61fd599c28af10d94a6c939ee8c059c102bdc6e6"
+ ],
+ "name": "HEALTH",
+ "symbol": "HEALTH",
+ "marketCap": "2316624.677718363926565637",
+ "price": "0.22104638055934490577",
+ "priceChange24hPercent": "-1.22",
+ "volume24h": "8118.169558467680902",
+ "communityRecognized": false,
+ "key": "evm--196:0xffc2af7ff3dc845ec8324b4bfa0478761b1c3333",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0xb63efbc28860c8097e341de1fcf59456161e9d98",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/40d968af1f2303f4272fd4cee6151e7094b40350c2b598d5ce76e20cf90e44d4",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/40d968af1f2303f4272fd4cee6151e7094b40350c2b598d5ce76e20cf90e44d4"
+ ],
+ "name": "Sandisk Corporation xStock",
+ "symbol": "SNDKx",
+ "marketCap": "256808803334.25",
+ "price": "1811.872175",
+ "priceChange24hPercent": "1.57",
+ "volume24h": "17962.49144300904663616",
+ "communityRecognized": false,
+ "key": "evm--196:0xb63efbc28860c8097e341de1fcf59456161e9d98",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0xf6a873bae4ba1b304e45df52a4b7d176e1c6a8c4",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/b9ac0da769e65f7d17afb241122f9b4dc45269526fe2ae4a010d494d2833c128",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/b9ac0da769e65f7d17afb241122f9b4dc45269526fe2ae4a010d494d2833c128"
+ ],
+ "name": "Micron Technology xStock",
+ "symbol": "MUx",
+ "marketCap": "1146219040390",
+ "price": "1053.540925",
+ "priceChange24hPercent": "1.33",
+ "volume24h": "24458.04364457969268006",
+ "communityRecognized": false,
+ "key": "evm--196:0xf6a873bae4ba1b304e45df52a4b7d176e1c6a8c4",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0xb77d57b65b67b45c89b9626eeeece90adc8ceeee",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/63fe1b3bd826064cefff99d1b9f790f346c4dc61301c9695cd92612e1a758ae5",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/63fe1b3bd826064cefff99d1b9f790f346c4dc61301c9695cd92612e1a758ae5"
+ ],
+ "name": "XLore",
+ "symbol": "XLORE",
+ "marketCap": "25675.519747364235465714",
+ "price": "0.00002567551974736424",
+ "priceChange24hPercent": "272.63",
+ "volume24h": "17264.3205779396823626",
+ "communityRecognized": false,
+ "key": "evm--196:0xb77d57b65b67b45c89b9626eeeece90adc8ceeee",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0xf8a80d1cb9cfd70d03d655d9df42339846f3b3c8",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/1e720661a824f8fa58ab89efae4df73c288c398ec4528d3843ac3b7a5448d89b",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/1e720661a824f8fa58ab89efae4df73c288c398ec4528d3843ac3b7a5448d89b"
+ ],
+ "name": "Intel xStock",
+ "symbol": "INTCx",
+ "marketCap": "483659047740.336",
+ "price": "100.6050225",
+ "priceChange24hPercent": "1.86",
+ "volume24h": "23598.569273599417172",
+ "communityRecognized": false,
+ "key": "evm--196:0xf8a80d1cb9cfd70d03d655d9df42339846f3b3c8",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0xff637d2d435d6745df3faf61272b1216e7e8b727",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/9fc774ca51417bc1bbf6bd03e602e39c5b991c3dee079065d7ce9c06c7da7d64",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/9fc774ca51417bc1bbf6bd03e602e39c5b991c3dee079065d7ce9c06c7da7d64"
+ ],
+ "name": "Wrapped SHEIN xStock",
+ "symbol": "wSHEINx",
+ "marketCap": "9941.072056639699888951",
+ "price": "5.2204262143685951143",
+ "priceChange24hPercent": "4.99",
+ "volume24h": "4578.724498567001715",
+ "communityRecognized": false,
+ "key": "evm--196:0xff637d2d435d6745df3faf61272b1216e7e8b727",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0xb91b2771554e6a23e2e5e04f926e8757befb1111",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/5334d97a49e68503fbc62629a9272d347e518bb2727f81de4a59a3556484e3ea",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/5334d97a49e68503fbc62629a9272d347e518bb2727f81de4a59a3556484e3ea"
+ ],
+ "name": "Xstocks Index",
+ "symbol": "XSTX",
+ "marketCap": "245681.358174407850698621",
+ "price": "0.00025298512365361515",
+ "priceChange24hPercent": "-14.15",
+ "volume24h": "49063.722321914005459813",
+ "communityRecognized": false,
+ "key": "evm--196:0xb91b2771554e6a23e2e5e04f926e8757befb1111",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0x5621737f42dae558b81269fcb9e9e70c19aa6b35",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/595188dee4eab51d28c130b807bf2d62db007ae91da21987b5eb1e20060df698",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/595188dee4eab51d28c130b807bf2d62db007ae91da21987b5eb1e20060df698"
+ ],
+ "name": "Microsoft xStock",
+ "symbol": "MSFTx",
+ "marketCap": "3709121629400",
+ "price": "496.8452325",
+ "priceChange24hPercent": "-0.71",
+ "volume24h": "15938.35204448461",
+ "communityRecognized": false,
+ "key": "evm--196:0x5621737f42dae558b81269fcb9e9e70c19aa6b35",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0xfebded1b0986a8ee107f5ab1a1c5a813491deceb",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/6e71c4111bb41fb57e0d90d614c3c0e8339ad259da31d58876bc1e4dc0f968d3",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/6e71c4111bb41fb57e0d90d614c3c0e8339ad259da31d58876bc1e4dc0f968d3"
+ ],
+ "name": "Circle xStock",
+ "symbol": "CRCLx",
+ "marketCap": "27201638329.312",
+ "price": "101.665425",
+ "priceChange24hPercent": "-2.26",
+ "volume24h": "128379.79137347113549557",
+ "communityRecognized": false,
+ "key": "evm--196:0xfebded1b0986a8ee107f5ab1a1c5a813491deceb",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0x0cc24c51bf89c00c5affbfcf5e856c25ecbdb48e",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/15aefb29f27b6e5d7d418c6b92b3b352e389680196962804a9a8b9fd54a42e65",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/15aefb29f27b6e5d7d418c6b92b3b352e389680196962804a9a8b9fd54a42e65"
+ ],
+ "name": "XDOG",
+ "symbol": "XDOG",
+ "marketCap": "7480555.168651944658385309",
+ "price": "0.00749722661221643887",
+ "priceChange24hPercent": "59.06",
+ "volume24h": "1343561.24558781882064272",
+ "communityRecognized": true,
+ "key": "evm--196:0x0cc24c51bf89c00c5affbfcf5e856c25ecbdb48e",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0xa7dba7be294a4828828b0c4e82ef5f23914b85a4",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/c66df7096574ca1cd5958bde6042d85cd3ab75a5a247b8042f7a3941c3706837",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/c66df7096574ca1cd5958bde6042d85cd3ab75a5a247b8042f7a3941c3706837"
+ ],
+ "name": "XCat",
+ "symbol": "XCat",
+ "marketCap": "34395.76442988127799948",
+ "price": "0.00003439576442988128",
+ "priceChange24hPercent": "129.97",
+ "volume24h": "7870.21798454111584359",
+ "communityRecognized": false,
+ "key": "evm--196:0xa7dba7be294a4828828b0c4e82ef5f23914b85a4",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0xae2f842ef90c0d5213259ab82639d5bbf649b08e",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/bd9738f19f874389dfe2c4479c32384f2f14538182cf1a1be0e349146c7b02fa",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/bd9738f19f874389dfe2c4479c32384f2f14538182cf1a1be0e349146c7b02fa"
+ ],
+ "name": "MicroStrategy xStock",
+ "symbol": "MSTRx",
+ "marketCap": "47161642520",
+ "price": "141.0851625",
+ "priceChange24hPercent": "-2.18",
+ "volume24h": "140520.634269139245817487",
+ "communityRecognized": false,
+ "key": "evm--196:0xae2f842ef90c0d5213259ab82639d5bbf649b08e",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0xfa15e42c18cf57aeef4b1bac1cee7754af7cfe42",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/5b255d183ca8bf08544874058aec758f5611f62d7baa9a8ae5ec7299f85e5925",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/5b255d183ca8bf08544874058aec758f5611f62d7baa9a8ae5ec7299f85e5925"
+ ],
+ "name": "Tencent xStock",
+ "symbol": "TCENTx",
+ "marketCap": "502936578300.8625061",
+ "price": "56.40899701723985906959",
+ "priceChange24hPercent": "0.16",
+ "volume24h": "106635.5525968067297",
+ "communityRecognized": false,
+ "key": "evm--196:0xfa15e42c18cf57aeef4b1bac1cee7754af7cfe42",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0x6c54dd1187bf84b7ed9f786e9eb5d25f0d9beeee",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/4f0a55ec3fc985320a4ce2f2b094eb6d157feb5d6791d1c2f21a6f050c0ea43a",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/4f0a55ec3fc985320a4ce2f2b094eb6d157feb5d6791d1c2f21a6f050c0ea43a"
+ ],
+ "name": "XCAT",
+ "symbol": "XCAT",
+ "marketCap": "49528.407191216687709309",
+ "price": "0.00004952840719121669",
+ "priceChange24hPercent": "389.46",
+ "volume24h": "26436.064684941356598086",
+ "communityRecognized": false,
+ "key": "evm--196:0x6c54dd1187bf84b7ed9f786e9eb5d25f0d9beeee",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0xeaad46f4146ded5a47b55aa7f6c48c191deaec88",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/9129ae59a1eadcefc57e4314cef2907d779cc0697cb7925e5524868a34919df6",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/9129ae59a1eadcefc57e4314cef2907d779cc0697cb7925e5524868a34919df6"
+ ],
+ "name": "Marvell xStock",
+ "symbol": "MRVLx",
+ "marketCap": "194743209654",
+ "price": "228.750125",
+ "priceChange24hPercent": "2.29",
+ "volume24h": "34249.47564289200812",
+ "communityRecognized": false,
+ "key": "evm--196:0xeaad46f4146ded5a47b55aa7f6c48c191deaec88",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0x68fa48b1c2fe52b3d776e1953e0e782b5044ce28",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/c87a8ce3e8952900ef0a4b64d5f35f964395958d1bd69e7388b453e696cb8f8d",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/c87a8ce3e8952900ef0a4b64d5f35f964395958d1bd69e7388b453e696cb8f8d"
+ ],
+ "name": "SpaceX xStock",
+ "symbol": "SPCXx",
+ "marketCap": "1107304878126",
+ "price": "149.9150225",
+ "priceChange24hPercent": "-0.39",
+ "volume24h": "2296529.525074045942079382",
+ "communityRecognized": false,
+ "key": "evm--196:0x68fa48b1c2fe52b3d776e1953e0e782b5044ce28",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0x6d482cec5f9dd1f05ccee9fd3ff79b246170f8e2",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/d61bfa6be9b8bd77e8bf544df65dded913bd8232a94c5b0c1fa1c408249ba8b2",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/d61bfa6be9b8bd77e8bf544df65dded913bd8232a94c5b0c1fa1c408249ba8b2"
+ ],
+ "name": "Palantir xStock",
+ "symbol": "PLTRx",
+ "marketCap": "400579260410",
+ "price": "174.1653375",
+ "priceChange24hPercent": "-1.23",
+ "volume24h": "118426.6464332719456999",
+ "communityRecognized": false,
+ "key": "evm--196:0x6d482cec5f9dd1f05ccee9fd3ff79b246170f8e2",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0x90a2a4c76b5d8c0bc892a69ea28aa775a8f2dd48",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/ab5f79fac87972384ec00b70cbf1425ff50db03221af2080d087d63a2a6ecaa4",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/ab5f79fac87972384ec00b70cbf1425ff50db03221af2080d087d63a2a6ecaa4"
+ ],
+ "name": "SP500 xStock",
+ "symbol": "SPYx",
+ "marketCap": "819712532527.486",
+ "price": "770.1950225",
+ "priceChange24hPercent": "-0.09",
+ "volume24h": "124506.88224886932161741",
+ "communityRecognized": false,
+ "key": "evm--196:0x90a2a4c76b5d8c0bc892a69ea28aa775a8f2dd48",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0x58100046a4afcd4ee4fadbd4244f3f895a341c56",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/4fd969289568ffbf56842450e095b49af94d061e07a3df17bf9395cf1c78b898",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/4fd969289568ffbf56842450e095b49af94d061e07a3df17bf9395cf1c78b898"
+ ],
+ "name": "SK hynix xStock",
+ "symbol": "SKHYx",
+ "marketCap": "1242473212815.12",
+ "price": "188.030225",
+ "priceChange24hPercent": "5.54",
+ "volume24h": "47845.96306419900393384",
+ "communityRecognized": false,
+ "key": "evm--196:0x58100046a4afcd4ee4fadbd4244f3f895a341c56",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0x41c8044fb5ba79d3032afa660868dfdfa3f17777",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/6722b2d36900b90f026fc221c2e21969fca97e5a99c6134a91156ca0378be984",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/6722b2d36900b90f026fc221c2e21969fca97e5a99c6134a91156ca0378be984"
+ ],
+ "name": "AI Xplosion",
+ "symbol": "X",
+ "marketCap": "3538428.030667218300440461",
+ "price": "0.00596896275652608686",
+ "priceChange24hPercent": "2.08",
+ "volume24h": "25357.106857273091561362",
+ "communityRecognized": false,
+ "key": "evm--196:0x41c8044fb5ba79d3032afa660868dfdfa3f17777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0xc845b2894dbddd03858fd2d643b4ef725fe0849d",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/c962a251f19235c6d17ad9faab7ae8a2269a67dacdece8b4d65da8a626688ac4",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/c962a251f19235c6d17ad9faab7ae8a2269a67dacdece8b4d65da8a626688ac4"
+ ],
+ "name": "NVIDIA xStock",
+ "symbol": "NVDAx",
+ "marketCap": "5557847544000",
+ "price": "232.80009",
+ "priceChange24hPercent": "0.58",
+ "volume24h": "758913.054986466743738269",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 xStock 代币化发行",
+ "subtitle": "英伟达",
+ "source": "xstock",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/xstock.png",
+ "isOpen": true
+ },
+ "key": "evm--196:0xc845b2894dbddd03858fd2d643b4ef725fe0849d",
+ "kind": "stock",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0xfb4f81f511b40b80996062032260a539e60adfc0",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/8e483e11911b39a3cb2e584c5dea7c0f2c0cccc2b99fb60de60a485a6122c118",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/8e483e11911b39a3cb2e584c5dea7c0f2c0cccc2b99fb60de60a485a6122c118"
+ ],
+ "name": "Xiaomi xStock",
+ "symbol": "XIAOx",
+ "marketCap": "88093136141.41892151",
+ "price": "3.45590358333333333333",
+ "priceChange24hPercent": "-1.77",
+ "volume24h": "176596.7685971577942348",
+ "communityRecognized": false,
+ "key": "evm--196:0xfb4f81f511b40b80996062032260a539e60adfc0",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0xd624079f9062aab098d28a05bad2f19614e6c5ac",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/9afc4a78a26974f2c12e7e5afe1454f7e8746a11cb7183bd944373f4c5aab0bf",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/9afc4a78a26974f2c12e7e5afe1454f7e8746a11cb7183bd944373f4c5aab0bf"
+ ],
+ "name": "GPU",
+ "symbol": "GPU",
+ "marketCap": "78281.636953461080269251",
+ "price": "0.00009236203314283411",
+ "priceChange24hPercent": "47.59",
+ "volume24h": "25637.353230300948373587",
+ "communityRecognized": false,
+ "key": "evm--196:0xd624079f9062aab098d28a05bad2f19614e6c5ac",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0xe92f673ca36c5e2efd2de7628f815f84807e803f",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/9420336004bb86f7b03b2f1aa63f93b33b1c424465f44445976df384a45b4ccf",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/9420336004bb86f7b03b2f1aa63f93b33b1c424465f44445976df384a45b4ccf"
+ ],
+ "name": "Alphabet xStock",
+ "symbol": "GOOGLx",
+ "marketCap": "4098876173566.626",
+ "price": "338.2051125",
+ "priceChange24hPercent": "-0.1",
+ "volume24h": "24018.864325714755734",
+ "communityRecognized": false,
+ "key": "evm--196:0xe92f673ca36c5e2efd2de7628f815f84807e803f",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0x12992613fdd35abe95dec5a4964331b1ee23b50d",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/4b23fb99949e84e6442b058824036a6796df1ad762e1435b2e9bf54ec7b26aed",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/4b23fb99949e84e6442b058824036a6796df1ad762e1435b2e9bf54ec7b26aed"
+ ],
+ "name": "Berkshire Hathaway xStock",
+ "symbol": "BRK.Bx",
+ "marketCap": "1090408119220.225",
+ "price": "503.3609",
+ "priceChange24hPercent": "-0.81",
+ "volume24h": "26446.7646014565371456",
+ "communityRecognized": false,
+ "key": "evm--196:0x12992613fdd35abe95dec5a4964331b1ee23b50d",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0x548308e91ec9f285c7bff05295badbd56a6e4971",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/efe6b0307875bbf4ef200c09455dda858e2aac3eebb73734b85692cb2d3873e4",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/efe6b0307875bbf4ef200c09455dda858e2aac3eebb73734b85692cb2d3873e4"
+ ],
+ "name": "Oracle xStock",
+ "symbol": "ORCLx",
+ "marketCap": "460080190280",
+ "price": "165.2902",
+ "priceChange24hPercent": "2.33",
+ "volume24h": "19130.665509",
+ "communityRecognized": false,
+ "key": "evm--196:0x548308e91ec9f285c7bff05295badbd56a6e4971",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0x2782df1cc877f720c81b4f6568db64563f1d3aa3",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/4ef634bb7afd8d8754c1249d7e1ed5b5d1cc5e522e15b9baf6c2fcd9430af16b",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/4ef634bb7afd8d8754c1249d7e1ed5b5d1cc5e522e15b9baf6c2fcd9430af16b"
+ ],
+ "name": "Dell Technologies Inc. xStock",
+ "symbol": "DELLx",
+ "marketCap": "347171419609.893",
+ "price": "528.9091375",
+ "priceChange24hPercent": "0.52",
+ "volume24h": "8712.15154254770632",
+ "communityRecognized": false,
+ "key": "evm--196:0x2782df1cc877f720c81b4f6568db64563f1d3aa3",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0x4d0ba049c430a7a80a61e7ebdf50b6daac6c3bd6",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/8ca3e425fcf50782e666099b0bb7d4e4d34cd0c4ff4e11de15e937436ffdd5c6",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/8ca3e425fcf50782e666099b0bb7d4e4d34cd0c4ff4e11de15e937436ffdd5c6"
+ ],
+ "name": "SHEIN xStock",
+ "symbol": "SHEINx",
+ "marketCap": "14505345255.232093",
+ "price": "5.2204262143685951143",
+ "priceChange24hPercent": "3.11",
+ "volume24h": "6674.938302262576358454",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 xStock 代币化发行",
+ "source": "xstock",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/xstock.png",
+ "isOpen": true
+ },
+ "key": "evm--196:0x4d0ba049c430a7a80a61e7ebdf50b6daac6c3bd6",
+ "kind": "stock",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0xf86b7a4629b276a9cbf2c04e869ff6273940df0d",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/912ee7862f0e5c0577105c8818ceb6ad8e60d72d8770b32b3c1be112758195c7",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/912ee7862f0e5c0577105c8818ceb6ad8e60d72d8770b32b3c1be112758195c7"
+ ],
+ "name": "X Infinity",
+ "symbol": "Infinity",
+ "marketCap": "25320.493857924392767737",
+ "price": "0.00002532049385792439",
+ "priceChange24hPercent": "138.5",
+ "volume24h": "2963.23530458",
+ "communityRecognized": false,
+ "key": "evm--196:0xf86b7a4629b276a9cbf2c04e869ff6273940df0d",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0xdadfb355c6110eda0908740d52c834d6c2bcddc7",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/568dbbdfa7b0ed189b88da15b00219e8ec4056d16c9d28af6f666d7da15da737",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/568dbbdfa7b0ed189b88da15b00219e8ec4056d16c9d28af6f666d7da15da737"
+ ],
+ "name": "Russell 2000 xStock",
+ "symbol": "IWMx",
+ "marketCap": "81285109300.551",
+ "price": "295.580075",
+ "priceChange24hPercent": "0.54",
+ "volume24h": "1463.864494",
+ "communityRecognized": false,
+ "key": "evm--196:0xdadfb355c6110eda0908740d52c834d6c2bcddc7",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0x9e3bf4ecfc44eedd624f26656b6736a3f093b073",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/c8018122e31e618b053616c4001d7e0b7b3315875db1314eef74350eb4d6c766",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/c8018122e31e618b053616c4001d7e0b7b3315875db1314eef74350eb4d6c766"
+ ],
+ "name": "TSMC xStock",
+ "symbol": "TSMx",
+ "marketCap": "2219554116000",
+ "price": "433.62095",
+ "priceChange24hPercent": "0.42",
+ "volume24h": "10400.462145586295823",
+ "communityRecognized": false,
+ "key": "evm--196:0x9e3bf4ecfc44eedd624f26656b6736a3f093b073",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0x80a77a372c1e12accda84299492f404902e2da67",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/bcf8b8bb964d87465780296b7d0fe5fd9857eb4e40bbea3f0f41f52fa077f622",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/bcf8b8bb964d87465780296b7d0fe5fd9857eb4e40bbea3f0f41f52fa077f622"
+ ],
+ "name": "McDonald's xStock",
+ "symbol": "MCDx",
+ "marketCap": "181908009156",
+ "price": "255.7355625",
+ "priceChange24hPercent": "-4.88",
+ "volume24h": "22518.2551727312349791",
+ "communityRecognized": false,
+ "key": "evm--196:0x80a77a372c1e12accda84299492f404902e2da67",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0x96702be57cd9777f835117a809c7124fe4ec989a",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/2b54a3825421e09678281a433260cded6223ed15ce3b5cc88fe2db05f751d08e",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/2b54a3825421e09678281a433260cded6223ed15ce3b5cc88fe2db05f751d08e"
+ ],
+ "name": "Meta xStock",
+ "symbol": "METAx",
+ "marketCap": "1566956441720.43",
+ "price": "613.140435",
+ "priceChange24hPercent": "-0.08",
+ "volume24h": "8796.619989",
+ "communityRecognized": false,
+ "key": "evm--196:0x96702be57cd9777f835117a809c7124fe4ec989a",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0xde916b8089cbd5e52551bd933c3ea2ea5c903465",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/031633d93faf43e0b472d54512b88d46fdc1e847186413281db534f1428da671",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/031633d93faf43e0b472d54512b88d46fdc1e847186413281db534f1428da671"
+ ],
+ "name": "Intercontinental Exchange xStock",
+ "symbol": "ICEx",
+ "marketCap": "90664731105",
+ "price": "163.1854125",
+ "priceChange24hPercent": "0",
+ "volume24h": "28797.5142559527890641",
+ "communityRecognized": false,
+ "key": "evm--196:0xde916b8089cbd5e52551bd933c3ea2ea5c903465",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0x3cfbcebf998a27007326d18cffa5ba9cad041111",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-onchain/evm--196/tokens/0x3cfbcebf998a27007326d18cffa5ba9cad041111.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-onchain/evm--196/tokens/0x3cfbcebf998a27007326d18cffa5ba9cad041111.png"
+ ],
+ "name": "PANGJU",
+ "symbol": "PANGJU",
+ "marketCap": "1058021.776301474865265633",
+ "price": "0.00118278270721894853",
+ "priceChange24hPercent": "1.37",
+ "volume24h": "2072.3789887427451996",
+ "communityRecognized": false,
+ "key": "evm--196:0x3cfbcebf998a27007326d18cffa5ba9cad041111",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0xa753a7395cae905cd615da0b82a53e0560f250af",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/42ad7708d2687a1bf5d184a656106f73dc08b9914b7e48b49ad31e7065dff7ba",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/42ad7708d2687a1bf5d184a656106f73dc08b9914b7e48b49ad31e7065dff7ba"
+ ],
+ "name": "Nasdaq xStock",
+ "symbol": "QQQx",
+ "marketCap": "511222723932.57",
+ "price": "723.1650525",
+ "priceChange24hPercent": "0.39",
+ "volume24h": "144124.426661351399708961",
+ "communityRecognized": false,
+ "key": "evm--196:0xa753a7395cae905cd615da0b82a53e0560f250af",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0x70bf3e2b75d8832d7f790a87fffc1fa9d63dc5bb",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-onchain/evm--196/tokens/0x70bf3e2b75d8832d7f790a87fffc1fa9d63dc5bb.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-onchain/evm--196/tokens/0x70bf3e2b75d8832d7f790a87fffc1fa9d63dc5bb.png"
+ ],
+ "name": "DOGSHIT",
+ "symbol": "DOGSHIT",
+ "marketCap": "2237067.781213217688276395",
+ "price": "0.0000487548632937951",
+ "priceChange24hPercent": "8.25",
+ "volume24h": "17661.974070039285232023",
+ "communityRecognized": false,
+ "key": "evm--196:0x70bf3e2b75d8832d7f790a87fffc1fa9d63dc5bb",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0xfa8a6a57fc83e416cf45b04b7b92b4f48da9e7b8",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/70ac3b3367653b286de88b317d8ff48a8356ca5db6d2a60398fa28590d9fad1c",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/70ac3b3367653b286de88b317d8ff48a8356ca5db6d2a60398fa28590d9fad1c"
+ ],
+ "name": "Kuaishou Technology xStock",
+ "symbol": "KUAIx",
+ "marketCap": "18537097923.67330205",
+ "price": "4.301952006705016",
+ "priceChange24hPercent": "0.1",
+ "volume24h": "5793.254660388746136",
+ "communityRecognized": false,
+ "key": "evm--196:0xfa8a6a57fc83e416cf45b04b7b92b4f48da9e7b8",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0x3522513e5f146a2006e2901b05f16b2821485e19",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/066cb4195b4adf0e8ba32bfcd644dc4e800bd8389c9adcd62a3e526ea5a3d27f",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/066cb4195b4adf0e8ba32bfcd644dc4e800bd8389c9adcd62a3e526ea5a3d27f"
+ ],
+ "name": "AMD xStock",
+ "symbol": "AMDx",
+ "marketCap": "776576511200",
+ "price": "488.051125",
+ "priceChange24hPercent": "1.35",
+ "volume24h": "17842.46415932288711804",
+ "communityRecognized": false,
+ "key": "evm--196:0x3522513e5f146a2006e2901b05f16b2821485e19",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0x9d275685dc284c8eb1c79f6aba7a63dc75ec890a",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/f7766b51eba9fdbfea502dade3edb7d75bd7be4f06d88da48c993803ac207dd1",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/f7766b51eba9fdbfea502dade3edb7d75bd7be4f06d88da48c993803ac207dd1"
+ ],
+ "name": "Apple xStock",
+ "symbol": "AAPLx",
+ "marketCap": "4700614851020",
+ "price": "319.2050825",
+ "priceChange24hPercent": "-0.49",
+ "volume24h": "62202.102101037250128705",
+ "communityRecognized": false,
+ "key": "evm--196:0x9d275685dc284c8eb1c79f6aba7a63dc75ec890a",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0x8fa39ff32b316e2296630aa05bdd6a4a2e4b7598",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/7467b82fba63d95d7b352f81c3e0ea67a04430b870ba0e02aacecb5c85ec220a",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/7467b82fba63d95d7b352f81c3e0ea67a04430b870ba0e02aacecb5c85ec220a"
+ ],
+ "name": "Mixue xStock",
+ "symbol": "MIXUx",
+ "marketCap": "9887015835.259728",
+ "price": "26.082403883391864",
+ "priceChange24hPercent": "-1.22",
+ "volume24h": "4887.074588724002603573",
+ "communityRecognized": false,
+ "key": "evm--196:0x8fa39ff32b316e2296630aa05bdd6a4a2e4b7598",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0xa49e20536132223d412b656dc3dfbf98303b1111",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/8028a4b3b054b0457942ab3f94f8a399e769e7481e61146f7d9208c85699a3b2",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/8028a4b3b054b0457942ab3f94f8a399e769e7481e61146f7d9208c85699a3b2"
+ ],
+ "name": "MAS",
+ "symbol": "MAS",
+ "marketCap": "146211.06067782257496662",
+ "price": "0.000148420258594152",
+ "priceChange24hPercent": "-4.19",
+ "volume24h": "1169.39221637973141618",
+ "communityRecognized": false,
+ "key": "evm--196:0xa49e20536132223d412b656dc3dfbf98303b1111",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0xd9913208647671fe0f48f7f260076b2c6f310aac",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/10cbe5f579c8b2677c4cc0e2f415be18e15e117a539541898b3b4a669aaf5fca",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/10cbe5f579c8b2677c4cc0e2f415be18e15e117a539541898b3b4a669aaf5fca"
+ ],
+ "name": "International Business Machines xStock",
+ "symbol": "IBMx",
+ "marketCap": "220937017938",
+ "price": "234.6351625",
+ "priceChange24hPercent": "-0.15",
+ "volume24h": "8347.00035",
+ "communityRecognized": false,
+ "key": "evm--196:0xd9913208647671fe0f48f7f260076b2c6f310aac",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0x64c1c1a6453abb3ebbfc69e3e8f8e75953abd46a",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/2a61b97559e6415b60fb3da1e39565de846c68f3fbe677b480dc3b26afa18f87",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/2a61b97559e6415b60fb3da1e39565de846c68f3fbe677b480dc3b26afa18f87"
+ ],
+ "name": "Hong Kong Exchanges and Clearing xStock",
+ "symbol": "HKEXCx",
+ "marketCap": "64937846752.11317855",
+ "price": "51.32253065962188",
+ "priceChange24hPercent": "-1.46",
+ "volume24h": "18981.76760947851047264",
+ "communityRecognized": false,
+ "key": "evm--196:0x64c1c1a6453abb3ebbfc69e3e8f8e75953abd46a",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0x38bac69cbbd28156796e4163b2b6dcb81e336565",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/3c14283bd16e45b209be014cd676be5a14401be216a73317090043b9d314a368",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/3c14283bd16e45b209be014cd676be5a14401be216a73317090043b9d314a368"
+ ],
+ "name": "Broadcom xStock",
+ "symbol": "AVGOx",
+ "marketCap": "1698651120780",
+ "price": "362.7851375",
+ "priceChange24hPercent": "0.38",
+ "volume24h": "16540.875851",
+ "communityRecognized": false,
+ "key": "evm--196:0x38bac69cbbd28156796e4163b2b6dcb81e336565",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0xc0b417e7f83db438631eb5e096684dd742e5294f",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/1d489b8abd7f01a91100a066bf3c24282552c6f50e89256c76157f1600cf43cc",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/1d489b8abd7f01a91100a066bf3c24282552c6f50e89256c76157f1600cf43cc"
+ ],
+ "name": "ASML xStock",
+ "symbol": "ASMLx",
+ "marketCap": "659384661542.53",
+ "price": "1751.238075",
+ "priceChange24hPercent": "1.69",
+ "volume24h": "9718.831564",
+ "communityRecognized": false,
+ "key": "evm--196:0xc0b417e7f83db438631eb5e096684dd742e5294f",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0x88bead696b4ec24a7490369fcc7f8851c21071de",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-onchain/evm--196/tokens/0x88bead696b4ec24a7490369fcc7f8851c21071de.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-onchain/evm--196/tokens/0x88bead696b4ec24a7490369fcc7f8851c21071de.png"
+ ],
+ "name": "XFist",
+ "symbol": "XFist",
+ "marketCap": "625586.2941931617217913",
+ "price": "0.00074274755849551985",
+ "priceChange24hPercent": "-0.06",
+ "volume24h": "6530.084252472727664198",
+ "communityRecognized": false,
+ "key": "evm--196:0x88bead696b4ec24a7490369fcc7f8851c21071de",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0x3a0a47a9c2713a7049d1052cc8ebd39c41570580",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/fdd4008d93c1eb55a0c7075452b37045f2cab8956865849f173c999003dc91c3",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/fdd4008d93c1eb55a0c7075452b37045f2cab8956865849f173c999003dc91c3"
+ ],
+ "name": "Pop Mart International xStock",
+ "symbol": "POPMTx",
+ "marketCap": "26195642517.61172346",
+ "price": "19.98810943596885588402",
+ "priceChange24hPercent": "-0.35",
+ "volume24h": "39500.046381541135890947",
+ "communityRecognized": false,
+ "key": "evm--196:0x3a0a47a9c2713a7049d1052cc8ebd39c41570580",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0xaeb681b69e5094e04d11bcef51a71358a374c3ed",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/dc3c929308c02add1043b5cb331b3d62e5f8ab03cb41543dab6ac16ef307f566",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/dc3c929308c02add1043b5cb331b3d62e5f8ab03cb41543dab6ac16ef307f566"
+ ],
+ "name": "Bitmine xStock",
+ "symbol": "BMNRx",
+ "marketCap": "14220624115.402",
+ "price": "25.200025",
+ "priceChange24hPercent": "-3.05",
+ "volume24h": "27778.793651588678476",
+ "communityRecognized": false,
+ "key": "evm--196:0xaeb681b69e5094e04d11bcef51a71358a374c3ed",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0xdcc83b32b6b4e95a61951bfcc9d71967515c0fca",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-onchain/evm--196/tokens/0xdcc83b32b6b4e95a61951bfcc9d71967515c0fca.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-onchain/evm--196/tokens/0xdcc83b32b6b4e95a61951bfcc9d71967515c0fca.png"
+ ],
+ "name": "Xwizard",
+ "symbol": "Xwizard",
+ "marketCap": "64373.763754182690661023",
+ "price": "0.00006463261725861246",
+ "priceChange24hPercent": "32.61",
+ "volume24h": "9474.607974786559122612",
+ "communityRecognized": false,
+ "key": "evm--196:0xdcc83b32b6b4e95a61951bfcc9d71967515c0fca",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0x903358faf7c6304afbd560e9e29b12ab1b8fddc5",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-onchain/evm--196/tokens/0x903358faf7c6304afbd560e9e29b12ab1b8fddc5.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-onchain/evm--196/tokens/0x903358faf7c6304afbd560e9e29b12ab1b8fddc5.png"
+ ],
+ "name": "DOG",
+ "symbol": "DOG",
+ "marketCap": "179959.587871729497076434",
+ "price": "0.00000398798741122777",
+ "priceChange24hPercent": "1.09",
+ "volume24h": "1208.054306411747001921",
+ "communityRecognized": false,
+ "key": "evm--196:0x903358faf7c6304afbd560e9e29b12ab1b8fddc5",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0x0361d9e8a923d0fe9b8877d9bc9f38abffb46f74",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/19a7eb01db73949d00e179a0bdd013e9fa6c0faa6ded23dac4e00e4cb9796092",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/19a7eb01db73949d00e179a0bdd013e9fa6c0faa6ded23dac4e00e4cb9796092"
+ ],
+ "name": "Nebius xStock",
+ "symbol": "NBISx",
+ "marketCap": "54070560000",
+ "price": "232.450125",
+ "priceChange24hPercent": "3.72",
+ "volume24h": "6732.56186335874507937",
+ "communityRecognized": false,
+ "key": "evm--196:0x0361d9e8a923d0fe9b8877d9bc9f38abffb46f74",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0xe1385fdd5ffb10081cd52c56584f25efa9084015",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/067e78bb7b4527217818a7e40c19c0f1f19717350e97271f5656c9abade91b43",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/067e78bb7b4527217818a7e40c19c0f1f19717350e97271f5656c9abade91b43"
+ ],
+ "name": "Robinhood xStock",
+ "symbol": "HOODx",
+ "marketCap": "109777950661.5",
+ "price": "122.9851725",
+ "priceChange24hPercent": "-2.65",
+ "volume24h": "36816.330449572533565",
+ "communityRecognized": false,
+ "key": "evm--196:0xe1385fdd5ffb10081cd52c56584f25efa9084015",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0x0024af2ca56e822ad487c0bedc52a82028a55f86",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/b4007beb48f81f8713c6f0e2b8360c048b0396d3d50957cd5e8050b58d5e3264",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/b4007beb48f81f8713c6f0e2b8360c048b0396d3d50957cd5e8050b58d5e3264"
+ ],
+ "name": "Meituan xStock",
+ "symbol": "MEITx",
+ "marketCap": "58206641880.65815776",
+ "price": "10.410520811835679",
+ "priceChange24hPercent": "-0.12",
+ "volume24h": "69602.557482869199485315",
+ "communityRecognized": false,
+ "key": "evm--196:0x0024af2ca56e822ad487c0bedc52a82028a55f86",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0x3557ba345b01efa20a1bddc61f573bfd87195081",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/c7562b5c972efdf12e909d86d747e213ce40a4d796452f3bb3ac18a626846b5e",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/c7562b5c972efdf12e909d86d747e213ce40a4d796452f3bb3ac18a626846b5e"
+ ],
+ "name": "Amazon.com xStock",
+ "symbol": "AMZNx",
+ "marketCap": "2778537415800",
+ "price": "258.290285",
+ "priceChange24hPercent": "-0.02",
+ "volume24h": "24202.636335178423222",
+ "communityRecognized": false,
+ "key": "evm--196:0x3557ba345b01efa20a1bddc61f573bfd87195081",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0xe5f6d3b2405abdfe6f660e63202b25d23763160d",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/c8e7d6a17329a183f305a423a0fbede00933e97270713df33b760d012af42bd0",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/c8e7d6a17329a183f305a423a0fbede00933e97270713df33b760d012af42bd0"
+ ],
+ "name": "Gamestop xStock",
+ "symbol": "GMEx",
+ "marketCap": "8613526060.629",
+ "price": "19.1950375",
+ "priceChange24hPercent": "-0.45",
+ "volume24h": "10398.300817829772659",
+ "communityRecognized": false,
+ "key": "evm--196:0xe5f6d3b2405abdfe6f660e63202b25d23763160d",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0x00880ec7de7397e4e25ad5fbd69d97db91e90372",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-onchain/evm--196/tokens/0x00880ec7de7397e4e25ad5fbd69d97db91e90372.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-onchain/evm--196/tokens/0x00880ec7de7397e4e25ad5fbd69d97db91e90372.png"
+ ],
+ "name": "欧易人生",
+ "symbol": "欧易人生",
+ "marketCap": "90422.46986929614550427",
+ "price": "0.00009042246986929615",
+ "priceChange24hPercent": "24.58",
+ "volume24h": "16435.995203396375607523",
+ "communityRecognized": false,
+ "key": "evm--196:0x00880ec7de7397e4e25ad5fbd69d97db91e90372",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0xfbfc1fd14eec970276c8a3bf5e6131cd751cc0b9",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/497f2721aad80f357bef758c1806cd82b11f20d661c7f4350745936336f14e41",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/497f2721aad80f357bef758c1806cd82b11f20d661c7f4350745936336f14e41"
+ ],
+ "name": "IREN xStock",
+ "symbol": "IRENx",
+ "marketCap": "15840188668.152",
+ "price": "45.32005",
+ "priceChange24hPercent": "3.26",
+ "volume24h": "4709.51406467286356",
+ "communityRecognized": false,
+ "key": "evm--196:0xfbfc1fd14eec970276c8a3bf5e6131cd751cc0b9",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0x5c8a4613fb70f5e685e714fef1f14dee82b88ee0",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/7c19f617e45d5a81d04d2ee8e7d42e9b1095876d0ab3c90c0504c031f5d45d25",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/7c19f617e45d5a81d04d2ee8e7d42e9b1095876d0ab3c90c0504c031f5d45d25"
+ ],
+ "name": "Xlayer Cat",
+ "symbol": "XCAT",
+ "marketCap": "38098.869484026706595522",
+ "price": "0.00003844588604629254",
+ "priceChange24hPercent": "19.73",
+ "volume24h": "6349.197314118286261339",
+ "communityRecognized": false,
+ "key": "evm--196:0x5c8a4613fb70f5e685e714fef1f14dee82b88ee0",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0x364f210f430ec2448fc68a49203040f6124096f0",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/165861d2690f5a62acc1451fc0c6a428ab2e7750b39ff554a57c9ce69e480f40",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/165861d2690f5a62acc1451fc0c6a428ab2e7750b39ff554a57c9ce69e480f40"
+ ],
+ "name": "Coinbase xStock",
+ "symbol": "COINx",
+ "marketCap": "48800870987.904",
+ "price": "183.665725",
+ "priceChange24hPercent": "-1.16",
+ "volume24h": "63074.1956789166306928",
+ "communityRecognized": false,
+ "key": "evm--196:0x364f210f430ec2448fc68a49203040f6124096f0",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0xdcc1a2699441079da889b1f49e12b69cc791129b",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/8011b1ac08943d66f15ff68caf40cbe99610ddae9549ff3f9055e7e37e349149",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/8011b1ac08943d66f15ff68caf40cbe99610ddae9549ff3f9055e7e37e349149"
+ ],
+ "name": "Coca-Cola xStock",
+ "symbol": "KOx",
+ "marketCap": "379162124808.75",
+ "price": "87.8951125",
+ "priceChange24hPercent": "-1.08",
+ "volume24h": "12794.812243",
+ "communityRecognized": false,
+ "key": "evm--196:0xdcc1a2699441079da889b1f49e12b69cc791129b",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0x52ce422d81e62a2c4bb87653d66f2235c73b152e",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/0c226f6df2f05c986e13f692b7873d79de9670a446f6e33166de79e517d463b7",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/0c226f6df2f05c986e13f692b7873d79de9670a446f6e33166de79e517d463b7"
+ ],
+ "name": "Reddit xStock",
+ "symbol": "RDDTx",
+ "marketCap": "29744572388.44",
+ "price": "154.53115",
+ "priceChange24hPercent": "-0.24",
+ "volume24h": "2829.606892236080626464",
+ "communityRecognized": false,
+ "key": "evm--196:0x52ce422d81e62a2c4bb87653d66f2235c73b152e",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0xca8ac5be2743cf964bdbef0e1aa2f128b906f70f",
+ "logoUrl": "https://static.oklink.com/cdn/web3/currency/token/large/196-0xca8ac5be2743cf964bdbef0e1aa2f128b906f70f-107/type=default_90_0?v=1788811664071",
+ "logoUrls": [
+ "https://static.oklink.com/cdn/web3/currency/token/large/196-0xca8ac5be2743cf964bdbef0e1aa2f128b906f70f-107/type=default_90_0?v=1788811664071"
+ ],
+ "name": "StarCoin",
+ "symbol": "StarCoin",
+ "marketCap": "9715.408589437403201311",
+ "price": "0.00001011091476145655",
+ "priceChange24hPercent": "5.8",
+ "volume24h": "1176.618420574696835",
+ "communityRecognized": false,
+ "key": "evm--196:0xca8ac5be2743cf964bdbef0e1aa2f128b906f70f",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0x2852d3037d6cc555fd798a5e6aa2a7893b49eeee",
+ "logoUrl": "https://static.oklink.com/cdn/web3/currency/token/large/196-0x2852d3037d6cc555fd798a5e6aa2a7893b49eeee-107/type=default_90_0?v=1788818155405",
+ "logoUrls": [
+ "https://static.oklink.com/cdn/web3/currency/token/large/196-0x2852d3037d6cc555fd798a5e6aa2a7893b49eeee-107/type=default_90_0?v=1788818155405"
+ ],
+ "name": "星星人",
+ "symbol": "星星人",
+ "marketCap": "11385.699877158866891309",
+ "price": "0.00001138569987715887",
+ "priceChange24hPercent": "150.78",
+ "volume24h": "3952.646546875528556",
+ "communityRecognized": false,
+ "key": "evm--196:0x2852d3037d6cc555fd798a5e6aa2a7893b49eeee",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0x77584b2805a204f56c4b250a6c8d314c713abbbb",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/ad9a30f3d8d04e764ab248c996fb94d0384ef9e42853c1e720bdfb670ae1272a",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/ad9a30f3d8d04e764ab248c996fb94d0384ef9e42853c1e720bdfb670ae1272a"
+ ],
+ "name": "Jacket",
+ "symbol": "JACKET",
+ "marketCap": "16210.869208021211848583",
+ "price": "0.00001621086920802121",
+ "priceChange24hPercent": "120.46",
+ "volume24h": "4722.500893416603136701",
+ "communityRecognized": false,
+ "key": "evm--196:0x77584b2805a204f56c4b250a6c8d314c713abbbb",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0xdec2975ff2f100a6c89132a7a86fbda922af2024",
+ "logoUrl": "https://static.oklink.com/cdn/web3/currency/token/large/196-0xdec2975ff2f100a6c89132a7a86fbda922af2024-107/type=default_90_0?v=1788810878389",
+ "logoUrls": [
+ "https://static.oklink.com/cdn/web3/currency/token/large/196-0xdec2975ff2f100a6c89132a7a86fbda922af2024-107/type=default_90_0?v=1788810878389"
+ ],
+ "name": "xStocks",
+ "symbol": "xStocks",
+ "marketCap": "7889.082576707145007957",
+ "price": "0.00000845563538712872",
+ "priceChange24hPercent": "-0.89",
+ "volume24h": "572.3139372771015066",
+ "communityRecognized": false,
+ "key": "evm--196:0xdec2975ff2f100a6c89132a7a86fbda922af2024",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0x39c31fc6038490ea4bf8a21ca18cd18f33b8d3fb",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/4b4c7dee54480f4936747a023135ea81e5cf071b251058881fbc60403f85a3ba",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/4b4c7dee54480f4936747a023135ea81e5cf071b251058881fbc60403f85a3ba"
+ ],
+ "name": "Super Micro Computer, Inc. xStock",
+ "symbol": "SMCIx",
+ "marketCap": "25576711547",
+ "price": "40.0850625",
+ "priceChange24hPercent": "-1.94",
+ "volume24h": "2338.376685462390486446",
+ "communityRecognized": false,
+ "key": "evm--196:0x39c31fc6038490ea4bf8a21ca18cd18f33b8d3fb",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0x0f24bf9dd317e6eb539b569675032f910667a67e",
+ "logoUrl": "https://static.oklink.com/cdn/web3/currency/token/large/196-0x0f24bf9dd317e6eb539b569675032f910667a67e-107/type=default_90_0?v=1788818147771",
+ "logoUrls": [
+ "https://static.oklink.com/cdn/web3/currency/token/large/196-0x0f24bf9dd317e6eb539b569675032f910667a67e-107/type=default_90_0?v=1788818147771"
+ ],
+ "name": "万事OK",
+ "symbol": "万事OK",
+ "marketCap": "7639.250155164540329255",
+ "price": "0.00000782209020296959",
+ "priceChange24hPercent": "13.96",
+ "volume24h": "1883.12390374460215",
+ "communityRecognized": false,
+ "key": "evm--196:0x0f24bf9dd317e6eb539b569675032f910667a67e",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0x2ac1c6cc718fea1ba859b0c17205b061aa393333",
+ "logoUrl": "https://static.oklink.com/cdn/web3/currency/token/large/196-0x2ac1c6cc718fea1ba859b0c17205b061aa393333-107/type=default_90_0?v=1788816671379",
+ "logoUrls": [
+ "https://static.oklink.com/cdn/web3/currency/token/large/196-0x2ac1c6cc718fea1ba859b0c17205b061aa393333-107/type=default_90_0?v=1788816671379"
+ ],
+ "name": "PLAY",
+ "symbol": "PLAY",
+ "marketCap": "26602.670202176452588741",
+ "price": "0.00002660267020217645",
+ "priceChange24hPercent": "51.3",
+ "volume24h": "4248.16448473995451955",
+ "communityRecognized": false,
+ "key": "evm--196:0x2ac1c6cc718fea1ba859b0c17205b061aa393333",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0x443153a1d062fb1229791377915c7d68040e7777",
+ "logoUrl": "https://static.oklink.com/cdn/web3/currency/token/large/196-0x443153a1d062fb1229791377915c7d68040e7777-107/type=default_90_0?v=1788812875202",
+ "logoUrls": [
+ "https://static.oklink.com/cdn/web3/currency/token/large/196-0x443153a1d062fb1229791377915c7d68040e7777-107/type=default_90_0?v=1788812875202"
+ ],
+ "name": "万事OK",
+ "symbol": "万事OK",
+ "marketCap": "10450.983823174205735866",
+ "price": "0.00001045098382317421",
+ "priceChange24hPercent": "-24.63",
+ "volume24h": "1888.371706991704676444",
+ "communityRecognized": false,
+ "key": "evm--196:0x443153a1d062fb1229791377915c7d68040e7777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0x4b54acf3b4f5642be2a734f4dc3f71661ee9eeee",
+ "logoUrl": "https://static.oklink.com/cdn/web3/currency/token/large/196-0x4b54acf3b4f5642be2a734f4dc3f71661ee9eeee-107/type=default_90_0?v=1788821151301",
+ "logoUrls": [
+ "https://static.oklink.com/cdn/web3/currency/token/large/196-0x4b54acf3b4f5642be2a734f4dc3f71661ee9eeee-107/type=default_90_0?v=1788821151301"
+ ],
+ "name": "RUOK",
+ "symbol": "RUOK",
+ "marketCap": "39235.83914135017880351",
+ "price": "0.00003923583914135018",
+ "priceChange24hPercent": "3.91",
+ "volume24h": "510.2968397279001815",
+ "communityRecognized": false,
+ "key": "evm--196:0x4b54acf3b4f5642be2a734f4dc3f71661ee9eeee",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0xac2a03492dee554e6d2f3d48a8f0c8db7866eeee",
+ "logoUrl": "https://static.oklink.com/cdn/web3/currency/token/large/196-0xac2a03492dee554e6d2f3d48a8f0c8db7866eeee-107/type=default_90_0?v=1788817257816",
+ "logoUrls": [
+ "https://static.oklink.com/cdn/web3/currency/token/large/196-0xac2a03492dee554e6d2f3d48a8f0c8db7866eeee-107/type=default_90_0?v=1788817257816"
+ ],
+ "name": "xstocks",
+ "symbol": "XSTOCKS",
+ "marketCap": "12801.052736750042860564",
+ "price": "0.00001280105273675004",
+ "priceChange24hPercent": "173.65",
+ "volume24h": "9279.797039291647918",
+ "communityRecognized": false,
+ "key": "evm--196:0xac2a03492dee554e6d2f3d48a8f0c8db7866eeee",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0x17d8186ed8f68059124190d147174d0f6697dc40",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/a51ffba34a1084ded8d12997930eb670516fcd756cb2573fa3433b15987378f2",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/a51ffba34a1084ded8d12997930eb670516fcd756cb2573fa3433b15987378f2"
+ ],
+ "name": "Merck xStock",
+ "symbol": "MRKx",
+ "marketCap": "372883544320",
+ "price": "148.450625",
+ "priceChange24hPercent": "1.2",
+ "volume24h": "40556.311375039724248",
+ "communityRecognized": false,
+ "key": "evm--196:0x17d8186ed8f68059124190d147174d0f6697dc40",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0x0f8a6683a166444254d304871af443cb84c6eeee",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/ea842b45aefa5e5877b7c38cb28017b8ddd765b1ee36f8a9e57453a121b3d11e",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/ea842b45aefa5e5877b7c38cb28017b8ddd765b1ee36f8a9e57453a121b3d11e"
+ ],
+ "name": "BODHI",
+ "symbol": "BODHI",
+ "marketCap": "64479.837506727002203208",
+ "price": "0.000064479837506727",
+ "priceChange24hPercent": "38.89",
+ "volume24h": "3471.80394103962896206",
+ "communityRecognized": false,
+ "key": "evm--196:0x0f8a6683a166444254d304871af443cb84c6eeee",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0xe489d8a976c4ba6177489ad6f2b115acd227af6b",
+ "logoUrl": "https://static.oklink.com/cdn/web3/currency/token/large/196-0xe489d8a976c4ba6177489ad6f2b115acd227af6b-107/type=default_90_0?v=1788810878410",
+ "logoUrls": [
+ "https://static.oklink.com/cdn/web3/currency/token/large/196-0xe489d8a976c4ba6177489ad6f2b115acd227af6b-107/type=default_90_0?v=1788810878410"
+ ],
+ "name": "万事OK",
+ "symbol": "万事OK",
+ "marketCap": "9766.214196048241146022",
+ "price": "0.00001032401077840166",
+ "priceChange24hPercent": "69.85",
+ "volume24h": "1039.2076419685854738",
+ "communityRecognized": false,
+ "key": "evm--196:0xe489d8a976c4ba6177489ad6f2b115acd227af6b",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0xfce797247eb4d41b93798f06eafd1b499c38e133",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/8d9f014749325d425dc89b99f520e5da757f98dadf73dee5d8c96cea979c6db0",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/8d9f014749325d425dc89b99f520e5da757f98dadf73dee5d8c96cea979c6db0"
+ ],
+ "name": "3",
+ "symbol": "3",
+ "marketCap": "16579.514281725846208783",
+ "price": "0.00001657951428172585",
+ "priceChange24hPercent": "21.87",
+ "volume24h": "509.588955352188027881",
+ "communityRecognized": false,
+ "key": "evm--196:0xfce797247eb4d41b93798f06eafd1b499c38e133",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0xefd30445a4ec1f4b3e0a6f4d9bdbd215f805047f",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/ece3df68db44eceb1e7423a7fb86a9a3970f161632224aa635e64bffe91fe8d2",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/ece3df68db44eceb1e7423a7fb86a9a3970f161632224aa635e64bffe91fe8d2"
+ ],
+ "name": "Moderna xStock",
+ "symbol": "MRNAx",
+ "marketCap": "57557777160",
+ "price": "144.9755375",
+ "priceChange24hPercent": "-0.02",
+ "volume24h": "26470.4860006230798426",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 xStock 代币化发行",
+ "subtitle": "莫德纳",
+ "source": "xstock",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/xstock.png",
+ "isOpen": true
+ },
+ "key": "evm--196:0xefd30445a4ec1f4b3e0a6f4d9bdbd215f805047f",
+ "kind": "stock",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0x76a9ccfc8fc493e27ad570c955ba9e046591115c",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/c5cee4fd5bc37532a2459b350c53297d61e9f59cf2fea7045f05f8682d764d4d",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/c5cee4fd5bc37532a2459b350c53297d61e9f59cf2fea7045f05f8682d764d4d"
+ ],
+ "name": "Star",
+ "symbol": "Star",
+ "marketCap": "57096.322236815782955526",
+ "price": "0.00019032107539152645",
+ "priceChange24hPercent": "26.25",
+ "volume24h": "8781.9552755188342401",
+ "communityRecognized": false,
+ "key": "evm--196:0x76a9ccfc8fc493e27ad570c955ba9e046591115c",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0xee64c2d7453acfb3b19f0687c71e7f0a749f69b8",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/d14cd751dbea71ef63a0351e7b86b6aa07ef7f459fd3435dbe7651b047ff3c21",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/d14cd751dbea71ef63a0351e7b86b6aa07ef7f459fd3435dbe7651b047ff3c21"
+ ],
+ "name": "万事OK",
+ "symbol": "万事OK",
+ "marketCap": "104379.16764525734482144",
+ "price": "0.00010437916764525734",
+ "priceChange24hPercent": "31.06",
+ "volume24h": "9134.109337208058494407",
+ "communityRecognized": false,
+ "key": "evm--196:0xee64c2d7453acfb3b19f0687c71e7f0a749f69b8",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0xc80f3ea9516fabde1383cd082cf8ed88587df888",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/0f684026d4a60ca8a0939eafa3e17ddcad83bc7c879e223b5d79b363d25dff0d",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/0f684026d4a60ca8a0939eafa3e17ddcad83bc7c879e223b5d79b363d25dff0d"
+ ],
+ "name": "OEOE",
+ "symbol": "OEOE",
+ "marketCap": "1283613.249589773053397235",
+ "price": "0.0000128498615702151",
+ "priceChange24hPercent": "0.79",
+ "volume24h": "14358.605401480039266273",
+ "communityRecognized": false,
+ "key": "evm--196:0xc80f3ea9516fabde1383cd082cf8ed88587df888",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0x980855ca48b601df572e6877ff908c8bed38bcb5",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/bf00724b949f3f484d223243696968feff0df66ae28492f1ec8ae93295652824",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/bf00724b949f3f484d223243696968feff0df66ae28492f1ec8ae93295652824"
+ ],
+ "name": "OKOX",
+ "symbol": "OKOX",
+ "marketCap": "75946.41383350847163502",
+ "price": "0.00000084983276165868",
+ "priceChange24hPercent": "30.04",
+ "volume24h": "23361.511708988277766311",
+ "communityRecognized": false,
+ "key": "evm--196:0x980855ca48b601df572e6877ff908c8bed38bcb5",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0x19abc302ac083925a52c2d5f394dc85fce35f89e",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/3fb16ed12f41a2204a82f2d5de7e7633b3cae0b39c075271dfb467032a23e233",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/3fb16ed12f41a2204a82f2d5de7e7633b3cae0b39c075271dfb467032a23e233"
+ ],
+ "name": "招财",
+ "symbol": "招财",
+ "marketCap": "22492.848779139542876682",
+ "price": "0.00002249284877913954",
+ "priceChange24hPercent": "41.14",
+ "volume24h": "2764.061787163312301",
+ "communityRecognized": false,
+ "key": "evm--196:0x19abc302ac083925a52c2d5f394dc85fce35f89e",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0xbd2da32a6049b90e9baff4329e1ffe17e4a19b59",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/9d0b4ffd81a9e19a1bfc80ca3b049521ce33bfc428bb7fefec0e4ec1a1fd36ea",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/9d0b4ffd81a9e19a1bfc80ca3b049521ce33bfc428bb7fefec0e4ec1a1fd36ea"
+ ],
+ "name": "ICEBULL",
+ "symbol": "ICEBULL",
+ "marketCap": "32218.860461398849234395",
+ "price": "0.00003308719064409835",
+ "priceChange24hPercent": "125.49",
+ "volume24h": "9728.0302752244643872",
+ "communityRecognized": false,
+ "key": "evm--196:0xbd2da32a6049b90e9baff4329e1ffe17e4a19b59",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0xb899567d73ed11b0234926735ac8eb8b6668eeee",
+ "logoUrl": "https://static.oklink.com/cdn/web3/currency/token/large/196-0xb899567d73ed11b0234926735ac8eb8b6668eeee-107/type=default_90_0?v=1788816872456",
+ "logoUrls": [
+ "https://static.oklink.com/cdn/web3/currency/token/large/196-0xb899567d73ed11b0234926735ac8eb8b6668eeee-107/type=default_90_0?v=1788816872456"
+ ],
+ "name": "eeeee",
+ "symbol": "EEEEE",
+ "marketCap": "3260.375188929308289466",
+ "price": "0.00000326037518892931",
+ "priceChange24hPercent": "73.89",
+ "volume24h": "1934.0169103005732721",
+ "communityRecognized": false,
+ "key": "evm--196:0xb899567d73ed11b0234926735ac8eb8b6668eeee",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0xa413c00935f17abca771e39a73240a8df9aa7ea4",
+ "logoUrl": "https://static.oklink.com/cdn/web3/currency/token/large/196-0xa413c00935f17abca771e39a73240a8df9aa7ea4-107/type=default_90_0?v=1788817468126",
+ "logoUrls": [
+ "https://static.oklink.com/cdn/web3/currency/token/large/196-0xa413c00935f17abca771e39a73240a8df9aa7ea4-107/type=default_90_0?v=1788817468126"
+ ],
+ "name": "星星人",
+ "symbol": "星星人",
+ "marketCap": "17998.118517358218835941",
+ "price": "0.00001839344191089342",
+ "priceChange24hPercent": "43.38",
+ "volume24h": "2713.77627300217183222",
+ "communityRecognized": false,
+ "key": "evm--196:0xa413c00935f17abca771e39a73240a8df9aa7ea4",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0x4122a43daecd13cfb2543ad339470fd87bc11111",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/4838afe55c0f1efbd5f1b0df4b496514a996c4ceeea56b77c55f3b640600e5d5",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/4838afe55c0f1efbd5f1b0df4b496514a996c4ceeea56b77c55f3b640600e5d5"
+ ],
+ "name": "OKIE",
+ "symbol": "OKIE",
+ "marketCap": "15774.648142931350237233",
+ "price": "0.00001577464814293135",
+ "priceChange24hPercent": "28.13",
+ "volume24h": "772.577870019013595476",
+ "communityRecognized": false,
+ "key": "evm--196:0x4122a43daecd13cfb2543ad339470fd87bc11111",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0xbddbc3645411f2479972d7014d266f089961eaa7",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/c9a8a20a3b3194e0e6fd1bc059f56d4bb6cbf33bcd808d2c7f679dfc7c301060",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/c9a8a20a3b3194e0e6fd1bc059f56d4bb6cbf33bcd808d2c7f679dfc7c301060"
+ ],
+ "name": "OKX人生",
+ "symbol": "OKX人生",
+ "marketCap": "8993.619419200745598803",
+ "price": "0.00000899361941920075",
+ "priceChange24hPercent": "10.42",
+ "volume24h": "759.2777471684050914",
+ "communityRecognized": false,
+ "key": "evm--196:0xbddbc3645411f2479972d7014d266f089961eaa7",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0x87669801a1fad6dad9db70d27ac752f452989667",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-onchain/evm--196/tokens/0x87669801a1fad6dad9db70d27ac752f452989667.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-onchain/evm--196/tokens/0x87669801a1fad6dad9db70d27ac752f452989667.png"
+ ],
+ "name": "牛马",
+ "symbol": "NIUMA",
+ "marketCap": "27109.336674980742774547",
+ "price": "0.00002785893036425397",
+ "priceChange24hPercent": "39.15",
+ "volume24h": "11936.605458546878108496",
+ "communityRecognized": false,
+ "key": "evm--196:0x87669801a1fad6dad9db70d27ac752f452989667",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0x16d91d1615fc55b76d5f92365bd60c069b46ef78",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-onchain/evm--196/tokens/0x16d91d1615fc55b76d5f92365bd60c069b46ef78.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-onchain/evm--196/tokens/0x16d91d1615fc55b76d5f92365bd60c069b46ef78.png"
+ ],
+ "name": "Banmao",
+ "symbol": "banmao",
+ "marketCap": "28414.687579224636528566",
+ "price": "0.0000284847172880104",
+ "priceChange24hPercent": "24.09",
+ "volume24h": "2686.50327027554712591",
+ "communityRecognized": false,
+ "key": "evm--196:0x16d91d1615fc55b76d5f92365bd60c069b46ef78",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0xbb9a906f1a8906d548c5d94b7079fa31bf09eeee",
+ "logoUrl": "https://static.oklink.com/cdn/web3/currency/token/large/196-0xbb9a906f1a8906d548c5d94b7079fa31bf09eeee-107/type=default_90_0?v=1788817524239",
+ "logoUrls": [
+ "https://static.oklink.com/cdn/web3/currency/token/large/196-0xbb9a906f1a8906d548c5d94b7079fa31bf09eeee-107/type=default_90_0?v=1788817524239"
+ ],
+ "name": "Xcat",
+ "symbol": "XCAT",
+ "marketCap": "7696.640152371809470203",
+ "price": "0.00000769664015237181",
+ "priceChange24hPercent": "-87.1",
+ "volume24h": "12985.482593026526254953",
+ "communityRecognized": false,
+ "key": "evm--196:0xbb9a906f1a8906d548c5d94b7079fa31bf09eeee",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0x8afef3f9a3506731afbbdbe0e844ac2246ec1111",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/5334d97a49e68503fbc62629a9272d347e518bb2727f81de4a59a3556484e3ea",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/5334d97a49e68503fbc62629a9272d347e518bb2727f81de4a59a3556484e3ea"
+ ],
+ "name": "GMCAT",
+ "symbol": "XCAT",
+ "marketCap": "12374.486795921348574193",
+ "price": "0.00001237448679592135",
+ "priceChange24hPercent": "-17.82",
+ "volume24h": "1484.4594175824436222",
+ "communityRecognized": false,
+ "key": "evm--196:0x8afef3f9a3506731afbbdbe0e844ac2246ec1111",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0x36baf1bc081d2671343f05f46e0a49f2eae34844",
+ "logoUrl": "https://static.oklink.com/cdn/web3/currency/token/large/196-0x36baf1bc081d2671343f05f46e0a49f2eae34844-107/type=default_90_0?v=1788817164719",
+ "logoUrls": [
+ "https://static.oklink.com/cdn/web3/currency/token/large/196-0x36baf1bc081d2671343f05f46e0a49f2eae34844-107/type=default_90_0?v=1788817164719"
+ ],
+ "name": "AreYouOK",
+ "symbol": "AreYouOK",
+ "marketCap": "7302.470978987093980323",
+ "price": "0.00000751865720220248",
+ "priceChange24hPercent": "35.52",
+ "volume24h": "1047.55657737108688",
+ "communityRecognized": false,
+ "key": "evm--196:0x36baf1bc081d2671343f05f46e0a49f2eae34844",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0x5f8a1c74c112865bd05dbe4752c7608332719062",
+ "logoUrl": "https://coin-images.coingecko.com/coins/images/102172528/large/deJAAA.png?1773764620",
+ "logoUrls": [
+ "https://coin-images.coingecko.com/coins/images/102172528/large/deJAAA.png?1773764620"
+ ],
+ "name": "JAAA deRWA",
+ "symbol": "deJAAA",
+ "marketCap": "59241.186015134550933529",
+ "price": "1.04405457631200157476",
+ "priceChange24hPercent": "-0.04",
+ "volume24h": "6024.941383",
+ "communityRecognized": false,
+ "key": "evm--196:0x5f8a1c74c112865bd05dbe4752c7608332719062",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--196",
+ "address": "0x19130a800ed206f24d27d6cf405880127be73d12",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/44ddee54aba45f59d888c311a5d14318e2b439f385372ddcaed83607d77afb39",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/44ddee54aba45f59d888c311a5d14318e2b439f385372ddcaed83607d77afb39"
+ ],
+ "name": "ok马",
+ "symbol": "ok马",
+ "marketCap": "3706.102862499643829716",
+ "price": "0.00000370610286249964",
+ "priceChange24hPercent": "19.48",
+ "volume24h": "741.754694577204565",
+ "communityRecognized": false,
+ "key": "evm--196:0x19130a800ed206f24d27d6cf405880127be73d12",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "X Layer",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/okb.png"
+ }
+ ],
+ "trending|evm--42161|5m|all": [
+ {
+ "isNative": false,
+ "networkId": "evm--42161",
+ "address": "0x0c1c1c109fe34733fca54b82d7b46b75cfb71f6e",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x0c1c1c109fe34733fca54b82d7b46b75cfb71f6e-1775532435873.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x0c1c1c109fe34733fca54b82d7b46b75cfb71f6e-1775532435873.png"
+ ],
+ "name": "Chip",
+ "symbol": "CHIP",
+ "marketCap": "508894251.264119017641851862",
+ "price": "0.05088942512641190176",
+ "priceChange24hPercent": "-0.3",
+ "volume24h": "14074.655143",
+ "communityRecognized": true,
+ "key": "evm--42161:0x0c1c1c109fe34733fca54b82d7b46b75cfb71f6e",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Arbitrum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--42161",
+ "address": "0xfc5a1a6eb076a2c7ad06ed22c90d7e710e35ad0a",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0xfc5a1a6eb076a2c7ad06ed22c90d7e710e35ad0a.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0xfc5a1a6eb076a2c7ad06ed22c90d7e710e35ad0a.png"
+ ],
+ "name": "GMX",
+ "symbol": "GMX",
+ "marketCap": "92939227.81910695297091323",
+ "price": "8.46009862290991960361",
+ "priceChange24hPercent": "-0.98",
+ "volume24h": "40590.2781630816498863",
+ "communityRecognized": true,
+ "key": "evm--42161:0xfc5a1a6eb076a2c7ad06ed22c90d7e710e35ad0a",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Arbitrum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--42161",
+ "address": "0x3b8db18e69d6686ad9371a423afe3dd1065c94f1",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x3b8db18e69d6686ad9371a423afe3dd1065c94f1-1770897698828.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x3b8db18e69d6686ad9371a423afe3dd1065c94f1-1770897698828.png"
+ ],
+ "name": "Espresso",
+ "symbol": "ESP",
+ "marketCap": "6687476.711883537129304927",
+ "price": "0.08811077978879592203",
+ "priceChange24hPercent": "-0.26",
+ "volume24h": "2564.234209",
+ "communityRecognized": true,
+ "key": "evm--42161:0x3b8db18e69d6686ad9371a423afe3dd1065c94f1",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Arbitrum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--42161",
+ "address": "0x6c84a8f1c29108f47a79964b5fe888d4f4d0de40",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x6c84a8f1c29108f47a79964b5fe888d4f4d0de40.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x6c84a8f1c29108f47a79964b5fe888d4f4d0de40.png"
+ ],
+ "name": "Arbitrum tBTC v2",
+ "symbol": "tBTC",
+ "marketCap": "7742238.644706631209182891",
+ "price": "78812.45926109961927074949",
+ "priceChange24hPercent": "-0.24",
+ "volume24h": "976.772323205",
+ "communityRecognized": true,
+ "key": "evm--42161:0x6c84a8f1c29108f47a79964b5fe888d4f4d0de40",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Arbitrum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--42161",
+ "address": "0x6fbbbd8bfb1cd3986b1d05e7861a0f62f87db74b",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x6fbbbd8bfb1cd3986b1d05e7861a0f62f87db74b-1757710862100.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x6fbbbd8bfb1cd3986b1d05e7861a0f62f87db74b-1757710862100.png"
+ ],
+ "name": "Vision",
+ "symbol": "VSN",
+ "marketCap": "4060007.462251900086812706",
+ "price": "0.04051347640630231184",
+ "priceChange24hPercent": "-0.01",
+ "volume24h": "3847.018433",
+ "communityRecognized": true,
+ "key": "evm--42161:0x6fbbbd8bfb1cd3986b1d05e7861a0f62f87db74b",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Arbitrum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--42161",
+ "address": "0x0c880f6761f1af8d9aa9c466984b80dab9a8c9e8",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x0c880f6761f1af8d9aa9c466984b80dab9a8c9e8.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x0c880f6761f1af8d9aa9c466984b80dab9a8c9e8.png"
+ ],
+ "name": "Pendle",
+ "symbol": "PENDLE",
+ "marketCap": "31736673.874710957304832133",
+ "price": "2.18917687182949833929",
+ "priceChange24hPercent": "0.07",
+ "volume24h": "922.513493668063118",
+ "communityRecognized": true,
+ "key": "evm--42161:0x0c880f6761f1af8d9aa9c466984b80dab9a8c9e8",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Arbitrum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ }
+ ],
+ "trending|evm--42161|1h|all": [
+ {
+ "isNative": false,
+ "networkId": "evm--42161",
+ "address": "0x0c1c1c109fe34733fca54b82d7b46b75cfb71f6e",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x0c1c1c109fe34733fca54b82d7b46b75cfb71f6e-1775532435873.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x0c1c1c109fe34733fca54b82d7b46b75cfb71f6e-1775532435873.png"
+ ],
+ "name": "Chip",
+ "symbol": "CHIP",
+ "marketCap": "508894251.264119017641851862",
+ "price": "0.05088942512641190176",
+ "priceChange24hPercent": "-3.72",
+ "volume24h": "53819.906671",
+ "communityRecognized": true,
+ "key": "evm--42161:0x0c1c1c109fe34733fca54b82d7b46b75cfb71f6e",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Arbitrum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--42161",
+ "address": "0xe93307b8faa1c9d5cae6f9fe96f91549fb651a20",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0xe93307b8faa1c9d5cae6f9fe96f91549fb651a20-1757710926440.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0xe93307b8faa1c9d5cae6f9fe96f91549fb651a20-1757710926440.png"
+ ],
+ "name": "Ontomir Chain",
+ "symbol": "OTM",
+ "marketCap": "14498704.24748112376300758",
+ "price": "0.01450314236714422484",
+ "priceChange24hPercent": "-0.51",
+ "volume24h": "735.84749389536",
+ "communityRecognized": false,
+ "key": "evm--42161:0xe93307b8faa1c9d5cae6f9fe96f91549fb651a20",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Arbitrum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--42161",
+ "address": "0xba5ddd1f9d7f570dc94a51479a000e3bce967196",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0xba5ddd1f9d7f570dc94a51479a000e3bce967196-1730187900049.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0xba5ddd1f9d7f570dc94a51479a000e3bce967196-1730187900049.png"
+ ],
+ "name": "Aave Token",
+ "symbol": "AAVE",
+ "marketCap": "6647234.28374377825806918",
+ "price": "130.65192025812917367061",
+ "priceChange24hPercent": "-0.21",
+ "volume24h": "3550.6554633098567154",
+ "communityRecognized": true,
+ "key": "evm--42161:0xba5ddd1f9d7f570dc94a51479a000e3bce967196",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Arbitrum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--42161",
+ "address": "0xfc5a1a6eb076a2c7ad06ed22c90d7e710e35ad0a",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0xfc5a1a6eb076a2c7ad06ed22c90d7e710e35ad0a.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0xfc5a1a6eb076a2c7ad06ed22c90d7e710e35ad0a.png"
+ ],
+ "name": "GMX",
+ "symbol": "GMX",
+ "marketCap": "92939227.81910695297091323",
+ "price": "8.46009862290991960361",
+ "priceChange24hPercent": "0.43",
+ "volume24h": "50901.5285485094324457",
+ "communityRecognized": true,
+ "key": "evm--42161:0xfc5a1a6eb076a2c7ad06ed22c90d7e710e35ad0a",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Arbitrum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--42161",
+ "address": "0x3b8db18e69d6686ad9371a423afe3dd1065c94f1",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x3b8db18e69d6686ad9371a423afe3dd1065c94f1-1770897698828.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x3b8db18e69d6686ad9371a423afe3dd1065c94f1-1770897698828.png"
+ ],
+ "name": "Espresso",
+ "symbol": "ESP",
+ "marketCap": "6687476.711883537129304927",
+ "price": "0.08811077978879592203",
+ "priceChange24hPercent": "0.31",
+ "volume24h": "37758.235977",
+ "communityRecognized": true,
+ "key": "evm--42161:0x3b8db18e69d6686ad9371a423afe3dd1065c94f1",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Arbitrum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--42161",
+ "address": "0x6491c05a82219b8d1479057361ff1654749b876b",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x6491c05a82219b8d1479057361ff1654749b876b-1740406003460.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x6491c05a82219b8d1479057361ff1654749b876b-1740406003460.png"
+ ],
+ "name": "USDS Stablecoin",
+ "symbol": "USDS",
+ "marketCap": "99766513.932485329619852804",
+ "price": "1",
+ "priceChange24hPercent": "0",
+ "volume24h": "9092.138594",
+ "communityRecognized": true,
+ "key": "evm--42161:0x6491c05a82219b8d1479057361ff1654749b876b",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Arbitrum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--42161",
+ "address": "0x9623063377ad1b27544c965ccd7342f7ea7e88c7",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x9623063377ad1b27544c965ccd7342f7ea7e88c7.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x9623063377ad1b27544c965ccd7342f7ea7e88c7.png"
+ ],
+ "name": "Graph Token",
+ "symbol": "GRT",
+ "marketCap": "67232424.034516182922398782",
+ "price": "0.01985957690951329285",
+ "priceChange24hPercent": "0.02",
+ "volume24h": "5106.029124704867607",
+ "communityRecognized": true,
+ "key": "evm--42161:0x9623063377ad1b27544c965ccd7342f7ea7e88c7",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Arbitrum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--42161",
+ "address": "0x289ba1701c2f088cf0faf8b3705246331cb8a839",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x289ba1701c2f088cf0faf8b3705246331cb8a839.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x289ba1701c2f088cf0faf8b3705246331cb8a839.png"
+ ],
+ "name": "Livepeer Token",
+ "symbol": "LPT",
+ "marketCap": "55102696.596664608848262225",
+ "price": "1.48059396134498743063",
+ "priceChange24hPercent": "0.85",
+ "volume24h": "721.87429133187092",
+ "communityRecognized": true,
+ "key": "evm--42161:0x289ba1701c2f088cf0faf8b3705246331cb8a839",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Arbitrum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--42161",
+ "address": "0xf97f4df75117a78c1a5a0dbb814af92458539fb4",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0xf97f4df75117a78c1a5a0dbb814af92458539fb4.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0xf97f4df75117a78c1a5a0dbb814af92458539fb4.png"
+ ],
+ "name": "ChainLink Token",
+ "symbol": "LINK",
+ "marketCap": "24572297.821287148828297363",
+ "price": "12.63515389871756360695",
+ "priceChange24hPercent": "0.43",
+ "volume24h": "9107.318469611793595639",
+ "communityRecognized": true,
+ "key": "evm--42161:0xf97f4df75117a78c1a5a0dbb814af92458539fb4",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Arbitrum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--42161",
+ "address": "0x768d4b20869771a93946b5101a6a2e886f020c4e",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x768d4b20869771a93946b5101a6a2e886f020c4e-1787148086340.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x768d4b20869771a93946b5101a6a2e886f020c4e-1787148086340.png"
+ ],
+ "name": "Nola",
+ "symbol": "NOLA",
+ "marketCap": "129195.406437475016933982",
+ "price": "0.00013020424833405769",
+ "priceChange24hPercent": "2.88",
+ "volume24h": "697.56085988973903568",
+ "communityRecognized": false,
+ "key": "evm--42161:0x768d4b20869771a93946b5101a6a2e886f020c4e",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Arbitrum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--42161",
+ "address": "0x018d6a98555686be1ca5b6896ef6c42cf67e2bd1",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x018d6a98555686be1ca5b6896ef6c42cf67e2bd1-1787148176821.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x018d6a98555686be1ca5b6896ef6c42cf67e2bd1-1787148176821.png"
+ ],
+ "name": "ODYS",
+ "symbol": "ODYS",
+ "marketCap": "2098824.415097710825781924",
+ "price": "0.00227237588323107215",
+ "priceChange24hPercent": "28.14",
+ "volume24h": "21420.6135402069260627",
+ "communityRecognized": false,
+ "key": "evm--42161:0x018d6a98555686be1ca5b6896ef6c42cf67e2bd1",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Arbitrum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--42161",
+ "address": "0xa78d8321b20c4ef90ecd72f2588aa985a4bdb684",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0xa78d8321b20c4ef90ecd72f2588aa985a4bdb684-1757710835027.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0xa78d8321b20c4ef90ecd72f2588aa985a4bdb684-1757710835027.png"
+ ],
+ "name": "Autonomi",
+ "symbol": "ANT",
+ "marketCap": "12551149.011426415098319624",
+ "price": "0.03677332878221718571",
+ "priceChange24hPercent": "-0.04",
+ "volume24h": "811.541166",
+ "communityRecognized": true,
+ "key": "evm--42161:0xa78d8321b20c4ef90ecd72f2588aa985a4bdb684",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Arbitrum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--42161",
+ "address": "0x12c2de43878fb1a06c1ead481f11e0c693a719c7",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x12c2de43878fb1a06c1ead481f11e0c693a719c7-1787839253326.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x12c2de43878fb1a06c1ead481f11e0c693a719c7-1787839253326.png"
+ ],
+ "name": "DGrid AI",
+ "symbol": "DGAI",
+ "marketCap": "138776.650429957423403476",
+ "price": "0.76042051299130562656",
+ "priceChange24hPercent": "-0.35",
+ "volume24h": "2102.0796284041",
+ "communityRecognized": false,
+ "key": "evm--42161:0x12c2de43878fb1a06c1ead481f11e0c693a719c7",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Arbitrum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--42161",
+ "address": "0x11e969e9b3f89cb16d686a03cd8508c9fc0361af",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x11e969e9b3f89cb16d686a03cd8508c9fc0361af-1722405600166.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x11e969e9b3f89cb16d686a03cd8508c9fc0361af-1722405600166.png"
+ ],
+ "name": "Axelar Wrapped LAVA",
+ "symbol": "LAVA",
+ "marketCap": "4008753.952315927471404755",
+ "price": "0.0198693598066631468",
+ "priceChange24hPercent": "-0.39",
+ "volume24h": "865.378236173887538",
+ "communityRecognized": true,
+ "key": "evm--42161:0x11e969e9b3f89cb16d686a03cd8508c9fc0361af",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Arbitrum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--42161",
+ "address": "0x7189fb5b6504bbff6a852b13b7b82a3c118fdc27",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x7189fb5b6504bbff6a852b13b7b82a3c118fdc27-1725608700102.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x7189fb5b6504bbff6a852b13b7b82a3c118fdc27-1725608700102.png"
+ ],
+ "name": "ether.fi governance token",
+ "symbol": "ETHFI",
+ "marketCap": "4368951.962322253775535884",
+ "price": "0.58139539783106568428",
+ "priceChange24hPercent": "-0.35",
+ "volume24h": "1343.017548656985988",
+ "communityRecognized": true,
+ "key": "evm--42161:0x7189fb5b6504bbff6a852b13b7b82a3c118fdc27",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Arbitrum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--42161",
+ "address": "0xc87b37a581ec3257b734886d9d3a581f5a9d056c",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0xc87b37a581ec3257b734886d9d3a581f5a9d056c-1721965710424.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0xc87b37a581ec3257b734886d9d3a581f5a9d056c-1721965710424.png"
+ ],
+ "name": "Aethir Token",
+ "symbol": "ATH",
+ "marketCap": "16503708.171423844176464432",
+ "price": "0.00485709691084718493",
+ "priceChange24hPercent": "1.5",
+ "volume24h": "3591.702771732818126",
+ "communityRecognized": true,
+ "key": "evm--42161:0xc87b37a581ec3257b734886d9d3a581f5a9d056c",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Arbitrum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--42161",
+ "address": "0x7f9fbf9bdd3f4105c478b996b648fe6e828a1e98",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x7f9fbf9bdd3f4105c478b996b648fe6e828a1e98-1757710890936.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x7f9fbf9bdd3f4105c478b996b648fe6e828a1e98-1757710890936.png"
+ ],
+ "name": "ApeCoin",
+ "symbol": "APE",
+ "marketCap": "1255447.805854874312494248",
+ "price": "0.14468481827062816675",
+ "priceChange24hPercent": "-0.17",
+ "volume24h": "25111.24472707832894026",
+ "communityRecognized": false,
+ "key": "evm--42161:0x7f9fbf9bdd3f4105c478b996b648fe6e828a1e98",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Arbitrum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--42161",
+ "address": "0x6c84a8f1c29108f47a79964b5fe888d4f4d0de40",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x6c84a8f1c29108f47a79964b5fe888d4f4d0de40.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x6c84a8f1c29108f47a79964b5fe888d4f4d0de40.png"
+ ],
+ "name": "Arbitrum tBTC v2",
+ "symbol": "tBTC",
+ "marketCap": "7742238.644706631209182891",
+ "price": "78812.45926109961927074949",
+ "priceChange24hPercent": "-0.27",
+ "volume24h": "12282.639912397991783",
+ "communityRecognized": true,
+ "key": "evm--42161:0x6c84a8f1c29108f47a79964b5fe888d4f4d0de40",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Arbitrum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--42161",
+ "address": "0x25118290e6a5f4139381d072181157035864099d",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x25118290e6a5f4139381d072181157035864099d-1757710924947.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x25118290e6a5f4139381d072181157035864099d-1757710924947.png"
+ ],
+ "name": "RAIN",
+ "symbol": "RAIN",
+ "marketCap": "11541089900.561632556761781838",
+ "price": "0.01627318307034835231",
+ "priceChange24hPercent": "0.1",
+ "volume24h": "2811.21087369967623368",
+ "communityRecognized": true,
+ "key": "evm--42161:0x25118290e6a5f4139381d072181157035864099d",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Arbitrum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--42161",
+ "address": "0x1b896893dfc86bb67cf57767298b9073d2c1ba2c",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x1b896893dfc86bb67cf57767298b9073d2c1ba2c-1724912307590.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x1b896893dfc86bb67cf57767298b9073d2c1ba2c-1724912307590.png"
+ ],
+ "name": "PancakeSwap Token",
+ "symbol": "Cake",
+ "marketCap": "369627.789656010860936126",
+ "price": "2.2308467702452560381",
+ "priceChange24hPercent": "-0.18",
+ "volume24h": "2830.14575528518301",
+ "communityRecognized": true,
+ "key": "evm--42161:0x1b896893dfc86bb67cf57767298b9073d2c1ba2c",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Arbitrum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--42161",
+ "address": "0x6985884c4392d348587b19cb9eaaf157f13271cd",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x6985884c4392d348587b19cb9eaaf157f13271cd-1721965710424.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x6985884c4392d348587b19cb9eaaf157f13271cd-1721965710424.png"
+ ],
+ "name": "LayerZero",
+ "symbol": "ZRO",
+ "marketCap": "30273537.014651866762832537",
+ "price": "1.13443141892464951896",
+ "priceChange24hPercent": "0.37",
+ "volume24h": "4443.23069553445229372",
+ "communityRecognized": true,
+ "key": "evm--42161:0x6985884c4392d348587b19cb9eaaf157f13271cd",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Arbitrum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--42161",
+ "address": "0x11cdb42b0eb46d95f990bedd4695a6e3fa034978",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x11cdb42b0eb46d95f990bedd4695a6e3fa034978.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x11cdb42b0eb46d95f990bedd4695a6e3fa034978.png"
+ ],
+ "name": "Curve DAO Token",
+ "symbol": "CRV",
+ "marketCap": "7023690.648108841229641943",
+ "price": "0.36256763767456545319",
+ "priceChange24hPercent": "-0.08",
+ "volume24h": "1275.4758517900125239",
+ "communityRecognized": true,
+ "key": "evm--42161:0x11cdb42b0eb46d95f990bedd4695a6e3fa034978",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Arbitrum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--42161",
+ "address": "0xfa7f8980b0f1e64a2062791cc3b0871572f1f7f0",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0xfa7f8980b0f1e64a2062791cc3b0871572f1f7f0.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0xfa7f8980b0f1e64a2062791cc3b0871572f1f7f0.png"
+ ],
+ "name": "Uniswap",
+ "symbol": "UNI",
+ "marketCap": "7198139.162124000350955165",
+ "price": "6.975687114045285319",
+ "priceChange24hPercent": "-0.18",
+ "volume24h": "5403.06463019259166289",
+ "communityRecognized": true,
+ "key": "evm--42161:0xfa7f8980b0f1e64a2062791cc3b0871572f1f7f0",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Arbitrum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--42161",
+ "address": "0x4e200fe2f3efb977d5fd9c430a41531fb04d97b8",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x4e200fe2f3efb977d5fd9c430a41531fb04d97b8-1724720313181.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x4e200fe2f3efb977d5fd9c430a41531fb04d97b8-1724720313181.png"
+ ],
+ "name": "Orderly Network",
+ "symbol": "ORDER",
+ "marketCap": "395338.853829734703871074",
+ "price": "0.03388351962239447458",
+ "priceChange24hPercent": "0.81",
+ "volume24h": "669.202395618923448",
+ "communityRecognized": true,
+ "key": "evm--42161:0x4e200fe2f3efb977d5fd9c430a41531fb04d97b8",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Arbitrum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--42161",
+ "address": "0xf197ffc28c23e0309b5559e7a166f2c6164c80aa",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0xf197ffc28c23e0309b5559e7a166f2c6164c80aa-1757710815737.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0xf197ffc28c23e0309b5559e7a166f2c6164c80aa-1757710815737.png"
+ ],
+ "name": "MXNB",
+ "symbol": "MXNB",
+ "marketCap": "1790982.539831641043253445",
+ "price": "0.05924019341647328138",
+ "priceChange24hPercent": "0.21",
+ "volume24h": "1500",
+ "communityRecognized": true,
+ "key": "evm--42161:0xf197ffc28c23e0309b5559e7a166f2c6164c80aa",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Arbitrum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--42161",
+ "address": "0x6fbbbd8bfb1cd3986b1d05e7861a0f62f87db74b",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x6fbbbd8bfb1cd3986b1d05e7861a0f62f87db74b-1757710862100.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x6fbbbd8bfb1cd3986b1d05e7861a0f62f87db74b-1757710862100.png"
+ ],
+ "name": "Vision",
+ "symbol": "VSN",
+ "marketCap": "4060007.462251900086812706",
+ "price": "0.04051347640630231184",
+ "priceChange24hPercent": "-0.13",
+ "volume24h": "45813.683821",
+ "communityRecognized": true,
+ "key": "evm--42161:0x6fbbbd8bfb1cd3986b1d05e7861a0f62f87db74b",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Arbitrum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--42161",
+ "address": "0x70f2eadf1ca1969ff42b0c78e9da519e8937cbaf",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x70f2eadf1ca1969ff42b0c78e9da519e8937cbaf-1778155221753.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x70f2eadf1ca1969ff42b0c78e9da519e8937cbaf-1778155221753.png"
+ ],
+ "name": "Edge",
+ "symbol": "EDGE",
+ "marketCap": "77546.748703124826188717",
+ "price": "0.595207182833753024",
+ "priceChange24hPercent": "-0.17",
+ "volume24h": "1704.019808",
+ "communityRecognized": false,
+ "key": "evm--42161:0x70f2eadf1ca1969ff42b0c78e9da519e8937cbaf",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Arbitrum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--42161",
+ "address": "0x0c880f6761f1af8d9aa9c466984b80dab9a8c9e8",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x0c880f6761f1af8d9aa9c466984b80dab9a8c9e8.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x0c880f6761f1af8d9aa9c466984b80dab9a8c9e8.png"
+ ],
+ "name": "Pendle",
+ "symbol": "PENDLE",
+ "marketCap": "31736673.874710957304832133",
+ "price": "2.18917687182949833929",
+ "priceChange24hPercent": "-1.33",
+ "volume24h": "87868.04780838642644971",
+ "communityRecognized": true,
+ "key": "evm--42161:0x0c880f6761f1af8d9aa9c466984b80dab9a8c9e8",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Arbitrum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ }
+ ],
+ "trending|evm--42161|4h|all": [
+ {
+ "isNative": false,
+ "networkId": "evm--42161",
+ "address": "0x0c1c1c109fe34733fca54b82d7b46b75cfb71f6e",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x0c1c1c109fe34733fca54b82d7b46b75cfb71f6e-1775532435873.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x0c1c1c109fe34733fca54b82d7b46b75cfb71f6e-1775532435873.png"
+ ],
+ "name": "Chip",
+ "symbol": "CHIP",
+ "marketCap": "508894251.264119017641851862",
+ "price": "0.05088942512641190176",
+ "priceChange24hPercent": "-5.53",
+ "volume24h": "145787.506613000000030037",
+ "communityRecognized": true,
+ "key": "evm--42161:0x0c1c1c109fe34733fca54b82d7b46b75cfb71f6e",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Arbitrum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--42161",
+ "address": "0x3212dc0f8c834e4de893532d27cc9b6001684db0",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x3212dc0f8c834e4de893532d27cc9b6001684db0-1727935200067.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x3212dc0f8c834e4de893532d27cc9b6001684db0-1727935200067.png"
+ ],
+ "name": "Pear",
+ "symbol": "PEAR",
+ "marketCap": "6626424.598038379813811556",
+ "price": "0.0135427491609043494",
+ "priceChange24hPercent": "6.08",
+ "volume24h": "13116.7750353008582276",
+ "communityRecognized": false,
+ "key": "evm--42161:0x3212dc0f8c834e4de893532d27cc9b6001684db0",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Arbitrum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--42161",
+ "address": "0xe93307b8faa1c9d5cae6f9fe96f91549fb651a20",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0xe93307b8faa1c9d5cae6f9fe96f91549fb651a20-1757710926440.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0xe93307b8faa1c9d5cae6f9fe96f91549fb651a20-1757710926440.png"
+ ],
+ "name": "Ontomir Chain",
+ "symbol": "OTM",
+ "marketCap": "14498704.24748112376300758",
+ "price": "0.01450314236714422484",
+ "priceChange24hPercent": "-0.51",
+ "volume24h": "735.84749389536",
+ "communityRecognized": false,
+ "key": "evm--42161:0xe93307b8faa1c9d5cae6f9fe96f91549fb651a20",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Arbitrum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--42161",
+ "address": "0x539bde0d7dbd336b79148aa742883198bbf60342",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x539bde0d7dbd336b79148aa742883198bbf60342.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x539bde0d7dbd336b79148aa742883198bbf60342.png"
+ ],
+ "name": "MAGIC",
+ "symbol": "MAGIC",
+ "marketCap": "14452691.267626230854837321",
+ "price": "0.04609731363893508407",
+ "priceChange24hPercent": "0.05",
+ "volume24h": "7218.962734972788034777",
+ "communityRecognized": true,
+ "key": "evm--42161:0x539bde0d7dbd336b79148aa742883198bbf60342",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Arbitrum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--42161",
+ "address": "0xba5ddd1f9d7f570dc94a51479a000e3bce967196",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0xba5ddd1f9d7f570dc94a51479a000e3bce967196-1730187900049.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0xba5ddd1f9d7f570dc94a51479a000e3bce967196-1730187900049.png"
+ ],
+ "name": "Aave Token",
+ "symbol": "AAVE",
+ "marketCap": "6647234.28374377825806918",
+ "price": "130.65192025812917367061",
+ "priceChange24hPercent": "-0.79",
+ "volume24h": "21563.523273110397237",
+ "communityRecognized": true,
+ "key": "evm--42161:0xba5ddd1f9d7f570dc94a51479a000e3bce967196",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Arbitrum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--42161",
+ "address": "0xfc5a1a6eb076a2c7ad06ed22c90d7e710e35ad0a",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0xfc5a1a6eb076a2c7ad06ed22c90d7e710e35ad0a.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0xfc5a1a6eb076a2c7ad06ed22c90d7e710e35ad0a.png"
+ ],
+ "name": "GMX",
+ "symbol": "GMX",
+ "marketCap": "92939227.81910695297091323",
+ "price": "8.46009862290991960361",
+ "priceChange24hPercent": "0.54",
+ "volume24h": "64398.780811382763478692",
+ "communityRecognized": true,
+ "key": "evm--42161:0xfc5a1a6eb076a2c7ad06ed22c90d7e710e35ad0a",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Arbitrum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--42161",
+ "address": "0xfa38fa85186b721389b7051a60df1ad590a70ba3",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/4a563ac1c0cd1b7ed43429ee1ad5750a8ca22c0eaaa08d0427a8a86e8a2348f0",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/4a563ac1c0cd1b7ed43429ee1ad5750a8ca22c0eaaa08d0427a8a86e8a2348f0"
+ ],
+ "name": "First Deploy On Arbitrum",
+ "symbol": "FIRST",
+ "marketCap": "35095.849703212305470109",
+ "price": "0.00000035095849703212",
+ "priceChange24hPercent": "-7.1",
+ "volume24h": "793.22383397074866119",
+ "communityRecognized": false,
+ "key": "evm--42161:0xfa38fa85186b721389b7051a60df1ad590a70ba3",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Arbitrum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--42161",
+ "address": "0x37a52a6da7b7e71c0da0b175b78687d5b040beea",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x37a52a6da7b7e71c0da0b175b78687d5b040beea-1788444135936.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x37a52a6da7b7e71c0da0b175b78687d5b040beea-1788444135936.png"
+ ],
+ "name": "Arbitration",
+ "symbol": "ARBITRATION",
+ "marketCap": "8459.636708484715868017",
+ "price": "0.00000845963670848472",
+ "priceChange24hPercent": "-23.94",
+ "volume24h": "850.74161261883253",
+ "communityRecognized": false,
+ "key": "evm--42161:0x37a52a6da7b7e71c0da0b175b78687d5b040beea",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Arbitrum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--42161",
+ "address": "0xe004f86692780ec2717ef402233fde9d23d654d8",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/001b4443aa4251ef1afd763fa2e5f4ac5e9650e5de92230c40b57b32250badeb",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/001b4443aa4251ef1afd763fa2e5f4ac5e9650e5de92230c40b57b32250badeb"
+ ],
+ "name": "Dylan Utility And Community Token",
+ "symbol": "DUCT",
+ "marketCap": "5322802.267597208374875373",
+ "price": "0.49285206181455633101",
+ "priceChange24hPercent": "-0.83",
+ "volume24h": "729.660712",
+ "communityRecognized": false,
+ "key": "evm--42161:0xe004f86692780ec2717ef402233fde9d23d654d8",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Arbitrum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--42161",
+ "address": "0x3b8db18e69d6686ad9371a423afe3dd1065c94f1",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x3b8db18e69d6686ad9371a423afe3dd1065c94f1-1770897698828.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x3b8db18e69d6686ad9371a423afe3dd1065c94f1-1770897698828.png"
+ ],
+ "name": "Espresso",
+ "symbol": "ESP",
+ "marketCap": "6687476.711883537129304927",
+ "price": "0.08811077978879592203",
+ "priceChange24hPercent": "-0.04",
+ "volume24h": "99999.183067",
+ "communityRecognized": true,
+ "key": "evm--42161:0x3b8db18e69d6686ad9371a423afe3dd1065c94f1",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Arbitrum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--42161",
+ "address": "0x46850ad61c2b7d64d08c9c754f45254596696984",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x46850ad61c2b7d64d08c9c754f45254596696984-1757710832422.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x46850ad61c2b7d64d08c9c754f45254596696984-1757710832422.png"
+ ],
+ "name": "PayPal USD",
+ "symbol": "PYUSD",
+ "marketCap": "330793069.043443156557180605",
+ "price": "1.00094379917013639327",
+ "priceChange24hPercent": "0.13",
+ "volume24h": "3471.77953",
+ "communityRecognized": true,
+ "key": "evm--42161:0x46850ad61c2b7d64d08c9c754f45254596696984",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Arbitrum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--42161",
+ "address": "0x6491c05a82219b8d1479057361ff1654749b876b",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x6491c05a82219b8d1479057361ff1654749b876b-1740406003460.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x6491c05a82219b8d1479057361ff1654749b876b-1740406003460.png"
+ ],
+ "name": "USDS Stablecoin",
+ "symbol": "USDS",
+ "marketCap": "99766513.932485329619852804",
+ "price": "1",
+ "priceChange24hPercent": "0",
+ "volume24h": "9326.523569",
+ "communityRecognized": true,
+ "key": "evm--42161:0x6491c05a82219b8d1479057361ff1654749b876b",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Arbitrum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--42161",
+ "address": "0x9623063377ad1b27544c965ccd7342f7ea7e88c7",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x9623063377ad1b27544c965ccd7342f7ea7e88c7.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x9623063377ad1b27544c965ccd7342f7ea7e88c7.png"
+ ],
+ "name": "Graph Token",
+ "symbol": "GRT",
+ "marketCap": "67232424.034516182922398782",
+ "price": "0.01985957690951329285",
+ "priceChange24hPercent": "2.53",
+ "volume24h": "9040.1394636525596423",
+ "communityRecognized": true,
+ "key": "evm--42161:0x9623063377ad1b27544c965ccd7342f7ea7e88c7",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Arbitrum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--42161",
+ "address": "0x289ba1701c2f088cf0faf8b3705246331cb8a839",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x289ba1701c2f088cf0faf8b3705246331cb8a839.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x289ba1701c2f088cf0faf8b3705246331cb8a839.png"
+ ],
+ "name": "Livepeer Token",
+ "symbol": "LPT",
+ "marketCap": "55102696.596664608848262225",
+ "price": "1.48059396134498743063",
+ "priceChange24hPercent": "0.56",
+ "volume24h": "8228.966497558629383",
+ "communityRecognized": true,
+ "key": "evm--42161:0x289ba1701c2f088cf0faf8b3705246331cb8a839",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Arbitrum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--42161",
+ "address": "0xf97f4df75117a78c1a5a0dbb814af92458539fb4",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0xf97f4df75117a78c1a5a0dbb814af92458539fb4.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0xf97f4df75117a78c1a5a0dbb814af92458539fb4.png"
+ ],
+ "name": "ChainLink Token",
+ "symbol": "LINK",
+ "marketCap": "24572297.821287148828297363",
+ "price": "12.63515389871756360695",
+ "priceChange24hPercent": "-0.49",
+ "volume24h": "49119.048220910044517369",
+ "communityRecognized": true,
+ "key": "evm--42161:0xf97f4df75117a78c1a5a0dbb814af92458539fb4",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Arbitrum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--42161",
+ "address": "0x1337420ded5adb9980cfc35f8f2b054ea86f8ab1",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x1337420ded5adb9980cfc35f8f2b054ea86f8ab1-1757710920821.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x1337420ded5adb9980cfc35f8f2b054ea86f8ab1-1757710920821.png"
+ ],
+ "name": "Subsquid",
+ "symbol": "SQD",
+ "marketCap": "45829594.199520642925710478",
+ "price": "0.0353538399622595066",
+ "priceChange24hPercent": "0.51",
+ "volume24h": "1159.790641775359864",
+ "communityRecognized": true,
+ "key": "evm--42161:0x1337420ded5adb9980cfc35f8f2b054ea86f8ab1",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Arbitrum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--42161",
+ "address": "0x768d4b20869771a93946b5101a6a2e886f020c4e",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x768d4b20869771a93946b5101a6a2e886f020c4e-1787148086340.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x768d4b20869771a93946b5101a6a2e886f020c4e-1787148086340.png"
+ ],
+ "name": "Nola",
+ "symbol": "NOLA",
+ "marketCap": "129195.406437475016933982",
+ "price": "0.00013020424833405769",
+ "priceChange24hPercent": "5.28",
+ "volume24h": "749.72149139613652668",
+ "communityRecognized": false,
+ "key": "evm--42161:0x768d4b20869771a93946b5101a6a2e886f020c4e",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Arbitrum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--42161",
+ "address": "0x45d9831d8751b2325f3dbf48db748723726e1c8c",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x45d9831d8751b2325f3dbf48db748723726e1c8c-1729731600083.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x45d9831d8751b2325f3dbf48db748723726e1c8c-1729731600083.png"
+ ],
+ "name": "EverValueCoin",
+ "symbol": "EVA",
+ "marketCap": "788137490.195577935467959369",
+ "price": "42.90448085830819672131",
+ "priceChange24hPercent": "0.06",
+ "volume24h": "3830.108251024447386",
+ "communityRecognized": false,
+ "key": "evm--42161:0x45d9831d8751b2325f3dbf48db748723726e1c8c",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Arbitrum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--42161",
+ "address": "0x13a7dedb7169a17be92b0e3c7c2315b46f4772b3",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x13a7dedb7169a17be92b0e3c7c2315b46f4772b3.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x13a7dedb7169a17be92b0e3c7c2315b46f4772b3.png"
+ ],
+ "name": "Boop",
+ "symbol": "Boop",
+ "marketCap": "1190538.473958257656273895",
+ "price": "0.00001195350529697295",
+ "priceChange24hPercent": "2.95",
+ "volume24h": "1641.6785011595298566",
+ "communityRecognized": false,
+ "key": "evm--42161:0x13a7dedb7169a17be92b0e3c7c2315b46f4772b3",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Arbitrum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--42161",
+ "address": "0x6efa9b8883dfb78fd75cd89d8474c44c3cbda469",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x6efa9b8883dfb78fd75cd89d8474c44c3cbda469-1757710918968.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x6efa9b8883dfb78fd75cd89d8474c44c3cbda469-1757710918968.png"
+ ],
+ "name": "DIA",
+ "symbol": "DIA",
+ "marketCap": "6465076.433496962284543805",
+ "price": "0.98808491522567703109",
+ "priceChange24hPercent": "-0.78",
+ "volume24h": "2163.49436869651",
+ "communityRecognized": false,
+ "key": "evm--42161:0x6efa9b8883dfb78fd75cd89d8474c44c3cbda469",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Arbitrum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--42161",
+ "address": "0xcafcd85d8ca7ad1e1c6f82f651fa15e33aefd07b",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0xcafcd85d8ca7ad1e1c6f82f651fa15e33aefd07b.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0xcafcd85d8ca7ad1e1c6f82f651fa15e33aefd07b.png"
+ ],
+ "name": "Wootrade Network",
+ "symbol": "WOO",
+ "marketCap": "5577920.384921111537235997",
+ "price": "0.01167521549125799348",
+ "priceChange24hPercent": "-0.39",
+ "volume24h": "2645.8963512118059134",
+ "communityRecognized": true,
+ "key": "evm--42161:0xcafcd85d8ca7ad1e1c6f82f651fa15e33aefd07b",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Arbitrum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--42161",
+ "address": "0x2ac2b254bc18cd4999f64773a966e4f4869c34ee",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x2ac2b254bc18cd4999f64773a966e4f4869c34ee.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x2ac2b254bc18cd4999f64773a966e4f4869c34ee.png"
+ ],
+ "name": "Penpie Token",
+ "symbol": "PNP",
+ "marketCap": "1905052.757956561115843216",
+ "price": "0.19788777604659666785",
+ "priceChange24hPercent": "1.34",
+ "volume24h": "1083.18338394485681497",
+ "communityRecognized": false,
+ "key": "evm--42161:0x2ac2b254bc18cd4999f64773a966e4f4869c34ee",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Arbitrum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--42161",
+ "address": "0x018d6a98555686be1ca5b6896ef6c42cf67e2bd1",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x018d6a98555686be1ca5b6896ef6c42cf67e2bd1-1787148176821.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x018d6a98555686be1ca5b6896ef6c42cf67e2bd1-1787148176821.png"
+ ],
+ "name": "ODYS",
+ "symbol": "ODYS",
+ "marketCap": "2098824.415097710825781924",
+ "price": "0.00227237588323107215",
+ "priceChange24hPercent": "27.59",
+ "volume24h": "38030.37348340087680558",
+ "communityRecognized": false,
+ "key": "evm--42161:0x018d6a98555686be1ca5b6896ef6c42cf67e2bd1",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Arbitrum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--42161",
+ "address": "0xa78d8321b20c4ef90ecd72f2588aa985a4bdb684",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0xa78d8321b20c4ef90ecd72f2588aa985a4bdb684-1757710835027.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0xa78d8321b20c4ef90ecd72f2588aa985a4bdb684-1757710835027.png"
+ ],
+ "name": "Autonomi",
+ "symbol": "ANT",
+ "marketCap": "12551149.011426415098319624",
+ "price": "0.03677332878221718571",
+ "priceChange24hPercent": "-0.54",
+ "volume24h": "2961.412497",
+ "communityRecognized": true,
+ "key": "evm--42161:0xa78d8321b20c4ef90ecd72f2588aa985a4bdb684",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Arbitrum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--42161",
+ "address": "0x12c2de43878fb1a06c1ead481f11e0c693a719c7",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x12c2de43878fb1a06c1ead481f11e0c693a719c7-1787839253326.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x12c2de43878fb1a06c1ead481f11e0c693a719c7-1787839253326.png"
+ ],
+ "name": "DGrid AI",
+ "symbol": "DGAI",
+ "marketCap": "138776.650429957423403476",
+ "price": "0.76042051299130562656",
+ "priceChange24hPercent": "-0.81",
+ "volume24h": "4584.39653157176",
+ "communityRecognized": false,
+ "key": "evm--42161:0x12c2de43878fb1a06c1ead481f11e0c693a719c7",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Arbitrum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--42161",
+ "address": "0x11e969e9b3f89cb16d686a03cd8508c9fc0361af",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x11e969e9b3f89cb16d686a03cd8508c9fc0361af-1722405600166.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x11e969e9b3f89cb16d686a03cd8508c9fc0361af-1722405600166.png"
+ ],
+ "name": "Axelar Wrapped LAVA",
+ "symbol": "LAVA",
+ "marketCap": "4008753.952315927471404755",
+ "price": "0.0198693598066631468",
+ "priceChange24hPercent": "-1.5",
+ "volume24h": "8464.1438314909522975",
+ "communityRecognized": true,
+ "key": "evm--42161:0x11e969e9b3f89cb16d686a03cd8508c9fc0361af",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Arbitrum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--42161",
+ "address": "0x13ad51ed4f1b7e9dc168d8a00cb3f4ddd85efa60",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x13ad51ed4f1b7e9dc168d8a00cb3f4ddd85efa60.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x13ad51ed4f1b7e9dc168d8a00cb3f4ddd85efa60.png"
+ ],
+ "name": "Lido DAO Token",
+ "symbol": "LDO",
+ "marketCap": "642809.302583038521921132",
+ "price": "0.39202826763761491353",
+ "priceChange24hPercent": "-0.25",
+ "volume24h": "2104.4845878336404988",
+ "communityRecognized": true,
+ "key": "evm--42161:0x13ad51ed4f1b7e9dc168d8a00cb3f4ddd85efa60",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Arbitrum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--42161",
+ "address": "0x7189fb5b6504bbff6a852b13b7b82a3c118fdc27",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x7189fb5b6504bbff6a852b13b7b82a3c118fdc27-1725608700102.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x7189fb5b6504bbff6a852b13b7b82a3c118fdc27-1725608700102.png"
+ ],
+ "name": "ether.fi governance token",
+ "symbol": "ETHFI",
+ "marketCap": "4368951.962322253775535884",
+ "price": "0.58139539783106568428",
+ "priceChange24hPercent": "-1.24",
+ "volume24h": "6130.9734492968582466",
+ "communityRecognized": true,
+ "key": "evm--42161:0x7189fb5b6504bbff6a852b13b7b82a3c118fdc27",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Arbitrum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--42161",
+ "address": "0xec70dcb4a1efa46b8f2d97c310c9c4790ba5ffa8",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0xec70dcb4a1efa46b8f2d97c310c9c4790ba5ffa8.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0xec70dcb4a1efa46b8f2d97c310c9c4790ba5ffa8.png"
+ ],
+ "name": "Rocket Pool ETH",
+ "symbol": "rETH",
+ "marketCap": "12910584.693706639301067408",
+ "price": "2911.50391931770106431134",
+ "priceChange24hPercent": "0.38",
+ "volume24h": "4859.1691704134123",
+ "communityRecognized": false,
+ "key": "evm--42161:0xec70dcb4a1efa46b8f2d97c310c9c4790ba5ffa8",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Arbitrum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--42161",
+ "address": "0xc87b37a581ec3257b734886d9d3a581f5a9d056c",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0xc87b37a581ec3257b734886d9d3a581f5a9d056c-1721965710424.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0xc87b37a581ec3257b734886d9d3a581f5a9d056c-1721965710424.png"
+ ],
+ "name": "Aethir Token",
+ "symbol": "ATH",
+ "marketCap": "16503708.171423844176464432",
+ "price": "0.00485709691084718493",
+ "priceChange24hPercent": "2.62",
+ "volume24h": "14531.2004513137261198",
+ "communityRecognized": true,
+ "key": "evm--42161:0xc87b37a581ec3257b734886d9d3a581f5a9d056c",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Arbitrum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--42161",
+ "address": "0x7f9fbf9bdd3f4105c478b996b648fe6e828a1e98",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x7f9fbf9bdd3f4105c478b996b648fe6e828a1e98-1757710890936.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x7f9fbf9bdd3f4105c478b996b648fe6e828a1e98-1757710890936.png"
+ ],
+ "name": "ApeCoin",
+ "symbol": "APE",
+ "marketCap": "1255447.805854874312494248",
+ "price": "0.14468481827062816675",
+ "priceChange24hPercent": "-0.68",
+ "volume24h": "25880.013264205174870906",
+ "communityRecognized": false,
+ "key": "evm--42161:0x7f9fbf9bdd3f4105c478b996b648fe6e828a1e98",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Arbitrum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--42161",
+ "address": "0x6c84a8f1c29108f47a79964b5fe888d4f4d0de40",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x6c84a8f1c29108f47a79964b5fe888d4f4d0de40.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x6c84a8f1c29108f47a79964b5fe888d4f4d0de40.png"
+ ],
+ "name": "Arbitrum tBTC v2",
+ "symbol": "tBTC",
+ "marketCap": "7742238.644706631209182891",
+ "price": "78812.45926109961927074949",
+ "priceChange24hPercent": "-0.29",
+ "volume24h": "25296.180301165363363",
+ "communityRecognized": true,
+ "key": "evm--42161:0x6c84a8f1c29108f47a79964b5fe888d4f4d0de40",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Arbitrum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--42161",
+ "address": "0xbfbcfe8873fe28dfa25f1099282b088d52bbad9c",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0xbfbcfe8873fe28dfa25f1099282b088d52bbad9c.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0xbfbcfe8873fe28dfa25f1099282b088d52bbad9c.png"
+ ],
+ "name": "Equilibria Token",
+ "symbol": "EQB",
+ "marketCap": "2729428.024320068755886178",
+ "price": "0.09044694690968462614",
+ "priceChange24hPercent": "-0.53",
+ "volume24h": "1149.779213556773318",
+ "communityRecognized": false,
+ "key": "evm--42161:0xbfbcfe8873fe28dfa25f1099282b088d52bbad9c",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Arbitrum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--42161",
+ "address": "0x25118290e6a5f4139381d072181157035864099d",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x25118290e6a5f4139381d072181157035864099d-1757710924947.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x25118290e6a5f4139381d072181157035864099d-1757710924947.png"
+ ],
+ "name": "RAIN",
+ "symbol": "RAIN",
+ "marketCap": "11541089900.561632556761781838",
+ "price": "0.01627318307034835231",
+ "priceChange24hPercent": "-0.06",
+ "volume24h": "16837.46072527996894313",
+ "communityRecognized": true,
+ "key": "evm--42161:0x25118290e6a5f4139381d072181157035864099d",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Arbitrum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--42161",
+ "address": "0x092baadb7def4c3981454dd9c0a0d7ff07bcfc86",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x092baadb7def4c3981454dd9c0a0d7ff07bcfc86.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x092baadb7def4c3981454dd9c0a0d7ff07bcfc86.png"
+ ],
+ "name": "MOR",
+ "symbol": "MOR",
+ "marketCap": "5933377.061531320325789881",
+ "price": "1.94021021351471402509",
+ "priceChange24hPercent": "-0.87",
+ "volume24h": "1675.4492354270754169",
+ "communityRecognized": false,
+ "key": "evm--42161:0x092baadb7def4c3981454dd9c0a0d7ff07bcfc86",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Arbitrum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--42161",
+ "address": "0x1b896893dfc86bb67cf57767298b9073d2c1ba2c",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x1b896893dfc86bb67cf57767298b9073d2c1ba2c-1724912307590.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x1b896893dfc86bb67cf57767298b9073d2c1ba2c-1724912307590.png"
+ ],
+ "name": "PancakeSwap Token",
+ "symbol": "Cake",
+ "marketCap": "369627.789656010860936126",
+ "price": "2.2308467702452560381",
+ "priceChange24hPercent": "0.6",
+ "volume24h": "4889.62093761710318496",
+ "communityRecognized": true,
+ "key": "evm--42161:0x1b896893dfc86bb67cf57767298b9073d2c1ba2c",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Arbitrum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--42161",
+ "address": "0x6985884c4392d348587b19cb9eaaf157f13271cd",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x6985884c4392d348587b19cb9eaaf157f13271cd-1721965710424.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x6985884c4392d348587b19cb9eaaf157f13271cd-1721965710424.png"
+ ],
+ "name": "LayerZero",
+ "symbol": "ZRO",
+ "marketCap": "30273537.014651866762832537",
+ "price": "1.13443141892464951896",
+ "priceChange24hPercent": "0",
+ "volume24h": "9361.22876423046205592",
+ "communityRecognized": true,
+ "key": "evm--42161:0x6985884c4392d348587b19cb9eaaf157f13271cd",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Arbitrum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--42161",
+ "address": "0x11cdb42b0eb46d95f990bedd4695a6e3fa034978",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x11cdb42b0eb46d95f990bedd4695a6e3fa034978.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x11cdb42b0eb46d95f990bedd4695a6e3fa034978.png"
+ ],
+ "name": "Curve DAO Token",
+ "symbol": "CRV",
+ "marketCap": "7023690.648108841229641943",
+ "price": "0.36256763767456545319",
+ "priceChange24hPercent": "-1.74",
+ "volume24h": "17198.46042753940251256",
+ "communityRecognized": true,
+ "key": "evm--42161:0x11cdb42b0eb46d95f990bedd4695a6e3fa034978",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Arbitrum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--42161",
+ "address": "0xfa7f8980b0f1e64a2062791cc3b0871572f1f7f0",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0xfa7f8980b0f1e64a2062791cc3b0871572f1f7f0.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0xfa7f8980b0f1e64a2062791cc3b0871572f1f7f0.png"
+ ],
+ "name": "Uniswap",
+ "symbol": "UNI",
+ "marketCap": "7198139.162124000350955165",
+ "price": "6.975687114045285319",
+ "priceChange24hPercent": "1.69",
+ "volume24h": "61599.95797196381727275",
+ "communityRecognized": true,
+ "key": "evm--42161:0xfa7f8980b0f1e64a2062791cc3b0871572f1f7f0",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Arbitrum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--42161",
+ "address": "0x4e200fe2f3efb977d5fd9c430a41531fb04d97b8",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x4e200fe2f3efb977d5fd9c430a41531fb04d97b8-1724720313181.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x4e200fe2f3efb977d5fd9c430a41531fb04d97b8-1724720313181.png"
+ ],
+ "name": "Orderly Network",
+ "symbol": "ORDER",
+ "marketCap": "395338.853829734703871074",
+ "price": "0.03388351962239447458",
+ "priceChange24hPercent": "0.95",
+ "volume24h": "2206.422567885185564",
+ "communityRecognized": true,
+ "key": "evm--42161:0x4e200fe2f3efb977d5fd9c430a41531fb04d97b8",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Arbitrum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--42161",
+ "address": "0xf197ffc28c23e0309b5559e7a166f2c6164c80aa",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0xf197ffc28c23e0309b5559e7a166f2c6164c80aa-1757710815737.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0xf197ffc28c23e0309b5559e7a166f2c6164c80aa-1757710815737.png"
+ ],
+ "name": "MXNB",
+ "symbol": "MXNB",
+ "marketCap": "1790982.539831641043253445",
+ "price": "0.05924019341647328138",
+ "priceChange24hPercent": "-0.07",
+ "volume24h": "11569.89798828469",
+ "communityRecognized": true,
+ "key": "evm--42161:0xf197ffc28c23e0309b5559e7a166f2c6164c80aa",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Arbitrum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--42161",
+ "address": "0x764a726d9ced0433a8d7643335919deb03a9a935",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x764a726d9ced0433a8d7643335919deb03a9a935-1724832900070.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x764a726d9ced0433a8d7643335919deb03a9a935-1724832900070.png"
+ ],
+ "name": "Pocket Network",
+ "symbol": "POKT",
+ "marketCap": "26555.793594618378611066",
+ "price": "0.00768153721316803285",
+ "priceChange24hPercent": "1.52",
+ "volume24h": "500.06968155404685",
+ "communityRecognized": true,
+ "key": "evm--42161:0x764a726d9ced0433a8d7643335919deb03a9a935",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Arbitrum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--42161",
+ "address": "0x6fbbbd8bfb1cd3986b1d05e7861a0f62f87db74b",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x6fbbbd8bfb1cd3986b1d05e7861a0f62f87db74b-1757710862100.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x6fbbbd8bfb1cd3986b1d05e7861a0f62f87db74b-1757710862100.png"
+ ],
+ "name": "Vision",
+ "symbol": "VSN",
+ "marketCap": "4060007.462251900086812706",
+ "price": "0.04051347640630231184",
+ "priceChange24hPercent": "0.31",
+ "volume24h": "183821.017376",
+ "communityRecognized": true,
+ "key": "evm--42161:0x6fbbbd8bfb1cd3986b1d05e7861a0f62f87db74b",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Arbitrum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--42161",
+ "address": "0x70f2eadf1ca1969ff42b0c78e9da519e8937cbaf",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x70f2eadf1ca1969ff42b0c78e9da519e8937cbaf-1778155221753.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x70f2eadf1ca1969ff42b0c78e9da519e8937cbaf-1778155221753.png"
+ ],
+ "name": "Edge",
+ "symbol": "EDGE",
+ "marketCap": "77546.748703124826188717",
+ "price": "0.595207182833753024",
+ "priceChange24hPercent": "4.16",
+ "volume24h": "5116.369006",
+ "communityRecognized": false,
+ "key": "evm--42161:0x70f2eadf1ca1969ff42b0c78e9da519e8937cbaf",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Arbitrum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--42161",
+ "address": "0x0c880f6761f1af8d9aa9c466984b80dab9a8c9e8",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x0c880f6761f1af8d9aa9c466984b80dab9a8c9e8.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x0c880f6761f1af8d9aa9c466984b80dab9a8c9e8.png"
+ ],
+ "name": "Pendle",
+ "symbol": "PENDLE",
+ "marketCap": "31736673.874710957304832133",
+ "price": "2.18917687182949833929",
+ "priceChange24hPercent": "-2.64",
+ "volume24h": "419322.639453446988790232",
+ "communityRecognized": true,
+ "key": "evm--42161:0x0c880f6761f1af8d9aa9c466984b80dab9a8c9e8",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Arbitrum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ }
+ ],
+ "trending|evm--42161|24h|all": [
+ {
+ "isNative": false,
+ "networkId": "evm--42161",
+ "address": "0x0c1c1c109fe34733fca54b82d7b46b75cfb71f6e",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x0c1c1c109fe34733fca54b82d7b46b75cfb71f6e-1775532435873.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x0c1c1c109fe34733fca54b82d7b46b75cfb71f6e-1775532435873.png"
+ ],
+ "name": "Chip",
+ "symbol": "CHIP",
+ "marketCap": "508894251.264119017641851862",
+ "price": "0.05088942512641190176",
+ "priceChange24hPercent": "-11.05",
+ "volume24h": "918539.942234562349819789",
+ "communityRecognized": true,
+ "key": "evm--42161:0x0c1c1c109fe34733fca54b82d7b46b75cfb71f6e",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Arbitrum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--42161",
+ "address": "0x3212dc0f8c834e4de893532d27cc9b6001684db0",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x3212dc0f8c834e4de893532d27cc9b6001684db0-1727935200067.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x3212dc0f8c834e4de893532d27cc9b6001684db0-1727935200067.png"
+ ],
+ "name": "Pear",
+ "symbol": "PEAR",
+ "marketCap": "6626424.598038379813811556",
+ "price": "0.0135427491609043494",
+ "priceChange24hPercent": "0.56",
+ "volume24h": "31791.67409942359112446",
+ "communityRecognized": false,
+ "key": "evm--42161:0x3212dc0f8c834e4de893532d27cc9b6001684db0",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Arbitrum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--42161",
+ "address": "0x55ff62567f09906a85183b866df84bf599a4bf70",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x55ff62567f09906a85183b866df84bf599a4bf70.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x55ff62567f09906a85183b866df84bf599a4bf70.png"
+ ],
+ "name": "Kromatika",
+ "symbol": "KROM",
+ "marketCap": "33412.686827224405245415",
+ "price": "0.0045312108008592817",
+ "priceChange24hPercent": "-3.01",
+ "volume24h": "3249.944924512778059",
+ "communityRecognized": false,
+ "key": "evm--42161:0x55ff62567f09906a85183b866df84bf599a4bf70",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Arbitrum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--42161",
+ "address": "0x4cb9a7ae498cedcbb5eae9f25736ae7d428c9d66",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x4cb9a7ae498cedcbb5eae9f25736ae7d428c9d66.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x4cb9a7ae498cedcbb5eae9f25736ae7d428c9d66.png"
+ ],
+ "name": "Xai",
+ "symbol": "XAI",
+ "marketCap": "16169573.756369843788767525",
+ "price": "0.00769817242054811653",
+ "priceChange24hPercent": "-1.28",
+ "volume24h": "1833.70064083146478335",
+ "communityRecognized": true,
+ "key": "evm--42161:0x4cb9a7ae498cedcbb5eae9f25736ae7d428c9d66",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Arbitrum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--42161",
+ "address": "0xf63b14f5ee5574e3f337b2796bbdf6dcfb4e2cb7",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0xf63b14f5ee5574e3f337b2796bbdf6dcfb4e2cb7-1757710924947.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0xf63b14f5ee5574e3f337b2796bbdf6dcfb4e2cb7-1757710924947.png"
+ ],
+ "name": "KIP Protocol",
+ "symbol": "KIP",
+ "marketCap": "33832.297151902617541054",
+ "price": "0.00001724762640453732",
+ "priceChange24hPercent": "-23.6",
+ "volume24h": "698.591348496140216",
+ "communityRecognized": false,
+ "key": "evm--42161:0xf63b14f5ee5574e3f337b2796bbdf6dcfb4e2cb7",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Arbitrum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--42161",
+ "address": "0xe93307b8faa1c9d5cae6f9fe96f91549fb651a20",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0xe93307b8faa1c9d5cae6f9fe96f91549fb651a20-1757710926440.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0xe93307b8faa1c9d5cae6f9fe96f91549fb651a20-1757710926440.png"
+ ],
+ "name": "Ontomir Chain",
+ "symbol": "OTM",
+ "marketCap": "14498704.24748112376300758",
+ "price": "0.01450314236714422484",
+ "priceChange24hPercent": "1.09",
+ "volume24h": "1915.73271512099",
+ "communityRecognized": false,
+ "key": "evm--42161:0xe93307b8faa1c9d5cae6f9fe96f91549fb651a20",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Arbitrum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--42161",
+ "address": "0x61a1ff55c5216b636a294a07d77c6f4df10d3b56",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x61a1ff55c5216b636a294a07d77c6f4df10d3b56.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x61a1ff55c5216b636a294a07d77c6f4df10d3b56.png"
+ ],
+ "name": "ApeX Token",
+ "symbol": "APEX",
+ "marketCap": "63385881.3344087087072126",
+ "price": "0.26018367874096263835",
+ "priceChange24hPercent": "-0.18",
+ "volume24h": "3687.2172390612522579",
+ "communityRecognized": true,
+ "key": "evm--42161:0x61a1ff55c5216b636a294a07d77c6f4df10d3b56",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Arbitrum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--42161",
+ "address": "0x785c6ea7ed61cc6ba159aa4f8b48070eea3e814f",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x785c6ea7ed61cc6ba159aa4f8b48070eea3e814f-1788444037857.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x785c6ea7ed61cc6ba159aa4f8b48070eea3e814f-1788444037857.png"
+ ],
+ "name": "Arbitrum Original Name",
+ "symbol": "ARBITRATION",
+ "marketCap": "19474.959938896017705613",
+ "price": "0.00001949925703719026",
+ "priceChange24hPercent": "-9.3",
+ "volume24h": "1152.11243385658363",
+ "communityRecognized": false,
+ "key": "evm--42161:0x785c6ea7ed61cc6ba159aa4f8b48070eea3e814f",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Arbitrum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--42161",
+ "address": "0x155f0dd04424939368972f4e1838687d6a831151",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x155f0dd04424939368972f4e1838687d6a831151.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x155f0dd04424939368972f4e1838687d6a831151.png"
+ ],
+ "name": "ArbiDoge",
+ "symbol": "ADoge",
+ "marketCap": "1031643.187999704402282144",
+ "price": "0.00000012895562417791",
+ "priceChange24hPercent": "89.15",
+ "volume24h": "135934.744997610804099658",
+ "communityRecognized": false,
+ "key": "evm--42161:0x155f0dd04424939368972f4e1838687d6a831151",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Arbitrum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--42161",
+ "address": "0x539bde0d7dbd336b79148aa742883198bbf60342",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x539bde0d7dbd336b79148aa742883198bbf60342.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x539bde0d7dbd336b79148aa742883198bbf60342.png"
+ ],
+ "name": "MAGIC",
+ "symbol": "MAGIC",
+ "marketCap": "14452691.267626230854837321",
+ "price": "0.04609731363893508407",
+ "priceChange24hPercent": "-2.42",
+ "volume24h": "11227.916295510089701031",
+ "communityRecognized": true,
+ "key": "evm--42161:0x539bde0d7dbd336b79148aa742883198bbf60342",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Arbitrum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--42161",
+ "address": "0x3bfff63ad8e058efbe939509d2353f7f13c5fd7b",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/8e4435c150cb4ada78ce019a188015bf30ad60f917245c32ac6f69eb9aea8dde",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/8e4435c150cb4ada78ce019a188015bf30ad60f917245c32ac6f69eb9aea8dde"
+ ],
+ "name": "Hunter Patrick",
+ "symbol": "PATRICK",
+ "marketCap": "5332.021934298386117514",
+ "price": "0.00000533202193429839",
+ "priceChange24hPercent": "3.38",
+ "volume24h": "678.407354653263444",
+ "communityRecognized": false,
+ "key": "evm--42161:0x3bfff63ad8e058efbe939509d2353f7f13c5fd7b",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Arbitrum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--42161",
+ "address": "0xba5ddd1f9d7f570dc94a51479a000e3bce967196",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0xba5ddd1f9d7f570dc94a51479a000e3bce967196-1730187900049.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0xba5ddd1f9d7f570dc94a51479a000e3bce967196-1730187900049.png"
+ ],
+ "name": "Aave Token",
+ "symbol": "AAVE",
+ "marketCap": "6647234.28374377825806918",
+ "price": "130.65192025812917367061",
+ "priceChange24hPercent": "-1.79",
+ "volume24h": "241891.363481710228785752",
+ "communityRecognized": true,
+ "key": "evm--42161:0xba5ddd1f9d7f570dc94a51479a000e3bce967196",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Arbitrum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--42161",
+ "address": "0xfc5a1a6eb076a2c7ad06ed22c90d7e710e35ad0a",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0xfc5a1a6eb076a2c7ad06ed22c90d7e710e35ad0a.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0xfc5a1a6eb076a2c7ad06ed22c90d7e710e35ad0a.png"
+ ],
+ "name": "GMX",
+ "symbol": "GMX",
+ "marketCap": "92939227.81910695297091323",
+ "price": "8.46009862290991960361",
+ "priceChange24hPercent": "7.56",
+ "volume24h": "470965.439235175953904733",
+ "communityRecognized": true,
+ "key": "evm--42161:0xfc5a1a6eb076a2c7ad06ed22c90d7e710e35ad0a",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Arbitrum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--42161",
+ "address": "0xfa38fa85186b721389b7051a60df1ad590a70ba3",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/4a563ac1c0cd1b7ed43429ee1ad5750a8ca22c0eaaa08d0427a8a86e8a2348f0",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/4a563ac1c0cd1b7ed43429ee1ad5750a8ca22c0eaaa08d0427a8a86e8a2348f0"
+ ],
+ "name": "First Deploy On Arbitrum",
+ "symbol": "FIRST",
+ "marketCap": "35095.849703212305470109",
+ "price": "0.00000035095849703212",
+ "priceChange24hPercent": "-17.75",
+ "volume24h": "2624.804711555109629587",
+ "communityRecognized": false,
+ "key": "evm--42161:0xfa38fa85186b721389b7051a60df1ad590a70ba3",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Arbitrum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--42161",
+ "address": "0x37a52a6da7b7e71c0da0b175b78687d5b040beea",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x37a52a6da7b7e71c0da0b175b78687d5b040beea-1788444135936.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x37a52a6da7b7e71c0da0b175b78687d5b040beea-1788444135936.png"
+ ],
+ "name": "Arbitration",
+ "symbol": "ARBITRATION",
+ "marketCap": "8459.636708484715868017",
+ "price": "0.00000845963670848472",
+ "priceChange24hPercent": "-25.17",
+ "volume24h": "919.09969139695181",
+ "communityRecognized": false,
+ "key": "evm--42161:0x37a52a6da7b7e71c0da0b175b78687d5b040beea",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Arbitrum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--42161",
+ "address": "0xe004f86692780ec2717ef402233fde9d23d654d8",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/001b4443aa4251ef1afd763fa2e5f4ac5e9650e5de92230c40b57b32250badeb",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/001b4443aa4251ef1afd763fa2e5f4ac5e9650e5de92230c40b57b32250badeb"
+ ],
+ "name": "Dylan Utility And Community Token",
+ "symbol": "DUCT",
+ "marketCap": "5322802.267597208374875373",
+ "price": "0.49285206181455633101",
+ "priceChange24hPercent": "-2.24",
+ "volume24h": "1780.070063",
+ "communityRecognized": false,
+ "key": "evm--42161:0xe004f86692780ec2717ef402233fde9d23d654d8",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Arbitrum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--42161",
+ "address": "0xb0f66bdb39acbb043308eb9dbe78f5bb47ea5430",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0xb0f66bdb39acbb043308eb9dbe78f5bb47ea5430-1744643626274.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0xb0f66bdb39acbb043308eb9dbe78f5bb47ea5430-1744643626274.png"
+ ],
+ "name": "Hydranet",
+ "symbol": "HDN",
+ "marketCap": "9081087.066145545025868755",
+ "price": "0.044379113947125",
+ "priceChange24hPercent": "-22.06",
+ "volume24h": "13177.1123170786086546",
+ "communityRecognized": true,
+ "key": "evm--42161:0xb0f66bdb39acbb043308eb9dbe78f5bb47ea5430",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Arbitrum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--42161",
+ "address": "0xc08cd26474722ce93f4d0c34d16201461c10aa8c",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0xc08cd26474722ce93f4d0c34d16201461c10aa8c-1728615600107.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0xc08cd26474722ce93f4d0c34d16201461c10aa8c-1728615600107.png"
+ ],
+ "name": "CARV",
+ "symbol": "CARV",
+ "marketCap": "5975453.973599458156404806",
+ "price": "0.03590759116894916672",
+ "priceChange24hPercent": "1.68",
+ "volume24h": "1183.7724603150653351",
+ "communityRecognized": true,
+ "key": "evm--42161:0xc08cd26474722ce93f4d0c34d16201461c10aa8c",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Arbitrum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--42161",
+ "address": "0x3b8db18e69d6686ad9371a423afe3dd1065c94f1",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x3b8db18e69d6686ad9371a423afe3dd1065c94f1-1770897698828.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x3b8db18e69d6686ad9371a423afe3dd1065c94f1-1770897698828.png"
+ ],
+ "name": "Espresso",
+ "symbol": "ESP",
+ "marketCap": "6687476.711883537129304927",
+ "price": "0.08811077978879592203",
+ "priceChange24hPercent": "-3.4",
+ "volume24h": "593660.9268",
+ "communityRecognized": true,
+ "key": "evm--42161:0x3b8db18e69d6686ad9371a423afe3dd1065c94f1",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Arbitrum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--42161",
+ "address": "0x25d887ce7a35172c62febfd67a1856f20faebb00",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x25d887ce7a35172c62febfd67a1856f20faebb00.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x25d887ce7a35172c62febfd67a1856f20faebb00.png"
+ ],
+ "name": "Pepe",
+ "symbol": "PEPE",
+ "marketCap": "489129.802625327578546894",
+ "price": "0.00000358107477298656",
+ "priceChange24hPercent": "0.13",
+ "volume24h": "820.24722719262504897",
+ "communityRecognized": true,
+ "key": "evm--42161:0x25d887ce7a35172c62febfd67a1856f20faebb00",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Arbitrum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--42161",
+ "address": "0x38f9bf9dce51833ec7f03c9dc218197999999999",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x38f9bf9dce51833ec7f03c9dc218197999999999-1725527883668.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x38f9bf9dce51833ec7f03c9dc218197999999999-1725527883668.png"
+ ],
+ "name": "Nya",
+ "symbol": "NYA",
+ "marketCap": "98766.184402125354228878",
+ "price": "0.00000005279361214116",
+ "priceChange24hPercent": "0.45",
+ "volume24h": "683.05643768515029",
+ "communityRecognized": false,
+ "key": "evm--42161:0x38f9bf9dce51833ec7f03c9dc218197999999999",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Arbitrum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--42161",
+ "address": "0x46850ad61c2b7d64d08c9c754f45254596696984",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x46850ad61c2b7d64d08c9c754f45254596696984-1757710832422.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x46850ad61c2b7d64d08c9c754f45254596696984-1757710832422.png"
+ ],
+ "name": "PayPal USD",
+ "symbol": "PYUSD",
+ "marketCap": "330793069.043443156557180605",
+ "price": "1.00094379917013639327",
+ "priceChange24hPercent": "0.14",
+ "volume24h": "7218.78465219283100836",
+ "communityRecognized": true,
+ "key": "evm--42161:0x46850ad61c2b7d64d08c9c754f45254596696984",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Arbitrum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--42161",
+ "address": "0x4a24b101728e07a52053c13fb4db2bcf490cabc3",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x4a24b101728e07a52053c13fb4db2bcf490cabc3-1731821400042.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x4a24b101728e07a52053c13fb4db2bcf490cabc3-1731821400042.png"
+ ],
+ "name": "Arbius",
+ "symbol": "AIUS",
+ "marketCap": "93716.589492248411611092",
+ "price": "0.29741762004007734539",
+ "priceChange24hPercent": "-2.94",
+ "volume24h": "562.50878918255861",
+ "communityRecognized": false,
+ "key": "evm--42161:0x4a24b101728e07a52053c13fb4db2bcf490cabc3",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Arbitrum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--42161",
+ "address": "0x6491c05a82219b8d1479057361ff1654749b876b",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x6491c05a82219b8d1479057361ff1654749b876b-1740406003460.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x6491c05a82219b8d1479057361ff1654749b876b-1740406003460.png"
+ ],
+ "name": "USDS Stablecoin",
+ "symbol": "USDS",
+ "marketCap": "99766513.932485329619852804",
+ "price": "1",
+ "priceChange24hPercent": "0",
+ "volume24h": "29710.712897",
+ "communityRecognized": true,
+ "key": "evm--42161:0x6491c05a82219b8d1479057361ff1654749b876b",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Arbitrum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--42161",
+ "address": "0x06e90a57d1ece8752d6ce92d1ad348ead5eae4f4",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x06e90a57d1ece8752d6ce92d1ad348ead5eae4f4-1721965710424.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x06e90a57d1ece8752d6ce92d1ad348ead5eae4f4-1721965710424.png"
+ ],
+ "name": "Real Smurf Cat",
+ "symbol": "шайлушай",
+ "marketCap": "7218.098663220908479347",
+ "price": "0.00000521708932321159",
+ "priceChange24hPercent": "-4.26",
+ "volume24h": "866.390909815153964",
+ "communityRecognized": false,
+ "key": "evm--42161:0x06e90a57d1ece8752d6ce92d1ad348ead5eae4f4",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Arbitrum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--42161",
+ "address": "0x9623063377ad1b27544c965ccd7342f7ea7e88c7",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x9623063377ad1b27544c965ccd7342f7ea7e88c7.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x9623063377ad1b27544c965ccd7342f7ea7e88c7.png"
+ ],
+ "name": "Graph Token",
+ "symbol": "GRT",
+ "marketCap": "67232424.034516182922398782",
+ "price": "0.01985957690951329285",
+ "priceChange24hPercent": "3.57",
+ "volume24h": "28444.941913545508999066",
+ "communityRecognized": true,
+ "key": "evm--42161:0x9623063377ad1b27544c965ccd7342f7ea7e88c7",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Arbitrum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--42161",
+ "address": "0xd74f5255d557944cf7dd0e45ff521520002d5748",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0xd74f5255d557944cf7dd0e45ff521520002d5748.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0xd74f5255d557944cf7dd0e45ff521520002d5748.png"
+ ],
+ "name": "Sperax USD",
+ "symbol": "USDs",
+ "marketCap": "514695.225822091205015705",
+ "price": "0.9996161638973387688",
+ "priceChange24hPercent": "0.02",
+ "volume24h": "560.714359282762164908",
+ "communityRecognized": false,
+ "key": "evm--42161:0xd74f5255d557944cf7dd0e45ff521520002d5748",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Arbitrum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--42161",
+ "address": "0x289ba1701c2f088cf0faf8b3705246331cb8a839",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x289ba1701c2f088cf0faf8b3705246331cb8a839.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x289ba1701c2f088cf0faf8b3705246331cb8a839.png"
+ ],
+ "name": "Livepeer Token",
+ "symbol": "LPT",
+ "marketCap": "55102696.596664608848262225",
+ "price": "1.48059396134498743063",
+ "priceChange24hPercent": "3.47",
+ "volume24h": "54154.008617366431231267",
+ "communityRecognized": true,
+ "key": "evm--42161:0x289ba1701c2f088cf0faf8b3705246331cb8a839",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Arbitrum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--42161",
+ "address": "0x3082cc23568ea640225c2467653db90e9250aaa0",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x3082cc23568ea640225c2467653db90e9250aaa0.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x3082cc23568ea640225c2467653db90e9250aaa0.png"
+ ],
+ "name": "Radiant",
+ "symbol": "RDNT",
+ "marketCap": "501016.269886953557180701",
+ "price": "0.00051932860140373297",
+ "priceChange24hPercent": "0.08",
+ "volume24h": "2115.393419769690675355",
+ "communityRecognized": false,
+ "key": "evm--42161:0x3082cc23568ea640225c2467653db90e9250aaa0",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Arbitrum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--42161",
+ "address": "0x6beadfcc25f6bc71c158a4bff85bf2f1746d2ca7",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x6beadfcc25f6bc71c158a4bff85bf2f1746d2ca7-1787234431476.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x6beadfcc25f6bc71c158a4bff85bf2f1746d2ca7-1787234431476.png"
+ ],
+ "name": "Arbitrum Dog",
+ "symbol": "MILES",
+ "marketCap": "66804.475191978796128863",
+ "price": "0.00006883627430631028",
+ "priceChange24hPercent": "-14.42",
+ "volume24h": "11916.11769425740413464",
+ "communityRecognized": false,
+ "key": "evm--42161:0x6beadfcc25f6bc71c158a4bff85bf2f1746d2ca7",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Arbitrum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--42161",
+ "address": "0xf97f4df75117a78c1a5a0dbb814af92458539fb4",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0xf97f4df75117a78c1a5a0dbb814af92458539fb4.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0xf97f4df75117a78c1a5a0dbb814af92458539fb4.png"
+ ],
+ "name": "ChainLink Token",
+ "symbol": "LINK",
+ "marketCap": "24572297.821287148828297363",
+ "price": "12.63515389871756360695",
+ "priceChange24hPercent": "-2.65",
+ "volume24h": "1085222.708385733398909609",
+ "communityRecognized": true,
+ "key": "evm--42161:0xf97f4df75117a78c1a5a0dbb814af92458539fb4",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Arbitrum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--42161",
+ "address": "0x55279f3c138521b0395bc8b76d123e94f1d935b2",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x55279f3c138521b0395bc8b76d123e94f1d935b2-1777896016692.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x55279f3c138521b0395bc8b76d123e94f1d935b2-1777896016692.png"
+ ],
+ "name": "BarkX Token",
+ "symbol": "BARKX",
+ "marketCap": "389124980.196245313336663946",
+ "price": "0.38912886781030959124",
+ "priceChange24hPercent": "0.07",
+ "volume24h": "1968.39397935333",
+ "communityRecognized": false,
+ "key": "evm--42161:0x55279f3c138521b0395bc8b76d123e94f1d935b2",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Arbitrum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--42161",
+ "address": "0x21dd43ae7e10c013a20fddd5a5d632bff340e96b",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x21dd43ae7e10c013a20fddd5a5d632bff340e96b-1788444023595.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x21dd43ae7e10c013a20fddd5a5d632bff340e96b-1788444023595.png"
+ ],
+ "name": "rainbow kitty",
+ "symbol": "KITTY",
+ "marketCap": "29770.755618654212230435",
+ "price": "0.00002977075561865421",
+ "priceChange24hPercent": "-36.57",
+ "volume24h": "3209.9812303034818799",
+ "communityRecognized": false,
+ "key": "evm--42161:0x21dd43ae7e10c013a20fddd5a5d632bff340e96b",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Arbitrum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--42161",
+ "address": "0x8d9ba570d6cb60c7e3e0f31343efe75ab8e65fb1",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x8d9ba570d6cb60c7e3e0f31343efe75ab8e65fb1.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x8d9ba570d6cb60c7e3e0f31343efe75ab8e65fb1.png"
+ ],
+ "name": "Governance OHM",
+ "symbol": "gOHM",
+ "marketCap": "2131361.512840803789728365",
+ "price": "5416.02832619891149335995",
+ "priceChange24hPercent": "-0.21",
+ "volume24h": "858.54785705585592",
+ "communityRecognized": false,
+ "key": "evm--42161:0x8d9ba570d6cb60c7e3e0f31343efe75ab8e65fb1",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Arbitrum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--42161",
+ "address": "0x4974e700f1deb8a6825a9bd87347a53d46378304",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x4974e700f1deb8a6825a9bd87347a53d46378304-1788444018543.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x4974e700f1deb8a6825a9bd87347a53d46378304-1788444018543.png"
+ ],
+ "name": "ArbiNYAN",
+ "symbol": "NYAN",
+ "marketCap": "36357.992613942747863931",
+ "price": "0.00003635799261394275",
+ "priceChange24hPercent": "-34.93",
+ "volume24h": "3599.6197441742306549",
+ "communityRecognized": false,
+ "key": "evm--42161:0x4974e700f1deb8a6825a9bd87347a53d46378304",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Arbitrum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--42161",
+ "address": "0x35ca1e5a9b1c09fa542fa18d1ba4d61c8edff852",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x35ca1e5a9b1c09fa542fa18d1ba4d61c8edff852.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x35ca1e5a9b1c09fa542fa18d1ba4d61c8edff852.png"
+ ],
+ "name": "Schrodi",
+ "symbol": "SCHRODI",
+ "marketCap": "93584.657466389675681009",
+ "price": "0.00238845434249565232",
+ "priceChange24hPercent": "2.06",
+ "volume24h": "998.5936192864862175",
+ "communityRecognized": false,
+ "key": "evm--42161:0x35ca1e5a9b1c09fa542fa18d1ba4d61c8edff852",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Arbitrum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--42161",
+ "address": "0x02f92800f57bcd74066f5709f1daa1a4302df875",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x02f92800f57bcd74066f5709f1daa1a4302df875-1734142549057.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x02f92800f57bcd74066f5709f1daa1a4302df875-1734142549057.png"
+ ],
+ "name": "Peapods",
+ "symbol": "PEAS",
+ "marketCap": "852835.393139048419156737",
+ "price": "2.06009093050198672783",
+ "priceChange24hPercent": "-1.75",
+ "volume24h": "3101.614476807563088",
+ "communityRecognized": false,
+ "key": "evm--42161:0x02f92800f57bcd74066f5709f1daa1a4302df875",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Arbitrum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--42161",
+ "address": "0x7b3ee24b4fbf4ec443058f88957ddf8fc51070fd",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x7b3ee24b4fbf4ec443058f88957ddf8fc51070fd-1788444154257.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x7b3ee24b4fbf4ec443058f88957ddf8fc51070fd-1788444154257.png"
+ ],
+ "name": "llamatrum",
+ "symbol": "LLAMATRUM",
+ "marketCap": "23568.11602669789116352",
+ "price": "0.00002356811602669789",
+ "priceChange24hPercent": "-8.27",
+ "volume24h": "4265.8702320091791628",
+ "communityRecognized": false,
+ "key": "evm--42161:0x7b3ee24b4fbf4ec443058f88957ddf8fc51070fd",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Arbitrum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--42161",
+ "address": "0xd7a892f28dedc74e6b7b33f93be08abfc394a360",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0xd7a892f28dedc74e6b7b33f93be08abfc394a360.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0xd7a892f28dedc74e6b7b33f93be08abfc394a360.png"
+ ],
+ "name": "Crypto Index Pool",
+ "symbol": "CIP",
+ "marketCap": "105073.649018303284356081",
+ "price": "0.01050736490183032844",
+ "priceChange24hPercent": "-8.1",
+ "volume24h": "1803.3920885233232703",
+ "communityRecognized": false,
+ "key": "evm--42161:0xd7a892f28dedc74e6b7b33f93be08abfc394a360",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Arbitrum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--42161",
+ "address": "0x1337420ded5adb9980cfc35f8f2b054ea86f8ab1",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x1337420ded5adb9980cfc35f8f2b054ea86f8ab1-1757710920821.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x1337420ded5adb9980cfc35f8f2b054ea86f8ab1-1757710920821.png"
+ ],
+ "name": "Subsquid",
+ "symbol": "SQD",
+ "marketCap": "45829594.199520642925710478",
+ "price": "0.0353538399622595066",
+ "priceChange24hPercent": "1.76",
+ "volume24h": "16786.285028782573597422",
+ "communityRecognized": true,
+ "key": "evm--42161:0x1337420ded5adb9980cfc35f8f2b054ea86f8ab1",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Arbitrum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--42161",
+ "address": "0x1b0b39772b9f5d36700cf6269ec5c901c357fe0a",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x1b0b39772b9f5d36700cf6269ec5c901c357fe0a-1788444143896.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x1b0b39772b9f5d36700cf6269ec5c901c357fe0a-1788444143896.png"
+ ],
+ "name": "Arbitrum Cat",
+ "symbol": "NOLA",
+ "marketCap": "11305.635173943647500484",
+ "price": "0.00001172175462606889",
+ "priceChange24hPercent": "2.27",
+ "volume24h": "739.873186257157992",
+ "communityRecognized": false,
+ "key": "evm--42161:0x1b0b39772b9f5d36700cf6269ec5c901c357fe0a",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Arbitrum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--42161",
+ "address": "0xbfc6620459762a6e485ebf1cf7e532e06253b62f",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0xbfc6620459762a6e485ebf1cf7e532e06253b62f-1758888031702.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0xbfc6620459762a6e485ebf1cf7e532e06253b62f-1758888031702.png"
+ ],
+ "name": "DAOcademy",
+ "symbol": "BURN",
+ "marketCap": "164423726.397815114031787121",
+ "price": "0.16442372751655939325",
+ "priceChange24hPercent": "-8.68",
+ "volume24h": "6339.067265",
+ "communityRecognized": false,
+ "key": "evm--42161:0xbfc6620459762a6e485ebf1cf7e532e06253b62f",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Arbitrum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--42161",
+ "address": "0x768d4b20869771a93946b5101a6a2e886f020c4e",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x768d4b20869771a93946b5101a6a2e886f020c4e-1787148086340.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x768d4b20869771a93946b5101a6a2e886f020c4e-1787148086340.png"
+ ],
+ "name": "Nola",
+ "symbol": "NOLA",
+ "marketCap": "129195.406437475016933982",
+ "price": "0.00013020424833405769",
+ "priceChange24hPercent": "-37.38",
+ "volume24h": "45683.05589549757529852",
+ "communityRecognized": false,
+ "key": "evm--42161:0x768d4b20869771a93946b5101a6a2e886f020c4e",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Arbitrum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--42161",
+ "address": "0xa057bf62b7760ae11d782dab5e081728bcda7017",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0xa057bf62b7760ae11d782dab5e081728bcda7017-1758888114809.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0xa057bf62b7760ae11d782dab5e081728bcda7017-1758888114809.png"
+ ],
+ "name": "TMX",
+ "symbol": "TMX",
+ "marketCap": "20186186.697454088923654171",
+ "price": "1.00930933487270444618",
+ "priceChange24hPercent": "-18.94",
+ "volume24h": "1946.5155699047",
+ "communityRecognized": false,
+ "key": "evm--42161:0xa057bf62b7760ae11d782dab5e081728bcda7017",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Arbitrum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--42161",
+ "address": "0x46777c76dbbe40fabb2aab99e33ce20058e76c59",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x46777c76dbbe40fabb2aab99e33ce20058e76c59-1757710811333.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x46777c76dbbe40fabb2aab99e33ce20058e76c59-1757710811333.png"
+ ],
+ "name": "Layer3",
+ "symbol": "L3",
+ "marketCap": "6412.084032053902711861",
+ "price": "0.00350028296654304905",
+ "priceChange24hPercent": "-5.09",
+ "volume24h": "1731.451103539445006485",
+ "communityRecognized": true,
+ "key": "evm--42161:0x46777c76dbbe40fabb2aab99e33ce20058e76c59",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Arbitrum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--42161",
+ "address": "0x5144443dabdaa076a215364f7d55f261dcae66cb",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x5144443dabdaa076a215364f7d55f261dcae66cb-1788444143896.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x5144443dabdaa076a215364f7d55f261dcae66cb-1788444143896.png"
+ ],
+ "name": "KISUNE",
+ "symbol": "KISUNE",
+ "marketCap": "15837.302610505766162991",
+ "price": "0.00001589381807545232",
+ "priceChange24hPercent": "-9.1",
+ "volume24h": "1713.887729681037484681",
+ "communityRecognized": false,
+ "key": "evm--42161:0x5144443dabdaa076a215364f7d55f261dcae66cb",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Arbitrum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--42161",
+ "address": "0xd77b108d4f6cefaa0cae9506a934e825becca46e",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0xd77b108d4f6cefaa0cae9506a934e825becca46e.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0xd77b108d4f6cefaa0cae9506a934e825becca46e.png"
+ ],
+ "name": "WINR",
+ "symbol": "WINR",
+ "marketCap": "2217302.11898435084970524",
+ "price": "0.00311085214646158907",
+ "priceChange24hPercent": "7.99",
+ "volume24h": "11537.216698658236936572",
+ "communityRecognized": false,
+ "key": "evm--42161:0xd77b108d4f6cefaa0cae9506a934e825becca46e",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Arbitrum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--42161",
+ "address": "0x07ecf4448d9a9e5538e9ec4f99584c34f5f59e1f",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/8356346777831140edc501f7c039ec2abceb49e4ee845cb86f3053a51d691863",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/8356346777831140edc501f7c039ec2abceb49e4ee845cb86f3053a51d691863"
+ ],
+ "name": "Arbiters",
+ "symbol": "Arbiters",
+ "marketCap": "9618.07275095134966631",
+ "price": "0.00000961807275095135",
+ "priceChange24hPercent": "3.8",
+ "volume24h": "746.86260649183641",
+ "communityRecognized": false,
+ "key": "evm--42161:0x07ecf4448d9a9e5538e9ec4f99584c34f5f59e1f",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Arbitrum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--42161",
+ "address": "0x45d9831d8751b2325f3dbf48db748723726e1c8c",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x45d9831d8751b2325f3dbf48db748723726e1c8c-1729731600083.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x45d9831d8751b2325f3dbf48db748723726e1c8c-1729731600083.png"
+ ],
+ "name": "EverValueCoin",
+ "symbol": "EVA",
+ "marketCap": "788137490.195577935467959369",
+ "price": "42.90448085830819672131",
+ "priceChange24hPercent": "0",
+ "volume24h": "87019.35260362388466324",
+ "communityRecognized": false,
+ "key": "evm--42161:0x45d9831d8751b2325f3dbf48db748723726e1c8c",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Arbitrum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--42161",
+ "address": "0x2416092f143378750bb29b79ed961ab195cceea5",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x2416092f143378750bb29b79ed961ab195cceea5.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x2416092f143378750bb29b79ed961ab195cceea5.png"
+ ],
+ "name": "Renzo Restaked ETH",
+ "symbol": "ezETH",
+ "marketCap": "4764363.742381796879957607",
+ "price": "2693.63179284874163709004",
+ "priceChange24hPercent": "-0.58",
+ "volume24h": "8846.2634504628320401",
+ "communityRecognized": false,
+ "key": "evm--42161:0x2416092f143378750bb29b79ed961ab195cceea5",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Arbitrum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--42161",
+ "address": "0x13a7dedb7169a17be92b0e3c7c2315b46f4772b3",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x13a7dedb7169a17be92b0e3c7c2315b46f4772b3.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x13a7dedb7169a17be92b0e3c7c2315b46f4772b3.png"
+ ],
+ "name": "Boop",
+ "symbol": "Boop",
+ "marketCap": "1190538.473958257656273895",
+ "price": "0.00001195350529697295",
+ "priceChange24hPercent": "11.75",
+ "volume24h": "10310.93230941847832329",
+ "communityRecognized": false,
+ "key": "evm--42161:0x13a7dedb7169a17be92b0e3c7c2315b46f4772b3",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Arbitrum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--42161",
+ "address": "0x37d5b1379f32c3d99b82e65fe71a9e498fe02a97",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/e5d074215722a4dfe148173744b349bcfb10f04ef9d6e0c9b70f00f71e1ab63f",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/e5d074215722a4dfe148173744b349bcfb10f04ef9d6e0c9b70f00f71e1ab63f"
+ ],
+ "name": "RickRoll",
+ "symbol": "RICKROLL",
+ "marketCap": "12171.918656302774044634",
+ "price": "0.00001217191865630277",
+ "priceChange24hPercent": "-37.74",
+ "volume24h": "2527.962205836508282",
+ "communityRecognized": false,
+ "key": "evm--42161:0x37d5b1379f32c3d99b82e65fe71a9e498fe02a97",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Arbitrum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--42161",
+ "address": "0x6efa9b8883dfb78fd75cd89d8474c44c3cbda469",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x6efa9b8883dfb78fd75cd89d8474c44c3cbda469-1757710918968.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x6efa9b8883dfb78fd75cd89d8474c44c3cbda469-1757710918968.png"
+ ],
+ "name": "DIA",
+ "symbol": "DIA",
+ "marketCap": "6465076.433496962284543805",
+ "price": "0.98808491522567703109",
+ "priceChange24hPercent": "-2.17",
+ "volume24h": "7176.83744206977",
+ "communityRecognized": false,
+ "key": "evm--42161:0x6efa9b8883dfb78fd75cd89d8474c44c3cbda469",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Arbitrum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--42161",
+ "address": "0x40461291347e1ecbb09499f3371d3f17f10d7159",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x40461291347e1ecbb09499f3371d3f17f10d7159-1779763671184.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x40461291347e1ecbb09499f3371d3f17f10d7159-1779763671184.png"
+ ],
+ "name": "XAUt0",
+ "symbol": "XAUt0",
+ "marketCap": "587901.935490545729166666",
+ "price": "4435.04599291666666666667",
+ "priceChange24hPercent": "0.83",
+ "volume24h": "3160.94552656077",
+ "communityRecognized": true,
+ "key": "evm--42161:0x40461291347e1ecbb09499f3371d3f17f10d7159",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Arbitrum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--42161",
+ "address": "0x3ed03e95dd894235090b3d4a49e0c3239edce59e",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x3ed03e95dd894235090b3d4a49e0c3239edce59e-1721965710424.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x3ed03e95dd894235090b3d4a49e0c3239edce59e-1721965710424.png"
+ ],
+ "name": "MYRC",
+ "symbol": "MYRC",
+ "marketCap": "1009559.105785801499943332",
+ "price": "0.24625863458842758628",
+ "priceChange24hPercent": "-0.21",
+ "volume24h": "11975.93768484153",
+ "communityRecognized": false,
+ "key": "evm--42161:0x3ed03e95dd894235090b3d4a49e0c3239edce59e",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Arbitrum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--42161",
+ "address": "0xcafcd85d8ca7ad1e1c6f82f651fa15e33aefd07b",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0xcafcd85d8ca7ad1e1c6f82f651fa15e33aefd07b.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0xcafcd85d8ca7ad1e1c6f82f651fa15e33aefd07b.png"
+ ],
+ "name": "Wootrade Network",
+ "symbol": "WOO",
+ "marketCap": "5577920.384921111537235997",
+ "price": "0.01167521549125799348",
+ "priceChange24hPercent": "-1.35",
+ "volume24h": "10226.29710388270347382",
+ "communityRecognized": true,
+ "key": "evm--42161:0xcafcd85d8ca7ad1e1c6f82f651fa15e33aefd07b",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Arbitrum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--42161",
+ "address": "0x1d1498166ddceee616a6d99868e1e0677300056f",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x1d1498166ddceee616a6d99868e1e0677300056f.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x1d1498166ddceee616a6d99868e1e0677300056f.png"
+ ],
+ "name": "xSpace Token",
+ "symbol": "xSPACE",
+ "marketCap": "22676.967330487382401474",
+ "price": "0.00185316579985400093",
+ "priceChange24hPercent": "-7.68",
+ "volume24h": "826.5066687675538756",
+ "communityRecognized": false,
+ "key": "evm--42161:0x1d1498166ddceee616a6d99868e1e0677300056f",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Arbitrum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--42161",
+ "address": "0x2ac2b254bc18cd4999f64773a966e4f4869c34ee",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x2ac2b254bc18cd4999f64773a966e4f4869c34ee.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x2ac2b254bc18cd4999f64773a966e4f4869c34ee.png"
+ ],
+ "name": "Penpie Token",
+ "symbol": "PNP",
+ "marketCap": "1905052.757956561115843216",
+ "price": "0.19788777604659666785",
+ "priceChange24hPercent": "0.73",
+ "volume24h": "1204.93447271314483867",
+ "communityRecognized": false,
+ "key": "evm--42161:0x2ac2b254bc18cd4999f64773a966e4f4869c34ee",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Arbitrum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--42161",
+ "address": "0x018d6a98555686be1ca5b6896ef6c42cf67e2bd1",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x018d6a98555686be1ca5b6896ef6c42cf67e2bd1-1787148176821.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x018d6a98555686be1ca5b6896ef6c42cf67e2bd1-1787148176821.png"
+ ],
+ "name": "ODYS",
+ "symbol": "ODYS",
+ "marketCap": "2098824.415097710825781924",
+ "price": "0.00227237588323107215",
+ "priceChange24hPercent": "-15.84",
+ "volume24h": "331141.746350486639411158",
+ "communityRecognized": false,
+ "key": "evm--42161:0x018d6a98555686be1ca5b6896ef6c42cf67e2bd1",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Arbitrum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--42161",
+ "address": "0xff7f8f301f7a706e3cfd3d2275f5dc0b9ee8009b",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0xff7f8f301f7a706e3cfd3d2275f5dc0b9ee8009b-1762171246720.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0xff7f8f301f7a706e3cfd3d2275f5dc0b9ee8009b-1762171246720.png"
+ ],
+ "name": "Folks Finance",
+ "symbol": "FOLKS",
+ "marketCap": "29028.994156739151370399",
+ "price": "2.00088373189560330351",
+ "priceChange24hPercent": "1.19",
+ "volume24h": "856.224665",
+ "communityRecognized": true,
+ "key": "evm--42161:0xff7f8f301f7a706e3cfd3d2275f5dc0b9ee8009b",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Arbitrum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--42161",
+ "address": "0xa78d8321b20c4ef90ecd72f2588aa985a4bdb684",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0xa78d8321b20c4ef90ecd72f2588aa985a4bdb684-1757710835027.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0xa78d8321b20c4ef90ecd72f2588aa985a4bdb684-1757710835027.png"
+ ],
+ "name": "Autonomi",
+ "symbol": "ANT",
+ "marketCap": "12551149.011426415098319624",
+ "price": "0.03677332878221718571",
+ "priceChange24hPercent": "-1.26",
+ "volume24h": "10928.353636",
+ "communityRecognized": true,
+ "key": "evm--42161:0xa78d8321b20c4ef90ecd72f2588aa985a4bdb684",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Arbitrum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--42161",
+ "address": "0x09199d9a5f4448d0848e4395d065e1ad9c4a1f74",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x09199d9a5f4448d0848e4395d065e1ad9c4a1f74.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x09199d9a5f4448d0848e4395d065e1ad9c4a1f74.png"
+ ],
+ "name": "Bonk",
+ "symbol": "Bonk",
+ "marketCap": "41119.356963848175023069",
+ "price": "0.00000314195512469096",
+ "priceChange24hPercent": "0.49",
+ "volume24h": "531.884897621274952",
+ "communityRecognized": true,
+ "key": "evm--42161:0x09199d9a5f4448d0848e4395d065e1ad9c4a1f74",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Arbitrum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--42161",
+ "address": "0x6694340fc020c5e6b96567843da2df01b2ce1eb6",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x6694340fc020c5e6b96567843da2df01b2ce1eb6.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x6694340fc020c5e6b96567843da2df01b2ce1eb6.png"
+ ],
+ "name": "StargateToken",
+ "symbol": "STG",
+ "marketCap": "1755611.398811649906572112",
+ "price": "0.1633803765089336477",
+ "priceChange24hPercent": "-3.12",
+ "volume24h": "2207.340438640139828627",
+ "communityRecognized": true,
+ "key": "evm--42161:0x6694340fc020c5e6b96567843da2df01b2ce1eb6",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Arbitrum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--42161",
+ "address": "0xf1a88250532a4a66a2420a8cbb434da82e1e2ca1",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0xf1a88250532a4a66a2420a8cbb434da82e1e2ca1-1757710819094.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0xf1a88250532a4a66a2420a8cbb434da82e1e2ca1-1757710819094.png"
+ ],
+ "name": "agETHWrapper",
+ "symbol": "agETH",
+ "marketCap": "114898.314267213264376304",
+ "price": "2550.92901786897159950072",
+ "priceChange24hPercent": "0.65",
+ "volume24h": "710.0739557420964733",
+ "communityRecognized": false,
+ "key": "evm--42161:0xf1a88250532a4a66a2420a8cbb434da82e1e2ca1",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Arbitrum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--42161",
+ "address": "0x354a6da3fcde098f8389cad84b0182725c6c91de",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x354a6da3fcde098f8389cad84b0182725c6c91de.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x354a6da3fcde098f8389cad84b0182725c6c91de.png"
+ ],
+ "name": "Compound",
+ "symbol": "COMP",
+ "marketCap": "194242.572696285191427466",
+ "price": "21.01546896192997093494",
+ "priceChange24hPercent": "4.33",
+ "volume24h": "598.41923930963024421",
+ "communityRecognized": true,
+ "key": "evm--42161:0x354a6da3fcde098f8389cad84b0182725c6c91de",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Arbitrum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--42161",
+ "address": "0x12c2de43878fb1a06c1ead481f11e0c693a719c7",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x12c2de43878fb1a06c1ead481f11e0c693a719c7-1787839253326.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x12c2de43878fb1a06c1ead481f11e0c693a719c7-1787839253326.png"
+ ],
+ "name": "DGrid AI",
+ "symbol": "DGAI",
+ "marketCap": "138776.650429957423403476",
+ "price": "0.76042051299130562656",
+ "priceChange24hPercent": "-3.29",
+ "volume24h": "24923.60714754198",
+ "communityRecognized": false,
+ "key": "evm--42161:0x12c2de43878fb1a06c1ead481f11e0c693a719c7",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Arbitrum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--42161",
+ "address": "0x11e969e9b3f89cb16d686a03cd8508c9fc0361af",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x11e969e9b3f89cb16d686a03cd8508c9fc0361af-1722405600166.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x11e969e9b3f89cb16d686a03cd8508c9fc0361af-1722405600166.png"
+ ],
+ "name": "Axelar Wrapped LAVA",
+ "symbol": "LAVA",
+ "marketCap": "4008753.952315927471404755",
+ "price": "0.0198693598066631468",
+ "priceChange24hPercent": "3.47",
+ "volume24h": "69317.888040306403650972",
+ "communityRecognized": true,
+ "key": "evm--42161:0x11e969e9b3f89cb16d686a03cd8508c9fc0361af",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Arbitrum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--42161",
+ "address": "0x88a269df8fe7f53e590c561954c52fccc8ec0cfb",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x88a269df8fe7f53e590c561954c52fccc8ec0cfb.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x88a269df8fe7f53e590c561954c52fccc8ec0cfb.png"
+ ],
+ "name": "Ninja Squad Token",
+ "symbol": "NST",
+ "marketCap": "5033779.170913142883192011",
+ "price": "1.34581253099304675466",
+ "priceChange24hPercent": "-2.7",
+ "volume24h": "11596.8009166665543374",
+ "communityRecognized": true,
+ "key": "evm--42161:0x88a269df8fe7f53e590c561954c52fccc8ec0cfb",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Arbitrum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--42161",
+ "address": "0x3d9907f9a368ad0a51be60f7da3b97cf940982d8",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x3d9907f9a368ad0a51be60f7da3b97cf940982d8.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x3d9907f9a368ad0a51be60f7da3b97cf940982d8.png"
+ ],
+ "name": "Camelot token",
+ "symbol": "GRAIL",
+ "marketCap": "1120713.632591532004884205",
+ "price": "41.74602062512149253293",
+ "priceChange24hPercent": "-3.34",
+ "volume24h": "4359.273714328568883916",
+ "communityRecognized": false,
+ "key": "evm--42161:0x3d9907f9a368ad0a51be60f7da3b97cf940982d8",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Arbitrum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--42161",
+ "address": "0x13ad51ed4f1b7e9dc168d8a00cb3f4ddd85efa60",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x13ad51ed4f1b7e9dc168d8a00cb3f4ddd85efa60.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x13ad51ed4f1b7e9dc168d8a00cb3f4ddd85efa60.png"
+ ],
+ "name": "Lido DAO Token",
+ "symbol": "LDO",
+ "marketCap": "642809.302583038521921132",
+ "price": "0.39202826763761491353",
+ "priceChange24hPercent": "-2.4",
+ "volume24h": "23757.655176761473497",
+ "communityRecognized": true,
+ "key": "evm--42161:0x13ad51ed4f1b7e9dc168d8a00cb3f4ddd85efa60",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Arbitrum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--42161",
+ "address": "0x5e7d1e09146bf69e88975f279cee75b359da7606",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x5e7d1e09146bf69e88975f279cee75b359da7606-1788444002452.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x5e7d1e09146bf69e88975f279cee75b359da7606-1788444002452.png"
+ ],
+ "name": "Odyssey",
+ "symbol": "ODYSSEY",
+ "marketCap": "16583.012251186173873714",
+ "price": "0.00001658301225118617",
+ "priceChange24hPercent": "-21.69",
+ "volume24h": "740.73252063152089",
+ "communityRecognized": false,
+ "key": "evm--42161:0x5e7d1e09146bf69e88975f279cee75b359da7606",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Arbitrum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--42161",
+ "address": "0x7189fb5b6504bbff6a852b13b7b82a3c118fdc27",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x7189fb5b6504bbff6a852b13b7b82a3c118fdc27-1725608700102.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x7189fb5b6504bbff6a852b13b7b82a3c118fdc27-1725608700102.png"
+ ],
+ "name": "ether.fi governance token",
+ "symbol": "ETHFI",
+ "marketCap": "4368951.962322253775535884",
+ "price": "0.58139539783106568428",
+ "priceChange24hPercent": "2.15",
+ "volume24h": "42543.642591590381828253",
+ "communityRecognized": true,
+ "key": "evm--42161:0x7189fb5b6504bbff6a852b13b7b82a3c118fdc27",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Arbitrum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--42161",
+ "address": "0xec70dcb4a1efa46b8f2d97c310c9c4790ba5ffa8",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0xec70dcb4a1efa46b8f2d97c310c9c4790ba5ffa8.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0xec70dcb4a1efa46b8f2d97c310c9c4790ba5ffa8.png"
+ ],
+ "name": "Rocket Pool ETH",
+ "symbol": "rETH",
+ "marketCap": "12910584.693706639301067408",
+ "price": "2911.50391931770106431134",
+ "priceChange24hPercent": "0.07",
+ "volume24h": "11572.424598354541392774",
+ "communityRecognized": false,
+ "key": "evm--42161:0xec70dcb4a1efa46b8f2d97c310c9c4790ba5ffa8",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Arbitrum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--42161",
+ "address": "0x31e22e11124c907eadc5248314c56f504bca70a1",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/667495fccd45b33585b0fc6e2bef89faeecf6a7f6e2955e75490b546623ad30c",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/667495fccd45b33585b0fc6e2bef89faeecf6a7f6e2955e75490b546623ad30c"
+ ],
+ "name": "Make Arbitrum Great Again",
+ "symbol": "MAGA",
+ "marketCap": "10799.952557556201676775",
+ "price": "0.00001081162495856033",
+ "priceChange24hPercent": "-1.93",
+ "volume24h": "700.30770918903296",
+ "communityRecognized": false,
+ "key": "evm--42161:0x31e22e11124c907eadc5248314c56f504bca70a1",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Arbitrum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--42161",
+ "address": "0xc87b37a581ec3257b734886d9d3a581f5a9d056c",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0xc87b37a581ec3257b734886d9d3a581f5a9d056c-1721965710424.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0xc87b37a581ec3257b734886d9d3a581f5a9d056c-1721965710424.png"
+ ],
+ "name": "Aethir Token",
+ "symbol": "ATH",
+ "marketCap": "16503708.171423844176464432",
+ "price": "0.00485709691084718493",
+ "priceChange24hPercent": "4.42",
+ "volume24h": "55052.66581009133455152",
+ "communityRecognized": true,
+ "key": "evm--42161:0xc87b37a581ec3257b734886d9d3a581f5a9d056c",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Arbitrum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--42161",
+ "address": "0x09e18590e8f76b6cf471b3cd75fe1a1a9d2b2c2b",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x09e18590e8f76b6cf471b3cd75fe1a1a9d2b2c2b.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x09e18590e8f76b6cf471b3cd75fe1a1a9d2b2c2b.png"
+ ],
+ "name": "AIDOGE",
+ "symbol": "AIDOGE",
+ "marketCap": "2042101.293381646181995312",
+ "price": "0.00000000001170554466",
+ "priceChange24hPercent": "-0.92",
+ "volume24h": "2403.632965887296591279",
+ "communityRecognized": true,
+ "key": "evm--42161:0x09e18590e8f76b6cf471b3cd75fe1a1a9d2b2c2b",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Arbitrum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--42161",
+ "address": "0x7f9fbf9bdd3f4105c478b996b648fe6e828a1e98",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x7f9fbf9bdd3f4105c478b996b648fe6e828a1e98-1757710890936.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x7f9fbf9bdd3f4105c478b996b648fe6e828a1e98-1757710890936.png"
+ ],
+ "name": "ApeCoin",
+ "symbol": "APE",
+ "marketCap": "1255447.805854874312494248",
+ "price": "0.14468481827062816675",
+ "priceChange24hPercent": "1.79",
+ "volume24h": "40735.352243110147208114",
+ "communityRecognized": false,
+ "key": "evm--42161:0x7f9fbf9bdd3f4105c478b996b648fe6e828a1e98",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Arbitrum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--42161",
+ "address": "0x6c84a8f1c29108f47a79964b5fe888d4f4d0de40",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x6c84a8f1c29108f47a79964b5fe888d4f4d0de40.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x6c84a8f1c29108f47a79964b5fe888d4f4d0de40.png"
+ ],
+ "name": "Arbitrum tBTC v2",
+ "symbol": "tBTC",
+ "marketCap": "7742238.644706631209182891",
+ "price": "78812.45926109961927074949",
+ "priceChange24hPercent": "-0.96",
+ "volume24h": "142008.084792781149231303",
+ "communityRecognized": true,
+ "key": "evm--42161:0x6c84a8f1c29108f47a79964b5fe888d4f4d0de40",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Arbitrum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--42161",
+ "address": "0x32a996b4f9c464b76faf0c4991b91c4aa18459f9",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x32a996b4f9c464b76faf0c4991b91c4aa18459f9-1787234418964.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x32a996b4f9c464b76faf0c4991b91c4aa18459f9-1787234418964.png"
+ ],
+ "name": "Arbitrum Pepe",
+ "symbol": "ARBI",
+ "marketCap": "19033.230969695089560474",
+ "price": "0.00001948149935253948",
+ "priceChange24hPercent": "-18.3",
+ "volume24h": "1205.55951189373718254",
+ "communityRecognized": false,
+ "key": "evm--42161:0x32a996b4f9c464b76faf0c4991b91c4aa18459f9",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Arbitrum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--42161",
+ "address": "0xd3af44bde72976c8e930b73c0228609434536037",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0xd3af44bde72976c8e930b73c0228609434536037-1757710924947.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0xd3af44bde72976c8e930b73c0228609434536037-1757710924947.png"
+ ],
+ "name": "Nola the Arb cat",
+ "symbol": "NOLA",
+ "marketCap": "17659.50976129998868419",
+ "price": "0.00000004197748879531",
+ "priceChange24hPercent": "15.95",
+ "volume24h": "841.4013134725064928",
+ "communityRecognized": false,
+ "key": "evm--42161:0xd3af44bde72976c8e930b73c0228609434536037",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Arbitrum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--42161",
+ "address": "0xbfbcfe8873fe28dfa25f1099282b088d52bbad9c",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0xbfbcfe8873fe28dfa25f1099282b088d52bbad9c.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0xbfbcfe8873fe28dfa25f1099282b088d52bbad9c.png"
+ ],
+ "name": "Equilibria Token",
+ "symbol": "EQB",
+ "marketCap": "2729428.024320068755886178",
+ "price": "0.09044694690968462614",
+ "priceChange24hPercent": "5.68",
+ "volume24h": "10203.6079429206258929",
+ "communityRecognized": false,
+ "key": "evm--42161:0xbfbcfe8873fe28dfa25f1099282b088d52bbad9c",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Arbitrum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--42161",
+ "address": "0x4f604735c1cf31399c6e711d5962b2b3e0225ad3",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x4f604735c1cf31399c6e711d5962b2b3e0225ad3.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x4f604735c1cf31399c6e711d5962b2b3e0225ad3.png"
+ ],
+ "name": "Glo Dollar",
+ "symbol": "USDGLO",
+ "marketCap": "69610.099693059236487201",
+ "price": "0.99731206445390933569",
+ "priceChange24hPercent": "0",
+ "volume24h": "570.331086",
+ "communityRecognized": false,
+ "key": "evm--42161:0x4f604735c1cf31399c6e711d5962b2b3e0225ad3",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Arbitrum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--42161",
+ "address": "0x25118290e6a5f4139381d072181157035864099d",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x25118290e6a5f4139381d072181157035864099d-1757710924947.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x25118290e6a5f4139381d072181157035864099d-1757710924947.png"
+ ],
+ "name": "RAIN",
+ "symbol": "RAIN",
+ "marketCap": "11541089900.561632556761781838",
+ "price": "0.01627318307034835231",
+ "priceChange24hPercent": "-2.31",
+ "volume24h": "1134443.652039829437488924",
+ "communityRecognized": true,
+ "key": "evm--42161:0x25118290e6a5f4139381d072181157035864099d",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Arbitrum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--42161",
+ "address": "0x092baadb7def4c3981454dd9c0a0d7ff07bcfc86",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x092baadb7def4c3981454dd9c0a0d7ff07bcfc86.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x092baadb7def4c3981454dd9c0a0d7ff07bcfc86.png"
+ ],
+ "name": "MOR",
+ "symbol": "MOR",
+ "marketCap": "5933377.061531320325789881",
+ "price": "1.94021021351471402509",
+ "priceChange24hPercent": "-0.9",
+ "volume24h": "14209.792066099576033882",
+ "communityRecognized": false,
+ "key": "evm--42161:0x092baadb7def4c3981454dd9c0a0d7ff07bcfc86",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Arbitrum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--42161",
+ "address": "0x7e7a7c916c19a45769f6bdaf91087f93c6c12f78",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x7e7a7c916c19a45769f6bdaf91087f93c6c12f78-1727315100322.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x7e7a7c916c19a45769f6bdaf91087f93c6c12f78-1727315100322.png"
+ ],
+ "name": "Eigenpie",
+ "symbol": "EGP",
+ "marketCap": "176698.545652822490926718",
+ "price": "0.03019960205894982928",
+ "priceChange24hPercent": "-5.89",
+ "volume24h": "636.88315113556541517",
+ "communityRecognized": false,
+ "key": "evm--42161:0x7e7a7c916c19a45769f6bdaf91087f93c6c12f78",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Arbitrum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--42161",
+ "address": "0x1b896893dfc86bb67cf57767298b9073d2c1ba2c",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x1b896893dfc86bb67cf57767298b9073d2c1ba2c-1724912307590.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x1b896893dfc86bb67cf57767298b9073d2c1ba2c-1724912307590.png"
+ ],
+ "name": "PancakeSwap Token",
+ "symbol": "Cake",
+ "marketCap": "369627.789656010860936126",
+ "price": "2.2308467702452560381",
+ "priceChange24hPercent": "2.29",
+ "volume24h": "78077.751834374965239337",
+ "communityRecognized": true,
+ "key": "evm--42161:0x1b896893dfc86bb67cf57767298b9073d2c1ba2c",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Arbitrum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--42161",
+ "address": "0xcb8b5cd20bdcaea9a010ac1f8d835824f5c87a04",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0xcb8b5cd20bdcaea9a010ac1f8d835824f5c87a04-1721965710424.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0xcb8b5cd20bdcaea9a010ac1f8d835824f5c87a04-1721965710424.png"
+ ],
+ "name": "CoW Protocol Token",
+ "symbol": "COW",
+ "marketCap": "111959.178961314059472693",
+ "price": "0.13166228195570536562",
+ "priceChange24hPercent": "1.24",
+ "volume24h": "1963.2184693131569567",
+ "communityRecognized": true,
+ "key": "evm--42161:0xcb8b5cd20bdcaea9a010ac1f8d835824f5c87a04",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Arbitrum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--42161",
+ "address": "0x6985884c4392d348587b19cb9eaaf157f13271cd",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x6985884c4392d348587b19cb9eaaf157f13271cd-1721965710424.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x6985884c4392d348587b19cb9eaaf157f13271cd-1721965710424.png"
+ ],
+ "name": "LayerZero",
+ "symbol": "ZRO",
+ "marketCap": "30273537.014651866762832537",
+ "price": "1.13443141892464951896",
+ "priceChange24hPercent": "4.85",
+ "volume24h": "101352.458239946686887181",
+ "communityRecognized": true,
+ "key": "evm--42161:0x6985884c4392d348587b19cb9eaaf157f13271cd",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Arbitrum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--42161",
+ "address": "0xfeb4dfc8c4cf7ed305bb08065d08ec6ee6728429",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0xfeb4dfc8c4cf7ed305bb08065d08ec6ee6728429-1757710882317.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0xfeb4dfc8c4cf7ed305bb08065d08ec6ee6728429-1757710882317.png"
+ ],
+ "name": "Paxos Gold",
+ "symbol": "PAXG",
+ "marketCap": "56249.609189319542019961",
+ "price": "4371.56298135646237443535",
+ "priceChange24hPercent": "0.2",
+ "volume24h": "785.954371",
+ "communityRecognized": false,
+ "key": "evm--42161:0xfeb4dfc8c4cf7ed305bb08065d08ec6ee6728429",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Arbitrum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--42161",
+ "address": "0x11cdb42b0eb46d95f990bedd4695a6e3fa034978",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x11cdb42b0eb46d95f990bedd4695a6e3fa034978.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x11cdb42b0eb46d95f990bedd4695a6e3fa034978.png"
+ ],
+ "name": "Curve DAO Token",
+ "symbol": "CRV",
+ "marketCap": "7023690.648108841229641943",
+ "price": "0.36256763767456545319",
+ "priceChange24hPercent": "-6.37",
+ "volume24h": "148585.189506728043972942",
+ "communityRecognized": true,
+ "key": "evm--42161:0x11cdb42b0eb46d95f990bedd4695a6e3fa034978",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Arbitrum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--42161",
+ "address": "0xd4d42f0b6def4ce0383636770ef773390d85c61a",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0xd4d42f0b6def4ce0383636770ef773390d85c61a.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0xd4d42f0b6def4ce0383636770ef773390d85c61a.png"
+ ],
+ "name": "SushiToken",
+ "symbol": "SUSHI",
+ "marketCap": "303313.450830809361090098",
+ "price": "0.2349355736060361049",
+ "priceChange24hPercent": "-0.77",
+ "volume24h": "1046.08976859543025123",
+ "communityRecognized": true,
+ "key": "evm--42161:0xd4d42f0b6def4ce0383636770ef773390d85c61a",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Arbitrum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--42161",
+ "address": "0xfa7f8980b0f1e64a2062791cc3b0871572f1f7f0",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0xfa7f8980b0f1e64a2062791cc3b0871572f1f7f0.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0xfa7f8980b0f1e64a2062791cc3b0871572f1f7f0.png"
+ ],
+ "name": "Uniswap",
+ "symbol": "UNI",
+ "marketCap": "7198139.162124000350955165",
+ "price": "6.975687114045285319",
+ "priceChange24hPercent": "-0.27",
+ "volume24h": "382252.319007389896350143",
+ "communityRecognized": true,
+ "key": "evm--42161:0xfa7f8980b0f1e64a2062791cc3b0871572f1f7f0",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Arbitrum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--42161",
+ "address": "0x4e200fe2f3efb977d5fd9c430a41531fb04d97b8",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x4e200fe2f3efb977d5fd9c430a41531fb04d97b8-1724720313181.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x4e200fe2f3efb977d5fd9c430a41531fb04d97b8-1724720313181.png"
+ ],
+ "name": "Orderly Network",
+ "symbol": "ORDER",
+ "marketCap": "395338.853829734703871074",
+ "price": "0.03388351962239447458",
+ "priceChange24hPercent": "-1.85",
+ "volume24h": "7666.894736254276206",
+ "communityRecognized": true,
+ "key": "evm--42161:0x4e200fe2f3efb977d5fd9c430a41531fb04d97b8",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Arbitrum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--42161",
+ "address": "0xf197ffc28c23e0309b5559e7a166f2c6164c80aa",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0xf197ffc28c23e0309b5559e7a166f2c6164c80aa-1757710815737.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0xf197ffc28c23e0309b5559e7a166f2c6164c80aa-1757710815737.png"
+ ],
+ "name": "MXNB",
+ "symbol": "MXNB",
+ "marketCap": "1790982.539831641043253445",
+ "price": "0.05924019341647328138",
+ "priceChange24hPercent": "-0.06",
+ "volume24h": "11588.05053528469",
+ "communityRecognized": true,
+ "key": "evm--42161:0xf197ffc28c23e0309b5559e7a166f2c6164c80aa",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Arbitrum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--42161",
+ "address": "0x764a726d9ced0433a8d7643335919deb03a9a935",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x764a726d9ced0433a8d7643335919deb03a9a935-1724832900070.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--42161/tokens/address-0x764a726d9ced0433a8d7643335919deb03a9a935-1724832900070.png"
+ ],
+ "name": "Pocket Network",
+ "symbol": "POKT",
+ "marketCap": "26555.793594618378611066",
+ "price": "0.00768153721316803285",
+ "priceChange24hPercent": "-0.29",
+ "volume24h": "1208.28586325763055",
+ "communityRecognized": true,
+ "key": "evm--42161:0x764a726d9ced0433a8d7643335919deb03a9a935",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Arbitrum",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/arbitrum.png"
+ }
+ ],
+ "trending|evm--10|5m|all": [
+ {
+ "isNative": false,
+ "networkId": "evm--10",
+ "address": "0x9560e827af36c94d2ac33a39bce1fe78631088db",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--10/tokens/address-0x9560e827af36c94d2ac33a39bce1fe78631088db.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--10/tokens/address-0x9560e827af36c94d2ac33a39bce1fe78631088db.png"
+ ],
+ "name": "VelodromeV2",
+ "symbol": "VELO",
+ "marketCap": "25917076.149564967999627505",
+ "price": "0.02831840585888096192",
+ "priceChange24hPercent": "1.08",
+ "volume24h": "566.287292632811842828",
+ "communityRecognized": true,
+ "key": "evm--10:0x9560e827af36c94d2ac33a39bce1fe78631088db",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Optimism",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/optimism.png"
+ }
+ ],
+ "trending|evm--10|1h|all": [
+ {
+ "isNative": false,
+ "networkId": "evm--10",
+ "address": "0x6985884c4392d348587b19cb9eaaf157f13271cd",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--10/tokens/address-0x6985884c4392d348587b19cb9eaaf157f13271cd-1721965703643.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--10/tokens/address-0x6985884c4392d348587b19cb9eaaf157f13271cd-1721965703643.png"
+ ],
+ "name": "LayerZero",
+ "symbol": "ZRO",
+ "marketCap": "5460332.739188066036985872",
+ "price": "1.13509788320369447826",
+ "priceChange24hPercent": "0.66",
+ "volume24h": "3658.362438671552350776",
+ "communityRecognized": true,
+ "key": "evm--10:0x6985884c4392d348587b19cb9eaaf157f13271cd",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Optimism",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/optimism.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--10",
+ "address": "0x8700daec35af8ff88c16bdf0418774cb3d7599b4",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--10/tokens/address-0x8700daec35af8ff88c16bdf0418774cb3d7599b4.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--10/tokens/address-0x8700daec35af8ff88c16bdf0418774cb3d7599b4.png"
+ ],
+ "name": "Synthetix Network Token",
+ "symbol": "SNX",
+ "marketCap": "7203825.158060332406936461",
+ "price": "0.22341208973883970495",
+ "priceChange24hPercent": "0.36",
+ "volume24h": "992.103634505391906767",
+ "communityRecognized": true,
+ "key": "evm--10:0x8700daec35af8ff88c16bdf0418774cb3d7599b4",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Optimism",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/optimism.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--10",
+ "address": "0x9560e827af36c94d2ac33a39bce1fe78631088db",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--10/tokens/address-0x9560e827af36c94d2ac33a39bce1fe78631088db.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--10/tokens/address-0x9560e827af36c94d2ac33a39bce1fe78631088db.png"
+ ],
+ "name": "VelodromeV2",
+ "symbol": "VELO",
+ "marketCap": "25917076.149564967999627505",
+ "price": "0.02831840585888096192",
+ "priceChange24hPercent": "2.74",
+ "volume24h": "20339.42731833434106652",
+ "communityRecognized": true,
+ "key": "evm--10:0x9560e827af36c94d2ac33a39bce1fe78631088db",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Optimism",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/optimism.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--10",
+ "address": "0xdc6ff44d5d932cbd77b52e5612ba0529dc6226f1",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--10/tokens/address-0xdc6ff44d5d932cbd77b52e5612ba0529dc6226f1.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--10/tokens/address-0xdc6ff44d5d932cbd77b52e5612ba0529dc6226f1.png"
+ ],
+ "name": "Worldcoin",
+ "symbol": "WLD",
+ "marketCap": "202255819.362581590102960587",
+ "price": "0.47389475195535496497",
+ "priceChange24hPercent": "-1.15",
+ "volume24h": "2294.519640654366934541",
+ "communityRecognized": true,
+ "key": "evm--10:0xdc6ff44d5d932cbd77b52e5612ba0529dc6226f1",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Optimism",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/optimism.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--10",
+ "address": "0x9dabae7274d28a45f0b65bf8ed201a5731492ca0",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--10/tokens/address-0x9dabae7274d28a45f0b65bf8ed201a5731492ca0-1757692802327.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--10/tokens/address-0x9dabae7274d28a45f0b65bf8ed201a5731492ca0-1757692802327.png"
+ ],
+ "name": "Metronome Synth USD",
+ "symbol": "msUSD",
+ "marketCap": "816197.994530550167238399",
+ "price": "0.63315566563972652525",
+ "priceChange24hPercent": "-0.51",
+ "volume24h": "1015.687269143039684847",
+ "communityRecognized": false,
+ "key": "evm--10:0x9dabae7274d28a45f0b65bf8ed201a5731492ca0",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Optimism",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/optimism.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--10",
+ "address": "0xc55e93c62874d8100dbd2dfe307edc1036ad5434",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--10/tokens/address-0xc55e93c62874d8100dbd2dfe307edc1036ad5434.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--10/tokens/address-0xc55e93c62874d8100dbd2dfe307edc1036ad5434.png"
+ ],
+ "name": "Moo BIFI",
+ "symbol": "mooBIFI",
+ "marketCap": "1001600.150579386110502647",
+ "price": "82.02353297447595715005",
+ "priceChange24hPercent": "-2.33",
+ "volume24h": "1358.005479776042294355",
+ "communityRecognized": false,
+ "key": "evm--10:0xc55e93c62874d8100dbd2dfe307edc1036ad5434",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Optimism",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/optimism.png"
+ }
+ ],
+ "trending|evm--10|4h|all": [
+ {
+ "isNative": false,
+ "networkId": "evm--10",
+ "address": "0x6985884c4392d348587b19cb9eaaf157f13271cd",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--10/tokens/address-0x6985884c4392d348587b19cb9eaaf157f13271cd-1721965703643.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--10/tokens/address-0x6985884c4392d348587b19cb9eaaf157f13271cd-1721965703643.png"
+ ],
+ "name": "LayerZero",
+ "symbol": "ZRO",
+ "marketCap": "5460332.739188066036985872",
+ "price": "1.13509788320369447826",
+ "priceChange24hPercent": "0.41",
+ "volume24h": "8026.283430522763087122",
+ "communityRecognized": true,
+ "key": "evm--10:0x6985884c4392d348587b19cb9eaaf157f13271cd",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Optimism",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/optimism.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--10",
+ "address": "0xcb8fa9a76b8e203d8c3797bf438d8fb81ea3326a",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--10/tokens/address-0xcb8fa9a76b8e203d8c3797bf438d8fb81ea3326a.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--10/tokens/address-0xcb8fa9a76b8e203d8c3797bf438d8fb81ea3326a.png"
+ ],
+ "name": "Alchemix USD",
+ "symbol": "alUSD",
+ "marketCap": "1539674.982213425161225596",
+ "price": "0.95293725761716897959",
+ "priceChange24hPercent": "-0.1",
+ "volume24h": "5754.418119701974179731",
+ "communityRecognized": false,
+ "key": "evm--10:0xcb8fa9a76b8e203d8c3797bf438d8fb81ea3326a",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Optimism",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/optimism.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--10",
+ "address": "0x8700daec35af8ff88c16bdf0418774cb3d7599b4",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--10/tokens/address-0x8700daec35af8ff88c16bdf0418774cb3d7599b4.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--10/tokens/address-0x8700daec35af8ff88c16bdf0418774cb3d7599b4.png"
+ ],
+ "name": "Synthetix Network Token",
+ "symbol": "SNX",
+ "marketCap": "7203825.158060332406936461",
+ "price": "0.22341208973883970495",
+ "priceChange24hPercent": "0.57",
+ "volume24h": "3289.939353082862850862",
+ "communityRecognized": true,
+ "key": "evm--10:0x8700daec35af8ff88c16bdf0418774cb3d7599b4",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Optimism",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/optimism.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--10",
+ "address": "0x9560e827af36c94d2ac33a39bce1fe78631088db",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--10/tokens/address-0x9560e827af36c94d2ac33a39bce1fe78631088db.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--10/tokens/address-0x9560e827af36c94d2ac33a39bce1fe78631088db.png"
+ ],
+ "name": "VelodromeV2",
+ "symbol": "VELO",
+ "marketCap": "25917076.149564967999627505",
+ "price": "0.02831840585888096192",
+ "priceChange24hPercent": "3.52",
+ "volume24h": "179717.326648880492318807",
+ "communityRecognized": true,
+ "key": "evm--10:0x9560e827af36c94d2ac33a39bce1fe78631088db",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Optimism",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/optimism.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--10",
+ "address": "0xedf38688b27036816a50185caa430d5479e1c63e",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--10/tokens/address-0xedf38688b27036816a50185caa430d5479e1c63e-1757692832783.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--10/tokens/address-0xedf38688b27036816a50185caa430d5479e1c63e-1757692832783.png"
+ ],
+ "name": "Overtime DAO Token",
+ "symbol": "OVER",
+ "marketCap": "5906368.768083219576202251",
+ "price": "0.22690393484978549413",
+ "priceChange24hPercent": "-0.45",
+ "volume24h": "811.27021434685852085",
+ "communityRecognized": false,
+ "key": "evm--10:0xedf38688b27036816a50185caa430d5479e1c63e",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Optimism",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/optimism.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--10",
+ "address": "0xdcb612005417dc906ff72c87df732e5a90d49e11",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--10/tokens/address-0xdcb612005417dc906ff72c87df732e5a90d49e11-1778914801472.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--10/tokens/address-0xdcb612005417dc906ff72c87df732e5a90d49e11-1778914801472.png"
+ ],
+ "name": "EURC",
+ "symbol": "EURC",
+ "marketCap": "2361346.222106918169127038",
+ "price": "1.16297858437045177771",
+ "priceChange24hPercent": "0.12",
+ "volume24h": "912.348809",
+ "communityRecognized": false,
+ "key": "evm--10:0xdcb612005417dc906ff72c87df732e5a90d49e11",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Optimism",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/optimism.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--10",
+ "address": "0x1f514a61bcde34f94bc39731235690ab9da737f7",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--10/tokens/address-0x1f514a61bcde34f94bc39731235690ab9da737f7.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--10/tokens/address-0x1f514a61bcde34f94bc39731235690ab9da737f7.png"
+ ],
+ "name": "Tarot",
+ "symbol": "TAROT",
+ "marketCap": "1273901.551984265986960545",
+ "price": "0.03108282316391265836",
+ "priceChange24hPercent": "0.29",
+ "volume24h": "1347.963692157049079755",
+ "communityRecognized": false,
+ "key": "evm--10:0x1f514a61bcde34f94bc39731235690ab9da737f7",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Optimism",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/optimism.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--10",
+ "address": "0x3c8b650257cfb5f272f799f5e2b4e65093a11a05",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--10/tokens/address-0x3c8b650257cfb5f272f799f5e2b4e65093a11a05-1757692807156.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--10/tokens/address-0x3c8b650257cfb5f272f799f5e2b4e65093a11a05-1757692807156.png"
+ ],
+ "name": "Velodrome",
+ "symbol": "VELO",
+ "marketCap": "56789076.927286531592830146",
+ "price": "0.02841661772365588957",
+ "priceChange24hPercent": "0.78",
+ "volume24h": "530.979928381326937191",
+ "communityRecognized": true,
+ "key": "evm--10:0x3c8b650257cfb5f272f799f5e2b4e65093a11a05",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Optimism",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/optimism.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--10",
+ "address": "0xdc6ff44d5d932cbd77b52e5612ba0529dc6226f1",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--10/tokens/address-0xdc6ff44d5d932cbd77b52e5612ba0529dc6226f1.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--10/tokens/address-0xdc6ff44d5d932cbd77b52e5612ba0529dc6226f1.png"
+ ],
+ "name": "Worldcoin",
+ "symbol": "WLD",
+ "marketCap": "202255819.362581590102960587",
+ "price": "0.47389475195535496497",
+ "priceChange24hPercent": "-0.4",
+ "volume24h": "16051.351317729099747955",
+ "communityRecognized": true,
+ "key": "evm--10:0xdc6ff44d5d932cbd77b52e5612ba0529dc6226f1",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Optimism",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/optimism.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--10",
+ "address": "0xb5b2dc7fd34c249f4be7fb1fcea07950784229e0",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--10/tokens/address-0xb5b2dc7fd34c249f4be7fb1fcea07950784229e0-1757692809631.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--10/tokens/address-0xb5b2dc7fd34c249f4be7fb1fcea07950784229e0-1757692809631.png"
+ ],
+ "name": "Savings USDS",
+ "symbol": "sUSDS",
+ "marketCap": "5124974.953992443372177536",
+ "price": "1.10887682915011144491",
+ "priceChange24hPercent": "0",
+ "volume24h": "2000.054723",
+ "communityRecognized": false,
+ "key": "evm--10:0xb5b2dc7fd34c249f4be7fb1fcea07950784229e0",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Optimism",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/optimism.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--10",
+ "address": "0x9dabae7274d28a45f0b65bf8ed201a5731492ca0",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--10/tokens/address-0x9dabae7274d28a45f0b65bf8ed201a5731492ca0-1757692802327.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--10/tokens/address-0x9dabae7274d28a45f0b65bf8ed201a5731492ca0-1757692802327.png"
+ ],
+ "name": "Metronome Synth USD",
+ "symbol": "msUSD",
+ "marketCap": "816197.994530550167238399",
+ "price": "0.63315566563972652525",
+ "priceChange24hPercent": "1.98",
+ "volume24h": "12883.462757393550808709",
+ "communityRecognized": false,
+ "key": "evm--10:0x9dabae7274d28a45f0b65bf8ed201a5731492ca0",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Optimism",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/optimism.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--10",
+ "address": "0xc55e93c62874d8100dbd2dfe307edc1036ad5434",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--10/tokens/address-0xc55e93c62874d8100dbd2dfe307edc1036ad5434.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--10/tokens/address-0xc55e93c62874d8100dbd2dfe307edc1036ad5434.png"
+ ],
+ "name": "Moo BIFI",
+ "symbol": "mooBIFI",
+ "marketCap": "1001600.150579386110502647",
+ "price": "82.02353297447595715005",
+ "priceChange24hPercent": "5.43",
+ "volume24h": "8105.459305320141194219",
+ "communityRecognized": false,
+ "key": "evm--10:0xc55e93c62874d8100dbd2dfe307edc1036ad5434",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Optimism",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/optimism.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--10",
+ "address": "0x1610e3c85dd44af31ed7f33a63642012dca0c5a5",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--10/tokens/address-0x1610e3c85dd44af31ed7f33a63642012dca0c5a5-1757692816113.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--10/tokens/address-0x1610e3c85dd44af31ed7f33a63642012dca0c5a5-1757692816113.png"
+ ],
+ "name": "Metronome Synth ETH",
+ "symbol": "msETH",
+ "marketCap": "624236.251129162225275058",
+ "price": "1583.12364696910413337343",
+ "priceChange24hPercent": "1.87",
+ "volume24h": "16034.225922325420234922",
+ "communityRecognized": false,
+ "key": "evm--10:0x1610e3c85dd44af31ed7f33a63642012dca0c5a5",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Optimism",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/optimism.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--10",
+ "address": "0x10398abc267496e49106b07dd6be13364d10dc71",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--10/tokens/address-0x10398abc267496e49106b07dd6be13364d10dc71.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--10/tokens/address-0x10398abc267496e49106b07dd6be13364d10dc71.png"
+ ],
+ "name": "HAI Index Token",
+ "symbol": "HAI",
+ "marketCap": "354394.426039268477362887",
+ "price": "1.2150340968437998364",
+ "priceChange24hPercent": "4.44",
+ "volume24h": "1172.164280648142913761",
+ "communityRecognized": false,
+ "key": "evm--10:0x10398abc267496e49106b07dd6be13364d10dc71",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Optimism",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/optimism.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--10",
+ "address": "0x03569cc076654f82679c4ba2124d64774781b01d",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--10/tokens/address-0x03569cc076654f82679c4ba2124d64774781b01d-1757692835782.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--10/tokens/address-0x03569cc076654f82679c4ba2124d64774781b01d-1757692835782.png"
+ ],
+ "name": "BOLD Stablecoin",
+ "symbol": "BOLD",
+ "marketCap": "118573.822389220754708244",
+ "price": "1.000152687482749499",
+ "priceChange24hPercent": "-0.02",
+ "volume24h": "3156.261486",
+ "communityRecognized": false,
+ "key": "evm--10:0x03569cc076654f82679c4ba2124d64774781b01d",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Optimism",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/optimism.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--10",
+ "address": "0xe0080d2f853ecddbd81a643dc10da075df26fd3f",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--10/tokens/address-0xe0080d2f853ecddbd81a643dc10da075df26fd3f-1778914801472.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--10/tokens/address-0xe0080d2f853ecddbd81a643dc10da075df26fd3f-1778914801472.png"
+ ],
+ "name": "ether.fi governance token",
+ "symbol": "ETHFI",
+ "marketCap": "15783272.624549076189089715",
+ "price": "0.58056712586543310556",
+ "priceChange24hPercent": "-1.9",
+ "volume24h": "1415.518225849309036839",
+ "communityRecognized": false,
+ "key": "evm--10:0xe0080d2f853ecddbd81a643dc10da075df26fd3f",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Optimism",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/optimism.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--10",
+ "address": "0x6fd9d7ad17242c41f7131d257212c54a0e816691",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--10/tokens/address-0x6fd9d7ad17242c41f7131d257212c54a0e816691.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--10/tokens/address-0x6fd9d7ad17242c41f7131d257212c54a0e816691.png"
+ ],
+ "name": "Uniswap",
+ "symbol": "UNI",
+ "marketCap": "539182.862838142979001256",
+ "price": "6.95885363148874366076",
+ "priceChange24hPercent": "2.51",
+ "volume24h": "1464.011441332781346771",
+ "communityRecognized": true,
+ "key": "evm--10:0x6fd9d7ad17242c41f7131d257212c54a0e816691",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Optimism",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/optimism.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--10",
+ "address": "0xc40f949f8a4e094d1b49a23ea9241d289b7b2819",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--10/tokens/address-0xc40f949f8a4e094d1b49a23ea9241d289b7b2819.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--10/tokens/address-0xc40f949f8a4e094d1b49a23ea9241d289b7b2819.png"
+ ],
+ "name": "LUSD Stablecoin",
+ "symbol": "LUSD",
+ "marketCap": "126729.719958763787002425",
+ "price": "1.00249988835190172364",
+ "priceChange24hPercent": "0.04",
+ "volume24h": "804.487519166484990877",
+ "communityRecognized": false,
+ "key": "evm--10:0xc40f949f8a4e094d1b49a23ea9241d289b7b2819",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Optimism",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/optimism.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--10",
+ "address": "0x0994206dfe8de6ec6920ff4d779b0d950605fb53",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--10/tokens/address-0x0994206dfe8de6ec6920ff4d779b0d950605fb53.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--10/tokens/address-0x0994206dfe8de6ec6920ff4d779b0d950605fb53.png"
+ ],
+ "name": "Curve DAO Token",
+ "symbol": "CRV",
+ "marketCap": "2336410.823637845157564664",
+ "price": "0.36279891293152368952",
+ "priceChange24hPercent": "-2.19",
+ "volume24h": "1327.367863022275326279",
+ "communityRecognized": true,
+ "key": "evm--10:0x0994206dfe8de6ec6920ff4d779b0d950605fb53",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Optimism",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/optimism.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--10",
+ "address": "0x76fb31fb4af56892a25e32cfc43de717950c9278",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--10/tokens/address-0x76fb31fb4af56892a25e32cfc43de717950c9278.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--10/tokens/address-0x76fb31fb4af56892a25e32cfc43de717950c9278.png"
+ ],
+ "name": "Aave Token",
+ "symbol": "AAVE",
+ "marketCap": "678155.706440160805849917",
+ "price": "131.55407221220801857395",
+ "priceChange24hPercent": "0.06",
+ "volume24h": "1204.819528028889209183",
+ "communityRecognized": true,
+ "key": "evm--10:0x76fb31fb4af56892a25e32cfc43de717950c9278",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Optimism",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/optimism.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--10",
+ "address": "0x3e29d3a9316dab217754d13b28646b76607c5f04",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--10/tokens/address-0x3e29d3a9316dab217754d13b28646b76607c5f04.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--10/tokens/address-0x3e29d3a9316dab217754d13b28646b76607c5f04.png"
+ ],
+ "name": "Alchemix ETH",
+ "symbol": "alETH",
+ "marketCap": "4033217.781668885428525178",
+ "price": "2407.5919968324739555058",
+ "priceChange24hPercent": "-0.12",
+ "volume24h": "4296.216652517598346303",
+ "communityRecognized": false,
+ "key": "evm--10:0x3e29d3a9316dab217754d13b28646b76607c5f04",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Optimism",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/optimism.png"
+ }
+ ],
+ "trending|evm--10|24h|all": [
+ {
+ "isNative": false,
+ "networkId": "evm--10",
+ "address": "0x6985884c4392d348587b19cb9eaaf157f13271cd",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--10/tokens/address-0x6985884c4392d348587b19cb9eaaf157f13271cd-1721965703643.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--10/tokens/address-0x6985884c4392d348587b19cb9eaaf157f13271cd-1721965703643.png"
+ ],
+ "name": "LayerZero",
+ "symbol": "ZRO",
+ "marketCap": "5460332.739188066036985872",
+ "price": "1.13509788320369447826",
+ "priceChange24hPercent": "4.89",
+ "volume24h": "79847.875249522366352153",
+ "communityRecognized": true,
+ "key": "evm--10:0x6985884c4392d348587b19cb9eaaf157f13271cd",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Optimism",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/optimism.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--10",
+ "address": "0x1e925de1c68ef83bd98ee3e130ef14a50309c01b",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--10/tokens/address-0x1e925de1c68ef83bd98ee3e130ef14a50309c01b.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--10/tokens/address-0x1e925de1c68ef83bd98ee3e130ef14a50309c01b.png"
+ ],
+ "name": "exactly",
+ "symbol": "EXA",
+ "marketCap": "823314.784898117827501239",
+ "price": "0.15391078953271145392",
+ "priceChange24hPercent": "0.39",
+ "volume24h": "589.033432703707441459",
+ "communityRecognized": false,
+ "key": "evm--10:0x1e925de1c68ef83bd98ee3e130ef14a50309c01b",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Optimism",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/optimism.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--10",
+ "address": "0x296f55f8fb28e498b858d0bcda06d955b2cb3f97",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--10/tokens/address-0x296f55f8fb28e498b858d0bcda06d955b2cb3f97.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--10/tokens/address-0x296f55f8fb28e498b858d0bcda06d955b2cb3f97.png"
+ ],
+ "name": "StargateToken",
+ "symbol": "STG",
+ "marketCap": "391662.921097294912302183",
+ "price": "0.16398482837731751825",
+ "priceChange24hPercent": "-3.9",
+ "volume24h": "1498.444743459360217422",
+ "communityRecognized": true,
+ "key": "evm--10:0x296f55f8fb28e498b858d0bcda06d955b2cb3f97",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Optimism",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/optimism.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--10",
+ "address": "0xcb8fa9a76b8e203d8c3797bf438d8fb81ea3326a",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--10/tokens/address-0xcb8fa9a76b8e203d8c3797bf438d8fb81ea3326a.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--10/tokens/address-0xcb8fa9a76b8e203d8c3797bf438d8fb81ea3326a.png"
+ ],
+ "name": "Alchemix USD",
+ "symbol": "alUSD",
+ "marketCap": "1539674.982213425161225596",
+ "price": "0.95293725761716897959",
+ "priceChange24hPercent": "0.02",
+ "volume24h": "33052.883567148441651487",
+ "communityRecognized": false,
+ "key": "evm--10:0xcb8fa9a76b8e203d8c3797bf438d8fb81ea3326a",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Optimism",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/optimism.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--10",
+ "address": "0x1217bfe6c773eec6cc4a38b5dc45b92292b6e189",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--10/tokens/address-0x1217bfe6c773eec6cc4a38b5dc45b92292b6e189-1757665165750.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--10/tokens/address-0x1217bfe6c773eec6cc4a38b5dc45b92292b6e189-1757665165750.png"
+ ],
+ "name": "OpenUSDT",
+ "symbol": "oUSDT",
+ "marketCap": "148557.5931954145324212",
+ "price": "1.00073434215115907918",
+ "priceChange24hPercent": "0.07",
+ "volume24h": "1638.155069611779813067",
+ "communityRecognized": false,
+ "key": "evm--10:0x1217bfe6c773eec6cc4a38b5dc45b92292b6e189",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Optimism",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/optimism.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--10",
+ "address": "0x8700daec35af8ff88c16bdf0418774cb3d7599b4",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--10/tokens/address-0x8700daec35af8ff88c16bdf0418774cb3d7599b4.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--10/tokens/address-0x8700daec35af8ff88c16bdf0418774cb3d7599b4.png"
+ ],
+ "name": "Synthetix Network Token",
+ "symbol": "SNX",
+ "marketCap": "7203825.158060332406936461",
+ "price": "0.22341208973883970495",
+ "priceChange24hPercent": "-1.38",
+ "volume24h": "12668.026107869794018219",
+ "communityRecognized": true,
+ "key": "evm--10:0x8700daec35af8ff88c16bdf0418774cb3d7599b4",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Optimism",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/optimism.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--10",
+ "address": "0x9560e827af36c94d2ac33a39bce1fe78631088db",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--10/tokens/address-0x9560e827af36c94d2ac33a39bce1fe78631088db.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--10/tokens/address-0x9560e827af36c94d2ac33a39bce1fe78631088db.png"
+ ],
+ "name": "VelodromeV2",
+ "symbol": "VELO",
+ "marketCap": "25917076.149564967999627505",
+ "price": "0.02831840585888096192",
+ "priceChange24hPercent": "14.1",
+ "volume24h": "729758.371958050077730906",
+ "communityRecognized": true,
+ "key": "evm--10:0x9560e827af36c94d2ac33a39bce1fe78631088db",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Optimism",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/optimism.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--10",
+ "address": "0x74ccbe53f77b08632ce0cb91d3a545bf6b8e0979",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--10/tokens/address-0x74ccbe53f77b08632ce0cb91d3a545bf6b8e0979.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--10/tokens/address-0x74ccbe53f77b08632ce0cb91d3a545bf6b8e0979.png"
+ ],
+ "name": "Fantom Bomb",
+ "symbol": "fBOMB",
+ "marketCap": "589095.268974747240238733",
+ "price": "0.01899031025927439857",
+ "priceChange24hPercent": "6",
+ "volume24h": "1844.58783479698902445",
+ "communityRecognized": false,
+ "key": "evm--10:0x74ccbe53f77b08632ce0cb91d3a545bf6b8e0979",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Optimism",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/optimism.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--10",
+ "address": "0x5a7facb970d094b6c7ff1df0ea68d99e6e73cbff",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--10/tokens/address-0x5a7facb970d094b6c7ff1df0ea68d99e6e73cbff-1757692837376.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--10/tokens/address-0x5a7facb970d094b6c7ff1df0ea68d99e6e73cbff-1757692837376.png"
+ ],
+ "name": "Wrapped eETH",
+ "symbol": "weETH",
+ "marketCap": "27699614.477469299855750224",
+ "price": "2742.4791611237875388352",
+ "priceChange24hPercent": "-0.18",
+ "volume24h": "2418.730857054042708239",
+ "communityRecognized": true,
+ "key": "evm--10:0x5a7facb970d094b6c7ff1df0ea68d99e6e73cbff",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Optimism",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/optimism.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--10",
+ "address": "0xef4461891dfb3ac8572ccf7c794664a8dd927945",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--10/tokens/address-0xef4461891dfb3ac8572ccf7c794664a8dd927945-1757665165750.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--10/tokens/address-0xef4461891dfb3ac8572ccf7c794664a8dd927945-1757665165750.png"
+ ],
+ "name": "WalletConnect",
+ "symbol": "WCT",
+ "marketCap": "17923728.451283942930465124",
+ "price": "0.03966236682157598025",
+ "priceChange24hPercent": "0.22",
+ "volume24h": "1017.863411971035648575",
+ "communityRecognized": true,
+ "key": "evm--10:0xef4461891dfb3ac8572ccf7c794664a8dd927945",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Optimism",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/optimism.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--10",
+ "address": "0xedf38688b27036816a50185caa430d5479e1c63e",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--10/tokens/address-0xedf38688b27036816a50185caa430d5479e1c63e-1757692832783.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--10/tokens/address-0xedf38688b27036816a50185caa430d5479e1c63e-1757692832783.png"
+ ],
+ "name": "Overtime DAO Token",
+ "symbol": "OVER",
+ "marketCap": "5906368.768083219576202251",
+ "price": "0.22690393484978549413",
+ "priceChange24hPercent": "0.02",
+ "volume24h": "4833.9265050818590976",
+ "communityRecognized": false,
+ "key": "evm--10:0xedf38688b27036816a50185caa430d5479e1c63e",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Optimism",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/optimism.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--10",
+ "address": "0xdcb612005417dc906ff72c87df732e5a90d49e11",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--10/tokens/address-0xdcb612005417dc906ff72c87df732e5a90d49e11-1778914801472.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--10/tokens/address-0xdcb612005417dc906ff72c87df732e5a90d49e11-1778914801472.png"
+ ],
+ "name": "EURC",
+ "symbol": "EURC",
+ "marketCap": "2361346.222106918169127038",
+ "price": "1.16297858437045177771",
+ "priceChange24hPercent": "0.23",
+ "volume24h": "54365.025934",
+ "communityRecognized": false,
+ "key": "evm--10:0xdcb612005417dc906ff72c87df732e5a90d49e11",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Optimism",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/optimism.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--10",
+ "address": "0x1f514a61bcde34f94bc39731235690ab9da737f7",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--10/tokens/address-0x1f514a61bcde34f94bc39731235690ab9da737f7.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--10/tokens/address-0x1f514a61bcde34f94bc39731235690ab9da737f7.png"
+ ],
+ "name": "Tarot",
+ "symbol": "TAROT",
+ "marketCap": "1273901.551984265986960545",
+ "price": "0.03108282316391265836",
+ "priceChange24hPercent": "2.7",
+ "volume24h": "5000.399520554663258262",
+ "communityRecognized": false,
+ "key": "evm--10:0x1f514a61bcde34f94bc39731235690ab9da737f7",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Optimism",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/optimism.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--10",
+ "address": "0x33bca143d9b41322479e8d26072a00a352404721",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--10/tokens/address-0x33bca143d9b41322479e8d26072a00a352404721-1757692807156.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--10/tokens/address-0x33bca143d9b41322479e8d26072a00a352404721-1757692807156.png"
+ ],
+ "name": "Metronome Synth OP",
+ "symbol": "msOP",
+ "marketCap": "6746.358680785621395438",
+ "price": "0.0681562710015196971",
+ "priceChange24hPercent": "6.83",
+ "volume24h": "611.107237469017500155",
+ "communityRecognized": false,
+ "key": "evm--10:0x33bca143d9b41322479e8d26072a00a352404721",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Optimism",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/optimism.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--10",
+ "address": "0x3417e54a51924c225330f8770514ad5560b9098d",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--10/tokens/address-0x3417e54a51924c225330f8770514ad5560b9098d-1757692832783.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--10/tokens/address-0x3417e54a51924c225330f8770514ad5560b9098d-1757692832783.png"
+ ],
+ "name": "REDKoin",
+ "symbol": "RED",
+ "marketCap": "58359.945366702894103262",
+ "price": "0.03644107796924155963",
+ "priceChange24hPercent": "7.88",
+ "volume24h": "1737.13604521599315717",
+ "communityRecognized": false,
+ "key": "evm--10:0x3417e54a51924c225330f8770514ad5560b9098d",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Optimism",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/optimism.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--10",
+ "address": "0x676f784d19c7f1ac6c6beaeaac78b02a73427852",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--10/tokens/address-0x676f784d19c7f1ac6c6beaeaac78b02a73427852-1757692816113.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--10/tokens/address-0x676f784d19c7f1ac6c6beaeaac78b02a73427852-1757692816113.png"
+ ],
+ "name": "OptimismPrime",
+ "symbol": "OPP",
+ "marketCap": "335645.812349520480231095",
+ "price": "0.00033564581237061846",
+ "priceChange24hPercent": "0.96",
+ "volume24h": "1196.812410842447547762",
+ "communityRecognized": false,
+ "key": "evm--10:0x676f784d19c7f1ac6c6beaeaac78b02a73427852",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Optimism",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/optimism.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--10",
+ "address": "0x3c8b650257cfb5f272f799f5e2b4e65093a11a05",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--10/tokens/address-0x3c8b650257cfb5f272f799f5e2b4e65093a11a05-1757692807156.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--10/tokens/address-0x3c8b650257cfb5f272f799f5e2b4e65093a11a05-1757692807156.png"
+ ],
+ "name": "Velodrome",
+ "symbol": "VELO",
+ "marketCap": "56789076.927286531592830146",
+ "price": "0.02841661772365588957",
+ "priceChange24hPercent": "10.97",
+ "volume24h": "4124.425519342489494393",
+ "communityRecognized": true,
+ "key": "evm--10:0x3c8b650257cfb5f272f799f5e2b4e65093a11a05",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Optimism",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/optimism.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--10",
+ "address": "0xdc6ff44d5d932cbd77b52e5612ba0529dc6226f1",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--10/tokens/address-0xdc6ff44d5d932cbd77b52e5612ba0529dc6226f1.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--10/tokens/address-0xdc6ff44d5d932cbd77b52e5612ba0529dc6226f1.png"
+ ],
+ "name": "Worldcoin",
+ "symbol": "WLD",
+ "marketCap": "202255819.362581590102960587",
+ "price": "0.47389475195535496497",
+ "priceChange24hPercent": "13.79",
+ "volume24h": "77280.988154969216548683",
+ "communityRecognized": true,
+ "key": "evm--10:0xdc6ff44d5d932cbd77b52e5612ba0529dc6226f1",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Optimism",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/optimism.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--10",
+ "address": "0xb5b2dc7fd34c249f4be7fb1fcea07950784229e0",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--10/tokens/address-0xb5b2dc7fd34c249f4be7fb1fcea07950784229e0-1757692809631.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--10/tokens/address-0xb5b2dc7fd34c249f4be7fb1fcea07950784229e0-1757692809631.png"
+ ],
+ "name": "Savings USDS",
+ "symbol": "sUSDS",
+ "marketCap": "5124974.953992443372177536",
+ "price": "1.10887682915011144491",
+ "priceChange24hPercent": "0.01",
+ "volume24h": "3320.55237",
+ "communityRecognized": false,
+ "key": "evm--10:0xb5b2dc7fd34c249f4be7fb1fcea07950784229e0",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Optimism",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/optimism.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--10",
+ "address": "0x9dabae7274d28a45f0b65bf8ed201a5731492ca0",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--10/tokens/address-0x9dabae7274d28a45f0b65bf8ed201a5731492ca0-1757692802327.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--10/tokens/address-0x9dabae7274d28a45f0b65bf8ed201a5731492ca0-1757692802327.png"
+ ],
+ "name": "Metronome Synth USD",
+ "symbol": "msUSD",
+ "marketCap": "816197.994530550167238399",
+ "price": "0.63315566563972652525",
+ "priceChange24hPercent": "13.04",
+ "volume24h": "99984.641985708306556492",
+ "communityRecognized": false,
+ "key": "evm--10:0x9dabae7274d28a45f0b65bf8ed201a5731492ca0",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Optimism",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/optimism.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--10",
+ "address": "0xc55e93c62874d8100dbd2dfe307edc1036ad5434",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--10/tokens/address-0xc55e93c62874d8100dbd2dfe307edc1036ad5434.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--10/tokens/address-0xc55e93c62874d8100dbd2dfe307edc1036ad5434.png"
+ ],
+ "name": "Moo BIFI",
+ "symbol": "mooBIFI",
+ "marketCap": "1001600.150579386110502647",
+ "price": "82.02353297447595715005",
+ "priceChange24hPercent": "8.15",
+ "volume24h": "10197.792932813562196919",
+ "communityRecognized": false,
+ "key": "evm--10:0xc55e93c62874d8100dbd2dfe307edc1036ad5434",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Optimism",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/optimism.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--10",
+ "address": "0x1610e3c85dd44af31ed7f33a63642012dca0c5a5",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--10/tokens/address-0x1610e3c85dd44af31ed7f33a63642012dca0c5a5-1757692816113.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--10/tokens/address-0x1610e3c85dd44af31ed7f33a63642012dca0c5a5-1757692816113.png"
+ ],
+ "name": "Metronome Synth ETH",
+ "symbol": "msETH",
+ "marketCap": "624236.251129162225275058",
+ "price": "1583.12364696910413337343",
+ "priceChange24hPercent": "12.98",
+ "volume24h": "124911.031069451579171897",
+ "communityRecognized": false,
+ "key": "evm--10:0x1610e3c85dd44af31ed7f33a63642012dca0c5a5",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Optimism",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/optimism.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--10",
+ "address": "0x10398abc267496e49106b07dd6be13364d10dc71",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--10/tokens/address-0x10398abc267496e49106b07dd6be13364d10dc71.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--10/tokens/address-0x10398abc267496e49106b07dd6be13364d10dc71.png"
+ ],
+ "name": "HAI Index Token",
+ "symbol": "HAI",
+ "marketCap": "354394.426039268477362887",
+ "price": "1.2150340968437998364",
+ "priceChange24hPercent": "-1.18",
+ "volume24h": "1843.328980852805454726",
+ "communityRecognized": false,
+ "key": "evm--10:0x10398abc267496e49106b07dd6be13364d10dc71",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Optimism",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/optimism.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--10",
+ "address": "0x1d1498166ddceee616a6d99868e1e0677300056f",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--10/tokens/address-0x1d1498166ddceee616a6d99868e1e0677300056f.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--10/tokens/address-0x1d1498166ddceee616a6d99868e1e0677300056f.png"
+ ],
+ "name": "xSpace Token",
+ "symbol": "xSPACE",
+ "marketCap": "21798.290043756858332039",
+ "price": "0.0018512108100565675",
+ "priceChange24hPercent": "-8.51",
+ "volume24h": "1351.250136123618679955",
+ "communityRecognized": false,
+ "key": "evm--10:0x1d1498166ddceee616a6d99868e1e0677300056f",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Optimism",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/optimism.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--10",
+ "address": "0x03569cc076654f82679c4ba2124d64774781b01d",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--10/tokens/address-0x03569cc076654f82679c4ba2124d64774781b01d-1757692835782.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--10/tokens/address-0x03569cc076654f82679c4ba2124d64774781b01d-1757692835782.png"
+ ],
+ "name": "BOLD Stablecoin",
+ "symbol": "BOLD",
+ "marketCap": "118573.822389220754708244",
+ "price": "1.000152687482749499",
+ "priceChange24hPercent": "0.07",
+ "volume24h": "5592.069664",
+ "communityRecognized": false,
+ "key": "evm--10:0x03569cc076654f82679c4ba2124d64774781b01d",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Optimism",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/optimism.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--10",
+ "address": "0x87eee96d50fb761ad85b1c982d28a042169d61b1",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--10/tokens/address-0x87eee96d50fb761ad85b1c982d28a042169d61b1-1722664800374.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--10/tokens/address-0x87eee96d50fb761ad85b1c982d28a042169d61b1-1722664800374.png"
+ ],
+ "name": "rsETHWrapper",
+ "symbol": "wrsETH",
+ "marketCap": "75317.380767912886763375",
+ "price": "2636.93317756300091855383",
+ "priceChange24hPercent": "-1.24",
+ "volume24h": "1055.717049504285981629",
+ "communityRecognized": false,
+ "key": "evm--10:0x87eee96d50fb761ad85b1c982d28a042169d61b1",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Optimism",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/optimism.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--10",
+ "address": "0xe0080d2f853ecddbd81a643dc10da075df26fd3f",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--10/tokens/address-0xe0080d2f853ecddbd81a643dc10da075df26fd3f-1778914801472.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--10/tokens/address-0xe0080d2f853ecddbd81a643dc10da075df26fd3f-1778914801472.png"
+ ],
+ "name": "ether.fi governance token",
+ "symbol": "ETHFI",
+ "marketCap": "15783272.624549076189089715",
+ "price": "0.58056712586543310556",
+ "priceChange24hPercent": "1.65",
+ "volume24h": "30656.489581413855830257",
+ "communityRecognized": false,
+ "key": "evm--10:0xe0080d2f853ecddbd81a643dc10da075df26fd3f",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Optimism",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/optimism.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--10",
+ "address": "0xd4dd9e2f021bb459d5a5f6c24c12fe09c5d45553",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--10/tokens/address-0xd4dd9e2f021bb459d5a5f6c24c12fe09c5d45553-1757692809631.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--10/tokens/address-0xd4dd9e2f021bb459d5a5f6c24c12fe09c5d45553-1757692809631.png"
+ ],
+ "name": "Frankencoin",
+ "symbol": "ZCHF",
+ "marketCap": "317134.204899812708438603",
+ "price": "1.2366991468975444842",
+ "priceChange24hPercent": "0.03",
+ "volume24h": "7171.404964",
+ "communityRecognized": true,
+ "key": "evm--10:0xd4dd9e2f021bb459d5a5f6c24c12fe09c5d45553",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Optimism",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/optimism.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--10",
+ "address": "0x2e3d870790dc77a83dd1d18184acc7439a53f475",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--10/tokens/address-0x2e3d870790dc77a83dd1d18184acc7439a53f475.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--10/tokens/address-0x2e3d870790dc77a83dd1d18184acc7439a53f475.png"
+ ],
+ "name": "Frax",
+ "symbol": "FRAX",
+ "marketCap": "579282.681178762855014945",
+ "price": "0.99862306822114578934",
+ "priceChange24hPercent": "0.07",
+ "volume24h": "1272.770287492642448812",
+ "communityRecognized": false,
+ "key": "evm--10:0x2e3d870790dc77a83dd1d18184acc7439a53f475",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Optimism",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/optimism.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--10",
+ "address": "0x6fd9d7ad17242c41f7131d257212c54a0e816691",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--10/tokens/address-0x6fd9d7ad17242c41f7131d257212c54a0e816691.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--10/tokens/address-0x6fd9d7ad17242c41f7131d257212c54a0e816691.png"
+ ],
+ "name": "Uniswap",
+ "symbol": "UNI",
+ "marketCap": "539182.862838142979001256",
+ "price": "6.95885363148874366076",
+ "priceChange24hPercent": "-0.06",
+ "volume24h": "5852.435974479257136159",
+ "communityRecognized": true,
+ "key": "evm--10:0x6fd9d7ad17242c41f7131d257212c54a0e816691",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Optimism",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/optimism.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--10",
+ "address": "0xc40f949f8a4e094d1b49a23ea9241d289b7b2819",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--10/tokens/address-0xc40f949f8a4e094d1b49a23ea9241d289b7b2819.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--10/tokens/address-0xc40f949f8a4e094d1b49a23ea9241d289b7b2819.png"
+ ],
+ "name": "LUSD Stablecoin",
+ "symbol": "LUSD",
+ "marketCap": "126729.719958763787002425",
+ "price": "1.00249988835190172364",
+ "priceChange24hPercent": "0.12",
+ "volume24h": "1781.513276787404403572",
+ "communityRecognized": false,
+ "key": "evm--10:0xc40f949f8a4e094d1b49a23ea9241d289b7b2819",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Optimism",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/optimism.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--10",
+ "address": "0x0994206dfe8de6ec6920ff4d779b0d950605fb53",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--10/tokens/address-0x0994206dfe8de6ec6920ff4d779b0d950605fb53.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--10/tokens/address-0x0994206dfe8de6ec6920ff4d779b0d950605fb53.png"
+ ],
+ "name": "Curve DAO Token",
+ "symbol": "CRV",
+ "marketCap": "2336410.823637845157564664",
+ "price": "0.36279891293152368952",
+ "priceChange24hPercent": "-6.76",
+ "volume24h": "14120.060894953005278765",
+ "communityRecognized": true,
+ "key": "evm--10:0x0994206dfe8de6ec6920ff4d779b0d950605fb53",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Optimism",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/optimism.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--10",
+ "address": "0xae0c7d4be1f07c5cf2994da2884a6d698f516286",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--10/tokens/address-0xae0c7d4be1f07c5cf2994da2884a6d698f516286-1765350002865.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--10/tokens/address-0xae0c7d4be1f07c5cf2994da2884a6d698f516286-1765350002865.png"
+ ],
+ "name": "FINDEX Liquidity Token",
+ "symbol": "FNX",
+ "marketCap": "31208971.887639278652437136",
+ "price": "0.30674905680564680125",
+ "priceChange24hPercent": "0.01",
+ "volume24h": "6245.066668",
+ "communityRecognized": false,
+ "key": "evm--10:0xae0c7d4be1f07c5cf2994da2884a6d698f516286",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Optimism",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/optimism.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--10",
+ "address": "0x350a791bfc2c21f9ed5d10980dad2e2638ffa7f6",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--10/tokens/address-0x350a791bfc2c21f9ed5d10980dad2e2638ffa7f6.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--10/tokens/address-0x350a791bfc2c21f9ed5d10980dad2e2638ffa7f6.png"
+ ],
+ "name": "ChainLink Token",
+ "symbol": "LINK",
+ "marketCap": "2290535.929278699270060352",
+ "price": "12.61465571745546039412",
+ "priceChange24hPercent": "-2.59",
+ "volume24h": "20957.447166981550274892",
+ "communityRecognized": true,
+ "key": "evm--10:0x350a791bfc2c21f9ed5d10980dad2e2638ffa7f6",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Optimism",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/optimism.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--10",
+ "address": "0x76fb31fb4af56892a25e32cfc43de717950c9278",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--10/tokens/address-0x76fb31fb4af56892a25e32cfc43de717950c9278.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--10/tokens/address-0x76fb31fb4af56892a25e32cfc43de717950c9278.png"
+ ],
+ "name": "Aave Token",
+ "symbol": "AAVE",
+ "marketCap": "678155.706440160805849917",
+ "price": "131.55407221220801857395",
+ "priceChange24hPercent": "-1.09",
+ "volume24h": "13151.958588383216415833",
+ "communityRecognized": true,
+ "key": "evm--10:0x76fb31fb4af56892a25e32cfc43de717950c9278",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Optimism",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/optimism.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--10",
+ "address": "0x3e29d3a9316dab217754d13b28646b76607c5f04",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--10/tokens/address-0x3e29d3a9316dab217754d13b28646b76607c5f04.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--10/tokens/address-0x3e29d3a9316dab217754d13b28646b76607c5f04.png"
+ ],
+ "name": "Alchemix ETH",
+ "symbol": "alETH",
+ "marketCap": "4033217.781668885428525178",
+ "price": "2407.5919968324739555058",
+ "priceChange24hPercent": "-0.43",
+ "volume24h": "30825.441891761287358581",
+ "communityRecognized": false,
+ "key": "evm--10:0x3e29d3a9316dab217754d13b28646b76607c5f04",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Optimism",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/optimism.png"
+ }
+ ],
+ "trending|evm--43114|5m|all": [],
+ "trending|evm--43114|1h|all": [
+ {
+ "isNative": false,
+ "networkId": "evm--43114",
+ "address": "0x6e84a6216ea6dacc71ee8e6b0a5b7322eebc0fdd",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--43114/tokens/address-0x6e84a6216ea6dacc71ee8e6b0a5b7322eebc0fdd.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--43114/tokens/address-0x6e84a6216ea6dacc71ee8e6b0a5b7322eebc0fdd.png"
+ ],
+ "name": "JoeToken",
+ "symbol": "JOE",
+ "marketCap": "16216093.691790962936922873",
+ "price": "0.03245114411394785082",
+ "priceChange24hPercent": "0.1",
+ "volume24h": "699.6919106982823887",
+ "communityRecognized": true,
+ "key": "evm--43114:0x6e84a6216ea6dacc71ee8e6b0a5b7322eebc0fdd",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Avalanche",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/avalanche.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--43114",
+ "address": "0x2775d5105276781b4b85ba6ea6a6653beed1dd32",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--43114/tokens/address-0x2775d5105276781b4b85ba6ea6a6653beed1dd32-1779763686396.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--43114/tokens/address-0x2775d5105276781b4b85ba6ea6a6653beed1dd32-1779763686396.png"
+ ],
+ "name": "XAUt0",
+ "symbol": "XAUt0",
+ "marketCap": "1853868.995903617675151515",
+ "price": "4437.55322484848484848485",
+ "priceChange24hPercent": "0.36",
+ "volume24h": "575.23768715733062965",
+ "communityRecognized": true,
+ "key": "evm--43114:0x2775d5105276781b4b85ba6ea6a6653beed1dd32",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Avalanche",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/avalanche.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--43114",
+ "address": "0x420fca0121dc28039145009570975747295f2329",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--43114/tokens/address-0x420fca0121dc28039145009570975747295f2329.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--43114/tokens/address-0x420fca0121dc28039145009570975747295f2329.png"
+ ],
+ "name": "COQINU",
+ "symbol": "COQ",
+ "marketCap": "7469659.97717693358924177",
+ "price": "0.00000010763214605306",
+ "priceChange24hPercent": "-4.85",
+ "volume24h": "7760.695505467576589283",
+ "communityRecognized": true,
+ "key": "evm--43114:0x420fca0121dc28039145009570975747295f2329",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Avalanche",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/avalanche.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--43114",
+ "address": "0x60781c2586d68229fde47564546784ab3faca982",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--43114/tokens/address-0x60781c2586d68229fde47564546784ab3faca982.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--43114/tokens/address-0x60781c2586d68229fde47564546784ab3faca982.png"
+ ],
+ "name": "Pangolin",
+ "symbol": "PNG",
+ "marketCap": "6028713.131942965222591779",
+ "price": "0.02544437345627135933",
+ "priceChange24hPercent": "-2.97",
+ "volume24h": "4568.306306386265718364",
+ "communityRecognized": true,
+ "key": "evm--43114:0x60781c2586d68229fde47564546784ab3faca982",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Avalanche",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/avalanche.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--43114",
+ "address": "0x26e9dbe75aed331e41272bece932ff1b48926ca9",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--43114/tokens/address-0x26e9dbe75aed331e41272bece932ff1b48926ca9-1760101231419.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--43114/tokens/address-0x26e9dbe75aed331e41272bece932ff1b48926ca9-1760101231419.png"
+ ],
+ "name": "Pharaoh Liquid Staking Token",
+ "symbol": "p33",
+ "marketCap": "11174047.621937762225207501",
+ "price": "0.070399015684057314",
+ "priceChange24hPercent": "0.3",
+ "volume24h": "1495.6069189280149956",
+ "communityRecognized": false,
+ "key": "evm--43114:0x26e9dbe75aed331e41272bece932ff1b48926ca9",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Avalanche",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/avalanche.png"
+ }
+ ],
+ "trending|evm--43114|4h|all": [
+ {
+ "isNative": false,
+ "networkId": "evm--43114",
+ "address": "0x63a72806098bd3d9520cc43356dd78afe5d386d9",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--43114/tokens/address-0x63a72806098bd3d9520cc43356dd78afe5d386d9.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--43114/tokens/address-0x63a72806098bd3d9520cc43356dd78afe5d386d9.png"
+ ],
+ "name": "Aave Token",
+ "symbol": "AAVE.e",
+ "marketCap": "1012609.721941762223463635",
+ "price": "130.75082586220030263555",
+ "priceChange24hPercent": "-0.57",
+ "volume24h": "927.241090205667894215",
+ "communityRecognized": true,
+ "key": "evm--43114:0x63a72806098bd3d9520cc43356dd78afe5d386d9",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Avalanche",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/avalanche.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--43114",
+ "address": "0x6e84a6216ea6dacc71ee8e6b0a5b7322eebc0fdd",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--43114/tokens/address-0x6e84a6216ea6dacc71ee8e6b0a5b7322eebc0fdd.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--43114/tokens/address-0x6e84a6216ea6dacc71ee8e6b0a5b7322eebc0fdd.png"
+ ],
+ "name": "JoeToken",
+ "symbol": "JOE",
+ "marketCap": "16216093.691790962936922873",
+ "price": "0.03245114411394785082",
+ "priceChange24hPercent": "-0.38",
+ "volume24h": "5400.84706732676919852",
+ "communityRecognized": true,
+ "key": "evm--43114:0x6e84a6216ea6dacc71ee8e6b0a5b7322eebc0fdd",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Avalanche",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/avalanche.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--43114",
+ "address": "0x2775d5105276781b4b85ba6ea6a6653beed1dd32",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--43114/tokens/address-0x2775d5105276781b4b85ba6ea6a6653beed1dd32-1779763686396.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--43114/tokens/address-0x2775d5105276781b4b85ba6ea6a6653beed1dd32-1779763686396.png"
+ ],
+ "name": "XAUt0",
+ "symbol": "XAUt0",
+ "marketCap": "1853868.995903617675151515",
+ "price": "4437.55322484848484848485",
+ "priceChange24hPercent": "0.7",
+ "volume24h": "1968.16458822751625665",
+ "communityRecognized": true,
+ "key": "evm--43114:0x2775d5105276781b4b85ba6ea6a6653beed1dd32",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Avalanche",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/avalanche.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--43114",
+ "address": "0x420fca0121dc28039145009570975747295f2329",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--43114/tokens/address-0x420fca0121dc28039145009570975747295f2329.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--43114/tokens/address-0x420fca0121dc28039145009570975747295f2329.png"
+ ],
+ "name": "COQINU",
+ "symbol": "COQ",
+ "marketCap": "7469659.97717693358924177",
+ "price": "0.00000010763214605306",
+ "priceChange24hPercent": "0.31",
+ "volume24h": "32700.437882636598517127",
+ "communityRecognized": true,
+ "key": "evm--43114:0x420fca0121dc28039145009570975747295f2329",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Avalanche",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/avalanche.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--43114",
+ "address": "0xd1c3f94de7e5b45fa4edbba472491a9f4b166fc4",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--43114/tokens/address-0xd1c3f94de7e5b45fa4edbba472491a9f4b166fc4.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--43114/tokens/address-0xd1c3f94de7e5b45fa4edbba472491a9f4b166fc4.png"
+ ],
+ "name": "Avalaunch",
+ "symbol": "XAVA",
+ "marketCap": "20851815.995132315916909132",
+ "price": "0.20851815995151863952",
+ "priceChange24hPercent": "-0.29",
+ "volume24h": "565.231157690500135894",
+ "communityRecognized": true,
+ "key": "evm--43114:0xd1c3f94de7e5b45fa4edbba472491a9f4b166fc4",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Avalanche",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/avalanche.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--43114",
+ "address": "0x60781c2586d68229fde47564546784ab3faca982",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--43114/tokens/address-0x60781c2586d68229fde47564546784ab3faca982.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--43114/tokens/address-0x60781c2586d68229fde47564546784ab3faca982.png"
+ ],
+ "name": "Pangolin",
+ "symbol": "PNG",
+ "marketCap": "6028713.131942965222591779",
+ "price": "0.02544437345627135933",
+ "priceChange24hPercent": "-3.49",
+ "volume24h": "7998.139871289437909635",
+ "communityRecognized": true,
+ "key": "evm--43114:0x60781c2586d68229fde47564546784ab3faca982",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Avalanche",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/avalanche.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--43114",
+ "address": "0x8729438eb15e2c8b576fcc6aecda6a148776c0f5",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--43114/tokens/address-0x8729438eb15e2c8b576fcc6aecda6a148776c0f5.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--43114/tokens/address-0x8729438eb15e2c8b576fcc6aecda6a148776c0f5.png"
+ ],
+ "name": "BENQI",
+ "symbol": "QI",
+ "marketCap": "9157852.587866574500308649",
+ "price": "0.00127192399780169725",
+ "priceChange24hPercent": "1.67",
+ "volume24h": "2033.787987974837908505",
+ "communityRecognized": true,
+ "key": "evm--43114:0x8729438eb15e2c8b576fcc6aecda6a148776c0f5",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Avalanche",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/avalanche.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--43114",
+ "address": "0xff7f8f301f7a706e3cfd3d2275f5dc0b9ee8009b",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--43114/tokens/address-0xff7f8f301f7a706e3cfd3d2275f5dc0b9ee8009b-1761760026374.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--43114/tokens/address-0xff7f8f301f7a706e3cfd3d2275f5dc0b9ee8009b-1761760026374.png"
+ ],
+ "name": "Folks Finance",
+ "symbol": "FOLKS",
+ "marketCap": "2103140.268474267885890269",
+ "price": "1.96279711163838183035",
+ "priceChange24hPercent": "-1.17",
+ "volume24h": "500.9928462633237553",
+ "communityRecognized": true,
+ "key": "evm--43114:0xff7f8f301f7a706e3cfd3d2275f5dc0b9ee8009b",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Avalanche",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/avalanche.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--43114",
+ "address": "0x50b7545627a5162f82a992c33b87adc75187b218",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--43114/tokens/address-0x50b7545627a5162f82a992c33b87adc75187b218.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--43114/tokens/address-0x50b7545627a5162f82a992c33b87adc75187b218.png"
+ ],
+ "name": "Wrapped BTC",
+ "symbol": "WBTC.e",
+ "marketCap": "24795078.781017361465957177",
+ "price": "78532.51432281109252330286",
+ "priceChange24hPercent": "-0.06",
+ "volume24h": "5220.21204762520230119",
+ "communityRecognized": false,
+ "key": "evm--43114:0x50b7545627a5162f82a992c33b87adc75187b218",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Avalanche",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/avalanche.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--43114",
+ "address": "0xd586e7f844cea2f87f50152665bcbc2c279d8d70",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--43114/tokens/address-0xd586e7f844cea2f87f50152665bcbc2c279d8d70.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--43114/tokens/address-0xd586e7f844cea2f87f50152665bcbc2c279d8d70.png"
+ ],
+ "name": "Dai Stablecoin",
+ "symbol": "DAI.e",
+ "marketCap": "10684326.990104146454170628",
+ "price": "0.99811635472741452563",
+ "priceChange24hPercent": "-0.21",
+ "volume24h": "1262.375915380667271607",
+ "communityRecognized": false,
+ "key": "evm--43114:0xd586e7f844cea2f87f50152665bcbc2c279d8d70",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Avalanche",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/avalanche.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--43114",
+ "address": "0x26e9dbe75aed331e41272bece932ff1b48926ca9",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--43114/tokens/address-0x26e9dbe75aed331e41272bece932ff1b48926ca9-1760101231419.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--43114/tokens/address-0x26e9dbe75aed331e41272bece932ff1b48926ca9-1760101231419.png"
+ ],
+ "name": "Pharaoh Liquid Staking Token",
+ "symbol": "p33",
+ "marketCap": "11174047.621937762225207501",
+ "price": "0.070399015684057314",
+ "priceChange24hPercent": "0.99",
+ "volume24h": "4550.05307373676164292",
+ "communityRecognized": false,
+ "key": "evm--43114:0x26e9dbe75aed331e41272bece932ff1b48926ca9",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Avalanche",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/avalanche.png"
+ }
+ ],
+ "trending|evm--43114|24h|all": [
+ {
+ "isNative": false,
+ "networkId": "evm--43114",
+ "address": "0x997ddaa07d716995de90577c123db411584e5e46",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--43114/tokens/address-0x997ddaa07d716995de90577c123db411584e5e46.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--43114/tokens/address-0x997ddaa07d716995de90577c123db411584e5e46.png"
+ ],
+ "name": "JEWEL",
+ "symbol": "JEWEL",
+ "marketCap": "527477.579476852803929965",
+ "price": "0.0085454187726347291",
+ "priceChange24hPercent": "2.58",
+ "volume24h": "1597.50349023016051509",
+ "communityRecognized": false,
+ "key": "evm--43114:0x997ddaa07d716995de90577c123db411584e5e46",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Avalanche",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/avalanche.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--43114",
+ "address": "0x9913ba363073ca3e9ea0cd296e36b75af9e40bef",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--43114/tokens/address-0x9913ba363073ca3e9ea0cd296e36b75af9e40bef.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--43114/tokens/address-0x9913ba363073ca3e9ea0cd296e36b75af9e40bef.png"
+ ],
+ "name": "TRESR",
+ "symbol": "TRESR",
+ "marketCap": "73752.46963243803495157",
+ "price": "0.00024387514429674478",
+ "priceChange24hPercent": "22.39",
+ "volume24h": "742.37927373848720642",
+ "communityRecognized": false,
+ "key": "evm--43114:0x9913ba363073ca3e9ea0cd296e36b75af9e40bef",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Avalanche",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/avalanche.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--43114",
+ "address": "0x26debd39d5ed069770406fca10a0e4f8d2c743eb",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--43114/tokens/address-0x26debd39d5ed069770406fca10a0e4f8d2c743eb-1744239437538.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--43114/tokens/address-0x26debd39d5ed069770406fca10a0e4f8d2c743eb-1744239437538.png"
+ ],
+ "name": "GUNZ",
+ "symbol": "GUN",
+ "marketCap": "1960463.085041956591796587",
+ "price": "0.00304451105009735912",
+ "priceChange24hPercent": "-1.03",
+ "volume24h": "1049.425543558929856779",
+ "communityRecognized": true,
+ "key": "evm--43114:0x26debd39d5ed069770406fca10a0e4f8d2c743eb",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Avalanche",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/avalanche.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--43114",
+ "address": "0x464281c0ce5aee44f3d8886e2c62c3623242c724",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--43114/tokens/address-0x464281c0ce5aee44f3d8886e2c62c3623242c724-1757804409724.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--43114/tokens/address-0x464281c0ce5aee44f3d8886e2c62c3623242c724-1757804409724.png"
+ ],
+ "name": "Bullseye Bot Token from PulseCha",
+ "symbol": "BLSEYE🎯",
+ "marketCap": "4233.335816497354163718",
+ "price": "0.00000065820132293838",
+ "priceChange24hPercent": "-29.6",
+ "volume24h": "1196.638574170997676196",
+ "communityRecognized": false,
+ "key": "evm--43114:0x464281c0ce5aee44f3d8886e2c62c3623242c724",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Avalanche",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/avalanche.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--43114",
+ "address": "0xe7c3d8c9a439fede00d2600032d5db0be71c3c29",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--43114/tokens/address-0xe7c3d8c9a439fede00d2600032d5db0be71c3c29-1761570016715.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--43114/tokens/address-0xe7c3d8c9a439fede00d2600032d5db0be71c3c29-1761570016715.png"
+ ],
+ "name": "JPY Coin",
+ "symbol": "JPYC",
+ "marketCap": "2806170.838961432170927837",
+ "price": "0.00649955587773830177",
+ "priceChange24hPercent": "1.63",
+ "volume24h": "4401.650982",
+ "communityRecognized": false,
+ "key": "evm--43114:0xe7c3d8c9a439fede00d2600032d5db0be71c3c29",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Avalanche",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/avalanche.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--43114",
+ "address": "0x63a72806098bd3d9520cc43356dd78afe5d386d9",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--43114/tokens/address-0x63a72806098bd3d9520cc43356dd78afe5d386d9.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--43114/tokens/address-0x63a72806098bd3d9520cc43356dd78afe5d386d9.png"
+ ],
+ "name": "Aave Token",
+ "symbol": "AAVE.e",
+ "marketCap": "1012609.721941762223463635",
+ "price": "130.75082586220030263555",
+ "priceChange24hPercent": "-1.63",
+ "volume24h": "12112.27228285332194151",
+ "communityRecognized": true,
+ "key": "evm--43114:0x63a72806098bd3d9520cc43356dd78afe5d386d9",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Avalanche",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/avalanche.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--43114",
+ "address": "0x6e84a6216ea6dacc71ee8e6b0a5b7322eebc0fdd",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--43114/tokens/address-0x6e84a6216ea6dacc71ee8e6b0a5b7322eebc0fdd.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--43114/tokens/address-0x6e84a6216ea6dacc71ee8e6b0a5b7322eebc0fdd.png"
+ ],
+ "name": "JoeToken",
+ "symbol": "JOE",
+ "marketCap": "16216093.691790962936922873",
+ "price": "0.03245114411394785082",
+ "priceChange24hPercent": "-1.37",
+ "volume24h": "65155.627135954243682384",
+ "communityRecognized": true,
+ "key": "evm--43114:0x6e84a6216ea6dacc71ee8e6b0a5b7322eebc0fdd",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Avalanche",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/avalanche.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--43114",
+ "address": "0xc7b5d72c836e718cda8888eaf03707faef675079",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--43114/tokens/address-0xc7b5d72c836e718cda8888eaf03707faef675079.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--43114/tokens/address-0xc7b5d72c836e718cda8888eaf03707faef675079.png"
+ ],
+ "name": "TrustSwap Token",
+ "symbol": "SWAP.e",
+ "marketCap": "92469.452342092320583512",
+ "price": "0.04112808274726484063",
+ "priceChange24hPercent": "-4.52",
+ "volume24h": "503.287043065707217506",
+ "communityRecognized": true,
+ "key": "evm--43114:0xc7b5d72c836e718cda8888eaf03707faef675079",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Avalanche",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/avalanche.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--43114",
+ "address": "0x2775d5105276781b4b85ba6ea6a6653beed1dd32",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--43114/tokens/address-0x2775d5105276781b4b85ba6ea6a6653beed1dd32-1779763686396.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--43114/tokens/address-0x2775d5105276781b4b85ba6ea6a6653beed1dd32-1779763686396.png"
+ ],
+ "name": "XAUt0",
+ "symbol": "XAUt0",
+ "marketCap": "1853868.995903617675151515",
+ "price": "4437.55322484848484848485",
+ "priceChange24hPercent": "0.61",
+ "volume24h": "10646.014896598135440226",
+ "communityRecognized": true,
+ "key": "evm--43114:0x2775d5105276781b4b85ba6ea6a6653beed1dd32",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Avalanche",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/avalanche.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--43114",
+ "address": "0x420fca0121dc28039145009570975747295f2329",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--43114/tokens/address-0x420fca0121dc28039145009570975747295f2329.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--43114/tokens/address-0x420fca0121dc28039145009570975747295f2329.png"
+ ],
+ "name": "COQINU",
+ "symbol": "COQ",
+ "marketCap": "7469659.97717693358924177",
+ "price": "0.00000010763214605306",
+ "priceChange24hPercent": "8.38",
+ "volume24h": "48644.687131159167098826",
+ "communityRecognized": true,
+ "key": "evm--43114:0x420fca0121dc28039145009570975747295f2329",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Avalanche",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/avalanche.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--43114",
+ "address": "0x6985884c4392d348587b19cb9eaaf157f13271cd",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--43114/tokens/address-0x6985884c4392d348587b19cb9eaaf157f13271cd-1721961429011.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--43114/tokens/address-0x6985884c4392d348587b19cb9eaaf157f13271cd-1721961429011.png"
+ ],
+ "name": "LayerZero",
+ "symbol": "ZRO",
+ "marketCap": "1233327.331931955851943049",
+ "price": "1.14318424818692951736",
+ "priceChange24hPercent": "5.49",
+ "volume24h": "1455.851161329635511151",
+ "communityRecognized": true,
+ "key": "evm--43114:0x6985884c4392d348587b19cb9eaaf157f13271cd",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Avalanche",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/avalanche.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--43114",
+ "address": "0x62d0a8458ed7719fdaf978fe5929c6d342b0bfce",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--43114/tokens/address-0x62d0a8458ed7719fdaf978fe5929c6d342b0bfce-1726799400060.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--43114/tokens/address-0x62d0a8458ed7719fdaf978fe5929c6d342b0bfce-1726799400060.png"
+ ],
+ "name": "Beam",
+ "symbol": "BEAM",
+ "marketCap": "187552.073012296507445273",
+ "price": "0.00155022363837447566",
+ "priceChange24hPercent": "-2.46",
+ "volume24h": "1365.949087925280771799",
+ "communityRecognized": true,
+ "key": "evm--43114:0x62d0a8458ed7719fdaf978fe5929c6d342b0bfce",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Avalanche",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/avalanche.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--43114",
+ "address": "0x13a466998ce03db73abc2d4df3bbd845ed1f28e7",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--43114/tokens/address-0x13a466998ce03db73abc2d4df3bbd845ed1f28e7-1760014821726.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--43114/tokens/address-0x13a466998ce03db73abc2d4df3bbd845ed1f28e7-1760014821726.png"
+ ],
+ "name": "Pharaoh",
+ "symbol": "PHAR",
+ "marketCap": "1434723.020791277910820458",
+ "price": "0.04541291897528300906",
+ "priceChange24hPercent": "0.6",
+ "volume24h": "13992.226525568791580181",
+ "communityRecognized": false,
+ "key": "evm--43114:0x13a466998ce03db73abc2d4df3bbd845ed1f28e7",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Avalanche",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/avalanche.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--43114",
+ "address": "0xbc78d84ba0c46dfe32cf2895a19939c86b81a777",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--43114/tokens/address-0xbc78d84ba0c46dfe32cf2895a19939c86b81a777-1727418600039.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--43114/tokens/address-0xbc78d84ba0c46dfe32cf2895a19939c86b81a777-1727418600039.png"
+ ],
+ "name": "Solv BTC",
+ "symbol": "SolvBTC",
+ "marketCap": "2549241.268367809258425122",
+ "price": "79563.90279316235347228077",
+ "priceChange24hPercent": "-0.36",
+ "volume24h": "913.0248629358580488",
+ "communityRecognized": false,
+ "key": "evm--43114:0xbc78d84ba0c46dfe32cf2895a19939c86b81a777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Avalanche",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/avalanche.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--43114",
+ "address": "0xb8d7710f7d8349a506b75dd184f05777c82dad0c",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--43114/tokens/address-0xb8d7710f7d8349a506b75dd184f05777c82dad0c-1730340901126.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--43114/tokens/address-0xb8d7710f7d8349a506b75dd184f05777c82dad0c-1730340901126.png"
+ ],
+ "name": "ArenaToken",
+ "symbol": "ARENA",
+ "marketCap": "5642903.518465073786335538",
+ "price": "0.00088382004696710177",
+ "priceChange24hPercent": "-0.76",
+ "volume24h": "17884.98751569901112984",
+ "communityRecognized": false,
+ "key": "evm--43114:0xb8d7710f7d8349a506b75dd184f05777c82dad0c",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Avalanche",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/avalanche.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--43114",
+ "address": "0xd1c3f94de7e5b45fa4edbba472491a9f4b166fc4",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--43114/tokens/address-0xd1c3f94de7e5b45fa4edbba472491a9f4b166fc4.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--43114/tokens/address-0xd1c3f94de7e5b45fa4edbba472491a9f4b166fc4.png"
+ ],
+ "name": "Avalaunch",
+ "symbol": "XAVA",
+ "marketCap": "20851815.995132315916909132",
+ "price": "0.20851815995151863952",
+ "priceChange24hPercent": "-0.4",
+ "volume24h": "5076.005656552225171042",
+ "communityRecognized": true,
+ "key": "evm--43114:0xd1c3f94de7e5b45fa4edbba472491a9f4b166fc4",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Avalanche",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/avalanche.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--43114",
+ "address": "0x8d88e48465f30acfb8dac0b3e35c9d6d7d36abaf",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--43114/tokens/address-0x8d88e48465f30acfb8dac0b3e35c9d6d7d36abaf.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--43114/tokens/address-0x8d88e48465f30acfb8dac0b3e35c9d6d7d36abaf.png"
+ ],
+ "name": "Canary",
+ "symbol": "CNR",
+ "marketCap": "114575.047047476108740814",
+ "price": "0.00023313300497583872",
+ "priceChange24hPercent": "3.36",
+ "volume24h": "1015.834709458475198871",
+ "communityRecognized": false,
+ "key": "evm--43114:0x8d88e48465f30acfb8dac0b3e35c9d6d7d36abaf",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Avalanche",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/avalanche.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--43114",
+ "address": "0x321e7092a180bb43555132ec53aaa65a5bf84251",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--43114/tokens/address-0x321e7092a180bb43555132ec53aaa65a5bf84251.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--43114/tokens/address-0x321e7092a180bb43555132ec53aaa65a5bf84251.png"
+ ],
+ "name": "Governance OHM",
+ "symbol": "gOHM",
+ "marketCap": "3378078.985281365979233697",
+ "price": "5446.90945776313655329415",
+ "priceChange24hPercent": "0.68",
+ "volume24h": "5394.644410413141865112",
+ "communityRecognized": false,
+ "key": "evm--43114:0x321e7092a180bb43555132ec53aaa65a5bf84251",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Avalanche",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/avalanche.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--43114",
+ "address": "0xb6314518b61b4864162c7ae7fdc36261e0a14c4b",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--43114/tokens/address-0xb6314518b61b4864162c7ae7fdc36261e0a14c4b-1780750801138.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--43114/tokens/address-0xb6314518b61b4864162c7ae7fdc36261e0a14c4b-1780750801138.png"
+ ],
+ "name": "YOM",
+ "symbol": "YOM",
+ "marketCap": "10989683.198110600427226987",
+ "price": "0.0146529109308141339",
+ "priceChange24hPercent": "-7.99",
+ "volume24h": "3986.86431266304",
+ "communityRecognized": false,
+ "key": "evm--43114:0xb6314518b61b4864162c7ae7fdc36261e0a14c4b",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Avalanche",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/avalanche.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--43114",
+ "address": "0x60781c2586d68229fde47564546784ab3faca982",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--43114/tokens/address-0x60781c2586d68229fde47564546784ab3faca982.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--43114/tokens/address-0x60781c2586d68229fde47564546784ab3faca982.png"
+ ],
+ "name": "Pangolin",
+ "symbol": "PNG",
+ "marketCap": "6028713.131942965222591779",
+ "price": "0.02544437345627135933",
+ "priceChange24hPercent": "5.85",
+ "volume24h": "227573.450800357475187755",
+ "communityRecognized": true,
+ "key": "evm--43114:0x60781c2586d68229fde47564546784ab3faca982",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Avalanche",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/avalanche.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--43114",
+ "address": "0xe8385cecb013561b69beb63ff59f4d10734881f3",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--43114/tokens/address-0xe8385cecb013561b69beb63ff59f4d10734881f3.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--43114/tokens/address-0xe8385cecb013561b69beb63ff59f4d10734881f3.png"
+ ],
+ "name": "Gecko Inu",
+ "symbol": "GEC",
+ "marketCap": "89415.114015795559955829",
+ "price": "0.00000000135088459605",
+ "priceChange24hPercent": "9.55",
+ "volume24h": "529.821841424521583976",
+ "communityRecognized": false,
+ "key": "evm--43114:0xe8385cecb013561b69beb63ff59f4d10734881f3",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Avalanche",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/avalanche.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--43114",
+ "address": "0x6c14c1898c843ff66ca51e87244690bbc28df215",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--43114/tokens/address-0x6c14c1898c843ff66ca51e87244690bbc28df215-1721961429011.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--43114/tokens/address-0x6c14c1898c843ff66ca51e87244690bbc28df215-1721961429011.png"
+ ],
+ "name": "Orange",
+ "symbol": "ORNG",
+ "marketCap": "1055071.54397706789160406",
+ "price": "0.00350522107633577373",
+ "priceChange24hPercent": "1.83",
+ "volume24h": "1052.453021498804440192",
+ "communityRecognized": false,
+ "key": "evm--43114:0x6c14c1898c843ff66ca51e87244690bbc28df215",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Avalanche",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/avalanche.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--43114",
+ "address": "0x130966628846bfd36ff31a822705796e8cb8c18d",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--43114/tokens/address-0x130966628846bfd36ff31a822705796e8cb8c18d.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--43114/tokens/address-0x130966628846bfd36ff31a822705796e8cb8c18d.png"
+ ],
+ "name": "Magic Internet Money",
+ "symbol": "MIM",
+ "marketCap": "356918.937201203609182646",
+ "price": "0.05289856923560128018",
+ "priceChange24hPercent": "2.58",
+ "volume24h": "785.250522421191272473",
+ "communityRecognized": false,
+ "key": "evm--43114:0x130966628846bfd36ff31a822705796e8cb8c18d",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Avalanche",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/avalanche.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--43114",
+ "address": "0xa77e70d0af1ac7ff86726740db1bd065c3566937",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--43114/tokens/address-0xa77e70d0af1ac7ff86726740db1bd065c3566937.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--43114/tokens/address-0xa77e70d0af1ac7ff86726740db1bd065c3566937.png"
+ ],
+ "name": "w3ULL",
+ "symbol": "w3ULL",
+ "marketCap": "275179.656750379360838022",
+ "price": "0.00006282251229313067",
+ "priceChange24hPercent": "9.09",
+ "volume24h": "3254.708632561213136607",
+ "communityRecognized": false,
+ "key": "evm--43114:0xa77e70d0af1ac7ff86726740db1bd065c3566937",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Avalanche",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/avalanche.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--43114",
+ "address": "0xf20d962a6c8f70c731bd838a3a388d7d48fa6e15",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--43114/tokens/address-0xf20d962a6c8f70c731bd838a3a388d7d48fa6e15-1757718032020.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--43114/tokens/address-0xf20d962a6c8f70c731bd838a3a388d7d48fa6e15-1757718032020.png"
+ ],
+ "name": "Ether",
+ "symbol": "ETH",
+ "marketCap": "1030134.369456201794584701",
+ "price": "2731.77727510047298079741",
+ "priceChange24hPercent": "2.48",
+ "volume24h": "763.028959326121147673",
+ "communityRecognized": false,
+ "key": "evm--43114:0xf20d962a6c8f70c731bd838a3a388d7d48fa6e15",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Avalanche",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/avalanche.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--43114",
+ "address": "0x8729438eb15e2c8b576fcc6aecda6a148776c0f5",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--43114/tokens/address-0x8729438eb15e2c8b576fcc6aecda6a148776c0f5.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--43114/tokens/address-0x8729438eb15e2c8b576fcc6aecda6a148776c0f5.png"
+ ],
+ "name": "BENQI",
+ "symbol": "QI",
+ "marketCap": "9157852.587866574500308649",
+ "price": "0.00127192399780169725",
+ "priceChange24hPercent": "0.63",
+ "volume24h": "15693.378401291649005906",
+ "communityRecognized": true,
+ "key": "evm--43114:0x8729438eb15e2c8b576fcc6aecda6a148776c0f5",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Avalanche",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/avalanche.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--43114",
+ "address": "0xd402298a793948698b9a63311404fbbee944eafd",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--43114/tokens/address-0xd402298a793948698b9a63311404fbbee944eafd.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--43114/tokens/address-0xd402298a793948698b9a63311404fbbee944eafd.png"
+ ],
+ "name": "SHRAPToken",
+ "symbol": "SHRAP",
+ "marketCap": "560678.818574319898283465",
+ "price": "0.00036210205795185118",
+ "priceChange24hPercent": "0",
+ "volume24h": "4395.402476584344908095",
+ "communityRecognized": false,
+ "key": "evm--43114:0xd402298a793948698b9a63311404fbbee944eafd",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Avalanche",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/avalanche.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--43114",
+ "address": "0xff7f8f301f7a706e3cfd3d2275f5dc0b9ee8009b",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--43114/tokens/address-0xff7f8f301f7a706e3cfd3d2275f5dc0b9ee8009b-1761760026374.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--43114/tokens/address-0xff7f8f301f7a706e3cfd3d2275f5dc0b9ee8009b-1761760026374.png"
+ ],
+ "name": "Folks Finance",
+ "symbol": "FOLKS",
+ "marketCap": "2103140.268474267885890269",
+ "price": "1.96279711163838183035",
+ "priceChange24hPercent": "-1.3",
+ "volume24h": "7184.144201091429108601",
+ "communityRecognized": true,
+ "key": "evm--43114:0xff7f8f301f7a706e3cfd3d2275f5dc0b9ee8009b",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Avalanche",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/avalanche.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--43114",
+ "address": "0x5947bb275c521040051d82396192181b413227a3",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--43114/tokens/address-0x5947bb275c521040051d82396192181b413227a3.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--43114/tokens/address-0x5947bb275c521040051d82396192181b413227a3.png"
+ ],
+ "name": "Chainlink Token",
+ "symbol": "LINK.e",
+ "marketCap": "4632345.710475913410945382",
+ "price": "12.63704353396364581009",
+ "priceChange24hPercent": "-1.68",
+ "volume24h": "7811.5954043533366691",
+ "communityRecognized": true,
+ "key": "evm--43114:0x5947bb275c521040051d82396192181b413227a3",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Avalanche",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/avalanche.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--43114",
+ "address": "0x50b7545627a5162f82a992c33b87adc75187b218",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--43114/tokens/address-0x50b7545627a5162f82a992c33b87adc75187b218.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--43114/tokens/address-0x50b7545627a5162f82a992c33b87adc75187b218.png"
+ ],
+ "name": "Wrapped BTC",
+ "symbol": "WBTC.e",
+ "marketCap": "24795078.781017361465957177",
+ "price": "78532.51432281109252330286",
+ "priceChange24hPercent": "-1.29",
+ "volume24h": "11963.090618656748556634",
+ "communityRecognized": false,
+ "key": "evm--43114:0x50b7545627a5162f82a992c33b87adc75187b218",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Avalanche",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/avalanche.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--43114",
+ "address": "0x88f89be3e9b1dc1c5f208696fb9cabfcc684bd5f",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--43114/tokens/address-0x88f89be3e9b1dc1c5f208696fb9cabfcc684bd5f.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--43114/tokens/address-0x88f89be3e9b1dc1c5f208696fb9cabfcc684bd5f.png"
+ ],
+ "name": "Fold",
+ "symbol": "FLD",
+ "marketCap": "486370.770427068882955724",
+ "price": "0.00035683517627626765",
+ "priceChange24hPercent": "0.75",
+ "volume24h": "1786.10243148749699034",
+ "communityRecognized": false,
+ "key": "evm--43114:0x88f89be3e9b1dc1c5f208696fb9cabfcc684bd5f",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Avalanche",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/avalanche.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--43114",
+ "address": "0x4f94b8aef08c92fefe416af073f1df1e284438ec",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--43114/tokens/address-0x4f94b8aef08c92fefe416af073f1df1e284438ec.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--43114/tokens/address-0x4f94b8aef08c92fefe416af073f1df1e284438ec.png"
+ ],
+ "name": "Landwolf",
+ "symbol": "WOLF",
+ "marketCap": "127356.513327389673901219",
+ "price": "0.00000023155890858287",
+ "priceChange24hPercent": "1.39",
+ "volume24h": "2681.845990630685833835",
+ "communityRecognized": false,
+ "key": "evm--43114:0x4f94b8aef08c92fefe416af073f1df1e284438ec",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Avalanche",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/avalanche.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--43114",
+ "address": "0xffff003a6bad9b743d658048742935fffe2b6ed7",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--43114/tokens/address-0xffff003a6bad9b743d658048742935fffe2b6ed7-1757667111630.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--43114/tokens/address-0xffff003a6bad9b743d658048742935fffe2b6ed7-1757667111630.png"
+ ],
+ "name": "yellow ket",
+ "symbol": "KET",
+ "marketCap": "711520.52589374009041036",
+ "price": "0.0007115472109502123",
+ "priceChange24hPercent": "4.26",
+ "volume24h": "1521.153525166249580698",
+ "communityRecognized": false,
+ "key": "evm--43114:0xffff003a6bad9b743d658048742935fffe2b6ed7",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Avalanche",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/avalanche.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--43114",
+ "address": "0xd586e7f844cea2f87f50152665bcbc2c279d8d70",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--43114/tokens/address-0xd586e7f844cea2f87f50152665bcbc2c279d8d70.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--43114/tokens/address-0xd586e7f844cea2f87f50152665bcbc2c279d8d70.png"
+ ],
+ "name": "Dai Stablecoin",
+ "symbol": "DAI.e",
+ "marketCap": "10684326.990104146454170628",
+ "price": "0.99811635472741452563",
+ "priceChange24hPercent": "-0.31",
+ "volume24h": "33117.60255880560843107",
+ "communityRecognized": false,
+ "key": "evm--43114:0xd586e7f844cea2f87f50152665bcbc2c279d8d70",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Avalanche",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/avalanche.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--43114",
+ "address": "0x9209e7ebd056d72c5996220e99df6049253debcf",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--43114/tokens/address-0x9209e7ebd056d72c5996220e99df6049253debcf-1757718012130.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--43114/tokens/address-0x9209e7ebd056d72c5996220e99df6049253debcf-1757718012130.png"
+ ],
+ "name": "MEOW",
+ "symbol": "MEOW",
+ "marketCap": "105537.075722204254040689",
+ "price": "0.00001055370758072729",
+ "priceChange24hPercent": "15.9",
+ "volume24h": "1722.261710175851237775",
+ "communityRecognized": false,
+ "key": "evm--43114:0x9209e7ebd056d72c5996220e99df6049253debcf",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Avalanche",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/avalanche.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--43114",
+ "address": "0x62edc0692bd897d2295872a9ffcac5425011c661",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--43114/tokens/address-0x62edc0692bd897d2295872a9ffcac5425011c661.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--43114/tokens/address-0x62edc0692bd897d2295872a9ffcac5425011c661.png"
+ ],
+ "name": "GMX",
+ "symbol": "GMX",
+ "marketCap": "5346776.126771555345973126",
+ "price": "8.48673387044177637046",
+ "priceChange24hPercent": "5.84",
+ "volume24h": "816.122351010094094312",
+ "communityRecognized": true,
+ "key": "evm--43114:0x62edc0692bd897d2295872a9ffcac5425011c661",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Avalanche",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/avalanche.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--43114",
+ "address": "0x26e9dbe75aed331e41272bece932ff1b48926ca9",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--43114/tokens/address-0x26e9dbe75aed331e41272bece932ff1b48926ca9-1760101231419.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--43114/tokens/address-0x26e9dbe75aed331e41272bece932ff1b48926ca9-1760101231419.png"
+ ],
+ "name": "Pharaoh Liquid Staking Token",
+ "symbol": "p33",
+ "marketCap": "11174047.621937762225207501",
+ "price": "0.070399015684057314",
+ "priceChange24hPercent": "-0.13",
+ "volume24h": "31339.75800029999145228",
+ "communityRecognized": false,
+ "key": "evm--43114:0x26e9dbe75aed331e41272bece932ff1b48926ca9",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Avalanche",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/avalanche.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--43114",
+ "address": "0xb2f85b7ab3c2b6f62df06de6ae7d09c010a5096e",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--43114/tokens/address-0xb2f85b7ab3c2b6f62df06de6ae7d09c010a5096e-1721961429011.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--43114/tokens/address-0xb2f85b7ab3c2b6f62df06de6ae7d09c010a5096e-1721961429011.png"
+ ],
+ "name": "XSGD",
+ "symbol": "XSGD",
+ "marketCap": "1263573.110021113759427558",
+ "price": "0.78919730708875688877",
+ "priceChange24hPercent": "0.09",
+ "volume24h": "1413.558287",
+ "communityRecognized": true,
+ "key": "evm--43114:0xb2f85b7ab3c2b6f62df06de6ae7d09c010a5096e",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Avalanche",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/avalanche.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--43114",
+ "address": "0xacfb898cff266e53278cc0124fc2c7c94c8cb9a5",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--43114/tokens/address-0xacfb898cff266e53278cc0124fc2c7c94c8cb9a5.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--43114/tokens/address-0xacfb898cff266e53278cc0124fc2c7c94c8cb9a5.png"
+ ],
+ "name": "AVAX HAS NO CHILL",
+ "symbol": "NOCHILL",
+ "marketCap": "385620.427433343057973613",
+ "price": "0.00024900424720456078",
+ "priceChange24hPercent": "-0.35",
+ "volume24h": "6478.543914348844115566",
+ "communityRecognized": false,
+ "key": "evm--43114:0xacfb898cff266e53278cc0124fc2c7c94c8cb9a5",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Avalanche",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/avalanche.png"
+ }
+ ],
+ "trending|evm--137|5m|all": [
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0xe7c3d8c9a439fede00d2600032d5db0be71c3c29",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0xe7c3d8c9a439fede00d2600032d5db0be71c3c29-1761559288530.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0xe7c3d8c9a439fede00d2600032d5db0be71c3c29-1761559288530.png"
+ ],
+ "name": "JPY Coin",
+ "symbol": "JPYC",
+ "marketCap": "24443427.601717534211631843",
+ "price": "0.00649970907167416028",
+ "priceChange24hPercent": "-0.08",
+ "volume24h": "3820.122877",
+ "communityRecognized": false,
+ "key": "evm--137:0xe7c3d8c9a439fede00d2600032d5db0be71c3c29",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0x1bdf71ede1a4777db1eebe7232bcda20d6fc1610",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0x1bdf71ede1a4777db1eebe7232bcda20d6fc1610-1757692869876.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0x1bdf71ede1a4777db1eebe7232bcda20d6fc1610-1757692869876.png"
+ ],
+ "name": "WhaleBit",
+ "symbol": "CES",
+ "marketCap": "102629513.761082236269134959",
+ "price": "0.24313139727854461669",
+ "priceChange24hPercent": "-0.1",
+ "volume24h": "5979.57250993479",
+ "communityRecognized": true,
+ "key": "evm--137:0x1bdf71ede1a4777db1eebe7232bcda20d6fc1610",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0x98965474ecbec2f532f1f780ee37b0b05f77ca55",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0x98965474ecbec2f532f1f780ee37b0b05f77ca55-1757693116824.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0x98965474ecbec2f532f1f780ee37b0b05f77ca55-1757693116824.png"
+ ],
+ "name": "SUPER TRUST",
+ "symbol": "SUT",
+ "marketCap": "112734150.636696368984956195",
+ "price": "0.59836474382660707829",
+ "priceChange24hPercent": "-0.38",
+ "volume24h": "669.22856710458",
+ "communityRecognized": false,
+ "key": "evm--137:0x98965474ecbec2f532f1f780ee37b0b05f77ca55",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0x3bf668fe1ec79a84ca8481cead5dbb30d61cc685",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0x3bf668fe1ec79a84ca8481cead5dbb30d61cc685-1757692891566.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0x3bf668fe1ec79a84ca8481cead5dbb30d61cc685-1757692891566.png"
+ ],
+ "name": "teleBTC",
+ "symbol": "TELEBTC",
+ "marketCap": "180294.530846634627591488",
+ "price": "78712.60019609620443291212",
+ "priceChange24hPercent": "-0.01",
+ "volume24h": "3388.350746153377",
+ "communityRecognized": false,
+ "key": "evm--137:0x3bf668fe1ec79a84ca8481cead5dbb30d61cc685",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0x6631ee651da438db2be611b5a44dfe2ca04590c5",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/8356346777831140edc501f7c039ec2abceb49e4ee845cb86f3053a51d691863",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/8356346777831140edc501f7c039ec2abceb49e4ee845cb86f3053a51d691863"
+ ],
+ "name": "A",
+ "symbol": "A",
+ "marketCap": "147914423.723158144923750494",
+ "price": "0.98760879831624551039",
+ "priceChange24hPercent": "0.62",
+ "volume24h": "620.7235694522",
+ "communityRecognized": false,
+ "key": "evm--137:0x6631ee651da438db2be611b5a44dfe2ca04590c5",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0xdc3326e71d45186f113a2f448984ca0e8d201995",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0xdc3326e71d45186f113a2f448984ca0e8d201995.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0xdc3326e71d45186f113a2f448984ca0e8d201995.png"
+ ],
+ "name": "XSGD",
+ "symbol": "XSGD",
+ "marketCap": "1680261.629252040113109561",
+ "price": "0.78861799537956301873",
+ "priceChange24hPercent": "0.06",
+ "volume24h": "1000.004128",
+ "communityRecognized": true,
+ "key": "evm--137:0xdc3326e71d45186f113a2f448984ca0e8d201995",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ }
+ ],
+ "trending|evm--137|1h|all": [
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0xe7c3d8c9a439fede00d2600032d5db0be71c3c29",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0xe7c3d8c9a439fede00d2600032d5db0be71c3c29-1761559288530.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0xe7c3d8c9a439fede00d2600032d5db0be71c3c29-1761559288530.png"
+ ],
+ "name": "JPY Coin",
+ "symbol": "JPYC",
+ "marketCap": "24443427.601717534211631843",
+ "price": "0.00649970907167416028",
+ "priceChange24hPercent": "-0.03",
+ "volume24h": "27402.793767",
+ "communityRecognized": false,
+ "key": "evm--137:0xe7c3d8c9a439fede00d2600032d5db0be71c3c29",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0xac0f66379a6d7801d7726d5a943356a172549adb",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0xac0f66379a6d7801d7726d5a943356a172549adb.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0xac0f66379a6d7801d7726d5a943356a172549adb.png"
+ ],
+ "name": "Geodnet Token",
+ "symbol": "GEOD",
+ "marketCap": "101221600.002375794954718207",
+ "price": "0.22765667658969214727",
+ "priceChange24hPercent": "-0.47",
+ "volume24h": "1197.12323220574",
+ "communityRecognized": true,
+ "key": "evm--137:0xac0f66379a6d7801d7726d5a943356a172549adb",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0x1bdf71ede1a4777db1eebe7232bcda20d6fc1610",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0x1bdf71ede1a4777db1eebe7232bcda20d6fc1610-1757692869876.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0x1bdf71ede1a4777db1eebe7232bcda20d6fc1610-1757692869876.png"
+ ],
+ "name": "WhaleBit",
+ "symbol": "CES",
+ "marketCap": "102629513.761082236269134959",
+ "price": "0.24313139727854461669",
+ "priceChange24hPercent": "-0.66",
+ "volume24h": "143200.1417450643",
+ "communityRecognized": true,
+ "key": "evm--137:0x1bdf71ede1a4777db1eebe7232bcda20d6fc1610",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0x4c18406fa690faa53e5efa899a971557251af72d",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0x4c18406fa690faa53e5efa899a971557251af72d-1770631371215.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0x4c18406fa690faa53e5efa899a971557251af72d-1770631371215.png"
+ ],
+ "name": "InfinityDAO",
+ "symbol": "IDL",
+ "marketCap": "7764484.414290576852370746",
+ "price": "0.39868965419877236516",
+ "priceChange24hPercent": "0.49",
+ "volume24h": "1552.59959942049",
+ "communityRecognized": false,
+ "key": "evm--137:0x4c18406fa690faa53e5efa899a971557251af72d",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0xd93f7e271cb87c23aaa73edc008a79646d1f9912",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0xd93f7e271cb87c23aaa73edc008a79646d1f9912.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0xd93f7e271cb87c23aaa73edc008a79646d1f9912.png"
+ ],
+ "name": "Wrapped SOL",
+ "symbol": "SOL",
+ "marketCap": "1629401.414467845901680993",
+ "price": "103.99812231108721101388",
+ "priceChange24hPercent": "-0.4",
+ "volume24h": "678.265821877209417",
+ "communityRecognized": false,
+ "key": "evm--137:0xd93f7e271cb87c23aaa73edc008a79646d1f9912",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0xd2e57e7019a8faea8b3e4a3738ee5b269975008a",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0xd2e57e7019a8faea8b3e4a3738ee5b269975008a-1729570500059.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0xd2e57e7019a8faea8b3e4a3738ee5b269975008a-1729570500059.png"
+ ],
+ "name": "THAT",
+ "symbol": "THAT",
+ "marketCap": "1213724.432332450646864224",
+ "price": "0.0022528796377803397",
+ "priceChange24hPercent": "-0.56",
+ "volume24h": "534.930042",
+ "communityRecognized": false,
+ "key": "evm--137:0xd2e57e7019a8faea8b3e4a3738ee5b269975008a",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0xc9bef791701d868f34bd7f918f169af72ccb83bc",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/f46fc270d9b2a625d60dd58f5ded27ffbb202ba1909d5017df55876dbaa4417e",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/f46fc270d9b2a625d60dd58f5ded27ffbb202ba1909d5017df55876dbaa4417e"
+ ],
+ "name": "Jztcoin",
+ "symbol": "JZT",
+ "marketCap": "103885175.005882781271357985",
+ "price": "0.10388517500588278127",
+ "priceChange24hPercent": "-0.37",
+ "volume24h": "502.9318558955",
+ "communityRecognized": false,
+ "key": "evm--137:0xc9bef791701d868f34bd7f918f169af72ccb83bc",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0xc708d6f2153933daa50b2d0758955be0a93a8fec",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0xc708d6f2153933daa50b2d0758955be0a93a8fec.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0xc708d6f2153933daa50b2d0758955be0a93a8fec.png"
+ ],
+ "name": "Verse (FXERC20)",
+ "symbol": "fxVERSE",
+ "marketCap": "337094.927500264884231456",
+ "price": "0.0000171890708635654",
+ "priceChange24hPercent": "-3.48",
+ "volume24h": "728.2219037372662725",
+ "communityRecognized": false,
+ "key": "evm--137:0xc708d6f2153933daa50b2d0758955be0a93a8fec",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0x933479ba627356f7efaba030504bf1c65cffca5a",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0x933479ba627356f7efaba030504bf1c65cffca5a-1776852016386.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0x933479ba627356f7efaba030504bf1c65cffca5a-1776852016386.png"
+ ],
+ "name": "Cortik AI",
+ "symbol": "CTK",
+ "marketCap": "200208.031194181372843309",
+ "price": "6.33860989014828276117",
+ "priceChange24hPercent": "-0.58",
+ "volume24h": "812.12977555756",
+ "communityRecognized": false,
+ "key": "evm--137:0x933479ba627356f7efaba030504bf1c65cffca5a",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0xed39e7bf06e946007a44b29b85a329311bbc3dc2",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/4a563ac1c0cd1b7ed43429ee1ad5750a8ca22c0eaaa08d0427a8a86e8a2348f0",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/4a563ac1c0cd1b7ed43429ee1ad5750a8ca22c0eaaa08d0427a8a86e8a2348f0"
+ ],
+ "name": "FishFi",
+ "symbol": "FFI",
+ "marketCap": "40151994.904488677658932914",
+ "price": "3.65018135495351615081",
+ "priceChange24hPercent": "-5.81",
+ "volume24h": "3047.8998228359",
+ "communityRecognized": false,
+ "key": "evm--137:0xed39e7bf06e946007a44b29b85a329311bbc3dc2",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0x98965474ecbec2f532f1f780ee37b0b05f77ca55",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0x98965474ecbec2f532f1f780ee37b0b05f77ca55-1757693116824.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0x98965474ecbec2f532f1f780ee37b0b05f77ca55-1757693116824.png"
+ ],
+ "name": "SUPER TRUST",
+ "symbol": "SUT",
+ "marketCap": "112734150.636696368984956195",
+ "price": "0.59836474382660707829",
+ "priceChange24hPercent": "1.38",
+ "volume24h": "9578.82937698949",
+ "communityRecognized": false,
+ "key": "evm--137:0x98965474ecbec2f532f1f780ee37b0b05f77ca55",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0xdf7837de1f2fa4631d716cf2502f8b230f1dcc32",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0xdf7837de1f2fa4631d716cf2502f8b230f1dcc32.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0xdf7837de1f2fa4631d716cf2502f8b230f1dcc32.png"
+ ],
+ "name": "Telcoin (PoS)",
+ "symbol": "TEL",
+ "marketCap": "63446531.295290128142852777",
+ "price": "0.00169521049094186295",
+ "priceChange24hPercent": "0.09",
+ "volume24h": "3396.85665414340380416",
+ "communityRecognized": true,
+ "key": "evm--137:0xdf7837de1f2fa4631d716cf2502f8b230f1dcc32",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0x3bf668fe1ec79a84ca8481cead5dbb30d61cc685",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0x3bf668fe1ec79a84ca8481cead5dbb30d61cc685-1757692891566.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0x3bf668fe1ec79a84ca8481cead5dbb30d61cc685-1757692891566.png"
+ ],
+ "name": "teleBTC",
+ "symbol": "TELEBTC",
+ "marketCap": "180294.530846634627591488",
+ "price": "78712.60019609620443291212",
+ "priceChange24hPercent": "-0.12",
+ "volume24h": "5571.034230684505323",
+ "communityRecognized": false,
+ "key": "evm--137:0x3bf668fe1ec79a84ca8481cead5dbb30d61cc685",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0x0566c506477cd2d8df4e0123512dbc344bd9d111",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0x0566c506477cd2d8df4e0123512dbc344bd9d111-1721961418666.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0x0566c506477cd2d8df4e0123512dbc344bd9d111-1721961418666.png"
+ ],
+ "name": "MyLovelyCoin",
+ "symbol": "MLC",
+ "marketCap": "1775925.02719985815247497",
+ "price": "0.01841069064345258363",
+ "priceChange24hPercent": "-2.27",
+ "volume24h": "4695.00354552077",
+ "communityRecognized": true,
+ "key": "evm--137:0x0566c506477cd2d8df4e0123512dbc344bd9d111",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0x8a16d4bf8a0a716017e8d2262c4ac32927797a2f",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0x8a16d4bf8a0a716017e8d2262c4ac32927797a2f.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0x8a16d4bf8a0a716017e8d2262c4ac32927797a2f.png"
+ ],
+ "name": "ViciCoin",
+ "symbol": "VCNT",
+ "marketCap": "56341672.339934344824973497",
+ "price": "18.4917285984225713782",
+ "priceChange24hPercent": "-0.35",
+ "volume24h": "12839.15475456521",
+ "communityRecognized": false,
+ "key": "evm--137:0x8a16d4bf8a0a716017e8d2262c4ac32927797a2f",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0xd9d12f43918363cea1c0b62d16f1f81b8eae91e0",
+ "logoUrl": "https://static.oklink.com/cdn/web3/currency/token/large/137-0xd9d12f43918363cea1c0b62d16f1f81b8eae91e0-106/type=default_90_0?v=1788826922914",
+ "logoUrls": [
+ "https://static.oklink.com/cdn/web3/currency/token/large/137-0xd9d12f43918363cea1c0b62d16f1f81b8eae91e0-106/type=default_90_0?v=1788826922914"
+ ],
+ "name": "Auralith",
+ "symbol": "AURA",
+ "marketCap": "8175246.762813974855121683",
+ "price": "0.96152262286196505172",
+ "priceChange24hPercent": "-0.24",
+ "volume24h": "2629.7161831901709028",
+ "communityRecognized": false,
+ "key": "evm--137:0xd9d12f43918363cea1c0b62d16f1f81b8eae91e0",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0x6a92b1e99de09f71cd96bc91f934826d96b8b26e",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0x6a92b1e99de09f71cd96bc91f934826d96b8b26e-1757693028865.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0x6a92b1e99de09f71cd96bc91f934826d96b8b26e-1757693028865.png"
+ ],
+ "name": "AS Token",
+ "symbol": "AS",
+ "marketCap": "161591045.868495256456006356",
+ "price": "0.63424647922090259007",
+ "priceChange24hPercent": "-0.91",
+ "volume24h": "14711.036840282730522908",
+ "communityRecognized": false,
+ "key": "evm--137:0x6a92b1e99de09f71cd96bc91f934826d96b8b26e",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0x4ed141110f6eeeaba9a1df36d8c26f684d2475dc",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0x4ed141110f6eeeaba9a1df36d8c26f684d2475dc.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0x4ed141110f6eeeaba9a1df36d8c26f684d2475dc.png"
+ ],
+ "name": "BRZ Token",
+ "symbol": "BRZ",
+ "marketCap": "10893038.176603565874588272",
+ "price": "0.19270249392855010706",
+ "priceChange24hPercent": "-0.04",
+ "volume24h": "703.60501112041",
+ "communityRecognized": false,
+ "key": "evm--137:0x4ed141110f6eeeaba9a1df36d8c26f684d2475dc",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0xd6df932a45c0f255f85145f286ea0b292b21c90b",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0xd6df932a45c0f255f85145f286ea0b292b21c90b.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0xd6df932a45c0f255f85145f286ea0b292b21c90b.png"
+ ],
+ "name": "Aave",
+ "symbol": "AAVE",
+ "marketCap": "7925094.280157481218873094",
+ "price": "131.07000397014700417932",
+ "priceChange24hPercent": "0.12",
+ "volume24h": "1156.317000615851074254",
+ "communityRecognized": true,
+ "key": "evm--137:0xd6df932a45c0f255f85145f286ea0b292b21c90b",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0x53e0bca35ec356bd5dddfebbd1fc0fd03fabad39",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0x53e0bca35ec356bd5dddfebbd1fc0fd03fabad39.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0x53e0bca35ec356bd5dddfebbd1fc0fd03fabad39.png"
+ ],
+ "name": "ChainLink Token",
+ "symbol": "LINK",
+ "marketCap": "14336666.92152876537317919",
+ "price": "12.63533410905304877436",
+ "priceChange24hPercent": "0.06",
+ "volume24h": "14500.488953313159180345",
+ "communityRecognized": true,
+ "key": "evm--137:0x53e0bca35ec356bd5dddfebbd1fc0fd03fabad39",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0x2c72d25530191ebd244eb6325e1892480b0e6e28",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0x2c72d25530191ebd244eb6325e1892480b0e6e28-1769767410884.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0x2c72d25530191ebd244eb6325e1892480b0e6e28-1769767410884.png"
+ ],
+ "name": "AI Powered Finance",
+ "symbol": "AIPF",
+ "marketCap": "26979395.425896153684254366",
+ "price": "0.39361791408640350877",
+ "priceChange24hPercent": "-0.28",
+ "volume24h": "10418.13253827227",
+ "communityRecognized": true,
+ "key": "evm--137:0x2c72d25530191ebd244eb6325e1892480b0e6e28",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0xb33eaad8d922b1083446dc23f610c2567fb5180f",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0xb33eaad8d922b1083446dc23f610c2567fb5180f.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0xb33eaad8d922b1083446dc23f610c2567fb5180f.png"
+ ],
+ "name": "Uniswap",
+ "symbol": "UNI",
+ "marketCap": "1777734.344075039053059514",
+ "price": "6.99266360721089294278",
+ "priceChange24hPercent": "-0.03",
+ "volume24h": "3076.192809554752443005",
+ "communityRecognized": true,
+ "key": "evm--137:0xb33eaad8d922b1083446dc23f610c2567fb5180f",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0x6631ee651da438db2be611b5a44dfe2ca04590c5",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/8356346777831140edc501f7c039ec2abceb49e4ee845cb86f3053a51d691863",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/8356346777831140edc501f7c039ec2abceb49e4ee845cb86f3053a51d691863"
+ ],
+ "name": "A",
+ "symbol": "A",
+ "marketCap": "147914423.723158144923750494",
+ "price": "0.98760879831624551039",
+ "priceChange24hPercent": "0.91",
+ "volume24h": "8398.827439285644799",
+ "communityRecognized": false,
+ "key": "evm--137:0x6631ee651da438db2be611b5a44dfe2ca04590c5",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0x99a57e6c8558bc6689f894e068733adf83c19725",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/c55d204e4397b89a633b73082f8a820e85de339ca73c738b068520e2cd47d038",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/c55d204e4397b89a633b73082f8a820e85de339ca73c738b068520e2cd47d038"
+ ],
+ "name": "Staked Longinus",
+ "symbol": "sLGNS",
+ "marketCap": "6217549229.371844468571077015",
+ "price": "1.08799261886958409834",
+ "priceChange24hPercent": "0.91",
+ "volume24h": "114322.00114998765319248",
+ "communityRecognized": false,
+ "key": "evm--137:0x99a57e6c8558bc6689f894e068733adf83c19725",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0xcc44674022a792794d219847362bb95c661937a9",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0xcc44674022a792794d219847362bb95c661937a9-1757692998946.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0xcc44674022a792794d219847362bb95c661937a9-1757692998946.png"
+ ],
+ "name": "ROUTINE COIN",
+ "symbol": "ROU",
+ "marketCap": "188711.722946753915506629",
+ "price": "0.00028370879872665185",
+ "priceChange24hPercent": "0.24",
+ "volume24h": "509.57260631291",
+ "communityRecognized": false,
+ "key": "evm--137:0xcc44674022a792794d219847362bb95c661937a9",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0xdc3326e71d45186f113a2f448984ca0e8d201995",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0xdc3326e71d45186f113a2f448984ca0e8d201995.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0xdc3326e71d45186f113a2f448984ca0e8d201995.png"
+ ],
+ "name": "XSGD",
+ "symbol": "XSGD",
+ "marketCap": "1680261.629252040113109561",
+ "price": "0.78861799537956301873",
+ "priceChange24hPercent": "-0.02",
+ "volume24h": "38664.005167",
+ "communityRecognized": true,
+ "key": "evm--137:0xdc3326e71d45186f113a2f448984ca0e8d201995",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ }
+ ],
+ "trending|evm--137|4h|all": [
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0x430ef9263e76dae63c84292c3409d61c598e9682",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0x430ef9263e76dae63c84292c3409d61c598e9682.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0x430ef9263e76dae63c84292c3409d61c598e9682.png"
+ ],
+ "name": "PYR Token",
+ "symbol": "PYR",
+ "marketCap": "1005071.124072698028333448",
+ "price": "0.03265167502379426382",
+ "priceChange24hPercent": "13.94",
+ "volume24h": "2080.804180161026317692",
+ "communityRecognized": true,
+ "key": "evm--137:0x430ef9263e76dae63c84292c3409d61c598e9682",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0xe7c3d8c9a439fede00d2600032d5db0be71c3c29",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0xe7c3d8c9a439fede00d2600032d5db0be71c3c29-1761559288530.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0xe7c3d8c9a439fede00d2600032d5db0be71c3c29-1761559288530.png"
+ ],
+ "name": "JPY Coin",
+ "symbol": "JPYC",
+ "marketCap": "24443427.601717534211631843",
+ "price": "0.00649970907167416028",
+ "priceChange24hPercent": "0.21",
+ "volume24h": "75343.584322",
+ "communityRecognized": false,
+ "key": "evm--137:0xe7c3d8c9a439fede00d2600032d5db0be71c3c29",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0x172370d5cd63279efa6d502dab29171933a610af",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0x172370d5cd63279efa6d502dab29171933a610af.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0x172370d5cd63279efa6d502dab29171933a610af.png"
+ ],
+ "name": "curve dao token",
+ "symbol": "CRV",
+ "marketCap": "1632290.197175355485953284",
+ "price": "0.36467997347744169385",
+ "priceChange24hPercent": "-1.8",
+ "volume24h": "1978.624261765781396257",
+ "communityRecognized": true,
+ "key": "evm--137:0x172370d5cd63279efa6d502dab29171933a610af",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0x18ec0a6e18e5bc3784fdd3a3634b31245ab704f6",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0x18ec0a6e18e5bc3784fdd3a3634b31245ab704f6.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0x18ec0a6e18e5bc3784fdd3a3634b31245ab704f6.png"
+ ],
+ "name": "Monerium EUR emoney",
+ "symbol": "EURe",
+ "marketCap": "2107339.13481401694897234",
+ "price": "1.16186481",
+ "priceChange24hPercent": "-0.09",
+ "volume24h": "1349.375722",
+ "communityRecognized": false,
+ "key": "evm--137:0x18ec0a6e18e5bc3784fdd3a3634b31245ab704f6",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0xac0f66379a6d7801d7726d5a943356a172549adb",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0xac0f66379a6d7801d7726d5a943356a172549adb.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0xac0f66379a6d7801d7726d5a943356a172549adb.png"
+ ],
+ "name": "Geodnet Token",
+ "symbol": "GEOD",
+ "marketCap": "101221600.002375794954718207",
+ "price": "0.22765667658969214727",
+ "priceChange24hPercent": "-0.43",
+ "volume24h": "8605.3778444108459596",
+ "communityRecognized": true,
+ "key": "evm--137:0xac0f66379a6d7801d7726d5a943356a172549adb",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0x1bdf71ede1a4777db1eebe7232bcda20d6fc1610",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0x1bdf71ede1a4777db1eebe7232bcda20d6fc1610-1757692869876.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0x1bdf71ede1a4777db1eebe7232bcda20d6fc1610-1757692869876.png"
+ ],
+ "name": "WhaleBit",
+ "symbol": "CES",
+ "marketCap": "102629513.761082236269134959",
+ "price": "0.24313139727854461669",
+ "priceChange24hPercent": "0.39",
+ "volume24h": "352509.76873255014",
+ "communityRecognized": true,
+ "key": "evm--137:0x1bdf71ede1a4777db1eebe7232bcda20d6fc1610",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0x4c18406fa690faa53e5efa899a971557251af72d",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0x4c18406fa690faa53e5efa899a971557251af72d-1770631371215.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0x4c18406fa690faa53e5efa899a971557251af72d-1770631371215.png"
+ ],
+ "name": "InfinityDAO",
+ "symbol": "IDL",
+ "marketCap": "7764484.414290576852370746",
+ "price": "0.39868965419877236516",
+ "priceChange24hPercent": "0.37",
+ "volume24h": "3049.14510236797",
+ "communityRecognized": false,
+ "key": "evm--137:0x4c18406fa690faa53e5efa899a971557251af72d",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0xc011a7e12a19f7b1f670d46f03b03f3342e82dfb",
+ "logoUrl": "https://static.oklink.com/cdn/web3/currency/token/large/137-0xc011a7e12a19f7b1f670d46f03b03f3342e82dfb-106/type=default_90_0?v=1788822028042",
+ "logoUrls": [
+ "https://static.oklink.com/cdn/web3/currency/token/large/137-0xc011a7e12a19f7b1f670d46f03b03f3342e82dfb-106/type=default_90_0?v=1788822028042"
+ ],
+ "name": "Polymarket USD",
+ "symbol": "pUSD",
+ "marketCap": "174225527.44245581151656545",
+ "price": "0.999879000362998911",
+ "priceChange24hPercent": "-0.01",
+ "volume24h": "1520.235828",
+ "communityRecognized": false,
+ "key": "evm--137:0xc011a7e12a19f7b1f670d46f03b03f3342e82dfb",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0x1c954e8fe737f99f68fa1ccda3e51ebdb291948c",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0x1c954e8fe737f99f68fa1ccda3e51ebdb291948c.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0x1c954e8fe737f99f68fa1ccda3e51ebdb291948c.png"
+ ],
+ "name": "Kyber Network Crystal v2",
+ "symbol": "KNC",
+ "marketCap": "319991.204475614624164736",
+ "price": "0.12646029937468362759",
+ "priceChange24hPercent": "3.6",
+ "volume24h": "670.0308725578696023",
+ "communityRecognized": true,
+ "key": "evm--137:0x1c954e8fe737f99f68fa1ccda3e51ebdb291948c",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0xd93f7e271cb87c23aaa73edc008a79646d1f9912",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0xd93f7e271cb87c23aaa73edc008a79646d1f9912.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0xd93f7e271cb87c23aaa73edc008a79646d1f9912.png"
+ ],
+ "name": "Wrapped SOL",
+ "symbol": "SOL",
+ "marketCap": "1629401.414467845901680993",
+ "price": "103.99812231108721101388",
+ "priceChange24hPercent": "-0.88",
+ "volume24h": "2633.8887589910800612",
+ "communityRecognized": false,
+ "key": "evm--137:0xd93f7e271cb87c23aaa73edc008a79646d1f9912",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0xf4c3fac9c98aa62474998e299495b699dfdb00eb",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0xf4c3fac9c98aa62474998e299495b699dfdb00eb-1766311205275.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0xf4c3fac9c98aa62474998e299495b699dfdb00eb-1766311205275.png"
+ ],
+ "name": "HandlPay",
+ "symbol": "HANDL",
+ "marketCap": "95106.495491580299944677",
+ "price": "0.00241294177343791",
+ "priceChange24hPercent": "-3.8",
+ "volume24h": "2771.912166",
+ "communityRecognized": true,
+ "key": "evm--137:0xf4c3fac9c98aa62474998e299495b699dfdb00eb",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0xc3c7d422809852031b44ab29eec9f1eff2a58756",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0xc3c7d422809852031b44ab29eec9f1eff2a58756.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0xc3c7d422809852031b44ab29eec9f1eff2a58756.png"
+ ],
+ "name": "Lido DAO Token (PoS)",
+ "symbol": "LDO",
+ "marketCap": "533915.584611736806529973",
+ "price": "0.39343641401252841635",
+ "priceChange24hPercent": "-0.21",
+ "volume24h": "2446.055364057450814316",
+ "communityRecognized": true,
+ "key": "evm--137:0xc3c7d422809852031b44ab29eec9f1eff2a58756",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0x27ab6e82f3458edbc0703db2756391b899ce6324",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0x27ab6e82f3458edbc0703db2756391b899ce6324.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0x27ab6e82f3458edbc0703db2756391b899ce6324.png"
+ ],
+ "name": "Reental Utility Token",
+ "symbol": "RNT",
+ "marketCap": "40768758.309536211064381903",
+ "price": "0.31065252673961887536",
+ "priceChange24hPercent": "0.06",
+ "volume24h": "623.48467935245",
+ "communityRecognized": true,
+ "key": "evm--137:0x27ab6e82f3458edbc0703db2756391b899ce6324",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0xd2e57e7019a8faea8b3e4a3738ee5b269975008a",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0xd2e57e7019a8faea8b3e4a3738ee5b269975008a-1729570500059.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0xd2e57e7019a8faea8b3e4a3738ee5b269975008a-1729570500059.png"
+ ],
+ "name": "THAT",
+ "symbol": "THAT",
+ "marketCap": "1213724.432332450646864224",
+ "price": "0.0022528796377803397",
+ "priceChange24hPercent": "-0.13",
+ "volume24h": "2444.154192",
+ "communityRecognized": false,
+ "key": "evm--137:0xd2e57e7019a8faea8b3e4a3738ee5b269975008a",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0x6f8a06447ff6fcf75d803135a7de15ce88c1d4ec",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/a00a8ff95e7fdc663ced70cf56892ebf868d03ab715855d8e94b18952ed5f3f4",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/a00a8ff95e7fdc663ced70cf56892ebf868d03ab715855d8e94b18952ed5f3f4"
+ ],
+ "name": "SHIBA INU (PoS)",
+ "symbol": "SHIB",
+ "marketCap": "203707.014880439518407575",
+ "price": "0.00000538316177093019",
+ "priceChange24hPercent": "-0.16",
+ "volume24h": "552.564950746431276024",
+ "communityRecognized": false,
+ "key": "evm--137:0x6f8a06447ff6fcf75d803135a7de15ce88c1d4ec",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0xc9bef791701d868f34bd7f918f169af72ccb83bc",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/f46fc270d9b2a625d60dd58f5ded27ffbb202ba1909d5017df55876dbaa4417e",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/f46fc270d9b2a625d60dd58f5ded27ffbb202ba1909d5017df55876dbaa4417e"
+ ],
+ "name": "Jztcoin",
+ "symbol": "JZT",
+ "marketCap": "103885175.005882781271357985",
+ "price": "0.10388517500588278127",
+ "priceChange24hPercent": "-0.2",
+ "volume24h": "672.6851962739",
+ "communityRecognized": false,
+ "key": "evm--137:0xc9bef791701d868f34bd7f918f169af72ccb83bc",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0xb5c064f955d8e7f38fe0460c556a72987494ee17",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0xb5c064f955d8e7f38fe0460c556a72987494ee17.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0xb5c064f955d8e7f38fe0460c556a72987494ee17.png"
+ ],
+ "name": "QuickSwap",
+ "symbol": "QUICK",
+ "marketCap": "7524643.243810049637406575",
+ "price": "0.00916038114628262619",
+ "priceChange24hPercent": "-0.61",
+ "volume24h": "3643.39631068581238427",
+ "communityRecognized": true,
+ "key": "evm--137:0xb5c064f955d8e7f38fe0460c556a72987494ee17",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0xbbba073c31bf03b8acf7c28ef0738decf3695683",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0xbbba073c31bf03b8acf7c28ef0738decf3695683.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0xbbba073c31bf03b8acf7c28ef0738decf3695683.png"
+ ],
+ "name": "SAND",
+ "symbol": "SAND",
+ "marketCap": "5368070.133602941054486424",
+ "price": "0.04046327753985329944",
+ "priceChange24hPercent": "0.02",
+ "volume24h": "1572.573822517167815591",
+ "communityRecognized": true,
+ "key": "evm--137:0xbbba073c31bf03b8acf7c28ef0738decf3695683",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0xc708d6f2153933daa50b2d0758955be0a93a8fec",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0xc708d6f2153933daa50b2d0758955be0a93a8fec.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0xc708d6f2153933daa50b2d0758955be0a93a8fec.png"
+ ],
+ "name": "Verse (FXERC20)",
+ "symbol": "fxVERSE",
+ "marketCap": "337094.927500264884231456",
+ "price": "0.0000171890708635654",
+ "priceChange24hPercent": "-20.38",
+ "volume24h": "5411.788411025991848092",
+ "communityRecognized": false,
+ "key": "evm--137:0xc708d6f2153933daa50b2d0758955be0a93a8fec",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0x933479ba627356f7efaba030504bf1c65cffca5a",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0x933479ba627356f7efaba030504bf1c65cffca5a-1776852016386.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0x933479ba627356f7efaba030504bf1c65cffca5a-1776852016386.png"
+ ],
+ "name": "Cortik AI",
+ "symbol": "CTK",
+ "marketCap": "200208.031194181372843309",
+ "price": "6.33860989014828276117",
+ "priceChange24hPercent": "-0.55",
+ "volume24h": "1257.80656845046",
+ "communityRecognized": false,
+ "key": "evm--137:0x933479ba627356f7efaba030504bf1c65cffca5a",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0xf0949dd87d2531d665010d6274f06a357669457a",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0xf0949dd87d2531d665010d6274f06a357669457a-1721961418666.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0xf0949dd87d2531d665010d6274f06a357669457a-1721961418666.png"
+ ],
+ "name": "RealityMetaverse(PoS)",
+ "symbol": "RMV",
+ "marketCap": "1537686.7863105487370292",
+ "price": "0.00222659193270916736",
+ "priceChange24hPercent": "-1.85",
+ "volume24h": "1661.50725270062655164",
+ "communityRecognized": true,
+ "key": "evm--137:0xf0949dd87d2531d665010d6274f06a357669457a",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0xed39e7bf06e946007a44b29b85a329311bbc3dc2",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/4a563ac1c0cd1b7ed43429ee1ad5750a8ca22c0eaaa08d0427a8a86e8a2348f0",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/4a563ac1c0cd1b7ed43429ee1ad5750a8ca22c0eaaa08d0427a8a86e8a2348f0"
+ ],
+ "name": "FishFi",
+ "symbol": "FFI",
+ "marketCap": "40151994.904488677658932914",
+ "price": "3.65018135495351615081",
+ "priceChange24hPercent": "-7.86",
+ "volume24h": "4049.41911306071",
+ "communityRecognized": false,
+ "key": "evm--137:0xed39e7bf06e946007a44b29b85a329311bbc3dc2",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0x98965474ecbec2f532f1f780ee37b0b05f77ca55",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0x98965474ecbec2f532f1f780ee37b0b05f77ca55-1757693116824.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0x98965474ecbec2f532f1f780ee37b0b05f77ca55-1757693116824.png"
+ ],
+ "name": "SUPER TRUST",
+ "symbol": "SUT",
+ "marketCap": "112734150.636696368984956195",
+ "price": "0.59836474382660707829",
+ "priceChange24hPercent": "-0.51",
+ "volume24h": "35114.56089343929363",
+ "communityRecognized": false,
+ "key": "evm--137:0x98965474ecbec2f532f1f780ee37b0b05f77ca55",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0xdf7837de1f2fa4631d716cf2502f8b230f1dcc32",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0xdf7837de1f2fa4631d716cf2502f8b230f1dcc32.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0xdf7837de1f2fa4631d716cf2502f8b230f1dcc32.png"
+ ],
+ "name": "Telcoin (PoS)",
+ "symbol": "TEL",
+ "marketCap": "63446531.295290128142852777",
+ "price": "0.00169521049094186295",
+ "priceChange24hPercent": "-0.46",
+ "volume24h": "14773.313954451013354222",
+ "communityRecognized": true,
+ "key": "evm--137:0xdf7837de1f2fa4631d716cf2502f8b230f1dcc32",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0x311434160d7537be358930def317afb606c0d737",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0x311434160d7537be358930def317afb606c0d737.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0x311434160d7537be358930def317afb606c0d737.png"
+ ],
+ "name": "Nakamoto.Games",
+ "symbol": "NAKA",
+ "marketCap": "3863093.748395067016982722",
+ "price": "0.05944659072950479471",
+ "priceChange24hPercent": "2.02",
+ "volume24h": "1205.9377337290402053",
+ "communityRecognized": true,
+ "key": "evm--137:0x311434160d7537be358930def317afb606c0d737",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0xab5f7a0e20b0d056aed4aa4528c78da45be7308b",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0xab5f7a0e20b0d056aed4aa4528c78da45be7308b.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0xab5f7a0e20b0d056aed4aa4528c78da45be7308b.png"
+ ],
+ "name": "Imported GBYTE",
+ "symbol": "GBYTE",
+ "marketCap": "265999.108767073581311922",
+ "price": "4.86808970602870897656",
+ "priceChange24hPercent": "2.16",
+ "volume24h": "750.04849400502080425",
+ "communityRecognized": false,
+ "key": "evm--137:0xab5f7a0e20b0d056aed4aa4528c78da45be7308b",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0xcccf7c6552437ab1504c384c6ed4501daa3a9ac6",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0xcccf7c6552437ab1504c384c6ed4501daa3a9ac6-1757692857151.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0xcccf7c6552437ab1504c384c6ed4501daa3a9ac6-1757692857151.png"
+ ],
+ "name": "ATT",
+ "symbol": "ATT",
+ "marketCap": "2505892.116499737696669608",
+ "price": "0.02001898358516549649",
+ "priceChange24hPercent": "-2.53",
+ "volume24h": "509.35529362438",
+ "communityRecognized": false,
+ "key": "evm--137:0xcccf7c6552437ab1504c384c6ed4501daa3a9ac6",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0xb87904db461005fc716a6bf9f2d451c33b10b80b",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0xb87904db461005fc716a6bf9f2d451c33b10b80b.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0xb87904db461005fc716a6bf9f2d451c33b10b80b.png"
+ ],
+ "name": "Alongside Crypto Market Index (PoS)",
+ "symbol": "AMKT",
+ "marketCap": "129468.940392048431255964",
+ "price": "216.59924970203585765505",
+ "priceChange24hPercent": "2.4",
+ "volume24h": "861.02253434365397616",
+ "communityRecognized": false,
+ "key": "evm--137:0xb87904db461005fc716a6bf9f2d451c33b10b80b",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0x3bf668fe1ec79a84ca8481cead5dbb30d61cc685",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0x3bf668fe1ec79a84ca8481cead5dbb30d61cc685-1757692891566.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0x3bf668fe1ec79a84ca8481cead5dbb30d61cc685-1757692891566.png"
+ ],
+ "name": "teleBTC",
+ "symbol": "TELEBTC",
+ "marketCap": "180294.530846634627591488",
+ "price": "78712.60019609620443291212",
+ "priceChange24hPercent": "-0.21",
+ "volume24h": "61510.1520865420256174",
+ "communityRecognized": false,
+ "key": "evm--137:0x3bf668fe1ec79a84ca8481cead5dbb30d61cc685",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0x0566c506477cd2d8df4e0123512dbc344bd9d111",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0x0566c506477cd2d8df4e0123512dbc344bd9d111-1721961418666.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0x0566c506477cd2d8df4e0123512dbc344bd9d111-1721961418666.png"
+ ],
+ "name": "MyLovelyCoin",
+ "symbol": "MLC",
+ "marketCap": "1775925.02719985815247497",
+ "price": "0.01841069064345258363",
+ "priceChange24hPercent": "-2.38",
+ "volume24h": "4698.00191274152",
+ "communityRecognized": true,
+ "key": "evm--137:0x0566c506477cd2d8df4e0123512dbc344bd9d111",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0x7abe9edf5c544a04da83e9110cf46dbc4759170c",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0x7abe9edf5c544a04da83e9110cf46dbc4759170c-1728440100060.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0x7abe9edf5c544a04da83e9110cf46dbc4759170c-1728440100060.png"
+ ],
+ "name": "WPAY",
+ "symbol": "WPAY",
+ "marketCap": "7211833.075816483922910751",
+ "price": "0.60503579591201138981",
+ "priceChange24hPercent": "1.5",
+ "volume24h": "2081.30154644298004712",
+ "communityRecognized": false,
+ "key": "evm--137:0x7abe9edf5c544a04da83e9110cf46dbc4759170c",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0xf50d05a1402d0adafa880d36050736f9f6ee7dee",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0xf50d05a1402d0adafa880d36050736f9f6ee7dee.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0xf50d05a1402d0adafa880d36050736f9f6ee7dee.png"
+ ],
+ "name": "Fluid",
+ "symbol": "FLUID",
+ "marketCap": "767312.86492979727622853",
+ "price": "1.27934685981064854389",
+ "priceChange24hPercent": "2.71",
+ "volume24h": "2085.9803530297344527",
+ "communityRecognized": true,
+ "key": "evm--137:0xf50d05a1402d0adafa880d36050736f9f6ee7dee",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0x8a16d4bf8a0a716017e8d2262c4ac32927797a2f",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0x8a16d4bf8a0a716017e8d2262c4ac32927797a2f.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0x8a16d4bf8a0a716017e8d2262c4ac32927797a2f.png"
+ ],
+ "name": "ViciCoin",
+ "symbol": "VCNT",
+ "marketCap": "56341672.339934344824973497",
+ "price": "18.4917285984225713782",
+ "priceChange24hPercent": "-1.13",
+ "volume24h": "39541.25327407185",
+ "communityRecognized": false,
+ "key": "evm--137:0x8a16d4bf8a0a716017e8d2262c4ac32927797a2f",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0xd9d12f43918363cea1c0b62d16f1f81b8eae91e0",
+ "logoUrl": "https://static.oklink.com/cdn/web3/currency/token/large/137-0xd9d12f43918363cea1c0b62d16f1f81b8eae91e0-106/type=default_90_0?v=1788826922914",
+ "logoUrls": [
+ "https://static.oklink.com/cdn/web3/currency/token/large/137-0xd9d12f43918363cea1c0b62d16f1f81b8eae91e0-106/type=default_90_0?v=1788826922914"
+ ],
+ "name": "Auralith",
+ "symbol": "AURA",
+ "marketCap": "8175246.762813974855121683",
+ "price": "0.96152262286196505172",
+ "priceChange24hPercent": "-1.11",
+ "volume24h": "8662.341744767828661",
+ "communityRecognized": false,
+ "key": "evm--137:0xd9d12f43918363cea1c0b62d16f1f81b8eae91e0",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0x0dc4f92879b7670e5f4e4e6e3c801d229129d90d",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0x0dc4f92879b7670e5f4e4e6e3c801d229129d90d-1773050503107.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0x0dc4f92879b7670e5f4e4e6e3c801d229129d90d-1773050503107.png"
+ ],
+ "name": "Peso Argentino",
+ "symbol": "wARS",
+ "marketCap": "28427.179181669618007468",
+ "price": "0.00063847003875",
+ "priceChange24hPercent": "1.15",
+ "volume24h": "1010.727273",
+ "communityRecognized": false,
+ "key": "evm--137:0x0dc4f92879b7670e5f4e4e6e3c801d229129d90d",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0x6a92b1e99de09f71cd96bc91f934826d96b8b26e",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0x6a92b1e99de09f71cd96bc91f934826d96b8b26e-1757693028865.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0x6a92b1e99de09f71cd96bc91f934826d96b8b26e-1757693028865.png"
+ ],
+ "name": "AS Token",
+ "symbol": "AS",
+ "marketCap": "161591045.868495256456006356",
+ "price": "0.63424647922090259007",
+ "priceChange24hPercent": "-1.19",
+ "volume24h": "41236.333842697982714305",
+ "communityRecognized": false,
+ "key": "evm--137:0x6a92b1e99de09f71cd96bc91f934826d96b8b26e",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0x4ed141110f6eeeaba9a1df36d8c26f684d2475dc",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0x4ed141110f6eeeaba9a1df36d8c26f684d2475dc.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0x4ed141110f6eeeaba9a1df36d8c26f684d2475dc.png"
+ ],
+ "name": "BRZ Token",
+ "symbol": "BRZ",
+ "marketCap": "10893038.176603565874588272",
+ "price": "0.19270249392855010706",
+ "priceChange24hPercent": "-0.16",
+ "volume24h": "6286.43073767696",
+ "communityRecognized": false,
+ "key": "evm--137:0x4ed141110f6eeeaba9a1df36d8c26f684d2475dc",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0xd6df932a45c0f255f85145f286ea0b292b21c90b",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0xd6df932a45c0f255f85145f286ea0b292b21c90b.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0xd6df932a45c0f255f85145f286ea0b292b21c90b.png"
+ ],
+ "name": "Aave",
+ "symbol": "AAVE",
+ "marketCap": "7925094.280157481218873094",
+ "price": "131.07000397014700417932",
+ "priceChange24hPercent": "-0.78",
+ "volume24h": "32933.472175082904105367",
+ "communityRecognized": true,
+ "key": "evm--137:0xd6df932a45c0f255f85145f286ea0b292b21c90b",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0x53e0bca35ec356bd5dddfebbd1fc0fd03fabad39",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0x53e0bca35ec356bd5dddfebbd1fc0fd03fabad39.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0x53e0bca35ec356bd5dddfebbd1fc0fd03fabad39.png"
+ ],
+ "name": "ChainLink Token",
+ "symbol": "LINK",
+ "marketCap": "14336666.92152876537317919",
+ "price": "12.63533410905304877436",
+ "priceChange24hPercent": "-1.15",
+ "volume24h": "90253.525916865869194972",
+ "communityRecognized": true,
+ "key": "evm--137:0x53e0bca35ec356bd5dddfebbd1fc0fd03fabad39",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0x2c72d25530191ebd244eb6325e1892480b0e6e28",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0x2c72d25530191ebd244eb6325e1892480b0e6e28-1769767410884.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0x2c72d25530191ebd244eb6325e1892480b0e6e28-1769767410884.png"
+ ],
+ "name": "AI Powered Finance",
+ "symbol": "AIPF",
+ "marketCap": "26979395.425896153684254366",
+ "price": "0.39361791408640350877",
+ "priceChange24hPercent": "-0.49",
+ "volume24h": "29563.90355280471",
+ "communityRecognized": true,
+ "key": "evm--137:0x2c72d25530191ebd244eb6325e1892480b0e6e28",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0x553d3d295e0f695b9228246232edf400ed3560b5",
+ "logoUrl": "https://static.oklink.com/cdn/web3/currency/token/large/137-0x553d3d295e0f695b9228246232edf400ed3560b5-106/type=default_90_0?v=1788805445791",
+ "logoUrls": [
+ "https://static.oklink.com/cdn/web3/currency/token/large/137-0x553d3d295e0f695b9228246232edf400ed3560b5-106/type=default_90_0?v=1788805445791"
+ ],
+ "name": "Paxos Gold (PoS)",
+ "symbol": "PAXG",
+ "marketCap": "804423.012897933116798528",
+ "price": "4407.33738931006301199162",
+ "priceChange24hPercent": "0.19",
+ "volume24h": "699.724735012215923",
+ "communityRecognized": false,
+ "key": "evm--137:0x553d3d295e0f695b9228246232edf400ed3560b5",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0xb33eaad8d922b1083446dc23f610c2567fb5180f",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0xb33eaad8d922b1083446dc23f610c2567fb5180f.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0xb33eaad8d922b1083446dc23f610c2567fb5180f.png"
+ ],
+ "name": "Uniswap",
+ "symbol": "UNI",
+ "marketCap": "1777734.344075039053059514",
+ "price": "6.99266360721089294278",
+ "priceChange24hPercent": "2.03",
+ "volume24h": "21930.402708884393672027",
+ "communityRecognized": true,
+ "key": "evm--137:0xb33eaad8d922b1083446dc23f610c2567fb5180f",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0x6631ee651da438db2be611b5a44dfe2ca04590c5",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/8356346777831140edc501f7c039ec2abceb49e4ee845cb86f3053a51d691863",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/8356346777831140edc501f7c039ec2abceb49e4ee845cb86f3053a51d691863"
+ ],
+ "name": "A",
+ "symbol": "A",
+ "marketCap": "147914423.723158144923750494",
+ "price": "0.98760879831624551039",
+ "priceChange24hPercent": "0.53",
+ "volume24h": "14522.448240630664663884",
+ "communityRecognized": false,
+ "key": "evm--137:0x6631ee651da438db2be611b5a44dfe2ca04590c5",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0x14913815bcfde78baead2111f463d038ac9c2949",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0x14913815bcfde78baead2111f463d038ac9c2949-1768816960659.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0x14913815bcfde78baead2111f463d038ac9c2949-1768816960659.png"
+ ],
+ "name": "eUSD",
+ "symbol": "eUSD",
+ "marketCap": "3057456.026641190015510061",
+ "price": "1.00000236361805634015",
+ "priceChange24hPercent": "0",
+ "volume24h": "1163.854456",
+ "communityRecognized": false,
+ "key": "evm--137:0x14913815bcfde78baead2111f463d038ac9c2949",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0x99a57e6c8558bc6689f894e068733adf83c19725",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/c55d204e4397b89a633b73082f8a820e85de339ca73c738b068520e2cd47d038",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/c55d204e4397b89a633b73082f8a820e85de339ca73c738b068520e2cd47d038"
+ ],
+ "name": "Staked Longinus",
+ "symbol": "sLGNS",
+ "marketCap": "6217549229.371844468571077015",
+ "price": "1.08799261886958409834",
+ "priceChange24hPercent": "-0.11",
+ "volume24h": "342796.575741430283503875",
+ "communityRecognized": false,
+ "key": "evm--137:0x99a57e6c8558bc6689f894e068733adf83c19725",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0xcc44674022a792794d219847362bb95c661937a9",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0xcc44674022a792794d219847362bb95c661937a9-1757692998946.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0xcc44674022a792794d219847362bb95c661937a9-1757692998946.png"
+ ],
+ "name": "ROUTINE COIN",
+ "symbol": "ROU",
+ "marketCap": "188711.722946753915506629",
+ "price": "0.00028370879872665185",
+ "priceChange24hPercent": "0.16",
+ "volume24h": "869.60958301831",
+ "communityRecognized": false,
+ "key": "evm--137:0xcc44674022a792794d219847362bb95c661937a9",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0xdc3326e71d45186f113a2f448984ca0e8d201995",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0xdc3326e71d45186f113a2f448984ca0e8d201995.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0xdc3326e71d45186f113a2f448984ca0e8d201995.png"
+ ],
+ "name": "XSGD",
+ "symbol": "XSGD",
+ "marketCap": "1680261.629252040113109561",
+ "price": "0.78861799537956301873",
+ "priceChange24hPercent": "-0.1",
+ "volume24h": "104162.053504",
+ "communityRecognized": true,
+ "key": "evm--137:0xdc3326e71d45186f113a2f448984ca0e8d201995",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0xe6a537a407488807f0bbeb0038b79004f19dddfb",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0xe6a537a407488807f0bbeb0038b79004f19dddfb-1725521400084.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0xe6a537a407488807f0bbeb0038b79004f19dddfb-1725521400084.png"
+ ],
+ "name": "BRLA Token",
+ "symbol": "BRLA",
+ "marketCap": "3584698.967294983318620213",
+ "price": "0.19257686861903408893",
+ "priceChange24hPercent": "-0.3",
+ "volume24h": "11733.1977553199",
+ "communityRecognized": false,
+ "key": "evm--137:0xe6a537a407488807f0bbeb0038b79004f19dddfb",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0xa3fa99a148fa48d14ed51d610c367c61876997f1",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0xa3fa99a148fa48d14ed51d610c367c61876997f1.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0xa3fa99a148fa48d14ed51d610c367c61876997f1.png"
+ ],
+ "name": "miMATIC",
+ "symbol": "miMATIC",
+ "marketCap": "209540954.899823010123377089",
+ "price": "0.97797561746716640383",
+ "priceChange24hPercent": "-0.14",
+ "volume24h": "528.142928055583489026",
+ "communityRecognized": false,
+ "key": "evm--137:0xa3fa99a148fa48d14ed51d610c367c61876997f1",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ }
+ ],
+ "trending|evm--137|24h|all": [
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0x7919f27cc85f99dec8b98325aca5287f9f769f38",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/8356346777831140edc501f7c039ec2abceb49e4ee845cb86f3053a51d691863",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/8356346777831140edc501f7c039ec2abceb49e4ee845cb86f3053a51d691863"
+ ],
+ "name": "ATXM Token",
+ "symbol": "ATXM",
+ "marketCap": "120871850.777688071932167767",
+ "price": "0.0577684664504925428",
+ "priceChange24hPercent": "-7.88",
+ "volume24h": "2184.55906950711019684",
+ "communityRecognized": false,
+ "key": "evm--137:0x7919f27cc85f99dec8b98325aca5287f9f769f38",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0x3a58a54c066fdc0f2d55fc9c89f0415c92ebf3c4",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0x3a58a54c066fdc0f2d55fc9c89f0415c92ebf3c4.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0x3a58a54c066fdc0f2d55fc9c89f0415c92ebf3c4.png"
+ ],
+ "name": "Staked MATIC (PoS)",
+ "symbol": "stMATIC",
+ "marketCap": "221301.770339625262655507",
+ "price": "0.10988819050221397351",
+ "priceChange24hPercent": "-1.72",
+ "volume24h": "2131.575907257437975833",
+ "communityRecognized": false,
+ "key": "evm--137:0x3a58a54c066fdc0f2d55fc9c89f0415c92ebf3c4",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0x430ef9263e76dae63c84292c3409d61c598e9682",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0x430ef9263e76dae63c84292c3409d61c598e9682.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0x430ef9263e76dae63c84292c3409d61c598e9682.png"
+ ],
+ "name": "PYR Token",
+ "symbol": "PYR",
+ "marketCap": "1005071.124072698028333448",
+ "price": "0.03265167502379426382",
+ "priceChange24hPercent": "34.3",
+ "volume24h": "16518.537816004412364916",
+ "communityRecognized": true,
+ "key": "evm--137:0x430ef9263e76dae63c84292c3409d61c598e9682",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0xe7c3d8c9a439fede00d2600032d5db0be71c3c29",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0xe7c3d8c9a439fede00d2600032d5db0be71c3c29-1761559288530.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0xe7c3d8c9a439fede00d2600032d5db0be71c3c29-1761559288530.png"
+ ],
+ "name": "JPY Coin",
+ "symbol": "JPYC",
+ "marketCap": "24443427.601717534211631843",
+ "price": "0.00649970907167416028",
+ "priceChange24hPercent": "1.78",
+ "volume24h": "378929.9695847574586729",
+ "communityRecognized": false,
+ "key": "evm--137:0xe7c3d8c9a439fede00d2600032d5db0be71c3c29",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0x6966fec28ae7f598bd29c788def80f56ffa12de9",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/e866368e6e855438c7b2518700e7e474af19aaaeadb30238d768cce9a7e2c397",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/e866368e6e855438c7b2518700e7e474af19aaaeadb30238d768cce9a7e2c397"
+ ],
+ "name": "Universe Meta",
+ "symbol": "UVM",
+ "marketCap": "689258074.1728",
+ "price": "0.3820721032",
+ "priceChange24hPercent": "-0.39",
+ "volume24h": "2480.41063043085",
+ "communityRecognized": false,
+ "key": "evm--137:0x6966fec28ae7f598bd29c788def80f56ffa12de9",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0x172370d5cd63279efa6d502dab29171933a610af",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0x172370d5cd63279efa6d502dab29171933a610af.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0x172370d5cd63279efa6d502dab29171933a610af.png"
+ ],
+ "name": "curve dao token",
+ "symbol": "CRV",
+ "marketCap": "1632290.197175355485953284",
+ "price": "0.36467997347744169385",
+ "priceChange24hPercent": "-6.2",
+ "volume24h": "15649.326606170294008422",
+ "communityRecognized": true,
+ "key": "evm--137:0x172370d5cd63279efa6d502dab29171933a610af",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0x831753dd7087cac61ab5644b308642cc1c33dc13",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0x831753dd7087cac61ab5644b308642cc1c33dc13.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0x831753dd7087cac61ab5644b308642cc1c33dc13.png"
+ ],
+ "name": "Quickswap",
+ "symbol": "QUICK",
+ "marketCap": "2307124.091562111597367649",
+ "price": "10.27437347767383872865",
+ "priceChange24hPercent": "-0.61",
+ "volume24h": "4698.980700192454526765",
+ "communityRecognized": false,
+ "key": "evm--137:0x831753dd7087cac61ab5644b308642cc1c33dc13",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0x18ec0a6e18e5bc3784fdd3a3634b31245ab704f6",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0x18ec0a6e18e5bc3784fdd3a3634b31245ab704f6.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0x18ec0a6e18e5bc3784fdd3a3634b31245ab704f6.png"
+ ],
+ "name": "Monerium EUR emoney",
+ "symbol": "EURe",
+ "marketCap": "2107339.13481401694897234",
+ "price": "1.16186481",
+ "priceChange24hPercent": "0.01",
+ "volume24h": "24446.649281",
+ "communityRecognized": false,
+ "key": "evm--137:0x18ec0a6e18e5bc3784fdd3a3634b31245ab704f6",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0xd125443f38a69d776177c2b9c041f462936f8218",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0xd125443f38a69d776177c2b9c041f462936f8218.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0xd125443f38a69d776177c2b9c041f462936f8218.png"
+ ],
+ "name": "FireBotToken",
+ "symbol": "FBX",
+ "marketCap": "3511637.104177861931904335",
+ "price": "0.2690661506798128381",
+ "priceChange24hPercent": "-1.24",
+ "volume24h": "2508.1996708157244494",
+ "communityRecognized": false,
+ "key": "evm--137:0xd125443f38a69d776177c2b9c041f462936f8218",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0xac0f66379a6d7801d7726d5a943356a172549adb",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0xac0f66379a6d7801d7726d5a943356a172549adb.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0xac0f66379a6d7801d7726d5a943356a172549adb.png"
+ ],
+ "name": "Geodnet Token",
+ "symbol": "GEOD",
+ "marketCap": "101221600.002375794954718207",
+ "price": "0.22765667658969214727",
+ "priceChange24hPercent": "0.22",
+ "volume24h": "63995.6749818880004997",
+ "communityRecognized": true,
+ "key": "evm--137:0xac0f66379a6d7801d7726d5a943356a172549adb",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0x1bdf71ede1a4777db1eebe7232bcda20d6fc1610",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0x1bdf71ede1a4777db1eebe7232bcda20d6fc1610-1757692869876.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0x1bdf71ede1a4777db1eebe7232bcda20d6fc1610-1757692869876.png"
+ ],
+ "name": "WhaleBit",
+ "symbol": "CES",
+ "marketCap": "102629513.761082236269134959",
+ "price": "0.24313139727854461669",
+ "priceChange24hPercent": "-4.15",
+ "volume24h": "1304681.84536358105",
+ "communityRecognized": true,
+ "key": "evm--137:0x1bdf71ede1a4777db1eebe7232bcda20d6fc1610",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0x4c18406fa690faa53e5efa899a971557251af72d",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0x4c18406fa690faa53e5efa899a971557251af72d-1770631371215.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0x4c18406fa690faa53e5efa899a971557251af72d-1770631371215.png"
+ ],
+ "name": "InfinityDAO",
+ "symbol": "IDL",
+ "marketCap": "7764484.414290576852370746",
+ "price": "0.39868965419877236516",
+ "priceChange24hPercent": "-4.24",
+ "volume24h": "38890.76460666058",
+ "communityRecognized": false,
+ "key": "evm--137:0x4c18406fa690faa53e5efa899a971557251af72d",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0xc289a1684a04faaf926204235588f5fc1d5e458e",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/1d062e5bd8e6d1165f4447f433c63cacf60e76ce9d661d96db5f756dc1ca0457",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/1d062e5bd8e6d1165f4447f433c63cacf60e76ce9d661d96db5f756dc1ca0457"
+ ],
+ "name": "GreenSatoshiToken",
+ "symbol": "GST",
+ "marketCap": "181994.115046749758416666",
+ "price": "0.00620125666944444444",
+ "priceChange24hPercent": "-0.51",
+ "volume24h": "1540.16886779137",
+ "communityRecognized": false,
+ "key": "evm--137:0xc289a1684a04faaf926204235588f5fc1d5e458e",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0xc011a7e12a19f7b1f670d46f03b03f3342e82dfb",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/bd9eb6b1c9281d45ba248e79adcd6eb734bcfe50ec6c606e8d4bec8bcfe8e4bb",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/bd9eb6b1c9281d45ba248e79adcd6eb734bcfe50ec6c606e8d4bec8bcfe8e4bb"
+ ],
+ "name": "Polymarket USD",
+ "symbol": "pUSD",
+ "marketCap": "174225527.44245581151656545",
+ "price": "0.999879000362998911",
+ "priceChange24hPercent": "-0.02",
+ "volume24h": "17146.57184952069811786",
+ "communityRecognized": false,
+ "key": "evm--137:0xc011a7e12a19f7b1f670d46f03b03f3342e82dfb",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0x1c954e8fe737f99f68fa1ccda3e51ebdb291948c",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0x1c954e8fe737f99f68fa1ccda3e51ebdb291948c.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0x1c954e8fe737f99f68fa1ccda3e51ebdb291948c.png"
+ ],
+ "name": "Kyber Network Crystal v2",
+ "symbol": "KNC",
+ "marketCap": "319991.204475614624164736",
+ "price": "0.12646029937468362759",
+ "priceChange24hPercent": "7.19",
+ "volume24h": "1634.077855756275789091",
+ "communityRecognized": true,
+ "key": "evm--137:0x1c954e8fe737f99f68fa1ccda3e51ebdb291948c",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0xd93f7e271cb87c23aaa73edc008a79646d1f9912",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0xd93f7e271cb87c23aaa73edc008a79646d1f9912.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0xd93f7e271cb87c23aaa73edc008a79646d1f9912.png"
+ ],
+ "name": "Wrapped SOL",
+ "symbol": "SOL",
+ "marketCap": "1629401.414467845901680993",
+ "price": "103.99812231108721101388",
+ "priceChange24hPercent": "-1.69",
+ "volume24h": "13237.532530053866677387",
+ "communityRecognized": false,
+ "key": "evm--137:0xd93f7e271cb87c23aaa73edc008a79646d1f9912",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0x1ef5bb23e0b91c2e8480a4a2b71feb4607cb32f1",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/849174a8bc7837a93979a42f2e648f146724ece15a8b1991a64bd6f4e474a229",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/849174a8bc7837a93979a42f2e648f146724ece15a8b1991a64bd6f4e474a229"
+ ],
+ "name": "SGT (PoS)",
+ "symbol": "SGT",
+ "marketCap": "448961.012318469197460172",
+ "price": "0.03242547213283691908",
+ "priceChange24hPercent": "-6.06",
+ "volume24h": "3131.761124894923162",
+ "communityRecognized": false,
+ "key": "evm--137:0x1ef5bb23e0b91c2e8480a4a2b71feb4607cb32f1",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0xf4c3fac9c98aa62474998e299495b699dfdb00eb",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0xf4c3fac9c98aa62474998e299495b699dfdb00eb-1766311205275.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0xf4c3fac9c98aa62474998e299495b699dfdb00eb-1766311205275.png"
+ ],
+ "name": "HandlPay",
+ "symbol": "HANDL",
+ "marketCap": "95106.495491580299944677",
+ "price": "0.00241294177343791",
+ "priceChange24hPercent": "2.94",
+ "volume24h": "9972.561676",
+ "communityRecognized": true,
+ "key": "evm--137:0xf4c3fac9c98aa62474998e299495b699dfdb00eb",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0xc3c7d422809852031b44ab29eec9f1eff2a58756",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0xc3c7d422809852031b44ab29eec9f1eff2a58756.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0xc3c7d422809852031b44ab29eec9f1eff2a58756.png"
+ ],
+ "name": "Lido DAO Token (PoS)",
+ "symbol": "LDO",
+ "marketCap": "533915.584611736806529973",
+ "price": "0.39343641401252841635",
+ "priceChange24hPercent": "-2.86",
+ "volume24h": "25444.699578472942619294",
+ "communityRecognized": true,
+ "key": "evm--137:0xc3c7d422809852031b44ab29eec9f1eff2a58756",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0x27ab6e82f3458edbc0703db2756391b899ce6324",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0x27ab6e82f3458edbc0703db2756391b899ce6324.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0x27ab6e82f3458edbc0703db2756391b899ce6324.png"
+ ],
+ "name": "Reental Utility Token",
+ "symbol": "RNT",
+ "marketCap": "40768758.309536211064381903",
+ "price": "0.31065252673961887536",
+ "priceChange24hPercent": "0.18",
+ "volume24h": "7861.27767933122",
+ "communityRecognized": true,
+ "key": "evm--137:0x27ab6e82f3458edbc0703db2756391b899ce6324",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0xd2e57e7019a8faea8b3e4a3738ee5b269975008a",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0xd2e57e7019a8faea8b3e4a3738ee5b269975008a-1729570500059.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0xd2e57e7019a8faea8b3e4a3738ee5b269975008a-1729570500059.png"
+ ],
+ "name": "THAT",
+ "symbol": "THAT",
+ "marketCap": "1213724.432332450646864224",
+ "price": "0.0022528796377803397",
+ "priceChange24hPercent": "0.03",
+ "volume24h": "16281.203418",
+ "communityRecognized": false,
+ "key": "evm--137:0xd2e57e7019a8faea8b3e4a3738ee5b269975008a",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0x6f8a06447ff6fcf75d803135a7de15ce88c1d4ec",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/a00a8ff95e7fdc663ced70cf56892ebf868d03ab715855d8e94b18952ed5f3f4",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/a00a8ff95e7fdc663ced70cf56892ebf868d03ab715855d8e94b18952ed5f3f4"
+ ],
+ "name": "SHIBA INU (PoS)",
+ "symbol": "SHIB",
+ "marketCap": "203707.014880439518407575",
+ "price": "0.00000538316177093019",
+ "priceChange24hPercent": "-0.97",
+ "volume24h": "949.967990101380912705",
+ "communityRecognized": false,
+ "key": "evm--137:0x6f8a06447ff6fcf75d803135a7de15ce88c1d4ec",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0xc9bef791701d868f34bd7f918f169af72ccb83bc",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/f46fc270d9b2a625d60dd58f5ded27ffbb202ba1909d5017df55876dbaa4417e",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/f46fc270d9b2a625d60dd58f5ded27ffbb202ba1909d5017df55876dbaa4417e"
+ ],
+ "name": "Jztcoin",
+ "symbol": "JZT",
+ "marketCap": "103885175.005882781271357985",
+ "price": "0.10388517500588278127",
+ "priceChange24hPercent": "0.24",
+ "volume24h": "4241.60504285033",
+ "communityRecognized": false,
+ "key": "evm--137:0xc9bef791701d868f34bd7f918f169af72ccb83bc",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0xba777ae3a3c91fcd83ef85bfe65410592bdd0f7c",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0xba777ae3a3c91fcd83ef85bfe65410592bdd0f7c.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0xba777ae3a3c91fcd83ef85bfe65410592bdd0f7c.png"
+ ],
+ "name": "BitCone",
+ "symbol": "CONE",
+ "marketCap": "104003.896663162580145981",
+ "price": "0.00000017706347855699",
+ "priceChange24hPercent": "4.41",
+ "volume24h": "527.7451109486741985",
+ "communityRecognized": false,
+ "key": "evm--137:0xba777ae3a3c91fcd83ef85bfe65410592bdd0f7c",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0x53df32548214f51821cf1fe4368109ac5ddea1ff",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0x53df32548214f51821cf1fe4368109ac5ddea1ff.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0x53df32548214f51821cf1fe4368109ac5ddea1ff.png"
+ ],
+ "name": "Sponge",
+ "symbol": "SPONGE",
+ "marketCap": "172322.383543185231737872",
+ "price": "0.00000114881589809985",
+ "priceChange24hPercent": "-4.84",
+ "volume24h": "593.3691890127008151",
+ "communityRecognized": false,
+ "key": "evm--137:0x53df32548214f51821cf1fe4368109ac5ddea1ff",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0x6a8ec2d9bfbdd20a7f5a4e89d640f7e7ceba4499",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0x6a8ec2d9bfbdd20a7f5a4e89d640f7e7ceba4499.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0x6a8ec2d9bfbdd20a7f5a4e89d640f7e7ceba4499.png"
+ ],
+ "name": "MSQUARE",
+ "symbol": "MSQ",
+ "marketCap": "2081660.121745083744123805",
+ "price": "0.08032202125921905467",
+ "priceChange24hPercent": "2.92",
+ "volume24h": "1202.35335206996444675",
+ "communityRecognized": false,
+ "key": "evm--137:0x6a8ec2d9bfbdd20a7f5a4e89d640f7e7ceba4499",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0xb5c064f955d8e7f38fe0460c556a72987494ee17",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0xb5c064f955d8e7f38fe0460c556a72987494ee17.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0xb5c064f955d8e7f38fe0460c556a72987494ee17.png"
+ ],
+ "name": "QuickSwap",
+ "symbol": "QUICK",
+ "marketCap": "7524643.243810049637406575",
+ "price": "0.00916038114628262619",
+ "priceChange24hPercent": "2.1",
+ "volume24h": "89692.065188141946365769",
+ "communityRecognized": true,
+ "key": "evm--137:0xb5c064f955d8e7f38fe0460c556a72987494ee17",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0x0b3f868e0be5597d5db7feb59e1cadbb0fdda50a",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0x0b3f868e0be5597d5db7feb59e1cadbb0fdda50a.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0x0b3f868e0be5597d5db7feb59e1cadbb0fdda50a.png"
+ ],
+ "name": "SushiToken",
+ "symbol": "SUSHI",
+ "marketCap": "147402.683670041922466216",
+ "price": "0.23836145014048635001",
+ "priceChange24hPercent": "-2.46",
+ "volume24h": "1041.264653946425273796",
+ "communityRecognized": true,
+ "key": "evm--137:0x0b3f868e0be5597d5db7feb59e1cadbb0fdda50a",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0xbbba073c31bf03b8acf7c28ef0738decf3695683",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0xbbba073c31bf03b8acf7c28ef0738decf3695683.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0xbbba073c31bf03b8acf7c28ef0738decf3695683.png"
+ ],
+ "name": "SAND",
+ "symbol": "SAND",
+ "marketCap": "5368070.133602941054486424",
+ "price": "0.04046327753985329944",
+ "priceChange24hPercent": "1.6",
+ "volume24h": "10990.380283016228635886",
+ "communityRecognized": true,
+ "key": "evm--137:0xbbba073c31bf03b8acf7c28ef0738decf3695683",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0xc708d6f2153933daa50b2d0758955be0a93a8fec",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0xc708d6f2153933daa50b2d0758955be0a93a8fec.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0xc708d6f2153933daa50b2d0758955be0a93a8fec.png"
+ ],
+ "name": "Verse (FXERC20)",
+ "symbol": "fxVERSE",
+ "marketCap": "337094.927500264884231456",
+ "price": "0.0000171890708635654",
+ "priceChange24hPercent": "-20.49",
+ "volume24h": "5935.560076611679619862",
+ "communityRecognized": false,
+ "key": "evm--137:0xc708d6f2153933daa50b2d0758955be0a93a8fec",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0xc2f3afa9d98c769c648bd19646392eeabb0e7a2c",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/6eca696379a0dfdff4d9537c6ca41b6d7c503f11595aaa0a4a5d349b386f23ec",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/6eca696379a0dfdff4d9537c6ca41b6d7c503f11595aaa0a4a5d349b386f23ec"
+ ],
+ "name": "CP CENTER POINT",
+ "symbol": "CP",
+ "marketCap": "792391.510735284724218539",
+ "price": "0.00005283696345598006",
+ "priceChange24hPercent": "0.28",
+ "volume24h": "531.42168406541",
+ "communityRecognized": false,
+ "key": "evm--137:0xc2f3afa9d98c769c648bd19646392eeabb0e7a2c",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0x692ac1e363ae34b6b489148152b12e2785a3d8d6",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0x692ac1e363ae34b6b489148152b12e2785a3d8d6.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0x692ac1e363ae34b6b489148152b12e2785a3d8d6.png"
+ ],
+ "name": "Polytrade (PoS)",
+ "symbol": "TRADE",
+ "marketCap": "2461046.381425906418001084",
+ "price": "0.03637267357480917379",
+ "priceChange24hPercent": "-1.26",
+ "volume24h": "4715.876126795994307001",
+ "communityRecognized": true,
+ "key": "evm--137:0x692ac1e363ae34b6b489148152b12e2785a3d8d6",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0x6985884c4392d348587b19cb9eaaf157f13271cd",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0x6985884c4392d348587b19cb9eaaf157f13271cd-1721961418666.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0x6985884c4392d348587b19cb9eaaf157f13271cd-1721961418666.png"
+ ],
+ "name": "LayerZero",
+ "symbol": "ZRO",
+ "marketCap": "2794802.335061283642335025",
+ "price": "1.12347014369659746736",
+ "priceChange24hPercent": "3.44",
+ "volume24h": "2323.77273806611678719",
+ "communityRecognized": true,
+ "key": "evm--137:0x6985884c4392d348587b19cb9eaaf157f13271cd",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0x933479ba627356f7efaba030504bf1c65cffca5a",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0x933479ba627356f7efaba030504bf1c65cffca5a-1776852016386.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0x933479ba627356f7efaba030504bf1c65cffca5a-1776852016386.png"
+ ],
+ "name": "Cortik AI",
+ "symbol": "CTK",
+ "marketCap": "200208.031194181372843309",
+ "price": "6.33860989014828276117",
+ "priceChange24hPercent": "0.22",
+ "volume24h": "19162.29167309012",
+ "communityRecognized": false,
+ "key": "evm--137:0x933479ba627356f7efaba030504bf1c65cffca5a",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0xf0949dd87d2531d665010d6274f06a357669457a",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0xf0949dd87d2531d665010d6274f06a357669457a-1721961418666.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0xf0949dd87d2531d665010d6274f06a357669457a-1721961418666.png"
+ ],
+ "name": "RealityMetaverse(PoS)",
+ "symbol": "RMV",
+ "marketCap": "1537686.7863105487370292",
+ "price": "0.00222659193270916736",
+ "priceChange24hPercent": "-2.76",
+ "volume24h": "9719.89736233264316366",
+ "communityRecognized": true,
+ "key": "evm--137:0xf0949dd87d2531d665010d6274f06a357669457a",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0xed39e7bf06e946007a44b29b85a329311bbc3dc2",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/4a563ac1c0cd1b7ed43429ee1ad5750a8ca22c0eaaa08d0427a8a86e8a2348f0",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/4a563ac1c0cd1b7ed43429ee1ad5750a8ca22c0eaaa08d0427a8a86e8a2348f0"
+ ],
+ "name": "FishFi",
+ "symbol": "FFI",
+ "marketCap": "40151994.904488677658932914",
+ "price": "3.65018135495351615081",
+ "priceChange24hPercent": "-6.05",
+ "volume24h": "9927.96153215194",
+ "communityRecognized": false,
+ "key": "evm--137:0xed39e7bf06e946007a44b29b85a329311bbc3dc2",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0xdc685acc53ca2a760029cab2f6a587482aa9cf57",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/849174a8bc7837a93979a42f2e648f146724ece15a8b1991a64bd6f4e474a229",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/849174a8bc7837a93979a42f2e648f146724ece15a8b1991a64bd6f4e474a229"
+ ],
+ "name": "SNI",
+ "symbol": "SNI",
+ "marketCap": "3363806.043107769423558897",
+ "price": "0.23039767418546365915",
+ "priceChange24hPercent": "0.72",
+ "volume24h": "708.821135",
+ "communityRecognized": false,
+ "key": "evm--137:0xdc685acc53ca2a760029cab2f6a587482aa9cf57",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0xeb7eab87837f4dad1bb80856db9e4506fc441f3d",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0xeb7eab87837f4dad1bb80856db9e4506fc441f3d.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0xeb7eab87837f4dad1bb80856db9e4506fc441f3d.png"
+ ],
+ "name": "MEE Governance Token",
+ "symbol": "MEE",
+ "marketCap": "888681.076388626511023946",
+ "price": "0.00031572806368140781",
+ "priceChange24hPercent": "-0.01",
+ "volume24h": "2027.9673737165897129",
+ "communityRecognized": true,
+ "key": "evm--137:0xeb7eab87837f4dad1bb80856db9e4506fc441f3d",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0xfe302b8666539d5046cd9aa0707bb327f5f94c22",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0xfe302b8666539d5046cd9aa0707bb327f5f94c22.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0xfe302b8666539d5046cd9aa0707bb327f5f94c22.png"
+ ],
+ "name": "Senspark",
+ "symbol": "SEN",
+ "marketCap": "493052.709061416570804523",
+ "price": "0.00495035141640685108",
+ "priceChange24hPercent": "-6.82",
+ "volume24h": "1390.12976195897079174",
+ "communityRecognized": false,
+ "key": "evm--137:0xfe302b8666539d5046cd9aa0707bb327f5f94c22",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0x98965474ecbec2f532f1f780ee37b0b05f77ca55",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0x98965474ecbec2f532f1f780ee37b0b05f77ca55-1757693116824.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0x98965474ecbec2f532f1f780ee37b0b05f77ca55-1757693116824.png"
+ ],
+ "name": "SUPER TRUST",
+ "symbol": "SUT",
+ "marketCap": "112734150.636696368984956195",
+ "price": "0.59836474382660707829",
+ "priceChange24hPercent": "1.99",
+ "volume24h": "179296.95892849074960358",
+ "communityRecognized": false,
+ "key": "evm--137:0x98965474ecbec2f532f1f780ee37b0b05f77ca55",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0x714db550b574b3e927af3d93e26127d15721d4c2",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0x714db550b574b3e927af3d93e26127d15721d4c2.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0x714db550b574b3e927af3d93e26127d15721d4c2.png"
+ ],
+ "name": "GreenMetaverseToken",
+ "symbol": "GMT",
+ "marketCap": "13980512.756708647296069628",
+ "price": "0.00756554590715177033",
+ "priceChange24hPercent": "0.12",
+ "volume24h": "5947.92182506237267526",
+ "communityRecognized": true,
+ "key": "evm--137:0x714db550b574b3e927af3d93e26127d15721d4c2",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0x2b9e7ccdf0f4e5b24757c1e1a80e311e34cb10c7",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0x2b9e7ccdf0f4e5b24757c1e1a80e311e34cb10c7.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0x2b9e7ccdf0f4e5b24757c1e1a80e311e34cb10c7.png"
+ ],
+ "name": "Mask Network (PoS)",
+ "symbol": "MASK",
+ "marketCap": "67368.780099474195811121",
+ "price": "0.47283457747636122508",
+ "priceChange24hPercent": "0.91",
+ "volume24h": "643.6859934877506413",
+ "communityRecognized": true,
+ "key": "evm--137:0x2b9e7ccdf0f4e5b24757c1e1a80e311e34cb10c7",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0x27f6c8289550fce67f6b50bed1f519966afe5287",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0x27f6c8289550fce67f6b50bed1f519966afe5287-1764410441511.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0x27f6c8289550fce67f6b50bed1f519966afe5287-1764410441511.png"
+ ],
+ "name": "tGBP",
+ "symbol": "tGBP",
+ "marketCap": "62796.772673562729044834",
+ "price": "1.35290448343079922027",
+ "priceChange24hPercent": "0.08",
+ "volume24h": "1498.96898",
+ "communityRecognized": true,
+ "key": "evm--137:0x27f6c8289550fce67f6b50bed1f519966afe5287",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0xb6c3c00d730acca326db40e418353f04f7444e2b",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/e70528379734ffb25a4a1833667c7b42ec80ff076fc396ca36a68f259cdf43a6",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/e70528379734ffb25a4a1833667c7b42ec80ff076fc396ca36a68f259cdf43a6"
+ ],
+ "name": "first choice coin",
+ "symbol": "fcc",
+ "marketCap": "12121774.624865976397186185",
+ "price": "0.01318113937907895048",
+ "priceChange24hPercent": "-5.13",
+ "volume24h": "5388.91435377720044233",
+ "communityRecognized": false,
+ "key": "evm--137:0xb6c3c00d730acca326db40e418353f04f7444e2b",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0x1ba17c639bdaecd8dc4aac37df062d17ee43a1b8",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0x1ba17c639bdaecd8dc4aac37df062d17ee43a1b8.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0x1ba17c639bdaecd8dc4aac37df062d17ee43a1b8.png"
+ ],
+ "name": "Wrapped Ixs Token",
+ "symbol": "WIXS",
+ "marketCap": "942852.986968246467454584",
+ "price": "0.05805120826084204563",
+ "priceChange24hPercent": "3.78",
+ "volume24h": "1407.503047845081424",
+ "communityRecognized": true,
+ "key": "evm--137:0x1ba17c639bdaecd8dc4aac37df062d17ee43a1b8",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0xdf7837de1f2fa4631d716cf2502f8b230f1dcc32",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0xdf7837de1f2fa4631d716cf2502f8b230f1dcc32.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0xdf7837de1f2fa4631d716cf2502f8b230f1dcc32.png"
+ ],
+ "name": "Telcoin (PoS)",
+ "symbol": "TEL",
+ "marketCap": "63446531.295290128142852777",
+ "price": "0.00169521049094186295",
+ "priceChange24hPercent": "-1.73",
+ "volume24h": "98668.395133089760587077",
+ "communityRecognized": true,
+ "key": "evm--137:0xdf7837de1f2fa4631d716cf2502f8b230f1dcc32",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0x311434160d7537be358930def317afb606c0d737",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0x311434160d7537be358930def317afb606c0d737.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0x311434160d7537be358930def317afb606c0d737.png"
+ ],
+ "name": "Nakamoto.Games",
+ "symbol": "NAKA",
+ "marketCap": "3863093.748395067016982722",
+ "price": "0.05944659072950479471",
+ "priceChange24hPercent": "11.82",
+ "volume24h": "15351.414858775582765892",
+ "communityRecognized": true,
+ "key": "evm--137:0x311434160d7537be358930def317afb606c0d737",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0xab5f7a0e20b0d056aed4aa4528c78da45be7308b",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0xab5f7a0e20b0d056aed4aa4528c78da45be7308b.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0xab5f7a0e20b0d056aed4aa4528c78da45be7308b.png"
+ ],
+ "name": "Imported GBYTE",
+ "symbol": "GBYTE",
+ "marketCap": "265999.108767073581311922",
+ "price": "4.86808970602870897656",
+ "priceChange24hPercent": "21.39",
+ "volume24h": "3283.07921988381600935",
+ "communityRecognized": false,
+ "key": "evm--137:0xab5f7a0e20b0d056aed4aa4528c78da45be7308b",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0xcccf7c6552437ab1504c384c6ed4501daa3a9ac6",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0xcccf7c6552437ab1504c384c6ed4501daa3a9ac6-1757692857151.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0xcccf7c6552437ab1504c384c6ed4501daa3a9ac6-1757692857151.png"
+ ],
+ "name": "ATT",
+ "symbol": "ATT",
+ "marketCap": "2505892.116499737696669608",
+ "price": "0.02001898358516549649",
+ "priceChange24hPercent": "-13.81",
+ "volume24h": "2138.01819166864",
+ "communityRecognized": false,
+ "key": "evm--137:0xcccf7c6552437ab1504c384c6ed4501daa3a9ac6",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0x1379e8886a944d2d9d440b3d88df536aea08d9f3",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0x1379e8886a944d2d9d440b3d88df536aea08d9f3.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0x1379e8886a944d2d9d440b3d88df536aea08d9f3.png"
+ ],
+ "name": "Mysterium (PoS)",
+ "symbol": "MYST",
+ "marketCap": "960420.934937887799447238",
+ "price": "0.10219057526290518886",
+ "priceChange24hPercent": "-0.39",
+ "volume24h": "3300.952939602259627344",
+ "communityRecognized": true,
+ "key": "evm--137:0x1379e8886a944d2d9d440b3d88df536aea08d9f3",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0xb87904db461005fc716a6bf9f2d451c33b10b80b",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0xb87904db461005fc716a6bf9f2d451c33b10b80b.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0xb87904db461005fc716a6bf9f2d451c33b10b80b.png"
+ ],
+ "name": "Alongside Crypto Market Index (PoS)",
+ "symbol": "AMKT",
+ "marketCap": "129468.940392048431255964",
+ "price": "216.59924970203585765505",
+ "priceChange24hPercent": "25.08",
+ "volume24h": "882.7013922958899824",
+ "communityRecognized": false,
+ "key": "evm--137:0xb87904db461005fc716a6bf9f2d451c33b10b80b",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0xe261d618a959afffd53168cd07d12e37b26761db",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0xe261d618a959afffd53168cd07d12e37b26761db.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0xe261d618a959afffd53168cd07d12e37b26761db.png"
+ ],
+ "name": "Dimo",
+ "symbol": "DIMO",
+ "marketCap": "4006145.102245400750580664",
+ "price": "0.00792448945622439973",
+ "priceChange24hPercent": "-1.08",
+ "volume24h": "1652.309775489503765783",
+ "communityRecognized": true,
+ "key": "evm--137:0xe261d618a959afffd53168cd07d12e37b26761db",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0x38f9bf9dce51833ec7f03c9dc218197999999999",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0x38f9bf9dce51833ec7f03c9dc218197999999999-1725590700047.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0x38f9bf9dce51833ec7f03c9dc218197999999999-1725590700047.png"
+ ],
+ "name": "Nya",
+ "symbol": "NYA",
+ "marketCap": "51989.36953092473622967",
+ "price": "0.00000005241470085016",
+ "priceChange24hPercent": "-2.14",
+ "volume24h": "2284.249375093960448",
+ "communityRecognized": false,
+ "key": "evm--137:0x38f9bf9dce51833ec7f03c9dc218197999999999",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0x3bf668fe1ec79a84ca8481cead5dbb30d61cc685",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0x3bf668fe1ec79a84ca8481cead5dbb30d61cc685-1757692891566.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0x3bf668fe1ec79a84ca8481cead5dbb30d61cc685-1757692891566.png"
+ ],
+ "name": "teleBTC",
+ "symbol": "TELEBTC",
+ "marketCap": "180294.530846634627591488",
+ "price": "78712.60019609620443291212",
+ "priceChange24hPercent": "-0.91",
+ "volume24h": "375842.66950768640061206",
+ "communityRecognized": false,
+ "key": "evm--137:0x3bf668fe1ec79a84ca8481cead5dbb30d61cc685",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0xe5417af564e4bfda1c483642db72007871397896",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0xe5417af564e4bfda1c483642db72007871397896.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0xe5417af564e4bfda1c483642db72007871397896.png"
+ ],
+ "name": "Gains Network",
+ "symbol": "GNS",
+ "marketCap": "2236003.539753683804306458",
+ "price": "0.48467911741655762553",
+ "priceChange24hPercent": "-0.12",
+ "volume24h": "1443.90465368072085347",
+ "communityRecognized": true,
+ "key": "evm--137:0xe5417af564e4bfda1c483642db72007871397896",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0xbf7970d56a150cd0b60bd08388a4a75a27777777",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0xbf7970d56a150cd0b60bd08388a4a75a27777777.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0xbf7970d56a150cd0b60bd08388a4a75a27777777.png"
+ ],
+ "name": "BET",
+ "symbol": "BET",
+ "marketCap": "62855752.896517742882508698",
+ "price": "0.00008081453943856467",
+ "priceChange24hPercent": "8.65",
+ "volume24h": "12571.123161192529896106",
+ "communityRecognized": false,
+ "key": "evm--137:0xbf7970d56a150cd0b60bd08388a4a75a27777777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0x0566c506477cd2d8df4e0123512dbc344bd9d111",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0x0566c506477cd2d8df4e0123512dbc344bd9d111-1721961418666.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0x0566c506477cd2d8df4e0123512dbc344bd9d111-1721961418666.png"
+ ],
+ "name": "MyLovelyCoin",
+ "symbol": "MLC",
+ "marketCap": "1775925.02719985815247497",
+ "price": "0.01841069064345258363",
+ "priceChange24hPercent": "-2.56",
+ "volume24h": "9247.88110333296",
+ "communityRecognized": true,
+ "key": "evm--137:0x0566c506477cd2d8df4e0123512dbc344bd9d111",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0xe1b3eb06806601828976e491914e3de18b5d6b28",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0xe1b3eb06806601828976e491914e3de18b5d6b28.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0xe1b3eb06806601828976e491914e3de18b5d6b28.png"
+ ],
+ "name": "zkRace",
+ "symbol": "ZERC",
+ "marketCap": "28077.956126739889110056",
+ "price": "0.00284161013784698974",
+ "priceChange24hPercent": "1.8",
+ "volume24h": "539.560194",
+ "communityRecognized": false,
+ "key": "evm--137:0xe1b3eb06806601828976e491914e3de18b5d6b28",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0x9ff62d1fc52a907b6dcba8077c2ddca6e6a9d3e1",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0x9ff62d1fc52a907b6dcba8077c2ddca6e6a9d3e1.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0x9ff62d1fc52a907b6dcba8077c2ddca6e6a9d3e1.png"
+ ],
+ "name": "Forta",
+ "symbol": "FORT",
+ "marketCap": "446626.257720089216020598",
+ "price": "0.01515274766894209687",
+ "priceChange24hPercent": "1.12",
+ "volume24h": "858.514853445948094",
+ "communityRecognized": true,
+ "key": "evm--137:0x9ff62d1fc52a907b6dcba8077c2ddca6e6a9d3e1",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0xba05176748347944cc26900c821abfebebc57415",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/f726c684810fa3c317fc93c5be53f978bd8c53c43e640ba1356f234c0f0904b0",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/f726c684810fa3c317fc93c5be53f978bd8c53c43e640ba1356f234c0f0904b0"
+ ],
+ "name": "OneX Smart Gold",
+ "symbol": "OSG",
+ "marketCap": "619442.460996450741023983",
+ "price": "1.00570937847101621421",
+ "priceChange24hPercent": "-0.87",
+ "volume24h": "1001.9891512574668665",
+ "communityRecognized": false,
+ "key": "evm--137:0xba05176748347944cc26900c821abfebebc57415",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0x7abe9edf5c544a04da83e9110cf46dbc4759170c",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0x7abe9edf5c544a04da83e9110cf46dbc4759170c-1728440100060.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0x7abe9edf5c544a04da83e9110cf46dbc4759170c-1728440100060.png"
+ ],
+ "name": "WPAY",
+ "symbol": "WPAY",
+ "marketCap": "7211833.075816483922910751",
+ "price": "0.60503579591201138981",
+ "priceChange24hPercent": "9.88",
+ "volume24h": "2764.9149461819010113",
+ "communityRecognized": false,
+ "key": "evm--137:0x7abe9edf5c544a04da83e9110cf46dbc4759170c",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0xa3f751662e282e83ec3cbc387d225ca56dd63d3a",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0xa3f751662e282e83ec3cbc387d225ca56dd63d3a-1723183200091.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0xa3f751662e282e83ec3cbc387d225ca56dd63d3a-1723183200091.png"
+ ],
+ "name": "Ape and Pepe",
+ "symbol": "APEPE",
+ "marketCap": "249226463.050670249855448417",
+ "price": "0.00000118679268228029",
+ "priceChange24hPercent": "0.88",
+ "volume24h": "1221.28299694548263132",
+ "communityRecognized": true,
+ "key": "evm--137:0xa3f751662e282e83ec3cbc387d225ca56dd63d3a",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0xd0258a3fd00f38aa8090dfee343f10a9d4d30d3f",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0xd0258a3fd00f38aa8090dfee343f10a9d4d30d3f.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0xd0258a3fd00f38aa8090dfee343f10a9d4d30d3f.png"
+ ],
+ "name": "VOXEL Token",
+ "symbol": "VOXEL",
+ "marketCap": "1193491.207877706693448291",
+ "price": "0.0049061869477051728",
+ "priceChange24hPercent": "27.07",
+ "volume24h": "577.475387462652267226",
+ "communityRecognized": true,
+ "key": "evm--137:0xd0258a3fd00f38aa8090dfee343f10a9d4d30d3f",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0xf50d05a1402d0adafa880d36050736f9f6ee7dee",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0xf50d05a1402d0adafa880d36050736f9f6ee7dee.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0xf50d05a1402d0adafa880d36050736f9f6ee7dee.png"
+ ],
+ "name": "Fluid",
+ "symbol": "FLUID",
+ "marketCap": "767312.86492979727622853",
+ "price": "1.27934685981064854389",
+ "priceChange24hPercent": "0.45",
+ "volume24h": "4250.197580896204618222",
+ "communityRecognized": true,
+ "key": "evm--137:0xf50d05a1402d0adafa880d36050736f9f6ee7dee",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0x5c067c80c00ecd2345b05e83a3e758ef799c40b5",
+ "logoUrl": "https://static.oklink.com/cdn/web3/currency/token/large/137-0x5c067c80c00ecd2345b05e83a3e758ef799c40b5-106/type=default_90_0?v=1788809868649",
+ "logoUrls": [
+ "https://static.oklink.com/cdn/web3/currency/token/large/137-0x5c067c80c00ecd2345b05e83a3e758ef799c40b5-106/type=default_90_0?v=1788809868649"
+ ],
+ "name": "BRL1",
+ "symbol": "BRL1",
+ "marketCap": "3031563.212751056774899649",
+ "price": "0.192420125656275366",
+ "priceChange24hPercent": "-0.79",
+ "volume24h": "618.1488252056993018",
+ "communityRecognized": true,
+ "key": "evm--137:0x5c067c80c00ecd2345b05e83a3e758ef799c40b5",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0x614389eaae0a6821dc49062d56bda3d9d45fa2ff",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0x614389eaae0a6821dc49062d56bda3d9d45fa2ff.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0x614389eaae0a6821dc49062d56bda3d9d45fa2ff.png"
+ ],
+ "name": "Orbs (PoS)",
+ "symbol": "ORBS",
+ "marketCap": "1366639.891978126425889516",
+ "price": "0.00615243880464579283",
+ "priceChange24hPercent": "-0.14",
+ "volume24h": "1865.812723666426436397",
+ "communityRecognized": true,
+ "key": "evm--137:0x614389eaae0a6821dc49062d56bda3d9d45fa2ff",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0x5fe2b58c013d7601147dcdd68c143a77499f5531",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0x5fe2b58c013d7601147dcdd68c143a77499f5531.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0x5fe2b58c013d7601147dcdd68c143a77499f5531.png"
+ ],
+ "name": "Graph Token",
+ "symbol": "GRT",
+ "marketCap": "699276.313288875238624224",
+ "price": "0.01980015884952093439",
+ "priceChange24hPercent": "3.62",
+ "volume24h": "774.607343945883014548",
+ "communityRecognized": true,
+ "key": "evm--137:0x5fe2b58c013d7601147dcdd68c143a77499f5531",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0x8a16d4bf8a0a716017e8d2262c4ac32927797a2f",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0x8a16d4bf8a0a716017e8d2262c4ac32927797a2f.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0x8a16d4bf8a0a716017e8d2262c4ac32927797a2f.png"
+ ],
+ "name": "ViciCoin",
+ "symbol": "VCNT",
+ "marketCap": "56341672.339934344824973497",
+ "price": "18.4917285984225713782",
+ "priceChange24hPercent": "-1.27",
+ "volume24h": "41761.36943407185",
+ "communityRecognized": false,
+ "key": "evm--137:0x8a16d4bf8a0a716017e8d2262c4ac32927797a2f",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0xd9d12f43918363cea1c0b62d16f1f81b8eae91e0",
+ "logoUrl": "https://static.oklink.com/cdn/web3/currency/token/large/137-0xd9d12f43918363cea1c0b62d16f1f81b8eae91e0-106/type=default_90_0?v=1788826922914",
+ "logoUrls": [
+ "https://static.oklink.com/cdn/web3/currency/token/large/137-0xd9d12f43918363cea1c0b62d16f1f81b8eae91e0-106/type=default_90_0?v=1788826922914"
+ ],
+ "name": "Auralith",
+ "symbol": "AURA",
+ "marketCap": "8175246.762813974855121683",
+ "price": "0.96152262286196505172",
+ "priceChange24hPercent": "-1.49",
+ "volume24h": "236865.10165131641850403",
+ "communityRecognized": false,
+ "key": "evm--137:0xd9d12f43918363cea1c0b62d16f1f81b8eae91e0",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0x0dc4f92879b7670e5f4e4e6e3c801d229129d90d",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0x0dc4f92879b7670e5f4e4e6e3c801d229129d90d-1773050503107.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0x0dc4f92879b7670e5f4e4e6e3c801d229129d90d-1773050503107.png"
+ ],
+ "name": "Peso Argentino",
+ "symbol": "wARS",
+ "marketCap": "28427.179181669618007468",
+ "price": "0.00063847003875",
+ "priceChange24hPercent": "0.69",
+ "volume24h": "1498.936076",
+ "communityRecognized": false,
+ "key": "evm--137:0x0dc4f92879b7670e5f4e4e6e3c801d229129d90d",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0x6a92b1e99de09f71cd96bc91f934826d96b8b26e",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0x6a92b1e99de09f71cd96bc91f934826d96b8b26e-1757693028865.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0x6a92b1e99de09f71cd96bc91f934826d96b8b26e-1757693028865.png"
+ ],
+ "name": "AS Token",
+ "symbol": "AS",
+ "marketCap": "161591045.868495256456006356",
+ "price": "0.63424647922090259007",
+ "priceChange24hPercent": "-0.97",
+ "volume24h": "455094.619350416123658208",
+ "communityRecognized": false,
+ "key": "evm--137:0x6a92b1e99de09f71cd96bc91f934826d96b8b26e",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0xee997788f625809332baabb3110bcf1ba7400824",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0xee997788f625809332baabb3110bcf1ba7400824-1757692954398.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0xee997788f625809332baabb3110bcf1ba7400824-1757692954398.png"
+ ],
+ "name": "Felysyum",
+ "symbol": "FELY",
+ "marketCap": "11791465.22844275334515573",
+ "price": "0.26941303249968217247",
+ "priceChange24hPercent": "0.53",
+ "volume24h": "9985.92284583887",
+ "communityRecognized": false,
+ "key": "evm--137:0xee997788f625809332baabb3110bcf1ba7400824",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0xaa71306d5356e0ad648e8229c41c21df0e8f3a4e",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0xaa71306d5356e0ad648e8229c41c21df0e8f3a4e-1778148496792.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0xaa71306d5356e0ad648e8229c41c21df0e8f3a4e-1778148496792.png"
+ ],
+ "name": "Stakefundex",
+ "symbol": "SDX",
+ "marketCap": "3066066.488202380124938053",
+ "price": "0.3356932979055250163",
+ "priceChange24hPercent": "-2.42",
+ "volume24h": "3072.89592993881",
+ "communityRecognized": false,
+ "key": "evm--137:0xaa71306d5356e0ad648e8229c41c21df0e8f3a4e",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0x4ed141110f6eeeaba9a1df36d8c26f684d2475dc",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0x4ed141110f6eeeaba9a1df36d8c26f684d2475dc.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0x4ed141110f6eeeaba9a1df36d8c26f684d2475dc.png"
+ ],
+ "name": "BRZ Token",
+ "symbol": "BRZ",
+ "marketCap": "10893038.176603565874588272",
+ "price": "0.19270249392855010706",
+ "priceChange24hPercent": "-0.39",
+ "volume24h": "36244.68212224468",
+ "communityRecognized": false,
+ "key": "evm--137:0x4ed141110f6eeeaba9a1df36d8c26f684d2475dc",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0xd6df932a45c0f255f85145f286ea0b292b21c90b",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0xd6df932a45c0f255f85145f286ea0b292b21c90b.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0xd6df932a45c0f255f85145f286ea0b292b21c90b.png"
+ ],
+ "name": "Aave",
+ "symbol": "AAVE",
+ "marketCap": "7925094.280157481218873094",
+ "price": "131.07000397014700417932",
+ "priceChange24hPercent": "-1.92",
+ "volume24h": "372659.022683112303797195",
+ "communityRecognized": true,
+ "key": "evm--137:0xd6df932a45c0f255f85145f286ea0b292b21c90b",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0x53e0bca35ec356bd5dddfebbd1fc0fd03fabad39",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0x53e0bca35ec356bd5dddfebbd1fc0fd03fabad39.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0x53e0bca35ec356bd5dddfebbd1fc0fd03fabad39.png"
+ ],
+ "name": "ChainLink Token",
+ "symbol": "LINK",
+ "marketCap": "14336666.92152876537317919",
+ "price": "12.63533410905304877436",
+ "priceChange24hPercent": "-3.5",
+ "volume24h": "1126364.749121072490224238",
+ "communityRecognized": true,
+ "key": "evm--137:0x53e0bca35ec356bd5dddfebbd1fc0fd03fabad39",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0x2c72d25530191ebd244eb6325e1892480b0e6e28",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0x2c72d25530191ebd244eb6325e1892480b0e6e28-1769767410884.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0x2c72d25530191ebd244eb6325e1892480b0e6e28-1769767410884.png"
+ ],
+ "name": "AI Powered Finance",
+ "symbol": "AIPF",
+ "marketCap": "26979395.425896153684254366",
+ "price": "0.39361791408640350877",
+ "priceChange24hPercent": "-2.64",
+ "volume24h": "233099.419427171168378844",
+ "communityRecognized": true,
+ "key": "evm--137:0x2c72d25530191ebd244eb6325e1892480b0e6e28",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0x45c32fa6df82ead1e2ef74d17b76547eddfaff89",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0x45c32fa6df82ead1e2ef74d17b76547eddfaff89.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0x45c32fa6df82ead1e2ef74d17b76547eddfaff89.png"
+ ],
+ "name": "Frax",
+ "symbol": "FRAX",
+ "marketCap": "479164.753586247060386207",
+ "price": "0.98093700045503987903",
+ "priceChange24hPercent": "-0.24",
+ "volume24h": "1311.50055358944479777",
+ "communityRecognized": false,
+ "key": "evm--137:0x45c32fa6df82ead1e2ef74d17b76547eddfaff89",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0x3bd21588994e5b28d40ccda6413f3b5598e62fbb",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/f726c684810fa3c317fc93c5be53f978bd8c53c43e640ba1356f234c0f0904b0",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/f726c684810fa3c317fc93c5be53f978bd8c53c43e640ba1356f234c0f0904b0"
+ ],
+ "name": "OIL Token",
+ "symbol": "OIL",
+ "marketCap": "11127745.358389779858026335",
+ "price": "0.01112937766824220561",
+ "priceChange24hPercent": "-5.28",
+ "volume24h": "628.37713265548",
+ "communityRecognized": false,
+ "key": "evm--137:0x3bd21588994e5b28d40ccda6413f3b5598e62fbb",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0x553d3d295e0f695b9228246232edf400ed3560b5",
+ "logoUrl": "https://static.oklink.com/cdn/web3/currency/token/large/137-0x553d3d295e0f695b9228246232edf400ed3560b5-106/type=default_90_0?v=1788805445791",
+ "logoUrls": [
+ "https://static.oklink.com/cdn/web3/currency/token/large/137-0x553d3d295e0f695b9228246232edf400ed3560b5-106/type=default_90_0?v=1788805445791"
+ ],
+ "name": "Paxos Gold (PoS)",
+ "symbol": "PAXG",
+ "marketCap": "804423.012897933116798528",
+ "price": "4407.33738931006301199162",
+ "priceChange24hPercent": "0.2",
+ "volume24h": "1547.194813945001682021",
+ "communityRecognized": false,
+ "key": "evm--137:0x553d3d295e0f695b9228246232edf400ed3560b5",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0x6ab4e20f36ca48b61ecd66c0450fdf665fa130be",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0x6ab4e20f36ca48b61ecd66c0450fdf665fa130be.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0x6ab4e20f36ca48b61ecd66c0450fdf665fa130be.png"
+ ],
+ "name": "Dolz (PoS)",
+ "symbol": "DOLZ",
+ "marketCap": "1241527.299835934264521981",
+ "price": "0.00750138050055669142",
+ "priceChange24hPercent": "0.46",
+ "volume24h": "1768.86550238785",
+ "communityRecognized": false,
+ "key": "evm--137:0x6ab4e20f36ca48b61ecd66c0450fdf665fa130be",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0xecdcb5b88f8e3c15f95c720c51c71c9e2080525d",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0xecdcb5b88f8e3c15f95c720c51c71c9e2080525d.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0xecdcb5b88f8e3c15f95c720c51c71c9e2080525d.png"
+ ],
+ "name": "Wrapped BNB",
+ "symbol": "WBNB",
+ "marketCap": "169917.772234948504129209",
+ "price": "701.06815388879422293813",
+ "priceChange24hPercent": "-9.05",
+ "volume24h": "954.161183010154828309",
+ "communityRecognized": false,
+ "key": "evm--137:0xecdcb5b88f8e3c15f95c720c51c71c9e2080525d",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0xb33eaad8d922b1083446dc23f610c2567fb5180f",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0xb33eaad8d922b1083446dc23f610c2567fb5180f.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0xb33eaad8d922b1083446dc23f610c2567fb5180f.png"
+ ],
+ "name": "Uniswap",
+ "symbol": "UNI",
+ "marketCap": "1777734.344075039053059514",
+ "price": "6.99266360721089294278",
+ "priceChange24hPercent": "-0.12",
+ "volume24h": "92219.258252572105310516",
+ "communityRecognized": true,
+ "key": "evm--137:0xb33eaad8d922b1083446dc23f610c2567fb5180f",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0xdc4f4ed9872571d5ec8986a502a0d88f3a175f1e",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0xdc4f4ed9872571d5ec8986a502a0d88f3a175f1e-1721961418666.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0xdc4f4ed9872571d5ec8986a502a0d88f3a175f1e-1721961418666.png"
+ ],
+ "name": "DEZ",
+ "symbol": "$DEZ",
+ "marketCap": "679390.047962420007992116",
+ "price": "0.00067939866243569346",
+ "priceChange24hPercent": "2.08",
+ "volume24h": "1337.3849614576554741",
+ "communityRecognized": false,
+ "key": "evm--137:0xdc4f4ed9872571d5ec8986a502a0d88f3a175f1e",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0x6631ee651da438db2be611b5a44dfe2ca04590c5",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/8356346777831140edc501f7c039ec2abceb49e4ee845cb86f3053a51d691863",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/8356346777831140edc501f7c039ec2abceb49e4ee845cb86f3053a51d691863"
+ ],
+ "name": "A",
+ "symbol": "A",
+ "marketCap": "147914423.723158144923750494",
+ "price": "0.98760879831624551039",
+ "priceChange24hPercent": "0.91",
+ "volume24h": "89473.172987249119406353",
+ "communityRecognized": false,
+ "key": "evm--137:0x6631ee651da438db2be611b5a44dfe2ca04590c5",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0x14913815bcfde78baead2111f463d038ac9c2949",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0x14913815bcfde78baead2111f463d038ac9c2949-1768816960659.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0x14913815bcfde78baead2111f463d038ac9c2949-1768816960659.png"
+ ],
+ "name": "eUSD",
+ "symbol": "eUSD",
+ "marketCap": "3057456.026641190015510061",
+ "price": "1.00000236361805634015",
+ "priceChange24hPercent": "0",
+ "volume24h": "47624.141951",
+ "communityRecognized": false,
+ "key": "evm--137:0x14913815bcfde78baead2111f463d038ac9c2949",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0x99a57e6c8558bc6689f894e068733adf83c19725",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/c55d204e4397b89a633b73082f8a820e85de339ca73c738b068520e2cd47d038",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/c55d204e4397b89a633b73082f8a820e85de339ca73c738b068520e2cd47d038"
+ ],
+ "name": "Staked Longinus",
+ "symbol": "sLGNS",
+ "marketCap": "6217549229.371844468571077015",
+ "price": "1.08799261886958409834",
+ "priceChange24hPercent": "-3.24",
+ "volume24h": "1519719.321346947782180448",
+ "communityRecognized": false,
+ "key": "evm--137:0x99a57e6c8558bc6689f894e068733adf83c19725",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0xcc44674022a792794d219847362bb95c661937a9",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0xcc44674022a792794d219847362bb95c661937a9-1757692998946.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0xcc44674022a792794d219847362bb95c661937a9-1757692998946.png"
+ ],
+ "name": "ROUTINE COIN",
+ "symbol": "ROU",
+ "marketCap": "188711.722946753915506629",
+ "price": "0.00028370879872665185",
+ "priceChange24hPercent": "-4.41",
+ "volume24h": "3757.85126636235",
+ "communityRecognized": false,
+ "key": "evm--137:0xcc44674022a792794d219847362bb95c661937a9",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0xdc3326e71d45186f113a2f448984ca0e8d201995",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0xdc3326e71d45186f113a2f448984ca0e8d201995.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0xdc3326e71d45186f113a2f448984ca0e8d201995.png"
+ ],
+ "name": "XSGD",
+ "symbol": "XSGD",
+ "marketCap": "1680261.629252040113109561",
+ "price": "0.78861799537956301873",
+ "priceChange24hPercent": "-0.06",
+ "volume24h": "211012.52206829138374914",
+ "communityRecognized": true,
+ "key": "evm--137:0xdc3326e71d45186f113a2f448984ca0e8d201995",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0x692597b009d13c4049a947cab2239b7d6517875f",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0x692597b009d13c4049a947cab2239b7d6517875f.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0x692597b009d13c4049a947cab2239b7d6517875f.png"
+ ],
+ "name": "Wrapped UST Token",
+ "symbol": "USTC",
+ "marketCap": "23073.144708740383977662",
+ "price": "0.00544812189781779185",
+ "priceChange24hPercent": "2.64",
+ "volume24h": "2316.103836258738897024",
+ "communityRecognized": false,
+ "key": "evm--137:0x692597b009d13c4049a947cab2239b7d6517875f",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0x1d1498166ddceee616a6d99868e1e0677300056f",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0x1d1498166ddceee616a6d99868e1e0677300056f-1729500300212.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0x1d1498166ddceee616a6d99868e1e0677300056f-1729500300212.png"
+ ],
+ "name": "xSpace Token",
+ "symbol": "xSPACE",
+ "marketCap": "52823.85472406049626286",
+ "price": "0.00185650015883472412",
+ "priceChange24hPercent": "-8.74",
+ "volume24h": "1921.74098509388526811",
+ "communityRecognized": false,
+ "key": "evm--137:0x1d1498166ddceee616a6d99868e1e0677300056f",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0xe0aea583266584dafbb3f9c3211d5588c73fea8d",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0xe0aea583266584dafbb3f9c3211d5588c73fea8d-1757692882447.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0xe0aea583266584dafbb3f9c3211d5588c73fea8d-1757692882447.png"
+ ],
+ "name": "Monerium EURe",
+ "symbol": "EURe",
+ "marketCap": "2107016.803062213410297621",
+ "price": "1.16168069009623177141",
+ "priceChange24hPercent": "0.09",
+ "volume24h": "3099.80768287228",
+ "communityRecognized": false,
+ "key": "evm--137:0xe0aea583266584dafbb3f9c3211d5588c73fea8d",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0x03b54a6e9a984069379fae1a4fc4dbae93b3bccd",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0x03b54a6e9a984069379fae1a4fc4dbae93b3bccd.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0x03b54a6e9a984069379fae1a4fc4dbae93b3bccd.png"
+ ],
+ "name": "Wrapped liquid staked Ether 2.0 (PoS)",
+ "symbol": "wstETH",
+ "marketCap": "14994686.131009842196854023",
+ "price": "3087.70032074415026828344",
+ "priceChange24hPercent": "-0.75",
+ "volume24h": "6033.07889246597139875",
+ "communityRecognized": false,
+ "key": "evm--137:0x03b54a6e9a984069379fae1a4fc4dbae93b3bccd",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0x385eeac5cb85a38a9a07a70c73e0a3271cfb54a7",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0x385eeac5cb85a38a9a07a70c73e0a3271cfb54a7.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0x385eeac5cb85a38a9a07a70c73e0a3271cfb54a7.png"
+ ],
+ "name": "Aavegotchi GHST Token (PoS)",
+ "symbol": "GHST",
+ "marketCap": "444880.213870490180818536",
+ "price": "0.06115715419188546493",
+ "priceChange24hPercent": "-2.47",
+ "volume24h": "2009.601386474322039771",
+ "communityRecognized": true,
+ "key": "evm--137:0x385eeac5cb85a38a9a07a70c73e0a3271cfb54a7",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0x2ab0e9e4ee70fff1fb9d67031e44f6410170d00e",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0x2ab0e9e4ee70fff1fb9d67031e44f6410170d00e.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0x2ab0e9e4ee70fff1fb9d67031e44f6410170d00e.png"
+ ],
+ "name": "XEN Crypto",
+ "symbol": "mXEN",
+ "marketCap": "70970.23651976218184546",
+ "price": "0.00000000002874688303",
+ "priceChange24hPercent": "-1.36",
+ "volume24h": "1120.924658973984890708",
+ "communityRecognized": false,
+ "key": "evm--137:0x2ab0e9e4ee70fff1fb9d67031e44f6410170d00e",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0xe6a537a407488807f0bbeb0038b79004f19dddfb",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0xe6a537a407488807f0bbeb0038b79004f19dddfb-1725521400084.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0xe6a537a407488807f0bbeb0038b79004f19dddfb-1725521400084.png"
+ ],
+ "name": "BRLA Token",
+ "symbol": "BRLA",
+ "marketCap": "3584698.967294983318620213",
+ "price": "0.19257686861903408893",
+ "priceChange24hPercent": "-0.32",
+ "volume24h": "74590.4269478271",
+ "communityRecognized": false,
+ "key": "evm--137:0xe6a537a407488807f0bbeb0038b79004f19dddfb",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--137",
+ "address": "0xa3fa99a148fa48d14ed51d610c367c61876997f1",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0xa3fa99a148fa48d14ed51d610c367c61876997f1.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--137/tokens/address-0xa3fa99a148fa48d14ed51d610c367c61876997f1.png"
+ ],
+ "name": "miMATIC",
+ "symbol": "miMATIC",
+ "marketCap": "209540954.899823010123377089",
+ "price": "0.97797561746716640383",
+ "priceChange24hPercent": "-5.29",
+ "volume24h": "2621.434429264317203446",
+ "communityRecognized": false,
+ "key": "evm--137:0xa3fa99a148fa48d14ed51d610c367c61876997f1",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Polygon",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/polygon.png"
+ }
+ ],
+ "trending|evm--143|5m|all": [
+ {
+ "isNative": false,
+ "networkId": "evm--143",
+ "address": "0x0555e30da8f98308edb960aa94c0db47230d2b9c",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/5968315662ba0d4336c57cc4cca4142a71a707e9682a8df77810db2b956b020e",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/5968315662ba0d4336c57cc4cca4142a71a707e9682a8df77810db2b956b020e"
+ ],
+ "name": "Wrapped BTC",
+ "symbol": "WBTC",
+ "marketCap": "4090648.044943985364873138",
+ "price": "78660.19068464980579675124",
+ "priceChange24hPercent": "-0.01",
+ "volume24h": "13956.120596052785584223",
+ "communityRecognized": true,
+ "key": "evm--143:0x0555e30da8f98308edb960aa94c0db47230d2b9c",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Monad",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1763967402446.0.5985474006975384.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--143",
+ "address": "0xd18b7ec58cdf4876f6afebd3ed1730e4ce10414b",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/6c54fb39500a051b95685a52de48e09b4b2c9a615eb1e8e7a77f9a47196f35f3",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/6c54fb39500a051b95685a52de48e09b4b2c9a615eb1e8e7a77f9a47196f35f3"
+ ],
+ "name": "Coinbase Wrapped BTC",
+ "symbol": "cbBTC",
+ "marketCap": "12516825.387912744537306148",
+ "price": "78755.03791710164638087184",
+ "priceChange24hPercent": "-0.02",
+ "volume24h": "5139.815803259223375",
+ "communityRecognized": false,
+ "key": "evm--143:0xd18b7ec58cdf4876f6afebd3ed1730e4ce10414b",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Monad",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1763967402446.0.5985474006975384.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--143",
+ "address": "0xe7cd86e13ac4309349f30b3435a9d337750fc82d",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-onchain/evm--143/tokens/0xe7cd86e13ac4309349f30b3435a9d337750fc82d.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-onchain/evm--143/tokens/0xe7cd86e13ac4309349f30b3435a9d337750fc82d.png"
+ ],
+ "name": "USDT",
+ "symbol": "USDT",
+ "marketCap": "54800222.395357559238745297",
+ "price": "0.99986320543511601096",
+ "priceChange24hPercent": "0.1",
+ "volume24h": "588.449842130291253",
+ "communityRecognized": true,
+ "key": "evm--143:0xe7cd86e13ac4309349f30b3435a9d337750fc82d",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Monad",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1763967402446.0.5985474006975384.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--143",
+ "address": "0x3bd359c1119da7da1d913d1c4d2b7c461115433a",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/d4daeeb446598199b99edb6ba6f23ef5c9387b3bfd0d7f56d16c50899ad95063",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/d4daeeb446598199b99edb6ba6f23ef5c9387b3bfd0d7f56d16c50899ad95063"
+ ],
+ "name": "Wrapped MON",
+ "symbol": "WMON",
+ "marketCap": "8818411.642951553583417692",
+ "price": "0.0262563238442512319",
+ "priceChange24hPercent": "-0.14",
+ "volume24h": "6775.193386186776381483",
+ "communityRecognized": false,
+ "key": "evm--143:0x3bd359c1119da7da1d913d1c4d2b7c461115433a",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Monad",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1763967402446.0.5985474006975384.0.png"
+ }
+ ],
+ "trending|evm--143|1h|all": [
+ {
+ "isNative": false,
+ "networkId": "evm--143",
+ "address": "0xaca92e438df0b2401ff60da7e4337b687a2435da",
+ "logoUrl": "https://coin-images.coingecko.com/coins/images/68451/large/MetaMask-mUSD-Icon-200x200.png?1755878384",
+ "logoUrls": [
+ "https://coin-images.coingecko.com/coins/images/68451/large/MetaMask-mUSD-Icon-200x200.png?1755878384"
+ ],
+ "name": "MetaMask USD",
+ "symbol": "mUSD",
+ "marketCap": "8820144.539537013772",
+ "price": "1.000022",
+ "priceChange24hPercent": "0",
+ "volume24h": "8594.243163",
+ "communityRecognized": false,
+ "key": "evm--143:0xaca92e438df0b2401ff60da7e4337b687a2435da",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Monad",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1763967402446.0.5985474006975384.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--143",
+ "address": "0x01bff41798a0bcf287b996046ca68b395dbc1071",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/cc053877e9dc9d2870f0a3e9816d9c7c3044d7bd54ca96352f8626aaab3f20eb",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/cc053877e9dc9d2870f0a3e9816d9c7c3044d7bd54ca96352f8626aaab3f20eb"
+ ],
+ "name": "XAUt0",
+ "symbol": "XAUt0",
+ "marketCap": "16632790.988710435948476691",
+ "price": "4440.72480820567722990334",
+ "priceChange24hPercent": "0.24",
+ "volume24h": "1860.24981855301",
+ "communityRecognized": true,
+ "key": "evm--143:0x01bff41798a0bcf287b996046ca68b395dbc1071",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Monad",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1763967402446.0.5985474006975384.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--143",
+ "address": "0x0a332311633c0625f63cfc51ee33fc49826e0a3c",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/8356346777831140edc501f7c039ec2abceb49e4ee845cb86f3053a51d691863",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/8356346777831140edc501f7c039ec2abceb49e4ee845cb86f3053a51d691863"
+ ],
+ "name": "aPriori",
+ "symbol": "APR",
+ "marketCap": "2989182.115568541878759974",
+ "price": "0.18681754721432041708",
+ "priceChange24hPercent": "-0.51",
+ "volume24h": "2695.5738066916099628",
+ "communityRecognized": false,
+ "key": "evm--143:0x0a332311633c0625f63cfc51ee33fc49826e0a3c",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Monad",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1763967402446.0.5985474006975384.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--143",
+ "address": "0x0555e30da8f98308edb960aa94c0db47230d2b9c",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/5968315662ba0d4336c57cc4cca4142a71a707e9682a8df77810db2b956b020e",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/5968315662ba0d4336c57cc4cca4142a71a707e9682a8df77810db2b956b020e"
+ ],
+ "name": "Wrapped BTC",
+ "symbol": "WBTC",
+ "marketCap": "4090648.044943985364873138",
+ "price": "78660.19068464980579675124",
+ "priceChange24hPercent": "0.03",
+ "volume24h": "95378.903565427530756177",
+ "communityRecognized": true,
+ "key": "evm--143:0x0555e30da8f98308edb960aa94c0db47230d2b9c",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Monad",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1763967402446.0.5985474006975384.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--143",
+ "address": "0xd18b7ec58cdf4876f6afebd3ed1730e4ce10414b",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/6c54fb39500a051b95685a52de48e09b4b2c9a615eb1e8e7a77f9a47196f35f3",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/6c54fb39500a051b95685a52de48e09b4b2c9a615eb1e8e7a77f9a47196f35f3"
+ ],
+ "name": "Coinbase Wrapped BTC",
+ "symbol": "cbBTC",
+ "marketCap": "12516825.387912744537306148",
+ "price": "78755.03791710164638087184",
+ "priceChange24hPercent": "0.1",
+ "volume24h": "35780.631655962352002371",
+ "communityRecognized": false,
+ "key": "evm--143:0xd18b7ec58cdf4876f6afebd3ed1730e4ce10414b",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Monad",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1763967402446.0.5985474006975384.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--143",
+ "address": "0xe7cd86e13ac4309349f30b3435a9d337750fc82d",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-onchain/evm--143/tokens/0xe7cd86e13ac4309349f30b3435a9d337750fc82d.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-onchain/evm--143/tokens/0xe7cd86e13ac4309349f30b3435a9d337750fc82d.png"
+ ],
+ "name": "USDT",
+ "symbol": "USDT",
+ "marketCap": "54800222.395357559238745297",
+ "price": "0.99986320543511601096",
+ "priceChange24hPercent": "0.28",
+ "volume24h": "13479.3660018987622511",
+ "communityRecognized": true,
+ "key": "evm--143:0xe7cd86e13ac4309349f30b3435a9d337750fc82d",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Monad",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1763967402446.0.5985474006975384.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--143",
+ "address": "0x00000000efe302beaa2b3e6e1b18d08d69a9012a",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-onchain/evm--143/tokens/0x00000000efe302beaa2b3e6e1b18d08d69a9012a.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-onchain/evm--143/tokens/0x00000000efe302beaa2b3e6e1b18d08d69a9012a.png"
+ ],
+ "name": "AUSD",
+ "symbol": "AUSD",
+ "marketCap": "192676884.06533397991250719",
+ "price": "1.00006408979615196059",
+ "priceChange24hPercent": "0.32",
+ "volume24h": "4321.344082694538560637",
+ "communityRecognized": true,
+ "key": "evm--143:0x00000000efe302beaa2b3e6e1b18d08d69a9012a",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Monad",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1763967402446.0.5985474006975384.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--143",
+ "address": "0x1111b3ded9f1fe1801ad4ebef8e2788183a24111",
+ "logoUrl": "https://static.oklink.com/cdn/web3/currency/token/large/143-0x1111b3ded9f1fe1801ad4ebef8e2788183a24111-105/type=default_90_0?v=1788808612988",
+ "logoUrls": [
+ "https://static.oklink.com/cdn/web3/currency/token/large/143-0x1111b3ded9f1fe1801ad4ebef8e2788183a24111-105/type=default_90_0?v=1788808612988"
+ ],
+ "name": "Newrails Euro",
+ "symbol": "EURW",
+ "marketCap": "281396.464024513392064332",
+ "price": "1.16225267988690133206",
+ "priceChange24hPercent": "0",
+ "volume24h": "9987.135699",
+ "communityRecognized": false,
+ "key": "evm--143:0x1111b3ded9f1fe1801ad4ebef8e2788183a24111",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Monad",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1763967402446.0.5985474006975384.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--143",
+ "address": "0x3bd359c1119da7da1d913d1c4d2b7c461115433a",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/d4daeeb446598199b99edb6ba6f23ef5c9387b3bfd0d7f56d16c50899ad95063",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/d4daeeb446598199b99edb6ba6f23ef5c9387b3bfd0d7f56d16c50899ad95063"
+ ],
+ "name": "Wrapped MON",
+ "symbol": "WMON",
+ "marketCap": "8818411.642951553583417692",
+ "price": "0.0262563238442512319",
+ "priceChange24hPercent": "0.1",
+ "volume24h": "89267.514666931479619",
+ "communityRecognized": false,
+ "key": "evm--143:0x3bd359c1119da7da1d913d1c4d2b7c461115433a",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Monad",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1763967402446.0.5985474006975384.0.png"
+ }
+ ],
+ "trending|evm--143|4h|all": [
+ {
+ "isNative": false,
+ "networkId": "evm--143",
+ "address": "0xaca92e438df0b2401ff60da7e4337b687a2435da",
+ "logoUrl": "https://coin-images.coingecko.com/coins/images/68451/large/MetaMask-mUSD-Icon-200x200.png?1755878384",
+ "logoUrls": [
+ "https://coin-images.coingecko.com/coins/images/68451/large/MetaMask-mUSD-Icon-200x200.png?1755878384"
+ ],
+ "name": "MetaMask USD",
+ "symbol": "mUSD",
+ "marketCap": "8820144.539537013772",
+ "price": "1.000022",
+ "priceChange24hPercent": "0",
+ "volume24h": "57429.896582",
+ "communityRecognized": false,
+ "key": "evm--143:0xaca92e438df0b2401ff60da7e4337b687a2435da",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Monad",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1763967402446.0.5985474006975384.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--143",
+ "address": "0x01bff41798a0bcf287b996046ca68b395dbc1071",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/cc053877e9dc9d2870f0a3e9816d9c7c3044d7bd54ca96352f8626aaab3f20eb",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/cc053877e9dc9d2870f0a3e9816d9c7c3044d7bd54ca96352f8626aaab3f20eb"
+ ],
+ "name": "XAUt0",
+ "symbol": "XAUt0",
+ "marketCap": "16632790.988710435948476691",
+ "price": "4440.72480820567722990334",
+ "priceChange24hPercent": "0.45",
+ "volume24h": "9009.51301939402",
+ "communityRecognized": true,
+ "key": "evm--143:0x01bff41798a0bcf287b996046ca68b395dbc1071",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Monad",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1763967402446.0.5985474006975384.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--143",
+ "address": "0x0a332311633c0625f63cfc51ee33fc49826e0a3c",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/8356346777831140edc501f7c039ec2abceb49e4ee845cb86f3053a51d691863",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/8356346777831140edc501f7c039ec2abceb49e4ee845cb86f3053a51d691863"
+ ],
+ "name": "aPriori",
+ "symbol": "APR",
+ "marketCap": "2989182.115568541878759974",
+ "price": "0.18681754721432041708",
+ "priceChange24hPercent": "-0.24",
+ "volume24h": "8693.1013761743844477",
+ "communityRecognized": false,
+ "key": "evm--143:0x0a332311633c0625f63cfc51ee33fc49826e0a3c",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Monad",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1763967402446.0.5985474006975384.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--143",
+ "address": "0x0555e30da8f98308edb960aa94c0db47230d2b9c",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/5968315662ba0d4336c57cc4cca4142a71a707e9682a8df77810db2b956b020e",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/5968315662ba0d4336c57cc4cca4142a71a707e9682a8df77810db2b956b020e"
+ ],
+ "name": "Wrapped BTC",
+ "symbol": "WBTC",
+ "marketCap": "4090648.044943985364873138",
+ "price": "78660.19068464980579675124",
+ "priceChange24hPercent": "-0.39",
+ "volume24h": "384506.956461276841119873",
+ "communityRecognized": true,
+ "key": "evm--143:0x0555e30da8f98308edb960aa94c0db47230d2b9c",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Monad",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1763967402446.0.5985474006975384.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--143",
+ "address": "0xb53c4fb340aa926b2ac9954a1bb6dc83fd2b8a01",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/001b4443aa4251ef1afd763fa2e5f4ac5e9650e5de92230c40b57b32250badeb",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/001b4443aa4251ef1afd763fa2e5f4ac5e9650e5de92230c40b57b32250badeb"
+ ],
+ "name": "DOGGG",
+ "symbol": "DOGGG",
+ "marketCap": "48503.058993553095742479",
+ "price": "0.0000485030589935531",
+ "priceChange24hPercent": "-25.92",
+ "volume24h": "3083.1013817609336865",
+ "communityRecognized": false,
+ "key": "evm--143:0xb53c4fb340aa926b2ac9954a1bb6dc83fd2b8a01",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Monad",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1763967402446.0.5985474006975384.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--143",
+ "address": "0xd18b7ec58cdf4876f6afebd3ed1730e4ce10414b",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/6c54fb39500a051b95685a52de48e09b4b2c9a615eb1e8e7a77f9a47196f35f3",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/6c54fb39500a051b95685a52de48e09b4b2c9a615eb1e8e7a77f9a47196f35f3"
+ ],
+ "name": "Coinbase Wrapped BTC",
+ "symbol": "cbBTC",
+ "marketCap": "12516825.387912744537306148",
+ "price": "78755.03791710164638087184",
+ "priceChange24hPercent": "-0.39",
+ "volume24h": "166902.783082594304722271",
+ "communityRecognized": false,
+ "key": "evm--143:0xd18b7ec58cdf4876f6afebd3ed1730e4ce10414b",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Monad",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1763967402446.0.5985474006975384.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--143",
+ "address": "0xe7cd86e13ac4309349f30b3435a9d337750fc82d",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-onchain/evm--143/tokens/0xe7cd86e13ac4309349f30b3435a9d337750fc82d.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-onchain/evm--143/tokens/0xe7cd86e13ac4309349f30b3435a9d337750fc82d.png"
+ ],
+ "name": "USDT",
+ "symbol": "USDT",
+ "marketCap": "54800222.395357559238745297",
+ "price": "0.99986320543511601096",
+ "priceChange24hPercent": "-0.02",
+ "volume24h": "60006.775966903226791011",
+ "communityRecognized": true,
+ "key": "evm--143:0xe7cd86e13ac4309349f30b3435a9d337750fc82d",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Monad",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1763967402446.0.5985474006975384.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--143",
+ "address": "0x00000000efe302beaa2b3e6e1b18d08d69a9012a",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-onchain/evm--143/tokens/0x00000000efe302beaa2b3e6e1b18d08d69a9012a.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-onchain/evm--143/tokens/0x00000000efe302beaa2b3e6e1b18d08d69a9012a.png"
+ ],
+ "name": "AUSD",
+ "symbol": "AUSD",
+ "marketCap": "192676884.06533397991250719",
+ "price": "1.00006408979615196059",
+ "priceChange24hPercent": "-0.08",
+ "volume24h": "34569.652508173298830078",
+ "communityRecognized": true,
+ "key": "evm--143:0x00000000efe302beaa2b3e6e1b18d08d69a9012a",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Monad",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1763967402446.0.5985474006975384.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--143",
+ "address": "0x1111b3ded9f1fe1801ad4ebef8e2788183a24111",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/101d2bad23edec94658e564af523acb059ced7e5049800329eaab2029ecf94c5",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/101d2bad23edec94658e564af523acb059ced7e5049800329eaab2029ecf94c5"
+ ],
+ "name": "Newrails Euro",
+ "symbol": "EURW",
+ "marketCap": "281396.464024513392064332",
+ "price": "1.16225267988690133206",
+ "priceChange24hPercent": "-0.01",
+ "volume24h": "129343.28561608935588428",
+ "communityRecognized": false,
+ "key": "evm--143:0x1111b3ded9f1fe1801ad4ebef8e2788183a24111",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Monad",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1763967402446.0.5985474006975384.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--143",
+ "address": "0x3bd359c1119da7da1d913d1c4d2b7c461115433a",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/d4daeeb446598199b99edb6ba6f23ef5c9387b3bfd0d7f56d16c50899ad95063",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/d4daeeb446598199b99edb6ba6f23ef5c9387b3bfd0d7f56d16c50899ad95063"
+ ],
+ "name": "Wrapped MON",
+ "symbol": "WMON",
+ "marketCap": "8818411.642951553583417692",
+ "price": "0.0262563238442512319",
+ "priceChange24hPercent": "-2.36",
+ "volume24h": "393368.460392070317278697",
+ "communityRecognized": false,
+ "key": "evm--143:0x3bd359c1119da7da1d913d1c4d2b7c461115433a",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Monad",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1763967402446.0.5985474006975384.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--143",
+ "address": "0x11ed3b12d99d508f926c870fb44f472001842c96",
+ "logoUrl": "https://coin-images.coingecko.com/coins/images/102173673/large/IGNLOGO.png?1780836328",
+ "logoUrls": [
+ "https://coin-images.coingecko.com/coins/images/102173673/large/IGNLOGO.png?1780836328"
+ ],
+ "name": "Ignis",
+ "symbol": "IGN",
+ "marketCap": "31452.165945819630984011",
+ "price": "0.00031452165945819631",
+ "priceChange24hPercent": "-12.21",
+ "volume24h": "516.56091686449638225",
+ "communityRecognized": false,
+ "key": "evm--143:0x11ed3b12d99d508f926c870fb44f472001842c96",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Monad",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1763967402446.0.5985474006975384.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--143",
+ "address": "0x350035555e10d9afaf1566aaebfced5ba6c27777",
+ "logoUrl": "https://static.oklink.com/cdn/web3/currency/token/large/143-0x350035555e10d9afaf1566aaebfced5ba6c27777-105/type=default_90_0?v=1788808427631",
+ "logoUrls": [
+ "https://static.oklink.com/cdn/web3/currency/token/large/143-0x350035555e10d9afaf1566aaebfced5ba6c27777-105/type=default_90_0?v=1788808427631"
+ ],
+ "name": "Chog",
+ "symbol": "CHOG",
+ "marketCap": "1547982.268355718344032364",
+ "price": "0.00154798226835571834",
+ "priceChange24hPercent": "-13.87",
+ "volume24h": "914.301213398298041663",
+ "communityRecognized": false,
+ "key": "evm--143:0x350035555e10d9afaf1566aaebfced5ba6c27777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Monad",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1763967402446.0.5985474006975384.0.png"
+ }
+ ],
+ "trending|evm--143|24h|all": [
+ {
+ "isNative": false,
+ "networkId": "evm--143",
+ "address": "0xaca92e438df0b2401ff60da7e4337b687a2435da",
+ "logoUrl": "https://coin-images.coingecko.com/coins/images/68451/large/MetaMask-mUSD-Icon-200x200.png?1755878384",
+ "logoUrls": [
+ "https://coin-images.coingecko.com/coins/images/68451/large/MetaMask-mUSD-Icon-200x200.png?1755878384"
+ ],
+ "name": "MetaMask USD",
+ "symbol": "mUSD",
+ "marketCap": "8820144.539537013772",
+ "price": "1.000022",
+ "priceChange24hPercent": "0",
+ "volume24h": "945682.766118",
+ "communityRecognized": false,
+ "key": "evm--143:0xaca92e438df0b2401ff60da7e4337b687a2435da",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Monad",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1763967402446.0.5985474006975384.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--143",
+ "address": "0x01bff41798a0bcf287b996046ca68b395dbc1071",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/cc053877e9dc9d2870f0a3e9816d9c7c3044d7bd54ca96352f8626aaab3f20eb",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/cc053877e9dc9d2870f0a3e9816d9c7c3044d7bd54ca96352f8626aaab3f20eb"
+ ],
+ "name": "XAUt0",
+ "symbol": "XAUt0",
+ "marketCap": "16632790.988710435948476691",
+ "price": "4440.72480820567722990334",
+ "priceChange24hPercent": "0.95",
+ "volume24h": "33484.78232407604",
+ "communityRecognized": true,
+ "key": "evm--143:0x01bff41798a0bcf287b996046ca68b395dbc1071",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Monad",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1763967402446.0.5985474006975384.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--143",
+ "address": "0x0a332311633c0625f63cfc51ee33fc49826e0a3c",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/8356346777831140edc501f7c039ec2abceb49e4ee845cb86f3053a51d691863",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/8356346777831140edc501f7c039ec2abceb49e4ee845cb86f3053a51d691863"
+ ],
+ "name": "aPriori",
+ "symbol": "APR",
+ "marketCap": "2989182.115568541878759974",
+ "price": "0.18681754721432041708",
+ "priceChange24hPercent": "-4.82",
+ "volume24h": "61625.77973193191171564",
+ "communityRecognized": false,
+ "key": "evm--143:0x0a332311633c0625f63cfc51ee33fc49826e0a3c",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Monad",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1763967402446.0.5985474006975384.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--143",
+ "address": "0xfc421ad3c883bf9e7c4f42de845c4e4405799e73",
+ "logoUrl": "https://static.oklink.com/cdn/web3/currency/token/large/143-0xfc421ad3c883bf9e7c4f42de845c4e4405799e73-105/type=default_90_0?v=1788808999724",
+ "logoUrls": [
+ "https://static.oklink.com/cdn/web3/currency/token/large/143-0xfc421ad3c883bf9e7c4f42de845c4e4405799e73-105/type=default_90_0?v=1788808999724"
+ ],
+ "name": "Gho Token",
+ "symbol": "GHO",
+ "marketCap": "56173914.311656018271721552",
+ "price": "0.9993357654392514117",
+ "priceChange24hPercent": "0",
+ "volume24h": "109230.694406",
+ "communityRecognized": false,
+ "key": "evm--143:0xfc421ad3c883bf9e7c4f42de845c4e4405799e73",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Monad",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1763967402446.0.5985474006975384.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--143",
+ "address": "0x1b68626dca36c7fe922fd2d55e4f631d962de19c",
+ "logoUrl": "https://static.oklink.com/cdn/web3/currency/token/large/143-0x1b68626dca36c7fe922fd2d55e4f631d962de19c-105/type=default_90_0?v=1788808388837",
+ "logoUrls": [
+ "https://static.oklink.com/cdn/web3/currency/token/large/143-0x1b68626dca36c7fe922fd2d55e4f631d962de19c-105/type=default_90_0?v=1788808388837"
+ ],
+ "name": "ShMonad",
+ "symbol": "shMON",
+ "marketCap": "8892420.06758843785341307",
+ "price": "0.04234598759183881817",
+ "priceChange24hPercent": "-0.34",
+ "volume24h": "23878.64155727265640257",
+ "communityRecognized": false,
+ "key": "evm--143:0x1b68626dca36c7fe922fd2d55e4f631d962de19c",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Monad",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1763967402446.0.5985474006975384.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--143",
+ "address": "0x0555e30da8f98308edb960aa94c0db47230d2b9c",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/5968315662ba0d4336c57cc4cca4142a71a707e9682a8df77810db2b956b020e",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/5968315662ba0d4336c57cc4cca4142a71a707e9682a8df77810db2b956b020e"
+ ],
+ "name": "Wrapped BTC",
+ "symbol": "WBTC",
+ "marketCap": "4090648.044943985364873138",
+ "price": "78660.19068464980579675124",
+ "priceChange24hPercent": "-0.83",
+ "volume24h": "3186874.394862348493354727",
+ "communityRecognized": true,
+ "key": "evm--143:0x0555e30da8f98308edb960aa94c0db47230d2b9c",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Monad",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1763967402446.0.5985474006975384.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--143",
+ "address": "0x0bb150dfa86ea5d7742f07fefcd8e8eda81d64ef",
+ "logoUrl": "https://static.oklink.com/cdn/web3/currency/token/large/143-0x0bb150dfa86ea5d7742f07fefcd8e8eda81d64ef-105/type=default_90_0?v=1788809236532",
+ "logoUrls": [
+ "https://static.oklink.com/cdn/web3/currency/token/large/143-0x0bb150dfa86ea5d7742f07fefcd8e8eda81d64ef-105/type=default_90_0?v=1788809236532"
+ ],
+ "name": "Saturn USD",
+ "symbol": "USDat",
+ "marketCap": "27580150.559776504516397301",
+ "price": "0.9996947397892063272",
+ "priceChange24hPercent": "0",
+ "volume24h": "3715.262197",
+ "communityRecognized": false,
+ "key": "evm--143:0x0bb150dfa86ea5d7742f07fefcd8e8eda81d64ef",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Monad",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1763967402446.0.5985474006975384.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--143",
+ "address": "0xb53c4fb340aa926b2ac9954a1bb6dc83fd2b8a01",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/001b4443aa4251ef1afd763fa2e5f4ac5e9650e5de92230c40b57b32250badeb",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/001b4443aa4251ef1afd763fa2e5f4ac5e9650e5de92230c40b57b32250badeb"
+ ],
+ "name": "DOGGG",
+ "symbol": "DOGGG",
+ "marketCap": "48503.058993553095742479",
+ "price": "0.0000485030589935531",
+ "priceChange24hPercent": "-51.66",
+ "volume24h": "23478.43488646182691954",
+ "communityRecognized": false,
+ "key": "evm--143:0xb53c4fb340aa926b2ac9954a1bb6dc83fd2b8a01",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Monad",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1763967402446.0.5985474006975384.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--143",
+ "address": "0x81a224f8a62f52bde942dbf23a56df77a10b7777",
+ "logoUrl": "https://coin-images.coingecko.com/coins/images/102172808/large/wi13repazwee6wximmko4nk8jfbo.?1775837251",
+ "logoUrls": [
+ "https://coin-images.coingecko.com/coins/images/102172808/large/wi13repazwee6wximmko4nk8jfbo.?1775837251"
+ ],
+ "name": "emonad",
+ "symbol": "emo",
+ "marketCap": "982059.937280161536566462",
+ "price": "0.00098205993728016154",
+ "priceChange24hPercent": "-24.21",
+ "volume24h": "1600.135385481460908036",
+ "communityRecognized": false,
+ "key": "evm--143:0x81a224f8a62f52bde942dbf23a56df77a10b7777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Monad",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1763967402446.0.5985474006975384.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--143",
+ "address": "0xa3227c5969757783154c60bf0bc1944180ed81b9",
+ "logoUrl": "https://static.oklink.com/cdn/web3/currency/token/large/143-0xa3227c5969757783154c60bf0bc1944180ed81b9-105/type=default_90_0?v=1788808388919",
+ "logoUrls": [
+ "https://static.oklink.com/cdn/web3/currency/token/large/143-0xa3227c5969757783154c60bf0bc1944180ed81b9-105/type=default_90_0?v=1788808388919"
+ ],
+ "name": "Kintsu Staked Monad",
+ "symbol": "sMON",
+ "marketCap": "2329395.663892163595255939",
+ "price": "0.02899222269343586255",
+ "priceChange24hPercent": "0.06",
+ "volume24h": "15861.11443772276192695",
+ "communityRecognized": false,
+ "key": "evm--143:0xa3227c5969757783154c60bf0bc1944180ed81b9",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Monad",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1763967402446.0.5985474006975384.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--143",
+ "address": "0xd18b7ec58cdf4876f6afebd3ed1730e4ce10414b",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/6c54fb39500a051b95685a52de48e09b4b2c9a615eb1e8e7a77f9a47196f35f3",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/6c54fb39500a051b95685a52de48e09b4b2c9a615eb1e8e7a77f9a47196f35f3"
+ ],
+ "name": "Coinbase Wrapped BTC",
+ "symbol": "cbBTC",
+ "marketCap": "12516825.387912744537306148",
+ "price": "78755.03791710164638087184",
+ "priceChange24hPercent": "-0.87",
+ "volume24h": "889657.175144815136614337",
+ "communityRecognized": false,
+ "key": "evm--143:0xd18b7ec58cdf4876f6afebd3ed1730e4ce10414b",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Monad",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1763967402446.0.5985474006975384.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--143",
+ "address": "0x1001ff13bf368aa4fa85f21043648079f00e1001",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/0780d04341f5581c24dac7624892b74b21b3a53c8f6fd93dc80fe0d6eebb6dde",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/0780d04341f5581c24dac7624892b74b21b3a53c8f6fd93dc80fe0d6eebb6dde"
+ ],
+ "name": "LeverUp",
+ "symbol": "LV",
+ "marketCap": "5866201.265751021412772805",
+ "price": "0.06518022252870899007",
+ "priceChange24hPercent": "-3.15",
+ "volume24h": "793.05362444854349586",
+ "communityRecognized": false,
+ "key": "evm--143:0x1001ff13bf368aa4fa85f21043648079f00e1001",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Monad",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1763967402446.0.5985474006975384.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--143",
+ "address": "0xad96c3dffcd6374294e2573a7fbba96097cc8d7c",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-onchain/evm--143/tokens/0xad96c3dffcd6374294e2573a7fbba96097cc8d7c.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-onchain/evm--143/tokens/0xad96c3dffcd6374294e2573a7fbba96097cc8d7c.png"
+ ],
+ "name": "Pixie Dust",
+ "symbol": "DUST",
+ "marketCap": "123783.879654840781587094",
+ "price": "0.04107549947207048637",
+ "priceChange24hPercent": "-2.53",
+ "volume24h": "909.671239",
+ "communityRecognized": false,
+ "key": "evm--143:0xad96c3dffcd6374294e2573a7fbba96097cc8d7c",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Monad",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1763967402446.0.5985474006975384.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--143",
+ "address": "0x6f8b615425de5cca4ef1fc3270a114a94f000601",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/df8152a4eb67e65d907729c55d663d70251b222ea9dd85017bf40b64b70f1a81",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/df8152a4eb67e65d907729c55d663d70251b222ea9dd85017bf40b64b70f1a81"
+ ],
+ "name": "NAD",
+ "symbol": "NAD",
+ "marketCap": "10774.46482568564585905",
+ "price": "0.00001077446482568565",
+ "priceChange24hPercent": "3.54",
+ "volume24h": "3270.7124256599573345",
+ "communityRecognized": false,
+ "key": "evm--143:0x6f8b615425de5cca4ef1fc3270a114a94f000601",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Monad",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1763967402446.0.5985474006975384.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--143",
+ "address": "0x111111d2bf19e43c34263401e0cad979ed1cdb61",
+ "logoUrl": "https://static.oklink.com/cdn/web3/currency/token/large/143-0x111111d2bf19e43c34263401e0cad979ed1cdb61-105/type=default_90_0?v=1788808460486",
+ "logoUrls": [
+ "https://static.oklink.com/cdn/web3/currency/token/large/143-0x111111d2bf19e43c34263401e0cad979ed1cdb61-105/type=default_90_0?v=1788808460486"
+ ],
+ "name": "World Liberty Financial USD",
+ "symbol": "USD1",
+ "marketCap": "43425.179725432075622687",
+ "price": "0.99338757493081029955",
+ "priceChange24hPercent": "-0.15",
+ "volume24h": "1809.297082880645198177",
+ "communityRecognized": true,
+ "key": "evm--143:0x111111d2bf19e43c34263401e0cad979ed1cdb61",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Monad",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1763967402446.0.5985474006975384.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--143",
+ "address": "0xe7cd86e13ac4309349f30b3435a9d337750fc82d",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-onchain/evm--143/tokens/0xe7cd86e13ac4309349f30b3435a9d337750fc82d.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-onchain/evm--143/tokens/0xe7cd86e13ac4309349f30b3435a9d337750fc82d.png"
+ ],
+ "name": "USDT",
+ "symbol": "USDT",
+ "marketCap": "54800222.395357559238745297",
+ "price": "0.99986320543511601096",
+ "priceChange24hPercent": "0",
+ "volume24h": "319531.124017445053353051",
+ "communityRecognized": true,
+ "key": "evm--143:0xe7cd86e13ac4309349f30b3435a9d337750fc82d",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Monad",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1763967402446.0.5985474006975384.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--143",
+ "address": "0x00000000efe302beaa2b3e6e1b18d08d69a9012a",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-onchain/evm--143/tokens/0x00000000efe302beaa2b3e6e1b18d08d69a9012a.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-onchain/evm--143/tokens/0x00000000efe302beaa2b3e6e1b18d08d69a9012a.png"
+ ],
+ "name": "AUSD",
+ "symbol": "AUSD",
+ "marketCap": "192676884.06533397991250719",
+ "price": "1.00006408979615196059",
+ "priceChange24hPercent": "0.27",
+ "volume24h": "720830.233991712171598415",
+ "communityRecognized": true,
+ "key": "evm--143:0x00000000efe302beaa2b3e6e1b18d08d69a9012a",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Monad",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1763967402446.0.5985474006975384.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--143",
+ "address": "0x1111b3ded9f1fe1801ad4ebef8e2788183a24111",
+ "logoUrl": "https://static.oklink.com/cdn/web3/currency/token/large/143-0x1111b3ded9f1fe1801ad4ebef8e2788183a24111-105/type=default_90_0?v=1788808612988",
+ "logoUrls": [
+ "https://static.oklink.com/cdn/web3/currency/token/large/143-0x1111b3ded9f1fe1801ad4ebef8e2788183a24111-105/type=default_90_0?v=1788808612988"
+ ],
+ "name": "Newrails Euro",
+ "symbol": "EURW",
+ "marketCap": "281396.464024513392064332",
+ "price": "1.16225267988690133206",
+ "priceChange24hPercent": "0.11",
+ "volume24h": "975839.999692090331155942",
+ "communityRecognized": false,
+ "key": "evm--143:0x1111b3ded9f1fe1801ad4ebef8e2788183a24111",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Monad",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1763967402446.0.5985474006975384.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--143",
+ "address": "0x91b81bfbe3a747230f0529aa28d8b2bc898e6d56",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/228a2ee34330ef7b219d03f0c98aabdd0b3a4c7d8f79adafab2fa234687db384",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/228a2ee34330ef7b219d03f0c98aabdd0b3a4c7d8f79adafab2fa234687db384"
+ ],
+ "name": "LeverUp MON",
+ "symbol": "LVMON",
+ "marketCap": "1982751.751972521106597793",
+ "price": "0.02617278107566637706",
+ "priceChange24hPercent": "0.25",
+ "volume24h": "36668.76726537938649433",
+ "communityRecognized": false,
+ "key": "evm--143:0x91b81bfbe3a747230f0529aa28d8b2bc898e6d56",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Monad",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1763967402446.0.5985474006975384.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--143",
+ "address": "0x3bd359c1119da7da1d913d1c4d2b7c461115433a",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/d4daeeb446598199b99edb6ba6f23ef5c9387b3bfd0d7f56d16c50899ad95063",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/d4daeeb446598199b99edb6ba6f23ef5c9387b3bfd0d7f56d16c50899ad95063"
+ ],
+ "name": "Wrapped MON",
+ "symbol": "WMON",
+ "marketCap": "8818411.642951553583417692",
+ "price": "0.0262563238442512319",
+ "priceChange24hPercent": "-0.05",
+ "volume24h": "3094348.396146486137719245",
+ "communityRecognized": false,
+ "key": "evm--143:0x3bd359c1119da7da1d913d1c4d2b7c461115433a",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Monad",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1763967402446.0.5985474006975384.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--143",
+ "address": "0x11ed3b12d99d508f926c870fb44f472001842c96",
+ "logoUrl": "https://coin-images.coingecko.com/coins/images/102173673/large/IGNLOGO.png?1780836328",
+ "logoUrls": [
+ "https://coin-images.coingecko.com/coins/images/102173673/large/IGNLOGO.png?1780836328"
+ ],
+ "name": "Ignis",
+ "symbol": "IGN",
+ "marketCap": "31452.165945819630984011",
+ "price": "0.00031452165945819631",
+ "priceChange24hPercent": "-17.51",
+ "volume24h": "2090.706917171900572554",
+ "communityRecognized": false,
+ "key": "evm--143:0x11ed3b12d99d508f926c870fb44f472001842c96",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Monad",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1763967402446.0.5985474006975384.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--143",
+ "address": "0x350035555e10d9afaf1566aaebfced5ba6c27777",
+ "logoUrl": "https://static.oklink.com/cdn/web3/currency/token/large/143-0x350035555e10d9afaf1566aaebfced5ba6c27777-105/type=default_90_0?v=1788808427631",
+ "logoUrls": [
+ "https://static.oklink.com/cdn/web3/currency/token/large/143-0x350035555e10d9afaf1566aaebfced5ba6c27777-105/type=default_90_0?v=1788808427631"
+ ],
+ "name": "Chog",
+ "symbol": "CHOG",
+ "marketCap": "1547982.268355718344032364",
+ "price": "0.00154798226835571834",
+ "priceChange24hPercent": "-23.72",
+ "volume24h": "8125.876900619327360176",
+ "communityRecognized": false,
+ "key": "evm--143:0x350035555e10d9afaf1566aaebfced5ba6c27777",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Monad",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1763967402446.0.5985474006975384.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--143",
+ "address": "0x788571e0e5067adea87e6ba22a2b738ffdf48888",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/e866368e6e855438c7b2518700e7e474af19aaaeadb30238d768cce9a7e2c397",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/e866368e6e855438c7b2518700e7e474af19aaaeadb30238d768cce9a7e2c397"
+ ],
+ "name": "UNIT",
+ "symbol": "UNIT",
+ "marketCap": "88425.667246320484268411",
+ "price": "0.00008842566724632048",
+ "priceChange24hPercent": "-45.72",
+ "volume24h": "9308.789899119870101174",
+ "communityRecognized": false,
+ "key": "evm--143:0x788571e0e5067adea87e6ba22a2b738ffdf48888",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Monad",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1763967402446.0.5985474006975384.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--143",
+ "address": "0x371c7ec6d8039ff7933a2aa28eb827ffe1f52f07",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/f46fc270d9b2a625d60dd58f5ded27ffbb202ba1909d5017df55876dbaa4417e",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/f46fc270d9b2a625d60dd58f5ded27ffbb202ba1909d5017df55876dbaa4417e"
+ ],
+ "name": "JoeToken",
+ "symbol": "JOE",
+ "marketCap": "392717.951317195527297807",
+ "price": "0.03226950169038667341",
+ "priceChange24hPercent": "-3.41",
+ "volume24h": "975.067012728675591",
+ "communityRecognized": false,
+ "key": "evm--143:0x371c7ec6d8039ff7933a2aa28eb827ffe1f52f07",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Monad",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1763967402446.0.5985474006975384.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--143",
+ "address": "0x8498312a6b3cbd158bf0c93abdcf29e6e4f55081",
+ "logoUrl": "https://static.oklink.com/cdn/web3/currency/token/large/143-0x8498312a6b3cbd158bf0c93abdcf29e6e4f55081-105/type=default_90_0?v=1788808562572",
+ "logoUrls": [
+ "https://static.oklink.com/cdn/web3/currency/token/large/143-0x8498312a6b3cbd158bf0c93abdcf29e6e4f55081-105/type=default_90_0?v=1788808562572"
+ ],
+ "name": "gMON",
+ "symbol": "gMON",
+ "marketCap": "1225059.804936763428162776",
+ "price": "0.02894069294175735333",
+ "priceChange24hPercent": "0.29",
+ "volume24h": "695.16967858029365186",
+ "communityRecognized": false,
+ "key": "evm--143:0x8498312a6b3cbd158bf0c93abdcf29e6e4f55081",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Monad",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1763967402446.0.5985474006975384.0.png"
+ }
+ ],
+ "trending|evm--146|5m|all": [],
+ "trending|evm--146|1h|all": [
+ {
+ "isNative": false,
+ "networkId": "evm--146",
+ "address": "0x000000000eccff26b795f73fb0a70d48da657fef",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/e866368e6e855438c7b2518700e7e474af19aaaeadb30238d768cce9a7e2c397",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/e866368e6e855438c7b2518700e7e474af19aaaeadb30238d768cce9a7e2c397"
+ ],
+ "name": "US Sonic Dollar",
+ "symbol": "USSD",
+ "marketCap": "963380.500865416969720696",
+ "price": "0.99968297218329685566",
+ "priceChange24hPercent": "0",
+ "volume24h": "1764.060933483209832299",
+ "communityRecognized": false,
+ "key": "evm--146:0x000000000eccff26b795f73fb0a70d48da657fef",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Sonic Mainnet",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1735787974946.0.09719711646964435.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--146",
+ "address": "0x3333111a391cc08fa51353e9195526a70b333333",
+ "logoUrl": "https://coin-images.coingecko.com/coins/images/54526/large/shadow_liquid_staking_token17400.jpg?1740148577",
+ "logoUrls": [
+ "https://coin-images.coingecko.com/coins/images/54526/large/shadow_liquid_staking_token17400.jpg?1740148577"
+ ],
+ "name": "Shadow Liquid Staking Token",
+ "symbol": "x33",
+ "marketCap": "870342.18968746282137767",
+ "price": "2.50555170584723762264",
+ "priceChange24hPercent": "1.6",
+ "volume24h": "891.57458616609225906",
+ "communityRecognized": false,
+ "key": "evm--146:0x3333111a391cc08fa51353e9195526a70b333333",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Sonic Mainnet",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1735787974946.0.09719711646964435.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--146",
+ "address": "0xedf8b632b537d5993adb5e2e15882cd791c284cb",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/0d72215a3f7fa710345560e4e23b6841e920a6a26e4931fb55811fc8565aa54e",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/0d72215a3f7fa710345560e4e23b6841e920a6a26e4931fb55811fc8565aa54e"
+ ],
+ "name": "Fantom Bomb",
+ "symbol": "fBOMB",
+ "marketCap": "572158.457509263902005414",
+ "price": "0.01897370827725336675",
+ "priceChange24hPercent": "2.11",
+ "volume24h": "841.896210990216271031",
+ "communityRecognized": false,
+ "key": "evm--146:0xedf8b632b537d5993adb5e2e15882cd791c284cb",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Sonic Mainnet",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1735787974946.0.09719711646964435.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--146",
+ "address": "0x0555e30da8f98308edb960aa94c0db47230d2b9c",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-onchain/evm--146/tokens/0x0555e30da8f98308edb960aa94c0db47230d2b9c.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-onchain/evm--146/tokens/0x0555e30da8f98308edb960aa94c0db47230d2b9c.png"
+ ],
+ "name": "Wrapped BTC",
+ "symbol": "WBTC",
+ "marketCap": "745337.158259784683861101",
+ "price": "78825.15562213927586671204",
+ "priceChange24hPercent": "0",
+ "volume24h": "683.227193213451382101",
+ "communityRecognized": false,
+ "key": "evm--146:0x0555e30da8f98308edb960aa94c0db47230d2b9c",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Sonic Mainnet",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1735787974946.0.09719711646964435.0.png"
+ }
+ ],
+ "trending|evm--146|4h|all": [
+ {
+ "isNative": false,
+ "networkId": "evm--146",
+ "address": "0x000000000eccff26b795f73fb0a70d48da657fef",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/e866368e6e855438c7b2518700e7e474af19aaaeadb30238d768cce9a7e2c397",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/e866368e6e855438c7b2518700e7e474af19aaaeadb30238d768cce9a7e2c397"
+ ],
+ "name": "US Sonic Dollar",
+ "symbol": "USSD",
+ "marketCap": "963380.500865416969720696",
+ "price": "0.99968297218329685566",
+ "priceChange24hPercent": "0",
+ "volume24h": "11578.031167483209832299",
+ "communityRecognized": false,
+ "key": "evm--146:0x000000000eccff26b795f73fb0a70d48da657fef",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Sonic Mainnet",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1735787974946.0.09719711646964435.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--146",
+ "address": "0x3333111a391cc08fa51353e9195526a70b333333",
+ "logoUrl": "https://coin-images.coingecko.com/coins/images/54526/large/shadow_liquid_staking_token17400.jpg?1740148577",
+ "logoUrls": [
+ "https://coin-images.coingecko.com/coins/images/54526/large/shadow_liquid_staking_token17400.jpg?1740148577"
+ ],
+ "name": "Shadow Liquid Staking Token",
+ "symbol": "x33",
+ "marketCap": "870342.18968746282137767",
+ "price": "2.50555170584723762264",
+ "priceChange24hPercent": "1.7",
+ "volume24h": "1133.24605754924274206",
+ "communityRecognized": false,
+ "key": "evm--146:0x3333111a391cc08fa51353e9195526a70b333333",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Sonic Mainnet",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1735787974946.0.09719711646964435.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--146",
+ "address": "0x3333b97138d4b086720b5ae8a7844b1345a33333",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/18ab5020b95a10b3b7b27299a0692107dca74946e2fca5e1b90ea7ccbd9855b6",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/18ab5020b95a10b3b7b27299a0692107dca74946e2fca5e1b90ea7ccbd9855b6"
+ ],
+ "name": "Shadow",
+ "symbol": "SHADOW",
+ "marketCap": "168184.112185142507180853",
+ "price": "0.86660229739200976225",
+ "priceChange24hPercent": "-1.09",
+ "volume24h": "1556.92637448863615776",
+ "communityRecognized": true,
+ "key": "evm--146:0x3333b97138d4b086720b5ae8a7844b1345a33333",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Sonic Mainnet",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1735787974946.0.09719711646964435.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--146",
+ "address": "0xedf8b632b537d5993adb5e2e15882cd791c284cb",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/0d72215a3f7fa710345560e4e23b6841e920a6a26e4931fb55811fc8565aa54e",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/0d72215a3f7fa710345560e4e23b6841e920a6a26e4931fb55811fc8565aa54e"
+ ],
+ "name": "Fantom Bomb",
+ "symbol": "fBOMB",
+ "marketCap": "572158.457509263902005414",
+ "price": "0.01897370827725336675",
+ "priceChange24hPercent": "1.89",
+ "volume24h": "1226.604876015260449631",
+ "communityRecognized": false,
+ "key": "evm--146:0xedf8b632b537d5993adb5e2e15882cd791c284cb",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Sonic Mainnet",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1735787974946.0.09719711646964435.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--146",
+ "address": "0x0555e30da8f98308edb960aa94c0db47230d2b9c",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-onchain/evm--146/tokens/0x0555e30da8f98308edb960aa94c0db47230d2b9c.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-onchain/evm--146/tokens/0x0555e30da8f98308edb960aa94c0db47230d2b9c.png"
+ ],
+ "name": "Wrapped BTC",
+ "symbol": "WBTC",
+ "marketCap": "745337.158259784683861101",
+ "price": "78825.15562213927586671204",
+ "priceChange24hPercent": "-0.12",
+ "volume24h": "2343.716525051974798087",
+ "communityRecognized": false,
+ "key": "evm--146:0x0555e30da8f98308edb960aa94c0db47230d2b9c",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Sonic Mainnet",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1735787974946.0.09719711646964435.0.png"
+ }
+ ],
+ "trending|evm--146|24h|all": [
+ {
+ "isNative": false,
+ "networkId": "evm--146",
+ "address": "0x000000000eccff26b795f73fb0a70d48da657fef",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/e866368e6e855438c7b2518700e7e474af19aaaeadb30238d768cce9a7e2c397",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/e866368e6e855438c7b2518700e7e474af19aaaeadb30238d768cce9a7e2c397"
+ ],
+ "name": "US Sonic Dollar",
+ "symbol": "USSD",
+ "marketCap": "963380.500865416969720696",
+ "price": "0.99968297218329685566",
+ "priceChange24hPercent": "0",
+ "volume24h": "52519.86249931736374423",
+ "communityRecognized": false,
+ "key": "evm--146:0x000000000eccff26b795f73fb0a70d48da657fef",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Sonic Mainnet",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1735787974946.0.09719711646964435.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--146",
+ "address": "0x9fdbc3f8abc05fa8f3ad3c17d2f806c1230c4564",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/ed981c29db52bb80a99295ace81ad4b7decc73743dafd9b49cdf8ec58d0ef990",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/ed981c29db52bb80a99295ace81ad4b7decc73743dafd9b49cdf8ec58d0ef990"
+ ],
+ "name": "GOGGLES",
+ "symbol": "GOGLZ",
+ "marketCap": "111485.227412158226859278",
+ "price": "0.00291278698590272285",
+ "priceChange24hPercent": "-4.12",
+ "volume24h": "1890.187265995754024821",
+ "communityRecognized": false,
+ "key": "evm--146:0x9fdbc3f8abc05fa8f3ad3c17d2f806c1230c4564",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Sonic Mainnet",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1735787974946.0.09719711646964435.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--146",
+ "address": "0x17af1df44444ab9091622e4aa66db5bb34e51ad5",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/f9e38abf542202d5305609559f94332ada746aad5ea30383a5c94e93c14b544a",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/f9e38abf542202d5305609559f94332ada746aad5ea30383a5c94e93c14b544a"
+ ],
+ "name": "Tin Hat Cat",
+ "symbol": "THC",
+ "marketCap": "87097.979384433320385947",
+ "price": "0.00373277070875580053",
+ "priceChange24hPercent": "-21.67",
+ "volume24h": "1776.834993742093648943",
+ "communityRecognized": false,
+ "key": "evm--146:0x17af1df44444ab9091622e4aa66db5bb34e51ad5",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Sonic Mainnet",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1735787974946.0.09719711646964435.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--146",
+ "address": "0x3333111a391cc08fa51353e9195526a70b333333",
+ "logoUrl": "https://coin-images.coingecko.com/coins/images/54526/large/shadow_liquid_staking_token17400.jpg?1740148577",
+ "logoUrls": [
+ "https://coin-images.coingecko.com/coins/images/54526/large/shadow_liquid_staking_token17400.jpg?1740148577"
+ ],
+ "name": "Shadow Liquid Staking Token",
+ "symbol": "x33",
+ "marketCap": "870342.18968746282137767",
+ "price": "2.50555170584723762264",
+ "priceChange24hPercent": "-1",
+ "volume24h": "4655.90458602868068751",
+ "communityRecognized": false,
+ "key": "evm--146:0x3333111a391cc08fa51353e9195526a70b333333",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Sonic Mainnet",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1735787974946.0.09719711646964435.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--146",
+ "address": "0x674a430f531847a6f8976a900f8ace765f896a1b",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/1d062e5bd8e6d1165f4447f433c63cacf60e76ce9d661d96db5f756dc1ca0457",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/1d062e5bd8e6d1165f4447f433c63cacf60e76ce9d661d96db5f756dc1ca0457"
+ ],
+ "name": "GSNAKE",
+ "symbol": "GSNAKE",
+ "marketCap": "41302.153435818024515023",
+ "price": "0.66390540483280232962",
+ "priceChange24hPercent": "-7.45",
+ "volume24h": "521.08316900262054995",
+ "communityRecognized": false,
+ "key": "evm--146:0x674a430f531847a6f8976a900f8ace765f896a1b",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Sonic Mainnet",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1735787974946.0.09719711646964435.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--146",
+ "address": "0x3333b97138d4b086720b5ae8a7844b1345a33333",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/18ab5020b95a10b3b7b27299a0692107dca74946e2fca5e1b90ea7ccbd9855b6",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/18ab5020b95a10b3b7b27299a0692107dca74946e2fca5e1b90ea7ccbd9855b6"
+ ],
+ "name": "Shadow",
+ "symbol": "SHADOW",
+ "marketCap": "168184.112185142507180853",
+ "price": "0.86660229739200976225",
+ "priceChange24hPercent": "-5.35",
+ "volume24h": "10244.273899429182589479",
+ "communityRecognized": true,
+ "key": "evm--146:0x3333b97138d4b086720b5ae8a7844b1345a33333",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Sonic Mainnet",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1735787974946.0.09719711646964435.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--146",
+ "address": "0xedf8b632b537d5993adb5e2e15882cd791c284cb",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/0d72215a3f7fa710345560e4e23b6841e920a6a26e4931fb55811fc8565aa54e",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/0d72215a3f7fa710345560e4e23b6841e920a6a26e4931fb55811fc8565aa54e"
+ ],
+ "name": "Fantom Bomb",
+ "symbol": "fBOMB",
+ "marketCap": "572158.457509263902005414",
+ "price": "0.01897370827725336675",
+ "priceChange24hPercent": "3.25",
+ "volume24h": "2888.844039402333008741",
+ "communityRecognized": false,
+ "key": "evm--146:0xedf8b632b537d5993adb5e2e15882cd791c284cb",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Sonic Mainnet",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1735787974946.0.09719711646964435.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--146",
+ "address": "0x70e7f1d907e30efb18fe1dd8a1d75c09a98177d3",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-onchain/evm--146/tokens/0x70e7f1d907e30efb18fe1dd8a1d75c09a98177d3.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-onchain/evm--146/tokens/0x70e7f1d907e30efb18fe1dd8a1d75c09a98177d3.png"
+ ],
+ "name": "JEFE TOKEN",
+ "symbol": "JEFE",
+ "marketCap": "282363.761429050716296043",
+ "price": "0.02823637614290507163",
+ "priceChange24hPercent": "-0.56",
+ "volume24h": "3278.404008506733500924",
+ "communityRecognized": false,
+ "key": "evm--146:0x70e7f1d907e30efb18fe1dd8a1d75c09a98177d3",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Sonic Mainnet",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1735787974946.0.09719711646964435.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--146",
+ "address": "0xddf26b42c1d903de8962d3f79a74a501420d5f19",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/0ab3109cd5ae10ce455ba3faa360d721d2f82fc48b7d2c9189a94721b031fcdd",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/0ab3109cd5ae10ce455ba3faa360d721d2f82fc48b7d2c9189a94721b031fcdd"
+ ],
+ "name": "Equalizer on Sonic",
+ "symbol": "EQUAL",
+ "marketCap": "89769.982390104452759111",
+ "price": "0.07338665007058547033",
+ "priceChange24hPercent": "-4.87",
+ "volume24h": "1004.153679881586151328",
+ "communityRecognized": false,
+ "key": "evm--146:0xddf26b42c1d903de8962d3f79a74a501420d5f19",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Sonic Mainnet",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1735787974946.0.09719711646964435.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--146",
+ "address": "0x0555e30da8f98308edb960aa94c0db47230d2b9c",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-onchain/evm--146/tokens/0x0555e30da8f98308edb960aa94c0db47230d2b9c.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-onchain/evm--146/tokens/0x0555e30da8f98308edb960aa94c0db47230d2b9c.png"
+ ],
+ "name": "Wrapped BTC",
+ "symbol": "WBTC",
+ "marketCap": "745337.158259784683861101",
+ "price": "78825.15562213927586671204",
+ "priceChange24hPercent": "-0.92",
+ "volume24h": "14694.875756580594651747",
+ "communityRecognized": false,
+ "key": "evm--146:0x0555e30da8f98308edb960aa94c0db47230d2b9c",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Sonic Mainnet",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1735787974946.0.09719711646964435.0.png"
+ }
+ ],
+ "trending|evm--59144|5m|all": [],
+ "trending|evm--59144|1h|all": [],
+ "trending|evm--59144|4h|all": [
+ {
+ "isNative": false,
+ "networkId": "evm--59144",
+ "address": "0xf5c6825015280cdfd0b56903f9f8b5a2233476f5",
+ "logoUrl": "https://uni-test.onekey-asset.com/server-service-onchain/evm--59144/tokens/0xf5c6825015280cdfd0b56903f9f8b5a2233476f5.png",
+ "logoUrls": [
+ "https://uni-test.onekey-asset.com/server-service-onchain/evm--59144/tokens/0xf5c6825015280cdfd0b56903f9f8b5a2233476f5.png"
+ ],
+ "name": "Binance Coin",
+ "symbol": "BNB",
+ "marketCap": "34099.596666940775739603",
+ "price": "726.7860125779168854699",
+ "priceChange24hPercent": "-0.39",
+ "volume24h": "11215.3847285309760168",
+ "communityRecognized": false,
+ "key": "evm--59144:0xf5c6825015280cdfd0b56903f9f8b5a2233476f5",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Linea",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/linea.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--59144",
+ "address": "0x2416092f143378750bb29b79ed961ab195cceea5",
+ "logoUrl": "https://uni-test.onekey-asset.com/server-service-onchain/evm--59144/tokens/0x2416092f143378750bb29b79ed961ab195cceea5.png",
+ "logoUrls": [
+ "https://uni-test.onekey-asset.com/server-service-onchain/evm--59144/tokens/0x2416092f143378750bb29b79ed961ab195cceea5.png"
+ ],
+ "name": "Renzo Restaked ETH",
+ "symbol": "ezETH",
+ "marketCap": "18564824.533014698131500249",
+ "price": "2709.73839055047425502607",
+ "priceChange24hPercent": "1.36",
+ "volume24h": "1398.63202908649985",
+ "communityRecognized": false,
+ "key": "evm--59144:0x2416092f143378750bb29b79ed961ab195cceea5",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Linea",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/linea.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--59144",
+ "address": "0x1bf74c010e6320bab11e2e5a532b5ac15e0b8aa6",
+ "logoUrl": "https://uni-test.onekey-asset.com/server-service-onchain/evm--59144/tokens/0x1bf74c010e6320bab11e2e5a532b5ac15e0b8aa6.png",
+ "logoUrls": [
+ "https://uni-test.onekey-asset.com/server-service-onchain/evm--59144/tokens/0x1bf74c010e6320bab11e2e5a532b5ac15e0b8aa6.png"
+ ],
+ "name": "Wrapped eETH",
+ "symbol": "weETH",
+ "marketCap": "187025130.987454160750694571",
+ "price": "2749.7722945282476439587",
+ "priceChange24hPercent": "0.69",
+ "volume24h": "4991.7092721306059147",
+ "communityRecognized": false,
+ "key": "evm--59144:0x1bf74c010e6320bab11e2e5a532b5ac15e0b8aa6",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Linea",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/linea.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--59144",
+ "address": "0xaca92e438df0b2401ff60da7e4337b687a2435da",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/e684e97d2f97e70cfa597f03f01edb830ca052e1f95b01150f2b04d6e45284f9",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/e684e97d2f97e70cfa597f03f01edb830ca052e1f95b01150f2b04d6e45284f9"
+ ],
+ "name": "MetaMask USD",
+ "symbol": "mUSD",
+ "marketCap": "6690048.777984052516753466",
+ "price": "1.00103133382588450445",
+ "priceChange24hPercent": "0.11",
+ "volume24h": "2183.446159999164224",
+ "communityRecognized": false,
+ "key": "evm--59144:0xaca92e438df0b2401ff60da7e4337b687a2435da",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Linea",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/linea.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--59144",
+ "address": "0x1789e0043623282d5dcc7f213d703c6d8bafbb04",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/1c2ae3cfc659b57b04439cb5cbdb828bf369b576054ee0db61a27a21d01a60dc",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/1c2ae3cfc659b57b04439cb5cbdb828bf369b576054ee0db61a27a21d01a60dc"
+ ],
+ "name": "Linea",
+ "symbol": "LINEA",
+ "marketCap": "60669231.510370424772582059",
+ "price": "0.00269280890908269238",
+ "priceChange24hPercent": "-1.27",
+ "volume24h": "783.685648436920179",
+ "communityRecognized": true,
+ "key": "evm--59144:0x1789e0043623282d5dcc7f213d703c6d8bafbb04",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Linea",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/linea.png"
+ }
+ ],
+ "trending|evm--59144|24h|all": [
+ {
+ "isNative": false,
+ "networkId": "evm--59144",
+ "address": "0x3aab2285ddcddad8edf438c1bab47e1a9d05a9b4",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/c802a6fcafec3dfa9c65b50627684bdb9290e69792e3a18afb41ea0b6920ec08",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/c802a6fcafec3dfa9c65b50627684bdb9290e69792e3a18afb41ea0b6920ec08"
+ ],
+ "name": "Wrapped BTC",
+ "symbol": "WBTC",
+ "marketCap": "2762598.270993107137875899",
+ "price": "79098.82106999039992577646",
+ "priceChange24hPercent": "-0.5",
+ "volume24h": "4662.3041698607580155",
+ "communityRecognized": false,
+ "key": "evm--59144:0x3aab2285ddcddad8edf438c1bab47e1a9d05a9b4",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Linea",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/linea.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--59144",
+ "address": "0xf5c6825015280cdfd0b56903f9f8b5a2233476f5",
+ "logoUrl": "https://uni-test.onekey-asset.com/server-service-onchain/evm--59144/tokens/0xf5c6825015280cdfd0b56903f9f8b5a2233476f5.png",
+ "logoUrls": [
+ "https://uni-test.onekey-asset.com/server-service-onchain/evm--59144/tokens/0xf5c6825015280cdfd0b56903f9f8b5a2233476f5.png"
+ ],
+ "name": "Binance Coin",
+ "symbol": "BNB",
+ "marketCap": "34099.596666940775739603",
+ "price": "726.7860125779168854699",
+ "priceChange24hPercent": "-4.66",
+ "volume24h": "86096.2911254720330837",
+ "communityRecognized": false,
+ "key": "evm--59144:0xf5c6825015280cdfd0b56903f9f8b5a2233476f5",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Linea",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/linea.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--59144",
+ "address": "0x2416092f143378750bb29b79ed961ab195cceea5",
+ "logoUrl": "https://uni-test.onekey-asset.com/server-service-onchain/evm--59144/tokens/0x2416092f143378750bb29b79ed961ab195cceea5.png",
+ "logoUrls": [
+ "https://uni-test.onekey-asset.com/server-service-onchain/evm--59144/tokens/0x2416092f143378750bb29b79ed961ab195cceea5.png"
+ ],
+ "name": "Renzo Restaked ETH",
+ "symbol": "ezETH",
+ "marketCap": "18564824.533014698131500249",
+ "price": "2709.73839055047425502607",
+ "priceChange24hPercent": "0.12",
+ "volume24h": "2255.4004732384650633",
+ "communityRecognized": false,
+ "key": "evm--59144:0x2416092f143378750bb29b79ed961ab195cceea5",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Linea",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/linea.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--59144",
+ "address": "0x1bf74c010e6320bab11e2e5a532b5ac15e0b8aa6",
+ "logoUrl": "https://uni-test.onekey-asset.com/server-service-onchain/evm--59144/tokens/0x1bf74c010e6320bab11e2e5a532b5ac15e0b8aa6.png",
+ "logoUrls": [
+ "https://uni-test.onekey-asset.com/server-service-onchain/evm--59144/tokens/0x1bf74c010e6320bab11e2e5a532b5ac15e0b8aa6.png"
+ ],
+ "name": "Wrapped eETH",
+ "symbol": "weETH",
+ "marketCap": "187025130.987454160750694571",
+ "price": "2749.7722945282476439587",
+ "priceChange24hPercent": "-0.85",
+ "volume24h": "8088.752057287611412561",
+ "communityRecognized": false,
+ "key": "evm--59144:0x1bf74c010e6320bab11e2e5a532b5ac15e0b8aa6",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Linea",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/linea.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--59144",
+ "address": "0xaca92e438df0b2401ff60da7e4337b687a2435da",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/e684e97d2f97e70cfa597f03f01edb830ca052e1f95b01150f2b04d6e45284f9",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/e684e97d2f97e70cfa597f03f01edb830ca052e1f95b01150f2b04d6e45284f9"
+ ],
+ "name": "MetaMask USD",
+ "symbol": "mUSD",
+ "marketCap": "6690048.777984052516753466",
+ "price": "1.00103133382588450445",
+ "priceChange24hPercent": "0.13",
+ "volume24h": "119049.76791047813906629",
+ "communityRecognized": false,
+ "key": "evm--59144:0xaca92e438df0b2401ff60da7e4337b687a2435da",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Linea",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/linea.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--59144",
+ "address": "0xe4eeb461ad1e4ef8b8ef71a33694ccd84af051c4",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/cd7a5ccaa6f188efdf48ccabe9a1702ac4e9ad31c8b7a88641c5e4028f74fe03",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/cd7a5ccaa6f188efdf48ccabe9a1702ac4e9ad31c8b7a88641c5e4028f74fe03"
+ ],
+ "name": "Etherex Liquid Staking Token",
+ "symbol": "REX33",
+ "marketCap": "1228802.684319646725852364",
+ "price": "0.01134992240641364756",
+ "priceChange24hPercent": "-4.26",
+ "volume24h": "6133.170765",
+ "communityRecognized": false,
+ "key": "evm--59144:0xe4eeb461ad1e4ef8b8ef71a33694ccd84af051c4",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Linea",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/linea.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--59144",
+ "address": "0x1789e0043623282d5dcc7f213d703c6d8bafbb04",
+ "logoUrl": "https://uni.onekey-asset.com/utility/okx/token/1c2ae3cfc659b57b04439cb5cbdb828bf369b576054ee0db61a27a21d01a60dc",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/utility/okx/token/1c2ae3cfc659b57b04439cb5cbdb828bf369b576054ee0db61a27a21d01a60dc"
+ ],
+ "name": "Linea",
+ "symbol": "LINEA",
+ "marketCap": "60669231.510370424772582059",
+ "price": "0.00269280890908269238",
+ "priceChange24hPercent": "-4.19",
+ "volume24h": "17063.12092459870802234",
+ "communityRecognized": true,
+ "key": "evm--59144:0x1789e0043623282d5dcc7f213d703c6d8bafbb04",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Linea",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/linea.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--59144",
+ "address": "0xeb466342c4d449bc9f53a865d5cb90586f405215",
+ "logoUrl": "https://uni-test.onekey-asset.com/server-service-onchain/evm--59144/tokens/0xeb466342c4d449bc9f53a865d5cb90586f405215.png",
+ "logoUrls": [
+ "https://uni-test.onekey-asset.com/server-service-onchain/evm--59144/tokens/0xeb466342c4d449bc9f53a865d5cb90586f405215.png"
+ ],
+ "name": "Axelar Wrapped USDC",
+ "symbol": "axlUSDC",
+ "marketCap": "67441.045999306686850929",
+ "price": "1.00030927499430282905",
+ "priceChange24hPercent": "0.02",
+ "volume24h": "1083.2174893134692682",
+ "communityRecognized": false,
+ "key": "evm--59144:0xeb466342c4d449bc9f53a865d5cb90586f405215",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Linea",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/linea.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--59144",
+ "address": "0x4af15ec2a0bd43db75dd04e62faa3b8ef36b00d5",
+ "logoUrl": "https://uni-test.onekey-asset.com/server-service-onchain/evm--59144/tokens/0x4af15ec2a0bd43db75dd04e62faa3b8ef36b00d5.png",
+ "logoUrls": [
+ "https://uni-test.onekey-asset.com/server-service-onchain/evm--59144/tokens/0x4af15ec2a0bd43db75dd04e62faa3b8ef36b00d5.png"
+ ],
+ "name": "Dai Stablecoin",
+ "symbol": "DAI",
+ "marketCap": "103839.264178327327318126",
+ "price": "0.99902190514014454062",
+ "priceChange24hPercent": "-0.02",
+ "volume24h": "3818.16097905465862435",
+ "communityRecognized": false,
+ "key": "evm--59144:0x4af15ec2a0bd43db75dd04e62faa3b8ef36b00d5",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "Linea",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/linea.png"
+ }
+ ],
+ "trending|ton--mainnet|5m|all": [
+ {
+ "isNative": false,
+ "networkId": "ton--mainnet",
+ "address": "EQDTBhs52jXA9S7P3xuSvCohgYqbklQdJQLQ98A3Nld7QNMP",
+ "logoUrl": "https://coin-images.coingecko.com/coins/images/102174625/large/h91pak9vhxj88ke7jw8zo9tt7ydf.?1784279201",
+ "logoUrls": [
+ "https://coin-images.coingecko.com/coins/images/102174625/large/h91pak9vhxj88ke7jw8zo9tt7ydf.?1784279201"
+ ],
+ "name": "SIXSEVEN",
+ "symbol": "67",
+ "marketCap": "21449596.055597643039823567",
+ "price": "0.02144959605559764304",
+ "priceChange24hPercent": "-1.37",
+ "volume24h": "1130.40138202009",
+ "communityRecognized": false,
+ "key": "ton--mainnet:EQDTBhs52jXA9S7P3xuSvCohgYqbklQdJQLQ98A3Nld7QNMP",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "TON",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/ton.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "ton--mainnet",
+ "address": "EQC7vuKEYLdC72YhUWt3AUVA-Oi66Q1DxTHXH7r6pXaV50j7",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-onchain/ton--mainnet/tokens/EQC7vuKEYLdC72YhUWt3AUVA-Oi66Q1DxTHXH7r6pXaV50j7.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-onchain/ton--mainnet/tokens/EQC7vuKEYLdC72YhUWt3AUVA-Oi66Q1DxTHXH7r6pXaV50j7.png"
+ ],
+ "name": "Baby Yoda",
+ "symbol": "Yoda",
+ "marketCap": "574994.183524627914972327",
+ "price": "0.00057499418435836948",
+ "priceChange24hPercent": "4.17",
+ "volume24h": "1252.46527119243",
+ "communityRecognized": false,
+ "key": "ton--mainnet:EQC7vuKEYLdC72YhUWt3AUVA-Oi66Q1DxTHXH7r6pXaV50j7",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "TON",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/ton.png"
+ }
+ ],
+ "trending|ton--mainnet|1h|all": [
+ {
+ "isNative": false,
+ "networkId": "ton--mainnet",
+ "address": "EQAIb6KmdfdDR7CN1GBqVJuP25iCnLKCvBlJ07Evuu2dzP5f",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-onchain/ton--mainnet/tokens/EQAIb6KmdfdDR7CN1GBqVJuP25iCnLKCvBlJ07Evuu2dzP5f.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-onchain/ton--mainnet/tokens/EQAIb6KmdfdDR7CN1GBqVJuP25iCnLKCvBlJ07Evuu2dzP5f.png"
+ ],
+ "name": "Ethena USDe",
+ "symbol": "USDe",
+ "marketCap": "160995644.217860694437020699",
+ "price": "0.99870106743476554904",
+ "priceChange24hPercent": "-0.03",
+ "volume24h": "3338.434678716398",
+ "communityRecognized": true,
+ "key": "ton--mainnet:EQAIb6KmdfdDR7CN1GBqVJuP25iCnLKCvBlJ07Evuu2dzP5f",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "TON",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/ton.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "ton--mainnet",
+ "address": "EQDZvDW7Cf33YjMpeVr771PMrYgymGFyibTdcL4y-unuFtmA",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-onchain/ton--mainnet/tokens/EQDZvDW7Cf33YjMpeVr771PMrYgymGFyibTdcL4y-unuFtmA.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-onchain/ton--mainnet/tokens/EQDZvDW7Cf33YjMpeVr771PMrYgymGFyibTdcL4y-unuFtmA.png"
+ ],
+ "name": "BUDDY BEAR",
+ "symbol": "BUDDY",
+ "marketCap": "488389.837955969319188313",
+ "price": "0.04883898379559693192",
+ "priceChange24hPercent": "15.31",
+ "volume24h": "3573.53234572728",
+ "communityRecognized": false,
+ "key": "ton--mainnet:EQDZvDW7Cf33YjMpeVr771PMrYgymGFyibTdcL4y-unuFtmA",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "TON",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/ton.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "ton--mainnet",
+ "address": "EQBKRSNRkeP1-2jcg5T_f__0s5Hj-vrbfNLMQy8dnZs7xd_p",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-onchain/ton--mainnet/tokens/EQBKRSNRkeP1-2jcg5T_f__0s5Hj-vrbfNLMQy8dnZs7xd_p.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-onchain/ton--mainnet/tokens/EQBKRSNRkeP1-2jcg5T_f__0s5Hj-vrbfNLMQy8dnZs7xd_p.png"
+ ],
+ "name": "Hot Cherry",
+ "symbol": "CHERRY",
+ "marketCap": "1297502.417995430064698877",
+ "price": "0.0000129750241799543",
+ "priceChange24hPercent": "4.11",
+ "volume24h": "2257.08009387822",
+ "communityRecognized": false,
+ "key": "ton--mainnet:EQBKRSNRkeP1-2jcg5T_f__0s5Hj-vrbfNLMQy8dnZs7xd_p",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "TON",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/ton.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "ton--mainnet",
+ "address": "EQDTBhs52jXA9S7P3xuSvCohgYqbklQdJQLQ98A3Nld7QNMP",
+ "logoUrl": "https://coin-images.coingecko.com/coins/images/102174625/large/h91pak9vhxj88ke7jw8zo9tt7ydf.?1784279201",
+ "logoUrls": [
+ "https://coin-images.coingecko.com/coins/images/102174625/large/h91pak9vhxj88ke7jw8zo9tt7ydf.?1784279201"
+ ],
+ "name": "SIXSEVEN",
+ "symbol": "67",
+ "marketCap": "21449596.055597643039823567",
+ "price": "0.02144959605559764304",
+ "priceChange24hPercent": "1.29",
+ "volume24h": "4644.29905063164",
+ "communityRecognized": false,
+ "key": "ton--mainnet:EQDTBhs52jXA9S7P3xuSvCohgYqbklQdJQLQ98A3Nld7QNMP",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "TON",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/ton.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "ton--mainnet",
+ "address": "EQBE_gBrU3mPI9hHjlJoR_kYyrhQgyCFD6EUWfa42W8T7EBP",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-onchain/ton--mainnet/tokens/EQBE_gBrU3mPI9hHjlJoR_kYyrhQgyCFD6EUWfa42W8T7EBP.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-onchain/ton--mainnet/tokens/EQBE_gBrU3mPI9hHjlJoR_kYyrhQgyCFD6EUWfa42W8T7EBP.png"
+ ],
+ "name": "TAC token",
+ "symbol": "TAC",
+ "marketCap": "10126610.691135926914662207",
+ "price": "0.00225648066181251985",
+ "priceChange24hPercent": "-0.42",
+ "volume24h": "893.57917397875",
+ "communityRecognized": true,
+ "key": "ton--mainnet:EQBE_gBrU3mPI9hHjlJoR_kYyrhQgyCFD6EUWfa42W8T7EBP",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "TON",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/ton.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "ton--mainnet",
+ "address": "EQB6Ql1JE7Hq0JuropLYschcu-WNt2vMmWF2-8mEMrK68nJn",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-onchain/ton--mainnet/tokens/EQB6Ql1JE7Hq0JuropLYschcu-WNt2vMmWF2-8mEMrK68nJn.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-onchain/ton--mainnet/tokens/EQB6Ql1JE7Hq0JuropLYschcu-WNt2vMmWF2-8mEMrK68nJn.png"
+ ],
+ "name": "Gentleman",
+ "symbol": "MAN",
+ "marketCap": "66360.016001597012450766",
+ "price": "0.00006636013198068195",
+ "priceChange24hPercent": "-21.24",
+ "volume24h": "2072.1321207615",
+ "communityRecognized": false,
+ "key": "ton--mainnet:EQB6Ql1JE7Hq0JuropLYschcu-WNt2vMmWF2-8mEMrK68nJn",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "TON",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/ton.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "ton--mainnet",
+ "address": "EQAtwo6qMNwtr0iTA9eKVZ32cuACFJ0VKd78GrBWOe83-X1P",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-onchain/ton--mainnet/tokens/EQAtwo6qMNwtr0iTA9eKVZ32cuACFJ0VKd78GrBWOe83-X1P.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-onchain/ton--mainnet/tokens/EQAtwo6qMNwtr0iTA9eKVZ32cuACFJ0VKd78GrBWOe83-X1P.png"
+ ],
+ "name": "Groyper",
+ "symbol": "GROYP",
+ "marketCap": "2064559.490478437374688874",
+ "price": "0.04208547572663362007",
+ "priceChange24hPercent": "-1.83",
+ "volume24h": "949.86785045382",
+ "communityRecognized": false,
+ "key": "ton--mainnet:EQAtwo6qMNwtr0iTA9eKVZ32cuACFJ0VKd78GrBWOe83-X1P",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "TON",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/ton.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "ton--mainnet",
+ "address": "EQC7vuKEYLdC72YhUWt3AUVA-Oi66Q1DxTHXH7r6pXaV50j7",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-onchain/ton--mainnet/tokens/EQC7vuKEYLdC72YhUWt3AUVA-Oi66Q1DxTHXH7r6pXaV50j7.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-onchain/ton--mainnet/tokens/EQC7vuKEYLdC72YhUWt3AUVA-Oi66Q1DxTHXH7r6pXaV50j7.png"
+ ],
+ "name": "Baby Yoda",
+ "symbol": "Yoda",
+ "marketCap": "574994.183524627914972327",
+ "price": "0.00057499418435836948",
+ "priceChange24hPercent": "5.41",
+ "volume24h": "1301.11527119243",
+ "communityRecognized": false,
+ "key": "ton--mainnet:EQC7vuKEYLdC72YhUWt3AUVA-Oi66Q1DxTHXH7r6pXaV50j7",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "TON",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/ton.png"
+ }
+ ],
+ "trending|ton--mainnet|4h|all": [
+ {
+ "isNative": false,
+ "networkId": "ton--mainnet",
+ "address": "EQAIb6KmdfdDR7CN1GBqVJuP25iCnLKCvBlJ07Evuu2dzP5f",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-onchain/ton--mainnet/tokens/EQAIb6KmdfdDR7CN1GBqVJuP25iCnLKCvBlJ07Evuu2dzP5f.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-onchain/ton--mainnet/tokens/EQAIb6KmdfdDR7CN1GBqVJuP25iCnLKCvBlJ07Evuu2dzP5f.png"
+ ],
+ "name": "Ethena USDe",
+ "symbol": "USDe",
+ "marketCap": "160995644.217860694437020699",
+ "price": "0.99870106743476554904",
+ "priceChange24hPercent": "-0.03",
+ "volume24h": "3338.434678716398",
+ "communityRecognized": true,
+ "key": "ton--mainnet:EQAIb6KmdfdDR7CN1GBqVJuP25iCnLKCvBlJ07Evuu2dzP5f",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "TON",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/ton.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "ton--mainnet",
+ "address": "EQDZvDW7Cf33YjMpeVr771PMrYgymGFyibTdcL4y-unuFtmA",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-onchain/ton--mainnet/tokens/EQDZvDW7Cf33YjMpeVr771PMrYgymGFyibTdcL4y-unuFtmA.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-onchain/ton--mainnet/tokens/EQDZvDW7Cf33YjMpeVr771PMrYgymGFyibTdcL4y-unuFtmA.png"
+ ],
+ "name": "BUDDY BEAR",
+ "symbol": "BUDDY",
+ "marketCap": "488389.837955969319188313",
+ "price": "0.04883898379559693192",
+ "priceChange24hPercent": "15.31",
+ "volume24h": "3573.53234572728",
+ "communityRecognized": false,
+ "key": "ton--mainnet:EQDZvDW7Cf33YjMpeVr771PMrYgymGFyibTdcL4y-unuFtmA",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "TON",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/ton.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "ton--mainnet",
+ "address": "EQBKRSNRkeP1-2jcg5T_f__0s5Hj-vrbfNLMQy8dnZs7xd_p",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-onchain/ton--mainnet/tokens/EQBKRSNRkeP1-2jcg5T_f__0s5Hj-vrbfNLMQy8dnZs7xd_p.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-onchain/ton--mainnet/tokens/EQBKRSNRkeP1-2jcg5T_f__0s5Hj-vrbfNLMQy8dnZs7xd_p.png"
+ ],
+ "name": "Hot Cherry",
+ "symbol": "CHERRY",
+ "marketCap": "1297502.417995430064698877",
+ "price": "0.0000129750241799543",
+ "priceChange24hPercent": "4.85",
+ "volume24h": "4691.87078944341",
+ "communityRecognized": false,
+ "key": "ton--mainnet:EQBKRSNRkeP1-2jcg5T_f__0s5Hj-vrbfNLMQy8dnZs7xd_p",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "TON",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/ton.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "ton--mainnet",
+ "address": "EQB1fyBAA9qQDP6LEGaF3cbU-Xbr-p6ESBZGnqlHkHIHAJZv",
+ "logoUrl": "https://xstocks-metadata.backed.fi/logos/tokens/SPYx.png",
+ "logoUrls": [
+ "https://xstocks-metadata.backed.fi/logos/tokens/SPYx.png"
+ ],
+ "name": "SP500 xStock",
+ "symbol": "SPYx",
+ "marketCap": "29074799.519039552098816811",
+ "price": "769.87380471472281848315",
+ "priceChange24hPercent": "0.22",
+ "volume24h": "604.78848225628",
+ "communityRecognized": false,
+ "key": "ton--mainnet:EQB1fyBAA9qQDP6LEGaF3cbU-Xbr-p6ESBZGnqlHkHIHAJZv",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "TON",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/ton.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "ton--mainnet",
+ "address": "EQA2kCVNwVsil2EM2mB0SkXytxCqQjS4mttjDpnXmwG9T6bO",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-onchain/ton--mainnet/tokens/EQA2kCVNwVsil2EM2mB0SkXytxCqQjS4mttjDpnXmwG9T6bO.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-onchain/ton--mainnet/tokens/EQA2kCVNwVsil2EM2mB0SkXytxCqQjS4mttjDpnXmwG9T6bO.png"
+ ],
+ "name": "STON",
+ "symbol": "STON",
+ "marketCap": "16823673.965443634411206895",
+ "price": "0.4492409869545753464",
+ "priceChange24hPercent": "-0.55",
+ "volume24h": "726.65970216662",
+ "communityRecognized": false,
+ "key": "ton--mainnet:EQA2kCVNwVsil2EM2mB0SkXytxCqQjS4mttjDpnXmwG9T6bO",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "TON",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/ton.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "ton--mainnet",
+ "address": "EQAvlWFDxGF2lXm67y4yzC17wYKD9A0guwPkMs1gOsM__NOT",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-onchain/ton--mainnet/tokens/EQAvlWFDxGF2lXm67y4yzC17wYKD9A0guwPkMs1gOsM__NOT.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-onchain/ton--mainnet/tokens/EQAvlWFDxGF2lXm67y4yzC17wYKD9A0guwPkMs1gOsM__NOT.png"
+ ],
+ "name": "Notcoin",
+ "symbol": "NOT",
+ "marketCap": "46196935.669849185546110065",
+ "price": "0.00046462025748837209",
+ "priceChange24hPercent": "-1.18",
+ "volume24h": "1622.06245655502",
+ "communityRecognized": true,
+ "key": "ton--mainnet:EQAvlWFDxGF2lXm67y4yzC17wYKD9A0guwPkMs1gOsM__NOT",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "TON",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/ton.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "ton--mainnet",
+ "address": "EQACLXDwit01stiqK9FvYiJo15luVzfD5zU8uwDSq6JXxbP8",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-onchain/ton--mainnet/tokens/EQACLXDwit01stiqK9FvYiJo15luVzfD5zU8uwDSq6JXxbP8.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-onchain/ton--mainnet/tokens/EQACLXDwit01stiqK9FvYiJo15luVzfD5zU8uwDSq6JXxbP8.png"
+ ],
+ "name": "Spintria",
+ "symbol": "SP",
+ "marketCap": "201062.453928576261125612",
+ "price": "0.00389925949743134637",
+ "priceChange24hPercent": "0.09",
+ "volume24h": "1707.60984123679",
+ "communityRecognized": false,
+ "key": "ton--mainnet:EQACLXDwit01stiqK9FvYiJo15luVzfD5zU8uwDSq6JXxbP8",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "TON",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/ton.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "ton--mainnet",
+ "address": "EQD-cvR0Nz6XAyRBvbhz-abTrRC6sI5tvHvvpeQraV9UAAD7",
+ "logoUrl": "https://coin-images.coingecko.com/coins/images/50236/large/cati.png?1726638258",
+ "logoUrls": [
+ "https://coin-images.coingecko.com/coins/images/50236/large/cati.png?1726638258"
+ ],
+ "name": "Catizen",
+ "symbol": "CATI",
+ "marketCap": "27762864.764570841591731444",
+ "price": "0.06118560739853156334",
+ "priceChange24hPercent": "1.65",
+ "volume24h": "621.66156636658",
+ "communityRecognized": true,
+ "key": "ton--mainnet:EQD-cvR0Nz6XAyRBvbhz-abTrRC6sI5tvHvvpeQraV9UAAD7",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "TON",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/ton.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "ton--mainnet",
+ "address": "EQC4Dx5Mqy9qhqHpH0cl_U8hejBnchNXZn_L0_Oj2zLY5B3P",
+ "logoUrl": "https://raw.githubusercontent.com/TheCoinOnTon/TheCoin/main/coin%20logo%20png.png",
+ "logoUrls": [
+ "https://raw.githubusercontent.com/TheCoinOnTon/TheCoin/main/coin%20logo%20png.png"
+ ],
+ "name": "The Coin",
+ "symbol": "COIN",
+ "marketCap": "25286.369626610303164682",
+ "price": "0.0000252863696266103",
+ "priceChange24hPercent": "-15.48",
+ "volume24h": "1489.30569263087",
+ "communityRecognized": false,
+ "key": "ton--mainnet:EQC4Dx5Mqy9qhqHpH0cl_U8hejBnchNXZn_L0_Oj2zLY5B3P",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "TON",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/ton.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "ton--mainnet",
+ "address": "EQDTBhs52jXA9S7P3xuSvCohgYqbklQdJQLQ98A3Nld7QNMP",
+ "logoUrl": "https://coin-images.coingecko.com/coins/images/102174625/large/h91pak9vhxj88ke7jw8zo9tt7ydf.?1784279201",
+ "logoUrls": [
+ "https://coin-images.coingecko.com/coins/images/102174625/large/h91pak9vhxj88ke7jw8zo9tt7ydf.?1784279201"
+ ],
+ "name": "SIXSEVEN",
+ "symbol": "67",
+ "marketCap": "21449596.055597643039823567",
+ "price": "0.02144959605559764304",
+ "priceChange24hPercent": "-0.55",
+ "volume24h": "17401.21922855192",
+ "communityRecognized": false,
+ "key": "ton--mainnet:EQDTBhs52jXA9S7P3xuSvCohgYqbklQdJQLQ98A3Nld7QNMP",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "TON",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/ton.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "ton--mainnet",
+ "address": "EQBZ_cafPyDr5KUTs0aNxh0ZTDhkpEZONmLJA2SNGlLm4Cko",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-onchain/ton--mainnet/tokens/EQBZ_cafPyDr5KUTs0aNxh0ZTDhkpEZONmLJA2SNGlLm4Cko.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-onchain/ton--mainnet/tokens/EQBZ_cafPyDr5KUTs0aNxh0ZTDhkpEZONmLJA2SNGlLm4Cko.png"
+ ],
+ "name": "Resistance Dog",
+ "symbol": "REDO",
+ "marketCap": "5270649.506781309661657659",
+ "price": "0.05270650025683336607",
+ "priceChange24hPercent": "2.31",
+ "volume24h": "4890.45118663229",
+ "communityRecognized": true,
+ "key": "ton--mainnet:EQBZ_cafPyDr5KUTs0aNxh0ZTDhkpEZONmLJA2SNGlLm4Cko",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "TON",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/ton.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "ton--mainnet",
+ "address": "EQBE_gBrU3mPI9hHjlJoR_kYyrhQgyCFD6EUWfa42W8T7EBP",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-onchain/ton--mainnet/tokens/EQBE_gBrU3mPI9hHjlJoR_kYyrhQgyCFD6EUWfa42W8T7EBP.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-onchain/ton--mainnet/tokens/EQBE_gBrU3mPI9hHjlJoR_kYyrhQgyCFD6EUWfa42W8T7EBP.png"
+ ],
+ "name": "TAC token",
+ "symbol": "TAC",
+ "marketCap": "10126610.691135926914662207",
+ "price": "0.00225648066181251985",
+ "priceChange24hPercent": "-0.49",
+ "volume24h": "1997.96997022494",
+ "communityRecognized": true,
+ "key": "ton--mainnet:EQBE_gBrU3mPI9hHjlJoR_kYyrhQgyCFD6EUWfa42W8T7EBP",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "TON",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/ton.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "ton--mainnet",
+ "address": "EQB6Ql1JE7Hq0JuropLYschcu-WNt2vMmWF2-8mEMrK68nJn",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-onchain/ton--mainnet/tokens/EQB6Ql1JE7Hq0JuropLYschcu-WNt2vMmWF2-8mEMrK68nJn.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-onchain/ton--mainnet/tokens/EQB6Ql1JE7Hq0JuropLYschcu-WNt2vMmWF2-8mEMrK68nJn.png"
+ ],
+ "name": "Gentleman",
+ "symbol": "MAN",
+ "marketCap": "66360.016001597012450766",
+ "price": "0.00006636013198068195",
+ "priceChange24hPercent": "-21.24",
+ "volume24h": "2072.1321207615",
+ "communityRecognized": false,
+ "key": "ton--mainnet:EQB6Ql1JE7Hq0JuropLYschcu-WNt2vMmWF2-8mEMrK68nJn",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "TON",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/ton.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "ton--mainnet",
+ "address": "EQCvxJy4eG8hyHBFsZ7eePxrRsUQSFE_jpptRAYBmcG_DOGS",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-onchain/ton--mainnet/tokens/EQCvxJy4eG8hyHBFsZ7eePxrRsUQSFE_jpptRAYBmcG_DOGS.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-onchain/ton--mainnet/tokens/EQCvxJy4eG8hyHBFsZ7eePxrRsUQSFE_jpptRAYBmcG_DOGS.png"
+ ],
+ "name": "Dogs",
+ "symbol": "DOGS",
+ "marketCap": "24290532.681262277521994229",
+ "price": "0.0000470063525520315",
+ "priceChange24hPercent": "-0.01",
+ "volume24h": "1174.98477335688",
+ "communityRecognized": true,
+ "key": "ton--mainnet:EQCvxJy4eG8hyHBFsZ7eePxrRsUQSFE_jpptRAYBmcG_DOGS",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "TON",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/ton.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "ton--mainnet",
+ "address": "EQAtwo6qMNwtr0iTA9eKVZ32cuACFJ0VKd78GrBWOe83-X1P",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-onchain/ton--mainnet/tokens/EQAtwo6qMNwtr0iTA9eKVZ32cuACFJ0VKd78GrBWOe83-X1P.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-onchain/ton--mainnet/tokens/EQAtwo6qMNwtr0iTA9eKVZ32cuACFJ0VKd78GrBWOe83-X1P.png"
+ ],
+ "name": "Groyper",
+ "symbol": "GROYP",
+ "marketCap": "2064559.490478437374688874",
+ "price": "0.04208547572663362007",
+ "priceChange24hPercent": "-2.01",
+ "volume24h": "1027.0130389684",
+ "communityRecognized": false,
+ "key": "ton--mainnet:EQAtwo6qMNwtr0iTA9eKVZ32cuACFJ0VKd78GrBWOe83-X1P",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "TON",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/ton.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "ton--mainnet",
+ "address": "EQC7vuKEYLdC72YhUWt3AUVA-Oi66Q1DxTHXH7r6pXaV50j7",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-onchain/ton--mainnet/tokens/EQC7vuKEYLdC72YhUWt3AUVA-Oi66Q1DxTHXH7r6pXaV50j7.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-onchain/ton--mainnet/tokens/EQC7vuKEYLdC72YhUWt3AUVA-Oi66Q1DxTHXH7r6pXaV50j7.png"
+ ],
+ "name": "Baby Yoda",
+ "symbol": "Yoda",
+ "marketCap": "574994.183524627914972327",
+ "price": "0.00057499418435836948",
+ "priceChange24hPercent": "1.4",
+ "volume24h": "2034.56914905343",
+ "communityRecognized": false,
+ "key": "ton--mainnet:EQC7vuKEYLdC72YhUWt3AUVA-Oi66Q1DxTHXH7r6pXaV50j7",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "TON",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/ton.png"
+ }
+ ],
+ "trending|ton--mainnet|24h|all": [
+ {
+ "isNative": false,
+ "networkId": "ton--mainnet",
+ "address": "EQAIb6KmdfdDR7CN1GBqVJuP25iCnLKCvBlJ07Evuu2dzP5f",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-onchain/ton--mainnet/tokens/EQAIb6KmdfdDR7CN1GBqVJuP25iCnLKCvBlJ07Evuu2dzP5f.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-onchain/ton--mainnet/tokens/EQAIb6KmdfdDR7CN1GBqVJuP25iCnLKCvBlJ07Evuu2dzP5f.png"
+ ],
+ "name": "Ethena USDe",
+ "symbol": "USDe",
+ "marketCap": "160995644.217860694437020699",
+ "price": "0.99870106743476554904",
+ "priceChange24hPercent": "-0.04",
+ "volume24h": "11413.827145746148",
+ "communityRecognized": true,
+ "key": "ton--mainnet:EQAIb6KmdfdDR7CN1GBqVJuP25iCnLKCvBlJ07Evuu2dzP5f",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "TON",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/ton.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "ton--mainnet",
+ "address": "EQCpkuD6gpAdXWJDOLKyxx6ngDDcXz2AS85jWyDWa3qTVXYQ",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-onchain/ton--mainnet/tokens/EQCpkuD6gpAdXWJDOLKyxx6ngDDcXz2AS85jWyDWa3qTVXYQ.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-onchain/ton--mainnet/tokens/EQCpkuD6gpAdXWJDOLKyxx6ngDDcXz2AS85jWyDWa3qTVXYQ.png"
+ ],
+ "name": "YOGAFERMA",
+ "symbol": "AUM",
+ "marketCap": "272751.865212240303938053",
+ "price": "0.00027275213796437827",
+ "priceChange24hPercent": "28.13",
+ "volume24h": "1583.93997452996",
+ "communityRecognized": false,
+ "key": "ton--mainnet:EQCpkuD6gpAdXWJDOLKyxx6ngDDcXz2AS85jWyDWa3qTVXYQ",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "TON",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/ton.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "ton--mainnet",
+ "address": "EQDZvDW7Cf33YjMpeVr771PMrYgymGFyibTdcL4y-unuFtmA",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-onchain/ton--mainnet/tokens/EQDZvDW7Cf33YjMpeVr771PMrYgymGFyibTdcL4y-unuFtmA.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-onchain/ton--mainnet/tokens/EQDZvDW7Cf33YjMpeVr771PMrYgymGFyibTdcL4y-unuFtmA.png"
+ ],
+ "name": "BUDDY BEAR",
+ "symbol": "BUDDY",
+ "marketCap": "488389.837955969319188313",
+ "price": "0.04883898379559693192",
+ "priceChange24hPercent": "-1.9",
+ "volume24h": "6156.04931263086",
+ "communityRecognized": false,
+ "key": "ton--mainnet:EQDZvDW7Cf33YjMpeVr771PMrYgymGFyibTdcL4y-unuFtmA",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "TON",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/ton.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "ton--mainnet",
+ "address": "EQC47093oX5Xhb0xuk2lCr2RhS8rj-vul61u4W2UH5ORmG_O",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-onchain/ton--mainnet/tokens/EQC47093oX5Xhb0xuk2lCr2RhS8rj-vul61u4W2UH5ORmG_O.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-onchain/ton--mainnet/tokens/EQC47093oX5Xhb0xuk2lCr2RhS8rj-vul61u4W2UH5ORmG_O.png"
+ ],
+ "name": "Grm",
+ "symbol": "GRM",
+ "marketCap": "1949306.441425182472192292",
+ "price": "0.00080083738604487406",
+ "priceChange24hPercent": "-16.11",
+ "volume24h": "13043.972656397537",
+ "communityRecognized": true,
+ "key": "ton--mainnet:EQC47093oX5Xhb0xuk2lCr2RhS8rj-vul61u4W2UH5ORmG_O",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "TON",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/ton.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "ton--mainnet",
+ "address": "EQA1R_LuQCLHlMgOo1S4G7Y7W1cd0FrAkbA10Zq7rddKxi9k",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-onchain/ton--mainnet/tokens/EQA1R_LuQCLHlMgOo1S4G7Y7W1cd0FrAkbA10Zq7rddKxi9k.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-onchain/ton--mainnet/tokens/EQA1R_LuQCLHlMgOo1S4G7Y7W1cd0FrAkbA10Zq7rddKxi9k.png"
+ ],
+ "name": "XAUt0",
+ "symbol": "XAUt0",
+ "marketCap": "21041195.218392782733143306",
+ "price": "4404.94940136622763908001",
+ "priceChange24hPercent": "-0.97",
+ "volume24h": "2605.97114227823",
+ "communityRecognized": true,
+ "key": "ton--mainnet:EQA1R_LuQCLHlMgOo1S4G7Y7W1cd0FrAkbA10Zq7rddKxi9k",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "TON",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/ton.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "ton--mainnet",
+ "address": "EQBKRSNRkeP1-2jcg5T_f__0s5Hj-vrbfNLMQy8dnZs7xd_p",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-onchain/ton--mainnet/tokens/EQBKRSNRkeP1-2jcg5T_f__0s5Hj-vrbfNLMQy8dnZs7xd_p.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-onchain/ton--mainnet/tokens/EQBKRSNRkeP1-2jcg5T_f__0s5Hj-vrbfNLMQy8dnZs7xd_p.png"
+ ],
+ "name": "Hot Cherry",
+ "symbol": "CHERRY",
+ "marketCap": "1297502.417995430064698877",
+ "price": "0.0000129750241799543",
+ "priceChange24hPercent": "0.33",
+ "volume24h": "7312.39894917743",
+ "communityRecognized": false,
+ "key": "ton--mainnet:EQBKRSNRkeP1-2jcg5T_f__0s5Hj-vrbfNLMQy8dnZs7xd_p",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "TON",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/ton.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "ton--mainnet",
+ "address": "EQB4zZusHsbU2vVTPqjhlokIOoiZhEdCMT703CWEzhTOo__X",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-onchain/ton--mainnet/tokens/EQB4zZusHsbU2vVTPqjhlokIOoiZhEdCMT703CWEzhTOo__X.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-onchain/ton--mainnet/tokens/EQB4zZusHsbU2vVTPqjhlokIOoiZhEdCMT703CWEzhTOo__X.png"
+ ],
+ "name": "X Empire",
+ "symbol": "X",
+ "marketCap": "4842751.060204379288249644",
+ "price": "0.0000070184798234",
+ "priceChange24hPercent": "4.74",
+ "volume24h": "2364.62901217262",
+ "communityRecognized": true,
+ "key": "ton--mainnet:EQB4zZusHsbU2vVTPqjhlokIOoiZhEdCMT703CWEzhTOo__X",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "TON",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/ton.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "ton--mainnet",
+ "address": "EQCFVNlRb-NHHDQfv3Q9xvDXBLJlay855_xREsq5ZDX6KN-w",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-onchain/ton--mainnet/tokens/EQCFVNlRb-NHHDQfv3Q9xvDXBLJlay855_xREsq5ZDX6KN-w.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-onchain/ton--mainnet/tokens/EQCFVNlRb-NHHDQfv3Q9xvDXBLJlay855_xREsq5ZDX6KN-w.png"
+ ],
+ "name": "My Wallet Coin",
+ "symbol": "MY",
+ "marketCap": "2019082.542229796784835871",
+ "price": "0.04038167991940547767",
+ "priceChange24hPercent": "-0.91",
+ "volume24h": "630.74131098727",
+ "communityRecognized": false,
+ "key": "ton--mainnet:EQCFVNlRb-NHHDQfv3Q9xvDXBLJlay855_xREsq5ZDX6KN-w",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "TON",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/ton.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "ton--mainnet",
+ "address": "EQC7js8NLX3v57ZuRmuusNtMSBdki4va_qyL7sAwdmosf_xK",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-onchain/ton--mainnet/tokens/EQC7js8NLX3v57ZuRmuusNtMSBdki4va_qyL7sAwdmosf_xK.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-onchain/ton--mainnet/tokens/EQC7js8NLX3v57ZuRmuusNtMSBdki4va_qyL7sAwdmosf_xK.png"
+ ],
+ "name": "Amocucinare",
+ "symbol": "AMORE",
+ "marketCap": "387979.091570069734679715",
+ "price": "0.00040753558935934549",
+ "priceChange24hPercent": "-3.4",
+ "volume24h": "928.79200959409",
+ "communityRecognized": true,
+ "key": "ton--mainnet:EQC7js8NLX3v57ZuRmuusNtMSBdki4va_qyL7sAwdmosf_xK",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "TON",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/ton.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "ton--mainnet",
+ "address": "EQA6G0uVERDZTkLNa0drWBna1F5TSbogy7UXEWU5ERHz4uJL",
+ "logoUrl": "https://coin-images.coingecko.com/coins/images/102174344/large/photo_2026-06-21_14-13-09.jpg?1783349960",
+ "logoUrls": [
+ "https://coin-images.coingecko.com/coins/images/102174344/large/photo_2026-06-21_14-13-09.jpg?1783349960"
+ ],
+ "name": "Pepe Grinch",
+ "symbol": "GRINCH",
+ "marketCap": "87271.337326526318096636",
+ "price": "0.00008727133732652632",
+ "priceChange24hPercent": "-12.95",
+ "volume24h": "1271.99482534275",
+ "communityRecognized": false,
+ "key": "ton--mainnet:EQA6G0uVERDZTkLNa0drWBna1F5TSbogy7UXEWU5ERHz4uJL",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "TON",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/ton.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "ton--mainnet",
+ "address": "EQCwe0g3cEFhsz4VK5nrtOZBkFeSISxhCVUqvON7Im__SOON",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-onchain/ton--mainnet/tokens/EQCwe0g3cEFhsz4VK5nrtOZBkFeSISxhCVUqvON7Im__SOON.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-onchain/ton--mainnet/tokens/EQCwe0g3cEFhsz4VK5nrtOZBkFeSISxhCVUqvON7Im__SOON.png"
+ ],
+ "name": "TON Station",
+ "symbol": "MRSOON",
+ "marketCap": "172981.198217050194793735",
+ "price": "0.00000262648732075077",
+ "priceChange24hPercent": "14.03",
+ "volume24h": "808.84326690577",
+ "communityRecognized": false,
+ "key": "ton--mainnet:EQCwe0g3cEFhsz4VK5nrtOZBkFeSISxhCVUqvON7Im__SOON",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "TON",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/ton.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "ton--mainnet",
+ "address": "EQAhZDXKDDqF2bFuWAGly5FxfgVthjOKfvbyTfzTvK8yhIUb",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-onchain/ton--mainnet/tokens/EQAhZDXKDDqF2bFuWAGly5FxfgVthjOKfvbyTfzTvK8yhIUb.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-onchain/ton--mainnet/tokens/EQAhZDXKDDqF2bFuWAGly5FxfgVthjOKfvbyTfzTvK8yhIUb.png"
+ ],
+ "name": "AVTOP",
+ "symbol": "AVTOP",
+ "marketCap": "765770.306589150260074433",
+ "price": "0.00076577030658915026",
+ "priceChange24hPercent": "-0.81",
+ "volume24h": "667.03720598584",
+ "communityRecognized": false,
+ "key": "ton--mainnet:EQAhZDXKDDqF2bFuWAGly5FxfgVthjOKfvbyTfzTvK8yhIUb",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "TON",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/ton.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "ton--mainnet",
+ "address": "EQAmZFuDbV0Ze8yR3lh3v0n8FISN-s3Yi7M8URCT--qc_t8x",
+ "logoUrl": "ipfs://QmZZXEx9Coi9f81CRy4d4MNtmoSfJNJjAAQMQmfp3FK2ct",
+ "logoUrls": [
+ "ipfs://QmZZXEx9Coi9f81CRy4d4MNtmoSfJNJjAAQMQmfp3FK2ct"
+ ],
+ "name": "PeepoPepe",
+ "symbol": "PEEPO",
+ "marketCap": "80030.7218015",
+ "price": "0.0000800307218015",
+ "priceChange24hPercent": "-0.73",
+ "volume24h": "810.5755023627",
+ "communityRecognized": false,
+ "key": "ton--mainnet:EQAmZFuDbV0Ze8yR3lh3v0n8FISN-s3Yi7M8URCT--qc_t8x",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "TON",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/ton.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "ton--mainnet",
+ "address": "EQAX9J60va-0wIDMdqGLRMf7imJvG0Ytyi3Yxnq9y-nbNCq2",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-onchain/ton--mainnet/tokens/EQAX9J60va-0wIDMdqGLRMf7imJvG0Ytyi3Yxnq9y-nbNCq2.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-onchain/ton--mainnet/tokens/EQAX9J60va-0wIDMdqGLRMf7imJvG0Ytyi3Yxnq9y-nbNCq2.png"
+ ],
+ "name": "Paper Plane",
+ "symbol": "PLANE",
+ "marketCap": "384628.411324546412546182",
+ "price": "0.00384628411324546413",
+ "priceChange24hPercent": "-13.97",
+ "volume24h": "5444.36601145269",
+ "communityRecognized": false,
+ "key": "ton--mainnet:EQAX9J60va-0wIDMdqGLRMf7imJvG0Ytyi3Yxnq9y-nbNCq2",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "TON",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/ton.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "ton--mainnet",
+ "address": "EQAKBA1_-wWP31MjbFp-CiU7RZYsUetkVoHTHTuYgR8KhuPE",
+ "logoUrl": "https://i.ibb.co/7tB3xnbj/photo-2025-08-01-23-11-37.jpg",
+ "logoUrls": [
+ "https://i.ibb.co/7tB3xnbj/photo-2025-08-01-23-11-37.jpg"
+ ],
+ "name": "GRAMCAT",
+ "symbol": "GRAMCAT",
+ "marketCap": "41159.54660196302663237",
+ "price": "0.00041159546601963027",
+ "priceChange24hPercent": "-21.72",
+ "volume24h": "5059.21028373529",
+ "communityRecognized": false,
+ "key": "ton--mainnet:EQAKBA1_-wWP31MjbFp-CiU7RZYsUetkVoHTHTuYgR8KhuPE",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "TON",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/ton.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "ton--mainnet",
+ "address": "EQB1fyBAA9qQDP6LEGaF3cbU-Xbr-p6ESBZGnqlHkHIHAJZv",
+ "logoUrl": "https://xstocks-metadata.backed.fi/logos/tokens/SPYx.png",
+ "logoUrls": [
+ "https://xstocks-metadata.backed.fi/logos/tokens/SPYx.png"
+ ],
+ "name": "SP500 xStock",
+ "symbol": "SPYx",
+ "marketCap": "29074799.519039552098816811",
+ "price": "769.87380471472281848315",
+ "priceChange24hPercent": "0.29",
+ "volume24h": "2167.96749913076",
+ "communityRecognized": false,
+ "key": "ton--mainnet:EQB1fyBAA9qQDP6LEGaF3cbU-Xbr-p6ESBZGnqlHkHIHAJZv",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "TON",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/ton.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "ton--mainnet",
+ "address": "EQBsosmcZrD6FHijA7qWGLw5wo_aH8UN435hi935jJ_STORM",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-onchain/ton--mainnet/tokens/EQBsosmcZrD6FHijA7qWGLw5wo_aH8UN435hi935jJ_STORM.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-onchain/ton--mainnet/tokens/EQBsosmcZrD6FHijA7qWGLw5wo_aH8UN435hi935jJ_STORM.png"
+ ],
+ "name": "STORM",
+ "symbol": "STORM",
+ "marketCap": "925812.304320762173310263",
+ "price": "0.00358523635833183614",
+ "priceChange24hPercent": "-1.81",
+ "volume24h": "3784.76866080957",
+ "communityRecognized": true,
+ "key": "ton--mainnet:EQBsosmcZrD6FHijA7qWGLw5wo_aH8UN435hi935jJ_STORM",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "TON",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/ton.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "ton--mainnet",
+ "address": "EQA2kCVNwVsil2EM2mB0SkXytxCqQjS4mttjDpnXmwG9T6bO",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-onchain/ton--mainnet/tokens/EQA2kCVNwVsil2EM2mB0SkXytxCqQjS4mttjDpnXmwG9T6bO.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-onchain/ton--mainnet/tokens/EQA2kCVNwVsil2EM2mB0SkXytxCqQjS4mttjDpnXmwG9T6bO.png"
+ ],
+ "name": "STON",
+ "symbol": "STON",
+ "marketCap": "16823673.965443634411206895",
+ "price": "0.4492409869545753464",
+ "priceChange24hPercent": "0.68",
+ "volume24h": "15364.98002953259",
+ "communityRecognized": false,
+ "key": "ton--mainnet:EQA2kCVNwVsil2EM2mB0SkXytxCqQjS4mttjDpnXmwG9T6bO",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "TON",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/ton.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "ton--mainnet",
+ "address": "EQAvlWFDxGF2lXm67y4yzC17wYKD9A0guwPkMs1gOsM__NOT",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-onchain/ton--mainnet/tokens/EQAvlWFDxGF2lXm67y4yzC17wYKD9A0guwPkMs1gOsM__NOT.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-onchain/ton--mainnet/tokens/EQAvlWFDxGF2lXm67y4yzC17wYKD9A0guwPkMs1gOsM__NOT.png"
+ ],
+ "name": "Notcoin",
+ "symbol": "NOT",
+ "marketCap": "46196935.669849185546110065",
+ "price": "0.00046462025748837209",
+ "priceChange24hPercent": "2",
+ "volume24h": "12060.39221768793",
+ "communityRecognized": true,
+ "key": "ton--mainnet:EQAvlWFDxGF2lXm67y4yzC17wYKD9A0guwPkMs1gOsM__NOT",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "TON",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/ton.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "ton--mainnet",
+ "address": "EQATcUc69sGSCCMSadsVUKdGwM1BMKS-HKCWGPk60xZGgwsK",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-onchain/ton--mainnet/tokens/EQATcUc69sGSCCMSadsVUKdGwM1BMKS-HKCWGPk60xZGgwsK.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-onchain/ton--mainnet/tokens/EQATcUc69sGSCCMSadsVUKdGwM1BMKS-HKCWGPk60xZGgwsK.png"
+ ],
+ "name": "TON FISH MEMECOIN",
+ "symbol": "FISH",
+ "marketCap": "435123.324914055811393092",
+ "price": "0.00000000144658558746",
+ "priceChange24hPercent": "-2.84",
+ "volume24h": "957.09879693658",
+ "communityRecognized": false,
+ "key": "ton--mainnet:EQATcUc69sGSCCMSadsVUKdGwM1BMKS-HKCWGPk60xZGgwsK",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "TON",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/ton.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "ton--mainnet",
+ "address": "EQACLXDwit01stiqK9FvYiJo15luVzfD5zU8uwDSq6JXxbP8",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-onchain/ton--mainnet/tokens/EQACLXDwit01stiqK9FvYiJo15luVzfD5zU8uwDSq6JXxbP8.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-onchain/ton--mainnet/tokens/EQACLXDwit01stiqK9FvYiJo15luVzfD5zU8uwDSq6JXxbP8.png"
+ ],
+ "name": "Spintria",
+ "symbol": "SP",
+ "marketCap": "201062.453928576261125612",
+ "price": "0.00389925949743134637",
+ "priceChange24hPercent": "-2.5",
+ "volume24h": "10102.93010752357",
+ "communityRecognized": false,
+ "key": "ton--mainnet:EQACLXDwit01stiqK9FvYiJo15luVzfD5zU8uwDSq6JXxbP8",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "TON",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/ton.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "ton--mainnet",
+ "address": "EQB6sr58v9C3ZIjPgJJkTsZBn1-9cTDYPFjd8OdtVmXVm7m2",
+ "logoUrl": "https://i.ibb.co/s9qGj4Sb/photo-2026-09-07-15-07-57.jpg",
+ "logoUrls": [
+ "https://i.ibb.co/s9qGj4Sb/photo-2026-09-07-15-07-57.jpg"
+ ],
+ "name": "DOBBYX",
+ "symbol": "DBX",
+ "marketCap": "213103.965481175117609036",
+ "price": "0.00021310396548117512",
+ "priceChange24hPercent": "28476.04",
+ "volume24h": "11473.15682968138",
+ "communityRecognized": false,
+ "key": "ton--mainnet:EQB6sr58v9C3ZIjPgJJkTsZBn1-9cTDYPFjd8OdtVmXVm7m2",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "TON",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/ton.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "ton--mainnet",
+ "address": "EQDgxL39gVj4_QXjeaOyXaRPol7n0HulTKHOmU7dr23mm2Ng",
+ "logoUrl": "https://raw.githubusercontent.com/DiamondClB/diamond/refs/heads/main/diamond_final.png",
+ "logoUrls": [
+ "https://raw.githubusercontent.com/DiamondClB/diamond/refs/heads/main/diamond_final.png"
+ ],
+ "name": "Diamond",
+ "symbol": "DIAMOND",
+ "marketCap": "155090.196429061878049361",
+ "price": "0.00738524744900294657",
+ "priceChange24hPercent": "-5.38",
+ "volume24h": "719.83069618447",
+ "communityRecognized": false,
+ "key": "ton--mainnet:EQDgxL39gVj4_QXjeaOyXaRPol7n0HulTKHOmU7dr23mm2Ng",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "TON",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/ton.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "ton--mainnet",
+ "address": "EQDK-ITrmdWfns6Ibse9xdw_K5VARAihGiaMev0kkqEzU9-m",
+ "logoUrl": "https://gattogame.github.io/Gatto/500x500.png",
+ "logoUrls": [
+ "https://gattogame.github.io/Gatto/500x500.png"
+ ],
+ "name": "Gatto Game Token",
+ "symbol": "GTON",
+ "marketCap": "718691.420021052631578947",
+ "price": "0.03992730111228070175",
+ "priceChange24hPercent": "-7.42",
+ "volume24h": "599.01463423083",
+ "communityRecognized": false,
+ "key": "ton--mainnet:EQDK-ITrmdWfns6Ibse9xdw_K5VARAihGiaMev0kkqEzU9-m",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "TON",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/ton.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "ton--mainnet",
+ "address": "EQCAj5oiRRrXokYsg_B-e0KG9xMwh5upr5I8HQzErm0_BLUM",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-onchain/ton--mainnet/tokens/EQCAj5oiRRrXokYsg_B-e0KG9xMwh5upr5I8HQzErm0_BLUM.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-onchain/ton--mainnet/tokens/EQCAj5oiRRrXokYsg_B-e0KG9xMwh5upr5I8HQzErm0_BLUM.png"
+ ],
+ "name": "Blum",
+ "symbol": "BLUM",
+ "marketCap": "228349.591368772819232894",
+ "price": "0.0012890354364986187",
+ "priceChange24hPercent": "-6.22",
+ "volume24h": "1083.09804187914",
+ "communityRecognized": true,
+ "key": "ton--mainnet:EQCAj5oiRRrXokYsg_B-e0KG9xMwh5upr5I8HQzErm0_BLUM",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "TON",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/ton.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "ton--mainnet",
+ "address": "EQD-cvR0Nz6XAyRBvbhz-abTrRC6sI5tvHvvpeQraV9UAAD7",
+ "logoUrl": "https://coin-images.coingecko.com/coins/images/50236/large/cati.png?1726638258",
+ "logoUrls": [
+ "https://coin-images.coingecko.com/coins/images/50236/large/cati.png?1726638258"
+ ],
+ "name": "Catizen",
+ "symbol": "CATI",
+ "marketCap": "27762864.764570841591731444",
+ "price": "0.06118560739853156334",
+ "priceChange24hPercent": "7.38",
+ "volume24h": "18772.14578613455",
+ "communityRecognized": true,
+ "key": "ton--mainnet:EQD-cvR0Nz6XAyRBvbhz-abTrRC6sI5tvHvvpeQraV9UAAD7",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "TON",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/ton.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "ton--mainnet",
+ "address": "EQB420yQsZobGcy0VYDfSKHpG2QQlw-j1f_tPu1J488I__PX",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-onchain/ton--mainnet/tokens/EQB420yQsZobGcy0VYDfSKHpG2QQlw-j1f_tPu1J488I__PX.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-onchain/ton--mainnet/tokens/EQB420yQsZobGcy0VYDfSKHpG2QQlw-j1f_tPu1J488I__PX.png"
+ ],
+ "name": "Not Pixel",
+ "symbol": "PX",
+ "marketCap": "2851805.086357855087266293",
+ "price": "0.0141654019874",
+ "priceChange24hPercent": "2.52",
+ "volume24h": "7179.20967224257",
+ "communityRecognized": true,
+ "key": "ton--mainnet:EQB420yQsZobGcy0VYDfSKHpG2QQlw-j1f_tPu1J488I__PX",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "TON",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/ton.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "ton--mainnet",
+ "address": "EQC4Dx5Mqy9qhqHpH0cl_U8hejBnchNXZn_L0_Oj2zLY5B3P",
+ "logoUrl": "https://raw.githubusercontent.com/TheCoinOnTon/TheCoin/main/coin%20logo%20png.png",
+ "logoUrls": [
+ "https://raw.githubusercontent.com/TheCoinOnTon/TheCoin/main/coin%20logo%20png.png"
+ ],
+ "name": "The Coin",
+ "symbol": "COIN",
+ "marketCap": "25286.369626610303164682",
+ "price": "0.0000252863696266103",
+ "priceChange24hPercent": "-19.77",
+ "volume24h": "1583.23213452253",
+ "communityRecognized": false,
+ "key": "ton--mainnet:EQC4Dx5Mqy9qhqHpH0cl_U8hejBnchNXZn_L0_Oj2zLY5B3P",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "TON",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/ton.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "ton--mainnet",
+ "address": "EQD6fdBx0HP13JfcVocPgQCjKqpKXh3hXSMVGVHe5yRA1fb_",
+ "logoUrl": "https://i.postimg.cc/SxPL3Xc5/logo.jpg",
+ "logoUrls": [
+ "https://i.postimg.cc/SxPL3Xc5/logo.jpg"
+ ],
+ "name": "Fast UP",
+ "symbol": "FAST",
+ "marketCap": "35247.615188685677556058",
+ "price": "0.00035247615188685678",
+ "priceChange24hPercent": "-19.43",
+ "volume24h": "1120.34736505423",
+ "communityRecognized": false,
+ "key": "ton--mainnet:EQD6fdBx0HP13JfcVocPgQCjKqpKXh3hXSMVGVHe5yRA1fb_",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "TON",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/ton.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "ton--mainnet",
+ "address": "EQDTBhs52jXA9S7P3xuSvCohgYqbklQdJQLQ98A3Nld7QNMP",
+ "logoUrl": "https://coin-images.coingecko.com/coins/images/102174625/large/h91pak9vhxj88ke7jw8zo9tt7ydf.?1784279201",
+ "logoUrls": [
+ "https://coin-images.coingecko.com/coins/images/102174625/large/h91pak9vhxj88ke7jw8zo9tt7ydf.?1784279201"
+ ],
+ "name": "SIXSEVEN",
+ "symbol": "67",
+ "marketCap": "21449596.055597643039823567",
+ "price": "0.02144959605559764304",
+ "priceChange24hPercent": "1.56",
+ "volume24h": "134023.38087022816",
+ "communityRecognized": false,
+ "key": "ton--mainnet:EQDTBhs52jXA9S7P3xuSvCohgYqbklQdJQLQ98A3Nld7QNMP",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "TON",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/ton.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "ton--mainnet",
+ "address": "EQAmAb3d7dEP8fMWOf42Jzxu8DyG_fCK9ndfLs1XhjlN5HU9",
+ "logoUrl": "ipfs://QmX8uC4Dk4yEcSjaTz5LwbzdsowoMUxSNs96CaM2pdtbjz",
+ "logoUrls": [
+ "ipfs://QmX8uC4Dk4yEcSjaTz5LwbzdsowoMUxSNs96CaM2pdtbjz"
+ ],
+ "name": "LOCKIN",
+ "symbol": "LOCKIN",
+ "marketCap": "48787.413579117174403571",
+ "price": "0.00004878741357911717",
+ "priceChange24hPercent": "3.13",
+ "volume24h": "20239.49749761153",
+ "communityRecognized": false,
+ "key": "ton--mainnet:EQAmAb3d7dEP8fMWOf42Jzxu8DyG_fCK9ndfLs1XhjlN5HU9",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "TON",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/ton.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "ton--mainnet",
+ "address": "EQBZ_cafPyDr5KUTs0aNxh0ZTDhkpEZONmLJA2SNGlLm4Cko",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-onchain/ton--mainnet/tokens/EQBZ_cafPyDr5KUTs0aNxh0ZTDhkpEZONmLJA2SNGlLm4Cko.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-onchain/ton--mainnet/tokens/EQBZ_cafPyDr5KUTs0aNxh0ZTDhkpEZONmLJA2SNGlLm4Cko.png"
+ ],
+ "name": "Resistance Dog",
+ "symbol": "REDO",
+ "marketCap": "5270649.506781309661657659",
+ "price": "0.05270650025683336607",
+ "priceChange24hPercent": "-8.96",
+ "volume24h": "47760.70210364247",
+ "communityRecognized": true,
+ "key": "ton--mainnet:EQBZ_cafPyDr5KUTs0aNxh0ZTDhkpEZONmLJA2SNGlLm4Cko",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "TON",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/ton.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "ton--mainnet",
+ "address": "EQBE_gBrU3mPI9hHjlJoR_kYyrhQgyCFD6EUWfa42W8T7EBP",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-onchain/ton--mainnet/tokens/EQBE_gBrU3mPI9hHjlJoR_kYyrhQgyCFD6EUWfa42W8T7EBP.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-onchain/ton--mainnet/tokens/EQBE_gBrU3mPI9hHjlJoR_kYyrhQgyCFD6EUWfa42W8T7EBP.png"
+ ],
+ "name": "TAC token",
+ "symbol": "TAC",
+ "marketCap": "10126610.691135926914662207",
+ "price": "0.00225648066181251985",
+ "priceChange24hPercent": "-12.69",
+ "volume24h": "9200.82514322781",
+ "communityRecognized": true,
+ "key": "ton--mainnet:EQBE_gBrU3mPI9hHjlJoR_kYyrhQgyCFD6EUWfa42W8T7EBP",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "TON",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/ton.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "ton--mainnet",
+ "address": "EQAkiDve5SHF5UdE_5hqnr7T0dOJIZXeqROa3ka5Xf5hQ19n",
+ "logoUrl": "https://diamond-club.cc/assets/token-metadata/17c861603a799b0c57afae05632597e04b545e83913a087559e509e548747fba.png",
+ "logoUrls": [
+ "https://diamond-club.cc/assets/token-metadata/17c861603a799b0c57afae05632597e04b545e83913a087559e509e548747fba.png"
+ ],
+ "name": "Game Realm Incentive Mechanism",
+ "symbol": "GRIM",
+ "marketCap": "3610316.751789999999999999",
+ "price": "0.01719198453233333333",
+ "priceChange24hPercent": "27.11",
+ "volume24h": "3198.07505313276",
+ "communityRecognized": false,
+ "key": "ton--mainnet:EQAkiDve5SHF5UdE_5hqnr7T0dOJIZXeqROa3ka5Xf5hQ19n",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "TON",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/ton.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "ton--mainnet",
+ "address": "EQBw_rcP4aRenaV1Vo-w0bkCrrxEktXopRrZTWNovQh7FJ5w",
+ "logoUrl": "https://i.ibb.co/WWHSjWjC/IMG-2491-jpeg.jpg",
+ "logoUrls": [
+ "https://i.ibb.co/WWHSjWjC/IMG-2491-jpeg.jpg"
+ ],
+ "name": "Mira",
+ "symbol": "Mira",
+ "marketCap": "31250.095652478535825847",
+ "price": "0.00031250095652478536",
+ "priceChange24hPercent": "-4.24",
+ "volume24h": "600.325337382",
+ "communityRecognized": false,
+ "key": "ton--mainnet:EQBw_rcP4aRenaV1Vo-w0bkCrrxEktXopRrZTWNovQh7FJ5w",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "TON",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/ton.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "ton--mainnet",
+ "address": "EQCDuRLTylau8yKEkx1AMLpHAy6Vog_5D6aC4HNkyG8JN-me",
+ "logoUrl": "https://cdn.city-holder.com/token/token_logo.png",
+ "logoUrls": [
+ "https://cdn.city-holder.com/token/token_logo.png"
+ ],
+ "name": "CITY",
+ "symbol": "HOLDER",
+ "marketCap": "255008.296467935142773587",
+ "price": "0.00255008299535684986",
+ "priceChange24hPercent": "-5.79",
+ "volume24h": "532.43684392004",
+ "communityRecognized": false,
+ "key": "ton--mainnet:EQCDuRLTylau8yKEkx1AMLpHAy6Vog_5D6aC4HNkyG8JN-me",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "TON",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/ton.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "ton--mainnet",
+ "address": "EQBSS2nSuO-vYy8g1kgCYVA7Mi4hpYZaUbwG1ZIRf_KBR4_q",
+ "logoUrl": "https://i.ibb.co/NdgnGMpr/Durik.png",
+ "logoUrls": [
+ "https://i.ibb.co/NdgnGMpr/Durik.png"
+ ],
+ "name": "DURIKOVICH",
+ "symbol": "DURIKOVICH",
+ "marketCap": "34968.657895563346719761",
+ "price": "0.00034968921910923774",
+ "priceChange24hPercent": "-6.85",
+ "volume24h": "727.38815722913",
+ "communityRecognized": false,
+ "key": "ton--mainnet:EQBSS2nSuO-vYy8g1kgCYVA7Mi4hpYZaUbwG1ZIRf_KBR4_q",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "TON",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/ton.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "ton--mainnet",
+ "address": "EQCQUbMUqcm6NYr6QdfIl3R3SE28wUpoX51Za604x9BSbA6y",
+ "logoUrl": "https://plushpepecoin.github.io/logo200.png",
+ "logoUrls": [
+ "https://plushpepecoin.github.io/logo200.png"
+ ],
+ "name": "Plush Pepe",
+ "symbol": "PLUSHPEPE",
+ "marketCap": "406238.055689732581709042",
+ "price": "0.00040623805568973258",
+ "priceChange24hPercent": "-11.11",
+ "volume24h": "1032.27701876314",
+ "communityRecognized": false,
+ "key": "ton--mainnet:EQCQUbMUqcm6NYr6QdfIl3R3SE28wUpoX51Za604x9BSbA6y",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "TON",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/ton.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "ton--mainnet",
+ "address": "EQBKMfjX_a_dsOLm-juxyVZytFP7_KKnzGv6J01kGc72gVBp",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-onchain/ton--mainnet/tokens/EQBKMfjX_a_dsOLm-juxyVZytFP7_KKnzGv6J01kGc72gVBp.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-onchain/ton--mainnet/tokens/EQBKMfjX_a_dsOLm-juxyVZytFP7_KKnzGv6J01kGc72gVBp.png"
+ ],
+ "name": "Evaa protocol",
+ "symbol": "EVAA",
+ "marketCap": "4092933.964696472420377643",
+ "price": "0.61845743147545387324",
+ "priceChange24hPercent": "-6.87",
+ "volume24h": "6193.47877374344",
+ "communityRecognized": true,
+ "key": "ton--mainnet:EQBKMfjX_a_dsOLm-juxyVZytFP7_KKnzGv6J01kGc72gVBp",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "TON",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/ton.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "ton--mainnet",
+ "address": "EQCThzitzPXm2dH9psaVkZlkAcHqzCJjcBpD29b5closNeq-",
+ "logoUrl": "https://i.postimg.cc/NMsNyCwb/jetton.webp",
+ "logoUrls": [
+ "https://i.postimg.cc/NMsNyCwb/jetton.webp"
+ ],
+ "name": "PLATHO",
+ "symbol": "ATH",
+ "marketCap": "363164.386173423798649552",
+ "price": "0.00376267136673816097",
+ "priceChange24hPercent": "-7.38",
+ "volume24h": "3265.07339571771",
+ "communityRecognized": false,
+ "key": "ton--mainnet:EQCThzitzPXm2dH9psaVkZlkAcHqzCJjcBpD29b5closNeq-",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "TON",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/ton.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "ton--mainnet",
+ "address": "EQB6Ql1JE7Hq0JuropLYschcu-WNt2vMmWF2-8mEMrK68nJn",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-onchain/ton--mainnet/tokens/EQB6Ql1JE7Hq0JuropLYschcu-WNt2vMmWF2-8mEMrK68nJn.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-onchain/ton--mainnet/tokens/EQB6Ql1JE7Hq0JuropLYschcu-WNt2vMmWF2-8mEMrK68nJn.png"
+ ],
+ "name": "Gentleman",
+ "symbol": "MAN",
+ "marketCap": "66360.016001597012450766",
+ "price": "0.00006636013198068195",
+ "priceChange24hPercent": "-22.74",
+ "volume24h": "2188.64333048425",
+ "communityRecognized": false,
+ "key": "ton--mainnet:EQB6Ql1JE7Hq0JuropLYschcu-WNt2vMmWF2-8mEMrK68nJn",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "TON",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/ton.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "ton--mainnet",
+ "address": "EQDc_nrm5oOVCVQM8GRJ5q_hr1jgpNQjsGkIGE-uztt26_Ep",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-onchain/ton--mainnet/tokens/EQDc_nrm5oOVCVQM8GRJ5q_hr1jgpNQjsGkIGE-uztt26_Ep.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-onchain/ton--mainnet/tokens/EQDc_nrm5oOVCVQM8GRJ5q_hr1jgpNQjsGkIGE-uztt26_Ep.png"
+ ],
+ "name": "Ecorpay",
+ "symbol": "ECOR",
+ "marketCap": "228596319.850129904458841649",
+ "price": "0.02285963198501299045",
+ "priceChange24hPercent": "-5.47",
+ "volume24h": "18573.18310546416",
+ "communityRecognized": false,
+ "key": "ton--mainnet:EQDc_nrm5oOVCVQM8GRJ5q_hr1jgpNQjsGkIGE-uztt26_Ep",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "TON",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/ton.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "ton--mainnet",
+ "address": "EQBvYQ3TyUYTjQxZa6UPbjwVzjnC5U3PRiXhpIu-HPMYMtTX",
+ "logoUrl": "https://coin-images.coingecko.com/coins/images/102173345/large/fast.jpg?1779100483",
+ "logoUrls": [
+ "https://coin-images.coingecko.com/coins/images/102173345/large/fast.jpg?1779100483"
+ ],
+ "name": "Gotta Go Fast",
+ "symbol": "FAST",
+ "marketCap": "51843.933950409616962503",
+ "price": "0.00005184393395040962",
+ "priceChange24hPercent": "-10.88",
+ "volume24h": "1517.50876059279",
+ "communityRecognized": false,
+ "key": "ton--mainnet:EQBvYQ3TyUYTjQxZa6UPbjwVzjnC5U3PRiXhpIu-HPMYMtTX",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "TON",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/ton.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "ton--mainnet",
+ "address": "EQCvxJy4eG8hyHBFsZ7eePxrRsUQSFE_jpptRAYBmcG_DOGS",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-onchain/ton--mainnet/tokens/EQCvxJy4eG8hyHBFsZ7eePxrRsUQSFE_jpptRAYBmcG_DOGS.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-onchain/ton--mainnet/tokens/EQCvxJy4eG8hyHBFsZ7eePxrRsUQSFE_jpptRAYBmcG_DOGS.png"
+ ],
+ "name": "Dogs",
+ "symbol": "DOGS",
+ "marketCap": "24290532.681262277521994229",
+ "price": "0.0000470063525520315",
+ "priceChange24hPercent": "4.23",
+ "volume24h": "7216.8125667808",
+ "communityRecognized": true,
+ "key": "ton--mainnet:EQCvxJy4eG8hyHBFsZ7eePxrRsUQSFE_jpptRAYBmcG_DOGS",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "TON",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/ton.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "ton--mainnet",
+ "address": "EQAOyf4n-7wTtTI45LGQwfacEfnkpOa9v6bjpwgeCHX5WW8y",
+ "logoUrl": "https://coin-images.coingecko.com/coins/images/102173156/large/dog.jpg?1778136988",
+ "logoUrls": [
+ "https://coin-images.coingecko.com/coins/images/102173156/large/dog.jpg?1778136988"
+ ],
+ "name": "Durovs Dog",
+ "symbol": "PYONYA",
+ "marketCap": "99675.078720807634679225",
+ "price": "0.00009967507872080763",
+ "priceChange24hPercent": "-9.58",
+ "volume24h": "1489.77857670736",
+ "communityRecognized": false,
+ "key": "ton--mainnet:EQAOyf4n-7wTtTI45LGQwfacEfnkpOa9v6bjpwgeCHX5WW8y",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "TON",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/ton.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "ton--mainnet",
+ "address": "EQAQXlWJvGbbFfE8F3oS8s87lIgdovS455IsWFaRdmJetTon",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-onchain/ton--mainnet/tokens/EQAQXlWJvGbbFfE8F3oS8s87lIgdovS455IsWFaRdmJetTon.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-onchain/ton--mainnet/tokens/EQAQXlWJvGbbFfE8F3oS8s87lIgdovS455IsWFaRdmJetTon.png"
+ ],
+ "name": "JetTon",
+ "symbol": "JETTON",
+ "marketCap": "898577.395747995472191728",
+ "price": "0.02082893277202823121",
+ "priceChange24hPercent": "-0.68",
+ "volume24h": "673.27622423614",
+ "communityRecognized": true,
+ "key": "ton--mainnet:EQAQXlWJvGbbFfE8F3oS8s87lIgdovS455IsWFaRdmJetTon",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "TON",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/ton.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "ton--mainnet",
+ "address": "EQCMk4_OujCnk46jApHnIRbmTtYTkSmfujV9X8Ye0qvsHVKh",
+ "logoUrl": "https://gateway.pinata.cloud/ipfs/bafybeibfzke4a2yueebdebtllix6eee3jujyuxtibht6d52jephnaccwhy/xauh-logo.png",
+ "logoUrls": [
+ "https://gateway.pinata.cloud/ipfs/bafybeibfzke4a2yueebdebtllix6eee3jujyuxtibht6d52jephnaccwhy/xauh-logo.png"
+ ],
+ "name": "Herculis Gold Coin",
+ "symbol": "XAUH",
+ "marketCap": "465248.725668566962102441",
+ "price": "142.69727063572796176164",
+ "priceChange24hPercent": "0.29",
+ "volume24h": "776.4554269662",
+ "communityRecognized": false,
+ "key": "ton--mainnet:EQCMk4_OujCnk46jApHnIRbmTtYTkSmfujV9X8Ye0qvsHVKh",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "TON",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/ton.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "ton--mainnet",
+ "address": "EQAtwo6qMNwtr0iTA9eKVZ32cuACFJ0VKd78GrBWOe83-X1P",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-onchain/ton--mainnet/tokens/EQAtwo6qMNwtr0iTA9eKVZ32cuACFJ0VKd78GrBWOe83-X1P.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-onchain/ton--mainnet/tokens/EQAtwo6qMNwtr0iTA9eKVZ32cuACFJ0VKd78GrBWOe83-X1P.png"
+ ],
+ "name": "Groyper",
+ "symbol": "GROYP",
+ "marketCap": "2064559.490478437374688874",
+ "price": "0.04208547572663362007",
+ "priceChange24hPercent": "-15.43",
+ "volume24h": "25411.93389440318",
+ "communityRecognized": false,
+ "key": "ton--mainnet:EQAtwo6qMNwtr0iTA9eKVZ32cuACFJ0VKd78GrBWOe83-X1P",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "TON",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/ton.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "ton--mainnet",
+ "address": "EQC7vuKEYLdC72YhUWt3AUVA-Oi66Q1DxTHXH7r6pXaV50j7",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-onchain/ton--mainnet/tokens/EQC7vuKEYLdC72YhUWt3AUVA-Oi66Q1DxTHXH7r6pXaV50j7.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-onchain/ton--mainnet/tokens/EQC7vuKEYLdC72YhUWt3AUVA-Oi66Q1DxTHXH7r6pXaV50j7.png"
+ ],
+ "name": "Baby Yoda",
+ "symbol": "Yoda",
+ "marketCap": "574994.183524627914972327",
+ "price": "0.00057499418435836948",
+ "priceChange24hPercent": "0.45",
+ "volume24h": "9264.73324113924",
+ "communityRecognized": false,
+ "key": "ton--mainnet:EQC7vuKEYLdC72YhUWt3AUVA-Oi66Q1DxTHXH7r6pXaV50j7",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "TON",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/ton.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "ton--mainnet",
+ "address": "EQB9rFI92eYlakDHzgn9bYwhqwGTRejWZ-78QDx5ASZlk6Ha",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-onchain/ton--mainnet/tokens/EQB9rFI92eYlakDHzgn9bYwhqwGTRejWZ-78QDx5ASZlk6Ha.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-onchain/ton--mainnet/tokens/EQB9rFI92eYlakDHzgn9bYwhqwGTRejWZ-78QDx5ASZlk6Ha.png"
+ ],
+ "name": "Tony McDuck",
+ "symbol": "$TONY",
+ "marketCap": "14571.042247847920840706",
+ "price": "0.0000158380893998347",
+ "priceChange24hPercent": "17.7",
+ "volume24h": "3161.09223618812",
+ "communityRecognized": false,
+ "key": "ton--mainnet:EQB9rFI92eYlakDHzgn9bYwhqwGTRejWZ-78QDx5ASZlk6Ha",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "TON",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/ton.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "ton--mainnet",
+ "address": "EQD0laik0FgHV8aNfRhebi8GDG2rpDyKGXem0MBfya_Ew1-8",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-onchain/ton--mainnet/tokens/EQD0laik0FgHV8aNfRhebi8GDG2rpDyKGXem0MBfya_Ew1-8.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-onchain/ton--mainnet/tokens/EQD0laik0FgHV8aNfRhebi8GDG2rpDyKGXem0MBfya_Ew1-8.png"
+ ],
+ "name": "GoMining",
+ "symbol": "GOMINING",
+ "marketCap": "7171403.020319942004925555",
+ "price": "0.35857015101599710025",
+ "priceChange24hPercent": "0.01",
+ "volume24h": "2082.98811354387",
+ "communityRecognized": true,
+ "key": "ton--mainnet:EQD0laik0FgHV8aNfRhebi8GDG2rpDyKGXem0MBfya_Ew1-8",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "TON",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/ton.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "ton--mainnet",
+ "address": "EQBng_Ux8DLKeaLZ4kN4eec-U-SJ1fMtYvqQANtL0oxKRQh_",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-onchain/ton--mainnet/tokens/EQBng_Ux8DLKeaLZ4kN4eec-U-SJ1fMtYvqQANtL0oxKRQh_.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-onchain/ton--mainnet/tokens/EQBng_Ux8DLKeaLZ4kN4eec-U-SJ1fMtYvqQANtL0oxKRQh_.png"
+ ],
+ "name": "sTONks",
+ "symbol": "sTONks",
+ "marketCap": "113068.686267137895441986",
+ "price": "0.00376895620890459651",
+ "priceChange24hPercent": "5",
+ "volume24h": "1466.75709588858",
+ "communityRecognized": false,
+ "key": "ton--mainnet:EQBng_Ux8DLKeaLZ4kN4eec-U-SJ1fMtYvqQANtL0oxKRQh_",
+ "kind": "token",
+ "sourceCategory": "trending",
+ "networkName": "TON",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/ton.png"
+ }
+ ],
+ "stocks||5m|all": [
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x390a684ef9cade28a7ad0dfa61ab1eb3842618c4",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x390a684ef9cade28a7ad0dfa61ab1eb3842618c4-1760515427269.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x390a684ef9cade28a7ad0dfa61ab1eb3842618c4-1760515427269.png"
+ ],
+ "name": "Apple (Ondo Tokenized)",
+ "symbol": "AAPLon",
+ "marketCap": "4699513299320",
+ "price": "320.298481855554072365",
+ "priceChange24hPercent": "-0.5",
+ "volume24h": "12673014673.480001",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "苹果",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x390a684ef9cade28a7ad0dfa61ab1eb3842618c4",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x8b872732b07be325a8803cdb480d9d20b6f8d11b",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x8b872732b07be325a8803cdb480d9d20b6f8d11b-1760923370870.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x8b872732b07be325a8803cdb480d9d20b6f8d11b-1760923370870.png"
+ ],
+ "name": "iShares Silver Trust (Ondo Tokenized)",
+ "symbol": "SLVon",
+ "marketCap": "32192820451",
+ "price": "60.613516",
+ "priceChange24hPercent": "3.36",
+ "volume24h": "751852335.96",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "白银ETF",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x8b872732b07be325a8803cdb480d9d20b6f8d11b",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x992879cd8ce0c312d98648875b5a8d6d042cbf34",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x992879cd8ce0c312d98648875b5a8d6d042cbf34-1760923032790.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x992879cd8ce0c312d98648875b5a8d6d042cbf34-1760923032790.png"
+ ],
+ "name": "Circle Internet Group (Ondo Tokenized)",
+ "symbol": "CRCLon",
+ "marketCap": "27277014302",
+ "price": "101.983108",
+ "priceChange24hPercent": "-1.98",
+ "volume24h": "1440248998.5",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "Circle Internet Group",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x992879cd8ce0c312d98648875b5a8d6d042cbf34",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xa9ee28c80f960b889dfbd1902055218cba016f75",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xa9ee28c80f960b889dfbd1902055218cba016f75-1760923276163.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xa9ee28c80f960b889dfbd1902055218cba016f75-1760923276163.png"
+ ],
+ "name": "NVIDIA (Ondo Tokenized)",
+ "symbol": "NVDAon",
+ "marketCap": "5579549560000",
+ "price": "233.18030531293853192",
+ "priceChange24hPercent": "0.56",
+ "volume24h": "31179783471.2",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "英伟达",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0xa9ee28c80f960b889dfbd1902055218cba016f75",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x8b6acf6041a81567f012ff6a4c6d96d5818d74bf",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x8b6acf6041a81567f012ff6a4c6d96d5818d74bf-1760923255049.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x8b6acf6041a81567f012ff6a4c6d96d5818d74bf-1760923255049.png"
+ ],
+ "name": "Micron Technology (Ondo Tokenized)",
+ "symbol": "MUon",
+ "marketCap": "1148126580100",
+ "price": "1055.805608023373639527",
+ "priceChange24hPercent": "1.28",
+ "volume24h": "35834308520.21",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "美光科技",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x8b6acf6041a81567f012ff6a4c6d96d5818d74bf",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x7313ea16493b2f55054df0131a3a14b043ec8992",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x7313ea16493b2f55054df0131a3a14b043ec8992-1760923249909.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x7313ea16493b2f55054df0131a3a14b043ec8992-1760923249909.png"
+ ],
+ "name": "MicroStrategy (Ondo Tokenized)",
+ "symbol": "MSTRon",
+ "marketCap": "47239382400",
+ "price": "141.505263",
+ "priceChange24hPercent": "-1.98",
+ "volume24h": "3878826420.0000005",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "微策略",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x7313ea16493b2f55054df0131a3a14b043ec8992",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x4553cfe1c09f37f38b12dc509f676964e392f8fc",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x4553cfe1c09f37f38b12dc509f676964e392f8fc-1760686410256.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x4553cfe1c09f37f38b12dc509f676964e392f8fc-1760686410256.png"
+ ],
+ "name": "Amazon (Ondo Tokenized)",
+ "symbol": "AMZNon",
+ "marketCap": "2780817921000",
+ "price": "258.279748",
+ "priceChange24hPercent": "-0.11",
+ "volume24h": "7949159751.12",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "亚马逊",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x4553cfe1c09f37f38b12dc509f676964e392f8fc",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x6a708ead771238919d85930b5a0f10454e1c331a",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x6a708ead771238919d85930b5a0f10454e1c331a-1760921581963.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x6a708ead771238919d85930b5a0f10454e1c331a-1760921581963.png"
+ ],
+ "name": "SPDR S&P 500 ETF (Ondo Tokenized)",
+ "symbol": "SPYon",
+ "marketCap": "820435829283",
+ "price": "776.141056177460214449",
+ "priceChange24hPercent": "0.01",
+ "volume24h": "25385765084.670002",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "标普500 ETF",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x6a708ead771238919d85930b5a0f10454e1c331a",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x0cde6936d305d5b34667fc46425e852efd73559a",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x0cde6936d305d5b34667fc46425e852efd73559a-1760923339182.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x0cde6936d305d5b34667fc46425e852efd73559a-1760923339182.png"
+ ],
+ "name": "Invesco QQQ (Ondo Tokenized)",
+ "symbol": "QQQon",
+ "marketCap": "512284401576",
+ "price": "725.686548519952709569",
+ "priceChange24hPercent": "0.32",
+ "volume24h": "23632988800.960003",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "纳指ETF",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x0cde6936d305d5b34667fc46425e852efd73559a",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xd5964f3fcee8d649995ab88f04b8982539c282d2",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xd5964f3fcee8d649995ab88f04b8982539c282d2-1760922996465.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xd5964f3fcee8d649995ab88f04b8982539c282d2-1760922996465.png"
+ ],
+ "name": "Alibaba (Ondo Tokenized)",
+ "symbol": "BABAon",
+ "marketCap": "271421798529",
+ "price": "112.499497934947570659",
+ "priceChange24hPercent": "-1.46",
+ "volume24h": "810668853.4399999",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "阿里巴巴",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0xd5964f3fcee8d649995ab88f04b8982539c282d2",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x19601179a60f55ff6636f5d1a8b6671053bd60a8",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x19601179a60f55ff6636f5d1a8b6671053bd60a8-1760923113456.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x19601179a60f55ff6636f5d1a8b6671053bd60a8-1760923113456.png"
+ ],
+ "name": "Robinhood Markets (Ondo Tokenized)",
+ "symbol": "HOODon",
+ "marketCap": "109786941485",
+ "price": "123.076667",
+ "priceChange24hPercent": "0.85",
+ "volume24h": "2897993280.95",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "罗宾汉",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x19601179a60f55ff6636f5d1a8b6671053bd60a8",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x091fc7778e6932d4009b087b191d1ee3bac5729a",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x091fc7778e6932d4009b087b191d1ee3bac5729a-1760923100804.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x091fc7778e6932d4009b087b191d1ee3bac5729a-1760923100804.png"
+ ],
+ "name": "Alphabet Class A (Ondo Tokenized)",
+ "symbol": "GOOGLon",
+ "marketCap": "4096080585860",
+ "price": "338.962258099649311085",
+ "priceChange24hPercent": "-0.2",
+ "volume24h": "7848657585.66",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "谷歌",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x091fc7778e6932d4009b087b191d1ee3bac5729a",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xf8589b526fdd65f7f301c605a6e04f0f1b4b3620",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xf8589b526fdd65f7f301c605a6e04f0f1b4b3620-1761749966569.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xf8589b526fdd65f7f301c605a6e04f0f1b4b3620-1761749966569.png"
+ ],
+ "name": "Coinbase (Ondo Tokenized)",
+ "symbol": "COINon",
+ "marketCap": "48714333394",
+ "price": "183.831667",
+ "priceChange24hPercent": "-1.12",
+ "volume24h": "1509934590.08",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "Coinbase",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0xf8589b526fdd65f7f301c605a6e04f0f1b4b3620",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xe42cfb20e00912409b77a602b5bdcff3c7acc5f4",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xe42cfb20e00912409b77a602b5bdcff3c7acc5f4-1768032381719.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xe42cfb20e00912409b77a602b5bdcff3c7acc5f4-1768032381719.png"
+ ],
+ "name": "ProShares UltraPro QQQ (Ondo Tokenized)",
+ "symbol": "TQQQon",
+ "marketCap": "44436706139",
+ "price": "73.845438057857333962",
+ "priceChange24hPercent": "1.87",
+ "volume24h": "3426881608.8",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "三倍做多纳指ETF",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0xe42cfb20e00912409b77a602b5bdcff3c7acc5f4",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xcb2a0f46f67dc4c58a316f1c008edef5c2311795",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xcb2a0f46f67dc4c58a316f1c008edef5c2311795-1760923121884.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xcb2a0f46f67dc4c58a316f1c008edef5c2311795-1760923121884.png"
+ ],
+ "name": "iShares Gold Trust (Ondo Tokenized)",
+ "symbol": "IAUon",
+ "marketCap": "65795429989",
+ "price": "83.510002",
+ "priceChange24hPercent": "0.23",
+ "volume24h": "415966081.39",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "iShares黄金ETF",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0xcb2a0f46f67dc4c58a316f1c008edef5c2311795",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x9351abd19f42101dd36025e495b98e910b255d78",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x9351abd19f42101dd36025e495b98e910b255d78-1760923318304.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x9351abd19f42101dd36025e495b98e910b255d78-1760923318304.png"
+ ],
+ "name": "Palantir Technologies (Ondo Tokenized)",
+ "symbol": "PLTRon",
+ "marketCap": "400273883100",
+ "price": "174.182857",
+ "priceChange24hPercent": "-0.31",
+ "volume24h": "4874798157.84",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "帕兰提尔",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x9351abd19f42101dd36025e495b98e910b255d78",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xec93fe7ff4b09ca3ccafbc4cc9615e62be412780",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xec93fe7ff4b09ca3ccafbc4cc9615e62be412780-1768378372330.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xec93fe7ff4b09ca3ccafbc4cc9615e62be412780-1768378372330.png"
+ ],
+ "name": "Global X Copper Miners ETF (Ondo Tokenized)",
+ "symbol": "COPXon",
+ "marketCap": "8398061634",
+ "price": "90.741202370238771614",
+ "priceChange24hPercent": "--",
+ "volume24h": "120614154.66",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "铜矿ETF",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0xec93fe7ff4b09ca3ccafbc4cc9615e62be412780",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x9f16e46c73b43bdb70861247d537bee4ea18f639",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x9f16e46c73b43bdb70861247d537bee4ea18f639-1760922831860.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x9f16e46c73b43bdb70861247d537bee4ea18f639-1760922831860.png"
+ ],
+ "name": "AMD (Ondo Tokenized)",
+ "symbol": "AMDon",
+ "marketCap": "778725642000",
+ "price": "487.975263",
+ "priceChange24hPercent": "1.18",
+ "volume24h": "9397976816.94",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "超威半导体",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x9f16e46c73b43bdb70861247d537bee4ea18f639",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x6bfe75d1ad432050ea973c3a3dcd88f02e2444c3",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x6bfe75d1ad432050ea973c3a3dcd88f02e2444c3-1760923244592.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x6bfe75d1ad432050ea973c3a3dcd88f02e2444c3-1760923244592.png"
+ ],
+ "name": "Microsoft (Ondo Tokenized)",
+ "symbol": "MSFTon",
+ "marketCap": "3710547335000",
+ "price": "499.708647472892879635",
+ "priceChange24hPercent": "-0.72",
+ "volume24h": "9045448472.6",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "微软",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x6bfe75d1ad432050ea973c3a3dcd88f02e2444c3",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x7048f5227b032326cc8dbc53cf3fddd947a2c757",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x7048f5227b032326cc8dbc53cf3fddd947a2c757-1760923261006.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x7048f5227b032326cc8dbc53cf3fddd947a2c757-1760923261006.png"
+ ],
+ "name": "Netflix (Ondo Tokenized)",
+ "symbol": "NFLXon",
+ "marketCap": "325828304922",
+ "price": "778.72424",
+ "priceChange24hPercent": "-0.54",
+ "volume24h": "3144868282.5",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "奈飞",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x7048f5227b032326cc8dbc53cf3fddd947a2c757",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xc145dc2ebdbe8ead1fecdebf46c76eb1fdd0104d",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xc145dc2ebdbe8ead1fecdebf46c76eb1fdd0104d-1768184402429.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xc145dc2ebdbe8ead1fecdebf46c76eb1fdd0104d-1768184402429.png"
+ ],
+ "name": "Carvana (Ondo Tokenized)",
+ "symbol": "CVNAon",
+ "price": "-",
+ "priceChange24hPercent": "-",
+ "communityRecognized": false,
+ "key": "evm--56:0xc145dc2ebdbe8ead1fecdebf46c76eb1fdd0104d",
+ "kind": "token",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x3385cb29cca0ac66f5d2354d13ef977b49a2510f",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x3385cb29cca0ac66f5d2354d13ef977b49a2510f-1760923604445.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x3385cb29cca0ac66f5d2354d13ef977b49a2510f-1760923604445.png"
+ ],
+ "name": "UnitedHealth (Ondo Tokenized)",
+ "symbol": "UNHon",
+ "marketCap": "360660468605",
+ "price": "402.98451011334612462",
+ "priceChange24hPercent": "-0.26",
+ "volume24h": "1916737036.1399999",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "联合健康",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x3385cb29cca0ac66f5d2354d13ef977b49a2510f",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x03e4bd1ea53f1da84513da0319d1f03dd1bbcf93",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x03e4bd1ea53f1da84513da0319d1f03dd1bbcf93-1760923286694.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x03e4bd1ea53f1da84513da0319d1f03dd1bbcf93-1760923286694.png"
+ ],
+ "name": "Oracle (Ondo Tokenized)",
+ "symbol": "ORCLon",
+ "marketCap": "457505050100",
+ "price": "166.481535598340633943",
+ "priceChange24hPercent": "2.21",
+ "volume24h": "4138044844.8500004",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "甲骨文",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x03e4bd1ea53f1da84513da0319d1f03dd1bbcf93",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x2494b603319d4d9f9715c9f4496d9e0364b59d93",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x2494b603319d4d9f9715c9f4496d9e0364b59d93-1760680411667.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x2494b603319d4d9f9715c9f4496d9e0364b59d93-1760680411667.png"
+ ],
+ "name": "Tesla (Ondo Tokenized)",
+ "symbol": "TSLAon",
+ "marketCap": "1398455741268",
+ "price": "356.443455",
+ "priceChange24hPercent": "0.17",
+ "volume24h": "23021647442.719997",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "特斯拉",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x2494b603319d4d9f9715c9f4496d9e0364b59d93",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x0ed2e3180edf393e6bf8db124bd15ddd54de150a",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x0ed2e3180edf393e6bf8db124bd15ddd54de150a-1760922985968.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x0ed2e3180edf393e6bf8db124bd15ddd54de150a-1760922985968.png"
+ ],
+ "name": "Broadcom (Ondo Tokenized)",
+ "symbol": "AVGOon",
+ "marketCap": "1702714094100",
+ "price": "364.792451018770787223",
+ "priceChange24hPercent": "0.24",
+ "volume24h": "11761598227.175",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "博通",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x0ed2e3180edf393e6bf8db124bd15ddd54de150a",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x25ffda07f585c39848db6573e533d7585679c52d",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x25ffda07f585c39848db6573e533d7585679c52d-1760923217550.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x25ffda07f585c39848db6573e533d7585679c52d-1760923217550.png"
+ ],
+ "name": "Mastercard (Ondo Tokenized)",
+ "symbol": "MAon",
+ "marketCap": "507988021560",
+ "price": "577.919566836818062189",
+ "priceChange24hPercent": "-0.72",
+ "volume24h": "1015977201.5400001",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "万事达",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x25ffda07f585c39848db6573e533d7585679c52d",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x34304f2f7cc487eb4186e6d69f5905a613474aa2",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x34304f2f7cc487eb4186e6d69f5905a613474aa2-1761709115472.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x34304f2f7cc487eb4186e6d69f5905a613474aa2-1761709115472.png"
+ ],
+ "name": "Cisco Systems (Ondo Tokenized)",
+ "symbol": "CSCOon",
+ "marketCap": "430404665418",
+ "price": "110.75473913211509356",
+ "priceChange24hPercent": "0.07",
+ "volume24h": "1351570474.8",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "思科",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x34304f2f7cc487eb4186e6d69f5905a613474aa2",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x5fa699c0c1319b8d86489af77dfde4fa97b47df8",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x5fa699c0c1319b8d86489af77dfde4fa97b47df8-1769105965919.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x5fa699c0c1319b8d86489af77dfde4fa97b47df8-1769105965919.png"
+ ],
+ "name": "BitGo Holdings (Ondo Tokenized)",
+ "symbol": "BTGOon",
+ "marketCap": "781859397",
+ "price": "7.235",
+ "priceChange24hPercent": "--",
+ "volume24h": "10028338.5",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "BitGo",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x5fa699c0c1319b8d86489af77dfde4fa97b47df8",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x50356167a4dbc38bea6779c045e24e25facedfdc",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x50356167a4dbc38bea6779c045e24e25facedfdc-1760923391964.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x50356167a4dbc38bea6779c045e24e25facedfdc-1760923391964.png"
+ ],
+ "name": "Spotify (Ondo Tokenized)",
+ "symbol": "SPOTon",
+ "marketCap": "111515040318",
+ "price": "534.766667",
+ "priceChange24hPercent": "-1.69",
+ "volume24h": "742202629.56",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "Spotify",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x50356167a4dbc38bea6779c045e24e25facedfdc",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x317bf42b43a394860718266dec445dcc9fd9da49",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x317bf42b43a394860718266dec445dcc9fd9da49-1761792505227.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x317bf42b43a394860718266dec445dcc9fd9da49-1761792505227.png"
+ ],
+ "name": "JPMorgan Chase (Ondo Tokenized)",
+ "symbol": "JPMon",
+ "marketCap": "960979466400",
+ "price": "360.974460173899799822",
+ "priceChange24hPercent": "-0.66",
+ "volume24h": "1745667647.6",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "摩根大通",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x317bf42b43a394860718266dec445dcc9fd9da49",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x405f38b90bebf1259062cf29da299f3398662bcb",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x405f38b90bebf1259062cf29da299f3398662bcb-1761605541805.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x405f38b90bebf1259062cf29da299f3398662bcb-1761605541805.png"
+ ],
+ "name": "Coca-Cola (Ondo Tokenized)",
+ "symbol": "KOon",
+ "marketCap": "378925484617",
+ "price": "89.628986243018856634",
+ "priceChange24hPercent": "-0.24",
+ "volume24h": "1283321428.49",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "可口可乐",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x405f38b90bebf1259062cf29da299f3398662bcb",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xc37042a7a4fa510d8884a433762ab87257b91965",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xc37042a7a4fa510d8884a433762ab87257b91965-1760923413025.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xc37042a7a4fa510d8884a433762ab87257b91965-1760923413025.png"
+ ],
+ "name": "Taiwan Semiconductor Manufacturing (Ondo Tokenized)",
+ "symbol": "TSMon",
+ "marketCap": "2224533136800",
+ "price": "438.018182406245951052",
+ "priceChange24hPercent": "0.37",
+ "volume24h": "5261764083.780001",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "台积电",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0xc37042a7a4fa510d8884a433762ab87257b91965",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xd09f7b75b9659b864c6f82bb00ff096f9d277998",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xd09f7b75b9659b864c6f82bb00ff096f9d277998-1760923206785.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xd09f7b75b9659b864c6f82bb00ff096f9d277998-1760923206785.png"
+ ],
+ "name": "Lockheed (Ondo Tokenized)",
+ "symbol": "LMTon",
+ "marketCap": "121229896480",
+ "price": "537.114604097175250464",
+ "priceChange24hPercent": "-0.19",
+ "volume24h": "495034902.88",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "洛克希德马丁",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0xd09f7b75b9659b864c6f82bb00ff096f9d277998",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x341d31b2be1fee9c00e395a62ba41837f4322eed",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x341d31b2be1fee9c00e395a62ba41837f4322eed-1760923201079.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x341d31b2be1fee9c00e395a62ba41837f4322eed-1760923201079.png"
+ ],
+ "name": "Eli Lilly (Ondo Tokenized)",
+ "symbol": "LLYon",
+ "marketCap": "1081307016200",
+ "price": "1149.397318656767340512",
+ "priceChange24hPercent": "-0.16",
+ "volume24h": "2468999720.4",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "礼来",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x341d31b2be1fee9c00e395a62ba41837f4322eed",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x5a20886b575058dd7299785f0ea9b1172942a3e0",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x5a20886b575058dd7299785f0ea9b1172942a3e0-1760922274158.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x5a20886b575058dd7299785f0ea9b1172942a3e0-1760922274158.png"
+ ],
+ "name": "Abbott (Ondo Tokenized)",
+ "symbol": "ABTon",
+ "marketCap": "187435126855",
+ "price": "109.426019691944889332",
+ "priceChange24hPercent": "-1.04",
+ "volume24h": "744744194.56",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "雅培",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x5a20886b575058dd7299785f0ea9b1172942a3e0",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xe6837794fbc6dd024733a1a31f86061296fa2752",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xe6837794fbc6dd024733a1a31f86061296fa2752-1767888357216.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xe6837794fbc6dd024733a1a31f86061296fa2752-1767888357216.png"
+ ],
+ "name": "CrowdStrike (Ondo Tokenized)",
+ "symbol": "CRWDon",
+ "marketCap": "216991052568",
+ "price": "854.08",
+ "priceChange24hPercent": "0.11",
+ "volume24h": "1796128480.1",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "CrowdStrike",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0xe6837794fbc6dd024733a1a31f86061296fa2752",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x918008c3d29496c37b478b611967beaca365af36",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x918008c3d29496c37b478b611967beaca365af36-1760923132407.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x918008c3d29496c37b478b611967beaca365af36-1760923132407.png"
+ ],
+ "name": "iShares Core MSCI EAFE ETF (Ondo Tokenized)",
+ "symbol": "IEFAon",
+ "marketCap": "191069877912",
+ "price": "103.705170809433201477",
+ "priceChange24hPercent": "2.45",
+ "volume24h": "562851547.16",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x918008c3d29496c37b478b611967beaca365af36",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x43d0b380c33cd004a6a69abd61843881a2de4113",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x43d0b380c33cd004a6a69abd61843881a2de4113-1760923365671.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x43d0b380c33cd004a6a69abd61843881a2de4113-1760923365671.png"
+ ],
+ "name": "Shopify (Ondo Tokenized)",
+ "symbol": "SHOPon",
+ "marketCap": "188276717956",
+ "price": "143.536364",
+ "priceChange24hPercent": "-1.23",
+ "volume24h": "1001972823.39",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "Shopify",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x43d0b380c33cd004a6a69abd61843881a2de4113",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x7af44d51d1fb88c5b74fc71d3cba649bb8099d14",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x7af44d51d1fb88c5b74fc71d3cba649bb8099d14-1760922282064.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x7af44d51d1fb88c5b74fc71d3cba649bb8099d14-1760922282064.png"
+ ],
+ "name": "Accenture (Ondo Tokenized)",
+ "symbol": "ACNon",
+ "marketCap": "114261830592",
+ "price": "190.128369050462170162",
+ "priceChange24hPercent": "-1.11",
+ "volume24h": "906653876.64",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "埃森哲",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x7af44d51d1fb88c5b74fc71d3cba649bb8099d14",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x400f1e257f86d25578a0928c94dc95115f09d5c9",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x400f1e257f86d25578a0928c94dc95115f09d5c9-1760923313303.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x400f1e257f86d25578a0928c94dc95115f09d5c9-1760923313303.png"
+ ],
+ "name": "Procter & Gamble (Ondo Tokenized)",
+ "symbol": "PGon",
+ "marketCap": "348094704645",
+ "price": "149.056417400228133746",
+ "priceChange24hPercent": "-0.73",
+ "volume24h": "812032397.19",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "宝洁",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x400f1e257f86d25578a0928c94dc95115f09d5c9",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x374d03a6c0d5bd4be0a5117ebe1b49d52ac8a53f",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x374d03a6c0d5bd4be0a5117ebe1b49d52ac8a53f-1760923323445.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x374d03a6c0d5bd4be0a5117ebe1b49d52ac8a53f-1760923323445.png"
+ ],
+ "name": "PayPal (Ondo Tokenized)",
+ "symbol": "PYPLon",
+ "marketCap": "47016136560",
+ "price": "55.089444788561474573",
+ "priceChange24hPercent": "-0.45",
+ "volume24h": "716925445.2",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "贝宝",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x374d03a6c0d5bd4be0a5117ebe1b49d52ac8a53f",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xd3113a0ad20a46f6a662c63fe8e637f7713e59c7",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xd3113a0ad20a46f6a662c63fe8e637f7713e59c7-1760923043289.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xd3113a0ad20a46f6a662c63fe8e637f7713e59c7-1760923043289.png"
+ ],
+ "name": "Chevron (Ondo Tokenized)",
+ "symbol": "CVXon",
+ "marketCap": "415308348000",
+ "price": "214.127850846968341467",
+ "priceChange24hPercent": "-0.1",
+ "volume24h": "1122138299.52",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "雪佛龙",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0xd3113a0ad20a46f6a662c63fe8e637f7713e59c7",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x08ce97f3d5cf11e577d091ab048bc5e2eae3fabb",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x08ce97f3d5cf11e577d091ab048bc5e2eae3fabb-1760922826243.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x08ce97f3d5cf11e577d091ab048bc5e2eae3fabb-1760922826243.png"
+ ],
+ "name": "iShares Core US Aggregate Bond ETF (Ondo Tokenized)",
+ "symbol": "AGGon",
+ "marketCap": "136630691995",
+ "price": "100.726707821448173787",
+ "priceChange24hPercent": "-0.05",
+ "volume24h": "757482021",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x08ce97f3d5cf11e577d091ab048bc5e2eae3fabb",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x94d7754541b829a87321d56121bc544167ac490d",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x94d7754541b829a87321d56121bc544167ac490d-1760923360145.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x94d7754541b829a87321d56121bc544167ac490d-1760923360145.png"
+ ],
+ "name": "Starbucks (Ondo Tokenized)",
+ "symbol": "SBUXon",
+ "marketCap": "119095800000",
+ "price": "105.675635276984189824",
+ "priceChange24hPercent": "-0.61",
+ "volume24h": "481009967.36",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "星巴克",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x94d7754541b829a87321d56121bc544167ac490d",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x94174e3d1335db402dd03a092f7aa7ac2cb32be4",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x94174e3d1335db402dd03a092f7aa7ac2cb32be4-1768292465946.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x94174e3d1335db402dd03a092f7aa7ac2cb32be4-1768292465946.png"
+ ],
+ "name": "United States Oil Fund (Ondo Tokenized)",
+ "symbol": "USOon",
+ "marketCap": "16907435006",
+ "price": "144.2375",
+ "priceChange24hPercent": "1.61",
+ "volume24h": "523317653.04",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "原油ETF",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x94174e3d1335db402dd03a092f7aa7ac2cb32be4",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xf99f8f3a95257d82006183bd524efa7aacc9ef7a",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xf99f8f3a95257d82006183bd524efa7aacc9ef7a-1760923302585.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xf99f8f3a95257d82006183bd524efa7aacc9ef7a-1760923302585.png"
+ ],
+ "name": "PepsiCo (Ondo Tokenized)",
+ "symbol": "PEPon",
+ "marketCap": "188002580000",
+ "price": "141.975016844879616381",
+ "priceChange24hPercent": "-0.41",
+ "volume24h": "845805577.89",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "百事",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0xf99f8f3a95257d82006183bd524efa7aacc9ef7a",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xf69e40069ac227c11459e3f4e8a446b3401616b6",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xf69e40069ac227c11459e3f4e8a446b3401616b6-1760923398719.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xf69e40069ac227c11459e3f4e8a446b3401616b6-1760923398719.png"
+ ],
+ "name": "iShares 20+ Year Treasury Bond ETF (Ondo Tokenized)",
+ "symbol": "TLTon",
+ "marketCap": "41558996997",
+ "price": "85.978427962124070646",
+ "priceChange24hPercent": "0.16",
+ "volume24h": "1364023798.4499998",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "20年国债ETF",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0xf69e40069ac227c11459e3f4e8a446b3401616b6",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x93fac02b22b6743423381d163aec418178019b7a",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x93fac02b22b6743423381d163aec418178019b7a-1760923074552.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x93fac02b22b6743423381d163aec418178019b7a-1760923074552.png"
+ ],
+ "name": "Figma (Ondo Tokenized)",
+ "symbol": "FIGon",
+ "price": "-",
+ "priceChange24hPercent": "-",
+ "communityRecognized": false,
+ "key": "evm--56:0x93fac02b22b6743423381d163aec418178019b7a",
+ "kind": "token",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x99e01f02d66455bb106d91d469c9eaf6ab4904f6",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x99e01f02d66455bb106d91d469c9eaf6ab4904f6-1760923354737.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x99e01f02d66455bb106d91d469c9eaf6ab4904f6-1760923354737.png"
+ ],
+ "name": "Sharplink Gaming (Ondo Tokenized)",
+ "symbol": "SBETon",
+ "marketCap": "1711340120",
+ "price": "8.798824",
+ "priceChange24hPercent": "1.6",
+ "volume24h": "54330194.519999996",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "SharpLink博彩",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x99e01f02d66455bb106d91d469c9eaf6ab4904f6",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x52ad57a7ea642e99a892afc79e937b383f1b59e9",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x52ad57a7ea642e99a892afc79e937b383f1b59e9-1768032941245.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x52ad57a7ea642e99a892afc79e937b383f1b59e9-1768032941245.png"
+ ],
+ "name": "BitMine Immersion Technologies (Ondo Tokenized)",
+ "symbol": "BMNRon",
+ "marketCap": "14222332846",
+ "price": "25.220087",
+ "priceChange24hPercent": "0.99",
+ "volume24h": "1155029873.9099998",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "BitMine",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x52ad57a7ea642e99a892afc79e937b383f1b59e9",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xd04a2bb053277721a8321d7441eed5b42fdf7250",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xd04a2bb053277721a8321d7441eed5b42fdf7250-1761705848977.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xd04a2bb053277721a8321d7441eed5b42fdf7250-1761705848977.png"
+ ],
+ "name": "Salesforce (Ondo Tokenized)",
+ "symbol": "CRMon",
+ "marketCap": "212309370000",
+ "price": "257.487920522776546585",
+ "priceChange24hPercent": "-1.21",
+ "volume24h": "2679425388.3900003",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "赛富时",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0xd04a2bb053277721a8321d7441eed5b42fdf7250",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x4da12f47578ef89c76179b760c778e70b668f80b",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x4da12f47578ef89c76179b760c778e70b668f80b-1760923344446.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x4da12f47578ef89c76179b760c778e70b668f80b-1760923344446.png"
+ ],
+ "name": "Reddit (Ondo Tokenized)",
+ "symbol": "RDDTon",
+ "marketCap": "29734946936",
+ "price": "154.419048",
+ "priceChange24hPercent": "0.05",
+ "volume24h": "429786803.52000004",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "红迪",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x4da12f47578ef89c76179b760c778e70b668f80b",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x6e3e077a6c0e3c27fd6d00b97387d9b7bd451bab",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x6e3e077a6c0e3c27fd6d00b97387d9b7bd451bab-1760923154598.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x6e3e077a6c0e3c27fd6d00b97387d9b7bd451bab-1760923154598.png"
+ ],
+ "name": "Intuit (Ondo Tokenized)",
+ "symbol": "INTUon",
+ "marketCap": "91005759900",
+ "price": "332.51646606263590823",
+ "priceChange24hPercent": "-0.75",
+ "volume24h": "1177837182.6",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x6e3e077a6c0e3c27fd6d00b97387d9b7bd451bab",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xeb19c13c54b1cd48afc62f6503375e92d5f1e856",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xeb19c13c54b1cd48afc62f6503375e92d5f1e856-1760923271194.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xeb19c13c54b1cd48afc62f6503375e92d5f1e856-1760923271194.png"
+ ],
+ "name": "ServiceNow (Ondo Tokenized)",
+ "symbol": "NOWon",
+ "marketCap": "146043346120",
+ "price": "699.30488",
+ "priceChange24hPercent": "-1.05",
+ "volume24h": "1736762600.4399998",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "ServiceNow",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0xeb19c13c54b1cd48afc62f6503375e92d5f1e856",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x138ed6833ff4e8811e1fea0d005e13726c8886f9",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x138ed6833ff4e8811e1fea0d005e13726c8886f9-1760923381351.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x138ed6833ff4e8811e1fea0d005e13726c8886f9-1760923381351.png"
+ ],
+ "name": "Snowflake (Ondo Tokenized)",
+ "symbol": "SNOWon",
+ "marketCap": "116866588000",
+ "price": "337.2775",
+ "priceChange24hPercent": "-0.25",
+ "volume24h": "2842981049.56",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "雪花",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x138ed6833ff4e8811e1fea0d005e13726c8886f9",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xa528caaa2f96090e379d43f90834c75df54d6e74",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xa528caaa2f96090e379d43f90834c75df54d6e74-1760923148597.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xa528caaa2f96090e379d43f90834c75df54d6e74-1760923148597.png"
+ ],
+ "name": "Intel (Ondo Tokenized)",
+ "symbol": "INTCon",
+ "marketCap": "483215175763",
+ "price": "100.597692",
+ "priceChange24hPercent": "1.6",
+ "volume24h": "9355284335",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "英特尔",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0xa528caaa2f96090e379d43f90834c75df54d6e74",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xc142ba8ccd36d80c3a001342fb83e4c3d218a873",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xc142ba8ccd36d80c3a001342fb83e4c3d218a873-1760923376180.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xc142ba8ccd36d80c3a001342fb83e4c3d218a873-1760923376180.png"
+ ],
+ "name": "Super Micro Computer (Ondo Tokenized)",
+ "symbol": "SMCIon",
+ "marketCap": "25609702070",
+ "price": "40.042662",
+ "priceChange24hPercent": "1.47",
+ "volume24h": "2123337279.4800003",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "超微电脑",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0xc142ba8ccd36d80c3a001342fb83e4c3d218a873",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x274b0cb6db9473245a31cdea9b789786f4108e4b",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x274b0cb6db9473245a31cdea9b789786f4108e4b-1768464730010.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x274b0cb6db9473245a31cdea9b789786f4108e4b-1768464730010.png"
+ ],
+ "name": "Caterpillar (Ondo Tokenized)",
+ "symbol": "CATon",
+ "marketCap": "374930879780",
+ "price": "824.840862789310440651",
+ "priceChange24hPercent": "0.98",
+ "volume24h": "1620957440.3000002",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "卡特彼勒",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x274b0cb6db9473245a31cdea9b789786f4108e4b",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x5ecc352c4640f1d26bd231dbbd171f40f7d0eec6",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x5ecc352c4640f1d26bd231dbbd171f40f7d0eec6-1767888045927.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x5ecc352c4640f1d26bd231dbbd171f40f7d0eec6-1767888045927.png"
+ ],
+ "name": "Applied Materials (Ondo Tokenized)",
+ "symbol": "AMATon",
+ "marketCap": "361021096890",
+ "price": "468.39278701627463619",
+ "priceChange24hPercent": "2.68",
+ "volume24h": "2735913224.0099998",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "应用材料",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x5ecc352c4640f1d26bd231dbbd171f40f7d0eec6",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xd7df5863a3e742f0c767768cdfcb63f09e0422f6",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xd7df5863a3e742f0c767768cdfcb63f09e0422f6-1760923233924.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xd7df5863a3e742f0c767768cdfcb63f09e0422f6-1760923233924.png"
+ ],
+ "name": "Meta Platforms (Ondo Tokenized)",
+ "symbol": "METAon",
+ "marketCap": "1571213291779",
+ "price": "614.555295144030774555",
+ "priceChange24hPercent": "-0.02",
+ "volume24h": "9847481192.01",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "Meta",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0xd7df5863a3e742f0c767768cdfcb63f09e0422f6",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x4693f6f5ef257381a28afd0673e64d8b32d5c6ad",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x4693f6f5ef257381a28afd0673e64d8b32d5c6ad-1760923111457.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x4693f6f5ef257381a28afd0673e64d8b32d5c6ad-1760923111457.png"
+ ],
+ "name": "Hims & Hers Health (Ondo Tokenized)",
+ "symbol": "HIMSon",
+ "marketCap": "6181546800",
+ "price": "27.746",
+ "priceChange24hPercent": "-0.21",
+ "volume24h": "182854493.73000002",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "Hims & Hers",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x4693f6f5ef257381a28afd0673e64d8b32d5c6ad",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xb034f6cb52b7f2fd5a7eeeffca6b9adcd6b9a6f6",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xb034f6cb52b7f2fd5a7eeeffca6b9adcd6b9a6f6-1760922980249.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xb034f6cb52b7f2fd5a7eeeffca6b9adcd6b9a6f6-1760922980249.png"
+ ],
+ "name": "ASML Holding NV (Ondo Tokenized)",
+ "symbol": "ASMLon",
+ "marketCap": "660945604406",
+ "price": "1758.414946497724440837",
+ "priceChange24hPercent": "2.21",
+ "volume24h": "2211546975.36",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "阿斯麦",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0xb034f6cb52b7f2fd5a7eeeffca6b9adcd6b9a6f6",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x8fd70ee385f470c8d6fda2d93a4e49c849bac6a6",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x8fd70ee385f470c8d6fda2d93a4e49c849bac6a6-1767883597793.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x8fd70ee385f470c8d6fda2d93a4e49c849bac6a6-1767883597793.png"
+ ],
+ "name": "IREN (Ondo Tokenized)",
+ "symbol": "IRENon",
+ "marketCap": "15944391045",
+ "price": "45.389089",
+ "priceChange24hPercent": "2.29",
+ "volume24h": "1620373503.24",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "IREN",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x8fd70ee385f470c8d6fda2d93a4e49c849bac6a6",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xf3e82ea164cb344b2b11bad4c24b0ea4f7ba4714",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xf3e82ea164cb344b2b11bad4c24b0ea4f7ba4714-1767945976873.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xf3e82ea164cb344b2b11bad4c24b0ea4f7ba4714-1767945976873.png"
+ ],
+ "name": "PDD Holdings (Ondo Tokenized)",
+ "symbol": "PDDon",
+ "marketCap": "117017422072",
+ "price": "81.560326",
+ "priceChange24hPercent": "-0.94",
+ "volume24h": "382935002.09999996",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "拼多多",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0xf3e82ea164cb344b2b11bad4c24b0ea4f7ba4714",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x3fcd741646a9790635b938cdb69af5df356cbaab",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x3fcd741646a9790635b938cdb69af5df356cbaab-1768118974994.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x3fcd741646a9790635b938cdb69af5df356cbaab-1768118974994.png"
+ ],
+ "name": "abrdn Physical Palladium Shares ETF (Ondo Tokenized)",
+ "symbol": "PALLon",
+ "marketCap": "662462421",
+ "price": "127.025",
+ "priceChange24hPercent": "1.16",
+ "volume24h": "18618111.93",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "钯金ETF",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x3fcd741646a9790635b938cdb69af5df356cbaab",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x5acf40056ed51c8bbcd1b125ef803581ac89a627",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x5acf40056ed51c8bbcd1b125ef803581ac89a627-1760923085045.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x5acf40056ed51c8bbcd1b125ef803581ac89a627-1760923085045.png"
+ ],
+ "name": "Futu Holdings (Ondo Tokenized)",
+ "symbol": "FUTUon",
+ "marketCap": "16991222660",
+ "price": "123.422764240887776543",
+ "priceChange24hPercent": "-0.25",
+ "volume24h": "88127276.5",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "富途控股",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x5acf40056ed51c8bbcd1b125ef803581ac89a627",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xd226d8170ee38793430c7dec6903df4b818bb74c",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xd226d8170ee38793430c7dec6903df4b818bb74c-1760923212125.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xd226d8170ee38793430c7dec6903df4b818bb74c-1760923212125.png"
+ ],
+ "name": "MARA Holdings (Ondo Tokenized)",
+ "symbol": "MARAon",
+ "price": "-",
+ "priceChange24hPercent": "-",
+ "communityRecognized": false,
+ "key": "evm--56:0xd226d8170ee38793430c7dec6903df4b818bb74c",
+ "kind": "token",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x08a513779f46ffb7a34f16094a94016d010128a8",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x08a513779f46ffb7a34f16094a94016d010128a8-1760923281600.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x08a513779f46ffb7a34f16094a94016d010128a8-1760923281600.png"
+ ],
+ "name": "Novo Nordisk (Ondo Tokenized)",
+ "symbol": "NVOon",
+ "marketCap": "206932361506",
+ "price": "47.900708616347068423",
+ "priceChange24hPercent": "--",
+ "volume24h": "285153974.40000004",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "诺和诺德",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x08a513779f46ffb7a34f16094a94016d010128a8",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x22092c94a91d019ad15536725598b0a6be0a73c0",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x22092c94a91d019ad15536725598b0a6be0a73c0-1760923137786.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x22092c94a91d019ad15536725598b0a6be0a73c0-1760923137786.png"
+ ],
+ "name": "iShares Core MSCI Emerging Markets ETF (Ondo Tokenized)",
+ "symbol": "IEMGon",
+ "marketCap": "171167801924",
+ "price": "85.994643507231392039",
+ "priceChange24hPercent": "0.89",
+ "volume24h": "577001471.9000001",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "核心新兴市场ETF",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x22092c94a91d019ad15536725598b0a6be0a73c0",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x995add4ba29a628a57930a8a185c62ca044ec090",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x995add4ba29a628a57930a8a185c62ca044ec090-1760923223388.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x995add4ba29a628a57930a8a185c62ca044ec090-1760923223388.png"
+ ],
+ "name": "McDonald's (Ondo Tokenized)",
+ "symbol": "MCDon",
+ "marketCap": "181669279140",
+ "price": "261.414735153891492023",
+ "priceChange24hPercent": "-0.12",
+ "volume24h": "1069340837.13",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "麦当劳",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x995add4ba29a628a57930a8a185c62ca044ec090",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x1cde419fae0ef7f7931ae3e29e5f411c8c5e5fa1",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x1cde419fae0ef7f7931ae3e29e5f411c8c5e5fa1-1760923609945.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x1cde419fae0ef7f7931ae3e29e5f411c8c5e5fa1-1760923609945.png"
+ ],
+ "name": "Visa (Ondo Tokenized)",
+ "symbol": "Von",
+ "marketCap": "700273397430",
+ "price": "374.009002377026934042",
+ "priceChange24hPercent": "-0.75",
+ "volume24h": "1730302929.6",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "维萨",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x1cde419fae0ef7f7931ae3e29e5f411c8c5e5fa1",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x1501ec83ffef405b4331cc4f73277a40fb0c627d",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x1501ec83ffef405b4331cc4f73277a40fb0c627d-1760923239312.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x1501ec83ffef405b4331cc4f73277a40fb0c627d-1760923239312.png"
+ ],
+ "name": "Marvell Technology (Ondo Tokenized)",
+ "symbol": "MRVLon",
+ "marketCap": "195777489300",
+ "price": "229.524776103399458333",
+ "priceChange24hPercent": "2.41",
+ "volume24h": "4743302231.1",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "迈威尔科技",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x1501ec83ffef405b4331cc4f73277a40fb0c627d",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x527c6436e1eaa4f2065cde4090f798cb5d031dd6",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x527c6436e1eaa4f2065cde4090f798cb5d031dd6-1760922974777.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x527c6436e1eaa4f2065cde4090f798cb5d031dd6-1760922974777.png"
+ ],
+ "name": "Arm Holdings plc (Ondo Tokenized)",
+ "symbol": "ARMon",
+ "marketCap": "269231759259",
+ "price": "261.0225",
+ "priceChange24hPercent": "2.2",
+ "volume24h": "1041739741.08",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "安谋",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x527c6436e1eaa4f2065cde4090f798cb5d031dd6",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x0d4f9b25f81163fb4840ba4f434672543823000c",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x0d4f9b25f81163fb4840ba4f434672543823000c-1760923106279.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x0d4f9b25f81163fb4840ba4f434672543823000c-1760923106279.png"
+ ],
+ "name": "Goldman Sachs (Ondo Tokenized)",
+ "symbol": "GSon",
+ "marketCap": "306397220270",
+ "price": "1047.374865547024001893",
+ "priceChange24hPercent": "-0.4",
+ "volume24h": "1483473666.86",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "高盛",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x0d4f9b25f81163fb4840ba4f434672543823000c",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x60a8f8e05200ff73afde9e2cae819bf1605f0bdd",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x60a8f8e05200ff73afde9e2cae819bf1605f0bdd-1760923228476.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x60a8f8e05200ff73afde9e2cae819bf1605f0bdd-1760923228476.png"
+ ],
+ "name": "MercadoLibre (Ondo Tokenized)",
+ "symbol": "MELIon",
+ "marketCap": "100297276982",
+ "price": "1967",
+ "priceChange24hPercent": "-0.43",
+ "volume24h": "557770904.9599999",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "美客多",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x60a8f8e05200ff73afde9e2cae819bf1605f0bdd",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x467e59ce5d5fe01686d4a80dd1e1dae13549aa6c",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x467e59ce5d5fe01686d4a80dd1e1dae13549aa6c-1760515402441.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x467e59ce5d5fe01686d4a80dd1e1dae13549aa6c-1760515402441.png"
+ ],
+ "name": "Baidu (Ondo Tokenized)",
+ "symbol": "BIDUon",
+ "marketCap": "33832211369",
+ "price": "92.292027",
+ "priceChange24hPercent": "-7.17",
+ "volume24h": "256503090.06",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "百度",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x467e59ce5d5fe01686d4a80dd1e1dae13549aa6c",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xc4a88a72b848255fd24da3c1ad6755d980535fb1",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xc4a88a72b848255fd24da3c1ad6755d980535fb1-1760923349554.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xc4a88a72b848255fd24da3c1ad6755d980535fb1-1760923349554.png"
+ ],
+ "name": "Riot Platforms (Ondo Tokenized)",
+ "symbol": "RIOTon",
+ "marketCap": "8243696814",
+ "price": "21.664",
+ "priceChange24hPercent": "-0.09",
+ "volume24h": "335036003.2",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "Riot平台",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0xc4a88a72b848255fd24da3c1ad6755d980535fb1",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x0eaa1a75bd682a5669ab2371a559fbd039c6b9eb",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x0eaa1a75bd682a5669ab2371a559fbd039c6b9eb-1760923292006.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x0eaa1a75bd682a5669ab2371a559fbd039c6b9eb-1760923292006.png"
+ ],
+ "name": "Palo Alto Networks (Ondo Tokenized)",
+ "symbol": "PANWon",
+ "marketCap": "271606900000",
+ "price": "333.65",
+ "priceChange24hPercent": "0.1",
+ "volume24h": "1879381111.84",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "帕洛阿尔托网络",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x0eaa1a75bd682a5669ab2371a559fbd039c6b9eb",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x4d209d275e3492ac08497a7a42915899c4dd5e86",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x4d209d275e3492ac08497a7a42915899c4dd5e86-1768378192726.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x4d209d275e3492ac08497a7a42915899c4dd5e86-1768378192726.png"
+ ],
+ "name": "Exxon Mobil (Ondo Tokenized)",
+ "symbol": "XOMon",
+ "marketCap": "660875591600",
+ "price": "161.929674995637777397",
+ "priceChange24hPercent": "0.06",
+ "volume24h": "2537206808.78",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "埃克森美孚",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x4d209d275e3492ac08497a7a42915899c4dd5e86",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x68b07cef227cea1b2b6683921c8c825cd5c69ec7",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x68b07cef227cea1b2b6683921c8c825cd5c69ec7-1773890434386.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x68b07cef227cea1b2b6683921c8c825cd5c69ec7-1773890434386.png"
+ ],
+ "name": "iShares Bitcoin Trust (Ondo Tokenized)",
+ "symbol": "IBITON",
+ "marketCap": "75421432839",
+ "price": "44.648189",
+ "priceChange24hPercent": "-1.02",
+ "volume24h": "2361768351.6499996",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "贝莱德比特币ETF",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x68b07cef227cea1b2b6683921c8c825cd5c69ec7",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x1104eb7e85e25eb45f88e638b0c27a06c1a91cb2",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x1104eb7e85e25eb45f88e638b0c27a06c1a91cb2-1760923159261.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x1104eb7e85e25eb45f88e638b0c27a06c1a91cb2-1760923159261.png"
+ ],
+ "name": "iShares Core S&P 500 ETF (Ondo Tokenized ETF)",
+ "symbol": "IVVON",
+ "marketCap": "896778097376",
+ "price": "780.425487329284924111",
+ "priceChange24hPercent": "0.05",
+ "volume24h": "7974410540.32",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "安硕标普500",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x1104eb7e85e25eb45f88e638b0c27a06c1a91cb2",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xcf9caf83053213c44dd7027db3e1e4ac98e55f8f",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xcf9caf83053213c44dd7027db3e1e4ac98e55f8f-1760976491888.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xcf9caf83053213c44dd7027db3e1e4ac98e55f8f-1760976491888.png"
+ ],
+ "name": "iShares Core S&P Total US Stock Market ETF (Ondo Tokenized ETF)",
+ "symbol": "ITOTON",
+ "marketCap": "95625104840",
+ "price": "169.804819587832307416",
+ "priceChange24hPercent": "--",
+ "volume24h": "169106458.23999998",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "美股全市场ETF",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0xcf9caf83053213c44dd7027db3e1e4ac98e55f8f",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x2ac26ec236df5d1d2ad1a6dd4e448a90e45dc35d",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x2ac26ec236df5d1d2ad1a6dd4e448a90e45dc35d-1760923397223.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x2ac26ec236df5d1d2ad1a6dd4e448a90e45dc35d-1760923397223.png"
+ ],
+ "name": "iShares TIPS Bond ETF (Ondo Tokenized ETF)",
+ "symbol": "TIPON",
+ "marketCap": "14720410837",
+ "price": "111.376087623270475341",
+ "priceChange24hPercent": "0.03",
+ "volume24h": "108138754.22",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x2ac26ec236df5d1d2ad1a6dd4e448a90e45dc35d",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x38b9a53bfdc5dba58a29bd6992341927c2fca637",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x38b9a53bfdc5dba58a29bd6992341927c2fca637-1760923069433.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x38b9a53bfdc5dba58a29bd6992341927c2fca637-1760923069433.png"
+ ],
+ "name": "iShares MSCI EAFE ETF (Ondo Tokenized ETF)",
+ "symbol": "EFAON",
+ "marketCap": "78896005005",
+ "price": "110.898588433796849651",
+ "priceChange24hPercent": "0.16",
+ "volume24h": "613264467.1999999",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x38b9a53bfdc5dba58a29bd6992341927c2fca637",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x40755f06ab7f8de1ab3a9413b1ef562d63de19b1",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x40755f06ab7f8de1ab3a9413b1ef562d63de19b1-1760923164409.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x40755f06ab7f8de1ab3a9413b1ef562d63de19b1-1760923164409.png"
+ ],
+ "name": "iShares Russell 1000 Growth ETF (Ondo Tokenized ETF)",
+ "symbol": "IWFON",
+ "marketCap": "134439059389",
+ "price": "494.964782503527050629",
+ "priceChange24hPercent": "0.25",
+ "volume24h": "387028445.78999996",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x40755f06ab7f8de1ab3a9413b1ef562d63de19b1",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x00c81d35eddf44c75d4db9e07bdcdc236eb0ebcf",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x00c81d35eddf44c75d4db9e07bdcdc236eb0ebcf-1760923060271.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x00c81d35eddf44c75d4db9e07bdcdc236eb0ebcf-1760923060271.png"
+ ],
+ "name": "iShares MSCI Emerging Markets ETF (Ondo Tokenized ETF)",
+ "symbol": "EEMON",
+ "marketCap": "32146260773",
+ "price": "70.550489448583953469",
+ "priceChange24hPercent": "1.26",
+ "volume24h": "1506651730.8",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "新兴市场ETF",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x00c81d35eddf44c75d4db9e07bdcdc236eb0ebcf",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x01b5a4ac600be98448dbefbb78bcdf38262552cc",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x01b5a4ac600be98448dbefbb78bcdf38262552cc-1768118550219.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x01b5a4ac600be98448dbefbb78bcdf38262552cc-1768118550219.png"
+ ],
+ "name": "Occidental Petroleum (Ondo Tokenized)",
+ "symbol": "OXYON",
+ "marketCap": "59717867448",
+ "price": "60.427368985063029401",
+ "priceChange24hPercent": "--",
+ "volume24h": "400488654.56",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "西方石油",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x01b5a4ac600be98448dbefbb78bcdf38262552cc",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xf54b94ea21e1da5d51ef00fd4502225e5394f874",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xf54b94ea21e1da5d51ef00fd4502225e5394f874-1760923174798.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xf54b94ea21e1da5d51ef00fd4502225e5394f874-1760923174798.png"
+ ],
+ "name": "iShares Russell 2000 Value ETF (Ondo Tokenized ETF)",
+ "symbol": "IWNON",
+ "marketCap": "14510541399",
+ "price": "226.016737142534794549",
+ "priceChange24hPercent": "-0.45",
+ "volume24h": "144788928.9",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0xf54b94ea21e1da5d51ef00fd4502225e5394f874",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x8a83c31d6751833b4940b6e871c48d9a15a07b46",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x8a83c31d6751833b4940b6e871c48d9a15a07b46-1760923307953.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x8a83c31d6751833b4940b6e871c48d9a15a07b46-1760923307953.png"
+ ],
+ "name": "Pfizer (Ondo Tokenized Stock)",
+ "symbol": "PFEON",
+ "marketCap": "162149068000",
+ "price": "30.045669965608379961",
+ "priceChange24hPercent": "-0.39",
+ "volume24h": "669415327.65",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "辉瑞",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x8a83c31d6751833b4940b6e871c48d9a15a07b46",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x500eafc69b68acd6f27064f9b75f1c7d91cc4d9f",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x500eafc69b68acd6f27064f9b75f1c7d91cc4d9f-1760923169588.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x500eafc69b68acd6f27064f9b75f1c7d91cc4d9f-1760923169588.png"
+ ],
+ "name": "iShares Russell 2000 ETF (Ondo Tokenized ETF)",
+ "symbol": "IWMON",
+ "marketCap": "81417408119",
+ "price": "297.748095366553568352",
+ "priceChange24hPercent": "0.02",
+ "volume24h": "4113713428.1099997",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "罗素2000 ETF",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x500eafc69b68acd6f27064f9b75f1c7d91cc4d9f",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xd85d4ce29b4ca361ff72ef0e53d6236e334c5db6",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xd85d4ce29b4ca361ff72ef0e53d6236e334c5db6-1768118835493.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xd85d4ce29b4ca361ff72ef0e53d6236e334c5db6-1768118835493.png"
+ ],
+ "name": "Ondas Holdings (Ondo Tokenized)",
+ "symbol": "ONDSON",
+ "price": "-",
+ "priceChange24hPercent": "-",
+ "communityRecognized": false,
+ "key": "evm--56:0xd85d4ce29b4ca361ff72ef0e53d6236e334c5db6",
+ "kind": "token",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x167e93a849a0cc479769132552b99aa1cfa0948c",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x167e93a849a0cc479769132552b99aa1cfa0948c-1760923143055.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x167e93a849a0cc479769132552b99aa1cfa0948c-1760923143055.png"
+ ],
+ "name": "iShares Core S&P MidCap ETF (Ondo Tokenized ETF)",
+ "symbol": "IJHON",
+ "marketCap": "123402837938",
+ "price": "76.53881613572147098",
+ "priceChange24hPercent": "0.14",
+ "volume24h": "360950049.75",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x167e93a849a0cc479769132552b99aa1cfa0948c",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xa7d1e886acf66ec0656df2decb4b7c893a3bab4c",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xa7d1e886acf66ec0656df2decb4b7c893a3bab4c-1760923620884.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xa7d1e886acf66ec0656df2decb4b7c893a3bab4c-1760923620884.png"
+ ],
+ "name": "Walmart (Ondo Tokenized Stock)",
+ "symbol": "WMTON",
+ "marketCap": "852628691200",
+ "price": "107.242391409320952249",
+ "priceChange24hPercent": "-0.47",
+ "volume24h": "2200706170.08",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "沃尔玛",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0xa7d1e886acf66ec0656df2decb4b7c893a3bab4c",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x2b1d5cdecc356530a746c5754231efaeaca64022",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x2b1d5cdecc356530a746c5754231efaeaca64022-1760923297458.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x2b1d5cdecc356530a746c5754231efaeaca64022-1760923297458.png"
+ ],
+ "name": "Petrobras (Ondo Tokenized Stock)",
+ "symbol": "PBRON",
+ "marketCap": "129660646415",
+ "price": "20.856197511015279798",
+ "priceChange24hPercent": "-0.22",
+ "volume24h": "377829496.24",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "巴西石油",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x2b1d5cdecc356530a746c5754231efaeaca64022",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xecc1299f183b6a720a6f4729bf24f82cd8d50828",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xecc1299f183b6a720a6f4729bf24f82cd8d50828-1760923402510.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xecc1299f183b6a720a6f4729bf24f82cd8d50828-1760923402510.png"
+ ],
+ "name": "Toyota (Ondo Tokenized Stock)",
+ "symbol": "TMON",
+ "marketCap": "233414630448",
+ "price": "197.584090494197418125",
+ "priceChange24hPercent": "1.15",
+ "volume24h": "64367650.27",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "丰田",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0xecc1299f183b6a720a6f4729bf24f82cd8d50828",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x24f5471183ea549987f245d6ce236b6108869c92",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x24f5471183ea549987f245d6ce236b6108869c92-1760923012085.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x24f5471183ea549987f245d6ce236b6108869c92-1760923012085.png"
+ ],
+ "name": "Blackrock, Inc. (Ondo Tokenized Stock)",
+ "symbol": "BLKON",
+ "marketCap": "173949338550",
+ "price": "1132.730600298929983859",
+ "priceChange24hPercent": "-0.52",
+ "volume24h": "460986228.95",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "贝莱德",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x24f5471183ea549987f245d6ce236b6108869c92",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xe8ff70859ce4cbd72e4352b4fb45f5bf39d07464",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xe8ff70859ce4cbd72e4352b4fb45f5bf39d07464-1760923127124.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xe8ff70859ce4cbd72e4352b4fb45f5bf39d07464-1760923127124.png"
+ ],
+ "name": "IBM (Ondo Tokenized Stock)",
+ "symbol": "IBMON",
+ "marketCap": "221297855260",
+ "price": "239.939607742091185163",
+ "priceChange24hPercent": "-0.04",
+ "volume24h": "717698173.8499999",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "国际商业机器",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0xe8ff70859ce4cbd72e4352b4fb45f5bf39d07464",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x4fd67cb8cfedc718bac984b5936abe3330d0a2a4",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x4fd67cb8cfedc718bac984b5936abe3330d0a2a4-1773890603767.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x4fd67cb8cfedc718bac984b5936abe3330d0a2a4-1773890603767.png"
+ ],
+ "name": "SanDisk (Ondo Tokenized)",
+ "symbol": "SNDKON",
+ "marketCap": "257676165000",
+ "price": "1813.141716",
+ "priceChange24hPercent": "1.53",
+ "volume24h": "28809122580",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "闪迪",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x4fd67cb8cfedc718bac984b5936abe3330d0a2a4",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xe4e12c9cec3e8cae405202a97f66afa695075fa0",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xe4e12c9cec3e8cae405202a97f66afa695075fa0-1760923070917.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xe4e12c9cec3e8cae405202a97f66afa695075fa0-1760923070917.png"
+ ],
+ "name": "Equinix (Ondo Tokenized Stock)",
+ "symbol": "EQIXON",
+ "marketCap": "102221893262",
+ "price": "1034.973342393173569538",
+ "priceChange24hPercent": "-1.63",
+ "volume24h": "357010103.78000003",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0xe4e12c9cec3e8cae405202a97f66afa695075fa0",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x5151a22421ed4277f1e4ca4785a07b035d548a36",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x5151a22421ed4277f1e4ca4785a07b035d548a36-1760923090436.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x5151a22421ed4277f1e4ca4785a07b035d548a36-1760923090436.png"
+ ],
+ "name": "General Electric (Ondo Tokenized Stock)",
+ "symbol": "GEON",
+ "marketCap": "349783074383",
+ "price": "337.589114914645847783",
+ "priceChange24hPercent": "-0.19",
+ "volume24h": "825014560.16",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "通用电气",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x5151a22421ed4277f1e4ca4785a07b035d548a36",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xf21132a811ad1a878e21af60f64d4e690c9daa42",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xf21132a811ad1a878e21af60f64d4e690c9daa42-1761748250710.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xf21132a811ad1a878e21af60f64d4e690c9daa42-1761748250710.png"
+ ],
+ "name": "Boeing (Ondo Tokenized Stock)",
+ "symbol": "BAON",
+ "price": "-",
+ "priceChange24hPercent": "-",
+ "communityRecognized": false,
+ "key": "evm--56:0xf21132a811ad1a878e21af60f64d4e690c9daa42",
+ "kind": "token",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x12b7adc48416a103f63e7e6210f62c81dfb91fd0",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x12b7adc48416a103f63e7e6210f62c81dfb91fd0-1773890376568.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x12b7adc48416a103f63e7e6210f62c81dfb91fd0-1773890376568.png"
+ ],
+ "name": "iShares MSCI South Korea ETF (Ondo Tokenized)",
+ "symbol": "EWYON",
+ "marketCap": "14278571056",
+ "price": "194.898272",
+ "priceChange24hPercent": "3.95",
+ "volume24h": "3455448231.73",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "iShares MSCI韩国ETF",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x12b7adc48416a103f63e7e6210f62c81dfb91fd0",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x34375f826fd3dd4e15f883d4f4786bb45eb705ac",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x34375f826fd3dd4e15f883d4f4786bb45eb705ac-1761313247216.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x34375f826fd3dd4e15f883d4f4786bb45eb705ac-1761313247216.png"
+ ],
+ "name": "Costco (Ondo Tokenized Stock)",
+ "symbol": "COSTON",
+ "marketCap": "406111459460",
+ "price": "918.726163055351801392",
+ "priceChange24hPercent": "-0.23",
+ "volume24h": "1903887561.8",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "开市客",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x34375f826fd3dd4e15f883d4f4786bb45eb705ac",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x629520dee1620def11596f84e85de9f1ff653012",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x629520dee1620def11596f84e85de9f1ff653012-1760923615610.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x629520dee1620def11596f84e85de9f1ff653012-1760923615610.png"
+ ],
+ "name": "Wells Fargo (Ondo Tokenized Stock)",
+ "symbol": "WFCON",
+ "marketCap": "272039040000",
+ "price": "90.828327345333623842",
+ "priceChange24hPercent": "-0.85",
+ "volume24h": "712161682.9599999",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "富国银行",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x629520dee1620def11596f84e85de9f1ff653012",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xef80743f78d98fc2b47a2253b293152ce8b879ba",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xef80743f78d98fc2b47a2253b293152ce8b879ba-1760922268573.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xef80743f78d98fc2b47a2253b293152ce8b879ba-1760922268573.png"
+ ],
+ "name": "Airbnb (Ondo Tokenized Stock)",
+ "symbol": "ABNBON",
+ "marketCap": "107983869660",
+ "price": "181.313333",
+ "priceChange24hPercent": "-0.66",
+ "volume24h": "620194706.78",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "爱彼迎",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0xef80743f78d98fc2b47a2253b293152ce8b879ba",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xfbd4d681c92ead6af0e49950c8b2e47eeacbb2db",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xfbd4d681c92ead6af0e49950c8b2e47eeacbb2db-1760923334398.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xfbd4d681c92ead6af0e49950c8b2e47eeacbb2db-1760923334398.png"
+ ],
+ "name": "Qualcomm (Ondo Tokenized Stock)",
+ "symbol": "QCOMON",
+ "marketCap": "177177000000",
+ "price": "174.693612375015163222",
+ "priceChange24hPercent": "1.84",
+ "volume24h": "1440555484.94",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "高通",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0xfbd4d681c92ead6af0e49950c8b2e47eeacbb2db",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xc008c5f579ec1450f20099c39f587547e27c7523",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xc008c5f579ec1450f20099c39f587547e27c7523-1768185634202.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xc008c5f579ec1450f20099c39f587547e27c7523-1768185634202.png"
+ ],
+ "name": "iShares 0-3 Month Treasury Bond ETF (Ondo Tokenized ETF)",
+ "symbol": "SGOVON",
+ "marketCap": "95942590920",
+ "price": "102.324784764508258885",
+ "priceChange24hPercent": "--",
+ "volume24h": "2053722039.09",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "iShares 0-3个月国债ETF",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0xc008c5f579ec1450f20099c39f587547e27c7523",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x76e39171cb665a35981e744e2ceb7012f76caeac",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x76e39171cb665a35981e744e2ceb7012f76caeac-1773853768684.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x76e39171cb665a35981e744e2ceb7012f76caeac-1773853768684.png"
+ ],
+ "name": "CoreWeave (Ondo Tokenized)",
+ "symbol": "CRWVON",
+ "marketCap": "48752169872",
+ "price": "91.523734",
+ "priceChange24hPercent": "2.73",
+ "volume24h": "1858414200.96",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "CoreWeave",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x76e39171cb665a35981e744e2ceb7012f76caeac",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ }
+ ],
+ "stocks||5m|market__tab__consumer_tech": [
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x390a684ef9cade28a7ad0dfa61ab1eb3842618c4",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x390a684ef9cade28a7ad0dfa61ab1eb3842618c4-1760515427269.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x390a684ef9cade28a7ad0dfa61ab1eb3842618c4-1760515427269.png"
+ ],
+ "name": "Apple (Ondo Tokenized)",
+ "symbol": "AAPLon",
+ "marketCap": "4699513299320",
+ "price": "320.298481855554072365",
+ "priceChange24hPercent": "-0.5",
+ "volume24h": "12673014673.480001",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "苹果",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x390a684ef9cade28a7ad0dfa61ab1eb3842618c4",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x4553cfe1c09f37f38b12dc509f676964e392f8fc",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x4553cfe1c09f37f38b12dc509f676964e392f8fc-1760686410256.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x4553cfe1c09f37f38b12dc509f676964e392f8fc-1760686410256.png"
+ ],
+ "name": "Amazon (Ondo Tokenized)",
+ "symbol": "AMZNon",
+ "marketCap": "2780817921000",
+ "price": "258.279748",
+ "priceChange24hPercent": "-0.11",
+ "volume24h": "7949159751.12",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "亚马逊",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x4553cfe1c09f37f38b12dc509f676964e392f8fc",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x091fc7778e6932d4009b087b191d1ee3bac5729a",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x091fc7778e6932d4009b087b191d1ee3bac5729a-1760923100804.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x091fc7778e6932d4009b087b191d1ee3bac5729a-1760923100804.png"
+ ],
+ "name": "Alphabet Class A (Ondo Tokenized)",
+ "symbol": "GOOGLon",
+ "marketCap": "4096080585860",
+ "price": "338.962258099649311085",
+ "priceChange24hPercent": "-0.2",
+ "volume24h": "7848657585.66",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "谷歌",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x091fc7778e6932d4009b087b191d1ee3bac5729a",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x6bfe75d1ad432050ea973c3a3dcd88f02e2444c3",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x6bfe75d1ad432050ea973c3a3dcd88f02e2444c3-1760923244592.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x6bfe75d1ad432050ea973c3a3dcd88f02e2444c3-1760923244592.png"
+ ],
+ "name": "Microsoft (Ondo Tokenized)",
+ "symbol": "MSFTon",
+ "marketCap": "3710547335000",
+ "price": "499.708647472892879635",
+ "priceChange24hPercent": "-0.72",
+ "volume24h": "9045448472.6",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "微软",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x6bfe75d1ad432050ea973c3a3dcd88f02e2444c3",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x7048f5227b032326cc8dbc53cf3fddd947a2c757",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x7048f5227b032326cc8dbc53cf3fddd947a2c757-1760923261006.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x7048f5227b032326cc8dbc53cf3fddd947a2c757-1760923261006.png"
+ ],
+ "name": "Netflix (Ondo Tokenized)",
+ "symbol": "NFLXon",
+ "marketCap": "325828304922",
+ "price": "778.72424",
+ "priceChange24hPercent": "-0.54",
+ "volume24h": "3144868282.5",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "奈飞",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x7048f5227b032326cc8dbc53cf3fddd947a2c757",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x03e4bd1ea53f1da84513da0319d1f03dd1bbcf93",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x03e4bd1ea53f1da84513da0319d1f03dd1bbcf93-1760923286694.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x03e4bd1ea53f1da84513da0319d1f03dd1bbcf93-1760923286694.png"
+ ],
+ "name": "Oracle (Ondo Tokenized)",
+ "symbol": "ORCLon",
+ "marketCap": "457505050100",
+ "price": "166.481535598340633943",
+ "priceChange24hPercent": "2.21",
+ "volume24h": "4138044844.8500004",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "甲骨文",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x03e4bd1ea53f1da84513da0319d1f03dd1bbcf93",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x2494b603319d4d9f9715c9f4496d9e0364b59d93",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x2494b603319d4d9f9715c9f4496d9e0364b59d93-1760680411667.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x2494b603319d4d9f9715c9f4496d9e0364b59d93-1760680411667.png"
+ ],
+ "name": "Tesla (Ondo Tokenized)",
+ "symbol": "TSLAon",
+ "marketCap": "1398455741268",
+ "price": "356.443455",
+ "priceChange24hPercent": "0.17",
+ "volume24h": "23021647442.719997",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "特斯拉",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x2494b603319d4d9f9715c9f4496d9e0364b59d93",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x34304f2f7cc487eb4186e6d69f5905a613474aa2",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x34304f2f7cc487eb4186e6d69f5905a613474aa2-1761709115472.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x34304f2f7cc487eb4186e6d69f5905a613474aa2-1761709115472.png"
+ ],
+ "name": "Cisco Systems (Ondo Tokenized)",
+ "symbol": "CSCOon",
+ "marketCap": "430404665418",
+ "price": "110.75473913211509356",
+ "priceChange24hPercent": "0.07",
+ "volume24h": "1351570474.8",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "思科",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x34304f2f7cc487eb4186e6d69f5905a613474aa2",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x50356167a4dbc38bea6779c045e24e25facedfdc",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x50356167a4dbc38bea6779c045e24e25facedfdc-1760923391964.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x50356167a4dbc38bea6779c045e24e25facedfdc-1760923391964.png"
+ ],
+ "name": "Spotify (Ondo Tokenized)",
+ "symbol": "SPOTon",
+ "marketCap": "111515040318",
+ "price": "534.766667",
+ "priceChange24hPercent": "-1.69",
+ "volume24h": "742202629.56",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "Spotify",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x50356167a4dbc38bea6779c045e24e25facedfdc",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xe6837794fbc6dd024733a1a31f86061296fa2752",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xe6837794fbc6dd024733a1a31f86061296fa2752-1767888357216.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xe6837794fbc6dd024733a1a31f86061296fa2752-1767888357216.png"
+ ],
+ "name": "CrowdStrike (Ondo Tokenized)",
+ "symbol": "CRWDon",
+ "marketCap": "216991052568",
+ "price": "854.08",
+ "priceChange24hPercent": "0.11",
+ "volume24h": "1796128480.1",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "CrowdStrike",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0xe6837794fbc6dd024733a1a31f86061296fa2752",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x43d0b380c33cd004a6a69abd61843881a2de4113",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x43d0b380c33cd004a6a69abd61843881a2de4113-1760923365671.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x43d0b380c33cd004a6a69abd61843881a2de4113-1760923365671.png"
+ ],
+ "name": "Shopify (Ondo Tokenized)",
+ "symbol": "SHOPon",
+ "marketCap": "188276717956",
+ "price": "143.536364",
+ "priceChange24hPercent": "-1.23",
+ "volume24h": "1001972823.39",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "Shopify",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x43d0b380c33cd004a6a69abd61843881a2de4113",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x7af44d51d1fb88c5b74fc71d3cba649bb8099d14",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x7af44d51d1fb88c5b74fc71d3cba649bb8099d14-1760922282064.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x7af44d51d1fb88c5b74fc71d3cba649bb8099d14-1760922282064.png"
+ ],
+ "name": "Accenture (Ondo Tokenized)",
+ "symbol": "ACNon",
+ "marketCap": "114261830592",
+ "price": "190.128369050462170162",
+ "priceChange24hPercent": "-1.11",
+ "volume24h": "906653876.64",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "埃森哲",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x7af44d51d1fb88c5b74fc71d3cba649bb8099d14",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xeb19c13c54b1cd48afc62f6503375e92d5f1e856",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xeb19c13c54b1cd48afc62f6503375e92d5f1e856-1760923271194.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xeb19c13c54b1cd48afc62f6503375e92d5f1e856-1760923271194.png"
+ ],
+ "name": "ServiceNow (Ondo Tokenized)",
+ "symbol": "NOWon",
+ "marketCap": "146043346120",
+ "price": "699.30488",
+ "priceChange24hPercent": "-1.05",
+ "volume24h": "1736762600.4399998",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "ServiceNow",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0xeb19c13c54b1cd48afc62f6503375e92d5f1e856",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xd7df5863a3e742f0c767768cdfcb63f09e0422f6",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xd7df5863a3e742f0c767768cdfcb63f09e0422f6-1760923233924.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xd7df5863a3e742f0c767768cdfcb63f09e0422f6-1760923233924.png"
+ ],
+ "name": "Meta Platforms (Ondo Tokenized)",
+ "symbol": "METAon",
+ "marketCap": "1571213291779",
+ "price": "614.555295144030774555",
+ "priceChange24hPercent": "-0.02",
+ "volume24h": "9847481192.01",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "Meta",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0xd7df5863a3e742f0c767768cdfcb63f09e0422f6",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x995add4ba29a628a57930a8a185c62ca044ec090",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x995add4ba29a628a57930a8a185c62ca044ec090-1760923223388.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x995add4ba29a628a57930a8a185c62ca044ec090-1760923223388.png"
+ ],
+ "name": "McDonald's (Ondo Tokenized)",
+ "symbol": "MCDon",
+ "marketCap": "181669279140",
+ "price": "261.414735153891492023",
+ "priceChange24hPercent": "-0.12",
+ "volume24h": "1069340837.13",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "麦当劳",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x995add4ba29a628a57930a8a185c62ca044ec090",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x0eaa1a75bd682a5669ab2371a559fbd039c6b9eb",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x0eaa1a75bd682a5669ab2371a559fbd039c6b9eb-1760923292006.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x0eaa1a75bd682a5669ab2371a559fbd039c6b9eb-1760923292006.png"
+ ],
+ "name": "Palo Alto Networks (Ondo Tokenized)",
+ "symbol": "PANWon",
+ "marketCap": "271606900000",
+ "price": "333.65",
+ "priceChange24hPercent": "0.1",
+ "volume24h": "1879381111.84",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "帕洛阿尔托网络",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x0eaa1a75bd682a5669ab2371a559fbd039c6b9eb",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xa7d1e886acf66ec0656df2decb4b7c893a3bab4c",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xa7d1e886acf66ec0656df2decb4b7c893a3bab4c-1760923620884.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xa7d1e886acf66ec0656df2decb4b7c893a3bab4c-1760923620884.png"
+ ],
+ "name": "Walmart (Ondo Tokenized Stock)",
+ "symbol": "WMTON",
+ "marketCap": "852628691200",
+ "price": "107.242391409320952249",
+ "priceChange24hPercent": "-0.47",
+ "volume24h": "2200706170.08",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "沃尔玛",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0xa7d1e886acf66ec0656df2decb4b7c893a3bab4c",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xecc1299f183b6a720a6f4729bf24f82cd8d50828",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xecc1299f183b6a720a6f4729bf24f82cd8d50828-1760923402510.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xecc1299f183b6a720a6f4729bf24f82cd8d50828-1760923402510.png"
+ ],
+ "name": "Toyota (Ondo Tokenized Stock)",
+ "symbol": "TMON",
+ "marketCap": "233414630448",
+ "price": "197.584090494197418125",
+ "priceChange24hPercent": "1.15",
+ "volume24h": "64367650.27",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "丰田",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0xecc1299f183b6a720a6f4729bf24f82cd8d50828",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xef80743f78d98fc2b47a2253b293152ce8b879ba",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xef80743f78d98fc2b47a2253b293152ce8b879ba-1760922268573.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xef80743f78d98fc2b47a2253b293152ce8b879ba-1760922268573.png"
+ ],
+ "name": "Airbnb (Ondo Tokenized Stock)",
+ "symbol": "ABNBON",
+ "marketCap": "107983869660",
+ "price": "181.313333",
+ "priceChange24hPercent": "-0.66",
+ "volume24h": "620194706.78",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "爱彼迎",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0xef80743f78d98fc2b47a2253b293152ce8b879ba",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ }
+ ],
+ "stocks||5m|market__tab__ai_tech": [
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xa9ee28c80f960b889dfbd1902055218cba016f75",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xa9ee28c80f960b889dfbd1902055218cba016f75-1760923276163.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xa9ee28c80f960b889dfbd1902055218cba016f75-1760923276163.png"
+ ],
+ "name": "NVIDIA (Ondo Tokenized)",
+ "symbol": "NVDAon",
+ "marketCap": "5579549560000",
+ "price": "233.18030531293853192",
+ "priceChange24hPercent": "0.56",
+ "volume24h": "31179783471.2",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "英伟达",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0xa9ee28c80f960b889dfbd1902055218cba016f75",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x8b6acf6041a81567f012ff6a4c6d96d5818d74bf",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x8b6acf6041a81567f012ff6a4c6d96d5818d74bf-1760923255049.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x8b6acf6041a81567f012ff6a4c6d96d5818d74bf-1760923255049.png"
+ ],
+ "name": "Micron Technology (Ondo Tokenized)",
+ "symbol": "MUon",
+ "marketCap": "1148126580100",
+ "price": "1055.805608023373639527",
+ "priceChange24hPercent": "1.28",
+ "volume24h": "35834308520.21",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "美光科技",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x8b6acf6041a81567f012ff6a4c6d96d5818d74bf",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x9f16e46c73b43bdb70861247d537bee4ea18f639",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x9f16e46c73b43bdb70861247d537bee4ea18f639-1760922831860.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x9f16e46c73b43bdb70861247d537bee4ea18f639-1760922831860.png"
+ ],
+ "name": "AMD (Ondo Tokenized)",
+ "symbol": "AMDon",
+ "marketCap": "778725642000",
+ "price": "487.975263",
+ "priceChange24hPercent": "1.18",
+ "volume24h": "9397976816.94",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "超威半导体",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x9f16e46c73b43bdb70861247d537bee4ea18f639",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x0ed2e3180edf393e6bf8db124bd15ddd54de150a",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x0ed2e3180edf393e6bf8db124bd15ddd54de150a-1760922985968.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x0ed2e3180edf393e6bf8db124bd15ddd54de150a-1760922985968.png"
+ ],
+ "name": "Broadcom (Ondo Tokenized)",
+ "symbol": "AVGOon",
+ "marketCap": "1702714094100",
+ "price": "364.792451018770787223",
+ "priceChange24hPercent": "0.24",
+ "volume24h": "11761598227.175",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "博通",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x0ed2e3180edf393e6bf8db124bd15ddd54de150a",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xc37042a7a4fa510d8884a433762ab87257b91965",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xc37042a7a4fa510d8884a433762ab87257b91965-1760923413025.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xc37042a7a4fa510d8884a433762ab87257b91965-1760923413025.png"
+ ],
+ "name": "Taiwan Semiconductor Manufacturing (Ondo Tokenized)",
+ "symbol": "TSMon",
+ "marketCap": "2224533136800",
+ "price": "438.018182406245951052",
+ "priceChange24hPercent": "0.37",
+ "volume24h": "5261764083.780001",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "台积电",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0xc37042a7a4fa510d8884a433762ab87257b91965",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xa528caaa2f96090e379d43f90834c75df54d6e74",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xa528caaa2f96090e379d43f90834c75df54d6e74-1760923148597.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xa528caaa2f96090e379d43f90834c75df54d6e74-1760923148597.png"
+ ],
+ "name": "Intel (Ondo Tokenized)",
+ "symbol": "INTCon",
+ "marketCap": "483215175763",
+ "price": "100.597692",
+ "priceChange24hPercent": "1.6",
+ "volume24h": "9355284335",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "英特尔",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0xa528caaa2f96090e379d43f90834c75df54d6e74",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xc142ba8ccd36d80c3a001342fb83e4c3d218a873",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xc142ba8ccd36d80c3a001342fb83e4c3d218a873-1760923376180.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xc142ba8ccd36d80c3a001342fb83e4c3d218a873-1760923376180.png"
+ ],
+ "name": "Super Micro Computer (Ondo Tokenized)",
+ "symbol": "SMCIon",
+ "marketCap": "25609702070",
+ "price": "40.042662",
+ "priceChange24hPercent": "1.47",
+ "volume24h": "2123337279.4800003",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "超微电脑",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0xc142ba8ccd36d80c3a001342fb83e4c3d218a873",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x5ecc352c4640f1d26bd231dbbd171f40f7d0eec6",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x5ecc352c4640f1d26bd231dbbd171f40f7d0eec6-1767888045927.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x5ecc352c4640f1d26bd231dbbd171f40f7d0eec6-1767888045927.png"
+ ],
+ "name": "Applied Materials (Ondo Tokenized)",
+ "symbol": "AMATon",
+ "marketCap": "361021096890",
+ "price": "468.39278701627463619",
+ "priceChange24hPercent": "2.68",
+ "volume24h": "2735913224.0099998",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "应用材料",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x5ecc352c4640f1d26bd231dbbd171f40f7d0eec6",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xb034f6cb52b7f2fd5a7eeeffca6b9adcd6b9a6f6",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xb034f6cb52b7f2fd5a7eeeffca6b9adcd6b9a6f6-1760922980249.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xb034f6cb52b7f2fd5a7eeeffca6b9adcd6b9a6f6-1760922980249.png"
+ ],
+ "name": "ASML Holding NV (Ondo Tokenized)",
+ "symbol": "ASMLon",
+ "marketCap": "660945604406",
+ "price": "1758.414946497724440837",
+ "priceChange24hPercent": "2.21",
+ "volume24h": "2211546975.36",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "阿斯麦",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0xb034f6cb52b7f2fd5a7eeeffca6b9adcd6b9a6f6",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x1501ec83ffef405b4331cc4f73277a40fb0c627d",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x1501ec83ffef405b4331cc4f73277a40fb0c627d-1760923239312.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x1501ec83ffef405b4331cc4f73277a40fb0c627d-1760923239312.png"
+ ],
+ "name": "Marvell Technology (Ondo Tokenized)",
+ "symbol": "MRVLon",
+ "marketCap": "195777489300",
+ "price": "229.524776103399458333",
+ "priceChange24hPercent": "2.41",
+ "volume24h": "4743302231.1",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "迈威尔科技",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x1501ec83ffef405b4331cc4f73277a40fb0c627d",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x527c6436e1eaa4f2065cde4090f798cb5d031dd6",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x527c6436e1eaa4f2065cde4090f798cb5d031dd6-1760922974777.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x527c6436e1eaa4f2065cde4090f798cb5d031dd6-1760922974777.png"
+ ],
+ "name": "Arm Holdings plc (Ondo Tokenized)",
+ "symbol": "ARMon",
+ "marketCap": "269231759259",
+ "price": "261.0225",
+ "priceChange24hPercent": "2.2",
+ "volume24h": "1041739741.08",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "安谋",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x527c6436e1eaa4f2065cde4090f798cb5d031dd6",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xe8ff70859ce4cbd72e4352b4fb45f5bf39d07464",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xe8ff70859ce4cbd72e4352b4fb45f5bf39d07464-1760923127124.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xe8ff70859ce4cbd72e4352b4fb45f5bf39d07464-1760923127124.png"
+ ],
+ "name": "IBM (Ondo Tokenized Stock)",
+ "symbol": "IBMON",
+ "marketCap": "221297855260",
+ "price": "239.939607742091185163",
+ "priceChange24hPercent": "-0.04",
+ "volume24h": "717698173.8499999",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "国际商业机器",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0xe8ff70859ce4cbd72e4352b4fb45f5bf39d07464",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x4fd67cb8cfedc718bac984b5936abe3330d0a2a4",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x4fd67cb8cfedc718bac984b5936abe3330d0a2a4-1773890603767.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x4fd67cb8cfedc718bac984b5936abe3330d0a2a4-1773890603767.png"
+ ],
+ "name": "SanDisk (Ondo Tokenized)",
+ "symbol": "SNDKON",
+ "marketCap": "257676165000",
+ "price": "1813.141716",
+ "priceChange24hPercent": "1.53",
+ "volume24h": "28809122580",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "闪迪",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x4fd67cb8cfedc718bac984b5936abe3330d0a2a4",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xfbd4d681c92ead6af0e49950c8b2e47eeacbb2db",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xfbd4d681c92ead6af0e49950c8b2e47eeacbb2db-1760923334398.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xfbd4d681c92ead6af0e49950c8b2e47eeacbb2db-1760923334398.png"
+ ],
+ "name": "Qualcomm (Ondo Tokenized Stock)",
+ "symbol": "QCOMON",
+ "marketCap": "177177000000",
+ "price": "174.693612375015163222",
+ "priceChange24hPercent": "1.84",
+ "volume24h": "1440555484.94",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "高通",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0xfbd4d681c92ead6af0e49950c8b2e47eeacbb2db",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ }
+ ],
+ "stocks||5m|market__tab__etfs": [
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x6a708ead771238919d85930b5a0f10454e1c331a",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x6a708ead771238919d85930b5a0f10454e1c331a-1760921581963.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x6a708ead771238919d85930b5a0f10454e1c331a-1760921581963.png"
+ ],
+ "name": "SPDR S&P 500 ETF (Ondo Tokenized)",
+ "symbol": "SPYon",
+ "marketCap": "820435829283",
+ "price": "776.141056177460214449",
+ "priceChange24hPercent": "0.01",
+ "volume24h": "25385765084.670002",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "标普500 ETF",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x6a708ead771238919d85930b5a0f10454e1c331a",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x0cde6936d305d5b34667fc46425e852efd73559a",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x0cde6936d305d5b34667fc46425e852efd73559a-1760923339182.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x0cde6936d305d5b34667fc46425e852efd73559a-1760923339182.png"
+ ],
+ "name": "Invesco QQQ (Ondo Tokenized)",
+ "symbol": "QQQon",
+ "marketCap": "512284401576",
+ "price": "725.686548519952709569",
+ "priceChange24hPercent": "0.32",
+ "volume24h": "23632988800.960003",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "纳指ETF",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x0cde6936d305d5b34667fc46425e852efd73559a",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xe42cfb20e00912409b77a602b5bdcff3c7acc5f4",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xe42cfb20e00912409b77a602b5bdcff3c7acc5f4-1768032381719.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xe42cfb20e00912409b77a602b5bdcff3c7acc5f4-1768032381719.png"
+ ],
+ "name": "ProShares UltraPro QQQ (Ondo Tokenized)",
+ "symbol": "TQQQon",
+ "marketCap": "44436706139",
+ "price": "73.845438057857333962",
+ "priceChange24hPercent": "1.87",
+ "volume24h": "3426881608.8",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "三倍做多纳指ETF",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0xe42cfb20e00912409b77a602b5bdcff3c7acc5f4",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xf69e40069ac227c11459e3f4e8a446b3401616b6",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xf69e40069ac227c11459e3f4e8a446b3401616b6-1760923398719.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xf69e40069ac227c11459e3f4e8a446b3401616b6-1760923398719.png"
+ ],
+ "name": "iShares 20+ Year Treasury Bond ETF (Ondo Tokenized)",
+ "symbol": "TLTon",
+ "marketCap": "41558996997",
+ "price": "85.978427962124070646",
+ "priceChange24hPercent": "0.16",
+ "volume24h": "1364023798.4499998",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "20年国债ETF",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0xf69e40069ac227c11459e3f4e8a446b3401616b6",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x22092c94a91d019ad15536725598b0a6be0a73c0",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x22092c94a91d019ad15536725598b0a6be0a73c0-1760923137786.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x22092c94a91d019ad15536725598b0a6be0a73c0-1760923137786.png"
+ ],
+ "name": "iShares Core MSCI Emerging Markets ETF (Ondo Tokenized)",
+ "symbol": "IEMGon",
+ "marketCap": "171167801924",
+ "price": "85.994643507231392039",
+ "priceChange24hPercent": "0.89",
+ "volume24h": "577001471.9000001",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "核心新兴市场ETF",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x22092c94a91d019ad15536725598b0a6be0a73c0",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xcf9caf83053213c44dd7027db3e1e4ac98e55f8f",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xcf9caf83053213c44dd7027db3e1e4ac98e55f8f-1760976491888.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xcf9caf83053213c44dd7027db3e1e4ac98e55f8f-1760976491888.png"
+ ],
+ "name": "iShares Core S&P Total US Stock Market ETF (Ondo Tokenized ETF)",
+ "symbol": "ITOTON",
+ "marketCap": "95625104840",
+ "price": "169.804819587832307416",
+ "priceChange24hPercent": "--",
+ "volume24h": "169106458.23999998",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "美股全市场ETF",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0xcf9caf83053213c44dd7027db3e1e4ac98e55f8f",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x00c81d35eddf44c75d4db9e07bdcdc236eb0ebcf",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x00c81d35eddf44c75d4db9e07bdcdc236eb0ebcf-1760923060271.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x00c81d35eddf44c75d4db9e07bdcdc236eb0ebcf-1760923060271.png"
+ ],
+ "name": "iShares MSCI Emerging Markets ETF (Ondo Tokenized ETF)",
+ "symbol": "EEMON",
+ "marketCap": "32146260773",
+ "price": "70.550489448583953469",
+ "priceChange24hPercent": "1.26",
+ "volume24h": "1506651730.8",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "新兴市场ETF",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x00c81d35eddf44c75d4db9e07bdcdc236eb0ebcf",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x500eafc69b68acd6f27064f9b75f1c7d91cc4d9f",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x500eafc69b68acd6f27064f9b75f1c7d91cc4d9f-1760923169588.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x500eafc69b68acd6f27064f9b75f1c7d91cc4d9f-1760923169588.png"
+ ],
+ "name": "iShares Russell 2000 ETF (Ondo Tokenized ETF)",
+ "symbol": "IWMON",
+ "marketCap": "81417408119",
+ "price": "297.748095366553568352",
+ "priceChange24hPercent": "0.02",
+ "volume24h": "4113713428.1099997",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "罗素2000 ETF",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x500eafc69b68acd6f27064f9b75f1c7d91cc4d9f",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x12b7adc48416a103f63e7e6210f62c81dfb91fd0",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x12b7adc48416a103f63e7e6210f62c81dfb91fd0-1773890376568.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x12b7adc48416a103f63e7e6210f62c81dfb91fd0-1773890376568.png"
+ ],
+ "name": "iShares MSCI South Korea ETF (Ondo Tokenized)",
+ "symbol": "EWYON",
+ "marketCap": "14278571056",
+ "price": "194.898272",
+ "priceChange24hPercent": "3.95",
+ "volume24h": "3455448231.73",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "iShares MSCI韩国ETF",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x12b7adc48416a103f63e7e6210f62c81dfb91fd0",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xc008c5f579ec1450f20099c39f587547e27c7523",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xc008c5f579ec1450f20099c39f587547e27c7523-1768185634202.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xc008c5f579ec1450f20099c39f587547e27c7523-1768185634202.png"
+ ],
+ "name": "iShares 0-3 Month Treasury Bond ETF (Ondo Tokenized ETF)",
+ "symbol": "SGOVON",
+ "marketCap": "95942590920",
+ "price": "102.324784764508258885",
+ "priceChange24hPercent": "--",
+ "volume24h": "2053722039.09",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "iShares 0-3个月国债ETF",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0xc008c5f579ec1450f20099c39f587547e27c7523",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ }
+ ],
+ "stocks||5m|market__tab__crypto": [
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x992879cd8ce0c312d98648875b5a8d6d042cbf34",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x992879cd8ce0c312d98648875b5a8d6d042cbf34-1760923032790.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x992879cd8ce0c312d98648875b5a8d6d042cbf34-1760923032790.png"
+ ],
+ "name": "Circle Internet Group (Ondo Tokenized)",
+ "symbol": "CRCLon",
+ "marketCap": "27277014302",
+ "price": "101.983108",
+ "priceChange24hPercent": "-1.98",
+ "volume24h": "1440248998.5",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "Circle Internet Group",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x992879cd8ce0c312d98648875b5a8d6d042cbf34",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x7313ea16493b2f55054df0131a3a14b043ec8992",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x7313ea16493b2f55054df0131a3a14b043ec8992-1760923249909.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x7313ea16493b2f55054df0131a3a14b043ec8992-1760923249909.png"
+ ],
+ "name": "MicroStrategy (Ondo Tokenized)",
+ "symbol": "MSTRon",
+ "marketCap": "47239382400",
+ "price": "141.505263",
+ "priceChange24hPercent": "-1.98",
+ "volume24h": "3878826420.0000005",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "微策略",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x7313ea16493b2f55054df0131a3a14b043ec8992",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x19601179a60f55ff6636f5d1a8b6671053bd60a8",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x19601179a60f55ff6636f5d1a8b6671053bd60a8-1760923113456.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x19601179a60f55ff6636f5d1a8b6671053bd60a8-1760923113456.png"
+ ],
+ "name": "Robinhood Markets (Ondo Tokenized)",
+ "symbol": "HOODon",
+ "marketCap": "109786941485",
+ "price": "123.076667",
+ "priceChange24hPercent": "0.85",
+ "volume24h": "2897993280.95",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "罗宾汉",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x19601179a60f55ff6636f5d1a8b6671053bd60a8",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xf8589b526fdd65f7f301c605a6e04f0f1b4b3620",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xf8589b526fdd65f7f301c605a6e04f0f1b4b3620-1761749966569.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xf8589b526fdd65f7f301c605a6e04f0f1b4b3620-1761749966569.png"
+ ],
+ "name": "Coinbase (Ondo Tokenized)",
+ "symbol": "COINon",
+ "marketCap": "48714333394",
+ "price": "183.831667",
+ "priceChange24hPercent": "-1.12",
+ "volume24h": "1509934590.08",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "Coinbase",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0xf8589b526fdd65f7f301c605a6e04f0f1b4b3620",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x9351abd19f42101dd36025e495b98e910b255d78",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x9351abd19f42101dd36025e495b98e910b255d78-1760923318304.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x9351abd19f42101dd36025e495b98e910b255d78-1760923318304.png"
+ ],
+ "name": "Palantir Technologies (Ondo Tokenized)",
+ "symbol": "PLTRon",
+ "marketCap": "400273883100",
+ "price": "174.182857",
+ "priceChange24hPercent": "-0.31",
+ "volume24h": "4874798157.84",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "帕兰提尔",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x9351abd19f42101dd36025e495b98e910b255d78",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x52ad57a7ea642e99a892afc79e937b383f1b59e9",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x52ad57a7ea642e99a892afc79e937b383f1b59e9-1768032941245.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x52ad57a7ea642e99a892afc79e937b383f1b59e9-1768032941245.png"
+ ],
+ "name": "BitMine Immersion Technologies (Ondo Tokenized)",
+ "symbol": "BMNRon",
+ "marketCap": "14222332846",
+ "price": "25.220087",
+ "priceChange24hPercent": "0.99",
+ "volume24h": "1155029873.9099998",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "BitMine",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x52ad57a7ea642e99a892afc79e937b383f1b59e9",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x8fd70ee385f470c8d6fda2d93a4e49c849bac6a6",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x8fd70ee385f470c8d6fda2d93a4e49c849bac6a6-1767883597793.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x8fd70ee385f470c8d6fda2d93a4e49c849bac6a6-1767883597793.png"
+ ],
+ "name": "IREN (Ondo Tokenized)",
+ "symbol": "IRENon",
+ "marketCap": "15944391045",
+ "price": "45.389089",
+ "priceChange24hPercent": "2.29",
+ "volume24h": "1620373503.24",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "IREN",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x8fd70ee385f470c8d6fda2d93a4e49c849bac6a6",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xc4a88a72b848255fd24da3c1ad6755d980535fb1",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xc4a88a72b848255fd24da3c1ad6755d980535fb1-1760923349554.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xc4a88a72b848255fd24da3c1ad6755d980535fb1-1760923349554.png"
+ ],
+ "name": "Riot Platforms (Ondo Tokenized)",
+ "symbol": "RIOTon",
+ "marketCap": "8243696814",
+ "price": "21.664",
+ "priceChange24hPercent": "-0.09",
+ "volume24h": "335036003.2",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "Riot平台",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0xc4a88a72b848255fd24da3c1ad6755d980535fb1",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ }
+ ],
+ "stocks||5m|market__tab__healthcare": [
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x3385cb29cca0ac66f5d2354d13ef977b49a2510f",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x3385cb29cca0ac66f5d2354d13ef977b49a2510f-1760923604445.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x3385cb29cca0ac66f5d2354d13ef977b49a2510f-1760923604445.png"
+ ],
+ "name": "UnitedHealth (Ondo Tokenized)",
+ "symbol": "UNHon",
+ "marketCap": "360660468605",
+ "price": "402.98451011334612462",
+ "priceChange24hPercent": "-0.26",
+ "volume24h": "1916737036.1399999",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "联合健康",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x3385cb29cca0ac66f5d2354d13ef977b49a2510f",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x341d31b2be1fee9c00e395a62ba41837f4322eed",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x341d31b2be1fee9c00e395a62ba41837f4322eed-1760923201079.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x341d31b2be1fee9c00e395a62ba41837f4322eed-1760923201079.png"
+ ],
+ "name": "Eli Lilly (Ondo Tokenized)",
+ "symbol": "LLYon",
+ "marketCap": "1081307016200",
+ "price": "1149.397318656767340512",
+ "priceChange24hPercent": "-0.16",
+ "volume24h": "2468999720.4",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "礼来",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x341d31b2be1fee9c00e395a62ba41837f4322eed",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x5a20886b575058dd7299785f0ea9b1172942a3e0",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x5a20886b575058dd7299785f0ea9b1172942a3e0-1760922274158.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x5a20886b575058dd7299785f0ea9b1172942a3e0-1760922274158.png"
+ ],
+ "name": "Abbott (Ondo Tokenized)",
+ "symbol": "ABTon",
+ "marketCap": "187435126855",
+ "price": "109.426019691944889332",
+ "priceChange24hPercent": "-1.04",
+ "volume24h": "744744194.56",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "雅培",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x5a20886b575058dd7299785f0ea9b1172942a3e0",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x4693f6f5ef257381a28afd0673e64d8b32d5c6ad",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x4693f6f5ef257381a28afd0673e64d8b32d5c6ad-1760923111457.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x4693f6f5ef257381a28afd0673e64d8b32d5c6ad-1760923111457.png"
+ ],
+ "name": "Hims & Hers Health (Ondo Tokenized)",
+ "symbol": "HIMSon",
+ "marketCap": "6181546800",
+ "price": "27.746",
+ "priceChange24hPercent": "-0.21",
+ "volume24h": "182854493.73000002",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "Hims & Hers",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x4693f6f5ef257381a28afd0673e64d8b32d5c6ad",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x8a83c31d6751833b4940b6e871c48d9a15a07b46",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x8a83c31d6751833b4940b6e871c48d9a15a07b46-1760923307953.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x8a83c31d6751833b4940b6e871c48d9a15a07b46-1760923307953.png"
+ ],
+ "name": "Pfizer (Ondo Tokenized Stock)",
+ "symbol": "PFEON",
+ "marketCap": "162149068000",
+ "price": "30.045669965608379961",
+ "priceChange24hPercent": "-0.39",
+ "volume24h": "669415327.65",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "辉瑞",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x8a83c31d6751833b4940b6e871c48d9a15a07b46",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ }
+ ],
+ "stocks||5m|market__tab__energy": [
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xd3113a0ad20a46f6a662c63fe8e637f7713e59c7",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xd3113a0ad20a46f6a662c63fe8e637f7713e59c7-1760923043289.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xd3113a0ad20a46f6a662c63fe8e637f7713e59c7-1760923043289.png"
+ ],
+ "name": "Chevron (Ondo Tokenized)",
+ "symbol": "CVXon",
+ "marketCap": "415308348000",
+ "price": "214.127850846968341467",
+ "priceChange24hPercent": "-0.1",
+ "volume24h": "1122138299.52",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "雪佛龙",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0xd3113a0ad20a46f6a662c63fe8e637f7713e59c7",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x4d209d275e3492ac08497a7a42915899c4dd5e86",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x4d209d275e3492ac08497a7a42915899c4dd5e86-1768378192726.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x4d209d275e3492ac08497a7a42915899c4dd5e86-1768378192726.png"
+ ],
+ "name": "Exxon Mobil (Ondo Tokenized)",
+ "symbol": "XOMon",
+ "marketCap": "660875591600",
+ "price": "161.929674995637777397",
+ "priceChange24hPercent": "0.06",
+ "volume24h": "2537206808.78",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "埃克森美孚",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x4d209d275e3492ac08497a7a42915899c4dd5e86",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x01b5a4ac600be98448dbefbb78bcdf38262552cc",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x01b5a4ac600be98448dbefbb78bcdf38262552cc-1768118550219.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x01b5a4ac600be98448dbefbb78bcdf38262552cc-1768118550219.png"
+ ],
+ "name": "Occidental Petroleum (Ondo Tokenized)",
+ "symbol": "OXYON",
+ "marketCap": "59717867448",
+ "price": "60.427368985063029401",
+ "priceChange24hPercent": "--",
+ "volume24h": "400488654.56",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "西方石油",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x01b5a4ac600be98448dbefbb78bcdf38262552cc",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x2b1d5cdecc356530a746c5754231efaeaca64022",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x2b1d5cdecc356530a746c5754231efaeaca64022-1760923297458.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x2b1d5cdecc356530a746c5754231efaeaca64022-1760923297458.png"
+ ],
+ "name": "Petrobras (Ondo Tokenized Stock)",
+ "symbol": "PBRON",
+ "marketCap": "129660646415",
+ "price": "20.856197511015279798",
+ "priceChange24hPercent": "-0.22",
+ "volume24h": "377829496.24",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "巴西石油",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x2b1d5cdecc356530a746c5754231efaeaca64022",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ }
+ ],
+ "stocks||5m|market__tab__china_tech": [
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xd5964f3fcee8d649995ab88f04b8982539c282d2",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xd5964f3fcee8d649995ab88f04b8982539c282d2-1760922996465.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xd5964f3fcee8d649995ab88f04b8982539c282d2-1760922996465.png"
+ ],
+ "name": "Alibaba (Ondo Tokenized)",
+ "symbol": "BABAon",
+ "marketCap": "271421798529",
+ "price": "112.499497934947570659",
+ "priceChange24hPercent": "-1.46",
+ "volume24h": "810668853.4399999",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "阿里巴巴",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0xd5964f3fcee8d649995ab88f04b8982539c282d2",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xf3e82ea164cb344b2b11bad4c24b0ea4f7ba4714",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xf3e82ea164cb344b2b11bad4c24b0ea4f7ba4714-1767945976873.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xf3e82ea164cb344b2b11bad4c24b0ea4f7ba4714-1767945976873.png"
+ ],
+ "name": "PDD Holdings (Ondo Tokenized)",
+ "symbol": "PDDon",
+ "marketCap": "117017422072",
+ "price": "81.560326",
+ "priceChange24hPercent": "-0.94",
+ "volume24h": "382935002.09999996",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "拼多多",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0xf3e82ea164cb344b2b11bad4c24b0ea4f7ba4714",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x467e59ce5d5fe01686d4a80dd1e1dae13549aa6c",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x467e59ce5d5fe01686d4a80dd1e1dae13549aa6c-1760515402441.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x467e59ce5d5fe01686d4a80dd1e1dae13549aa6c-1760515402441.png"
+ ],
+ "name": "Baidu (Ondo Tokenized)",
+ "symbol": "BIDUon",
+ "marketCap": "33832211369",
+ "price": "92.292027",
+ "priceChange24hPercent": "-7.17",
+ "volume24h": "256503090.06",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "百度",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x467e59ce5d5fe01686d4a80dd1e1dae13549aa6c",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ }
+ ],
+ "stocks||5m|market__tab__commodities": [
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x8b872732b07be325a8803cdb480d9d20b6f8d11b",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x8b872732b07be325a8803cdb480d9d20b6f8d11b-1760923370870.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x8b872732b07be325a8803cdb480d9d20b6f8d11b-1760923370870.png"
+ ],
+ "name": "iShares Silver Trust (Ondo Tokenized)",
+ "symbol": "SLVon",
+ "marketCap": "32192820451",
+ "price": "60.613516",
+ "priceChange24hPercent": "3.36",
+ "volume24h": "751852335.96",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "白银ETF",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x8b872732b07be325a8803cdb480d9d20b6f8d11b",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xcb2a0f46f67dc4c58a316f1c008edef5c2311795",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xcb2a0f46f67dc4c58a316f1c008edef5c2311795-1760923121884.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xcb2a0f46f67dc4c58a316f1c008edef5c2311795-1760923121884.png"
+ ],
+ "name": "iShares Gold Trust (Ondo Tokenized)",
+ "symbol": "IAUon",
+ "marketCap": "65795429989",
+ "price": "83.510002",
+ "priceChange24hPercent": "0.23",
+ "volume24h": "415966081.39",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "iShares黄金ETF",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0xcb2a0f46f67dc4c58a316f1c008edef5c2311795",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x3fcd741646a9790635b938cdb69af5df356cbaab",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x3fcd741646a9790635b938cdb69af5df356cbaab-1768118974994.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x3fcd741646a9790635b938cdb69af5df356cbaab-1768118974994.png"
+ ],
+ "name": "abrdn Physical Palladium Shares ETF (Ondo Tokenized)",
+ "symbol": "PALLon",
+ "marketCap": "662462421",
+ "price": "127.025",
+ "priceChange24hPercent": "1.16",
+ "volume24h": "18618111.93",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "钯金ETF",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x3fcd741646a9790635b938cdb69af5df356cbaab",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ }
+ ],
+ "stocks||5m|market__tab__aerospace": [
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xd09f7b75b9659b864c6f82bb00ff096f9d277998",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xd09f7b75b9659b864c6f82bb00ff096f9d277998-1760923206785.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xd09f7b75b9659b864c6f82bb00ff096f9d277998-1760923206785.png"
+ ],
+ "name": "Lockheed (Ondo Tokenized)",
+ "symbol": "LMTon",
+ "marketCap": "121229896480",
+ "price": "537.114604097175250464",
+ "priceChange24hPercent": "-0.19",
+ "volume24h": "495034902.88",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "洛克希德马丁",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0xd09f7b75b9659b864c6f82bb00ff096f9d277998",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ }
+ ],
+ "stocks||1h|all": [
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x390a684ef9cade28a7ad0dfa61ab1eb3842618c4",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x390a684ef9cade28a7ad0dfa61ab1eb3842618c4-1760515427269.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x390a684ef9cade28a7ad0dfa61ab1eb3842618c4-1760515427269.png"
+ ],
+ "name": "Apple (Ondo Tokenized)",
+ "symbol": "AAPLon",
+ "marketCap": "4699513299320",
+ "price": "320.298481855554072365",
+ "priceChange24hPercent": "-0.5",
+ "volume24h": "12673014673.480001",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "苹果",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x390a684ef9cade28a7ad0dfa61ab1eb3842618c4",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x8b872732b07be325a8803cdb480d9d20b6f8d11b",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x8b872732b07be325a8803cdb480d9d20b6f8d11b-1760923370870.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x8b872732b07be325a8803cdb480d9d20b6f8d11b-1760923370870.png"
+ ],
+ "name": "iShares Silver Trust (Ondo Tokenized)",
+ "symbol": "SLVon",
+ "marketCap": "32192820451",
+ "price": "60.613516",
+ "priceChange24hPercent": "3.36",
+ "volume24h": "751852335.96",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "白银ETF",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x8b872732b07be325a8803cdb480d9d20b6f8d11b",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x992879cd8ce0c312d98648875b5a8d6d042cbf34",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x992879cd8ce0c312d98648875b5a8d6d042cbf34-1760923032790.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x992879cd8ce0c312d98648875b5a8d6d042cbf34-1760923032790.png"
+ ],
+ "name": "Circle Internet Group (Ondo Tokenized)",
+ "symbol": "CRCLon",
+ "marketCap": "27277014302",
+ "price": "101.983108",
+ "priceChange24hPercent": "-1.98",
+ "volume24h": "1440248998.5",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "Circle Internet Group",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x992879cd8ce0c312d98648875b5a8d6d042cbf34",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xa9ee28c80f960b889dfbd1902055218cba016f75",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xa9ee28c80f960b889dfbd1902055218cba016f75-1760923276163.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xa9ee28c80f960b889dfbd1902055218cba016f75-1760923276163.png"
+ ],
+ "name": "NVIDIA (Ondo Tokenized)",
+ "symbol": "NVDAon",
+ "marketCap": "5579549560000",
+ "price": "233.18030531293853192",
+ "priceChange24hPercent": "0.56",
+ "volume24h": "31179783471.2",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "英伟达",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0xa9ee28c80f960b889dfbd1902055218cba016f75",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x8b6acf6041a81567f012ff6a4c6d96d5818d74bf",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x8b6acf6041a81567f012ff6a4c6d96d5818d74bf-1760923255049.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x8b6acf6041a81567f012ff6a4c6d96d5818d74bf-1760923255049.png"
+ ],
+ "name": "Micron Technology (Ondo Tokenized)",
+ "symbol": "MUon",
+ "marketCap": "1148126580100",
+ "price": "1055.805608023373639527",
+ "priceChange24hPercent": "1.28",
+ "volume24h": "35834308520.21",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "美光科技",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x8b6acf6041a81567f012ff6a4c6d96d5818d74bf",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x7313ea16493b2f55054df0131a3a14b043ec8992",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x7313ea16493b2f55054df0131a3a14b043ec8992-1760923249909.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x7313ea16493b2f55054df0131a3a14b043ec8992-1760923249909.png"
+ ],
+ "name": "MicroStrategy (Ondo Tokenized)",
+ "symbol": "MSTRon",
+ "marketCap": "47239382400",
+ "price": "141.505263",
+ "priceChange24hPercent": "-1.98",
+ "volume24h": "3878826420.0000005",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "微策略",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x7313ea16493b2f55054df0131a3a14b043ec8992",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x4553cfe1c09f37f38b12dc509f676964e392f8fc",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x4553cfe1c09f37f38b12dc509f676964e392f8fc-1760686410256.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x4553cfe1c09f37f38b12dc509f676964e392f8fc-1760686410256.png"
+ ],
+ "name": "Amazon (Ondo Tokenized)",
+ "symbol": "AMZNon",
+ "marketCap": "2780817921000",
+ "price": "258.279748",
+ "priceChange24hPercent": "-0.11",
+ "volume24h": "7949159751.12",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "亚马逊",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x4553cfe1c09f37f38b12dc509f676964e392f8fc",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x6a708ead771238919d85930b5a0f10454e1c331a",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x6a708ead771238919d85930b5a0f10454e1c331a-1760921581963.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x6a708ead771238919d85930b5a0f10454e1c331a-1760921581963.png"
+ ],
+ "name": "SPDR S&P 500 ETF (Ondo Tokenized)",
+ "symbol": "SPYon",
+ "marketCap": "820435829283",
+ "price": "776.141056177460214449",
+ "priceChange24hPercent": "0.01",
+ "volume24h": "25385765084.670002",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "标普500 ETF",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x6a708ead771238919d85930b5a0f10454e1c331a",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x0cde6936d305d5b34667fc46425e852efd73559a",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x0cde6936d305d5b34667fc46425e852efd73559a-1760923339182.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x0cde6936d305d5b34667fc46425e852efd73559a-1760923339182.png"
+ ],
+ "name": "Invesco QQQ (Ondo Tokenized)",
+ "symbol": "QQQon",
+ "marketCap": "512284401576",
+ "price": "725.686548519952709569",
+ "priceChange24hPercent": "0.32",
+ "volume24h": "23632988800.960003",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "纳指ETF",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x0cde6936d305d5b34667fc46425e852efd73559a",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xd5964f3fcee8d649995ab88f04b8982539c282d2",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xd5964f3fcee8d649995ab88f04b8982539c282d2-1760922996465.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xd5964f3fcee8d649995ab88f04b8982539c282d2-1760922996465.png"
+ ],
+ "name": "Alibaba (Ondo Tokenized)",
+ "symbol": "BABAon",
+ "marketCap": "271421798529",
+ "price": "112.499497934947570659",
+ "priceChange24hPercent": "-1.46",
+ "volume24h": "810668853.4399999",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "阿里巴巴",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0xd5964f3fcee8d649995ab88f04b8982539c282d2",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x19601179a60f55ff6636f5d1a8b6671053bd60a8",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x19601179a60f55ff6636f5d1a8b6671053bd60a8-1760923113456.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x19601179a60f55ff6636f5d1a8b6671053bd60a8-1760923113456.png"
+ ],
+ "name": "Robinhood Markets (Ondo Tokenized)",
+ "symbol": "HOODon",
+ "marketCap": "109786941485",
+ "price": "123.076667",
+ "priceChange24hPercent": "0.85",
+ "volume24h": "2897993280.95",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "罗宾汉",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x19601179a60f55ff6636f5d1a8b6671053bd60a8",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x091fc7778e6932d4009b087b191d1ee3bac5729a",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x091fc7778e6932d4009b087b191d1ee3bac5729a-1760923100804.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x091fc7778e6932d4009b087b191d1ee3bac5729a-1760923100804.png"
+ ],
+ "name": "Alphabet Class A (Ondo Tokenized)",
+ "symbol": "GOOGLon",
+ "marketCap": "4096080585860",
+ "price": "338.962258099649311085",
+ "priceChange24hPercent": "-0.2",
+ "volume24h": "7848657585.66",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "谷歌",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x091fc7778e6932d4009b087b191d1ee3bac5729a",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xf8589b526fdd65f7f301c605a6e04f0f1b4b3620",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xf8589b526fdd65f7f301c605a6e04f0f1b4b3620-1761749966569.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xf8589b526fdd65f7f301c605a6e04f0f1b4b3620-1761749966569.png"
+ ],
+ "name": "Coinbase (Ondo Tokenized)",
+ "symbol": "COINon",
+ "marketCap": "48714333394",
+ "price": "183.831667",
+ "priceChange24hPercent": "-1.12",
+ "volume24h": "1509934590.08",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "Coinbase",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0xf8589b526fdd65f7f301c605a6e04f0f1b4b3620",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xe42cfb20e00912409b77a602b5bdcff3c7acc5f4",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xe42cfb20e00912409b77a602b5bdcff3c7acc5f4-1768032381719.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xe42cfb20e00912409b77a602b5bdcff3c7acc5f4-1768032381719.png"
+ ],
+ "name": "ProShares UltraPro QQQ (Ondo Tokenized)",
+ "symbol": "TQQQon",
+ "marketCap": "44436706139",
+ "price": "73.845438057857333962",
+ "priceChange24hPercent": "1.87",
+ "volume24h": "3426881608.8",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "三倍做多纳指ETF",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0xe42cfb20e00912409b77a602b5bdcff3c7acc5f4",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xcb2a0f46f67dc4c58a316f1c008edef5c2311795",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xcb2a0f46f67dc4c58a316f1c008edef5c2311795-1760923121884.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xcb2a0f46f67dc4c58a316f1c008edef5c2311795-1760923121884.png"
+ ],
+ "name": "iShares Gold Trust (Ondo Tokenized)",
+ "symbol": "IAUon",
+ "marketCap": "65795429989",
+ "price": "83.510002",
+ "priceChange24hPercent": "0.23",
+ "volume24h": "415966081.39",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "iShares黄金ETF",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0xcb2a0f46f67dc4c58a316f1c008edef5c2311795",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x9351abd19f42101dd36025e495b98e910b255d78",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x9351abd19f42101dd36025e495b98e910b255d78-1760923318304.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x9351abd19f42101dd36025e495b98e910b255d78-1760923318304.png"
+ ],
+ "name": "Palantir Technologies (Ondo Tokenized)",
+ "symbol": "PLTRon",
+ "marketCap": "400273883100",
+ "price": "174.182857",
+ "priceChange24hPercent": "-0.31",
+ "volume24h": "4874798157.84",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "帕兰提尔",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x9351abd19f42101dd36025e495b98e910b255d78",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xec93fe7ff4b09ca3ccafbc4cc9615e62be412780",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xec93fe7ff4b09ca3ccafbc4cc9615e62be412780-1768378372330.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xec93fe7ff4b09ca3ccafbc4cc9615e62be412780-1768378372330.png"
+ ],
+ "name": "Global X Copper Miners ETF (Ondo Tokenized)",
+ "symbol": "COPXon",
+ "marketCap": "8398061634",
+ "price": "90.741202370238771614",
+ "priceChange24hPercent": "--",
+ "volume24h": "120614154.66",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "铜矿ETF",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0xec93fe7ff4b09ca3ccafbc4cc9615e62be412780",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x9f16e46c73b43bdb70861247d537bee4ea18f639",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x9f16e46c73b43bdb70861247d537bee4ea18f639-1760922831860.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x9f16e46c73b43bdb70861247d537bee4ea18f639-1760922831860.png"
+ ],
+ "name": "AMD (Ondo Tokenized)",
+ "symbol": "AMDon",
+ "marketCap": "778725642000",
+ "price": "487.975263",
+ "priceChange24hPercent": "1.18",
+ "volume24h": "9397976816.94",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "超威半导体",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x9f16e46c73b43bdb70861247d537bee4ea18f639",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x6bfe75d1ad432050ea973c3a3dcd88f02e2444c3",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x6bfe75d1ad432050ea973c3a3dcd88f02e2444c3-1760923244592.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x6bfe75d1ad432050ea973c3a3dcd88f02e2444c3-1760923244592.png"
+ ],
+ "name": "Microsoft (Ondo Tokenized)",
+ "symbol": "MSFTon",
+ "marketCap": "3710547335000",
+ "price": "499.708647472892879635",
+ "priceChange24hPercent": "-0.72",
+ "volume24h": "9045448472.6",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "微软",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x6bfe75d1ad432050ea973c3a3dcd88f02e2444c3",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x7048f5227b032326cc8dbc53cf3fddd947a2c757",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x7048f5227b032326cc8dbc53cf3fddd947a2c757-1760923261006.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x7048f5227b032326cc8dbc53cf3fddd947a2c757-1760923261006.png"
+ ],
+ "name": "Netflix (Ondo Tokenized)",
+ "symbol": "NFLXon",
+ "marketCap": "325828304922",
+ "price": "778.72424",
+ "priceChange24hPercent": "-0.54",
+ "volume24h": "3144868282.5",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "奈飞",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x7048f5227b032326cc8dbc53cf3fddd947a2c757",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xc145dc2ebdbe8ead1fecdebf46c76eb1fdd0104d",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xc145dc2ebdbe8ead1fecdebf46c76eb1fdd0104d-1768184402429.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xc145dc2ebdbe8ead1fecdebf46c76eb1fdd0104d-1768184402429.png"
+ ],
+ "name": "Carvana (Ondo Tokenized)",
+ "symbol": "CVNAon",
+ "price": "-",
+ "priceChange24hPercent": "-",
+ "communityRecognized": false,
+ "key": "evm--56:0xc145dc2ebdbe8ead1fecdebf46c76eb1fdd0104d",
+ "kind": "token",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x3385cb29cca0ac66f5d2354d13ef977b49a2510f",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x3385cb29cca0ac66f5d2354d13ef977b49a2510f-1760923604445.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x3385cb29cca0ac66f5d2354d13ef977b49a2510f-1760923604445.png"
+ ],
+ "name": "UnitedHealth (Ondo Tokenized)",
+ "symbol": "UNHon",
+ "marketCap": "360660468605",
+ "price": "402.98451011334612462",
+ "priceChange24hPercent": "-0.26",
+ "volume24h": "1916737036.1399999",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "联合健康",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x3385cb29cca0ac66f5d2354d13ef977b49a2510f",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x03e4bd1ea53f1da84513da0319d1f03dd1bbcf93",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x03e4bd1ea53f1da84513da0319d1f03dd1bbcf93-1760923286694.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x03e4bd1ea53f1da84513da0319d1f03dd1bbcf93-1760923286694.png"
+ ],
+ "name": "Oracle (Ondo Tokenized)",
+ "symbol": "ORCLon",
+ "marketCap": "457505050100",
+ "price": "166.481535598340633943",
+ "priceChange24hPercent": "2.21",
+ "volume24h": "4138044844.8500004",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "甲骨文",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x03e4bd1ea53f1da84513da0319d1f03dd1bbcf93",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x2494b603319d4d9f9715c9f4496d9e0364b59d93",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x2494b603319d4d9f9715c9f4496d9e0364b59d93-1760680411667.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x2494b603319d4d9f9715c9f4496d9e0364b59d93-1760680411667.png"
+ ],
+ "name": "Tesla (Ondo Tokenized)",
+ "symbol": "TSLAon",
+ "marketCap": "1398455741268",
+ "price": "356.443455",
+ "priceChange24hPercent": "0.17",
+ "volume24h": "23021647442.719997",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "特斯拉",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x2494b603319d4d9f9715c9f4496d9e0364b59d93",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x0ed2e3180edf393e6bf8db124bd15ddd54de150a",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x0ed2e3180edf393e6bf8db124bd15ddd54de150a-1760922985968.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x0ed2e3180edf393e6bf8db124bd15ddd54de150a-1760922985968.png"
+ ],
+ "name": "Broadcom (Ondo Tokenized)",
+ "symbol": "AVGOon",
+ "marketCap": "1702714094100",
+ "price": "364.792451018770787223",
+ "priceChange24hPercent": "0.24",
+ "volume24h": "11761598227.175",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "博通",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x0ed2e3180edf393e6bf8db124bd15ddd54de150a",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x25ffda07f585c39848db6573e533d7585679c52d",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x25ffda07f585c39848db6573e533d7585679c52d-1760923217550.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x25ffda07f585c39848db6573e533d7585679c52d-1760923217550.png"
+ ],
+ "name": "Mastercard (Ondo Tokenized)",
+ "symbol": "MAon",
+ "marketCap": "507988021560",
+ "price": "577.919566836818062189",
+ "priceChange24hPercent": "-0.72",
+ "volume24h": "1015977201.5400001",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "万事达",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x25ffda07f585c39848db6573e533d7585679c52d",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x34304f2f7cc487eb4186e6d69f5905a613474aa2",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x34304f2f7cc487eb4186e6d69f5905a613474aa2-1761709115472.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x34304f2f7cc487eb4186e6d69f5905a613474aa2-1761709115472.png"
+ ],
+ "name": "Cisco Systems (Ondo Tokenized)",
+ "symbol": "CSCOon",
+ "marketCap": "430404665418",
+ "price": "110.75473913211509356",
+ "priceChange24hPercent": "0.07",
+ "volume24h": "1351570474.8",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "思科",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x34304f2f7cc487eb4186e6d69f5905a613474aa2",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x5fa699c0c1319b8d86489af77dfde4fa97b47df8",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x5fa699c0c1319b8d86489af77dfde4fa97b47df8-1769105965919.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x5fa699c0c1319b8d86489af77dfde4fa97b47df8-1769105965919.png"
+ ],
+ "name": "BitGo Holdings (Ondo Tokenized)",
+ "symbol": "BTGOon",
+ "marketCap": "781859397",
+ "price": "7.235",
+ "priceChange24hPercent": "--",
+ "volume24h": "10028338.5",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "BitGo",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x5fa699c0c1319b8d86489af77dfde4fa97b47df8",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x50356167a4dbc38bea6779c045e24e25facedfdc",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x50356167a4dbc38bea6779c045e24e25facedfdc-1760923391964.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x50356167a4dbc38bea6779c045e24e25facedfdc-1760923391964.png"
+ ],
+ "name": "Spotify (Ondo Tokenized)",
+ "symbol": "SPOTon",
+ "marketCap": "111515040318",
+ "price": "534.766667",
+ "priceChange24hPercent": "-1.69",
+ "volume24h": "742202629.56",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "Spotify",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x50356167a4dbc38bea6779c045e24e25facedfdc",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x317bf42b43a394860718266dec445dcc9fd9da49",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x317bf42b43a394860718266dec445dcc9fd9da49-1761792505227.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x317bf42b43a394860718266dec445dcc9fd9da49-1761792505227.png"
+ ],
+ "name": "JPMorgan Chase (Ondo Tokenized)",
+ "symbol": "JPMon",
+ "marketCap": "960979466400",
+ "price": "360.974460173899799822",
+ "priceChange24hPercent": "-0.66",
+ "volume24h": "1745667647.6",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "摩根大通",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x317bf42b43a394860718266dec445dcc9fd9da49",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x405f38b90bebf1259062cf29da299f3398662bcb",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x405f38b90bebf1259062cf29da299f3398662bcb-1761605541805.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x405f38b90bebf1259062cf29da299f3398662bcb-1761605541805.png"
+ ],
+ "name": "Coca-Cola (Ondo Tokenized)",
+ "symbol": "KOon",
+ "marketCap": "378925484617",
+ "price": "89.628986243018856634",
+ "priceChange24hPercent": "-0.24",
+ "volume24h": "1283321428.49",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "可口可乐",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x405f38b90bebf1259062cf29da299f3398662bcb",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xc37042a7a4fa510d8884a433762ab87257b91965",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xc37042a7a4fa510d8884a433762ab87257b91965-1760923413025.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xc37042a7a4fa510d8884a433762ab87257b91965-1760923413025.png"
+ ],
+ "name": "Taiwan Semiconductor Manufacturing (Ondo Tokenized)",
+ "symbol": "TSMon",
+ "marketCap": "2224533136800",
+ "price": "438.018182406245951052",
+ "priceChange24hPercent": "0.37",
+ "volume24h": "5261764083.780001",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "台积电",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0xc37042a7a4fa510d8884a433762ab87257b91965",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xd09f7b75b9659b864c6f82bb00ff096f9d277998",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xd09f7b75b9659b864c6f82bb00ff096f9d277998-1760923206785.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xd09f7b75b9659b864c6f82bb00ff096f9d277998-1760923206785.png"
+ ],
+ "name": "Lockheed (Ondo Tokenized)",
+ "symbol": "LMTon",
+ "marketCap": "121229896480",
+ "price": "537.114604097175250464",
+ "priceChange24hPercent": "-0.19",
+ "volume24h": "495034902.88",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "洛克希德马丁",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0xd09f7b75b9659b864c6f82bb00ff096f9d277998",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x341d31b2be1fee9c00e395a62ba41837f4322eed",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x341d31b2be1fee9c00e395a62ba41837f4322eed-1760923201079.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x341d31b2be1fee9c00e395a62ba41837f4322eed-1760923201079.png"
+ ],
+ "name": "Eli Lilly (Ondo Tokenized)",
+ "symbol": "LLYon",
+ "marketCap": "1081307016200",
+ "price": "1149.397318656767340512",
+ "priceChange24hPercent": "-0.16",
+ "volume24h": "2468999720.4",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "礼来",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x341d31b2be1fee9c00e395a62ba41837f4322eed",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x5a20886b575058dd7299785f0ea9b1172942a3e0",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x5a20886b575058dd7299785f0ea9b1172942a3e0-1760922274158.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x5a20886b575058dd7299785f0ea9b1172942a3e0-1760922274158.png"
+ ],
+ "name": "Abbott (Ondo Tokenized)",
+ "symbol": "ABTon",
+ "marketCap": "187435126855",
+ "price": "109.426019691944889332",
+ "priceChange24hPercent": "-1.04",
+ "volume24h": "744744194.56",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "雅培",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x5a20886b575058dd7299785f0ea9b1172942a3e0",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xe6837794fbc6dd024733a1a31f86061296fa2752",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xe6837794fbc6dd024733a1a31f86061296fa2752-1767888357216.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xe6837794fbc6dd024733a1a31f86061296fa2752-1767888357216.png"
+ ],
+ "name": "CrowdStrike (Ondo Tokenized)",
+ "symbol": "CRWDon",
+ "marketCap": "216991052568",
+ "price": "854.08",
+ "priceChange24hPercent": "0.11",
+ "volume24h": "1796128480.1",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "CrowdStrike",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0xe6837794fbc6dd024733a1a31f86061296fa2752",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x918008c3d29496c37b478b611967beaca365af36",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x918008c3d29496c37b478b611967beaca365af36-1760923132407.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x918008c3d29496c37b478b611967beaca365af36-1760923132407.png"
+ ],
+ "name": "iShares Core MSCI EAFE ETF (Ondo Tokenized)",
+ "symbol": "IEFAon",
+ "marketCap": "191069877912",
+ "price": "103.705170809433201477",
+ "priceChange24hPercent": "2.45",
+ "volume24h": "562851547.16",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x918008c3d29496c37b478b611967beaca365af36",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x43d0b380c33cd004a6a69abd61843881a2de4113",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x43d0b380c33cd004a6a69abd61843881a2de4113-1760923365671.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x43d0b380c33cd004a6a69abd61843881a2de4113-1760923365671.png"
+ ],
+ "name": "Shopify (Ondo Tokenized)",
+ "symbol": "SHOPon",
+ "marketCap": "188276717956",
+ "price": "143.536364",
+ "priceChange24hPercent": "-1.23",
+ "volume24h": "1001972823.39",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "Shopify",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x43d0b380c33cd004a6a69abd61843881a2de4113",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x7af44d51d1fb88c5b74fc71d3cba649bb8099d14",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x7af44d51d1fb88c5b74fc71d3cba649bb8099d14-1760922282064.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x7af44d51d1fb88c5b74fc71d3cba649bb8099d14-1760922282064.png"
+ ],
+ "name": "Accenture (Ondo Tokenized)",
+ "symbol": "ACNon",
+ "marketCap": "114261830592",
+ "price": "190.128369050462170162",
+ "priceChange24hPercent": "-1.11",
+ "volume24h": "906653876.64",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "埃森哲",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x7af44d51d1fb88c5b74fc71d3cba649bb8099d14",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x400f1e257f86d25578a0928c94dc95115f09d5c9",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x400f1e257f86d25578a0928c94dc95115f09d5c9-1760923313303.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x400f1e257f86d25578a0928c94dc95115f09d5c9-1760923313303.png"
+ ],
+ "name": "Procter & Gamble (Ondo Tokenized)",
+ "symbol": "PGon",
+ "marketCap": "348094704645",
+ "price": "149.056417400228133746",
+ "priceChange24hPercent": "-0.73",
+ "volume24h": "812032397.19",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "宝洁",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x400f1e257f86d25578a0928c94dc95115f09d5c9",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x374d03a6c0d5bd4be0a5117ebe1b49d52ac8a53f",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x374d03a6c0d5bd4be0a5117ebe1b49d52ac8a53f-1760923323445.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x374d03a6c0d5bd4be0a5117ebe1b49d52ac8a53f-1760923323445.png"
+ ],
+ "name": "PayPal (Ondo Tokenized)",
+ "symbol": "PYPLon",
+ "marketCap": "47016136560",
+ "price": "55.089444788561474573",
+ "priceChange24hPercent": "-0.45",
+ "volume24h": "716925445.2",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "贝宝",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x374d03a6c0d5bd4be0a5117ebe1b49d52ac8a53f",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xd3113a0ad20a46f6a662c63fe8e637f7713e59c7",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xd3113a0ad20a46f6a662c63fe8e637f7713e59c7-1760923043289.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xd3113a0ad20a46f6a662c63fe8e637f7713e59c7-1760923043289.png"
+ ],
+ "name": "Chevron (Ondo Tokenized)",
+ "symbol": "CVXon",
+ "marketCap": "415308348000",
+ "price": "214.127850846968341467",
+ "priceChange24hPercent": "-0.1",
+ "volume24h": "1122138299.52",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "雪佛龙",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0xd3113a0ad20a46f6a662c63fe8e637f7713e59c7",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x08ce97f3d5cf11e577d091ab048bc5e2eae3fabb",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x08ce97f3d5cf11e577d091ab048bc5e2eae3fabb-1760922826243.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x08ce97f3d5cf11e577d091ab048bc5e2eae3fabb-1760922826243.png"
+ ],
+ "name": "iShares Core US Aggregate Bond ETF (Ondo Tokenized)",
+ "symbol": "AGGon",
+ "marketCap": "136630691995",
+ "price": "100.726707821448173787",
+ "priceChange24hPercent": "-0.05",
+ "volume24h": "757482021",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x08ce97f3d5cf11e577d091ab048bc5e2eae3fabb",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x94d7754541b829a87321d56121bc544167ac490d",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x94d7754541b829a87321d56121bc544167ac490d-1760923360145.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x94d7754541b829a87321d56121bc544167ac490d-1760923360145.png"
+ ],
+ "name": "Starbucks (Ondo Tokenized)",
+ "symbol": "SBUXon",
+ "marketCap": "119095800000",
+ "price": "105.675635276984189824",
+ "priceChange24hPercent": "-0.61",
+ "volume24h": "481009967.36",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "星巴克",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x94d7754541b829a87321d56121bc544167ac490d",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x94174e3d1335db402dd03a092f7aa7ac2cb32be4",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x94174e3d1335db402dd03a092f7aa7ac2cb32be4-1768292465946.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x94174e3d1335db402dd03a092f7aa7ac2cb32be4-1768292465946.png"
+ ],
+ "name": "United States Oil Fund (Ondo Tokenized)",
+ "symbol": "USOon",
+ "marketCap": "16907435006",
+ "price": "144.2375",
+ "priceChange24hPercent": "1.61",
+ "volume24h": "523317653.04",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "原油ETF",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x94174e3d1335db402dd03a092f7aa7ac2cb32be4",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xf99f8f3a95257d82006183bd524efa7aacc9ef7a",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xf99f8f3a95257d82006183bd524efa7aacc9ef7a-1760923302585.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xf99f8f3a95257d82006183bd524efa7aacc9ef7a-1760923302585.png"
+ ],
+ "name": "PepsiCo (Ondo Tokenized)",
+ "symbol": "PEPon",
+ "marketCap": "188002580000",
+ "price": "141.975016844879616381",
+ "priceChange24hPercent": "-0.41",
+ "volume24h": "845805577.89",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "百事",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0xf99f8f3a95257d82006183bd524efa7aacc9ef7a",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xf69e40069ac227c11459e3f4e8a446b3401616b6",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xf69e40069ac227c11459e3f4e8a446b3401616b6-1760923398719.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xf69e40069ac227c11459e3f4e8a446b3401616b6-1760923398719.png"
+ ],
+ "name": "iShares 20+ Year Treasury Bond ETF (Ondo Tokenized)",
+ "symbol": "TLTon",
+ "marketCap": "41558996997",
+ "price": "85.978427962124070646",
+ "priceChange24hPercent": "0.16",
+ "volume24h": "1364023798.4499998",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "20年国债ETF",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0xf69e40069ac227c11459e3f4e8a446b3401616b6",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x93fac02b22b6743423381d163aec418178019b7a",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x93fac02b22b6743423381d163aec418178019b7a-1760923074552.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x93fac02b22b6743423381d163aec418178019b7a-1760923074552.png"
+ ],
+ "name": "Figma (Ondo Tokenized)",
+ "symbol": "FIGon",
+ "price": "-",
+ "priceChange24hPercent": "-",
+ "communityRecognized": false,
+ "key": "evm--56:0x93fac02b22b6743423381d163aec418178019b7a",
+ "kind": "token",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x99e01f02d66455bb106d91d469c9eaf6ab4904f6",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x99e01f02d66455bb106d91d469c9eaf6ab4904f6-1760923354737.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x99e01f02d66455bb106d91d469c9eaf6ab4904f6-1760923354737.png"
+ ],
+ "name": "Sharplink Gaming (Ondo Tokenized)",
+ "symbol": "SBETon",
+ "marketCap": "1711340120",
+ "price": "8.798824",
+ "priceChange24hPercent": "1.6",
+ "volume24h": "54330194.519999996",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "SharpLink博彩",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x99e01f02d66455bb106d91d469c9eaf6ab4904f6",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x52ad57a7ea642e99a892afc79e937b383f1b59e9",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x52ad57a7ea642e99a892afc79e937b383f1b59e9-1768032941245.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x52ad57a7ea642e99a892afc79e937b383f1b59e9-1768032941245.png"
+ ],
+ "name": "BitMine Immersion Technologies (Ondo Tokenized)",
+ "symbol": "BMNRon",
+ "marketCap": "14222332846",
+ "price": "25.220087",
+ "priceChange24hPercent": "0.99",
+ "volume24h": "1155029873.9099998",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "BitMine",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x52ad57a7ea642e99a892afc79e937b383f1b59e9",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xd04a2bb053277721a8321d7441eed5b42fdf7250",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xd04a2bb053277721a8321d7441eed5b42fdf7250-1761705848977.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xd04a2bb053277721a8321d7441eed5b42fdf7250-1761705848977.png"
+ ],
+ "name": "Salesforce (Ondo Tokenized)",
+ "symbol": "CRMon",
+ "marketCap": "212309370000",
+ "price": "257.487920522776546585",
+ "priceChange24hPercent": "-1.21",
+ "volume24h": "2679425388.3900003",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "赛富时",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0xd04a2bb053277721a8321d7441eed5b42fdf7250",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x4da12f47578ef89c76179b760c778e70b668f80b",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x4da12f47578ef89c76179b760c778e70b668f80b-1760923344446.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x4da12f47578ef89c76179b760c778e70b668f80b-1760923344446.png"
+ ],
+ "name": "Reddit (Ondo Tokenized)",
+ "symbol": "RDDTon",
+ "marketCap": "29734946936",
+ "price": "154.419048",
+ "priceChange24hPercent": "0.05",
+ "volume24h": "429786803.52000004",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "红迪",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x4da12f47578ef89c76179b760c778e70b668f80b",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x6e3e077a6c0e3c27fd6d00b97387d9b7bd451bab",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x6e3e077a6c0e3c27fd6d00b97387d9b7bd451bab-1760923154598.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x6e3e077a6c0e3c27fd6d00b97387d9b7bd451bab-1760923154598.png"
+ ],
+ "name": "Intuit (Ondo Tokenized)",
+ "symbol": "INTUon",
+ "marketCap": "91005759900",
+ "price": "332.51646606263590823",
+ "priceChange24hPercent": "-0.75",
+ "volume24h": "1177837182.6",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x6e3e077a6c0e3c27fd6d00b97387d9b7bd451bab",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xeb19c13c54b1cd48afc62f6503375e92d5f1e856",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xeb19c13c54b1cd48afc62f6503375e92d5f1e856-1760923271194.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xeb19c13c54b1cd48afc62f6503375e92d5f1e856-1760923271194.png"
+ ],
+ "name": "ServiceNow (Ondo Tokenized)",
+ "symbol": "NOWon",
+ "marketCap": "146043346120",
+ "price": "699.30488",
+ "priceChange24hPercent": "-1.05",
+ "volume24h": "1736762600.4399998",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "ServiceNow",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0xeb19c13c54b1cd48afc62f6503375e92d5f1e856",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x138ed6833ff4e8811e1fea0d005e13726c8886f9",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x138ed6833ff4e8811e1fea0d005e13726c8886f9-1760923381351.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x138ed6833ff4e8811e1fea0d005e13726c8886f9-1760923381351.png"
+ ],
+ "name": "Snowflake (Ondo Tokenized)",
+ "symbol": "SNOWon",
+ "marketCap": "116866588000",
+ "price": "337.2775",
+ "priceChange24hPercent": "-0.25",
+ "volume24h": "2842981049.56",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "雪花",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x138ed6833ff4e8811e1fea0d005e13726c8886f9",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xa528caaa2f96090e379d43f90834c75df54d6e74",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xa528caaa2f96090e379d43f90834c75df54d6e74-1760923148597.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xa528caaa2f96090e379d43f90834c75df54d6e74-1760923148597.png"
+ ],
+ "name": "Intel (Ondo Tokenized)",
+ "symbol": "INTCon",
+ "marketCap": "483215175763",
+ "price": "100.597692",
+ "priceChange24hPercent": "1.6",
+ "volume24h": "9355284335",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "英特尔",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0xa528caaa2f96090e379d43f90834c75df54d6e74",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xc142ba8ccd36d80c3a001342fb83e4c3d218a873",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xc142ba8ccd36d80c3a001342fb83e4c3d218a873-1760923376180.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xc142ba8ccd36d80c3a001342fb83e4c3d218a873-1760923376180.png"
+ ],
+ "name": "Super Micro Computer (Ondo Tokenized)",
+ "symbol": "SMCIon",
+ "marketCap": "25609702070",
+ "price": "40.042662",
+ "priceChange24hPercent": "1.47",
+ "volume24h": "2123337279.4800003",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "超微电脑",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0xc142ba8ccd36d80c3a001342fb83e4c3d218a873",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x274b0cb6db9473245a31cdea9b789786f4108e4b",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x274b0cb6db9473245a31cdea9b789786f4108e4b-1768464730010.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x274b0cb6db9473245a31cdea9b789786f4108e4b-1768464730010.png"
+ ],
+ "name": "Caterpillar (Ondo Tokenized)",
+ "symbol": "CATon",
+ "marketCap": "374930879780",
+ "price": "824.840862789310440651",
+ "priceChange24hPercent": "0.98",
+ "volume24h": "1620957440.3000002",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "卡特彼勒",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x274b0cb6db9473245a31cdea9b789786f4108e4b",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x5ecc352c4640f1d26bd231dbbd171f40f7d0eec6",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x5ecc352c4640f1d26bd231dbbd171f40f7d0eec6-1767888045927.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x5ecc352c4640f1d26bd231dbbd171f40f7d0eec6-1767888045927.png"
+ ],
+ "name": "Applied Materials (Ondo Tokenized)",
+ "symbol": "AMATon",
+ "marketCap": "361021096890",
+ "price": "468.39278701627463619",
+ "priceChange24hPercent": "2.68",
+ "volume24h": "2735913224.0099998",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "应用材料",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x5ecc352c4640f1d26bd231dbbd171f40f7d0eec6",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xd7df5863a3e742f0c767768cdfcb63f09e0422f6",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xd7df5863a3e742f0c767768cdfcb63f09e0422f6-1760923233924.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xd7df5863a3e742f0c767768cdfcb63f09e0422f6-1760923233924.png"
+ ],
+ "name": "Meta Platforms (Ondo Tokenized)",
+ "symbol": "METAon",
+ "marketCap": "1571213291779",
+ "price": "614.555295144030774555",
+ "priceChange24hPercent": "-0.02",
+ "volume24h": "9847481192.01",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "Meta",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0xd7df5863a3e742f0c767768cdfcb63f09e0422f6",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x4693f6f5ef257381a28afd0673e64d8b32d5c6ad",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x4693f6f5ef257381a28afd0673e64d8b32d5c6ad-1760923111457.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x4693f6f5ef257381a28afd0673e64d8b32d5c6ad-1760923111457.png"
+ ],
+ "name": "Hims & Hers Health (Ondo Tokenized)",
+ "symbol": "HIMSon",
+ "marketCap": "6181546800",
+ "price": "27.746",
+ "priceChange24hPercent": "-0.21",
+ "volume24h": "182854493.73000002",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "Hims & Hers",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x4693f6f5ef257381a28afd0673e64d8b32d5c6ad",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xb034f6cb52b7f2fd5a7eeeffca6b9adcd6b9a6f6",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xb034f6cb52b7f2fd5a7eeeffca6b9adcd6b9a6f6-1760922980249.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xb034f6cb52b7f2fd5a7eeeffca6b9adcd6b9a6f6-1760922980249.png"
+ ],
+ "name": "ASML Holding NV (Ondo Tokenized)",
+ "symbol": "ASMLon",
+ "marketCap": "660945604406",
+ "price": "1758.414946497724440837",
+ "priceChange24hPercent": "2.21",
+ "volume24h": "2211546975.36",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "阿斯麦",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0xb034f6cb52b7f2fd5a7eeeffca6b9adcd6b9a6f6",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x8fd70ee385f470c8d6fda2d93a4e49c849bac6a6",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x8fd70ee385f470c8d6fda2d93a4e49c849bac6a6-1767883597793.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x8fd70ee385f470c8d6fda2d93a4e49c849bac6a6-1767883597793.png"
+ ],
+ "name": "IREN (Ondo Tokenized)",
+ "symbol": "IRENon",
+ "marketCap": "15944391045",
+ "price": "45.389089",
+ "priceChange24hPercent": "2.29",
+ "volume24h": "1620373503.24",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "IREN",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x8fd70ee385f470c8d6fda2d93a4e49c849bac6a6",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xf3e82ea164cb344b2b11bad4c24b0ea4f7ba4714",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xf3e82ea164cb344b2b11bad4c24b0ea4f7ba4714-1767945976873.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xf3e82ea164cb344b2b11bad4c24b0ea4f7ba4714-1767945976873.png"
+ ],
+ "name": "PDD Holdings (Ondo Tokenized)",
+ "symbol": "PDDon",
+ "marketCap": "117017422072",
+ "price": "81.560326",
+ "priceChange24hPercent": "-0.94",
+ "volume24h": "382935002.09999996",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "拼多多",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0xf3e82ea164cb344b2b11bad4c24b0ea4f7ba4714",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x3fcd741646a9790635b938cdb69af5df356cbaab",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x3fcd741646a9790635b938cdb69af5df356cbaab-1768118974994.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x3fcd741646a9790635b938cdb69af5df356cbaab-1768118974994.png"
+ ],
+ "name": "abrdn Physical Palladium Shares ETF (Ondo Tokenized)",
+ "symbol": "PALLon",
+ "marketCap": "662462421",
+ "price": "127.025",
+ "priceChange24hPercent": "1.16",
+ "volume24h": "18618111.93",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "钯金ETF",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x3fcd741646a9790635b938cdb69af5df356cbaab",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x5acf40056ed51c8bbcd1b125ef803581ac89a627",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x5acf40056ed51c8bbcd1b125ef803581ac89a627-1760923085045.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x5acf40056ed51c8bbcd1b125ef803581ac89a627-1760923085045.png"
+ ],
+ "name": "Futu Holdings (Ondo Tokenized)",
+ "symbol": "FUTUon",
+ "marketCap": "16991222660",
+ "price": "123.422764240887776543",
+ "priceChange24hPercent": "-0.25",
+ "volume24h": "88127276.5",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "富途控股",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x5acf40056ed51c8bbcd1b125ef803581ac89a627",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xd226d8170ee38793430c7dec6903df4b818bb74c",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xd226d8170ee38793430c7dec6903df4b818bb74c-1760923212125.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xd226d8170ee38793430c7dec6903df4b818bb74c-1760923212125.png"
+ ],
+ "name": "MARA Holdings (Ondo Tokenized)",
+ "symbol": "MARAon",
+ "price": "-",
+ "priceChange24hPercent": "-",
+ "communityRecognized": false,
+ "key": "evm--56:0xd226d8170ee38793430c7dec6903df4b818bb74c",
+ "kind": "token",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x08a513779f46ffb7a34f16094a94016d010128a8",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x08a513779f46ffb7a34f16094a94016d010128a8-1760923281600.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x08a513779f46ffb7a34f16094a94016d010128a8-1760923281600.png"
+ ],
+ "name": "Novo Nordisk (Ondo Tokenized)",
+ "symbol": "NVOon",
+ "marketCap": "206932361506",
+ "price": "47.900708616347068423",
+ "priceChange24hPercent": "--",
+ "volume24h": "285153974.40000004",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "诺和诺德",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x08a513779f46ffb7a34f16094a94016d010128a8",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x22092c94a91d019ad15536725598b0a6be0a73c0",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x22092c94a91d019ad15536725598b0a6be0a73c0-1760923137786.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x22092c94a91d019ad15536725598b0a6be0a73c0-1760923137786.png"
+ ],
+ "name": "iShares Core MSCI Emerging Markets ETF (Ondo Tokenized)",
+ "symbol": "IEMGon",
+ "marketCap": "171167801924",
+ "price": "85.994643507231392039",
+ "priceChange24hPercent": "0.89",
+ "volume24h": "577001471.9000001",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "核心新兴市场ETF",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x22092c94a91d019ad15536725598b0a6be0a73c0",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x995add4ba29a628a57930a8a185c62ca044ec090",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x995add4ba29a628a57930a8a185c62ca044ec090-1760923223388.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x995add4ba29a628a57930a8a185c62ca044ec090-1760923223388.png"
+ ],
+ "name": "McDonald's (Ondo Tokenized)",
+ "symbol": "MCDon",
+ "marketCap": "181669279140",
+ "price": "261.414735153891492023",
+ "priceChange24hPercent": "-0.12",
+ "volume24h": "1069340837.13",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "麦当劳",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x995add4ba29a628a57930a8a185c62ca044ec090",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x1cde419fae0ef7f7931ae3e29e5f411c8c5e5fa1",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x1cde419fae0ef7f7931ae3e29e5f411c8c5e5fa1-1760923609945.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x1cde419fae0ef7f7931ae3e29e5f411c8c5e5fa1-1760923609945.png"
+ ],
+ "name": "Visa (Ondo Tokenized)",
+ "symbol": "Von",
+ "marketCap": "700273397430",
+ "price": "374.009002377026934042",
+ "priceChange24hPercent": "-0.75",
+ "volume24h": "1730302929.6",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "维萨",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x1cde419fae0ef7f7931ae3e29e5f411c8c5e5fa1",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x1501ec83ffef405b4331cc4f73277a40fb0c627d",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x1501ec83ffef405b4331cc4f73277a40fb0c627d-1760923239312.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x1501ec83ffef405b4331cc4f73277a40fb0c627d-1760923239312.png"
+ ],
+ "name": "Marvell Technology (Ondo Tokenized)",
+ "symbol": "MRVLon",
+ "marketCap": "195777489300",
+ "price": "229.524776103399458333",
+ "priceChange24hPercent": "2.41",
+ "volume24h": "4743302231.1",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "迈威尔科技",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x1501ec83ffef405b4331cc4f73277a40fb0c627d",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x527c6436e1eaa4f2065cde4090f798cb5d031dd6",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x527c6436e1eaa4f2065cde4090f798cb5d031dd6-1760922974777.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x527c6436e1eaa4f2065cde4090f798cb5d031dd6-1760922974777.png"
+ ],
+ "name": "Arm Holdings plc (Ondo Tokenized)",
+ "symbol": "ARMon",
+ "marketCap": "269231759259",
+ "price": "261.0225",
+ "priceChange24hPercent": "2.2",
+ "volume24h": "1041739741.08",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "安谋",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x527c6436e1eaa4f2065cde4090f798cb5d031dd6",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x0d4f9b25f81163fb4840ba4f434672543823000c",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x0d4f9b25f81163fb4840ba4f434672543823000c-1760923106279.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x0d4f9b25f81163fb4840ba4f434672543823000c-1760923106279.png"
+ ],
+ "name": "Goldman Sachs (Ondo Tokenized)",
+ "symbol": "GSon",
+ "marketCap": "306397220270",
+ "price": "1047.374865547024001893",
+ "priceChange24hPercent": "-0.4",
+ "volume24h": "1483473666.86",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "高盛",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x0d4f9b25f81163fb4840ba4f434672543823000c",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x60a8f8e05200ff73afde9e2cae819bf1605f0bdd",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x60a8f8e05200ff73afde9e2cae819bf1605f0bdd-1760923228476.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x60a8f8e05200ff73afde9e2cae819bf1605f0bdd-1760923228476.png"
+ ],
+ "name": "MercadoLibre (Ondo Tokenized)",
+ "symbol": "MELIon",
+ "marketCap": "100297276982",
+ "price": "1967",
+ "priceChange24hPercent": "-0.43",
+ "volume24h": "557770904.9599999",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "美客多",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x60a8f8e05200ff73afde9e2cae819bf1605f0bdd",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x467e59ce5d5fe01686d4a80dd1e1dae13549aa6c",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x467e59ce5d5fe01686d4a80dd1e1dae13549aa6c-1760515402441.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x467e59ce5d5fe01686d4a80dd1e1dae13549aa6c-1760515402441.png"
+ ],
+ "name": "Baidu (Ondo Tokenized)",
+ "symbol": "BIDUon",
+ "marketCap": "33832211369",
+ "price": "92.292027",
+ "priceChange24hPercent": "-7.17",
+ "volume24h": "256503090.06",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "百度",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x467e59ce5d5fe01686d4a80dd1e1dae13549aa6c",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xc4a88a72b848255fd24da3c1ad6755d980535fb1",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xc4a88a72b848255fd24da3c1ad6755d980535fb1-1760923349554.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xc4a88a72b848255fd24da3c1ad6755d980535fb1-1760923349554.png"
+ ],
+ "name": "Riot Platforms (Ondo Tokenized)",
+ "symbol": "RIOTon",
+ "marketCap": "8243696814",
+ "price": "21.664",
+ "priceChange24hPercent": "-0.09",
+ "volume24h": "335036003.2",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "Riot平台",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0xc4a88a72b848255fd24da3c1ad6755d980535fb1",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x0eaa1a75bd682a5669ab2371a559fbd039c6b9eb",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x0eaa1a75bd682a5669ab2371a559fbd039c6b9eb-1760923292006.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x0eaa1a75bd682a5669ab2371a559fbd039c6b9eb-1760923292006.png"
+ ],
+ "name": "Palo Alto Networks (Ondo Tokenized)",
+ "symbol": "PANWon",
+ "marketCap": "271606900000",
+ "price": "333.65",
+ "priceChange24hPercent": "0.1",
+ "volume24h": "1879381111.84",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "帕洛阿尔托网络",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x0eaa1a75bd682a5669ab2371a559fbd039c6b9eb",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x4d209d275e3492ac08497a7a42915899c4dd5e86",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x4d209d275e3492ac08497a7a42915899c4dd5e86-1768378192726.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x4d209d275e3492ac08497a7a42915899c4dd5e86-1768378192726.png"
+ ],
+ "name": "Exxon Mobil (Ondo Tokenized)",
+ "symbol": "XOMon",
+ "marketCap": "660875591600",
+ "price": "161.929674995637777397",
+ "priceChange24hPercent": "0.06",
+ "volume24h": "2537206808.78",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "埃克森美孚",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x4d209d275e3492ac08497a7a42915899c4dd5e86",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x68b07cef227cea1b2b6683921c8c825cd5c69ec7",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x68b07cef227cea1b2b6683921c8c825cd5c69ec7-1773890434386.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x68b07cef227cea1b2b6683921c8c825cd5c69ec7-1773890434386.png"
+ ],
+ "name": "iShares Bitcoin Trust (Ondo Tokenized)",
+ "symbol": "IBITON",
+ "marketCap": "75421432839",
+ "price": "44.648189",
+ "priceChange24hPercent": "-1.02",
+ "volume24h": "2361768351.6499996",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "贝莱德比特币ETF",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x68b07cef227cea1b2b6683921c8c825cd5c69ec7",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x1104eb7e85e25eb45f88e638b0c27a06c1a91cb2",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x1104eb7e85e25eb45f88e638b0c27a06c1a91cb2-1760923159261.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x1104eb7e85e25eb45f88e638b0c27a06c1a91cb2-1760923159261.png"
+ ],
+ "name": "iShares Core S&P 500 ETF (Ondo Tokenized ETF)",
+ "symbol": "IVVON",
+ "marketCap": "896778097376",
+ "price": "780.425487329284924111",
+ "priceChange24hPercent": "0.05",
+ "volume24h": "7974410540.32",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "安硕标普500",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x1104eb7e85e25eb45f88e638b0c27a06c1a91cb2",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xcf9caf83053213c44dd7027db3e1e4ac98e55f8f",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xcf9caf83053213c44dd7027db3e1e4ac98e55f8f-1760976491888.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xcf9caf83053213c44dd7027db3e1e4ac98e55f8f-1760976491888.png"
+ ],
+ "name": "iShares Core S&P Total US Stock Market ETF (Ondo Tokenized ETF)",
+ "symbol": "ITOTON",
+ "marketCap": "95625104840",
+ "price": "169.804819587832307416",
+ "priceChange24hPercent": "--",
+ "volume24h": "169106458.23999998",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "美股全市场ETF",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0xcf9caf83053213c44dd7027db3e1e4ac98e55f8f",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x2ac26ec236df5d1d2ad1a6dd4e448a90e45dc35d",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x2ac26ec236df5d1d2ad1a6dd4e448a90e45dc35d-1760923397223.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x2ac26ec236df5d1d2ad1a6dd4e448a90e45dc35d-1760923397223.png"
+ ],
+ "name": "iShares TIPS Bond ETF (Ondo Tokenized ETF)",
+ "symbol": "TIPON",
+ "marketCap": "14720410837",
+ "price": "111.376087623270475341",
+ "priceChange24hPercent": "0.03",
+ "volume24h": "108138754.22",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x2ac26ec236df5d1d2ad1a6dd4e448a90e45dc35d",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x38b9a53bfdc5dba58a29bd6992341927c2fca637",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x38b9a53bfdc5dba58a29bd6992341927c2fca637-1760923069433.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x38b9a53bfdc5dba58a29bd6992341927c2fca637-1760923069433.png"
+ ],
+ "name": "iShares MSCI EAFE ETF (Ondo Tokenized ETF)",
+ "symbol": "EFAON",
+ "marketCap": "78896005005",
+ "price": "110.898588433796849651",
+ "priceChange24hPercent": "0.16",
+ "volume24h": "613264467.1999999",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x38b9a53bfdc5dba58a29bd6992341927c2fca637",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x40755f06ab7f8de1ab3a9413b1ef562d63de19b1",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x40755f06ab7f8de1ab3a9413b1ef562d63de19b1-1760923164409.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x40755f06ab7f8de1ab3a9413b1ef562d63de19b1-1760923164409.png"
+ ],
+ "name": "iShares Russell 1000 Growth ETF (Ondo Tokenized ETF)",
+ "symbol": "IWFON",
+ "marketCap": "134439059389",
+ "price": "494.964782503527050629",
+ "priceChange24hPercent": "0.25",
+ "volume24h": "387028445.78999996",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x40755f06ab7f8de1ab3a9413b1ef562d63de19b1",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x00c81d35eddf44c75d4db9e07bdcdc236eb0ebcf",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x00c81d35eddf44c75d4db9e07bdcdc236eb0ebcf-1760923060271.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x00c81d35eddf44c75d4db9e07bdcdc236eb0ebcf-1760923060271.png"
+ ],
+ "name": "iShares MSCI Emerging Markets ETF (Ondo Tokenized ETF)",
+ "symbol": "EEMON",
+ "marketCap": "32146260773",
+ "price": "70.550489448583953469",
+ "priceChange24hPercent": "1.26",
+ "volume24h": "1506651730.8",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "新兴市场ETF",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x00c81d35eddf44c75d4db9e07bdcdc236eb0ebcf",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x01b5a4ac600be98448dbefbb78bcdf38262552cc",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x01b5a4ac600be98448dbefbb78bcdf38262552cc-1768118550219.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x01b5a4ac600be98448dbefbb78bcdf38262552cc-1768118550219.png"
+ ],
+ "name": "Occidental Petroleum (Ondo Tokenized)",
+ "symbol": "OXYON",
+ "marketCap": "59717867448",
+ "price": "60.427368985063029401",
+ "priceChange24hPercent": "--",
+ "volume24h": "400488654.56",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "西方石油",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x01b5a4ac600be98448dbefbb78bcdf38262552cc",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xf54b94ea21e1da5d51ef00fd4502225e5394f874",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xf54b94ea21e1da5d51ef00fd4502225e5394f874-1760923174798.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xf54b94ea21e1da5d51ef00fd4502225e5394f874-1760923174798.png"
+ ],
+ "name": "iShares Russell 2000 Value ETF (Ondo Tokenized ETF)",
+ "symbol": "IWNON",
+ "marketCap": "14510541399",
+ "price": "226.016737142534794549",
+ "priceChange24hPercent": "-0.45",
+ "volume24h": "144788928.9",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0xf54b94ea21e1da5d51ef00fd4502225e5394f874",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x8a83c31d6751833b4940b6e871c48d9a15a07b46",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x8a83c31d6751833b4940b6e871c48d9a15a07b46-1760923307953.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x8a83c31d6751833b4940b6e871c48d9a15a07b46-1760923307953.png"
+ ],
+ "name": "Pfizer (Ondo Tokenized Stock)",
+ "symbol": "PFEON",
+ "marketCap": "162149068000",
+ "price": "30.045669965608379961",
+ "priceChange24hPercent": "-0.39",
+ "volume24h": "669415327.65",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "辉瑞",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x8a83c31d6751833b4940b6e871c48d9a15a07b46",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x500eafc69b68acd6f27064f9b75f1c7d91cc4d9f",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x500eafc69b68acd6f27064f9b75f1c7d91cc4d9f-1760923169588.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x500eafc69b68acd6f27064f9b75f1c7d91cc4d9f-1760923169588.png"
+ ],
+ "name": "iShares Russell 2000 ETF (Ondo Tokenized ETF)",
+ "symbol": "IWMON",
+ "marketCap": "81417408119",
+ "price": "297.748095366553568352",
+ "priceChange24hPercent": "0.02",
+ "volume24h": "4113713428.1099997",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "罗素2000 ETF",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x500eafc69b68acd6f27064f9b75f1c7d91cc4d9f",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xd85d4ce29b4ca361ff72ef0e53d6236e334c5db6",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xd85d4ce29b4ca361ff72ef0e53d6236e334c5db6-1768118835493.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xd85d4ce29b4ca361ff72ef0e53d6236e334c5db6-1768118835493.png"
+ ],
+ "name": "Ondas Holdings (Ondo Tokenized)",
+ "symbol": "ONDSON",
+ "price": "-",
+ "priceChange24hPercent": "-",
+ "communityRecognized": false,
+ "key": "evm--56:0xd85d4ce29b4ca361ff72ef0e53d6236e334c5db6",
+ "kind": "token",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x167e93a849a0cc479769132552b99aa1cfa0948c",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x167e93a849a0cc479769132552b99aa1cfa0948c-1760923143055.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x167e93a849a0cc479769132552b99aa1cfa0948c-1760923143055.png"
+ ],
+ "name": "iShares Core S&P MidCap ETF (Ondo Tokenized ETF)",
+ "symbol": "IJHON",
+ "marketCap": "123402837938",
+ "price": "76.53881613572147098",
+ "priceChange24hPercent": "0.14",
+ "volume24h": "360950049.75",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x167e93a849a0cc479769132552b99aa1cfa0948c",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xa7d1e886acf66ec0656df2decb4b7c893a3bab4c",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xa7d1e886acf66ec0656df2decb4b7c893a3bab4c-1760923620884.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xa7d1e886acf66ec0656df2decb4b7c893a3bab4c-1760923620884.png"
+ ],
+ "name": "Walmart (Ondo Tokenized Stock)",
+ "symbol": "WMTON",
+ "marketCap": "852628691200",
+ "price": "107.242391409320952249",
+ "priceChange24hPercent": "-0.47",
+ "volume24h": "2200706170.08",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "沃尔玛",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0xa7d1e886acf66ec0656df2decb4b7c893a3bab4c",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x2b1d5cdecc356530a746c5754231efaeaca64022",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x2b1d5cdecc356530a746c5754231efaeaca64022-1760923297458.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x2b1d5cdecc356530a746c5754231efaeaca64022-1760923297458.png"
+ ],
+ "name": "Petrobras (Ondo Tokenized Stock)",
+ "symbol": "PBRON",
+ "marketCap": "129660646415",
+ "price": "20.856197511015279798",
+ "priceChange24hPercent": "-0.22",
+ "volume24h": "377829496.24",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "巴西石油",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x2b1d5cdecc356530a746c5754231efaeaca64022",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xecc1299f183b6a720a6f4729bf24f82cd8d50828",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xecc1299f183b6a720a6f4729bf24f82cd8d50828-1760923402510.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xecc1299f183b6a720a6f4729bf24f82cd8d50828-1760923402510.png"
+ ],
+ "name": "Toyota (Ondo Tokenized Stock)",
+ "symbol": "TMON",
+ "marketCap": "233414630448",
+ "price": "197.584090494197418125",
+ "priceChange24hPercent": "1.15",
+ "volume24h": "64367650.27",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "丰田",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0xecc1299f183b6a720a6f4729bf24f82cd8d50828",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x24f5471183ea549987f245d6ce236b6108869c92",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x24f5471183ea549987f245d6ce236b6108869c92-1760923012085.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x24f5471183ea549987f245d6ce236b6108869c92-1760923012085.png"
+ ],
+ "name": "Blackrock, Inc. (Ondo Tokenized Stock)",
+ "symbol": "BLKON",
+ "marketCap": "173949338550",
+ "price": "1132.730600298929983859",
+ "priceChange24hPercent": "-0.52",
+ "volume24h": "460986228.95",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "贝莱德",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x24f5471183ea549987f245d6ce236b6108869c92",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xe8ff70859ce4cbd72e4352b4fb45f5bf39d07464",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xe8ff70859ce4cbd72e4352b4fb45f5bf39d07464-1760923127124.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xe8ff70859ce4cbd72e4352b4fb45f5bf39d07464-1760923127124.png"
+ ],
+ "name": "IBM (Ondo Tokenized Stock)",
+ "symbol": "IBMON",
+ "marketCap": "221297855260",
+ "price": "239.939607742091185163",
+ "priceChange24hPercent": "-0.04",
+ "volume24h": "717698173.8499999",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "国际商业机器",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0xe8ff70859ce4cbd72e4352b4fb45f5bf39d07464",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x4fd67cb8cfedc718bac984b5936abe3330d0a2a4",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x4fd67cb8cfedc718bac984b5936abe3330d0a2a4-1773890603767.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x4fd67cb8cfedc718bac984b5936abe3330d0a2a4-1773890603767.png"
+ ],
+ "name": "SanDisk (Ondo Tokenized)",
+ "symbol": "SNDKON",
+ "marketCap": "257676165000",
+ "price": "1813.141716",
+ "priceChange24hPercent": "1.53",
+ "volume24h": "28809122580",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "闪迪",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x4fd67cb8cfedc718bac984b5936abe3330d0a2a4",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xe4e12c9cec3e8cae405202a97f66afa695075fa0",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xe4e12c9cec3e8cae405202a97f66afa695075fa0-1760923070917.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xe4e12c9cec3e8cae405202a97f66afa695075fa0-1760923070917.png"
+ ],
+ "name": "Equinix (Ondo Tokenized Stock)",
+ "symbol": "EQIXON",
+ "marketCap": "102221893262",
+ "price": "1034.973342393173569538",
+ "priceChange24hPercent": "-1.63",
+ "volume24h": "357010103.78000003",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0xe4e12c9cec3e8cae405202a97f66afa695075fa0",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x5151a22421ed4277f1e4ca4785a07b035d548a36",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x5151a22421ed4277f1e4ca4785a07b035d548a36-1760923090436.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x5151a22421ed4277f1e4ca4785a07b035d548a36-1760923090436.png"
+ ],
+ "name": "General Electric (Ondo Tokenized Stock)",
+ "symbol": "GEON",
+ "marketCap": "349783074383",
+ "price": "337.589114914645847783",
+ "priceChange24hPercent": "-0.19",
+ "volume24h": "825014560.16",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "通用电气",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x5151a22421ed4277f1e4ca4785a07b035d548a36",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xf21132a811ad1a878e21af60f64d4e690c9daa42",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xf21132a811ad1a878e21af60f64d4e690c9daa42-1761748250710.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xf21132a811ad1a878e21af60f64d4e690c9daa42-1761748250710.png"
+ ],
+ "name": "Boeing (Ondo Tokenized Stock)",
+ "symbol": "BAON",
+ "price": "-",
+ "priceChange24hPercent": "-",
+ "communityRecognized": false,
+ "key": "evm--56:0xf21132a811ad1a878e21af60f64d4e690c9daa42",
+ "kind": "token",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x12b7adc48416a103f63e7e6210f62c81dfb91fd0",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x12b7adc48416a103f63e7e6210f62c81dfb91fd0-1773890376568.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x12b7adc48416a103f63e7e6210f62c81dfb91fd0-1773890376568.png"
+ ],
+ "name": "iShares MSCI South Korea ETF (Ondo Tokenized)",
+ "symbol": "EWYON",
+ "marketCap": "14278571056",
+ "price": "194.898272",
+ "priceChange24hPercent": "3.95",
+ "volume24h": "3455448231.73",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "iShares MSCI韩国ETF",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x12b7adc48416a103f63e7e6210f62c81dfb91fd0",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x34375f826fd3dd4e15f883d4f4786bb45eb705ac",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x34375f826fd3dd4e15f883d4f4786bb45eb705ac-1761313247216.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x34375f826fd3dd4e15f883d4f4786bb45eb705ac-1761313247216.png"
+ ],
+ "name": "Costco (Ondo Tokenized Stock)",
+ "symbol": "COSTON",
+ "marketCap": "406111459460",
+ "price": "918.726163055351801392",
+ "priceChange24hPercent": "-0.23",
+ "volume24h": "1903887561.8",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "开市客",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x34375f826fd3dd4e15f883d4f4786bb45eb705ac",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x629520dee1620def11596f84e85de9f1ff653012",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x629520dee1620def11596f84e85de9f1ff653012-1760923615610.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x629520dee1620def11596f84e85de9f1ff653012-1760923615610.png"
+ ],
+ "name": "Wells Fargo (Ondo Tokenized Stock)",
+ "symbol": "WFCON",
+ "marketCap": "272039040000",
+ "price": "90.828327345333623842",
+ "priceChange24hPercent": "-0.85",
+ "volume24h": "712161682.9599999",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "富国银行",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x629520dee1620def11596f84e85de9f1ff653012",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xef80743f78d98fc2b47a2253b293152ce8b879ba",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xef80743f78d98fc2b47a2253b293152ce8b879ba-1760922268573.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xef80743f78d98fc2b47a2253b293152ce8b879ba-1760922268573.png"
+ ],
+ "name": "Airbnb (Ondo Tokenized Stock)",
+ "symbol": "ABNBON",
+ "marketCap": "107983869660",
+ "price": "181.313333",
+ "priceChange24hPercent": "-0.66",
+ "volume24h": "620194706.78",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "爱彼迎",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0xef80743f78d98fc2b47a2253b293152ce8b879ba",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xfbd4d681c92ead6af0e49950c8b2e47eeacbb2db",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xfbd4d681c92ead6af0e49950c8b2e47eeacbb2db-1760923334398.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xfbd4d681c92ead6af0e49950c8b2e47eeacbb2db-1760923334398.png"
+ ],
+ "name": "Qualcomm (Ondo Tokenized Stock)",
+ "symbol": "QCOMON",
+ "marketCap": "177177000000",
+ "price": "174.693612375015163222",
+ "priceChange24hPercent": "1.84",
+ "volume24h": "1440555484.94",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "高通",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0xfbd4d681c92ead6af0e49950c8b2e47eeacbb2db",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xc008c5f579ec1450f20099c39f587547e27c7523",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xc008c5f579ec1450f20099c39f587547e27c7523-1768185634202.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xc008c5f579ec1450f20099c39f587547e27c7523-1768185634202.png"
+ ],
+ "name": "iShares 0-3 Month Treasury Bond ETF (Ondo Tokenized ETF)",
+ "symbol": "SGOVON",
+ "marketCap": "95942590920",
+ "price": "102.324784764508258885",
+ "priceChange24hPercent": "--",
+ "volume24h": "2053722039.09",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "iShares 0-3个月国债ETF",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0xc008c5f579ec1450f20099c39f587547e27c7523",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x76e39171cb665a35981e744e2ceb7012f76caeac",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x76e39171cb665a35981e744e2ceb7012f76caeac-1773853768684.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x76e39171cb665a35981e744e2ceb7012f76caeac-1773853768684.png"
+ ],
+ "name": "CoreWeave (Ondo Tokenized)",
+ "symbol": "CRWVON",
+ "marketCap": "48752169872",
+ "price": "91.523734",
+ "priceChange24hPercent": "2.73",
+ "volume24h": "1858414200.96",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "CoreWeave",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x76e39171cb665a35981e744e2ceb7012f76caeac",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ }
+ ],
+ "stocks||1h|market__tab__consumer_tech": [
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x390a684ef9cade28a7ad0dfa61ab1eb3842618c4",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x390a684ef9cade28a7ad0dfa61ab1eb3842618c4-1760515427269.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x390a684ef9cade28a7ad0dfa61ab1eb3842618c4-1760515427269.png"
+ ],
+ "name": "Apple (Ondo Tokenized)",
+ "symbol": "AAPLon",
+ "marketCap": "4699513299320",
+ "price": "320.298481855554072365",
+ "priceChange24hPercent": "-0.5",
+ "volume24h": "12673014673.480001",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "苹果",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x390a684ef9cade28a7ad0dfa61ab1eb3842618c4",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x4553cfe1c09f37f38b12dc509f676964e392f8fc",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x4553cfe1c09f37f38b12dc509f676964e392f8fc-1760686410256.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x4553cfe1c09f37f38b12dc509f676964e392f8fc-1760686410256.png"
+ ],
+ "name": "Amazon (Ondo Tokenized)",
+ "symbol": "AMZNon",
+ "marketCap": "2780817921000",
+ "price": "258.279748",
+ "priceChange24hPercent": "-0.11",
+ "volume24h": "7949159751.12",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "亚马逊",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x4553cfe1c09f37f38b12dc509f676964e392f8fc",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x091fc7778e6932d4009b087b191d1ee3bac5729a",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x091fc7778e6932d4009b087b191d1ee3bac5729a-1760923100804.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x091fc7778e6932d4009b087b191d1ee3bac5729a-1760923100804.png"
+ ],
+ "name": "Alphabet Class A (Ondo Tokenized)",
+ "symbol": "GOOGLon",
+ "marketCap": "4096080585860",
+ "price": "338.962258099649311085",
+ "priceChange24hPercent": "-0.2",
+ "volume24h": "7848657585.66",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "谷歌",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x091fc7778e6932d4009b087b191d1ee3bac5729a",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x6bfe75d1ad432050ea973c3a3dcd88f02e2444c3",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x6bfe75d1ad432050ea973c3a3dcd88f02e2444c3-1760923244592.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x6bfe75d1ad432050ea973c3a3dcd88f02e2444c3-1760923244592.png"
+ ],
+ "name": "Microsoft (Ondo Tokenized)",
+ "symbol": "MSFTon",
+ "marketCap": "3710547335000",
+ "price": "499.708647472892879635",
+ "priceChange24hPercent": "-0.72",
+ "volume24h": "9045448472.6",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "微软",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x6bfe75d1ad432050ea973c3a3dcd88f02e2444c3",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x7048f5227b032326cc8dbc53cf3fddd947a2c757",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x7048f5227b032326cc8dbc53cf3fddd947a2c757-1760923261006.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x7048f5227b032326cc8dbc53cf3fddd947a2c757-1760923261006.png"
+ ],
+ "name": "Netflix (Ondo Tokenized)",
+ "symbol": "NFLXon",
+ "marketCap": "325828304922",
+ "price": "778.72424",
+ "priceChange24hPercent": "-0.54",
+ "volume24h": "3144868282.5",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "奈飞",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x7048f5227b032326cc8dbc53cf3fddd947a2c757",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x03e4bd1ea53f1da84513da0319d1f03dd1bbcf93",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x03e4bd1ea53f1da84513da0319d1f03dd1bbcf93-1760923286694.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x03e4bd1ea53f1da84513da0319d1f03dd1bbcf93-1760923286694.png"
+ ],
+ "name": "Oracle (Ondo Tokenized)",
+ "symbol": "ORCLon",
+ "marketCap": "457505050100",
+ "price": "166.481535598340633943",
+ "priceChange24hPercent": "2.21",
+ "volume24h": "4138044844.8500004",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "甲骨文",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x03e4bd1ea53f1da84513da0319d1f03dd1bbcf93",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x2494b603319d4d9f9715c9f4496d9e0364b59d93",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x2494b603319d4d9f9715c9f4496d9e0364b59d93-1760680411667.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x2494b603319d4d9f9715c9f4496d9e0364b59d93-1760680411667.png"
+ ],
+ "name": "Tesla (Ondo Tokenized)",
+ "symbol": "TSLAon",
+ "marketCap": "1398455741268",
+ "price": "356.443455",
+ "priceChange24hPercent": "0.17",
+ "volume24h": "23021647442.719997",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "特斯拉",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x2494b603319d4d9f9715c9f4496d9e0364b59d93",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x34304f2f7cc487eb4186e6d69f5905a613474aa2",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x34304f2f7cc487eb4186e6d69f5905a613474aa2-1761709115472.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x34304f2f7cc487eb4186e6d69f5905a613474aa2-1761709115472.png"
+ ],
+ "name": "Cisco Systems (Ondo Tokenized)",
+ "symbol": "CSCOon",
+ "marketCap": "430404665418",
+ "price": "110.75473913211509356",
+ "priceChange24hPercent": "0.07",
+ "volume24h": "1351570474.8",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "思科",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x34304f2f7cc487eb4186e6d69f5905a613474aa2",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x50356167a4dbc38bea6779c045e24e25facedfdc",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x50356167a4dbc38bea6779c045e24e25facedfdc-1760923391964.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x50356167a4dbc38bea6779c045e24e25facedfdc-1760923391964.png"
+ ],
+ "name": "Spotify (Ondo Tokenized)",
+ "symbol": "SPOTon",
+ "marketCap": "111515040318",
+ "price": "534.766667",
+ "priceChange24hPercent": "-1.69",
+ "volume24h": "742202629.56",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "Spotify",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x50356167a4dbc38bea6779c045e24e25facedfdc",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xe6837794fbc6dd024733a1a31f86061296fa2752",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xe6837794fbc6dd024733a1a31f86061296fa2752-1767888357216.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xe6837794fbc6dd024733a1a31f86061296fa2752-1767888357216.png"
+ ],
+ "name": "CrowdStrike (Ondo Tokenized)",
+ "symbol": "CRWDon",
+ "marketCap": "216991052568",
+ "price": "854.08",
+ "priceChange24hPercent": "0.11",
+ "volume24h": "1796128480.1",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "CrowdStrike",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0xe6837794fbc6dd024733a1a31f86061296fa2752",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x43d0b380c33cd004a6a69abd61843881a2de4113",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x43d0b380c33cd004a6a69abd61843881a2de4113-1760923365671.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x43d0b380c33cd004a6a69abd61843881a2de4113-1760923365671.png"
+ ],
+ "name": "Shopify (Ondo Tokenized)",
+ "symbol": "SHOPon",
+ "marketCap": "188276717956",
+ "price": "143.536364",
+ "priceChange24hPercent": "-1.23",
+ "volume24h": "1001972823.39",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "Shopify",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x43d0b380c33cd004a6a69abd61843881a2de4113",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x7af44d51d1fb88c5b74fc71d3cba649bb8099d14",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x7af44d51d1fb88c5b74fc71d3cba649bb8099d14-1760922282064.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x7af44d51d1fb88c5b74fc71d3cba649bb8099d14-1760922282064.png"
+ ],
+ "name": "Accenture (Ondo Tokenized)",
+ "symbol": "ACNon",
+ "marketCap": "114261830592",
+ "price": "190.128369050462170162",
+ "priceChange24hPercent": "-1.11",
+ "volume24h": "906653876.64",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "埃森哲",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x7af44d51d1fb88c5b74fc71d3cba649bb8099d14",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xeb19c13c54b1cd48afc62f6503375e92d5f1e856",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xeb19c13c54b1cd48afc62f6503375e92d5f1e856-1760923271194.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xeb19c13c54b1cd48afc62f6503375e92d5f1e856-1760923271194.png"
+ ],
+ "name": "ServiceNow (Ondo Tokenized)",
+ "symbol": "NOWon",
+ "marketCap": "146043346120",
+ "price": "699.30488",
+ "priceChange24hPercent": "-1.05",
+ "volume24h": "1736762600.4399998",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "ServiceNow",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0xeb19c13c54b1cd48afc62f6503375e92d5f1e856",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xd7df5863a3e742f0c767768cdfcb63f09e0422f6",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xd7df5863a3e742f0c767768cdfcb63f09e0422f6-1760923233924.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xd7df5863a3e742f0c767768cdfcb63f09e0422f6-1760923233924.png"
+ ],
+ "name": "Meta Platforms (Ondo Tokenized)",
+ "symbol": "METAon",
+ "marketCap": "1571213291779",
+ "price": "614.555295144030774555",
+ "priceChange24hPercent": "-0.02",
+ "volume24h": "9847481192.01",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "Meta",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0xd7df5863a3e742f0c767768cdfcb63f09e0422f6",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x995add4ba29a628a57930a8a185c62ca044ec090",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x995add4ba29a628a57930a8a185c62ca044ec090-1760923223388.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x995add4ba29a628a57930a8a185c62ca044ec090-1760923223388.png"
+ ],
+ "name": "McDonald's (Ondo Tokenized)",
+ "symbol": "MCDon",
+ "marketCap": "181669279140",
+ "price": "261.414735153891492023",
+ "priceChange24hPercent": "-0.12",
+ "volume24h": "1069340837.13",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "麦当劳",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x995add4ba29a628a57930a8a185c62ca044ec090",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x0eaa1a75bd682a5669ab2371a559fbd039c6b9eb",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x0eaa1a75bd682a5669ab2371a559fbd039c6b9eb-1760923292006.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x0eaa1a75bd682a5669ab2371a559fbd039c6b9eb-1760923292006.png"
+ ],
+ "name": "Palo Alto Networks (Ondo Tokenized)",
+ "symbol": "PANWon",
+ "marketCap": "271606900000",
+ "price": "333.65",
+ "priceChange24hPercent": "0.1",
+ "volume24h": "1879381111.84",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "帕洛阿尔托网络",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x0eaa1a75bd682a5669ab2371a559fbd039c6b9eb",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xa7d1e886acf66ec0656df2decb4b7c893a3bab4c",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xa7d1e886acf66ec0656df2decb4b7c893a3bab4c-1760923620884.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xa7d1e886acf66ec0656df2decb4b7c893a3bab4c-1760923620884.png"
+ ],
+ "name": "Walmart (Ondo Tokenized Stock)",
+ "symbol": "WMTON",
+ "marketCap": "852628691200",
+ "price": "107.242391409320952249",
+ "priceChange24hPercent": "-0.47",
+ "volume24h": "2200706170.08",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "沃尔玛",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0xa7d1e886acf66ec0656df2decb4b7c893a3bab4c",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xecc1299f183b6a720a6f4729bf24f82cd8d50828",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xecc1299f183b6a720a6f4729bf24f82cd8d50828-1760923402510.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xecc1299f183b6a720a6f4729bf24f82cd8d50828-1760923402510.png"
+ ],
+ "name": "Toyota (Ondo Tokenized Stock)",
+ "symbol": "TMON",
+ "marketCap": "233414630448",
+ "price": "197.584090494197418125",
+ "priceChange24hPercent": "1.15",
+ "volume24h": "64367650.27",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "丰田",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0xecc1299f183b6a720a6f4729bf24f82cd8d50828",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xef80743f78d98fc2b47a2253b293152ce8b879ba",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xef80743f78d98fc2b47a2253b293152ce8b879ba-1760922268573.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xef80743f78d98fc2b47a2253b293152ce8b879ba-1760922268573.png"
+ ],
+ "name": "Airbnb (Ondo Tokenized Stock)",
+ "symbol": "ABNBON",
+ "marketCap": "107983869660",
+ "price": "181.313333",
+ "priceChange24hPercent": "-0.66",
+ "volume24h": "620194706.78",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "爱彼迎",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0xef80743f78d98fc2b47a2253b293152ce8b879ba",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ }
+ ],
+ "stocks||1h|market__tab__ai_tech": [
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xa9ee28c80f960b889dfbd1902055218cba016f75",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xa9ee28c80f960b889dfbd1902055218cba016f75-1760923276163.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xa9ee28c80f960b889dfbd1902055218cba016f75-1760923276163.png"
+ ],
+ "name": "NVIDIA (Ondo Tokenized)",
+ "symbol": "NVDAon",
+ "marketCap": "5579549560000",
+ "price": "233.18030531293853192",
+ "priceChange24hPercent": "0.56",
+ "volume24h": "31179783471.2",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "英伟达",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0xa9ee28c80f960b889dfbd1902055218cba016f75",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x8b6acf6041a81567f012ff6a4c6d96d5818d74bf",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x8b6acf6041a81567f012ff6a4c6d96d5818d74bf-1760923255049.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x8b6acf6041a81567f012ff6a4c6d96d5818d74bf-1760923255049.png"
+ ],
+ "name": "Micron Technology (Ondo Tokenized)",
+ "symbol": "MUon",
+ "marketCap": "1148126580100",
+ "price": "1055.805608023373639527",
+ "priceChange24hPercent": "1.28",
+ "volume24h": "35834308520.21",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "美光科技",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x8b6acf6041a81567f012ff6a4c6d96d5818d74bf",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x9f16e46c73b43bdb70861247d537bee4ea18f639",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x9f16e46c73b43bdb70861247d537bee4ea18f639-1760922831860.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x9f16e46c73b43bdb70861247d537bee4ea18f639-1760922831860.png"
+ ],
+ "name": "AMD (Ondo Tokenized)",
+ "symbol": "AMDon",
+ "marketCap": "778725642000",
+ "price": "487.975263",
+ "priceChange24hPercent": "1.18",
+ "volume24h": "9397976816.94",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "超威半导体",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x9f16e46c73b43bdb70861247d537bee4ea18f639",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x0ed2e3180edf393e6bf8db124bd15ddd54de150a",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x0ed2e3180edf393e6bf8db124bd15ddd54de150a-1760922985968.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x0ed2e3180edf393e6bf8db124bd15ddd54de150a-1760922985968.png"
+ ],
+ "name": "Broadcom (Ondo Tokenized)",
+ "symbol": "AVGOon",
+ "marketCap": "1702714094100",
+ "price": "364.792451018770787223",
+ "priceChange24hPercent": "0.24",
+ "volume24h": "11761598227.175",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "博通",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x0ed2e3180edf393e6bf8db124bd15ddd54de150a",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xc37042a7a4fa510d8884a433762ab87257b91965",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xc37042a7a4fa510d8884a433762ab87257b91965-1760923413025.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xc37042a7a4fa510d8884a433762ab87257b91965-1760923413025.png"
+ ],
+ "name": "Taiwan Semiconductor Manufacturing (Ondo Tokenized)",
+ "symbol": "TSMon",
+ "marketCap": "2224533136800",
+ "price": "438.018182406245951052",
+ "priceChange24hPercent": "0.37",
+ "volume24h": "5261764083.780001",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "台积电",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0xc37042a7a4fa510d8884a433762ab87257b91965",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xa528caaa2f96090e379d43f90834c75df54d6e74",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xa528caaa2f96090e379d43f90834c75df54d6e74-1760923148597.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xa528caaa2f96090e379d43f90834c75df54d6e74-1760923148597.png"
+ ],
+ "name": "Intel (Ondo Tokenized)",
+ "symbol": "INTCon",
+ "marketCap": "483215175763",
+ "price": "100.597692",
+ "priceChange24hPercent": "1.6",
+ "volume24h": "9355284335",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "英特尔",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0xa528caaa2f96090e379d43f90834c75df54d6e74",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xc142ba8ccd36d80c3a001342fb83e4c3d218a873",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xc142ba8ccd36d80c3a001342fb83e4c3d218a873-1760923376180.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xc142ba8ccd36d80c3a001342fb83e4c3d218a873-1760923376180.png"
+ ],
+ "name": "Super Micro Computer (Ondo Tokenized)",
+ "symbol": "SMCIon",
+ "marketCap": "25609702070",
+ "price": "40.042662",
+ "priceChange24hPercent": "1.47",
+ "volume24h": "2123337279.4800003",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "超微电脑",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0xc142ba8ccd36d80c3a001342fb83e4c3d218a873",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x5ecc352c4640f1d26bd231dbbd171f40f7d0eec6",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x5ecc352c4640f1d26bd231dbbd171f40f7d0eec6-1767888045927.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x5ecc352c4640f1d26bd231dbbd171f40f7d0eec6-1767888045927.png"
+ ],
+ "name": "Applied Materials (Ondo Tokenized)",
+ "symbol": "AMATon",
+ "marketCap": "361021096890",
+ "price": "468.39278701627463619",
+ "priceChange24hPercent": "2.68",
+ "volume24h": "2735913224.0099998",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "应用材料",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x5ecc352c4640f1d26bd231dbbd171f40f7d0eec6",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xb034f6cb52b7f2fd5a7eeeffca6b9adcd6b9a6f6",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xb034f6cb52b7f2fd5a7eeeffca6b9adcd6b9a6f6-1760922980249.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xb034f6cb52b7f2fd5a7eeeffca6b9adcd6b9a6f6-1760922980249.png"
+ ],
+ "name": "ASML Holding NV (Ondo Tokenized)",
+ "symbol": "ASMLon",
+ "marketCap": "660945604406",
+ "price": "1758.414946497724440837",
+ "priceChange24hPercent": "2.21",
+ "volume24h": "2211546975.36",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "阿斯麦",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0xb034f6cb52b7f2fd5a7eeeffca6b9adcd6b9a6f6",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x1501ec83ffef405b4331cc4f73277a40fb0c627d",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x1501ec83ffef405b4331cc4f73277a40fb0c627d-1760923239312.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x1501ec83ffef405b4331cc4f73277a40fb0c627d-1760923239312.png"
+ ],
+ "name": "Marvell Technology (Ondo Tokenized)",
+ "symbol": "MRVLon",
+ "marketCap": "195777489300",
+ "price": "229.524776103399458333",
+ "priceChange24hPercent": "2.41",
+ "volume24h": "4743302231.1",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "迈威尔科技",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x1501ec83ffef405b4331cc4f73277a40fb0c627d",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x527c6436e1eaa4f2065cde4090f798cb5d031dd6",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x527c6436e1eaa4f2065cde4090f798cb5d031dd6-1760922974777.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x527c6436e1eaa4f2065cde4090f798cb5d031dd6-1760922974777.png"
+ ],
+ "name": "Arm Holdings plc (Ondo Tokenized)",
+ "symbol": "ARMon",
+ "marketCap": "269231759259",
+ "price": "261.0225",
+ "priceChange24hPercent": "2.2",
+ "volume24h": "1041739741.08",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "安谋",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x527c6436e1eaa4f2065cde4090f798cb5d031dd6",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xe8ff70859ce4cbd72e4352b4fb45f5bf39d07464",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xe8ff70859ce4cbd72e4352b4fb45f5bf39d07464-1760923127124.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xe8ff70859ce4cbd72e4352b4fb45f5bf39d07464-1760923127124.png"
+ ],
+ "name": "IBM (Ondo Tokenized Stock)",
+ "symbol": "IBMON",
+ "marketCap": "221297855260",
+ "price": "239.939607742091185163",
+ "priceChange24hPercent": "-0.04",
+ "volume24h": "717698173.8499999",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "国际商业机器",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0xe8ff70859ce4cbd72e4352b4fb45f5bf39d07464",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x4fd67cb8cfedc718bac984b5936abe3330d0a2a4",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x4fd67cb8cfedc718bac984b5936abe3330d0a2a4-1773890603767.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x4fd67cb8cfedc718bac984b5936abe3330d0a2a4-1773890603767.png"
+ ],
+ "name": "SanDisk (Ondo Tokenized)",
+ "symbol": "SNDKON",
+ "marketCap": "257676165000",
+ "price": "1813.141716",
+ "priceChange24hPercent": "1.53",
+ "volume24h": "28809122580",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "闪迪",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x4fd67cb8cfedc718bac984b5936abe3330d0a2a4",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xfbd4d681c92ead6af0e49950c8b2e47eeacbb2db",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xfbd4d681c92ead6af0e49950c8b2e47eeacbb2db-1760923334398.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xfbd4d681c92ead6af0e49950c8b2e47eeacbb2db-1760923334398.png"
+ ],
+ "name": "Qualcomm (Ondo Tokenized Stock)",
+ "symbol": "QCOMON",
+ "marketCap": "177177000000",
+ "price": "174.693612375015163222",
+ "priceChange24hPercent": "1.84",
+ "volume24h": "1440555484.94",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "高通",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0xfbd4d681c92ead6af0e49950c8b2e47eeacbb2db",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ }
+ ],
+ "stocks||1h|market__tab__etfs": [
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x6a708ead771238919d85930b5a0f10454e1c331a",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x6a708ead771238919d85930b5a0f10454e1c331a-1760921581963.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x6a708ead771238919d85930b5a0f10454e1c331a-1760921581963.png"
+ ],
+ "name": "SPDR S&P 500 ETF (Ondo Tokenized)",
+ "symbol": "SPYon",
+ "marketCap": "820435829283",
+ "price": "776.141056177460214449",
+ "priceChange24hPercent": "0.01",
+ "volume24h": "25385765084.670002",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "标普500 ETF",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x6a708ead771238919d85930b5a0f10454e1c331a",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x0cde6936d305d5b34667fc46425e852efd73559a",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x0cde6936d305d5b34667fc46425e852efd73559a-1760923339182.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x0cde6936d305d5b34667fc46425e852efd73559a-1760923339182.png"
+ ],
+ "name": "Invesco QQQ (Ondo Tokenized)",
+ "symbol": "QQQon",
+ "marketCap": "512284401576",
+ "price": "725.686548519952709569",
+ "priceChange24hPercent": "0.32",
+ "volume24h": "23632988800.960003",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "纳指ETF",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x0cde6936d305d5b34667fc46425e852efd73559a",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xe42cfb20e00912409b77a602b5bdcff3c7acc5f4",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xe42cfb20e00912409b77a602b5bdcff3c7acc5f4-1768032381719.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xe42cfb20e00912409b77a602b5bdcff3c7acc5f4-1768032381719.png"
+ ],
+ "name": "ProShares UltraPro QQQ (Ondo Tokenized)",
+ "symbol": "TQQQon",
+ "marketCap": "44436706139",
+ "price": "73.845438057857333962",
+ "priceChange24hPercent": "1.87",
+ "volume24h": "3426881608.8",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "三倍做多纳指ETF",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0xe42cfb20e00912409b77a602b5bdcff3c7acc5f4",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xf69e40069ac227c11459e3f4e8a446b3401616b6",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xf69e40069ac227c11459e3f4e8a446b3401616b6-1760923398719.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xf69e40069ac227c11459e3f4e8a446b3401616b6-1760923398719.png"
+ ],
+ "name": "iShares 20+ Year Treasury Bond ETF (Ondo Tokenized)",
+ "symbol": "TLTon",
+ "marketCap": "41558996997",
+ "price": "85.978427962124070646",
+ "priceChange24hPercent": "0.16",
+ "volume24h": "1364023798.4499998",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "20年国债ETF",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0xf69e40069ac227c11459e3f4e8a446b3401616b6",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x22092c94a91d019ad15536725598b0a6be0a73c0",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x22092c94a91d019ad15536725598b0a6be0a73c0-1760923137786.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x22092c94a91d019ad15536725598b0a6be0a73c0-1760923137786.png"
+ ],
+ "name": "iShares Core MSCI Emerging Markets ETF (Ondo Tokenized)",
+ "symbol": "IEMGon",
+ "marketCap": "171167801924",
+ "price": "85.994643507231392039",
+ "priceChange24hPercent": "0.89",
+ "volume24h": "577001471.9000001",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "核心新兴市场ETF",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x22092c94a91d019ad15536725598b0a6be0a73c0",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xcf9caf83053213c44dd7027db3e1e4ac98e55f8f",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xcf9caf83053213c44dd7027db3e1e4ac98e55f8f-1760976491888.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xcf9caf83053213c44dd7027db3e1e4ac98e55f8f-1760976491888.png"
+ ],
+ "name": "iShares Core S&P Total US Stock Market ETF (Ondo Tokenized ETF)",
+ "symbol": "ITOTON",
+ "marketCap": "95625104840",
+ "price": "169.804819587832307416",
+ "priceChange24hPercent": "--",
+ "volume24h": "169106458.23999998",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "美股全市场ETF",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0xcf9caf83053213c44dd7027db3e1e4ac98e55f8f",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x00c81d35eddf44c75d4db9e07bdcdc236eb0ebcf",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x00c81d35eddf44c75d4db9e07bdcdc236eb0ebcf-1760923060271.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x00c81d35eddf44c75d4db9e07bdcdc236eb0ebcf-1760923060271.png"
+ ],
+ "name": "iShares MSCI Emerging Markets ETF (Ondo Tokenized ETF)",
+ "symbol": "EEMON",
+ "marketCap": "32146260773",
+ "price": "70.550489448583953469",
+ "priceChange24hPercent": "1.26",
+ "volume24h": "1506651730.8",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "新兴市场ETF",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x00c81d35eddf44c75d4db9e07bdcdc236eb0ebcf",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x500eafc69b68acd6f27064f9b75f1c7d91cc4d9f",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x500eafc69b68acd6f27064f9b75f1c7d91cc4d9f-1760923169588.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x500eafc69b68acd6f27064f9b75f1c7d91cc4d9f-1760923169588.png"
+ ],
+ "name": "iShares Russell 2000 ETF (Ondo Tokenized ETF)",
+ "symbol": "IWMON",
+ "marketCap": "81417408119",
+ "price": "297.748095366553568352",
+ "priceChange24hPercent": "0.02",
+ "volume24h": "4113713428.1099997",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "罗素2000 ETF",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x500eafc69b68acd6f27064f9b75f1c7d91cc4d9f",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x12b7adc48416a103f63e7e6210f62c81dfb91fd0",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x12b7adc48416a103f63e7e6210f62c81dfb91fd0-1773890376568.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x12b7adc48416a103f63e7e6210f62c81dfb91fd0-1773890376568.png"
+ ],
+ "name": "iShares MSCI South Korea ETF (Ondo Tokenized)",
+ "symbol": "EWYON",
+ "marketCap": "14278571056",
+ "price": "194.898272",
+ "priceChange24hPercent": "3.95",
+ "volume24h": "3455448231.73",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "iShares MSCI韩国ETF",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x12b7adc48416a103f63e7e6210f62c81dfb91fd0",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xc008c5f579ec1450f20099c39f587547e27c7523",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xc008c5f579ec1450f20099c39f587547e27c7523-1768185634202.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xc008c5f579ec1450f20099c39f587547e27c7523-1768185634202.png"
+ ],
+ "name": "iShares 0-3 Month Treasury Bond ETF (Ondo Tokenized ETF)",
+ "symbol": "SGOVON",
+ "marketCap": "95942590920",
+ "price": "102.324784764508258885",
+ "priceChange24hPercent": "--",
+ "volume24h": "2053722039.09",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "iShares 0-3个月国债ETF",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0xc008c5f579ec1450f20099c39f587547e27c7523",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ }
+ ],
+ "stocks||1h|market__tab__crypto": [
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x992879cd8ce0c312d98648875b5a8d6d042cbf34",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x992879cd8ce0c312d98648875b5a8d6d042cbf34-1760923032790.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x992879cd8ce0c312d98648875b5a8d6d042cbf34-1760923032790.png"
+ ],
+ "name": "Circle Internet Group (Ondo Tokenized)",
+ "symbol": "CRCLon",
+ "marketCap": "27277014302",
+ "price": "101.983108",
+ "priceChange24hPercent": "-1.98",
+ "volume24h": "1440248998.5",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "Circle Internet Group",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x992879cd8ce0c312d98648875b5a8d6d042cbf34",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x7313ea16493b2f55054df0131a3a14b043ec8992",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x7313ea16493b2f55054df0131a3a14b043ec8992-1760923249909.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x7313ea16493b2f55054df0131a3a14b043ec8992-1760923249909.png"
+ ],
+ "name": "MicroStrategy (Ondo Tokenized)",
+ "symbol": "MSTRon",
+ "marketCap": "47239382400",
+ "price": "141.505263",
+ "priceChange24hPercent": "-1.98",
+ "volume24h": "3878826420.0000005",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "微策略",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x7313ea16493b2f55054df0131a3a14b043ec8992",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x19601179a60f55ff6636f5d1a8b6671053bd60a8",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x19601179a60f55ff6636f5d1a8b6671053bd60a8-1760923113456.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x19601179a60f55ff6636f5d1a8b6671053bd60a8-1760923113456.png"
+ ],
+ "name": "Robinhood Markets (Ondo Tokenized)",
+ "symbol": "HOODon",
+ "marketCap": "109786941485",
+ "price": "123.076667",
+ "priceChange24hPercent": "0.85",
+ "volume24h": "2897993280.95",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "罗宾汉",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x19601179a60f55ff6636f5d1a8b6671053bd60a8",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xf8589b526fdd65f7f301c605a6e04f0f1b4b3620",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xf8589b526fdd65f7f301c605a6e04f0f1b4b3620-1761749966569.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xf8589b526fdd65f7f301c605a6e04f0f1b4b3620-1761749966569.png"
+ ],
+ "name": "Coinbase (Ondo Tokenized)",
+ "symbol": "COINon",
+ "marketCap": "48714333394",
+ "price": "183.831667",
+ "priceChange24hPercent": "-1.12",
+ "volume24h": "1509934590.08",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "Coinbase",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0xf8589b526fdd65f7f301c605a6e04f0f1b4b3620",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x9351abd19f42101dd36025e495b98e910b255d78",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x9351abd19f42101dd36025e495b98e910b255d78-1760923318304.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x9351abd19f42101dd36025e495b98e910b255d78-1760923318304.png"
+ ],
+ "name": "Palantir Technologies (Ondo Tokenized)",
+ "symbol": "PLTRon",
+ "marketCap": "400273883100",
+ "price": "174.182857",
+ "priceChange24hPercent": "-0.31",
+ "volume24h": "4874798157.84",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "帕兰提尔",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x9351abd19f42101dd36025e495b98e910b255d78",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x52ad57a7ea642e99a892afc79e937b383f1b59e9",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x52ad57a7ea642e99a892afc79e937b383f1b59e9-1768032941245.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x52ad57a7ea642e99a892afc79e937b383f1b59e9-1768032941245.png"
+ ],
+ "name": "BitMine Immersion Technologies (Ondo Tokenized)",
+ "symbol": "BMNRon",
+ "marketCap": "14222332846",
+ "price": "25.220087",
+ "priceChange24hPercent": "0.99",
+ "volume24h": "1155029873.9099998",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "BitMine",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x52ad57a7ea642e99a892afc79e937b383f1b59e9",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x8fd70ee385f470c8d6fda2d93a4e49c849bac6a6",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x8fd70ee385f470c8d6fda2d93a4e49c849bac6a6-1767883597793.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x8fd70ee385f470c8d6fda2d93a4e49c849bac6a6-1767883597793.png"
+ ],
+ "name": "IREN (Ondo Tokenized)",
+ "symbol": "IRENon",
+ "marketCap": "15944391045",
+ "price": "45.389089",
+ "priceChange24hPercent": "2.29",
+ "volume24h": "1620373503.24",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "IREN",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x8fd70ee385f470c8d6fda2d93a4e49c849bac6a6",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xc4a88a72b848255fd24da3c1ad6755d980535fb1",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xc4a88a72b848255fd24da3c1ad6755d980535fb1-1760923349554.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xc4a88a72b848255fd24da3c1ad6755d980535fb1-1760923349554.png"
+ ],
+ "name": "Riot Platforms (Ondo Tokenized)",
+ "symbol": "RIOTon",
+ "marketCap": "8243696814",
+ "price": "21.664",
+ "priceChange24hPercent": "-0.09",
+ "volume24h": "335036003.2",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "Riot平台",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0xc4a88a72b848255fd24da3c1ad6755d980535fb1",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ }
+ ],
+ "stocks||1h|market__tab__healthcare": [
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x3385cb29cca0ac66f5d2354d13ef977b49a2510f",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x3385cb29cca0ac66f5d2354d13ef977b49a2510f-1760923604445.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x3385cb29cca0ac66f5d2354d13ef977b49a2510f-1760923604445.png"
+ ],
+ "name": "UnitedHealth (Ondo Tokenized)",
+ "symbol": "UNHon",
+ "marketCap": "360660468605",
+ "price": "402.98451011334612462",
+ "priceChange24hPercent": "-0.26",
+ "volume24h": "1916737036.1399999",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "联合健康",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x3385cb29cca0ac66f5d2354d13ef977b49a2510f",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x341d31b2be1fee9c00e395a62ba41837f4322eed",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x341d31b2be1fee9c00e395a62ba41837f4322eed-1760923201079.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x341d31b2be1fee9c00e395a62ba41837f4322eed-1760923201079.png"
+ ],
+ "name": "Eli Lilly (Ondo Tokenized)",
+ "symbol": "LLYon",
+ "marketCap": "1081307016200",
+ "price": "1149.397318656767340512",
+ "priceChange24hPercent": "-0.16",
+ "volume24h": "2468999720.4",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "礼来",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x341d31b2be1fee9c00e395a62ba41837f4322eed",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x5a20886b575058dd7299785f0ea9b1172942a3e0",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x5a20886b575058dd7299785f0ea9b1172942a3e0-1760922274158.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x5a20886b575058dd7299785f0ea9b1172942a3e0-1760922274158.png"
+ ],
+ "name": "Abbott (Ondo Tokenized)",
+ "symbol": "ABTon",
+ "marketCap": "187435126855",
+ "price": "109.426019691944889332",
+ "priceChange24hPercent": "-1.04",
+ "volume24h": "744744194.56",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "雅培",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x5a20886b575058dd7299785f0ea9b1172942a3e0",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x4693f6f5ef257381a28afd0673e64d8b32d5c6ad",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x4693f6f5ef257381a28afd0673e64d8b32d5c6ad-1760923111457.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x4693f6f5ef257381a28afd0673e64d8b32d5c6ad-1760923111457.png"
+ ],
+ "name": "Hims & Hers Health (Ondo Tokenized)",
+ "symbol": "HIMSon",
+ "marketCap": "6181546800",
+ "price": "27.746",
+ "priceChange24hPercent": "-0.21",
+ "volume24h": "182854493.73000002",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "Hims & Hers",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x4693f6f5ef257381a28afd0673e64d8b32d5c6ad",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x8a83c31d6751833b4940b6e871c48d9a15a07b46",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x8a83c31d6751833b4940b6e871c48d9a15a07b46-1760923307953.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x8a83c31d6751833b4940b6e871c48d9a15a07b46-1760923307953.png"
+ ],
+ "name": "Pfizer (Ondo Tokenized Stock)",
+ "symbol": "PFEON",
+ "marketCap": "162149068000",
+ "price": "30.045669965608379961",
+ "priceChange24hPercent": "-0.39",
+ "volume24h": "669415327.65",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "辉瑞",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x8a83c31d6751833b4940b6e871c48d9a15a07b46",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ }
+ ],
+ "stocks||1h|market__tab__energy": [
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xd3113a0ad20a46f6a662c63fe8e637f7713e59c7",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xd3113a0ad20a46f6a662c63fe8e637f7713e59c7-1760923043289.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xd3113a0ad20a46f6a662c63fe8e637f7713e59c7-1760923043289.png"
+ ],
+ "name": "Chevron (Ondo Tokenized)",
+ "symbol": "CVXon",
+ "marketCap": "415308348000",
+ "price": "214.127850846968341467",
+ "priceChange24hPercent": "-0.1",
+ "volume24h": "1122138299.52",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "雪佛龙",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0xd3113a0ad20a46f6a662c63fe8e637f7713e59c7",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x4d209d275e3492ac08497a7a42915899c4dd5e86",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x4d209d275e3492ac08497a7a42915899c4dd5e86-1768378192726.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x4d209d275e3492ac08497a7a42915899c4dd5e86-1768378192726.png"
+ ],
+ "name": "Exxon Mobil (Ondo Tokenized)",
+ "symbol": "XOMon",
+ "marketCap": "660875591600",
+ "price": "161.929674995637777397",
+ "priceChange24hPercent": "0.06",
+ "volume24h": "2537206808.78",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "埃克森美孚",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x4d209d275e3492ac08497a7a42915899c4dd5e86",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x01b5a4ac600be98448dbefbb78bcdf38262552cc",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x01b5a4ac600be98448dbefbb78bcdf38262552cc-1768118550219.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x01b5a4ac600be98448dbefbb78bcdf38262552cc-1768118550219.png"
+ ],
+ "name": "Occidental Petroleum (Ondo Tokenized)",
+ "symbol": "OXYON",
+ "marketCap": "59717867448",
+ "price": "60.427368985063029401",
+ "priceChange24hPercent": "--",
+ "volume24h": "400488654.56",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "西方石油",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x01b5a4ac600be98448dbefbb78bcdf38262552cc",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x2b1d5cdecc356530a746c5754231efaeaca64022",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x2b1d5cdecc356530a746c5754231efaeaca64022-1760923297458.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x2b1d5cdecc356530a746c5754231efaeaca64022-1760923297458.png"
+ ],
+ "name": "Petrobras (Ondo Tokenized Stock)",
+ "symbol": "PBRON",
+ "marketCap": "129660646415",
+ "price": "20.856197511015279798",
+ "priceChange24hPercent": "-0.22",
+ "volume24h": "377829496.24",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "巴西石油",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x2b1d5cdecc356530a746c5754231efaeaca64022",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ }
+ ],
+ "stocks||1h|market__tab__china_tech": [
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xd5964f3fcee8d649995ab88f04b8982539c282d2",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xd5964f3fcee8d649995ab88f04b8982539c282d2-1760922996465.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xd5964f3fcee8d649995ab88f04b8982539c282d2-1760922996465.png"
+ ],
+ "name": "Alibaba (Ondo Tokenized)",
+ "symbol": "BABAon",
+ "marketCap": "271421798529",
+ "price": "112.499497934947570659",
+ "priceChange24hPercent": "-1.46",
+ "volume24h": "810668853.4399999",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "阿里巴巴",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0xd5964f3fcee8d649995ab88f04b8982539c282d2",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xf3e82ea164cb344b2b11bad4c24b0ea4f7ba4714",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xf3e82ea164cb344b2b11bad4c24b0ea4f7ba4714-1767945976873.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xf3e82ea164cb344b2b11bad4c24b0ea4f7ba4714-1767945976873.png"
+ ],
+ "name": "PDD Holdings (Ondo Tokenized)",
+ "symbol": "PDDon",
+ "marketCap": "117017422072",
+ "price": "81.560326",
+ "priceChange24hPercent": "-0.94",
+ "volume24h": "382935002.09999996",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "拼多多",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0xf3e82ea164cb344b2b11bad4c24b0ea4f7ba4714",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x467e59ce5d5fe01686d4a80dd1e1dae13549aa6c",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x467e59ce5d5fe01686d4a80dd1e1dae13549aa6c-1760515402441.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x467e59ce5d5fe01686d4a80dd1e1dae13549aa6c-1760515402441.png"
+ ],
+ "name": "Baidu (Ondo Tokenized)",
+ "symbol": "BIDUon",
+ "marketCap": "33832211369",
+ "price": "92.292027",
+ "priceChange24hPercent": "-7.17",
+ "volume24h": "256503090.06",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "百度",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x467e59ce5d5fe01686d4a80dd1e1dae13549aa6c",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ }
+ ],
+ "stocks||1h|market__tab__commodities": [
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x8b872732b07be325a8803cdb480d9d20b6f8d11b",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x8b872732b07be325a8803cdb480d9d20b6f8d11b-1760923370870.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x8b872732b07be325a8803cdb480d9d20b6f8d11b-1760923370870.png"
+ ],
+ "name": "iShares Silver Trust (Ondo Tokenized)",
+ "symbol": "SLVon",
+ "marketCap": "32192820451",
+ "price": "60.613516",
+ "priceChange24hPercent": "3.36",
+ "volume24h": "751852335.96",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "白银ETF",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x8b872732b07be325a8803cdb480d9d20b6f8d11b",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xcb2a0f46f67dc4c58a316f1c008edef5c2311795",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xcb2a0f46f67dc4c58a316f1c008edef5c2311795-1760923121884.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xcb2a0f46f67dc4c58a316f1c008edef5c2311795-1760923121884.png"
+ ],
+ "name": "iShares Gold Trust (Ondo Tokenized)",
+ "symbol": "IAUon",
+ "marketCap": "65795429989",
+ "price": "83.510002",
+ "priceChange24hPercent": "0.23",
+ "volume24h": "415966081.39",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "iShares黄金ETF",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0xcb2a0f46f67dc4c58a316f1c008edef5c2311795",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x3fcd741646a9790635b938cdb69af5df356cbaab",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x3fcd741646a9790635b938cdb69af5df356cbaab-1768118974994.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x3fcd741646a9790635b938cdb69af5df356cbaab-1768118974994.png"
+ ],
+ "name": "abrdn Physical Palladium Shares ETF (Ondo Tokenized)",
+ "symbol": "PALLon",
+ "marketCap": "662462421",
+ "price": "127.025",
+ "priceChange24hPercent": "1.16",
+ "volume24h": "18618111.93",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "钯金ETF",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x3fcd741646a9790635b938cdb69af5df356cbaab",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ }
+ ],
+ "stocks||1h|market__tab__aerospace": [
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xd09f7b75b9659b864c6f82bb00ff096f9d277998",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xd09f7b75b9659b864c6f82bb00ff096f9d277998-1760923206785.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xd09f7b75b9659b864c6f82bb00ff096f9d277998-1760923206785.png"
+ ],
+ "name": "Lockheed (Ondo Tokenized)",
+ "symbol": "LMTon",
+ "marketCap": "121229896480",
+ "price": "537.114604097175250464",
+ "priceChange24hPercent": "-0.19",
+ "volume24h": "495034902.88",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "洛克希德马丁",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0xd09f7b75b9659b864c6f82bb00ff096f9d277998",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ }
+ ],
+ "stocks||4h|all": [
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x390a684ef9cade28a7ad0dfa61ab1eb3842618c4",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x390a684ef9cade28a7ad0dfa61ab1eb3842618c4-1760515427269.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x390a684ef9cade28a7ad0dfa61ab1eb3842618c4-1760515427269.png"
+ ],
+ "name": "Apple (Ondo Tokenized)",
+ "symbol": "AAPLon",
+ "marketCap": "4699513299320",
+ "price": "320.298481855554072365",
+ "priceChange24hPercent": "-0.5",
+ "volume24h": "12673014673.480001",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "苹果",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x390a684ef9cade28a7ad0dfa61ab1eb3842618c4",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x8b872732b07be325a8803cdb480d9d20b6f8d11b",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x8b872732b07be325a8803cdb480d9d20b6f8d11b-1760923370870.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x8b872732b07be325a8803cdb480d9d20b6f8d11b-1760923370870.png"
+ ],
+ "name": "iShares Silver Trust (Ondo Tokenized)",
+ "symbol": "SLVon",
+ "marketCap": "32192820451",
+ "price": "60.613516",
+ "priceChange24hPercent": "3.36",
+ "volume24h": "751852335.96",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "白银ETF",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x8b872732b07be325a8803cdb480d9d20b6f8d11b",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x992879cd8ce0c312d98648875b5a8d6d042cbf34",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x992879cd8ce0c312d98648875b5a8d6d042cbf34-1760923032790.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x992879cd8ce0c312d98648875b5a8d6d042cbf34-1760923032790.png"
+ ],
+ "name": "Circle Internet Group (Ondo Tokenized)",
+ "symbol": "CRCLon",
+ "marketCap": "27277014302",
+ "price": "101.983108",
+ "priceChange24hPercent": "-1.98",
+ "volume24h": "1440248998.5",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "Circle Internet Group",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x992879cd8ce0c312d98648875b5a8d6d042cbf34",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xa9ee28c80f960b889dfbd1902055218cba016f75",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xa9ee28c80f960b889dfbd1902055218cba016f75-1760923276163.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xa9ee28c80f960b889dfbd1902055218cba016f75-1760923276163.png"
+ ],
+ "name": "NVIDIA (Ondo Tokenized)",
+ "symbol": "NVDAon",
+ "marketCap": "5579549560000",
+ "price": "233.18030531293853192",
+ "priceChange24hPercent": "0.56",
+ "volume24h": "31179783471.2",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "英伟达",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0xa9ee28c80f960b889dfbd1902055218cba016f75",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x8b6acf6041a81567f012ff6a4c6d96d5818d74bf",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x8b6acf6041a81567f012ff6a4c6d96d5818d74bf-1760923255049.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x8b6acf6041a81567f012ff6a4c6d96d5818d74bf-1760923255049.png"
+ ],
+ "name": "Micron Technology (Ondo Tokenized)",
+ "symbol": "MUon",
+ "marketCap": "1148126580100",
+ "price": "1055.805608023373639527",
+ "priceChange24hPercent": "1.28",
+ "volume24h": "35834308520.21",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "美光科技",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x8b6acf6041a81567f012ff6a4c6d96d5818d74bf",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x7313ea16493b2f55054df0131a3a14b043ec8992",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x7313ea16493b2f55054df0131a3a14b043ec8992-1760923249909.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x7313ea16493b2f55054df0131a3a14b043ec8992-1760923249909.png"
+ ],
+ "name": "MicroStrategy (Ondo Tokenized)",
+ "symbol": "MSTRon",
+ "marketCap": "47239382400",
+ "price": "141.505263",
+ "priceChange24hPercent": "-1.98",
+ "volume24h": "3878826420.0000005",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "微策略",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x7313ea16493b2f55054df0131a3a14b043ec8992",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x4553cfe1c09f37f38b12dc509f676964e392f8fc",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x4553cfe1c09f37f38b12dc509f676964e392f8fc-1760686410256.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x4553cfe1c09f37f38b12dc509f676964e392f8fc-1760686410256.png"
+ ],
+ "name": "Amazon (Ondo Tokenized)",
+ "symbol": "AMZNon",
+ "marketCap": "2780817921000",
+ "price": "258.279748",
+ "priceChange24hPercent": "-0.11",
+ "volume24h": "7949159751.12",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "亚马逊",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x4553cfe1c09f37f38b12dc509f676964e392f8fc",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x6a708ead771238919d85930b5a0f10454e1c331a",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x6a708ead771238919d85930b5a0f10454e1c331a-1760921581963.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x6a708ead771238919d85930b5a0f10454e1c331a-1760921581963.png"
+ ],
+ "name": "SPDR S&P 500 ETF (Ondo Tokenized)",
+ "symbol": "SPYon",
+ "marketCap": "820435829283",
+ "price": "776.141056177460214449",
+ "priceChange24hPercent": "0.01",
+ "volume24h": "25385765084.670002",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "标普500 ETF",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x6a708ead771238919d85930b5a0f10454e1c331a",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x0cde6936d305d5b34667fc46425e852efd73559a",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x0cde6936d305d5b34667fc46425e852efd73559a-1760923339182.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x0cde6936d305d5b34667fc46425e852efd73559a-1760923339182.png"
+ ],
+ "name": "Invesco QQQ (Ondo Tokenized)",
+ "symbol": "QQQon",
+ "marketCap": "512284401576",
+ "price": "725.686548519952709569",
+ "priceChange24hPercent": "0.32",
+ "volume24h": "23632988800.960003",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "纳指ETF",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x0cde6936d305d5b34667fc46425e852efd73559a",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xd5964f3fcee8d649995ab88f04b8982539c282d2",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xd5964f3fcee8d649995ab88f04b8982539c282d2-1760922996465.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xd5964f3fcee8d649995ab88f04b8982539c282d2-1760922996465.png"
+ ],
+ "name": "Alibaba (Ondo Tokenized)",
+ "symbol": "BABAon",
+ "marketCap": "271421798529",
+ "price": "112.499497934947570659",
+ "priceChange24hPercent": "-1.46",
+ "volume24h": "810668853.4399999",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "阿里巴巴",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0xd5964f3fcee8d649995ab88f04b8982539c282d2",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x19601179a60f55ff6636f5d1a8b6671053bd60a8",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x19601179a60f55ff6636f5d1a8b6671053bd60a8-1760923113456.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x19601179a60f55ff6636f5d1a8b6671053bd60a8-1760923113456.png"
+ ],
+ "name": "Robinhood Markets (Ondo Tokenized)",
+ "symbol": "HOODon",
+ "marketCap": "109786941485",
+ "price": "123.076667",
+ "priceChange24hPercent": "0.85",
+ "volume24h": "2897993280.95",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "罗宾汉",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x19601179a60f55ff6636f5d1a8b6671053bd60a8",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x091fc7778e6932d4009b087b191d1ee3bac5729a",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x091fc7778e6932d4009b087b191d1ee3bac5729a-1760923100804.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x091fc7778e6932d4009b087b191d1ee3bac5729a-1760923100804.png"
+ ],
+ "name": "Alphabet Class A (Ondo Tokenized)",
+ "symbol": "GOOGLon",
+ "marketCap": "4096080585860",
+ "price": "338.962258099649311085",
+ "priceChange24hPercent": "-0.2",
+ "volume24h": "7848657585.66",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "谷歌",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x091fc7778e6932d4009b087b191d1ee3bac5729a",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xf8589b526fdd65f7f301c605a6e04f0f1b4b3620",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xf8589b526fdd65f7f301c605a6e04f0f1b4b3620-1761749966569.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xf8589b526fdd65f7f301c605a6e04f0f1b4b3620-1761749966569.png"
+ ],
+ "name": "Coinbase (Ondo Tokenized)",
+ "symbol": "COINon",
+ "marketCap": "48714333394",
+ "price": "183.831667",
+ "priceChange24hPercent": "-1.12",
+ "volume24h": "1509934590.08",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "Coinbase",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0xf8589b526fdd65f7f301c605a6e04f0f1b4b3620",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xe42cfb20e00912409b77a602b5bdcff3c7acc5f4",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xe42cfb20e00912409b77a602b5bdcff3c7acc5f4-1768032381719.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xe42cfb20e00912409b77a602b5bdcff3c7acc5f4-1768032381719.png"
+ ],
+ "name": "ProShares UltraPro QQQ (Ondo Tokenized)",
+ "symbol": "TQQQon",
+ "marketCap": "44436706139",
+ "price": "73.845438057857333962",
+ "priceChange24hPercent": "1.87",
+ "volume24h": "3426881608.8",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "三倍做多纳指ETF",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0xe42cfb20e00912409b77a602b5bdcff3c7acc5f4",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xcb2a0f46f67dc4c58a316f1c008edef5c2311795",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xcb2a0f46f67dc4c58a316f1c008edef5c2311795-1760923121884.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xcb2a0f46f67dc4c58a316f1c008edef5c2311795-1760923121884.png"
+ ],
+ "name": "iShares Gold Trust (Ondo Tokenized)",
+ "symbol": "IAUon",
+ "marketCap": "65795429989",
+ "price": "83.510002",
+ "priceChange24hPercent": "0.23",
+ "volume24h": "415966081.39",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "iShares黄金ETF",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0xcb2a0f46f67dc4c58a316f1c008edef5c2311795",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x9351abd19f42101dd36025e495b98e910b255d78",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x9351abd19f42101dd36025e495b98e910b255d78-1760923318304.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x9351abd19f42101dd36025e495b98e910b255d78-1760923318304.png"
+ ],
+ "name": "Palantir Technologies (Ondo Tokenized)",
+ "symbol": "PLTRon",
+ "marketCap": "400273883100",
+ "price": "174.182857",
+ "priceChange24hPercent": "-0.31",
+ "volume24h": "4874798157.84",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "帕兰提尔",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x9351abd19f42101dd36025e495b98e910b255d78",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xec93fe7ff4b09ca3ccafbc4cc9615e62be412780",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xec93fe7ff4b09ca3ccafbc4cc9615e62be412780-1768378372330.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xec93fe7ff4b09ca3ccafbc4cc9615e62be412780-1768378372330.png"
+ ],
+ "name": "Global X Copper Miners ETF (Ondo Tokenized)",
+ "symbol": "COPXon",
+ "marketCap": "8398061634",
+ "price": "90.741202370238771614",
+ "priceChange24hPercent": "--",
+ "volume24h": "120614154.66",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "铜矿ETF",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0xec93fe7ff4b09ca3ccafbc4cc9615e62be412780",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x9f16e46c73b43bdb70861247d537bee4ea18f639",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x9f16e46c73b43bdb70861247d537bee4ea18f639-1760922831860.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x9f16e46c73b43bdb70861247d537bee4ea18f639-1760922831860.png"
+ ],
+ "name": "AMD (Ondo Tokenized)",
+ "symbol": "AMDon",
+ "marketCap": "778725642000",
+ "price": "487.975263",
+ "priceChange24hPercent": "1.18",
+ "volume24h": "9397976816.94",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "超威半导体",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x9f16e46c73b43bdb70861247d537bee4ea18f639",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x6bfe75d1ad432050ea973c3a3dcd88f02e2444c3",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x6bfe75d1ad432050ea973c3a3dcd88f02e2444c3-1760923244592.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x6bfe75d1ad432050ea973c3a3dcd88f02e2444c3-1760923244592.png"
+ ],
+ "name": "Microsoft (Ondo Tokenized)",
+ "symbol": "MSFTon",
+ "marketCap": "3710547335000",
+ "price": "499.708647472892879635",
+ "priceChange24hPercent": "-0.72",
+ "volume24h": "9045448472.6",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "微软",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x6bfe75d1ad432050ea973c3a3dcd88f02e2444c3",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x7048f5227b032326cc8dbc53cf3fddd947a2c757",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x7048f5227b032326cc8dbc53cf3fddd947a2c757-1760923261006.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x7048f5227b032326cc8dbc53cf3fddd947a2c757-1760923261006.png"
+ ],
+ "name": "Netflix (Ondo Tokenized)",
+ "symbol": "NFLXon",
+ "marketCap": "325828304922",
+ "price": "778.72424",
+ "priceChange24hPercent": "-0.54",
+ "volume24h": "3144868282.5",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "奈飞",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x7048f5227b032326cc8dbc53cf3fddd947a2c757",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xc145dc2ebdbe8ead1fecdebf46c76eb1fdd0104d",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xc145dc2ebdbe8ead1fecdebf46c76eb1fdd0104d-1768184402429.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xc145dc2ebdbe8ead1fecdebf46c76eb1fdd0104d-1768184402429.png"
+ ],
+ "name": "Carvana (Ondo Tokenized)",
+ "symbol": "CVNAon",
+ "price": "-",
+ "priceChange24hPercent": "-",
+ "communityRecognized": false,
+ "key": "evm--56:0xc145dc2ebdbe8ead1fecdebf46c76eb1fdd0104d",
+ "kind": "token",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x3385cb29cca0ac66f5d2354d13ef977b49a2510f",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x3385cb29cca0ac66f5d2354d13ef977b49a2510f-1760923604445.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x3385cb29cca0ac66f5d2354d13ef977b49a2510f-1760923604445.png"
+ ],
+ "name": "UnitedHealth (Ondo Tokenized)",
+ "symbol": "UNHon",
+ "marketCap": "360660468605",
+ "price": "402.98451011334612462",
+ "priceChange24hPercent": "-0.26",
+ "volume24h": "1916737036.1399999",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "联合健康",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x3385cb29cca0ac66f5d2354d13ef977b49a2510f",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x03e4bd1ea53f1da84513da0319d1f03dd1bbcf93",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x03e4bd1ea53f1da84513da0319d1f03dd1bbcf93-1760923286694.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x03e4bd1ea53f1da84513da0319d1f03dd1bbcf93-1760923286694.png"
+ ],
+ "name": "Oracle (Ondo Tokenized)",
+ "symbol": "ORCLon",
+ "marketCap": "457505050100",
+ "price": "166.481535598340633943",
+ "priceChange24hPercent": "2.21",
+ "volume24h": "4138044844.8500004",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "甲骨文",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x03e4bd1ea53f1da84513da0319d1f03dd1bbcf93",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x2494b603319d4d9f9715c9f4496d9e0364b59d93",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x2494b603319d4d9f9715c9f4496d9e0364b59d93-1760680411667.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x2494b603319d4d9f9715c9f4496d9e0364b59d93-1760680411667.png"
+ ],
+ "name": "Tesla (Ondo Tokenized)",
+ "symbol": "TSLAon",
+ "marketCap": "1398455741268",
+ "price": "356.443455",
+ "priceChange24hPercent": "0.17",
+ "volume24h": "23021647442.719997",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "特斯拉",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x2494b603319d4d9f9715c9f4496d9e0364b59d93",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x0ed2e3180edf393e6bf8db124bd15ddd54de150a",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x0ed2e3180edf393e6bf8db124bd15ddd54de150a-1760922985968.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x0ed2e3180edf393e6bf8db124bd15ddd54de150a-1760922985968.png"
+ ],
+ "name": "Broadcom (Ondo Tokenized)",
+ "symbol": "AVGOon",
+ "marketCap": "1702714094100",
+ "price": "364.792451018770787223",
+ "priceChange24hPercent": "0.24",
+ "volume24h": "11761598227.175",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "博通",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x0ed2e3180edf393e6bf8db124bd15ddd54de150a",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x25ffda07f585c39848db6573e533d7585679c52d",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x25ffda07f585c39848db6573e533d7585679c52d-1760923217550.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x25ffda07f585c39848db6573e533d7585679c52d-1760923217550.png"
+ ],
+ "name": "Mastercard (Ondo Tokenized)",
+ "symbol": "MAon",
+ "marketCap": "507988021560",
+ "price": "577.919566836818062189",
+ "priceChange24hPercent": "-0.72",
+ "volume24h": "1015977201.5400001",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "万事达",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x25ffda07f585c39848db6573e533d7585679c52d",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x34304f2f7cc487eb4186e6d69f5905a613474aa2",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x34304f2f7cc487eb4186e6d69f5905a613474aa2-1761709115472.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x34304f2f7cc487eb4186e6d69f5905a613474aa2-1761709115472.png"
+ ],
+ "name": "Cisco Systems (Ondo Tokenized)",
+ "symbol": "CSCOon",
+ "marketCap": "430404665418",
+ "price": "110.75473913211509356",
+ "priceChange24hPercent": "0.07",
+ "volume24h": "1351570474.8",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "思科",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x34304f2f7cc487eb4186e6d69f5905a613474aa2",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x5fa699c0c1319b8d86489af77dfde4fa97b47df8",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x5fa699c0c1319b8d86489af77dfde4fa97b47df8-1769105965919.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x5fa699c0c1319b8d86489af77dfde4fa97b47df8-1769105965919.png"
+ ],
+ "name": "BitGo Holdings (Ondo Tokenized)",
+ "symbol": "BTGOon",
+ "marketCap": "781859397",
+ "price": "7.235",
+ "priceChange24hPercent": "--",
+ "volume24h": "10028338.5",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "BitGo",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x5fa699c0c1319b8d86489af77dfde4fa97b47df8",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x50356167a4dbc38bea6779c045e24e25facedfdc",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x50356167a4dbc38bea6779c045e24e25facedfdc-1760923391964.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x50356167a4dbc38bea6779c045e24e25facedfdc-1760923391964.png"
+ ],
+ "name": "Spotify (Ondo Tokenized)",
+ "symbol": "SPOTon",
+ "marketCap": "111515040318",
+ "price": "534.766667",
+ "priceChange24hPercent": "-1.69",
+ "volume24h": "742202629.56",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "Spotify",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x50356167a4dbc38bea6779c045e24e25facedfdc",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x317bf42b43a394860718266dec445dcc9fd9da49",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x317bf42b43a394860718266dec445dcc9fd9da49-1761792505227.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x317bf42b43a394860718266dec445dcc9fd9da49-1761792505227.png"
+ ],
+ "name": "JPMorgan Chase (Ondo Tokenized)",
+ "symbol": "JPMon",
+ "marketCap": "960979466400",
+ "price": "360.974460173899799822",
+ "priceChange24hPercent": "-0.66",
+ "volume24h": "1745667647.6",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "摩根大通",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x317bf42b43a394860718266dec445dcc9fd9da49",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x405f38b90bebf1259062cf29da299f3398662bcb",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x405f38b90bebf1259062cf29da299f3398662bcb-1761605541805.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x405f38b90bebf1259062cf29da299f3398662bcb-1761605541805.png"
+ ],
+ "name": "Coca-Cola (Ondo Tokenized)",
+ "symbol": "KOon",
+ "marketCap": "378925484617",
+ "price": "89.628986243018856634",
+ "priceChange24hPercent": "-0.24",
+ "volume24h": "1283321428.49",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "可口可乐",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x405f38b90bebf1259062cf29da299f3398662bcb",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xc37042a7a4fa510d8884a433762ab87257b91965",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xc37042a7a4fa510d8884a433762ab87257b91965-1760923413025.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xc37042a7a4fa510d8884a433762ab87257b91965-1760923413025.png"
+ ],
+ "name": "Taiwan Semiconductor Manufacturing (Ondo Tokenized)",
+ "symbol": "TSMon",
+ "marketCap": "2224533136800",
+ "price": "438.018182406245951052",
+ "priceChange24hPercent": "0.37",
+ "volume24h": "5261764083.780001",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "台积电",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0xc37042a7a4fa510d8884a433762ab87257b91965",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xd09f7b75b9659b864c6f82bb00ff096f9d277998",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xd09f7b75b9659b864c6f82bb00ff096f9d277998-1760923206785.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xd09f7b75b9659b864c6f82bb00ff096f9d277998-1760923206785.png"
+ ],
+ "name": "Lockheed (Ondo Tokenized)",
+ "symbol": "LMTon",
+ "marketCap": "121229896480",
+ "price": "537.114604097175250464",
+ "priceChange24hPercent": "-0.19",
+ "volume24h": "495034902.88",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "洛克希德马丁",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0xd09f7b75b9659b864c6f82bb00ff096f9d277998",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x341d31b2be1fee9c00e395a62ba41837f4322eed",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x341d31b2be1fee9c00e395a62ba41837f4322eed-1760923201079.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x341d31b2be1fee9c00e395a62ba41837f4322eed-1760923201079.png"
+ ],
+ "name": "Eli Lilly (Ondo Tokenized)",
+ "symbol": "LLYon",
+ "marketCap": "1081307016200",
+ "price": "1149.397318656767340512",
+ "priceChange24hPercent": "-0.16",
+ "volume24h": "2468999720.4",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "礼来",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x341d31b2be1fee9c00e395a62ba41837f4322eed",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x5a20886b575058dd7299785f0ea9b1172942a3e0",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x5a20886b575058dd7299785f0ea9b1172942a3e0-1760922274158.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x5a20886b575058dd7299785f0ea9b1172942a3e0-1760922274158.png"
+ ],
+ "name": "Abbott (Ondo Tokenized)",
+ "symbol": "ABTon",
+ "marketCap": "187435126855",
+ "price": "109.426019691944889332",
+ "priceChange24hPercent": "-1.04",
+ "volume24h": "744744194.56",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "雅培",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x5a20886b575058dd7299785f0ea9b1172942a3e0",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xe6837794fbc6dd024733a1a31f86061296fa2752",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xe6837794fbc6dd024733a1a31f86061296fa2752-1767888357216.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xe6837794fbc6dd024733a1a31f86061296fa2752-1767888357216.png"
+ ],
+ "name": "CrowdStrike (Ondo Tokenized)",
+ "symbol": "CRWDon",
+ "marketCap": "216991052568",
+ "price": "854.08",
+ "priceChange24hPercent": "0.11",
+ "volume24h": "1796128480.1",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "CrowdStrike",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0xe6837794fbc6dd024733a1a31f86061296fa2752",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x918008c3d29496c37b478b611967beaca365af36",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x918008c3d29496c37b478b611967beaca365af36-1760923132407.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x918008c3d29496c37b478b611967beaca365af36-1760923132407.png"
+ ],
+ "name": "iShares Core MSCI EAFE ETF (Ondo Tokenized)",
+ "symbol": "IEFAon",
+ "marketCap": "191069877912",
+ "price": "103.705170809433201477",
+ "priceChange24hPercent": "2.45",
+ "volume24h": "562851547.16",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x918008c3d29496c37b478b611967beaca365af36",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x43d0b380c33cd004a6a69abd61843881a2de4113",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x43d0b380c33cd004a6a69abd61843881a2de4113-1760923365671.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x43d0b380c33cd004a6a69abd61843881a2de4113-1760923365671.png"
+ ],
+ "name": "Shopify (Ondo Tokenized)",
+ "symbol": "SHOPon",
+ "marketCap": "188276717956",
+ "price": "143.536364",
+ "priceChange24hPercent": "-1.23",
+ "volume24h": "1001972823.39",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "Shopify",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x43d0b380c33cd004a6a69abd61843881a2de4113",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x7af44d51d1fb88c5b74fc71d3cba649bb8099d14",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x7af44d51d1fb88c5b74fc71d3cba649bb8099d14-1760922282064.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x7af44d51d1fb88c5b74fc71d3cba649bb8099d14-1760922282064.png"
+ ],
+ "name": "Accenture (Ondo Tokenized)",
+ "symbol": "ACNon",
+ "marketCap": "114261830592",
+ "price": "190.128369050462170162",
+ "priceChange24hPercent": "-1.11",
+ "volume24h": "906653876.64",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "埃森哲",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x7af44d51d1fb88c5b74fc71d3cba649bb8099d14",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x400f1e257f86d25578a0928c94dc95115f09d5c9",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x400f1e257f86d25578a0928c94dc95115f09d5c9-1760923313303.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x400f1e257f86d25578a0928c94dc95115f09d5c9-1760923313303.png"
+ ],
+ "name": "Procter & Gamble (Ondo Tokenized)",
+ "symbol": "PGon",
+ "marketCap": "348094704645",
+ "price": "149.056417400228133746",
+ "priceChange24hPercent": "-0.73",
+ "volume24h": "812032397.19",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "宝洁",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x400f1e257f86d25578a0928c94dc95115f09d5c9",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x374d03a6c0d5bd4be0a5117ebe1b49d52ac8a53f",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x374d03a6c0d5bd4be0a5117ebe1b49d52ac8a53f-1760923323445.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x374d03a6c0d5bd4be0a5117ebe1b49d52ac8a53f-1760923323445.png"
+ ],
+ "name": "PayPal (Ondo Tokenized)",
+ "symbol": "PYPLon",
+ "marketCap": "47016136560",
+ "price": "55.089444788561474573",
+ "priceChange24hPercent": "-0.45",
+ "volume24h": "716925445.2",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "贝宝",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x374d03a6c0d5bd4be0a5117ebe1b49d52ac8a53f",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xd3113a0ad20a46f6a662c63fe8e637f7713e59c7",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xd3113a0ad20a46f6a662c63fe8e637f7713e59c7-1760923043289.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xd3113a0ad20a46f6a662c63fe8e637f7713e59c7-1760923043289.png"
+ ],
+ "name": "Chevron (Ondo Tokenized)",
+ "symbol": "CVXon",
+ "marketCap": "415308348000",
+ "price": "214.127850846968341467",
+ "priceChange24hPercent": "-0.1",
+ "volume24h": "1122138299.52",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "雪佛龙",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0xd3113a0ad20a46f6a662c63fe8e637f7713e59c7",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x08ce97f3d5cf11e577d091ab048bc5e2eae3fabb",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x08ce97f3d5cf11e577d091ab048bc5e2eae3fabb-1760922826243.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x08ce97f3d5cf11e577d091ab048bc5e2eae3fabb-1760922826243.png"
+ ],
+ "name": "iShares Core US Aggregate Bond ETF (Ondo Tokenized)",
+ "symbol": "AGGon",
+ "marketCap": "136630691995",
+ "price": "100.726707821448173787",
+ "priceChange24hPercent": "-0.05",
+ "volume24h": "757482021",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x08ce97f3d5cf11e577d091ab048bc5e2eae3fabb",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x94d7754541b829a87321d56121bc544167ac490d",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x94d7754541b829a87321d56121bc544167ac490d-1760923360145.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x94d7754541b829a87321d56121bc544167ac490d-1760923360145.png"
+ ],
+ "name": "Starbucks (Ondo Tokenized)",
+ "symbol": "SBUXon",
+ "marketCap": "119095800000",
+ "price": "105.675635276984189824",
+ "priceChange24hPercent": "-0.61",
+ "volume24h": "481009967.36",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "星巴克",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x94d7754541b829a87321d56121bc544167ac490d",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x94174e3d1335db402dd03a092f7aa7ac2cb32be4",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x94174e3d1335db402dd03a092f7aa7ac2cb32be4-1768292465946.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x94174e3d1335db402dd03a092f7aa7ac2cb32be4-1768292465946.png"
+ ],
+ "name": "United States Oil Fund (Ondo Tokenized)",
+ "symbol": "USOon",
+ "marketCap": "16907435006",
+ "price": "144.2375",
+ "priceChange24hPercent": "1.61",
+ "volume24h": "523317653.04",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "原油ETF",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x94174e3d1335db402dd03a092f7aa7ac2cb32be4",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xf99f8f3a95257d82006183bd524efa7aacc9ef7a",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xf99f8f3a95257d82006183bd524efa7aacc9ef7a-1760923302585.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xf99f8f3a95257d82006183bd524efa7aacc9ef7a-1760923302585.png"
+ ],
+ "name": "PepsiCo (Ondo Tokenized)",
+ "symbol": "PEPon",
+ "marketCap": "188002580000",
+ "price": "141.975016844879616381",
+ "priceChange24hPercent": "-0.41",
+ "volume24h": "845805577.89",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "百事",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0xf99f8f3a95257d82006183bd524efa7aacc9ef7a",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xf69e40069ac227c11459e3f4e8a446b3401616b6",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xf69e40069ac227c11459e3f4e8a446b3401616b6-1760923398719.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xf69e40069ac227c11459e3f4e8a446b3401616b6-1760923398719.png"
+ ],
+ "name": "iShares 20+ Year Treasury Bond ETF (Ondo Tokenized)",
+ "symbol": "TLTon",
+ "marketCap": "41558996997",
+ "price": "85.978427962124070646",
+ "priceChange24hPercent": "0.16",
+ "volume24h": "1364023798.4499998",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "20年国债ETF",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0xf69e40069ac227c11459e3f4e8a446b3401616b6",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x93fac02b22b6743423381d163aec418178019b7a",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x93fac02b22b6743423381d163aec418178019b7a-1760923074552.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x93fac02b22b6743423381d163aec418178019b7a-1760923074552.png"
+ ],
+ "name": "Figma (Ondo Tokenized)",
+ "symbol": "FIGon",
+ "price": "-",
+ "priceChange24hPercent": "-",
+ "communityRecognized": false,
+ "key": "evm--56:0x93fac02b22b6743423381d163aec418178019b7a",
+ "kind": "token",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x99e01f02d66455bb106d91d469c9eaf6ab4904f6",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x99e01f02d66455bb106d91d469c9eaf6ab4904f6-1760923354737.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x99e01f02d66455bb106d91d469c9eaf6ab4904f6-1760923354737.png"
+ ],
+ "name": "Sharplink Gaming (Ondo Tokenized)",
+ "symbol": "SBETon",
+ "marketCap": "1711340120",
+ "price": "8.798824",
+ "priceChange24hPercent": "1.6",
+ "volume24h": "54330194.519999996",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "SharpLink博彩",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x99e01f02d66455bb106d91d469c9eaf6ab4904f6",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x52ad57a7ea642e99a892afc79e937b383f1b59e9",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x52ad57a7ea642e99a892afc79e937b383f1b59e9-1768032941245.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x52ad57a7ea642e99a892afc79e937b383f1b59e9-1768032941245.png"
+ ],
+ "name": "BitMine Immersion Technologies (Ondo Tokenized)",
+ "symbol": "BMNRon",
+ "marketCap": "14222332846",
+ "price": "25.220087",
+ "priceChange24hPercent": "0.99",
+ "volume24h": "1155029873.9099998",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "BitMine",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x52ad57a7ea642e99a892afc79e937b383f1b59e9",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xd04a2bb053277721a8321d7441eed5b42fdf7250",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xd04a2bb053277721a8321d7441eed5b42fdf7250-1761705848977.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xd04a2bb053277721a8321d7441eed5b42fdf7250-1761705848977.png"
+ ],
+ "name": "Salesforce (Ondo Tokenized)",
+ "symbol": "CRMon",
+ "marketCap": "212309370000",
+ "price": "257.487920522776546585",
+ "priceChange24hPercent": "-1.21",
+ "volume24h": "2679425388.3900003",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "赛富时",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0xd04a2bb053277721a8321d7441eed5b42fdf7250",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x4da12f47578ef89c76179b760c778e70b668f80b",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x4da12f47578ef89c76179b760c778e70b668f80b-1760923344446.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x4da12f47578ef89c76179b760c778e70b668f80b-1760923344446.png"
+ ],
+ "name": "Reddit (Ondo Tokenized)",
+ "symbol": "RDDTon",
+ "marketCap": "29734946936",
+ "price": "154.419048",
+ "priceChange24hPercent": "0.05",
+ "volume24h": "429786803.52000004",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "红迪",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x4da12f47578ef89c76179b760c778e70b668f80b",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x6e3e077a6c0e3c27fd6d00b97387d9b7bd451bab",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x6e3e077a6c0e3c27fd6d00b97387d9b7bd451bab-1760923154598.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x6e3e077a6c0e3c27fd6d00b97387d9b7bd451bab-1760923154598.png"
+ ],
+ "name": "Intuit (Ondo Tokenized)",
+ "symbol": "INTUon",
+ "marketCap": "91005759900",
+ "price": "332.51646606263590823",
+ "priceChange24hPercent": "-0.75",
+ "volume24h": "1177837182.6",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x6e3e077a6c0e3c27fd6d00b97387d9b7bd451bab",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xeb19c13c54b1cd48afc62f6503375e92d5f1e856",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xeb19c13c54b1cd48afc62f6503375e92d5f1e856-1760923271194.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xeb19c13c54b1cd48afc62f6503375e92d5f1e856-1760923271194.png"
+ ],
+ "name": "ServiceNow (Ondo Tokenized)",
+ "symbol": "NOWon",
+ "marketCap": "146043346120",
+ "price": "699.30488",
+ "priceChange24hPercent": "-1.05",
+ "volume24h": "1736762600.4399998",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "ServiceNow",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0xeb19c13c54b1cd48afc62f6503375e92d5f1e856",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x138ed6833ff4e8811e1fea0d005e13726c8886f9",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x138ed6833ff4e8811e1fea0d005e13726c8886f9-1760923381351.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x138ed6833ff4e8811e1fea0d005e13726c8886f9-1760923381351.png"
+ ],
+ "name": "Snowflake (Ondo Tokenized)",
+ "symbol": "SNOWon",
+ "marketCap": "116866588000",
+ "price": "337.2775",
+ "priceChange24hPercent": "-0.25",
+ "volume24h": "2842981049.56",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "雪花",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x138ed6833ff4e8811e1fea0d005e13726c8886f9",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xa528caaa2f96090e379d43f90834c75df54d6e74",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xa528caaa2f96090e379d43f90834c75df54d6e74-1760923148597.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xa528caaa2f96090e379d43f90834c75df54d6e74-1760923148597.png"
+ ],
+ "name": "Intel (Ondo Tokenized)",
+ "symbol": "INTCon",
+ "marketCap": "483215175763",
+ "price": "100.597692",
+ "priceChange24hPercent": "1.6",
+ "volume24h": "9355284335",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "英特尔",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0xa528caaa2f96090e379d43f90834c75df54d6e74",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xc142ba8ccd36d80c3a001342fb83e4c3d218a873",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xc142ba8ccd36d80c3a001342fb83e4c3d218a873-1760923376180.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xc142ba8ccd36d80c3a001342fb83e4c3d218a873-1760923376180.png"
+ ],
+ "name": "Super Micro Computer (Ondo Tokenized)",
+ "symbol": "SMCIon",
+ "marketCap": "25609702070",
+ "price": "40.042662",
+ "priceChange24hPercent": "1.47",
+ "volume24h": "2123337279.4800003",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "超微电脑",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0xc142ba8ccd36d80c3a001342fb83e4c3d218a873",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x274b0cb6db9473245a31cdea9b789786f4108e4b",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x274b0cb6db9473245a31cdea9b789786f4108e4b-1768464730010.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x274b0cb6db9473245a31cdea9b789786f4108e4b-1768464730010.png"
+ ],
+ "name": "Caterpillar (Ondo Tokenized)",
+ "symbol": "CATon",
+ "marketCap": "374930879780",
+ "price": "824.840862789310440651",
+ "priceChange24hPercent": "0.98",
+ "volume24h": "1620957440.3000002",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "卡特彼勒",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x274b0cb6db9473245a31cdea9b789786f4108e4b",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x5ecc352c4640f1d26bd231dbbd171f40f7d0eec6",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x5ecc352c4640f1d26bd231dbbd171f40f7d0eec6-1767888045927.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x5ecc352c4640f1d26bd231dbbd171f40f7d0eec6-1767888045927.png"
+ ],
+ "name": "Applied Materials (Ondo Tokenized)",
+ "symbol": "AMATon",
+ "marketCap": "361021096890",
+ "price": "468.39278701627463619",
+ "priceChange24hPercent": "2.68",
+ "volume24h": "2735913224.0099998",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "应用材料",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x5ecc352c4640f1d26bd231dbbd171f40f7d0eec6",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xd7df5863a3e742f0c767768cdfcb63f09e0422f6",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xd7df5863a3e742f0c767768cdfcb63f09e0422f6-1760923233924.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xd7df5863a3e742f0c767768cdfcb63f09e0422f6-1760923233924.png"
+ ],
+ "name": "Meta Platforms (Ondo Tokenized)",
+ "symbol": "METAon",
+ "marketCap": "1571213291779",
+ "price": "614.555295144030774555",
+ "priceChange24hPercent": "-0.02",
+ "volume24h": "9847481192.01",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "Meta",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0xd7df5863a3e742f0c767768cdfcb63f09e0422f6",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x4693f6f5ef257381a28afd0673e64d8b32d5c6ad",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x4693f6f5ef257381a28afd0673e64d8b32d5c6ad-1760923111457.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x4693f6f5ef257381a28afd0673e64d8b32d5c6ad-1760923111457.png"
+ ],
+ "name": "Hims & Hers Health (Ondo Tokenized)",
+ "symbol": "HIMSon",
+ "marketCap": "6181546800",
+ "price": "27.746",
+ "priceChange24hPercent": "-0.21",
+ "volume24h": "182854493.73000002",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "Hims & Hers",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x4693f6f5ef257381a28afd0673e64d8b32d5c6ad",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xb034f6cb52b7f2fd5a7eeeffca6b9adcd6b9a6f6",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xb034f6cb52b7f2fd5a7eeeffca6b9adcd6b9a6f6-1760922980249.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xb034f6cb52b7f2fd5a7eeeffca6b9adcd6b9a6f6-1760922980249.png"
+ ],
+ "name": "ASML Holding NV (Ondo Tokenized)",
+ "symbol": "ASMLon",
+ "marketCap": "660945604406",
+ "price": "1758.414946497724440837",
+ "priceChange24hPercent": "2.21",
+ "volume24h": "2211546975.36",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "阿斯麦",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0xb034f6cb52b7f2fd5a7eeeffca6b9adcd6b9a6f6",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x8fd70ee385f470c8d6fda2d93a4e49c849bac6a6",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x8fd70ee385f470c8d6fda2d93a4e49c849bac6a6-1767883597793.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x8fd70ee385f470c8d6fda2d93a4e49c849bac6a6-1767883597793.png"
+ ],
+ "name": "IREN (Ondo Tokenized)",
+ "symbol": "IRENon",
+ "marketCap": "15944391045",
+ "price": "45.389089",
+ "priceChange24hPercent": "2.29",
+ "volume24h": "1620373503.24",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "IREN",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x8fd70ee385f470c8d6fda2d93a4e49c849bac6a6",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xf3e82ea164cb344b2b11bad4c24b0ea4f7ba4714",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xf3e82ea164cb344b2b11bad4c24b0ea4f7ba4714-1767945976873.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xf3e82ea164cb344b2b11bad4c24b0ea4f7ba4714-1767945976873.png"
+ ],
+ "name": "PDD Holdings (Ondo Tokenized)",
+ "symbol": "PDDon",
+ "marketCap": "117017422072",
+ "price": "81.560326",
+ "priceChange24hPercent": "-0.94",
+ "volume24h": "382935002.09999996",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "拼多多",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0xf3e82ea164cb344b2b11bad4c24b0ea4f7ba4714",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x3fcd741646a9790635b938cdb69af5df356cbaab",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x3fcd741646a9790635b938cdb69af5df356cbaab-1768118974994.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x3fcd741646a9790635b938cdb69af5df356cbaab-1768118974994.png"
+ ],
+ "name": "abrdn Physical Palladium Shares ETF (Ondo Tokenized)",
+ "symbol": "PALLon",
+ "marketCap": "662462421",
+ "price": "127.025",
+ "priceChange24hPercent": "1.16",
+ "volume24h": "18618111.93",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "钯金ETF",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x3fcd741646a9790635b938cdb69af5df356cbaab",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x5acf40056ed51c8bbcd1b125ef803581ac89a627",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x5acf40056ed51c8bbcd1b125ef803581ac89a627-1760923085045.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x5acf40056ed51c8bbcd1b125ef803581ac89a627-1760923085045.png"
+ ],
+ "name": "Futu Holdings (Ondo Tokenized)",
+ "symbol": "FUTUon",
+ "marketCap": "16991222660",
+ "price": "123.422764240887776543",
+ "priceChange24hPercent": "-0.25",
+ "volume24h": "88127276.5",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "富途控股",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x5acf40056ed51c8bbcd1b125ef803581ac89a627",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xd226d8170ee38793430c7dec6903df4b818bb74c",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xd226d8170ee38793430c7dec6903df4b818bb74c-1760923212125.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xd226d8170ee38793430c7dec6903df4b818bb74c-1760923212125.png"
+ ],
+ "name": "MARA Holdings (Ondo Tokenized)",
+ "symbol": "MARAon",
+ "price": "-",
+ "priceChange24hPercent": "-",
+ "communityRecognized": false,
+ "key": "evm--56:0xd226d8170ee38793430c7dec6903df4b818bb74c",
+ "kind": "token",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x08a513779f46ffb7a34f16094a94016d010128a8",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x08a513779f46ffb7a34f16094a94016d010128a8-1760923281600.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x08a513779f46ffb7a34f16094a94016d010128a8-1760923281600.png"
+ ],
+ "name": "Novo Nordisk (Ondo Tokenized)",
+ "symbol": "NVOon",
+ "marketCap": "206932361506",
+ "price": "47.900708616347068423",
+ "priceChange24hPercent": "--",
+ "volume24h": "285153974.40000004",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "诺和诺德",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x08a513779f46ffb7a34f16094a94016d010128a8",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x22092c94a91d019ad15536725598b0a6be0a73c0",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x22092c94a91d019ad15536725598b0a6be0a73c0-1760923137786.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x22092c94a91d019ad15536725598b0a6be0a73c0-1760923137786.png"
+ ],
+ "name": "iShares Core MSCI Emerging Markets ETF (Ondo Tokenized)",
+ "symbol": "IEMGon",
+ "marketCap": "171167801924",
+ "price": "85.994643507231392039",
+ "priceChange24hPercent": "0.89",
+ "volume24h": "577001471.9000001",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "核心新兴市场ETF",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x22092c94a91d019ad15536725598b0a6be0a73c0",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x995add4ba29a628a57930a8a185c62ca044ec090",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x995add4ba29a628a57930a8a185c62ca044ec090-1760923223388.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x995add4ba29a628a57930a8a185c62ca044ec090-1760923223388.png"
+ ],
+ "name": "McDonald's (Ondo Tokenized)",
+ "symbol": "MCDon",
+ "marketCap": "181669279140",
+ "price": "261.414735153891492023",
+ "priceChange24hPercent": "-0.12",
+ "volume24h": "1069340837.13",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "麦当劳",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x995add4ba29a628a57930a8a185c62ca044ec090",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x1cde419fae0ef7f7931ae3e29e5f411c8c5e5fa1",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x1cde419fae0ef7f7931ae3e29e5f411c8c5e5fa1-1760923609945.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x1cde419fae0ef7f7931ae3e29e5f411c8c5e5fa1-1760923609945.png"
+ ],
+ "name": "Visa (Ondo Tokenized)",
+ "symbol": "Von",
+ "marketCap": "700273397430",
+ "price": "374.009002377026934042",
+ "priceChange24hPercent": "-0.75",
+ "volume24h": "1730302929.6",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "维萨",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x1cde419fae0ef7f7931ae3e29e5f411c8c5e5fa1",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x1501ec83ffef405b4331cc4f73277a40fb0c627d",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x1501ec83ffef405b4331cc4f73277a40fb0c627d-1760923239312.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x1501ec83ffef405b4331cc4f73277a40fb0c627d-1760923239312.png"
+ ],
+ "name": "Marvell Technology (Ondo Tokenized)",
+ "symbol": "MRVLon",
+ "marketCap": "195777489300",
+ "price": "229.524776103399458333",
+ "priceChange24hPercent": "2.41",
+ "volume24h": "4743302231.1",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "迈威尔科技",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x1501ec83ffef405b4331cc4f73277a40fb0c627d",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x527c6436e1eaa4f2065cde4090f798cb5d031dd6",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x527c6436e1eaa4f2065cde4090f798cb5d031dd6-1760922974777.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x527c6436e1eaa4f2065cde4090f798cb5d031dd6-1760922974777.png"
+ ],
+ "name": "Arm Holdings plc (Ondo Tokenized)",
+ "symbol": "ARMon",
+ "marketCap": "269231759259",
+ "price": "261.0225",
+ "priceChange24hPercent": "2.2",
+ "volume24h": "1041739741.08",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "安谋",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x527c6436e1eaa4f2065cde4090f798cb5d031dd6",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x0d4f9b25f81163fb4840ba4f434672543823000c",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x0d4f9b25f81163fb4840ba4f434672543823000c-1760923106279.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x0d4f9b25f81163fb4840ba4f434672543823000c-1760923106279.png"
+ ],
+ "name": "Goldman Sachs (Ondo Tokenized)",
+ "symbol": "GSon",
+ "marketCap": "306397220270",
+ "price": "1047.374865547024001893",
+ "priceChange24hPercent": "-0.4",
+ "volume24h": "1483473666.86",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "高盛",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x0d4f9b25f81163fb4840ba4f434672543823000c",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x60a8f8e05200ff73afde9e2cae819bf1605f0bdd",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x60a8f8e05200ff73afde9e2cae819bf1605f0bdd-1760923228476.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x60a8f8e05200ff73afde9e2cae819bf1605f0bdd-1760923228476.png"
+ ],
+ "name": "MercadoLibre (Ondo Tokenized)",
+ "symbol": "MELIon",
+ "marketCap": "100297276982",
+ "price": "1967",
+ "priceChange24hPercent": "-0.43",
+ "volume24h": "557770904.9599999",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "美客多",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x60a8f8e05200ff73afde9e2cae819bf1605f0bdd",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x467e59ce5d5fe01686d4a80dd1e1dae13549aa6c",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x467e59ce5d5fe01686d4a80dd1e1dae13549aa6c-1760515402441.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x467e59ce5d5fe01686d4a80dd1e1dae13549aa6c-1760515402441.png"
+ ],
+ "name": "Baidu (Ondo Tokenized)",
+ "symbol": "BIDUon",
+ "marketCap": "33832211369",
+ "price": "92.292027",
+ "priceChange24hPercent": "-7.17",
+ "volume24h": "256503090.06",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "百度",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x467e59ce5d5fe01686d4a80dd1e1dae13549aa6c",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xc4a88a72b848255fd24da3c1ad6755d980535fb1",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xc4a88a72b848255fd24da3c1ad6755d980535fb1-1760923349554.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xc4a88a72b848255fd24da3c1ad6755d980535fb1-1760923349554.png"
+ ],
+ "name": "Riot Platforms (Ondo Tokenized)",
+ "symbol": "RIOTon",
+ "marketCap": "8243696814",
+ "price": "21.664",
+ "priceChange24hPercent": "-0.09",
+ "volume24h": "335036003.2",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "Riot平台",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0xc4a88a72b848255fd24da3c1ad6755d980535fb1",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x0eaa1a75bd682a5669ab2371a559fbd039c6b9eb",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x0eaa1a75bd682a5669ab2371a559fbd039c6b9eb-1760923292006.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x0eaa1a75bd682a5669ab2371a559fbd039c6b9eb-1760923292006.png"
+ ],
+ "name": "Palo Alto Networks (Ondo Tokenized)",
+ "symbol": "PANWon",
+ "marketCap": "271606900000",
+ "price": "333.65",
+ "priceChange24hPercent": "0.1",
+ "volume24h": "1879381111.84",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "帕洛阿尔托网络",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x0eaa1a75bd682a5669ab2371a559fbd039c6b9eb",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x4d209d275e3492ac08497a7a42915899c4dd5e86",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x4d209d275e3492ac08497a7a42915899c4dd5e86-1768378192726.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x4d209d275e3492ac08497a7a42915899c4dd5e86-1768378192726.png"
+ ],
+ "name": "Exxon Mobil (Ondo Tokenized)",
+ "symbol": "XOMon",
+ "marketCap": "660875591600",
+ "price": "161.929674995637777397",
+ "priceChange24hPercent": "0.06",
+ "volume24h": "2537206808.78",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "埃克森美孚",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x4d209d275e3492ac08497a7a42915899c4dd5e86",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x68b07cef227cea1b2b6683921c8c825cd5c69ec7",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x68b07cef227cea1b2b6683921c8c825cd5c69ec7-1773890434386.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x68b07cef227cea1b2b6683921c8c825cd5c69ec7-1773890434386.png"
+ ],
+ "name": "iShares Bitcoin Trust (Ondo Tokenized)",
+ "symbol": "IBITON",
+ "marketCap": "75421432839",
+ "price": "44.648189",
+ "priceChange24hPercent": "-1.02",
+ "volume24h": "2361768351.6499996",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "贝莱德比特币ETF",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x68b07cef227cea1b2b6683921c8c825cd5c69ec7",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x1104eb7e85e25eb45f88e638b0c27a06c1a91cb2",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x1104eb7e85e25eb45f88e638b0c27a06c1a91cb2-1760923159261.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x1104eb7e85e25eb45f88e638b0c27a06c1a91cb2-1760923159261.png"
+ ],
+ "name": "iShares Core S&P 500 ETF (Ondo Tokenized ETF)",
+ "symbol": "IVVON",
+ "marketCap": "896778097376",
+ "price": "780.425487329284924111",
+ "priceChange24hPercent": "0.05",
+ "volume24h": "7974410540.32",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "安硕标普500",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x1104eb7e85e25eb45f88e638b0c27a06c1a91cb2",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xcf9caf83053213c44dd7027db3e1e4ac98e55f8f",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xcf9caf83053213c44dd7027db3e1e4ac98e55f8f-1760976491888.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xcf9caf83053213c44dd7027db3e1e4ac98e55f8f-1760976491888.png"
+ ],
+ "name": "iShares Core S&P Total US Stock Market ETF (Ondo Tokenized ETF)",
+ "symbol": "ITOTON",
+ "marketCap": "95625104840",
+ "price": "169.804819587832307416",
+ "priceChange24hPercent": "--",
+ "volume24h": "169106458.23999998",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "美股全市场ETF",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0xcf9caf83053213c44dd7027db3e1e4ac98e55f8f",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x2ac26ec236df5d1d2ad1a6dd4e448a90e45dc35d",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x2ac26ec236df5d1d2ad1a6dd4e448a90e45dc35d-1760923397223.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x2ac26ec236df5d1d2ad1a6dd4e448a90e45dc35d-1760923397223.png"
+ ],
+ "name": "iShares TIPS Bond ETF (Ondo Tokenized ETF)",
+ "symbol": "TIPON",
+ "marketCap": "14720410837",
+ "price": "111.376087623270475341",
+ "priceChange24hPercent": "0.03",
+ "volume24h": "108138754.22",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x2ac26ec236df5d1d2ad1a6dd4e448a90e45dc35d",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x38b9a53bfdc5dba58a29bd6992341927c2fca637",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x38b9a53bfdc5dba58a29bd6992341927c2fca637-1760923069433.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x38b9a53bfdc5dba58a29bd6992341927c2fca637-1760923069433.png"
+ ],
+ "name": "iShares MSCI EAFE ETF (Ondo Tokenized ETF)",
+ "symbol": "EFAON",
+ "marketCap": "78896005005",
+ "price": "110.898588433796849651",
+ "priceChange24hPercent": "0.16",
+ "volume24h": "613264467.1999999",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x38b9a53bfdc5dba58a29bd6992341927c2fca637",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x40755f06ab7f8de1ab3a9413b1ef562d63de19b1",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x40755f06ab7f8de1ab3a9413b1ef562d63de19b1-1760923164409.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x40755f06ab7f8de1ab3a9413b1ef562d63de19b1-1760923164409.png"
+ ],
+ "name": "iShares Russell 1000 Growth ETF (Ondo Tokenized ETF)",
+ "symbol": "IWFON",
+ "marketCap": "134439059389",
+ "price": "494.964782503527050629",
+ "priceChange24hPercent": "0.25",
+ "volume24h": "387028445.78999996",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x40755f06ab7f8de1ab3a9413b1ef562d63de19b1",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x00c81d35eddf44c75d4db9e07bdcdc236eb0ebcf",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x00c81d35eddf44c75d4db9e07bdcdc236eb0ebcf-1760923060271.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x00c81d35eddf44c75d4db9e07bdcdc236eb0ebcf-1760923060271.png"
+ ],
+ "name": "iShares MSCI Emerging Markets ETF (Ondo Tokenized ETF)",
+ "symbol": "EEMON",
+ "marketCap": "32146260773",
+ "price": "70.550489448583953469",
+ "priceChange24hPercent": "1.26",
+ "volume24h": "1506651730.8",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "新兴市场ETF",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x00c81d35eddf44c75d4db9e07bdcdc236eb0ebcf",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x01b5a4ac600be98448dbefbb78bcdf38262552cc",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x01b5a4ac600be98448dbefbb78bcdf38262552cc-1768118550219.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x01b5a4ac600be98448dbefbb78bcdf38262552cc-1768118550219.png"
+ ],
+ "name": "Occidental Petroleum (Ondo Tokenized)",
+ "symbol": "OXYON",
+ "marketCap": "59717867448",
+ "price": "60.427368985063029401",
+ "priceChange24hPercent": "--",
+ "volume24h": "400488654.56",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "西方石油",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x01b5a4ac600be98448dbefbb78bcdf38262552cc",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xf54b94ea21e1da5d51ef00fd4502225e5394f874",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xf54b94ea21e1da5d51ef00fd4502225e5394f874-1760923174798.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xf54b94ea21e1da5d51ef00fd4502225e5394f874-1760923174798.png"
+ ],
+ "name": "iShares Russell 2000 Value ETF (Ondo Tokenized ETF)",
+ "symbol": "IWNON",
+ "marketCap": "14510541399",
+ "price": "226.016737142534794549",
+ "priceChange24hPercent": "-0.45",
+ "volume24h": "144788928.9",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0xf54b94ea21e1da5d51ef00fd4502225e5394f874",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x8a83c31d6751833b4940b6e871c48d9a15a07b46",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x8a83c31d6751833b4940b6e871c48d9a15a07b46-1760923307953.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x8a83c31d6751833b4940b6e871c48d9a15a07b46-1760923307953.png"
+ ],
+ "name": "Pfizer (Ondo Tokenized Stock)",
+ "symbol": "PFEON",
+ "marketCap": "162149068000",
+ "price": "30.045669965608379961",
+ "priceChange24hPercent": "-0.39",
+ "volume24h": "669415327.65",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "辉瑞",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x8a83c31d6751833b4940b6e871c48d9a15a07b46",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x500eafc69b68acd6f27064f9b75f1c7d91cc4d9f",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x500eafc69b68acd6f27064f9b75f1c7d91cc4d9f-1760923169588.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x500eafc69b68acd6f27064f9b75f1c7d91cc4d9f-1760923169588.png"
+ ],
+ "name": "iShares Russell 2000 ETF (Ondo Tokenized ETF)",
+ "symbol": "IWMON",
+ "marketCap": "81417408119",
+ "price": "297.748095366553568352",
+ "priceChange24hPercent": "0.02",
+ "volume24h": "4113713428.1099997",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "罗素2000 ETF",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x500eafc69b68acd6f27064f9b75f1c7d91cc4d9f",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xd85d4ce29b4ca361ff72ef0e53d6236e334c5db6",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xd85d4ce29b4ca361ff72ef0e53d6236e334c5db6-1768118835493.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xd85d4ce29b4ca361ff72ef0e53d6236e334c5db6-1768118835493.png"
+ ],
+ "name": "Ondas Holdings (Ondo Tokenized)",
+ "symbol": "ONDSON",
+ "price": "-",
+ "priceChange24hPercent": "-",
+ "communityRecognized": false,
+ "key": "evm--56:0xd85d4ce29b4ca361ff72ef0e53d6236e334c5db6",
+ "kind": "token",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x167e93a849a0cc479769132552b99aa1cfa0948c",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x167e93a849a0cc479769132552b99aa1cfa0948c-1760923143055.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x167e93a849a0cc479769132552b99aa1cfa0948c-1760923143055.png"
+ ],
+ "name": "iShares Core S&P MidCap ETF (Ondo Tokenized ETF)",
+ "symbol": "IJHON",
+ "marketCap": "123402837938",
+ "price": "76.53881613572147098",
+ "priceChange24hPercent": "0.14",
+ "volume24h": "360950049.75",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x167e93a849a0cc479769132552b99aa1cfa0948c",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xa7d1e886acf66ec0656df2decb4b7c893a3bab4c",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xa7d1e886acf66ec0656df2decb4b7c893a3bab4c-1760923620884.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xa7d1e886acf66ec0656df2decb4b7c893a3bab4c-1760923620884.png"
+ ],
+ "name": "Walmart (Ondo Tokenized Stock)",
+ "symbol": "WMTON",
+ "marketCap": "852628691200",
+ "price": "107.242391409320952249",
+ "priceChange24hPercent": "-0.47",
+ "volume24h": "2200706170.08",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "沃尔玛",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0xa7d1e886acf66ec0656df2decb4b7c893a3bab4c",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x2b1d5cdecc356530a746c5754231efaeaca64022",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x2b1d5cdecc356530a746c5754231efaeaca64022-1760923297458.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x2b1d5cdecc356530a746c5754231efaeaca64022-1760923297458.png"
+ ],
+ "name": "Petrobras (Ondo Tokenized Stock)",
+ "symbol": "PBRON",
+ "marketCap": "129660646415",
+ "price": "20.856197511015279798",
+ "priceChange24hPercent": "-0.22",
+ "volume24h": "377829496.24",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "巴西石油",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x2b1d5cdecc356530a746c5754231efaeaca64022",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xecc1299f183b6a720a6f4729bf24f82cd8d50828",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xecc1299f183b6a720a6f4729bf24f82cd8d50828-1760923402510.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xecc1299f183b6a720a6f4729bf24f82cd8d50828-1760923402510.png"
+ ],
+ "name": "Toyota (Ondo Tokenized Stock)",
+ "symbol": "TMON",
+ "marketCap": "233414630448",
+ "price": "197.584090494197418125",
+ "priceChange24hPercent": "1.15",
+ "volume24h": "64367650.27",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "丰田",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0xecc1299f183b6a720a6f4729bf24f82cd8d50828",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x24f5471183ea549987f245d6ce236b6108869c92",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x24f5471183ea549987f245d6ce236b6108869c92-1760923012085.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x24f5471183ea549987f245d6ce236b6108869c92-1760923012085.png"
+ ],
+ "name": "Blackrock, Inc. (Ondo Tokenized Stock)",
+ "symbol": "BLKON",
+ "marketCap": "173949338550",
+ "price": "1132.730600298929983859",
+ "priceChange24hPercent": "-0.52",
+ "volume24h": "460986228.95",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "贝莱德",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x24f5471183ea549987f245d6ce236b6108869c92",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xe8ff70859ce4cbd72e4352b4fb45f5bf39d07464",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xe8ff70859ce4cbd72e4352b4fb45f5bf39d07464-1760923127124.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xe8ff70859ce4cbd72e4352b4fb45f5bf39d07464-1760923127124.png"
+ ],
+ "name": "IBM (Ondo Tokenized Stock)",
+ "symbol": "IBMON",
+ "marketCap": "221297855260",
+ "price": "239.939607742091185163",
+ "priceChange24hPercent": "-0.04",
+ "volume24h": "717698173.8499999",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "国际商业机器",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0xe8ff70859ce4cbd72e4352b4fb45f5bf39d07464",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x4fd67cb8cfedc718bac984b5936abe3330d0a2a4",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x4fd67cb8cfedc718bac984b5936abe3330d0a2a4-1773890603767.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x4fd67cb8cfedc718bac984b5936abe3330d0a2a4-1773890603767.png"
+ ],
+ "name": "SanDisk (Ondo Tokenized)",
+ "symbol": "SNDKON",
+ "marketCap": "257676165000",
+ "price": "1813.141716",
+ "priceChange24hPercent": "1.53",
+ "volume24h": "28809122580",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "闪迪",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x4fd67cb8cfedc718bac984b5936abe3330d0a2a4",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xe4e12c9cec3e8cae405202a97f66afa695075fa0",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xe4e12c9cec3e8cae405202a97f66afa695075fa0-1760923070917.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xe4e12c9cec3e8cae405202a97f66afa695075fa0-1760923070917.png"
+ ],
+ "name": "Equinix (Ondo Tokenized Stock)",
+ "symbol": "EQIXON",
+ "marketCap": "102221893262",
+ "price": "1034.973342393173569538",
+ "priceChange24hPercent": "-1.63",
+ "volume24h": "357010103.78000003",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0xe4e12c9cec3e8cae405202a97f66afa695075fa0",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x5151a22421ed4277f1e4ca4785a07b035d548a36",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x5151a22421ed4277f1e4ca4785a07b035d548a36-1760923090436.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x5151a22421ed4277f1e4ca4785a07b035d548a36-1760923090436.png"
+ ],
+ "name": "General Electric (Ondo Tokenized Stock)",
+ "symbol": "GEON",
+ "marketCap": "349783074383",
+ "price": "337.589114914645847783",
+ "priceChange24hPercent": "-0.19",
+ "volume24h": "825014560.16",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "通用电气",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x5151a22421ed4277f1e4ca4785a07b035d548a36",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xf21132a811ad1a878e21af60f64d4e690c9daa42",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xf21132a811ad1a878e21af60f64d4e690c9daa42-1761748250710.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xf21132a811ad1a878e21af60f64d4e690c9daa42-1761748250710.png"
+ ],
+ "name": "Boeing (Ondo Tokenized Stock)",
+ "symbol": "BAON",
+ "price": "-",
+ "priceChange24hPercent": "-",
+ "communityRecognized": false,
+ "key": "evm--56:0xf21132a811ad1a878e21af60f64d4e690c9daa42",
+ "kind": "token",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x12b7adc48416a103f63e7e6210f62c81dfb91fd0",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x12b7adc48416a103f63e7e6210f62c81dfb91fd0-1773890376568.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x12b7adc48416a103f63e7e6210f62c81dfb91fd0-1773890376568.png"
+ ],
+ "name": "iShares MSCI South Korea ETF (Ondo Tokenized)",
+ "symbol": "EWYON",
+ "marketCap": "14278571056",
+ "price": "194.898272",
+ "priceChange24hPercent": "3.95",
+ "volume24h": "3455448231.73",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "iShares MSCI韩国ETF",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x12b7adc48416a103f63e7e6210f62c81dfb91fd0",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x34375f826fd3dd4e15f883d4f4786bb45eb705ac",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x34375f826fd3dd4e15f883d4f4786bb45eb705ac-1761313247216.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x34375f826fd3dd4e15f883d4f4786bb45eb705ac-1761313247216.png"
+ ],
+ "name": "Costco (Ondo Tokenized Stock)",
+ "symbol": "COSTON",
+ "marketCap": "406111459460",
+ "price": "918.726163055351801392",
+ "priceChange24hPercent": "-0.23",
+ "volume24h": "1903887561.8",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "开市客",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x34375f826fd3dd4e15f883d4f4786bb45eb705ac",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x629520dee1620def11596f84e85de9f1ff653012",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x629520dee1620def11596f84e85de9f1ff653012-1760923615610.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x629520dee1620def11596f84e85de9f1ff653012-1760923615610.png"
+ ],
+ "name": "Wells Fargo (Ondo Tokenized Stock)",
+ "symbol": "WFCON",
+ "marketCap": "272039040000",
+ "price": "90.828327345333623842",
+ "priceChange24hPercent": "-0.85",
+ "volume24h": "712161682.9599999",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "富国银行",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x629520dee1620def11596f84e85de9f1ff653012",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xef80743f78d98fc2b47a2253b293152ce8b879ba",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xef80743f78d98fc2b47a2253b293152ce8b879ba-1760922268573.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xef80743f78d98fc2b47a2253b293152ce8b879ba-1760922268573.png"
+ ],
+ "name": "Airbnb (Ondo Tokenized Stock)",
+ "symbol": "ABNBON",
+ "marketCap": "107983869660",
+ "price": "181.313333",
+ "priceChange24hPercent": "-0.66",
+ "volume24h": "620194706.78",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "爱彼迎",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0xef80743f78d98fc2b47a2253b293152ce8b879ba",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xfbd4d681c92ead6af0e49950c8b2e47eeacbb2db",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xfbd4d681c92ead6af0e49950c8b2e47eeacbb2db-1760923334398.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xfbd4d681c92ead6af0e49950c8b2e47eeacbb2db-1760923334398.png"
+ ],
+ "name": "Qualcomm (Ondo Tokenized Stock)",
+ "symbol": "QCOMON",
+ "marketCap": "177177000000",
+ "price": "174.693612375015163222",
+ "priceChange24hPercent": "1.84",
+ "volume24h": "1440555484.94",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "高通",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0xfbd4d681c92ead6af0e49950c8b2e47eeacbb2db",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xc008c5f579ec1450f20099c39f587547e27c7523",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xc008c5f579ec1450f20099c39f587547e27c7523-1768185634202.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xc008c5f579ec1450f20099c39f587547e27c7523-1768185634202.png"
+ ],
+ "name": "iShares 0-3 Month Treasury Bond ETF (Ondo Tokenized ETF)",
+ "symbol": "SGOVON",
+ "marketCap": "95942590920",
+ "price": "102.324784764508258885",
+ "priceChange24hPercent": "--",
+ "volume24h": "2053722039.09",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "iShares 0-3个月国债ETF",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0xc008c5f579ec1450f20099c39f587547e27c7523",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x76e39171cb665a35981e744e2ceb7012f76caeac",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x76e39171cb665a35981e744e2ceb7012f76caeac-1773853768684.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x76e39171cb665a35981e744e2ceb7012f76caeac-1773853768684.png"
+ ],
+ "name": "CoreWeave (Ondo Tokenized)",
+ "symbol": "CRWVON",
+ "marketCap": "48752169872",
+ "price": "91.523734",
+ "priceChange24hPercent": "2.73",
+ "volume24h": "1858414200.96",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "CoreWeave",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x76e39171cb665a35981e744e2ceb7012f76caeac",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ }
+ ],
+ "stocks||4h|market__tab__consumer_tech": [
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x390a684ef9cade28a7ad0dfa61ab1eb3842618c4",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x390a684ef9cade28a7ad0dfa61ab1eb3842618c4-1760515427269.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x390a684ef9cade28a7ad0dfa61ab1eb3842618c4-1760515427269.png"
+ ],
+ "name": "Apple (Ondo Tokenized)",
+ "symbol": "AAPLon",
+ "marketCap": "4699513299320",
+ "price": "320.298481855554072365",
+ "priceChange24hPercent": "-0.5",
+ "volume24h": "12673014673.480001",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "苹果",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x390a684ef9cade28a7ad0dfa61ab1eb3842618c4",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x4553cfe1c09f37f38b12dc509f676964e392f8fc",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x4553cfe1c09f37f38b12dc509f676964e392f8fc-1760686410256.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x4553cfe1c09f37f38b12dc509f676964e392f8fc-1760686410256.png"
+ ],
+ "name": "Amazon (Ondo Tokenized)",
+ "symbol": "AMZNon",
+ "marketCap": "2780817921000",
+ "price": "258.279748",
+ "priceChange24hPercent": "-0.11",
+ "volume24h": "7949159751.12",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "亚马逊",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x4553cfe1c09f37f38b12dc509f676964e392f8fc",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x091fc7778e6932d4009b087b191d1ee3bac5729a",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x091fc7778e6932d4009b087b191d1ee3bac5729a-1760923100804.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x091fc7778e6932d4009b087b191d1ee3bac5729a-1760923100804.png"
+ ],
+ "name": "Alphabet Class A (Ondo Tokenized)",
+ "symbol": "GOOGLon",
+ "marketCap": "4096080585860",
+ "price": "338.962258099649311085",
+ "priceChange24hPercent": "-0.2",
+ "volume24h": "7848657585.66",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "谷歌",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x091fc7778e6932d4009b087b191d1ee3bac5729a",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x6bfe75d1ad432050ea973c3a3dcd88f02e2444c3",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x6bfe75d1ad432050ea973c3a3dcd88f02e2444c3-1760923244592.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x6bfe75d1ad432050ea973c3a3dcd88f02e2444c3-1760923244592.png"
+ ],
+ "name": "Microsoft (Ondo Tokenized)",
+ "symbol": "MSFTon",
+ "marketCap": "3710547335000",
+ "price": "499.708647472892879635",
+ "priceChange24hPercent": "-0.72",
+ "volume24h": "9045448472.6",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "微软",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x6bfe75d1ad432050ea973c3a3dcd88f02e2444c3",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x7048f5227b032326cc8dbc53cf3fddd947a2c757",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x7048f5227b032326cc8dbc53cf3fddd947a2c757-1760923261006.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x7048f5227b032326cc8dbc53cf3fddd947a2c757-1760923261006.png"
+ ],
+ "name": "Netflix (Ondo Tokenized)",
+ "symbol": "NFLXon",
+ "marketCap": "325828304922",
+ "price": "778.72424",
+ "priceChange24hPercent": "-0.54",
+ "volume24h": "3144868282.5",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "奈飞",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x7048f5227b032326cc8dbc53cf3fddd947a2c757",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x03e4bd1ea53f1da84513da0319d1f03dd1bbcf93",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x03e4bd1ea53f1da84513da0319d1f03dd1bbcf93-1760923286694.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x03e4bd1ea53f1da84513da0319d1f03dd1bbcf93-1760923286694.png"
+ ],
+ "name": "Oracle (Ondo Tokenized)",
+ "symbol": "ORCLon",
+ "marketCap": "457505050100",
+ "price": "166.481535598340633943",
+ "priceChange24hPercent": "2.21",
+ "volume24h": "4138044844.8500004",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "甲骨文",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x03e4bd1ea53f1da84513da0319d1f03dd1bbcf93",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x2494b603319d4d9f9715c9f4496d9e0364b59d93",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x2494b603319d4d9f9715c9f4496d9e0364b59d93-1760680411667.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x2494b603319d4d9f9715c9f4496d9e0364b59d93-1760680411667.png"
+ ],
+ "name": "Tesla (Ondo Tokenized)",
+ "symbol": "TSLAon",
+ "marketCap": "1398455741268",
+ "price": "356.443455",
+ "priceChange24hPercent": "0.17",
+ "volume24h": "23021647442.719997",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "特斯拉",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x2494b603319d4d9f9715c9f4496d9e0364b59d93",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x34304f2f7cc487eb4186e6d69f5905a613474aa2",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x34304f2f7cc487eb4186e6d69f5905a613474aa2-1761709115472.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x34304f2f7cc487eb4186e6d69f5905a613474aa2-1761709115472.png"
+ ],
+ "name": "Cisco Systems (Ondo Tokenized)",
+ "symbol": "CSCOon",
+ "marketCap": "430404665418",
+ "price": "110.75473913211509356",
+ "priceChange24hPercent": "0.07",
+ "volume24h": "1351570474.8",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "思科",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x34304f2f7cc487eb4186e6d69f5905a613474aa2",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x50356167a4dbc38bea6779c045e24e25facedfdc",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x50356167a4dbc38bea6779c045e24e25facedfdc-1760923391964.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x50356167a4dbc38bea6779c045e24e25facedfdc-1760923391964.png"
+ ],
+ "name": "Spotify (Ondo Tokenized)",
+ "symbol": "SPOTon",
+ "marketCap": "111515040318",
+ "price": "534.766667",
+ "priceChange24hPercent": "-1.69",
+ "volume24h": "742202629.56",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "Spotify",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x50356167a4dbc38bea6779c045e24e25facedfdc",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xe6837794fbc6dd024733a1a31f86061296fa2752",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xe6837794fbc6dd024733a1a31f86061296fa2752-1767888357216.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xe6837794fbc6dd024733a1a31f86061296fa2752-1767888357216.png"
+ ],
+ "name": "CrowdStrike (Ondo Tokenized)",
+ "symbol": "CRWDon",
+ "marketCap": "216991052568",
+ "price": "854.08",
+ "priceChange24hPercent": "0.11",
+ "volume24h": "1796128480.1",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "CrowdStrike",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0xe6837794fbc6dd024733a1a31f86061296fa2752",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x43d0b380c33cd004a6a69abd61843881a2de4113",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x43d0b380c33cd004a6a69abd61843881a2de4113-1760923365671.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x43d0b380c33cd004a6a69abd61843881a2de4113-1760923365671.png"
+ ],
+ "name": "Shopify (Ondo Tokenized)",
+ "symbol": "SHOPon",
+ "marketCap": "188276717956",
+ "price": "143.536364",
+ "priceChange24hPercent": "-1.23",
+ "volume24h": "1001972823.39",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "Shopify",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x43d0b380c33cd004a6a69abd61843881a2de4113",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x7af44d51d1fb88c5b74fc71d3cba649bb8099d14",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x7af44d51d1fb88c5b74fc71d3cba649bb8099d14-1760922282064.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x7af44d51d1fb88c5b74fc71d3cba649bb8099d14-1760922282064.png"
+ ],
+ "name": "Accenture (Ondo Tokenized)",
+ "symbol": "ACNon",
+ "marketCap": "114261830592",
+ "price": "190.128369050462170162",
+ "priceChange24hPercent": "-1.11",
+ "volume24h": "906653876.64",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "埃森哲",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x7af44d51d1fb88c5b74fc71d3cba649bb8099d14",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xeb19c13c54b1cd48afc62f6503375e92d5f1e856",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xeb19c13c54b1cd48afc62f6503375e92d5f1e856-1760923271194.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xeb19c13c54b1cd48afc62f6503375e92d5f1e856-1760923271194.png"
+ ],
+ "name": "ServiceNow (Ondo Tokenized)",
+ "symbol": "NOWon",
+ "marketCap": "146043346120",
+ "price": "699.30488",
+ "priceChange24hPercent": "-1.05",
+ "volume24h": "1736762600.4399998",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "ServiceNow",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0xeb19c13c54b1cd48afc62f6503375e92d5f1e856",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xd7df5863a3e742f0c767768cdfcb63f09e0422f6",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xd7df5863a3e742f0c767768cdfcb63f09e0422f6-1760923233924.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xd7df5863a3e742f0c767768cdfcb63f09e0422f6-1760923233924.png"
+ ],
+ "name": "Meta Platforms (Ondo Tokenized)",
+ "symbol": "METAon",
+ "marketCap": "1571213291779",
+ "price": "614.555295144030774555",
+ "priceChange24hPercent": "-0.02",
+ "volume24h": "9847481192.01",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "Meta",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0xd7df5863a3e742f0c767768cdfcb63f09e0422f6",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x995add4ba29a628a57930a8a185c62ca044ec090",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x995add4ba29a628a57930a8a185c62ca044ec090-1760923223388.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x995add4ba29a628a57930a8a185c62ca044ec090-1760923223388.png"
+ ],
+ "name": "McDonald's (Ondo Tokenized)",
+ "symbol": "MCDon",
+ "marketCap": "181669279140",
+ "price": "261.414735153891492023",
+ "priceChange24hPercent": "-0.12",
+ "volume24h": "1069340837.13",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "麦当劳",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x995add4ba29a628a57930a8a185c62ca044ec090",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x0eaa1a75bd682a5669ab2371a559fbd039c6b9eb",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x0eaa1a75bd682a5669ab2371a559fbd039c6b9eb-1760923292006.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x0eaa1a75bd682a5669ab2371a559fbd039c6b9eb-1760923292006.png"
+ ],
+ "name": "Palo Alto Networks (Ondo Tokenized)",
+ "symbol": "PANWon",
+ "marketCap": "271606900000",
+ "price": "333.65",
+ "priceChange24hPercent": "0.1",
+ "volume24h": "1879381111.84",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "帕洛阿尔托网络",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x0eaa1a75bd682a5669ab2371a559fbd039c6b9eb",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xa7d1e886acf66ec0656df2decb4b7c893a3bab4c",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xa7d1e886acf66ec0656df2decb4b7c893a3bab4c-1760923620884.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xa7d1e886acf66ec0656df2decb4b7c893a3bab4c-1760923620884.png"
+ ],
+ "name": "Walmart (Ondo Tokenized Stock)",
+ "symbol": "WMTON",
+ "marketCap": "852628691200",
+ "price": "107.242391409320952249",
+ "priceChange24hPercent": "-0.47",
+ "volume24h": "2200706170.08",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "沃尔玛",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0xa7d1e886acf66ec0656df2decb4b7c893a3bab4c",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xecc1299f183b6a720a6f4729bf24f82cd8d50828",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xecc1299f183b6a720a6f4729bf24f82cd8d50828-1760923402510.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xecc1299f183b6a720a6f4729bf24f82cd8d50828-1760923402510.png"
+ ],
+ "name": "Toyota (Ondo Tokenized Stock)",
+ "symbol": "TMON",
+ "marketCap": "233414630448",
+ "price": "197.584090494197418125",
+ "priceChange24hPercent": "1.15",
+ "volume24h": "64367650.27",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "丰田",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0xecc1299f183b6a720a6f4729bf24f82cd8d50828",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xef80743f78d98fc2b47a2253b293152ce8b879ba",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xef80743f78d98fc2b47a2253b293152ce8b879ba-1760922268573.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xef80743f78d98fc2b47a2253b293152ce8b879ba-1760922268573.png"
+ ],
+ "name": "Airbnb (Ondo Tokenized Stock)",
+ "symbol": "ABNBON",
+ "marketCap": "107983869660",
+ "price": "181.313333",
+ "priceChange24hPercent": "-0.66",
+ "volume24h": "620194706.78",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "爱彼迎",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0xef80743f78d98fc2b47a2253b293152ce8b879ba",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ }
+ ],
+ "stocks||4h|market__tab__ai_tech": [
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xa9ee28c80f960b889dfbd1902055218cba016f75",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xa9ee28c80f960b889dfbd1902055218cba016f75-1760923276163.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xa9ee28c80f960b889dfbd1902055218cba016f75-1760923276163.png"
+ ],
+ "name": "NVIDIA (Ondo Tokenized)",
+ "symbol": "NVDAon",
+ "marketCap": "5579549560000",
+ "price": "233.18030531293853192",
+ "priceChange24hPercent": "0.56",
+ "volume24h": "31179783471.2",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "英伟达",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0xa9ee28c80f960b889dfbd1902055218cba016f75",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x8b6acf6041a81567f012ff6a4c6d96d5818d74bf",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x8b6acf6041a81567f012ff6a4c6d96d5818d74bf-1760923255049.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x8b6acf6041a81567f012ff6a4c6d96d5818d74bf-1760923255049.png"
+ ],
+ "name": "Micron Technology (Ondo Tokenized)",
+ "symbol": "MUon",
+ "marketCap": "1148126580100",
+ "price": "1055.805608023373639527",
+ "priceChange24hPercent": "1.28",
+ "volume24h": "35834308520.21",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "美光科技",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x8b6acf6041a81567f012ff6a4c6d96d5818d74bf",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x9f16e46c73b43bdb70861247d537bee4ea18f639",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x9f16e46c73b43bdb70861247d537bee4ea18f639-1760922831860.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x9f16e46c73b43bdb70861247d537bee4ea18f639-1760922831860.png"
+ ],
+ "name": "AMD (Ondo Tokenized)",
+ "symbol": "AMDon",
+ "marketCap": "778725642000",
+ "price": "487.975263",
+ "priceChange24hPercent": "1.18",
+ "volume24h": "9397976816.94",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "超威半导体",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x9f16e46c73b43bdb70861247d537bee4ea18f639",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x0ed2e3180edf393e6bf8db124bd15ddd54de150a",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x0ed2e3180edf393e6bf8db124bd15ddd54de150a-1760922985968.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x0ed2e3180edf393e6bf8db124bd15ddd54de150a-1760922985968.png"
+ ],
+ "name": "Broadcom (Ondo Tokenized)",
+ "symbol": "AVGOon",
+ "marketCap": "1702714094100",
+ "price": "364.792451018770787223",
+ "priceChange24hPercent": "0.24",
+ "volume24h": "11761598227.175",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "博通",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x0ed2e3180edf393e6bf8db124bd15ddd54de150a",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xc37042a7a4fa510d8884a433762ab87257b91965",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xc37042a7a4fa510d8884a433762ab87257b91965-1760923413025.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xc37042a7a4fa510d8884a433762ab87257b91965-1760923413025.png"
+ ],
+ "name": "Taiwan Semiconductor Manufacturing (Ondo Tokenized)",
+ "symbol": "TSMon",
+ "marketCap": "2224533136800",
+ "price": "438.018182406245951052",
+ "priceChange24hPercent": "0.37",
+ "volume24h": "5261764083.780001",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "台积电",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0xc37042a7a4fa510d8884a433762ab87257b91965",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xa528caaa2f96090e379d43f90834c75df54d6e74",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xa528caaa2f96090e379d43f90834c75df54d6e74-1760923148597.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xa528caaa2f96090e379d43f90834c75df54d6e74-1760923148597.png"
+ ],
+ "name": "Intel (Ondo Tokenized)",
+ "symbol": "INTCon",
+ "marketCap": "483215175763",
+ "price": "100.597692",
+ "priceChange24hPercent": "1.6",
+ "volume24h": "9355284335",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "英特尔",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0xa528caaa2f96090e379d43f90834c75df54d6e74",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xc142ba8ccd36d80c3a001342fb83e4c3d218a873",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xc142ba8ccd36d80c3a001342fb83e4c3d218a873-1760923376180.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xc142ba8ccd36d80c3a001342fb83e4c3d218a873-1760923376180.png"
+ ],
+ "name": "Super Micro Computer (Ondo Tokenized)",
+ "symbol": "SMCIon",
+ "marketCap": "25609702070",
+ "price": "40.042662",
+ "priceChange24hPercent": "1.47",
+ "volume24h": "2123337279.4800003",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "超微电脑",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0xc142ba8ccd36d80c3a001342fb83e4c3d218a873",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x5ecc352c4640f1d26bd231dbbd171f40f7d0eec6",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x5ecc352c4640f1d26bd231dbbd171f40f7d0eec6-1767888045927.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x5ecc352c4640f1d26bd231dbbd171f40f7d0eec6-1767888045927.png"
+ ],
+ "name": "Applied Materials (Ondo Tokenized)",
+ "symbol": "AMATon",
+ "marketCap": "361021096890",
+ "price": "468.39278701627463619",
+ "priceChange24hPercent": "2.68",
+ "volume24h": "2735913224.0099998",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "应用材料",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x5ecc352c4640f1d26bd231dbbd171f40f7d0eec6",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xb034f6cb52b7f2fd5a7eeeffca6b9adcd6b9a6f6",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xb034f6cb52b7f2fd5a7eeeffca6b9adcd6b9a6f6-1760922980249.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xb034f6cb52b7f2fd5a7eeeffca6b9adcd6b9a6f6-1760922980249.png"
+ ],
+ "name": "ASML Holding NV (Ondo Tokenized)",
+ "symbol": "ASMLon",
+ "marketCap": "660945604406",
+ "price": "1758.414946497724440837",
+ "priceChange24hPercent": "2.21",
+ "volume24h": "2211546975.36",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "阿斯麦",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0xb034f6cb52b7f2fd5a7eeeffca6b9adcd6b9a6f6",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x1501ec83ffef405b4331cc4f73277a40fb0c627d",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x1501ec83ffef405b4331cc4f73277a40fb0c627d-1760923239312.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x1501ec83ffef405b4331cc4f73277a40fb0c627d-1760923239312.png"
+ ],
+ "name": "Marvell Technology (Ondo Tokenized)",
+ "symbol": "MRVLon",
+ "marketCap": "195777489300",
+ "price": "229.524776103399458333",
+ "priceChange24hPercent": "2.41",
+ "volume24h": "4743302231.1",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "迈威尔科技",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x1501ec83ffef405b4331cc4f73277a40fb0c627d",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x527c6436e1eaa4f2065cde4090f798cb5d031dd6",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x527c6436e1eaa4f2065cde4090f798cb5d031dd6-1760922974777.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x527c6436e1eaa4f2065cde4090f798cb5d031dd6-1760922974777.png"
+ ],
+ "name": "Arm Holdings plc (Ondo Tokenized)",
+ "symbol": "ARMon",
+ "marketCap": "269231759259",
+ "price": "261.0225",
+ "priceChange24hPercent": "2.2",
+ "volume24h": "1041739741.08",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "安谋",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x527c6436e1eaa4f2065cde4090f798cb5d031dd6",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xe8ff70859ce4cbd72e4352b4fb45f5bf39d07464",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xe8ff70859ce4cbd72e4352b4fb45f5bf39d07464-1760923127124.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xe8ff70859ce4cbd72e4352b4fb45f5bf39d07464-1760923127124.png"
+ ],
+ "name": "IBM (Ondo Tokenized Stock)",
+ "symbol": "IBMON",
+ "marketCap": "221297855260",
+ "price": "239.939607742091185163",
+ "priceChange24hPercent": "-0.04",
+ "volume24h": "717698173.8499999",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "国际商业机器",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0xe8ff70859ce4cbd72e4352b4fb45f5bf39d07464",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x4fd67cb8cfedc718bac984b5936abe3330d0a2a4",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x4fd67cb8cfedc718bac984b5936abe3330d0a2a4-1773890603767.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x4fd67cb8cfedc718bac984b5936abe3330d0a2a4-1773890603767.png"
+ ],
+ "name": "SanDisk (Ondo Tokenized)",
+ "symbol": "SNDKON",
+ "marketCap": "257676165000",
+ "price": "1813.141716",
+ "priceChange24hPercent": "1.53",
+ "volume24h": "28809122580",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "闪迪",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x4fd67cb8cfedc718bac984b5936abe3330d0a2a4",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xfbd4d681c92ead6af0e49950c8b2e47eeacbb2db",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xfbd4d681c92ead6af0e49950c8b2e47eeacbb2db-1760923334398.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xfbd4d681c92ead6af0e49950c8b2e47eeacbb2db-1760923334398.png"
+ ],
+ "name": "Qualcomm (Ondo Tokenized Stock)",
+ "symbol": "QCOMON",
+ "marketCap": "177177000000",
+ "price": "174.693612375015163222",
+ "priceChange24hPercent": "1.84",
+ "volume24h": "1440555484.94",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "高通",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0xfbd4d681c92ead6af0e49950c8b2e47eeacbb2db",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ }
+ ],
+ "stocks||4h|market__tab__etfs": [
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x6a708ead771238919d85930b5a0f10454e1c331a",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x6a708ead771238919d85930b5a0f10454e1c331a-1760921581963.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x6a708ead771238919d85930b5a0f10454e1c331a-1760921581963.png"
+ ],
+ "name": "SPDR S&P 500 ETF (Ondo Tokenized)",
+ "symbol": "SPYon",
+ "marketCap": "820435829283",
+ "price": "776.141056177460214449",
+ "priceChange24hPercent": "0.01",
+ "volume24h": "25385765084.670002",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "标普500 ETF",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x6a708ead771238919d85930b5a0f10454e1c331a",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x0cde6936d305d5b34667fc46425e852efd73559a",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x0cde6936d305d5b34667fc46425e852efd73559a-1760923339182.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x0cde6936d305d5b34667fc46425e852efd73559a-1760923339182.png"
+ ],
+ "name": "Invesco QQQ (Ondo Tokenized)",
+ "symbol": "QQQon",
+ "marketCap": "512284401576",
+ "price": "725.686548519952709569",
+ "priceChange24hPercent": "0.32",
+ "volume24h": "23632988800.960003",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "纳指ETF",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x0cde6936d305d5b34667fc46425e852efd73559a",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xe42cfb20e00912409b77a602b5bdcff3c7acc5f4",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xe42cfb20e00912409b77a602b5bdcff3c7acc5f4-1768032381719.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xe42cfb20e00912409b77a602b5bdcff3c7acc5f4-1768032381719.png"
+ ],
+ "name": "ProShares UltraPro QQQ (Ondo Tokenized)",
+ "symbol": "TQQQon",
+ "marketCap": "44436706139",
+ "price": "73.845438057857333962",
+ "priceChange24hPercent": "1.87",
+ "volume24h": "3426881608.8",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "三倍做多纳指ETF",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0xe42cfb20e00912409b77a602b5bdcff3c7acc5f4",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xf69e40069ac227c11459e3f4e8a446b3401616b6",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xf69e40069ac227c11459e3f4e8a446b3401616b6-1760923398719.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xf69e40069ac227c11459e3f4e8a446b3401616b6-1760923398719.png"
+ ],
+ "name": "iShares 20+ Year Treasury Bond ETF (Ondo Tokenized)",
+ "symbol": "TLTon",
+ "marketCap": "41558996997",
+ "price": "85.978427962124070646",
+ "priceChange24hPercent": "0.16",
+ "volume24h": "1364023798.4499998",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "20年国债ETF",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0xf69e40069ac227c11459e3f4e8a446b3401616b6",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x22092c94a91d019ad15536725598b0a6be0a73c0",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x22092c94a91d019ad15536725598b0a6be0a73c0-1760923137786.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x22092c94a91d019ad15536725598b0a6be0a73c0-1760923137786.png"
+ ],
+ "name": "iShares Core MSCI Emerging Markets ETF (Ondo Tokenized)",
+ "symbol": "IEMGon",
+ "marketCap": "171167801924",
+ "price": "85.994643507231392039",
+ "priceChange24hPercent": "0.89",
+ "volume24h": "577001471.9000001",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "核心新兴市场ETF",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x22092c94a91d019ad15536725598b0a6be0a73c0",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xcf9caf83053213c44dd7027db3e1e4ac98e55f8f",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xcf9caf83053213c44dd7027db3e1e4ac98e55f8f-1760976491888.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xcf9caf83053213c44dd7027db3e1e4ac98e55f8f-1760976491888.png"
+ ],
+ "name": "iShares Core S&P Total US Stock Market ETF (Ondo Tokenized ETF)",
+ "symbol": "ITOTON",
+ "marketCap": "95625104840",
+ "price": "169.804819587832307416",
+ "priceChange24hPercent": "--",
+ "volume24h": "169106458.23999998",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "美股全市场ETF",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0xcf9caf83053213c44dd7027db3e1e4ac98e55f8f",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x00c81d35eddf44c75d4db9e07bdcdc236eb0ebcf",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x00c81d35eddf44c75d4db9e07bdcdc236eb0ebcf-1760923060271.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x00c81d35eddf44c75d4db9e07bdcdc236eb0ebcf-1760923060271.png"
+ ],
+ "name": "iShares MSCI Emerging Markets ETF (Ondo Tokenized ETF)",
+ "symbol": "EEMON",
+ "marketCap": "32146260773",
+ "price": "70.550489448583953469",
+ "priceChange24hPercent": "1.26",
+ "volume24h": "1506651730.8",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "新兴市场ETF",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x00c81d35eddf44c75d4db9e07bdcdc236eb0ebcf",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x500eafc69b68acd6f27064f9b75f1c7d91cc4d9f",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x500eafc69b68acd6f27064f9b75f1c7d91cc4d9f-1760923169588.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x500eafc69b68acd6f27064f9b75f1c7d91cc4d9f-1760923169588.png"
+ ],
+ "name": "iShares Russell 2000 ETF (Ondo Tokenized ETF)",
+ "symbol": "IWMON",
+ "marketCap": "81417408119",
+ "price": "297.748095366553568352",
+ "priceChange24hPercent": "0.02",
+ "volume24h": "4113713428.1099997",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "罗素2000 ETF",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x500eafc69b68acd6f27064f9b75f1c7d91cc4d9f",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x12b7adc48416a103f63e7e6210f62c81dfb91fd0",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x12b7adc48416a103f63e7e6210f62c81dfb91fd0-1773890376568.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x12b7adc48416a103f63e7e6210f62c81dfb91fd0-1773890376568.png"
+ ],
+ "name": "iShares MSCI South Korea ETF (Ondo Tokenized)",
+ "symbol": "EWYON",
+ "marketCap": "14278571056",
+ "price": "194.898272",
+ "priceChange24hPercent": "3.95",
+ "volume24h": "3455448231.73",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "iShares MSCI韩国ETF",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x12b7adc48416a103f63e7e6210f62c81dfb91fd0",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xc008c5f579ec1450f20099c39f587547e27c7523",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xc008c5f579ec1450f20099c39f587547e27c7523-1768185634202.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xc008c5f579ec1450f20099c39f587547e27c7523-1768185634202.png"
+ ],
+ "name": "iShares 0-3 Month Treasury Bond ETF (Ondo Tokenized ETF)",
+ "symbol": "SGOVON",
+ "marketCap": "95942590920",
+ "price": "102.324784764508258885",
+ "priceChange24hPercent": "--",
+ "volume24h": "2053722039.09",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "iShares 0-3个月国债ETF",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0xc008c5f579ec1450f20099c39f587547e27c7523",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ }
+ ],
+ "stocks||4h|market__tab__crypto": [
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x992879cd8ce0c312d98648875b5a8d6d042cbf34",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x992879cd8ce0c312d98648875b5a8d6d042cbf34-1760923032790.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x992879cd8ce0c312d98648875b5a8d6d042cbf34-1760923032790.png"
+ ],
+ "name": "Circle Internet Group (Ondo Tokenized)",
+ "symbol": "CRCLon",
+ "marketCap": "27277014302",
+ "price": "101.983108",
+ "priceChange24hPercent": "-1.98",
+ "volume24h": "1440248998.5",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "Circle Internet Group",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x992879cd8ce0c312d98648875b5a8d6d042cbf34",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x7313ea16493b2f55054df0131a3a14b043ec8992",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x7313ea16493b2f55054df0131a3a14b043ec8992-1760923249909.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x7313ea16493b2f55054df0131a3a14b043ec8992-1760923249909.png"
+ ],
+ "name": "MicroStrategy (Ondo Tokenized)",
+ "symbol": "MSTRon",
+ "marketCap": "47239382400",
+ "price": "141.505263",
+ "priceChange24hPercent": "-1.98",
+ "volume24h": "3878826420.0000005",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "微策略",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x7313ea16493b2f55054df0131a3a14b043ec8992",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x19601179a60f55ff6636f5d1a8b6671053bd60a8",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x19601179a60f55ff6636f5d1a8b6671053bd60a8-1760923113456.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x19601179a60f55ff6636f5d1a8b6671053bd60a8-1760923113456.png"
+ ],
+ "name": "Robinhood Markets (Ondo Tokenized)",
+ "symbol": "HOODon",
+ "marketCap": "109786941485",
+ "price": "123.076667",
+ "priceChange24hPercent": "0.85",
+ "volume24h": "2897993280.95",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "罗宾汉",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x19601179a60f55ff6636f5d1a8b6671053bd60a8",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xf8589b526fdd65f7f301c605a6e04f0f1b4b3620",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xf8589b526fdd65f7f301c605a6e04f0f1b4b3620-1761749966569.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xf8589b526fdd65f7f301c605a6e04f0f1b4b3620-1761749966569.png"
+ ],
+ "name": "Coinbase (Ondo Tokenized)",
+ "symbol": "COINon",
+ "marketCap": "48714333394",
+ "price": "183.831667",
+ "priceChange24hPercent": "-1.12",
+ "volume24h": "1509934590.08",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "Coinbase",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0xf8589b526fdd65f7f301c605a6e04f0f1b4b3620",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x9351abd19f42101dd36025e495b98e910b255d78",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x9351abd19f42101dd36025e495b98e910b255d78-1760923318304.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x9351abd19f42101dd36025e495b98e910b255d78-1760923318304.png"
+ ],
+ "name": "Palantir Technologies (Ondo Tokenized)",
+ "symbol": "PLTRon",
+ "marketCap": "400273883100",
+ "price": "174.182857",
+ "priceChange24hPercent": "-0.31",
+ "volume24h": "4874798157.84",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "帕兰提尔",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x9351abd19f42101dd36025e495b98e910b255d78",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x52ad57a7ea642e99a892afc79e937b383f1b59e9",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x52ad57a7ea642e99a892afc79e937b383f1b59e9-1768032941245.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x52ad57a7ea642e99a892afc79e937b383f1b59e9-1768032941245.png"
+ ],
+ "name": "BitMine Immersion Technologies (Ondo Tokenized)",
+ "symbol": "BMNRon",
+ "marketCap": "14222332846",
+ "price": "25.220087",
+ "priceChange24hPercent": "0.99",
+ "volume24h": "1155029873.9099998",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "BitMine",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x52ad57a7ea642e99a892afc79e937b383f1b59e9",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x8fd70ee385f470c8d6fda2d93a4e49c849bac6a6",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x8fd70ee385f470c8d6fda2d93a4e49c849bac6a6-1767883597793.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x8fd70ee385f470c8d6fda2d93a4e49c849bac6a6-1767883597793.png"
+ ],
+ "name": "IREN (Ondo Tokenized)",
+ "symbol": "IRENon",
+ "marketCap": "15944391045",
+ "price": "45.389089",
+ "priceChange24hPercent": "2.29",
+ "volume24h": "1620373503.24",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "IREN",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x8fd70ee385f470c8d6fda2d93a4e49c849bac6a6",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xc4a88a72b848255fd24da3c1ad6755d980535fb1",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xc4a88a72b848255fd24da3c1ad6755d980535fb1-1760923349554.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xc4a88a72b848255fd24da3c1ad6755d980535fb1-1760923349554.png"
+ ],
+ "name": "Riot Platforms (Ondo Tokenized)",
+ "symbol": "RIOTon",
+ "marketCap": "8243696814",
+ "price": "21.664",
+ "priceChange24hPercent": "-0.09",
+ "volume24h": "335036003.2",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "Riot平台",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0xc4a88a72b848255fd24da3c1ad6755d980535fb1",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ }
+ ],
+ "stocks||4h|market__tab__healthcare": [
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x3385cb29cca0ac66f5d2354d13ef977b49a2510f",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x3385cb29cca0ac66f5d2354d13ef977b49a2510f-1760923604445.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x3385cb29cca0ac66f5d2354d13ef977b49a2510f-1760923604445.png"
+ ],
+ "name": "UnitedHealth (Ondo Tokenized)",
+ "symbol": "UNHon",
+ "marketCap": "360660468605",
+ "price": "402.98451011334612462",
+ "priceChange24hPercent": "-0.26",
+ "volume24h": "1916737036.1399999",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "联合健康",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x3385cb29cca0ac66f5d2354d13ef977b49a2510f",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x341d31b2be1fee9c00e395a62ba41837f4322eed",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x341d31b2be1fee9c00e395a62ba41837f4322eed-1760923201079.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x341d31b2be1fee9c00e395a62ba41837f4322eed-1760923201079.png"
+ ],
+ "name": "Eli Lilly (Ondo Tokenized)",
+ "symbol": "LLYon",
+ "marketCap": "1081307016200",
+ "price": "1149.397318656767340512",
+ "priceChange24hPercent": "-0.16",
+ "volume24h": "2468999720.4",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "礼来",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x341d31b2be1fee9c00e395a62ba41837f4322eed",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x5a20886b575058dd7299785f0ea9b1172942a3e0",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x5a20886b575058dd7299785f0ea9b1172942a3e0-1760922274158.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x5a20886b575058dd7299785f0ea9b1172942a3e0-1760922274158.png"
+ ],
+ "name": "Abbott (Ondo Tokenized)",
+ "symbol": "ABTon",
+ "marketCap": "187435126855",
+ "price": "109.426019691944889332",
+ "priceChange24hPercent": "-1.04",
+ "volume24h": "744744194.56",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "雅培",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x5a20886b575058dd7299785f0ea9b1172942a3e0",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x4693f6f5ef257381a28afd0673e64d8b32d5c6ad",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x4693f6f5ef257381a28afd0673e64d8b32d5c6ad-1760923111457.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x4693f6f5ef257381a28afd0673e64d8b32d5c6ad-1760923111457.png"
+ ],
+ "name": "Hims & Hers Health (Ondo Tokenized)",
+ "symbol": "HIMSon",
+ "marketCap": "6181546800",
+ "price": "27.746",
+ "priceChange24hPercent": "-0.21",
+ "volume24h": "182854493.73000002",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "Hims & Hers",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x4693f6f5ef257381a28afd0673e64d8b32d5c6ad",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x8a83c31d6751833b4940b6e871c48d9a15a07b46",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x8a83c31d6751833b4940b6e871c48d9a15a07b46-1760923307953.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x8a83c31d6751833b4940b6e871c48d9a15a07b46-1760923307953.png"
+ ],
+ "name": "Pfizer (Ondo Tokenized Stock)",
+ "symbol": "PFEON",
+ "marketCap": "162149068000",
+ "price": "30.045669965608379961",
+ "priceChange24hPercent": "-0.39",
+ "volume24h": "669415327.65",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "辉瑞",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x8a83c31d6751833b4940b6e871c48d9a15a07b46",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ }
+ ],
+ "stocks||4h|market__tab__energy": [
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xd3113a0ad20a46f6a662c63fe8e637f7713e59c7",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xd3113a0ad20a46f6a662c63fe8e637f7713e59c7-1760923043289.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xd3113a0ad20a46f6a662c63fe8e637f7713e59c7-1760923043289.png"
+ ],
+ "name": "Chevron (Ondo Tokenized)",
+ "symbol": "CVXon",
+ "marketCap": "415308348000",
+ "price": "214.127850846968341467",
+ "priceChange24hPercent": "-0.1",
+ "volume24h": "1122138299.52",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "雪佛龙",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0xd3113a0ad20a46f6a662c63fe8e637f7713e59c7",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x4d209d275e3492ac08497a7a42915899c4dd5e86",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x4d209d275e3492ac08497a7a42915899c4dd5e86-1768378192726.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x4d209d275e3492ac08497a7a42915899c4dd5e86-1768378192726.png"
+ ],
+ "name": "Exxon Mobil (Ondo Tokenized)",
+ "symbol": "XOMon",
+ "marketCap": "660875591600",
+ "price": "161.929674995637777397",
+ "priceChange24hPercent": "0.06",
+ "volume24h": "2537206808.78",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "埃克森美孚",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x4d209d275e3492ac08497a7a42915899c4dd5e86",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x01b5a4ac600be98448dbefbb78bcdf38262552cc",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x01b5a4ac600be98448dbefbb78bcdf38262552cc-1768118550219.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x01b5a4ac600be98448dbefbb78bcdf38262552cc-1768118550219.png"
+ ],
+ "name": "Occidental Petroleum (Ondo Tokenized)",
+ "symbol": "OXYON",
+ "marketCap": "59717867448",
+ "price": "60.427368985063029401",
+ "priceChange24hPercent": "--",
+ "volume24h": "400488654.56",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "西方石油",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x01b5a4ac600be98448dbefbb78bcdf38262552cc",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x2b1d5cdecc356530a746c5754231efaeaca64022",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x2b1d5cdecc356530a746c5754231efaeaca64022-1760923297458.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x2b1d5cdecc356530a746c5754231efaeaca64022-1760923297458.png"
+ ],
+ "name": "Petrobras (Ondo Tokenized Stock)",
+ "symbol": "PBRON",
+ "marketCap": "129660646415",
+ "price": "20.856197511015279798",
+ "priceChange24hPercent": "-0.22",
+ "volume24h": "377829496.24",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "巴西石油",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x2b1d5cdecc356530a746c5754231efaeaca64022",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ }
+ ],
+ "stocks||4h|market__tab__china_tech": [
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xd5964f3fcee8d649995ab88f04b8982539c282d2",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xd5964f3fcee8d649995ab88f04b8982539c282d2-1760922996465.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xd5964f3fcee8d649995ab88f04b8982539c282d2-1760922996465.png"
+ ],
+ "name": "Alibaba (Ondo Tokenized)",
+ "symbol": "BABAon",
+ "marketCap": "271421798529",
+ "price": "112.499497934947570659",
+ "priceChange24hPercent": "-1.46",
+ "volume24h": "810668853.4399999",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "阿里巴巴",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0xd5964f3fcee8d649995ab88f04b8982539c282d2",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xf3e82ea164cb344b2b11bad4c24b0ea4f7ba4714",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xf3e82ea164cb344b2b11bad4c24b0ea4f7ba4714-1767945976873.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xf3e82ea164cb344b2b11bad4c24b0ea4f7ba4714-1767945976873.png"
+ ],
+ "name": "PDD Holdings (Ondo Tokenized)",
+ "symbol": "PDDon",
+ "marketCap": "117017422072",
+ "price": "81.560326",
+ "priceChange24hPercent": "-0.94",
+ "volume24h": "382935002.09999996",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "拼多多",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0xf3e82ea164cb344b2b11bad4c24b0ea4f7ba4714",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x467e59ce5d5fe01686d4a80dd1e1dae13549aa6c",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x467e59ce5d5fe01686d4a80dd1e1dae13549aa6c-1760515402441.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x467e59ce5d5fe01686d4a80dd1e1dae13549aa6c-1760515402441.png"
+ ],
+ "name": "Baidu (Ondo Tokenized)",
+ "symbol": "BIDUon",
+ "marketCap": "33832211369",
+ "price": "92.292027",
+ "priceChange24hPercent": "-7.17",
+ "volume24h": "256503090.06",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "百度",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x467e59ce5d5fe01686d4a80dd1e1dae13549aa6c",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ }
+ ],
+ "stocks||4h|market__tab__commodities": [
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x8b872732b07be325a8803cdb480d9d20b6f8d11b",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x8b872732b07be325a8803cdb480d9d20b6f8d11b-1760923370870.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x8b872732b07be325a8803cdb480d9d20b6f8d11b-1760923370870.png"
+ ],
+ "name": "iShares Silver Trust (Ondo Tokenized)",
+ "symbol": "SLVon",
+ "marketCap": "32192820451",
+ "price": "60.613516",
+ "priceChange24hPercent": "3.36",
+ "volume24h": "751852335.96",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "白银ETF",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x8b872732b07be325a8803cdb480d9d20b6f8d11b",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xcb2a0f46f67dc4c58a316f1c008edef5c2311795",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xcb2a0f46f67dc4c58a316f1c008edef5c2311795-1760923121884.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xcb2a0f46f67dc4c58a316f1c008edef5c2311795-1760923121884.png"
+ ],
+ "name": "iShares Gold Trust (Ondo Tokenized)",
+ "symbol": "IAUon",
+ "marketCap": "65795429989",
+ "price": "83.510002",
+ "priceChange24hPercent": "0.23",
+ "volume24h": "415966081.39",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "iShares黄金ETF",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0xcb2a0f46f67dc4c58a316f1c008edef5c2311795",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x3fcd741646a9790635b938cdb69af5df356cbaab",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x3fcd741646a9790635b938cdb69af5df356cbaab-1768118974994.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x3fcd741646a9790635b938cdb69af5df356cbaab-1768118974994.png"
+ ],
+ "name": "abrdn Physical Palladium Shares ETF (Ondo Tokenized)",
+ "symbol": "PALLon",
+ "marketCap": "662462421",
+ "price": "127.025",
+ "priceChange24hPercent": "1.16",
+ "volume24h": "18618111.93",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "钯金ETF",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x3fcd741646a9790635b938cdb69af5df356cbaab",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ }
+ ],
+ "stocks||4h|market__tab__aerospace": [
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xd09f7b75b9659b864c6f82bb00ff096f9d277998",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xd09f7b75b9659b864c6f82bb00ff096f9d277998-1760923206785.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xd09f7b75b9659b864c6f82bb00ff096f9d277998-1760923206785.png"
+ ],
+ "name": "Lockheed (Ondo Tokenized)",
+ "symbol": "LMTon",
+ "marketCap": "121229896480",
+ "price": "537.114604097175250464",
+ "priceChange24hPercent": "-0.19",
+ "volume24h": "495034902.88",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "洛克希德马丁",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0xd09f7b75b9659b864c6f82bb00ff096f9d277998",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ }
+ ],
+ "stocks||24h|all": [
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x390a684ef9cade28a7ad0dfa61ab1eb3842618c4",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x390a684ef9cade28a7ad0dfa61ab1eb3842618c4-1760515427269.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x390a684ef9cade28a7ad0dfa61ab1eb3842618c4-1760515427269.png"
+ ],
+ "name": "Apple (Ondo Tokenized)",
+ "symbol": "AAPLon",
+ "marketCap": "4699513299320",
+ "price": "320.298481855554072365",
+ "priceChange24hPercent": "-0.5",
+ "volume24h": "12673014673.480001",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "苹果",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x390a684ef9cade28a7ad0dfa61ab1eb3842618c4",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x8b872732b07be325a8803cdb480d9d20b6f8d11b",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x8b872732b07be325a8803cdb480d9d20b6f8d11b-1760923370870.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x8b872732b07be325a8803cdb480d9d20b6f8d11b-1760923370870.png"
+ ],
+ "name": "iShares Silver Trust (Ondo Tokenized)",
+ "symbol": "SLVon",
+ "marketCap": "32192820451",
+ "price": "60.613516",
+ "priceChange24hPercent": "3.36",
+ "volume24h": "751852335.96",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "白银ETF",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x8b872732b07be325a8803cdb480d9d20b6f8d11b",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x992879cd8ce0c312d98648875b5a8d6d042cbf34",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x992879cd8ce0c312d98648875b5a8d6d042cbf34-1760923032790.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x992879cd8ce0c312d98648875b5a8d6d042cbf34-1760923032790.png"
+ ],
+ "name": "Circle Internet Group (Ondo Tokenized)",
+ "symbol": "CRCLon",
+ "marketCap": "27277014302",
+ "price": "101.983108",
+ "priceChange24hPercent": "-1.98",
+ "volume24h": "1440248998.5",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "Circle Internet Group",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x992879cd8ce0c312d98648875b5a8d6d042cbf34",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xa9ee28c80f960b889dfbd1902055218cba016f75",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xa9ee28c80f960b889dfbd1902055218cba016f75-1760923276163.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xa9ee28c80f960b889dfbd1902055218cba016f75-1760923276163.png"
+ ],
+ "name": "NVIDIA (Ondo Tokenized)",
+ "symbol": "NVDAon",
+ "marketCap": "5579549560000",
+ "price": "233.18030531293853192",
+ "priceChange24hPercent": "0.56",
+ "volume24h": "31179783471.2",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "英伟达",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0xa9ee28c80f960b889dfbd1902055218cba016f75",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x8b6acf6041a81567f012ff6a4c6d96d5818d74bf",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x8b6acf6041a81567f012ff6a4c6d96d5818d74bf-1760923255049.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x8b6acf6041a81567f012ff6a4c6d96d5818d74bf-1760923255049.png"
+ ],
+ "name": "Micron Technology (Ondo Tokenized)",
+ "symbol": "MUon",
+ "marketCap": "1148126580100",
+ "price": "1055.805608023373639527",
+ "priceChange24hPercent": "1.28",
+ "volume24h": "35834308520.21",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "美光科技",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x8b6acf6041a81567f012ff6a4c6d96d5818d74bf",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x7313ea16493b2f55054df0131a3a14b043ec8992",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x7313ea16493b2f55054df0131a3a14b043ec8992-1760923249909.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x7313ea16493b2f55054df0131a3a14b043ec8992-1760923249909.png"
+ ],
+ "name": "MicroStrategy (Ondo Tokenized)",
+ "symbol": "MSTRon",
+ "marketCap": "47239382400",
+ "price": "141.505263",
+ "priceChange24hPercent": "-1.98",
+ "volume24h": "3878826420.0000005",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "微策略",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x7313ea16493b2f55054df0131a3a14b043ec8992",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x4553cfe1c09f37f38b12dc509f676964e392f8fc",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x4553cfe1c09f37f38b12dc509f676964e392f8fc-1760686410256.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x4553cfe1c09f37f38b12dc509f676964e392f8fc-1760686410256.png"
+ ],
+ "name": "Amazon (Ondo Tokenized)",
+ "symbol": "AMZNon",
+ "marketCap": "2780817921000",
+ "price": "258.279748",
+ "priceChange24hPercent": "-0.11",
+ "volume24h": "7949159751.12",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "亚马逊",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x4553cfe1c09f37f38b12dc509f676964e392f8fc",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x6a708ead771238919d85930b5a0f10454e1c331a",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x6a708ead771238919d85930b5a0f10454e1c331a-1760921581963.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x6a708ead771238919d85930b5a0f10454e1c331a-1760921581963.png"
+ ],
+ "name": "SPDR S&P 500 ETF (Ondo Tokenized)",
+ "symbol": "SPYon",
+ "marketCap": "820435829283",
+ "price": "776.141056177460214449",
+ "priceChange24hPercent": "0.01",
+ "volume24h": "25385765084.670002",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "标普500 ETF",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x6a708ead771238919d85930b5a0f10454e1c331a",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x0cde6936d305d5b34667fc46425e852efd73559a",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x0cde6936d305d5b34667fc46425e852efd73559a-1760923339182.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x0cde6936d305d5b34667fc46425e852efd73559a-1760923339182.png"
+ ],
+ "name": "Invesco QQQ (Ondo Tokenized)",
+ "symbol": "QQQon",
+ "marketCap": "512284401576",
+ "price": "725.686548519952709569",
+ "priceChange24hPercent": "0.32",
+ "volume24h": "23632988800.960003",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "纳指ETF",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x0cde6936d305d5b34667fc46425e852efd73559a",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xd5964f3fcee8d649995ab88f04b8982539c282d2",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xd5964f3fcee8d649995ab88f04b8982539c282d2-1760922996465.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xd5964f3fcee8d649995ab88f04b8982539c282d2-1760922996465.png"
+ ],
+ "name": "Alibaba (Ondo Tokenized)",
+ "symbol": "BABAon",
+ "marketCap": "271421798529",
+ "price": "112.499497934947570659",
+ "priceChange24hPercent": "-1.46",
+ "volume24h": "810668853.4399999",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "阿里巴巴",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0xd5964f3fcee8d649995ab88f04b8982539c282d2",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x19601179a60f55ff6636f5d1a8b6671053bd60a8",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x19601179a60f55ff6636f5d1a8b6671053bd60a8-1760923113456.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x19601179a60f55ff6636f5d1a8b6671053bd60a8-1760923113456.png"
+ ],
+ "name": "Robinhood Markets (Ondo Tokenized)",
+ "symbol": "HOODon",
+ "marketCap": "109786941485",
+ "price": "123.076667",
+ "priceChange24hPercent": "0.85",
+ "volume24h": "2897993280.95",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "罗宾汉",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x19601179a60f55ff6636f5d1a8b6671053bd60a8",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x091fc7778e6932d4009b087b191d1ee3bac5729a",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x091fc7778e6932d4009b087b191d1ee3bac5729a-1760923100804.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x091fc7778e6932d4009b087b191d1ee3bac5729a-1760923100804.png"
+ ],
+ "name": "Alphabet Class A (Ondo Tokenized)",
+ "symbol": "GOOGLon",
+ "marketCap": "4096080585860",
+ "price": "338.962258099649311085",
+ "priceChange24hPercent": "-0.2",
+ "volume24h": "7848657585.66",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "谷歌",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x091fc7778e6932d4009b087b191d1ee3bac5729a",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xf8589b526fdd65f7f301c605a6e04f0f1b4b3620",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xf8589b526fdd65f7f301c605a6e04f0f1b4b3620-1761749966569.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xf8589b526fdd65f7f301c605a6e04f0f1b4b3620-1761749966569.png"
+ ],
+ "name": "Coinbase (Ondo Tokenized)",
+ "symbol": "COINon",
+ "marketCap": "48714333394",
+ "price": "183.831667",
+ "priceChange24hPercent": "-1.12",
+ "volume24h": "1509934590.08",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "Coinbase",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0xf8589b526fdd65f7f301c605a6e04f0f1b4b3620",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xe42cfb20e00912409b77a602b5bdcff3c7acc5f4",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xe42cfb20e00912409b77a602b5bdcff3c7acc5f4-1768032381719.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xe42cfb20e00912409b77a602b5bdcff3c7acc5f4-1768032381719.png"
+ ],
+ "name": "ProShares UltraPro QQQ (Ondo Tokenized)",
+ "symbol": "TQQQon",
+ "marketCap": "44436706139",
+ "price": "73.845438057857333962",
+ "priceChange24hPercent": "1.87",
+ "volume24h": "3426881608.8",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "三倍做多纳指ETF",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0xe42cfb20e00912409b77a602b5bdcff3c7acc5f4",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xcb2a0f46f67dc4c58a316f1c008edef5c2311795",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xcb2a0f46f67dc4c58a316f1c008edef5c2311795-1760923121884.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xcb2a0f46f67dc4c58a316f1c008edef5c2311795-1760923121884.png"
+ ],
+ "name": "iShares Gold Trust (Ondo Tokenized)",
+ "symbol": "IAUon",
+ "marketCap": "65795429989",
+ "price": "83.510002",
+ "priceChange24hPercent": "0.23",
+ "volume24h": "415966081.39",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "iShares黄金ETF",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0xcb2a0f46f67dc4c58a316f1c008edef5c2311795",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x9351abd19f42101dd36025e495b98e910b255d78",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x9351abd19f42101dd36025e495b98e910b255d78-1760923318304.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x9351abd19f42101dd36025e495b98e910b255d78-1760923318304.png"
+ ],
+ "name": "Palantir Technologies (Ondo Tokenized)",
+ "symbol": "PLTRon",
+ "marketCap": "400273883100",
+ "price": "174.182857",
+ "priceChange24hPercent": "-0.31",
+ "volume24h": "4874798157.84",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "帕兰提尔",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x9351abd19f42101dd36025e495b98e910b255d78",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xec93fe7ff4b09ca3ccafbc4cc9615e62be412780",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xec93fe7ff4b09ca3ccafbc4cc9615e62be412780-1768378372330.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xec93fe7ff4b09ca3ccafbc4cc9615e62be412780-1768378372330.png"
+ ],
+ "name": "Global X Copper Miners ETF (Ondo Tokenized)",
+ "symbol": "COPXon",
+ "marketCap": "8398061634",
+ "price": "90.741202370238771614",
+ "priceChange24hPercent": "--",
+ "volume24h": "120614154.66",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "铜矿ETF",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0xec93fe7ff4b09ca3ccafbc4cc9615e62be412780",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x9f16e46c73b43bdb70861247d537bee4ea18f639",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x9f16e46c73b43bdb70861247d537bee4ea18f639-1760922831860.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x9f16e46c73b43bdb70861247d537bee4ea18f639-1760922831860.png"
+ ],
+ "name": "AMD (Ondo Tokenized)",
+ "symbol": "AMDon",
+ "marketCap": "778725642000",
+ "price": "487.975263",
+ "priceChange24hPercent": "1.18",
+ "volume24h": "9397976816.94",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "超威半导体",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x9f16e46c73b43bdb70861247d537bee4ea18f639",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x6bfe75d1ad432050ea973c3a3dcd88f02e2444c3",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x6bfe75d1ad432050ea973c3a3dcd88f02e2444c3-1760923244592.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x6bfe75d1ad432050ea973c3a3dcd88f02e2444c3-1760923244592.png"
+ ],
+ "name": "Microsoft (Ondo Tokenized)",
+ "symbol": "MSFTon",
+ "marketCap": "3710547335000",
+ "price": "499.708647472892879635",
+ "priceChange24hPercent": "-0.72",
+ "volume24h": "9045448472.6",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "微软",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x6bfe75d1ad432050ea973c3a3dcd88f02e2444c3",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x7048f5227b032326cc8dbc53cf3fddd947a2c757",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x7048f5227b032326cc8dbc53cf3fddd947a2c757-1760923261006.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x7048f5227b032326cc8dbc53cf3fddd947a2c757-1760923261006.png"
+ ],
+ "name": "Netflix (Ondo Tokenized)",
+ "symbol": "NFLXon",
+ "marketCap": "325828304922",
+ "price": "778.72424",
+ "priceChange24hPercent": "-0.54",
+ "volume24h": "3144868282.5",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "奈飞",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x7048f5227b032326cc8dbc53cf3fddd947a2c757",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xc145dc2ebdbe8ead1fecdebf46c76eb1fdd0104d",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xc145dc2ebdbe8ead1fecdebf46c76eb1fdd0104d-1768184402429.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xc145dc2ebdbe8ead1fecdebf46c76eb1fdd0104d-1768184402429.png"
+ ],
+ "name": "Carvana (Ondo Tokenized)",
+ "symbol": "CVNAon",
+ "price": "-",
+ "priceChange24hPercent": "-",
+ "communityRecognized": false,
+ "key": "evm--56:0xc145dc2ebdbe8ead1fecdebf46c76eb1fdd0104d",
+ "kind": "token",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x3385cb29cca0ac66f5d2354d13ef977b49a2510f",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x3385cb29cca0ac66f5d2354d13ef977b49a2510f-1760923604445.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x3385cb29cca0ac66f5d2354d13ef977b49a2510f-1760923604445.png"
+ ],
+ "name": "UnitedHealth (Ondo Tokenized)",
+ "symbol": "UNHon",
+ "marketCap": "360660468605",
+ "price": "402.98451011334612462",
+ "priceChange24hPercent": "-0.26",
+ "volume24h": "1916737036.1399999",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "联合健康",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x3385cb29cca0ac66f5d2354d13ef977b49a2510f",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x03e4bd1ea53f1da84513da0319d1f03dd1bbcf93",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x03e4bd1ea53f1da84513da0319d1f03dd1bbcf93-1760923286694.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x03e4bd1ea53f1da84513da0319d1f03dd1bbcf93-1760923286694.png"
+ ],
+ "name": "Oracle (Ondo Tokenized)",
+ "symbol": "ORCLon",
+ "marketCap": "457505050100",
+ "price": "166.481535598340633943",
+ "priceChange24hPercent": "2.21",
+ "volume24h": "4138044844.8500004",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "甲骨文",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x03e4bd1ea53f1da84513da0319d1f03dd1bbcf93",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x2494b603319d4d9f9715c9f4496d9e0364b59d93",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x2494b603319d4d9f9715c9f4496d9e0364b59d93-1760680411667.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x2494b603319d4d9f9715c9f4496d9e0364b59d93-1760680411667.png"
+ ],
+ "name": "Tesla (Ondo Tokenized)",
+ "symbol": "TSLAon",
+ "marketCap": "1398455741268",
+ "price": "356.443455",
+ "priceChange24hPercent": "0.17",
+ "volume24h": "23021647442.719997",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "特斯拉",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x2494b603319d4d9f9715c9f4496d9e0364b59d93",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x0ed2e3180edf393e6bf8db124bd15ddd54de150a",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x0ed2e3180edf393e6bf8db124bd15ddd54de150a-1760922985968.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x0ed2e3180edf393e6bf8db124bd15ddd54de150a-1760922985968.png"
+ ],
+ "name": "Broadcom (Ondo Tokenized)",
+ "symbol": "AVGOon",
+ "marketCap": "1702714094100",
+ "price": "364.792451018770787223",
+ "priceChange24hPercent": "0.24",
+ "volume24h": "11761598227.175",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "博通",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x0ed2e3180edf393e6bf8db124bd15ddd54de150a",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x25ffda07f585c39848db6573e533d7585679c52d",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x25ffda07f585c39848db6573e533d7585679c52d-1760923217550.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x25ffda07f585c39848db6573e533d7585679c52d-1760923217550.png"
+ ],
+ "name": "Mastercard (Ondo Tokenized)",
+ "symbol": "MAon",
+ "marketCap": "507988021560",
+ "price": "577.919566836818062189",
+ "priceChange24hPercent": "-0.72",
+ "volume24h": "1015977201.5400001",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "万事达",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x25ffda07f585c39848db6573e533d7585679c52d",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x34304f2f7cc487eb4186e6d69f5905a613474aa2",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x34304f2f7cc487eb4186e6d69f5905a613474aa2-1761709115472.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x34304f2f7cc487eb4186e6d69f5905a613474aa2-1761709115472.png"
+ ],
+ "name": "Cisco Systems (Ondo Tokenized)",
+ "symbol": "CSCOon",
+ "marketCap": "430404665418",
+ "price": "110.75473913211509356",
+ "priceChange24hPercent": "0.07",
+ "volume24h": "1351570474.8",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "思科",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x34304f2f7cc487eb4186e6d69f5905a613474aa2",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x5fa699c0c1319b8d86489af77dfde4fa97b47df8",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x5fa699c0c1319b8d86489af77dfde4fa97b47df8-1769105965919.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x5fa699c0c1319b8d86489af77dfde4fa97b47df8-1769105965919.png"
+ ],
+ "name": "BitGo Holdings (Ondo Tokenized)",
+ "symbol": "BTGOon",
+ "marketCap": "781859397",
+ "price": "7.235",
+ "priceChange24hPercent": "--",
+ "volume24h": "10028338.5",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "BitGo",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x5fa699c0c1319b8d86489af77dfde4fa97b47df8",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x50356167a4dbc38bea6779c045e24e25facedfdc",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x50356167a4dbc38bea6779c045e24e25facedfdc-1760923391964.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x50356167a4dbc38bea6779c045e24e25facedfdc-1760923391964.png"
+ ],
+ "name": "Spotify (Ondo Tokenized)",
+ "symbol": "SPOTon",
+ "marketCap": "111515040318",
+ "price": "534.766667",
+ "priceChange24hPercent": "-1.69",
+ "volume24h": "742202629.56",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "Spotify",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x50356167a4dbc38bea6779c045e24e25facedfdc",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x317bf42b43a394860718266dec445dcc9fd9da49",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x317bf42b43a394860718266dec445dcc9fd9da49-1761792505227.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x317bf42b43a394860718266dec445dcc9fd9da49-1761792505227.png"
+ ],
+ "name": "JPMorgan Chase (Ondo Tokenized)",
+ "symbol": "JPMon",
+ "marketCap": "960979466400",
+ "price": "360.974460173899799822",
+ "priceChange24hPercent": "-0.66",
+ "volume24h": "1745667647.6",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "摩根大通",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x317bf42b43a394860718266dec445dcc9fd9da49",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x405f38b90bebf1259062cf29da299f3398662bcb",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x405f38b90bebf1259062cf29da299f3398662bcb-1761605541805.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x405f38b90bebf1259062cf29da299f3398662bcb-1761605541805.png"
+ ],
+ "name": "Coca-Cola (Ondo Tokenized)",
+ "symbol": "KOon",
+ "marketCap": "378925484617",
+ "price": "89.628986243018856634",
+ "priceChange24hPercent": "-0.24",
+ "volume24h": "1283321428.49",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "可口可乐",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x405f38b90bebf1259062cf29da299f3398662bcb",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xc37042a7a4fa510d8884a433762ab87257b91965",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xc37042a7a4fa510d8884a433762ab87257b91965-1760923413025.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xc37042a7a4fa510d8884a433762ab87257b91965-1760923413025.png"
+ ],
+ "name": "Taiwan Semiconductor Manufacturing (Ondo Tokenized)",
+ "symbol": "TSMon",
+ "marketCap": "2224533136800",
+ "price": "438.018182406245951052",
+ "priceChange24hPercent": "0.37",
+ "volume24h": "5261764083.780001",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "台积电",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0xc37042a7a4fa510d8884a433762ab87257b91965",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xd09f7b75b9659b864c6f82bb00ff096f9d277998",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xd09f7b75b9659b864c6f82bb00ff096f9d277998-1760923206785.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xd09f7b75b9659b864c6f82bb00ff096f9d277998-1760923206785.png"
+ ],
+ "name": "Lockheed (Ondo Tokenized)",
+ "symbol": "LMTon",
+ "marketCap": "121229896480",
+ "price": "537.114604097175250464",
+ "priceChange24hPercent": "-0.19",
+ "volume24h": "495034902.88",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "洛克希德马丁",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0xd09f7b75b9659b864c6f82bb00ff096f9d277998",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x341d31b2be1fee9c00e395a62ba41837f4322eed",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x341d31b2be1fee9c00e395a62ba41837f4322eed-1760923201079.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x341d31b2be1fee9c00e395a62ba41837f4322eed-1760923201079.png"
+ ],
+ "name": "Eli Lilly (Ondo Tokenized)",
+ "symbol": "LLYon",
+ "marketCap": "1081307016200",
+ "price": "1149.397318656767340512",
+ "priceChange24hPercent": "-0.16",
+ "volume24h": "2468999720.4",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "礼来",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x341d31b2be1fee9c00e395a62ba41837f4322eed",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x5a20886b575058dd7299785f0ea9b1172942a3e0",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x5a20886b575058dd7299785f0ea9b1172942a3e0-1760922274158.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x5a20886b575058dd7299785f0ea9b1172942a3e0-1760922274158.png"
+ ],
+ "name": "Abbott (Ondo Tokenized)",
+ "symbol": "ABTon",
+ "marketCap": "187435126855",
+ "price": "109.426019691944889332",
+ "priceChange24hPercent": "-1.04",
+ "volume24h": "744744194.56",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "雅培",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x5a20886b575058dd7299785f0ea9b1172942a3e0",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xe6837794fbc6dd024733a1a31f86061296fa2752",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xe6837794fbc6dd024733a1a31f86061296fa2752-1767888357216.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xe6837794fbc6dd024733a1a31f86061296fa2752-1767888357216.png"
+ ],
+ "name": "CrowdStrike (Ondo Tokenized)",
+ "symbol": "CRWDon",
+ "marketCap": "216991052568",
+ "price": "854.08",
+ "priceChange24hPercent": "0.11",
+ "volume24h": "1796128480.1",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "CrowdStrike",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0xe6837794fbc6dd024733a1a31f86061296fa2752",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x918008c3d29496c37b478b611967beaca365af36",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x918008c3d29496c37b478b611967beaca365af36-1760923132407.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x918008c3d29496c37b478b611967beaca365af36-1760923132407.png"
+ ],
+ "name": "iShares Core MSCI EAFE ETF (Ondo Tokenized)",
+ "symbol": "IEFAon",
+ "marketCap": "191069877912",
+ "price": "103.705170809433201477",
+ "priceChange24hPercent": "2.45",
+ "volume24h": "562851547.16",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x918008c3d29496c37b478b611967beaca365af36",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x43d0b380c33cd004a6a69abd61843881a2de4113",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x43d0b380c33cd004a6a69abd61843881a2de4113-1760923365671.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x43d0b380c33cd004a6a69abd61843881a2de4113-1760923365671.png"
+ ],
+ "name": "Shopify (Ondo Tokenized)",
+ "symbol": "SHOPon",
+ "marketCap": "188276717956",
+ "price": "143.536364",
+ "priceChange24hPercent": "-1.23",
+ "volume24h": "1001972823.39",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "Shopify",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x43d0b380c33cd004a6a69abd61843881a2de4113",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x7af44d51d1fb88c5b74fc71d3cba649bb8099d14",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x7af44d51d1fb88c5b74fc71d3cba649bb8099d14-1760922282064.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x7af44d51d1fb88c5b74fc71d3cba649bb8099d14-1760922282064.png"
+ ],
+ "name": "Accenture (Ondo Tokenized)",
+ "symbol": "ACNon",
+ "marketCap": "114261830592",
+ "price": "190.128369050462170162",
+ "priceChange24hPercent": "-1.11",
+ "volume24h": "906653876.64",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "埃森哲",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x7af44d51d1fb88c5b74fc71d3cba649bb8099d14",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x400f1e257f86d25578a0928c94dc95115f09d5c9",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x400f1e257f86d25578a0928c94dc95115f09d5c9-1760923313303.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x400f1e257f86d25578a0928c94dc95115f09d5c9-1760923313303.png"
+ ],
+ "name": "Procter & Gamble (Ondo Tokenized)",
+ "symbol": "PGon",
+ "marketCap": "348094704645",
+ "price": "149.056417400228133746",
+ "priceChange24hPercent": "-0.73",
+ "volume24h": "812032397.19",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "宝洁",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x400f1e257f86d25578a0928c94dc95115f09d5c9",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x374d03a6c0d5bd4be0a5117ebe1b49d52ac8a53f",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x374d03a6c0d5bd4be0a5117ebe1b49d52ac8a53f-1760923323445.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x374d03a6c0d5bd4be0a5117ebe1b49d52ac8a53f-1760923323445.png"
+ ],
+ "name": "PayPal (Ondo Tokenized)",
+ "symbol": "PYPLon",
+ "marketCap": "47016136560",
+ "price": "55.089444788561474573",
+ "priceChange24hPercent": "-0.45",
+ "volume24h": "716925445.2",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "贝宝",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x374d03a6c0d5bd4be0a5117ebe1b49d52ac8a53f",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xd3113a0ad20a46f6a662c63fe8e637f7713e59c7",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xd3113a0ad20a46f6a662c63fe8e637f7713e59c7-1760923043289.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xd3113a0ad20a46f6a662c63fe8e637f7713e59c7-1760923043289.png"
+ ],
+ "name": "Chevron (Ondo Tokenized)",
+ "symbol": "CVXon",
+ "marketCap": "415308348000",
+ "price": "214.127850846968341467",
+ "priceChange24hPercent": "-0.1",
+ "volume24h": "1122138299.52",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "雪佛龙",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0xd3113a0ad20a46f6a662c63fe8e637f7713e59c7",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x08ce97f3d5cf11e577d091ab048bc5e2eae3fabb",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x08ce97f3d5cf11e577d091ab048bc5e2eae3fabb-1760922826243.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x08ce97f3d5cf11e577d091ab048bc5e2eae3fabb-1760922826243.png"
+ ],
+ "name": "iShares Core US Aggregate Bond ETF (Ondo Tokenized)",
+ "symbol": "AGGon",
+ "marketCap": "136630691995",
+ "price": "100.726707821448173787",
+ "priceChange24hPercent": "-0.05",
+ "volume24h": "757482021",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x08ce97f3d5cf11e577d091ab048bc5e2eae3fabb",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x94d7754541b829a87321d56121bc544167ac490d",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x94d7754541b829a87321d56121bc544167ac490d-1760923360145.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x94d7754541b829a87321d56121bc544167ac490d-1760923360145.png"
+ ],
+ "name": "Starbucks (Ondo Tokenized)",
+ "symbol": "SBUXon",
+ "marketCap": "119095800000",
+ "price": "105.675635276984189824",
+ "priceChange24hPercent": "-0.61",
+ "volume24h": "481009967.36",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "星巴克",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x94d7754541b829a87321d56121bc544167ac490d",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x94174e3d1335db402dd03a092f7aa7ac2cb32be4",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x94174e3d1335db402dd03a092f7aa7ac2cb32be4-1768292465946.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x94174e3d1335db402dd03a092f7aa7ac2cb32be4-1768292465946.png"
+ ],
+ "name": "United States Oil Fund (Ondo Tokenized)",
+ "symbol": "USOon",
+ "marketCap": "16907435006",
+ "price": "144.2375",
+ "priceChange24hPercent": "1.61",
+ "volume24h": "523317653.04",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "原油ETF",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x94174e3d1335db402dd03a092f7aa7ac2cb32be4",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xf99f8f3a95257d82006183bd524efa7aacc9ef7a",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xf99f8f3a95257d82006183bd524efa7aacc9ef7a-1760923302585.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xf99f8f3a95257d82006183bd524efa7aacc9ef7a-1760923302585.png"
+ ],
+ "name": "PepsiCo (Ondo Tokenized)",
+ "symbol": "PEPon",
+ "marketCap": "188002580000",
+ "price": "141.975016844879616381",
+ "priceChange24hPercent": "-0.41",
+ "volume24h": "845805577.89",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "百事",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0xf99f8f3a95257d82006183bd524efa7aacc9ef7a",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xf69e40069ac227c11459e3f4e8a446b3401616b6",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xf69e40069ac227c11459e3f4e8a446b3401616b6-1760923398719.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xf69e40069ac227c11459e3f4e8a446b3401616b6-1760923398719.png"
+ ],
+ "name": "iShares 20+ Year Treasury Bond ETF (Ondo Tokenized)",
+ "symbol": "TLTon",
+ "marketCap": "41558996997",
+ "price": "85.978427962124070646",
+ "priceChange24hPercent": "0.16",
+ "volume24h": "1364023798.4499998",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "20年国债ETF",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0xf69e40069ac227c11459e3f4e8a446b3401616b6",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x93fac02b22b6743423381d163aec418178019b7a",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x93fac02b22b6743423381d163aec418178019b7a-1760923074552.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x93fac02b22b6743423381d163aec418178019b7a-1760923074552.png"
+ ],
+ "name": "Figma (Ondo Tokenized)",
+ "symbol": "FIGon",
+ "price": "-",
+ "priceChange24hPercent": "-",
+ "communityRecognized": false,
+ "key": "evm--56:0x93fac02b22b6743423381d163aec418178019b7a",
+ "kind": "token",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x99e01f02d66455bb106d91d469c9eaf6ab4904f6",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x99e01f02d66455bb106d91d469c9eaf6ab4904f6-1760923354737.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x99e01f02d66455bb106d91d469c9eaf6ab4904f6-1760923354737.png"
+ ],
+ "name": "Sharplink Gaming (Ondo Tokenized)",
+ "symbol": "SBETon",
+ "marketCap": "1711340120",
+ "price": "8.798824",
+ "priceChange24hPercent": "1.6",
+ "volume24h": "54330194.519999996",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "SharpLink博彩",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x99e01f02d66455bb106d91d469c9eaf6ab4904f6",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x52ad57a7ea642e99a892afc79e937b383f1b59e9",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x52ad57a7ea642e99a892afc79e937b383f1b59e9-1768032941245.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x52ad57a7ea642e99a892afc79e937b383f1b59e9-1768032941245.png"
+ ],
+ "name": "BitMine Immersion Technologies (Ondo Tokenized)",
+ "symbol": "BMNRon",
+ "marketCap": "14222332846",
+ "price": "25.220087",
+ "priceChange24hPercent": "0.99",
+ "volume24h": "1155029873.9099998",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "BitMine",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x52ad57a7ea642e99a892afc79e937b383f1b59e9",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xd04a2bb053277721a8321d7441eed5b42fdf7250",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xd04a2bb053277721a8321d7441eed5b42fdf7250-1761705848977.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xd04a2bb053277721a8321d7441eed5b42fdf7250-1761705848977.png"
+ ],
+ "name": "Salesforce (Ondo Tokenized)",
+ "symbol": "CRMon",
+ "marketCap": "212309370000",
+ "price": "257.487920522776546585",
+ "priceChange24hPercent": "-1.21",
+ "volume24h": "2679425388.3900003",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "赛富时",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0xd04a2bb053277721a8321d7441eed5b42fdf7250",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x4da12f47578ef89c76179b760c778e70b668f80b",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x4da12f47578ef89c76179b760c778e70b668f80b-1760923344446.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x4da12f47578ef89c76179b760c778e70b668f80b-1760923344446.png"
+ ],
+ "name": "Reddit (Ondo Tokenized)",
+ "symbol": "RDDTon",
+ "marketCap": "29734946936",
+ "price": "154.419048",
+ "priceChange24hPercent": "0.05",
+ "volume24h": "429786803.52000004",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "红迪",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x4da12f47578ef89c76179b760c778e70b668f80b",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x6e3e077a6c0e3c27fd6d00b97387d9b7bd451bab",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x6e3e077a6c0e3c27fd6d00b97387d9b7bd451bab-1760923154598.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x6e3e077a6c0e3c27fd6d00b97387d9b7bd451bab-1760923154598.png"
+ ],
+ "name": "Intuit (Ondo Tokenized)",
+ "symbol": "INTUon",
+ "marketCap": "91005759900",
+ "price": "332.51646606263590823",
+ "priceChange24hPercent": "-0.75",
+ "volume24h": "1177837182.6",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x6e3e077a6c0e3c27fd6d00b97387d9b7bd451bab",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xeb19c13c54b1cd48afc62f6503375e92d5f1e856",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xeb19c13c54b1cd48afc62f6503375e92d5f1e856-1760923271194.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xeb19c13c54b1cd48afc62f6503375e92d5f1e856-1760923271194.png"
+ ],
+ "name": "ServiceNow (Ondo Tokenized)",
+ "symbol": "NOWon",
+ "marketCap": "146043346120",
+ "price": "699.30488",
+ "priceChange24hPercent": "-1.05",
+ "volume24h": "1736762600.4399998",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "ServiceNow",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0xeb19c13c54b1cd48afc62f6503375e92d5f1e856",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x138ed6833ff4e8811e1fea0d005e13726c8886f9",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x138ed6833ff4e8811e1fea0d005e13726c8886f9-1760923381351.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x138ed6833ff4e8811e1fea0d005e13726c8886f9-1760923381351.png"
+ ],
+ "name": "Snowflake (Ondo Tokenized)",
+ "symbol": "SNOWon",
+ "marketCap": "116866588000",
+ "price": "337.2775",
+ "priceChange24hPercent": "-0.25",
+ "volume24h": "2842981049.56",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "雪花",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x138ed6833ff4e8811e1fea0d005e13726c8886f9",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xa528caaa2f96090e379d43f90834c75df54d6e74",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xa528caaa2f96090e379d43f90834c75df54d6e74-1760923148597.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xa528caaa2f96090e379d43f90834c75df54d6e74-1760923148597.png"
+ ],
+ "name": "Intel (Ondo Tokenized)",
+ "symbol": "INTCon",
+ "marketCap": "483215175763",
+ "price": "100.597692",
+ "priceChange24hPercent": "1.6",
+ "volume24h": "9355284335",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "英特尔",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0xa528caaa2f96090e379d43f90834c75df54d6e74",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xc142ba8ccd36d80c3a001342fb83e4c3d218a873",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xc142ba8ccd36d80c3a001342fb83e4c3d218a873-1760923376180.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xc142ba8ccd36d80c3a001342fb83e4c3d218a873-1760923376180.png"
+ ],
+ "name": "Super Micro Computer (Ondo Tokenized)",
+ "symbol": "SMCIon",
+ "marketCap": "25609702070",
+ "price": "40.042662",
+ "priceChange24hPercent": "1.47",
+ "volume24h": "2123337279.4800003",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "超微电脑",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0xc142ba8ccd36d80c3a001342fb83e4c3d218a873",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x274b0cb6db9473245a31cdea9b789786f4108e4b",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x274b0cb6db9473245a31cdea9b789786f4108e4b-1768464730010.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x274b0cb6db9473245a31cdea9b789786f4108e4b-1768464730010.png"
+ ],
+ "name": "Caterpillar (Ondo Tokenized)",
+ "symbol": "CATon",
+ "marketCap": "374930879780",
+ "price": "824.840862789310440651",
+ "priceChange24hPercent": "0.98",
+ "volume24h": "1620957440.3000002",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "卡特彼勒",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x274b0cb6db9473245a31cdea9b789786f4108e4b",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x5ecc352c4640f1d26bd231dbbd171f40f7d0eec6",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x5ecc352c4640f1d26bd231dbbd171f40f7d0eec6-1767888045927.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x5ecc352c4640f1d26bd231dbbd171f40f7d0eec6-1767888045927.png"
+ ],
+ "name": "Applied Materials (Ondo Tokenized)",
+ "symbol": "AMATon",
+ "marketCap": "361021096890",
+ "price": "468.39278701627463619",
+ "priceChange24hPercent": "2.68",
+ "volume24h": "2735913224.0099998",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "应用材料",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x5ecc352c4640f1d26bd231dbbd171f40f7d0eec6",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xd7df5863a3e742f0c767768cdfcb63f09e0422f6",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xd7df5863a3e742f0c767768cdfcb63f09e0422f6-1760923233924.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xd7df5863a3e742f0c767768cdfcb63f09e0422f6-1760923233924.png"
+ ],
+ "name": "Meta Platforms (Ondo Tokenized)",
+ "symbol": "METAon",
+ "marketCap": "1571213291779",
+ "price": "614.555295144030774555",
+ "priceChange24hPercent": "-0.02",
+ "volume24h": "9847481192.01",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "Meta",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0xd7df5863a3e742f0c767768cdfcb63f09e0422f6",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x4693f6f5ef257381a28afd0673e64d8b32d5c6ad",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x4693f6f5ef257381a28afd0673e64d8b32d5c6ad-1760923111457.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x4693f6f5ef257381a28afd0673e64d8b32d5c6ad-1760923111457.png"
+ ],
+ "name": "Hims & Hers Health (Ondo Tokenized)",
+ "symbol": "HIMSon",
+ "marketCap": "6181546800",
+ "price": "27.746",
+ "priceChange24hPercent": "-0.21",
+ "volume24h": "182854493.73000002",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "Hims & Hers",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x4693f6f5ef257381a28afd0673e64d8b32d5c6ad",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xb034f6cb52b7f2fd5a7eeeffca6b9adcd6b9a6f6",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xb034f6cb52b7f2fd5a7eeeffca6b9adcd6b9a6f6-1760922980249.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xb034f6cb52b7f2fd5a7eeeffca6b9adcd6b9a6f6-1760922980249.png"
+ ],
+ "name": "ASML Holding NV (Ondo Tokenized)",
+ "symbol": "ASMLon",
+ "marketCap": "660945604406",
+ "price": "1758.414946497724440837",
+ "priceChange24hPercent": "2.21",
+ "volume24h": "2211546975.36",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "阿斯麦",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0xb034f6cb52b7f2fd5a7eeeffca6b9adcd6b9a6f6",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x8fd70ee385f470c8d6fda2d93a4e49c849bac6a6",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x8fd70ee385f470c8d6fda2d93a4e49c849bac6a6-1767883597793.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x8fd70ee385f470c8d6fda2d93a4e49c849bac6a6-1767883597793.png"
+ ],
+ "name": "IREN (Ondo Tokenized)",
+ "symbol": "IRENon",
+ "marketCap": "15944391045",
+ "price": "45.389089",
+ "priceChange24hPercent": "2.29",
+ "volume24h": "1620373503.24",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "IREN",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x8fd70ee385f470c8d6fda2d93a4e49c849bac6a6",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xf3e82ea164cb344b2b11bad4c24b0ea4f7ba4714",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xf3e82ea164cb344b2b11bad4c24b0ea4f7ba4714-1767945976873.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xf3e82ea164cb344b2b11bad4c24b0ea4f7ba4714-1767945976873.png"
+ ],
+ "name": "PDD Holdings (Ondo Tokenized)",
+ "symbol": "PDDon",
+ "marketCap": "117017422072",
+ "price": "81.560326",
+ "priceChange24hPercent": "-0.94",
+ "volume24h": "382935002.09999996",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "拼多多",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0xf3e82ea164cb344b2b11bad4c24b0ea4f7ba4714",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x3fcd741646a9790635b938cdb69af5df356cbaab",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x3fcd741646a9790635b938cdb69af5df356cbaab-1768118974994.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x3fcd741646a9790635b938cdb69af5df356cbaab-1768118974994.png"
+ ],
+ "name": "abrdn Physical Palladium Shares ETF (Ondo Tokenized)",
+ "symbol": "PALLon",
+ "marketCap": "662462421",
+ "price": "127.025",
+ "priceChange24hPercent": "1.16",
+ "volume24h": "18618111.93",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "钯金ETF",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x3fcd741646a9790635b938cdb69af5df356cbaab",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x5acf40056ed51c8bbcd1b125ef803581ac89a627",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x5acf40056ed51c8bbcd1b125ef803581ac89a627-1760923085045.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x5acf40056ed51c8bbcd1b125ef803581ac89a627-1760923085045.png"
+ ],
+ "name": "Futu Holdings (Ondo Tokenized)",
+ "symbol": "FUTUon",
+ "marketCap": "16991222660",
+ "price": "123.422764240887776543",
+ "priceChange24hPercent": "-0.25",
+ "volume24h": "88127276.5",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "富途控股",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x5acf40056ed51c8bbcd1b125ef803581ac89a627",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xd226d8170ee38793430c7dec6903df4b818bb74c",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xd226d8170ee38793430c7dec6903df4b818bb74c-1760923212125.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xd226d8170ee38793430c7dec6903df4b818bb74c-1760923212125.png"
+ ],
+ "name": "MARA Holdings (Ondo Tokenized)",
+ "symbol": "MARAon",
+ "price": "-",
+ "priceChange24hPercent": "-",
+ "communityRecognized": false,
+ "key": "evm--56:0xd226d8170ee38793430c7dec6903df4b818bb74c",
+ "kind": "token",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x08a513779f46ffb7a34f16094a94016d010128a8",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x08a513779f46ffb7a34f16094a94016d010128a8-1760923281600.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x08a513779f46ffb7a34f16094a94016d010128a8-1760923281600.png"
+ ],
+ "name": "Novo Nordisk (Ondo Tokenized)",
+ "symbol": "NVOon",
+ "marketCap": "206932361506",
+ "price": "47.900708616347068423",
+ "priceChange24hPercent": "--",
+ "volume24h": "285153974.40000004",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "诺和诺德",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x08a513779f46ffb7a34f16094a94016d010128a8",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x22092c94a91d019ad15536725598b0a6be0a73c0",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x22092c94a91d019ad15536725598b0a6be0a73c0-1760923137786.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x22092c94a91d019ad15536725598b0a6be0a73c0-1760923137786.png"
+ ],
+ "name": "iShares Core MSCI Emerging Markets ETF (Ondo Tokenized)",
+ "symbol": "IEMGon",
+ "marketCap": "171167801924",
+ "price": "85.994643507231392039",
+ "priceChange24hPercent": "0.89",
+ "volume24h": "577001471.9000001",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "核心新兴市场ETF",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x22092c94a91d019ad15536725598b0a6be0a73c0",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x995add4ba29a628a57930a8a185c62ca044ec090",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x995add4ba29a628a57930a8a185c62ca044ec090-1760923223388.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x995add4ba29a628a57930a8a185c62ca044ec090-1760923223388.png"
+ ],
+ "name": "McDonald's (Ondo Tokenized)",
+ "symbol": "MCDon",
+ "marketCap": "181669279140",
+ "price": "261.414735153891492023",
+ "priceChange24hPercent": "-0.12",
+ "volume24h": "1069340837.13",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "麦当劳",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x995add4ba29a628a57930a8a185c62ca044ec090",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x1cde419fae0ef7f7931ae3e29e5f411c8c5e5fa1",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x1cde419fae0ef7f7931ae3e29e5f411c8c5e5fa1-1760923609945.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x1cde419fae0ef7f7931ae3e29e5f411c8c5e5fa1-1760923609945.png"
+ ],
+ "name": "Visa (Ondo Tokenized)",
+ "symbol": "Von",
+ "marketCap": "700273397430",
+ "price": "374.009002377026934042",
+ "priceChange24hPercent": "-0.75",
+ "volume24h": "1730302929.6",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "维萨",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x1cde419fae0ef7f7931ae3e29e5f411c8c5e5fa1",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x1501ec83ffef405b4331cc4f73277a40fb0c627d",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x1501ec83ffef405b4331cc4f73277a40fb0c627d-1760923239312.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x1501ec83ffef405b4331cc4f73277a40fb0c627d-1760923239312.png"
+ ],
+ "name": "Marvell Technology (Ondo Tokenized)",
+ "symbol": "MRVLon",
+ "marketCap": "195777489300",
+ "price": "229.524776103399458333",
+ "priceChange24hPercent": "2.41",
+ "volume24h": "4743302231.1",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "迈威尔科技",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x1501ec83ffef405b4331cc4f73277a40fb0c627d",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x527c6436e1eaa4f2065cde4090f798cb5d031dd6",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x527c6436e1eaa4f2065cde4090f798cb5d031dd6-1760922974777.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x527c6436e1eaa4f2065cde4090f798cb5d031dd6-1760922974777.png"
+ ],
+ "name": "Arm Holdings plc (Ondo Tokenized)",
+ "symbol": "ARMon",
+ "marketCap": "269231759259",
+ "price": "261.0225",
+ "priceChange24hPercent": "2.2",
+ "volume24h": "1041739741.08",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "安谋",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x527c6436e1eaa4f2065cde4090f798cb5d031dd6",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x0d4f9b25f81163fb4840ba4f434672543823000c",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x0d4f9b25f81163fb4840ba4f434672543823000c-1760923106279.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x0d4f9b25f81163fb4840ba4f434672543823000c-1760923106279.png"
+ ],
+ "name": "Goldman Sachs (Ondo Tokenized)",
+ "symbol": "GSon",
+ "marketCap": "306397220270",
+ "price": "1047.374865547024001893",
+ "priceChange24hPercent": "-0.4",
+ "volume24h": "1483473666.86",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "高盛",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x0d4f9b25f81163fb4840ba4f434672543823000c",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x60a8f8e05200ff73afde9e2cae819bf1605f0bdd",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x60a8f8e05200ff73afde9e2cae819bf1605f0bdd-1760923228476.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x60a8f8e05200ff73afde9e2cae819bf1605f0bdd-1760923228476.png"
+ ],
+ "name": "MercadoLibre (Ondo Tokenized)",
+ "symbol": "MELIon",
+ "marketCap": "100297276982",
+ "price": "1967",
+ "priceChange24hPercent": "-0.43",
+ "volume24h": "557770904.9599999",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "美客多",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x60a8f8e05200ff73afde9e2cae819bf1605f0bdd",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x467e59ce5d5fe01686d4a80dd1e1dae13549aa6c",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x467e59ce5d5fe01686d4a80dd1e1dae13549aa6c-1760515402441.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x467e59ce5d5fe01686d4a80dd1e1dae13549aa6c-1760515402441.png"
+ ],
+ "name": "Baidu (Ondo Tokenized)",
+ "symbol": "BIDUon",
+ "marketCap": "33832211369",
+ "price": "92.292027",
+ "priceChange24hPercent": "-7.17",
+ "volume24h": "256503090.06",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "百度",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x467e59ce5d5fe01686d4a80dd1e1dae13549aa6c",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xc4a88a72b848255fd24da3c1ad6755d980535fb1",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xc4a88a72b848255fd24da3c1ad6755d980535fb1-1760923349554.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xc4a88a72b848255fd24da3c1ad6755d980535fb1-1760923349554.png"
+ ],
+ "name": "Riot Platforms (Ondo Tokenized)",
+ "symbol": "RIOTon",
+ "marketCap": "8243696814",
+ "price": "21.664",
+ "priceChange24hPercent": "-0.09",
+ "volume24h": "335036003.2",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "Riot平台",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0xc4a88a72b848255fd24da3c1ad6755d980535fb1",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x0eaa1a75bd682a5669ab2371a559fbd039c6b9eb",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x0eaa1a75bd682a5669ab2371a559fbd039c6b9eb-1760923292006.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x0eaa1a75bd682a5669ab2371a559fbd039c6b9eb-1760923292006.png"
+ ],
+ "name": "Palo Alto Networks (Ondo Tokenized)",
+ "symbol": "PANWon",
+ "marketCap": "271606900000",
+ "price": "333.65",
+ "priceChange24hPercent": "0.1",
+ "volume24h": "1879381111.84",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "帕洛阿尔托网络",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x0eaa1a75bd682a5669ab2371a559fbd039c6b9eb",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x4d209d275e3492ac08497a7a42915899c4dd5e86",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x4d209d275e3492ac08497a7a42915899c4dd5e86-1768378192726.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x4d209d275e3492ac08497a7a42915899c4dd5e86-1768378192726.png"
+ ],
+ "name": "Exxon Mobil (Ondo Tokenized)",
+ "symbol": "XOMon",
+ "marketCap": "660875591600",
+ "price": "161.929674995637777397",
+ "priceChange24hPercent": "0.06",
+ "volume24h": "2537206808.78",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "埃克森美孚",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x4d209d275e3492ac08497a7a42915899c4dd5e86",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x68b07cef227cea1b2b6683921c8c825cd5c69ec7",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x68b07cef227cea1b2b6683921c8c825cd5c69ec7-1773890434386.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x68b07cef227cea1b2b6683921c8c825cd5c69ec7-1773890434386.png"
+ ],
+ "name": "iShares Bitcoin Trust (Ondo Tokenized)",
+ "symbol": "IBITON",
+ "marketCap": "75421432839",
+ "price": "44.648189",
+ "priceChange24hPercent": "-1.02",
+ "volume24h": "2361768351.6499996",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "贝莱德比特币ETF",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x68b07cef227cea1b2b6683921c8c825cd5c69ec7",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x1104eb7e85e25eb45f88e638b0c27a06c1a91cb2",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x1104eb7e85e25eb45f88e638b0c27a06c1a91cb2-1760923159261.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x1104eb7e85e25eb45f88e638b0c27a06c1a91cb2-1760923159261.png"
+ ],
+ "name": "iShares Core S&P 500 ETF (Ondo Tokenized ETF)",
+ "symbol": "IVVON",
+ "marketCap": "896778097376",
+ "price": "780.425487329284924111",
+ "priceChange24hPercent": "0.05",
+ "volume24h": "7974410540.32",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "安硕标普500",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x1104eb7e85e25eb45f88e638b0c27a06c1a91cb2",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xcf9caf83053213c44dd7027db3e1e4ac98e55f8f",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xcf9caf83053213c44dd7027db3e1e4ac98e55f8f-1760976491888.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xcf9caf83053213c44dd7027db3e1e4ac98e55f8f-1760976491888.png"
+ ],
+ "name": "iShares Core S&P Total US Stock Market ETF (Ondo Tokenized ETF)",
+ "symbol": "ITOTON",
+ "marketCap": "95625104840",
+ "price": "169.804819587832307416",
+ "priceChange24hPercent": "--",
+ "volume24h": "169106458.23999998",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "美股全市场ETF",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0xcf9caf83053213c44dd7027db3e1e4ac98e55f8f",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x2ac26ec236df5d1d2ad1a6dd4e448a90e45dc35d",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x2ac26ec236df5d1d2ad1a6dd4e448a90e45dc35d-1760923397223.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x2ac26ec236df5d1d2ad1a6dd4e448a90e45dc35d-1760923397223.png"
+ ],
+ "name": "iShares TIPS Bond ETF (Ondo Tokenized ETF)",
+ "symbol": "TIPON",
+ "marketCap": "14720410837",
+ "price": "111.376087623270475341",
+ "priceChange24hPercent": "0.03",
+ "volume24h": "108138754.22",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x2ac26ec236df5d1d2ad1a6dd4e448a90e45dc35d",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x38b9a53bfdc5dba58a29bd6992341927c2fca637",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x38b9a53bfdc5dba58a29bd6992341927c2fca637-1760923069433.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x38b9a53bfdc5dba58a29bd6992341927c2fca637-1760923069433.png"
+ ],
+ "name": "iShares MSCI EAFE ETF (Ondo Tokenized ETF)",
+ "symbol": "EFAON",
+ "marketCap": "78896005005",
+ "price": "110.898588433796849651",
+ "priceChange24hPercent": "0.16",
+ "volume24h": "613264467.1999999",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x38b9a53bfdc5dba58a29bd6992341927c2fca637",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x40755f06ab7f8de1ab3a9413b1ef562d63de19b1",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x40755f06ab7f8de1ab3a9413b1ef562d63de19b1-1760923164409.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x40755f06ab7f8de1ab3a9413b1ef562d63de19b1-1760923164409.png"
+ ],
+ "name": "iShares Russell 1000 Growth ETF (Ondo Tokenized ETF)",
+ "symbol": "IWFON",
+ "marketCap": "134439059389",
+ "price": "494.964782503527050629",
+ "priceChange24hPercent": "0.25",
+ "volume24h": "387028445.78999996",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x40755f06ab7f8de1ab3a9413b1ef562d63de19b1",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x00c81d35eddf44c75d4db9e07bdcdc236eb0ebcf",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x00c81d35eddf44c75d4db9e07bdcdc236eb0ebcf-1760923060271.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x00c81d35eddf44c75d4db9e07bdcdc236eb0ebcf-1760923060271.png"
+ ],
+ "name": "iShares MSCI Emerging Markets ETF (Ondo Tokenized ETF)",
+ "symbol": "EEMON",
+ "marketCap": "32146260773",
+ "price": "70.550489448583953469",
+ "priceChange24hPercent": "1.26",
+ "volume24h": "1506651730.8",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "新兴市场ETF",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x00c81d35eddf44c75d4db9e07bdcdc236eb0ebcf",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x01b5a4ac600be98448dbefbb78bcdf38262552cc",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x01b5a4ac600be98448dbefbb78bcdf38262552cc-1768118550219.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x01b5a4ac600be98448dbefbb78bcdf38262552cc-1768118550219.png"
+ ],
+ "name": "Occidental Petroleum (Ondo Tokenized)",
+ "symbol": "OXYON",
+ "marketCap": "59717867448",
+ "price": "60.427368985063029401",
+ "priceChange24hPercent": "--",
+ "volume24h": "400488654.56",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "西方石油",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x01b5a4ac600be98448dbefbb78bcdf38262552cc",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xf54b94ea21e1da5d51ef00fd4502225e5394f874",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xf54b94ea21e1da5d51ef00fd4502225e5394f874-1760923174798.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xf54b94ea21e1da5d51ef00fd4502225e5394f874-1760923174798.png"
+ ],
+ "name": "iShares Russell 2000 Value ETF (Ondo Tokenized ETF)",
+ "symbol": "IWNON",
+ "marketCap": "14510541399",
+ "price": "226.016737142534794549",
+ "priceChange24hPercent": "-0.45",
+ "volume24h": "144788928.9",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0xf54b94ea21e1da5d51ef00fd4502225e5394f874",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x8a83c31d6751833b4940b6e871c48d9a15a07b46",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x8a83c31d6751833b4940b6e871c48d9a15a07b46-1760923307953.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x8a83c31d6751833b4940b6e871c48d9a15a07b46-1760923307953.png"
+ ],
+ "name": "Pfizer (Ondo Tokenized Stock)",
+ "symbol": "PFEON",
+ "marketCap": "162149068000",
+ "price": "30.045669965608379961",
+ "priceChange24hPercent": "-0.39",
+ "volume24h": "669415327.65",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "辉瑞",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x8a83c31d6751833b4940b6e871c48d9a15a07b46",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x500eafc69b68acd6f27064f9b75f1c7d91cc4d9f",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x500eafc69b68acd6f27064f9b75f1c7d91cc4d9f-1760923169588.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x500eafc69b68acd6f27064f9b75f1c7d91cc4d9f-1760923169588.png"
+ ],
+ "name": "iShares Russell 2000 ETF (Ondo Tokenized ETF)",
+ "symbol": "IWMON",
+ "marketCap": "81417408119",
+ "price": "297.748095366553568352",
+ "priceChange24hPercent": "0.02",
+ "volume24h": "4113713428.1099997",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "罗素2000 ETF",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x500eafc69b68acd6f27064f9b75f1c7d91cc4d9f",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xd85d4ce29b4ca361ff72ef0e53d6236e334c5db6",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xd85d4ce29b4ca361ff72ef0e53d6236e334c5db6-1768118835493.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xd85d4ce29b4ca361ff72ef0e53d6236e334c5db6-1768118835493.png"
+ ],
+ "name": "Ondas Holdings (Ondo Tokenized)",
+ "symbol": "ONDSON",
+ "price": "-",
+ "priceChange24hPercent": "-",
+ "communityRecognized": false,
+ "key": "evm--56:0xd85d4ce29b4ca361ff72ef0e53d6236e334c5db6",
+ "kind": "token",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x167e93a849a0cc479769132552b99aa1cfa0948c",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x167e93a849a0cc479769132552b99aa1cfa0948c-1760923143055.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x167e93a849a0cc479769132552b99aa1cfa0948c-1760923143055.png"
+ ],
+ "name": "iShares Core S&P MidCap ETF (Ondo Tokenized ETF)",
+ "symbol": "IJHON",
+ "marketCap": "123402837938",
+ "price": "76.53881613572147098",
+ "priceChange24hPercent": "0.14",
+ "volume24h": "360950049.75",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x167e93a849a0cc479769132552b99aa1cfa0948c",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xa7d1e886acf66ec0656df2decb4b7c893a3bab4c",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xa7d1e886acf66ec0656df2decb4b7c893a3bab4c-1760923620884.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xa7d1e886acf66ec0656df2decb4b7c893a3bab4c-1760923620884.png"
+ ],
+ "name": "Walmart (Ondo Tokenized Stock)",
+ "symbol": "WMTON",
+ "marketCap": "852628691200",
+ "price": "107.242391409320952249",
+ "priceChange24hPercent": "-0.47",
+ "volume24h": "2200706170.08",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "沃尔玛",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0xa7d1e886acf66ec0656df2decb4b7c893a3bab4c",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x2b1d5cdecc356530a746c5754231efaeaca64022",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x2b1d5cdecc356530a746c5754231efaeaca64022-1760923297458.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x2b1d5cdecc356530a746c5754231efaeaca64022-1760923297458.png"
+ ],
+ "name": "Petrobras (Ondo Tokenized Stock)",
+ "symbol": "PBRON",
+ "marketCap": "129660646415",
+ "price": "20.856197511015279798",
+ "priceChange24hPercent": "-0.22",
+ "volume24h": "377829496.24",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "巴西石油",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x2b1d5cdecc356530a746c5754231efaeaca64022",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xecc1299f183b6a720a6f4729bf24f82cd8d50828",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xecc1299f183b6a720a6f4729bf24f82cd8d50828-1760923402510.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xecc1299f183b6a720a6f4729bf24f82cd8d50828-1760923402510.png"
+ ],
+ "name": "Toyota (Ondo Tokenized Stock)",
+ "symbol": "TMON",
+ "marketCap": "233414630448",
+ "price": "197.584090494197418125",
+ "priceChange24hPercent": "1.15",
+ "volume24h": "64367650.27",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "丰田",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0xecc1299f183b6a720a6f4729bf24f82cd8d50828",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x24f5471183ea549987f245d6ce236b6108869c92",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x24f5471183ea549987f245d6ce236b6108869c92-1760923012085.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x24f5471183ea549987f245d6ce236b6108869c92-1760923012085.png"
+ ],
+ "name": "Blackrock, Inc. (Ondo Tokenized Stock)",
+ "symbol": "BLKON",
+ "marketCap": "173949338550",
+ "price": "1132.730600298929983859",
+ "priceChange24hPercent": "-0.52",
+ "volume24h": "460986228.95",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "贝莱德",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x24f5471183ea549987f245d6ce236b6108869c92",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xe8ff70859ce4cbd72e4352b4fb45f5bf39d07464",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xe8ff70859ce4cbd72e4352b4fb45f5bf39d07464-1760923127124.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xe8ff70859ce4cbd72e4352b4fb45f5bf39d07464-1760923127124.png"
+ ],
+ "name": "IBM (Ondo Tokenized Stock)",
+ "symbol": "IBMON",
+ "marketCap": "221297855260",
+ "price": "239.939607742091185163",
+ "priceChange24hPercent": "-0.04",
+ "volume24h": "717698173.8499999",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "国际商业机器",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0xe8ff70859ce4cbd72e4352b4fb45f5bf39d07464",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x4fd67cb8cfedc718bac984b5936abe3330d0a2a4",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x4fd67cb8cfedc718bac984b5936abe3330d0a2a4-1773890603767.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x4fd67cb8cfedc718bac984b5936abe3330d0a2a4-1773890603767.png"
+ ],
+ "name": "SanDisk (Ondo Tokenized)",
+ "symbol": "SNDKON",
+ "marketCap": "257676165000",
+ "price": "1813.141716",
+ "priceChange24hPercent": "1.53",
+ "volume24h": "28809122580",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "闪迪",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x4fd67cb8cfedc718bac984b5936abe3330d0a2a4",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xe4e12c9cec3e8cae405202a97f66afa695075fa0",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xe4e12c9cec3e8cae405202a97f66afa695075fa0-1760923070917.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xe4e12c9cec3e8cae405202a97f66afa695075fa0-1760923070917.png"
+ ],
+ "name": "Equinix (Ondo Tokenized Stock)",
+ "symbol": "EQIXON",
+ "marketCap": "102221893262",
+ "price": "1034.973342393173569538",
+ "priceChange24hPercent": "-1.63",
+ "volume24h": "357010103.78000003",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0xe4e12c9cec3e8cae405202a97f66afa695075fa0",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x5151a22421ed4277f1e4ca4785a07b035d548a36",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x5151a22421ed4277f1e4ca4785a07b035d548a36-1760923090436.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x5151a22421ed4277f1e4ca4785a07b035d548a36-1760923090436.png"
+ ],
+ "name": "General Electric (Ondo Tokenized Stock)",
+ "symbol": "GEON",
+ "marketCap": "349783074383",
+ "price": "337.589114914645847783",
+ "priceChange24hPercent": "-0.19",
+ "volume24h": "825014560.16",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "通用电气",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x5151a22421ed4277f1e4ca4785a07b035d548a36",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xf21132a811ad1a878e21af60f64d4e690c9daa42",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xf21132a811ad1a878e21af60f64d4e690c9daa42-1761748250710.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xf21132a811ad1a878e21af60f64d4e690c9daa42-1761748250710.png"
+ ],
+ "name": "Boeing (Ondo Tokenized Stock)",
+ "symbol": "BAON",
+ "price": "-",
+ "priceChange24hPercent": "-",
+ "communityRecognized": false,
+ "key": "evm--56:0xf21132a811ad1a878e21af60f64d4e690c9daa42",
+ "kind": "token",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x12b7adc48416a103f63e7e6210f62c81dfb91fd0",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x12b7adc48416a103f63e7e6210f62c81dfb91fd0-1773890376568.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x12b7adc48416a103f63e7e6210f62c81dfb91fd0-1773890376568.png"
+ ],
+ "name": "iShares MSCI South Korea ETF (Ondo Tokenized)",
+ "symbol": "EWYON",
+ "marketCap": "14278571056",
+ "price": "194.898272",
+ "priceChange24hPercent": "3.95",
+ "volume24h": "3455448231.73",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "iShares MSCI韩国ETF",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x12b7adc48416a103f63e7e6210f62c81dfb91fd0",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x34375f826fd3dd4e15f883d4f4786bb45eb705ac",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x34375f826fd3dd4e15f883d4f4786bb45eb705ac-1761313247216.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x34375f826fd3dd4e15f883d4f4786bb45eb705ac-1761313247216.png"
+ ],
+ "name": "Costco (Ondo Tokenized Stock)",
+ "symbol": "COSTON",
+ "marketCap": "406111459460",
+ "price": "918.726163055351801392",
+ "priceChange24hPercent": "-0.23",
+ "volume24h": "1903887561.8",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "开市客",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x34375f826fd3dd4e15f883d4f4786bb45eb705ac",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x629520dee1620def11596f84e85de9f1ff653012",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x629520dee1620def11596f84e85de9f1ff653012-1760923615610.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x629520dee1620def11596f84e85de9f1ff653012-1760923615610.png"
+ ],
+ "name": "Wells Fargo (Ondo Tokenized Stock)",
+ "symbol": "WFCON",
+ "marketCap": "272039040000",
+ "price": "90.828327345333623842",
+ "priceChange24hPercent": "-0.85",
+ "volume24h": "712161682.9599999",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "富国银行",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x629520dee1620def11596f84e85de9f1ff653012",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xef80743f78d98fc2b47a2253b293152ce8b879ba",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xef80743f78d98fc2b47a2253b293152ce8b879ba-1760922268573.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xef80743f78d98fc2b47a2253b293152ce8b879ba-1760922268573.png"
+ ],
+ "name": "Airbnb (Ondo Tokenized Stock)",
+ "symbol": "ABNBON",
+ "marketCap": "107983869660",
+ "price": "181.313333",
+ "priceChange24hPercent": "-0.66",
+ "volume24h": "620194706.78",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "爱彼迎",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0xef80743f78d98fc2b47a2253b293152ce8b879ba",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xfbd4d681c92ead6af0e49950c8b2e47eeacbb2db",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xfbd4d681c92ead6af0e49950c8b2e47eeacbb2db-1760923334398.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xfbd4d681c92ead6af0e49950c8b2e47eeacbb2db-1760923334398.png"
+ ],
+ "name": "Qualcomm (Ondo Tokenized Stock)",
+ "symbol": "QCOMON",
+ "marketCap": "177177000000",
+ "price": "174.693612375015163222",
+ "priceChange24hPercent": "1.84",
+ "volume24h": "1440555484.94",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "高通",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0xfbd4d681c92ead6af0e49950c8b2e47eeacbb2db",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xc008c5f579ec1450f20099c39f587547e27c7523",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xc008c5f579ec1450f20099c39f587547e27c7523-1768185634202.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xc008c5f579ec1450f20099c39f587547e27c7523-1768185634202.png"
+ ],
+ "name": "iShares 0-3 Month Treasury Bond ETF (Ondo Tokenized ETF)",
+ "symbol": "SGOVON",
+ "marketCap": "95942590920",
+ "price": "102.324784764508258885",
+ "priceChange24hPercent": "--",
+ "volume24h": "2053722039.09",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "iShares 0-3个月国债ETF",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0xc008c5f579ec1450f20099c39f587547e27c7523",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x76e39171cb665a35981e744e2ceb7012f76caeac",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x76e39171cb665a35981e744e2ceb7012f76caeac-1773853768684.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x76e39171cb665a35981e744e2ceb7012f76caeac-1773853768684.png"
+ ],
+ "name": "CoreWeave (Ondo Tokenized)",
+ "symbol": "CRWVON",
+ "marketCap": "48752169872",
+ "price": "91.523734",
+ "priceChange24hPercent": "2.73",
+ "volume24h": "1858414200.96",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "CoreWeave",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x76e39171cb665a35981e744e2ceb7012f76caeac",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ }
+ ],
+ "stocks||24h|market__tab__consumer_tech": [
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x390a684ef9cade28a7ad0dfa61ab1eb3842618c4",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x390a684ef9cade28a7ad0dfa61ab1eb3842618c4-1760515427269.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x390a684ef9cade28a7ad0dfa61ab1eb3842618c4-1760515427269.png"
+ ],
+ "name": "Apple (Ondo Tokenized)",
+ "symbol": "AAPLon",
+ "marketCap": "4699513299320",
+ "price": "320.298481855554072365",
+ "priceChange24hPercent": "-0.5",
+ "volume24h": "12673014673.480001",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "苹果",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x390a684ef9cade28a7ad0dfa61ab1eb3842618c4",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x4553cfe1c09f37f38b12dc509f676964e392f8fc",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x4553cfe1c09f37f38b12dc509f676964e392f8fc-1760686410256.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x4553cfe1c09f37f38b12dc509f676964e392f8fc-1760686410256.png"
+ ],
+ "name": "Amazon (Ondo Tokenized)",
+ "symbol": "AMZNon",
+ "marketCap": "2780817921000",
+ "price": "258.279748",
+ "priceChange24hPercent": "-0.11",
+ "volume24h": "7949159751.12",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "亚马逊",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x4553cfe1c09f37f38b12dc509f676964e392f8fc",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x091fc7778e6932d4009b087b191d1ee3bac5729a",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x091fc7778e6932d4009b087b191d1ee3bac5729a-1760923100804.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x091fc7778e6932d4009b087b191d1ee3bac5729a-1760923100804.png"
+ ],
+ "name": "Alphabet Class A (Ondo Tokenized)",
+ "symbol": "GOOGLon",
+ "marketCap": "4096080585860",
+ "price": "338.962258099649311085",
+ "priceChange24hPercent": "-0.2",
+ "volume24h": "7848657585.66",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "谷歌",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x091fc7778e6932d4009b087b191d1ee3bac5729a",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x6bfe75d1ad432050ea973c3a3dcd88f02e2444c3",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x6bfe75d1ad432050ea973c3a3dcd88f02e2444c3-1760923244592.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x6bfe75d1ad432050ea973c3a3dcd88f02e2444c3-1760923244592.png"
+ ],
+ "name": "Microsoft (Ondo Tokenized)",
+ "symbol": "MSFTon",
+ "marketCap": "3710547335000",
+ "price": "499.708647472892879635",
+ "priceChange24hPercent": "-0.72",
+ "volume24h": "9045448472.6",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "微软",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x6bfe75d1ad432050ea973c3a3dcd88f02e2444c3",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x7048f5227b032326cc8dbc53cf3fddd947a2c757",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x7048f5227b032326cc8dbc53cf3fddd947a2c757-1760923261006.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x7048f5227b032326cc8dbc53cf3fddd947a2c757-1760923261006.png"
+ ],
+ "name": "Netflix (Ondo Tokenized)",
+ "symbol": "NFLXon",
+ "marketCap": "325828304922",
+ "price": "778.72424",
+ "priceChange24hPercent": "-0.54",
+ "volume24h": "3144868282.5",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "奈飞",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x7048f5227b032326cc8dbc53cf3fddd947a2c757",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x03e4bd1ea53f1da84513da0319d1f03dd1bbcf93",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x03e4bd1ea53f1da84513da0319d1f03dd1bbcf93-1760923286694.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x03e4bd1ea53f1da84513da0319d1f03dd1bbcf93-1760923286694.png"
+ ],
+ "name": "Oracle (Ondo Tokenized)",
+ "symbol": "ORCLon",
+ "marketCap": "457505050100",
+ "price": "166.481535598340633943",
+ "priceChange24hPercent": "2.21",
+ "volume24h": "4138044844.8500004",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "甲骨文",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x03e4bd1ea53f1da84513da0319d1f03dd1bbcf93",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x2494b603319d4d9f9715c9f4496d9e0364b59d93",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x2494b603319d4d9f9715c9f4496d9e0364b59d93-1760680411667.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x2494b603319d4d9f9715c9f4496d9e0364b59d93-1760680411667.png"
+ ],
+ "name": "Tesla (Ondo Tokenized)",
+ "symbol": "TSLAon",
+ "marketCap": "1398455741268",
+ "price": "356.443455",
+ "priceChange24hPercent": "0.17",
+ "volume24h": "23021647442.719997",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "特斯拉",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x2494b603319d4d9f9715c9f4496d9e0364b59d93",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x34304f2f7cc487eb4186e6d69f5905a613474aa2",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x34304f2f7cc487eb4186e6d69f5905a613474aa2-1761709115472.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x34304f2f7cc487eb4186e6d69f5905a613474aa2-1761709115472.png"
+ ],
+ "name": "Cisco Systems (Ondo Tokenized)",
+ "symbol": "CSCOon",
+ "marketCap": "430404665418",
+ "price": "110.75473913211509356",
+ "priceChange24hPercent": "0.07",
+ "volume24h": "1351570474.8",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "思科",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x34304f2f7cc487eb4186e6d69f5905a613474aa2",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x50356167a4dbc38bea6779c045e24e25facedfdc",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x50356167a4dbc38bea6779c045e24e25facedfdc-1760923391964.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x50356167a4dbc38bea6779c045e24e25facedfdc-1760923391964.png"
+ ],
+ "name": "Spotify (Ondo Tokenized)",
+ "symbol": "SPOTon",
+ "marketCap": "111515040318",
+ "price": "534.766667",
+ "priceChange24hPercent": "-1.69",
+ "volume24h": "742202629.56",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "Spotify",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x50356167a4dbc38bea6779c045e24e25facedfdc",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xe6837794fbc6dd024733a1a31f86061296fa2752",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xe6837794fbc6dd024733a1a31f86061296fa2752-1767888357216.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xe6837794fbc6dd024733a1a31f86061296fa2752-1767888357216.png"
+ ],
+ "name": "CrowdStrike (Ondo Tokenized)",
+ "symbol": "CRWDon",
+ "marketCap": "216991052568",
+ "price": "854.08",
+ "priceChange24hPercent": "0.11",
+ "volume24h": "1796128480.1",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "CrowdStrike",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0xe6837794fbc6dd024733a1a31f86061296fa2752",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x43d0b380c33cd004a6a69abd61843881a2de4113",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x43d0b380c33cd004a6a69abd61843881a2de4113-1760923365671.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x43d0b380c33cd004a6a69abd61843881a2de4113-1760923365671.png"
+ ],
+ "name": "Shopify (Ondo Tokenized)",
+ "symbol": "SHOPon",
+ "marketCap": "188276717956",
+ "price": "143.536364",
+ "priceChange24hPercent": "-1.23",
+ "volume24h": "1001972823.39",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "Shopify",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x43d0b380c33cd004a6a69abd61843881a2de4113",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x7af44d51d1fb88c5b74fc71d3cba649bb8099d14",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x7af44d51d1fb88c5b74fc71d3cba649bb8099d14-1760922282064.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x7af44d51d1fb88c5b74fc71d3cba649bb8099d14-1760922282064.png"
+ ],
+ "name": "Accenture (Ondo Tokenized)",
+ "symbol": "ACNon",
+ "marketCap": "114261830592",
+ "price": "190.128369050462170162",
+ "priceChange24hPercent": "-1.11",
+ "volume24h": "906653876.64",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "埃森哲",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x7af44d51d1fb88c5b74fc71d3cba649bb8099d14",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xeb19c13c54b1cd48afc62f6503375e92d5f1e856",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xeb19c13c54b1cd48afc62f6503375e92d5f1e856-1760923271194.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xeb19c13c54b1cd48afc62f6503375e92d5f1e856-1760923271194.png"
+ ],
+ "name": "ServiceNow (Ondo Tokenized)",
+ "symbol": "NOWon",
+ "marketCap": "146043346120",
+ "price": "699.30488",
+ "priceChange24hPercent": "-1.05",
+ "volume24h": "1736762600.4399998",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "ServiceNow",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0xeb19c13c54b1cd48afc62f6503375e92d5f1e856",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xd7df5863a3e742f0c767768cdfcb63f09e0422f6",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xd7df5863a3e742f0c767768cdfcb63f09e0422f6-1760923233924.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xd7df5863a3e742f0c767768cdfcb63f09e0422f6-1760923233924.png"
+ ],
+ "name": "Meta Platforms (Ondo Tokenized)",
+ "symbol": "METAon",
+ "marketCap": "1571213291779",
+ "price": "614.555295144030774555",
+ "priceChange24hPercent": "-0.02",
+ "volume24h": "9847481192.01",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "Meta",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0xd7df5863a3e742f0c767768cdfcb63f09e0422f6",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x995add4ba29a628a57930a8a185c62ca044ec090",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x995add4ba29a628a57930a8a185c62ca044ec090-1760923223388.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x995add4ba29a628a57930a8a185c62ca044ec090-1760923223388.png"
+ ],
+ "name": "McDonald's (Ondo Tokenized)",
+ "symbol": "MCDon",
+ "marketCap": "181669279140",
+ "price": "261.414735153891492023",
+ "priceChange24hPercent": "-0.12",
+ "volume24h": "1069340837.13",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "麦当劳",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x995add4ba29a628a57930a8a185c62ca044ec090",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x0eaa1a75bd682a5669ab2371a559fbd039c6b9eb",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x0eaa1a75bd682a5669ab2371a559fbd039c6b9eb-1760923292006.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x0eaa1a75bd682a5669ab2371a559fbd039c6b9eb-1760923292006.png"
+ ],
+ "name": "Palo Alto Networks (Ondo Tokenized)",
+ "symbol": "PANWon",
+ "marketCap": "271606900000",
+ "price": "333.65",
+ "priceChange24hPercent": "0.1",
+ "volume24h": "1879381111.84",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "帕洛阿尔托网络",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x0eaa1a75bd682a5669ab2371a559fbd039c6b9eb",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xa7d1e886acf66ec0656df2decb4b7c893a3bab4c",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xa7d1e886acf66ec0656df2decb4b7c893a3bab4c-1760923620884.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xa7d1e886acf66ec0656df2decb4b7c893a3bab4c-1760923620884.png"
+ ],
+ "name": "Walmart (Ondo Tokenized Stock)",
+ "symbol": "WMTON",
+ "marketCap": "852628691200",
+ "price": "107.242391409320952249",
+ "priceChange24hPercent": "-0.47",
+ "volume24h": "2200706170.08",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "沃尔玛",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0xa7d1e886acf66ec0656df2decb4b7c893a3bab4c",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xecc1299f183b6a720a6f4729bf24f82cd8d50828",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xecc1299f183b6a720a6f4729bf24f82cd8d50828-1760923402510.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xecc1299f183b6a720a6f4729bf24f82cd8d50828-1760923402510.png"
+ ],
+ "name": "Toyota (Ondo Tokenized Stock)",
+ "symbol": "TMON",
+ "marketCap": "233414630448",
+ "price": "197.584090494197418125",
+ "priceChange24hPercent": "1.15",
+ "volume24h": "64367650.27",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "丰田",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0xecc1299f183b6a720a6f4729bf24f82cd8d50828",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xef80743f78d98fc2b47a2253b293152ce8b879ba",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xef80743f78d98fc2b47a2253b293152ce8b879ba-1760922268573.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xef80743f78d98fc2b47a2253b293152ce8b879ba-1760922268573.png"
+ ],
+ "name": "Airbnb (Ondo Tokenized Stock)",
+ "symbol": "ABNBON",
+ "marketCap": "107983869660",
+ "price": "181.313333",
+ "priceChange24hPercent": "-0.66",
+ "volume24h": "620194706.78",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "爱彼迎",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0xef80743f78d98fc2b47a2253b293152ce8b879ba",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ }
+ ],
+ "stocks||24h|market__tab__ai_tech": [
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xa9ee28c80f960b889dfbd1902055218cba016f75",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xa9ee28c80f960b889dfbd1902055218cba016f75-1760923276163.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xa9ee28c80f960b889dfbd1902055218cba016f75-1760923276163.png"
+ ],
+ "name": "NVIDIA (Ondo Tokenized)",
+ "symbol": "NVDAon",
+ "marketCap": "5579549560000",
+ "price": "233.18030531293853192",
+ "priceChange24hPercent": "0.56",
+ "volume24h": "31179783471.2",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "英伟达",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0xa9ee28c80f960b889dfbd1902055218cba016f75",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x8b6acf6041a81567f012ff6a4c6d96d5818d74bf",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x8b6acf6041a81567f012ff6a4c6d96d5818d74bf-1760923255049.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x8b6acf6041a81567f012ff6a4c6d96d5818d74bf-1760923255049.png"
+ ],
+ "name": "Micron Technology (Ondo Tokenized)",
+ "symbol": "MUon",
+ "marketCap": "1148126580100",
+ "price": "1055.805608023373639527",
+ "priceChange24hPercent": "1.28",
+ "volume24h": "35834308520.21",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "美光科技",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x8b6acf6041a81567f012ff6a4c6d96d5818d74bf",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x9f16e46c73b43bdb70861247d537bee4ea18f639",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x9f16e46c73b43bdb70861247d537bee4ea18f639-1760922831860.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x9f16e46c73b43bdb70861247d537bee4ea18f639-1760922831860.png"
+ ],
+ "name": "AMD (Ondo Tokenized)",
+ "symbol": "AMDon",
+ "marketCap": "778725642000",
+ "price": "487.975263",
+ "priceChange24hPercent": "1.18",
+ "volume24h": "9397976816.94",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "超威半导体",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x9f16e46c73b43bdb70861247d537bee4ea18f639",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x0ed2e3180edf393e6bf8db124bd15ddd54de150a",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x0ed2e3180edf393e6bf8db124bd15ddd54de150a-1760922985968.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x0ed2e3180edf393e6bf8db124bd15ddd54de150a-1760922985968.png"
+ ],
+ "name": "Broadcom (Ondo Tokenized)",
+ "symbol": "AVGOon",
+ "marketCap": "1702714094100",
+ "price": "364.792451018770787223",
+ "priceChange24hPercent": "0.24",
+ "volume24h": "11761598227.175",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "博通",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x0ed2e3180edf393e6bf8db124bd15ddd54de150a",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xc37042a7a4fa510d8884a433762ab87257b91965",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xc37042a7a4fa510d8884a433762ab87257b91965-1760923413025.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xc37042a7a4fa510d8884a433762ab87257b91965-1760923413025.png"
+ ],
+ "name": "Taiwan Semiconductor Manufacturing (Ondo Tokenized)",
+ "symbol": "TSMon",
+ "marketCap": "2224533136800",
+ "price": "438.018182406245951052",
+ "priceChange24hPercent": "0.37",
+ "volume24h": "5261764083.780001",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "台积电",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0xc37042a7a4fa510d8884a433762ab87257b91965",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xa528caaa2f96090e379d43f90834c75df54d6e74",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xa528caaa2f96090e379d43f90834c75df54d6e74-1760923148597.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xa528caaa2f96090e379d43f90834c75df54d6e74-1760923148597.png"
+ ],
+ "name": "Intel (Ondo Tokenized)",
+ "symbol": "INTCon",
+ "marketCap": "483215175763",
+ "price": "100.597692",
+ "priceChange24hPercent": "1.6",
+ "volume24h": "9355284335",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "英特尔",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0xa528caaa2f96090e379d43f90834c75df54d6e74",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xc142ba8ccd36d80c3a001342fb83e4c3d218a873",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xc142ba8ccd36d80c3a001342fb83e4c3d218a873-1760923376180.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xc142ba8ccd36d80c3a001342fb83e4c3d218a873-1760923376180.png"
+ ],
+ "name": "Super Micro Computer (Ondo Tokenized)",
+ "symbol": "SMCIon",
+ "marketCap": "25609702070",
+ "price": "40.042662",
+ "priceChange24hPercent": "1.47",
+ "volume24h": "2123337279.4800003",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "超微电脑",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0xc142ba8ccd36d80c3a001342fb83e4c3d218a873",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x5ecc352c4640f1d26bd231dbbd171f40f7d0eec6",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x5ecc352c4640f1d26bd231dbbd171f40f7d0eec6-1767888045927.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x5ecc352c4640f1d26bd231dbbd171f40f7d0eec6-1767888045927.png"
+ ],
+ "name": "Applied Materials (Ondo Tokenized)",
+ "symbol": "AMATon",
+ "marketCap": "361021096890",
+ "price": "468.39278701627463619",
+ "priceChange24hPercent": "2.68",
+ "volume24h": "2735913224.0099998",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "应用材料",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x5ecc352c4640f1d26bd231dbbd171f40f7d0eec6",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xb034f6cb52b7f2fd5a7eeeffca6b9adcd6b9a6f6",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xb034f6cb52b7f2fd5a7eeeffca6b9adcd6b9a6f6-1760922980249.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xb034f6cb52b7f2fd5a7eeeffca6b9adcd6b9a6f6-1760922980249.png"
+ ],
+ "name": "ASML Holding NV (Ondo Tokenized)",
+ "symbol": "ASMLon",
+ "marketCap": "660945604406",
+ "price": "1758.414946497724440837",
+ "priceChange24hPercent": "2.21",
+ "volume24h": "2211546975.36",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "阿斯麦",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0xb034f6cb52b7f2fd5a7eeeffca6b9adcd6b9a6f6",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x1501ec83ffef405b4331cc4f73277a40fb0c627d",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x1501ec83ffef405b4331cc4f73277a40fb0c627d-1760923239312.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x1501ec83ffef405b4331cc4f73277a40fb0c627d-1760923239312.png"
+ ],
+ "name": "Marvell Technology (Ondo Tokenized)",
+ "symbol": "MRVLon",
+ "marketCap": "195777489300",
+ "price": "229.524776103399458333",
+ "priceChange24hPercent": "2.41",
+ "volume24h": "4743302231.1",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "迈威尔科技",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x1501ec83ffef405b4331cc4f73277a40fb0c627d",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x527c6436e1eaa4f2065cde4090f798cb5d031dd6",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x527c6436e1eaa4f2065cde4090f798cb5d031dd6-1760922974777.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x527c6436e1eaa4f2065cde4090f798cb5d031dd6-1760922974777.png"
+ ],
+ "name": "Arm Holdings plc (Ondo Tokenized)",
+ "symbol": "ARMon",
+ "marketCap": "269231759259",
+ "price": "261.0225",
+ "priceChange24hPercent": "2.2",
+ "volume24h": "1041739741.08",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "安谋",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x527c6436e1eaa4f2065cde4090f798cb5d031dd6",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xe8ff70859ce4cbd72e4352b4fb45f5bf39d07464",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xe8ff70859ce4cbd72e4352b4fb45f5bf39d07464-1760923127124.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xe8ff70859ce4cbd72e4352b4fb45f5bf39d07464-1760923127124.png"
+ ],
+ "name": "IBM (Ondo Tokenized Stock)",
+ "symbol": "IBMON",
+ "marketCap": "221297855260",
+ "price": "239.939607742091185163",
+ "priceChange24hPercent": "-0.04",
+ "volume24h": "717698173.8499999",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "国际商业机器",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0xe8ff70859ce4cbd72e4352b4fb45f5bf39d07464",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x4fd67cb8cfedc718bac984b5936abe3330d0a2a4",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x4fd67cb8cfedc718bac984b5936abe3330d0a2a4-1773890603767.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x4fd67cb8cfedc718bac984b5936abe3330d0a2a4-1773890603767.png"
+ ],
+ "name": "SanDisk (Ondo Tokenized)",
+ "symbol": "SNDKON",
+ "marketCap": "257676165000",
+ "price": "1813.141716",
+ "priceChange24hPercent": "1.53",
+ "volume24h": "28809122580",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "闪迪",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x4fd67cb8cfedc718bac984b5936abe3330d0a2a4",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xfbd4d681c92ead6af0e49950c8b2e47eeacbb2db",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xfbd4d681c92ead6af0e49950c8b2e47eeacbb2db-1760923334398.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xfbd4d681c92ead6af0e49950c8b2e47eeacbb2db-1760923334398.png"
+ ],
+ "name": "Qualcomm (Ondo Tokenized Stock)",
+ "symbol": "QCOMON",
+ "marketCap": "177177000000",
+ "price": "174.693612375015163222",
+ "priceChange24hPercent": "1.84",
+ "volume24h": "1440555484.94",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "高通",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0xfbd4d681c92ead6af0e49950c8b2e47eeacbb2db",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ }
+ ],
+ "stocks||24h|market__tab__etfs": [
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x6a708ead771238919d85930b5a0f10454e1c331a",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x6a708ead771238919d85930b5a0f10454e1c331a-1760921581963.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x6a708ead771238919d85930b5a0f10454e1c331a-1760921581963.png"
+ ],
+ "name": "SPDR S&P 500 ETF (Ondo Tokenized)",
+ "symbol": "SPYon",
+ "marketCap": "820435829283",
+ "price": "776.141056177460214449",
+ "priceChange24hPercent": "0.01",
+ "volume24h": "25385765084.670002",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "标普500 ETF",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x6a708ead771238919d85930b5a0f10454e1c331a",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x0cde6936d305d5b34667fc46425e852efd73559a",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x0cde6936d305d5b34667fc46425e852efd73559a-1760923339182.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x0cde6936d305d5b34667fc46425e852efd73559a-1760923339182.png"
+ ],
+ "name": "Invesco QQQ (Ondo Tokenized)",
+ "symbol": "QQQon",
+ "marketCap": "512284401576",
+ "price": "725.686548519952709569",
+ "priceChange24hPercent": "0.32",
+ "volume24h": "23632988800.960003",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "纳指ETF",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x0cde6936d305d5b34667fc46425e852efd73559a",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xe42cfb20e00912409b77a602b5bdcff3c7acc5f4",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xe42cfb20e00912409b77a602b5bdcff3c7acc5f4-1768032381719.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xe42cfb20e00912409b77a602b5bdcff3c7acc5f4-1768032381719.png"
+ ],
+ "name": "ProShares UltraPro QQQ (Ondo Tokenized)",
+ "symbol": "TQQQon",
+ "marketCap": "44436706139",
+ "price": "73.845438057857333962",
+ "priceChange24hPercent": "1.87",
+ "volume24h": "3426881608.8",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "三倍做多纳指ETF",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0xe42cfb20e00912409b77a602b5bdcff3c7acc5f4",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xf69e40069ac227c11459e3f4e8a446b3401616b6",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xf69e40069ac227c11459e3f4e8a446b3401616b6-1760923398719.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xf69e40069ac227c11459e3f4e8a446b3401616b6-1760923398719.png"
+ ],
+ "name": "iShares 20+ Year Treasury Bond ETF (Ondo Tokenized)",
+ "symbol": "TLTon",
+ "marketCap": "41558996997",
+ "price": "85.978427962124070646",
+ "priceChange24hPercent": "0.16",
+ "volume24h": "1364023798.4499998",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "20年国债ETF",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0xf69e40069ac227c11459e3f4e8a446b3401616b6",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x22092c94a91d019ad15536725598b0a6be0a73c0",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x22092c94a91d019ad15536725598b0a6be0a73c0-1760923137786.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x22092c94a91d019ad15536725598b0a6be0a73c0-1760923137786.png"
+ ],
+ "name": "iShares Core MSCI Emerging Markets ETF (Ondo Tokenized)",
+ "symbol": "IEMGon",
+ "marketCap": "171167801924",
+ "price": "85.994643507231392039",
+ "priceChange24hPercent": "0.89",
+ "volume24h": "577001471.9000001",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "核心新兴市场ETF",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x22092c94a91d019ad15536725598b0a6be0a73c0",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xcf9caf83053213c44dd7027db3e1e4ac98e55f8f",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xcf9caf83053213c44dd7027db3e1e4ac98e55f8f-1760976491888.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xcf9caf83053213c44dd7027db3e1e4ac98e55f8f-1760976491888.png"
+ ],
+ "name": "iShares Core S&P Total US Stock Market ETF (Ondo Tokenized ETF)",
+ "symbol": "ITOTON",
+ "marketCap": "95625104840",
+ "price": "169.804819587832307416",
+ "priceChange24hPercent": "--",
+ "volume24h": "169106458.23999998",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "美股全市场ETF",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0xcf9caf83053213c44dd7027db3e1e4ac98e55f8f",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x00c81d35eddf44c75d4db9e07bdcdc236eb0ebcf",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x00c81d35eddf44c75d4db9e07bdcdc236eb0ebcf-1760923060271.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x00c81d35eddf44c75d4db9e07bdcdc236eb0ebcf-1760923060271.png"
+ ],
+ "name": "iShares MSCI Emerging Markets ETF (Ondo Tokenized ETF)",
+ "symbol": "EEMON",
+ "marketCap": "32146260773",
+ "price": "70.550489448583953469",
+ "priceChange24hPercent": "1.26",
+ "volume24h": "1506651730.8",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "新兴市场ETF",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x00c81d35eddf44c75d4db9e07bdcdc236eb0ebcf",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x500eafc69b68acd6f27064f9b75f1c7d91cc4d9f",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x500eafc69b68acd6f27064f9b75f1c7d91cc4d9f-1760923169588.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x500eafc69b68acd6f27064f9b75f1c7d91cc4d9f-1760923169588.png"
+ ],
+ "name": "iShares Russell 2000 ETF (Ondo Tokenized ETF)",
+ "symbol": "IWMON",
+ "marketCap": "81417408119",
+ "price": "297.748095366553568352",
+ "priceChange24hPercent": "0.02",
+ "volume24h": "4113713428.1099997",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "罗素2000 ETF",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x500eafc69b68acd6f27064f9b75f1c7d91cc4d9f",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x12b7adc48416a103f63e7e6210f62c81dfb91fd0",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x12b7adc48416a103f63e7e6210f62c81dfb91fd0-1773890376568.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x12b7adc48416a103f63e7e6210f62c81dfb91fd0-1773890376568.png"
+ ],
+ "name": "iShares MSCI South Korea ETF (Ondo Tokenized)",
+ "symbol": "EWYON",
+ "marketCap": "14278571056",
+ "price": "194.898272",
+ "priceChange24hPercent": "3.95",
+ "volume24h": "3455448231.73",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "iShares MSCI韩国ETF",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x12b7adc48416a103f63e7e6210f62c81dfb91fd0",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xc008c5f579ec1450f20099c39f587547e27c7523",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xc008c5f579ec1450f20099c39f587547e27c7523-1768185634202.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xc008c5f579ec1450f20099c39f587547e27c7523-1768185634202.png"
+ ],
+ "name": "iShares 0-3 Month Treasury Bond ETF (Ondo Tokenized ETF)",
+ "symbol": "SGOVON",
+ "marketCap": "95942590920",
+ "price": "102.324784764508258885",
+ "priceChange24hPercent": "--",
+ "volume24h": "2053722039.09",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "iShares 0-3个月国债ETF",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0xc008c5f579ec1450f20099c39f587547e27c7523",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ }
+ ],
+ "stocks||24h|market__tab__crypto": [
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x992879cd8ce0c312d98648875b5a8d6d042cbf34",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x992879cd8ce0c312d98648875b5a8d6d042cbf34-1760923032790.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x992879cd8ce0c312d98648875b5a8d6d042cbf34-1760923032790.png"
+ ],
+ "name": "Circle Internet Group (Ondo Tokenized)",
+ "symbol": "CRCLon",
+ "marketCap": "27277014302",
+ "price": "101.983108",
+ "priceChange24hPercent": "-1.98",
+ "volume24h": "1440248998.5",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "Circle Internet Group",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x992879cd8ce0c312d98648875b5a8d6d042cbf34",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x7313ea16493b2f55054df0131a3a14b043ec8992",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x7313ea16493b2f55054df0131a3a14b043ec8992-1760923249909.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x7313ea16493b2f55054df0131a3a14b043ec8992-1760923249909.png"
+ ],
+ "name": "MicroStrategy (Ondo Tokenized)",
+ "symbol": "MSTRon",
+ "marketCap": "47239382400",
+ "price": "141.505263",
+ "priceChange24hPercent": "-1.98",
+ "volume24h": "3878826420.0000005",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "微策略",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x7313ea16493b2f55054df0131a3a14b043ec8992",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x19601179a60f55ff6636f5d1a8b6671053bd60a8",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x19601179a60f55ff6636f5d1a8b6671053bd60a8-1760923113456.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x19601179a60f55ff6636f5d1a8b6671053bd60a8-1760923113456.png"
+ ],
+ "name": "Robinhood Markets (Ondo Tokenized)",
+ "symbol": "HOODon",
+ "marketCap": "109786941485",
+ "price": "123.076667",
+ "priceChange24hPercent": "0.85",
+ "volume24h": "2897993280.95",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "罗宾汉",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x19601179a60f55ff6636f5d1a8b6671053bd60a8",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xf8589b526fdd65f7f301c605a6e04f0f1b4b3620",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xf8589b526fdd65f7f301c605a6e04f0f1b4b3620-1761749966569.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xf8589b526fdd65f7f301c605a6e04f0f1b4b3620-1761749966569.png"
+ ],
+ "name": "Coinbase (Ondo Tokenized)",
+ "symbol": "COINon",
+ "marketCap": "48714333394",
+ "price": "183.831667",
+ "priceChange24hPercent": "-1.12",
+ "volume24h": "1509934590.08",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "Coinbase",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0xf8589b526fdd65f7f301c605a6e04f0f1b4b3620",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x9351abd19f42101dd36025e495b98e910b255d78",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x9351abd19f42101dd36025e495b98e910b255d78-1760923318304.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x9351abd19f42101dd36025e495b98e910b255d78-1760923318304.png"
+ ],
+ "name": "Palantir Technologies (Ondo Tokenized)",
+ "symbol": "PLTRon",
+ "marketCap": "400273883100",
+ "price": "174.182857",
+ "priceChange24hPercent": "-0.31",
+ "volume24h": "4874798157.84",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "帕兰提尔",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x9351abd19f42101dd36025e495b98e910b255d78",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x52ad57a7ea642e99a892afc79e937b383f1b59e9",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x52ad57a7ea642e99a892afc79e937b383f1b59e9-1768032941245.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x52ad57a7ea642e99a892afc79e937b383f1b59e9-1768032941245.png"
+ ],
+ "name": "BitMine Immersion Technologies (Ondo Tokenized)",
+ "symbol": "BMNRon",
+ "marketCap": "14222332846",
+ "price": "25.220087",
+ "priceChange24hPercent": "0.99",
+ "volume24h": "1155029873.9099998",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "BitMine",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x52ad57a7ea642e99a892afc79e937b383f1b59e9",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x8fd70ee385f470c8d6fda2d93a4e49c849bac6a6",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x8fd70ee385f470c8d6fda2d93a4e49c849bac6a6-1767883597793.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x8fd70ee385f470c8d6fda2d93a4e49c849bac6a6-1767883597793.png"
+ ],
+ "name": "IREN (Ondo Tokenized)",
+ "symbol": "IRENon",
+ "marketCap": "15944391045",
+ "price": "45.389089",
+ "priceChange24hPercent": "2.29",
+ "volume24h": "1620373503.24",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "IREN",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x8fd70ee385f470c8d6fda2d93a4e49c849bac6a6",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xc4a88a72b848255fd24da3c1ad6755d980535fb1",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xc4a88a72b848255fd24da3c1ad6755d980535fb1-1760923349554.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xc4a88a72b848255fd24da3c1ad6755d980535fb1-1760923349554.png"
+ ],
+ "name": "Riot Platforms (Ondo Tokenized)",
+ "symbol": "RIOTon",
+ "marketCap": "8243696814",
+ "price": "21.664",
+ "priceChange24hPercent": "-0.09",
+ "volume24h": "335036003.2",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "Riot平台",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0xc4a88a72b848255fd24da3c1ad6755d980535fb1",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ }
+ ],
+ "stocks||24h|market__tab__healthcare": [
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x3385cb29cca0ac66f5d2354d13ef977b49a2510f",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x3385cb29cca0ac66f5d2354d13ef977b49a2510f-1760923604445.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x3385cb29cca0ac66f5d2354d13ef977b49a2510f-1760923604445.png"
+ ],
+ "name": "UnitedHealth (Ondo Tokenized)",
+ "symbol": "UNHon",
+ "marketCap": "360660468605",
+ "price": "402.98451011334612462",
+ "priceChange24hPercent": "-0.26",
+ "volume24h": "1916737036.1399999",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "联合健康",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x3385cb29cca0ac66f5d2354d13ef977b49a2510f",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x341d31b2be1fee9c00e395a62ba41837f4322eed",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x341d31b2be1fee9c00e395a62ba41837f4322eed-1760923201079.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x341d31b2be1fee9c00e395a62ba41837f4322eed-1760923201079.png"
+ ],
+ "name": "Eli Lilly (Ondo Tokenized)",
+ "symbol": "LLYon",
+ "marketCap": "1081307016200",
+ "price": "1149.397318656767340512",
+ "priceChange24hPercent": "-0.16",
+ "volume24h": "2468999720.4",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "礼来",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x341d31b2be1fee9c00e395a62ba41837f4322eed",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x5a20886b575058dd7299785f0ea9b1172942a3e0",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x5a20886b575058dd7299785f0ea9b1172942a3e0-1760922274158.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x5a20886b575058dd7299785f0ea9b1172942a3e0-1760922274158.png"
+ ],
+ "name": "Abbott (Ondo Tokenized)",
+ "symbol": "ABTon",
+ "marketCap": "187435126855",
+ "price": "109.426019691944889332",
+ "priceChange24hPercent": "-1.04",
+ "volume24h": "744744194.56",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "雅培",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x5a20886b575058dd7299785f0ea9b1172942a3e0",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x4693f6f5ef257381a28afd0673e64d8b32d5c6ad",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x4693f6f5ef257381a28afd0673e64d8b32d5c6ad-1760923111457.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x4693f6f5ef257381a28afd0673e64d8b32d5c6ad-1760923111457.png"
+ ],
+ "name": "Hims & Hers Health (Ondo Tokenized)",
+ "symbol": "HIMSon",
+ "marketCap": "6181546800",
+ "price": "27.746",
+ "priceChange24hPercent": "-0.21",
+ "volume24h": "182854493.73000002",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "Hims & Hers",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x4693f6f5ef257381a28afd0673e64d8b32d5c6ad",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x8a83c31d6751833b4940b6e871c48d9a15a07b46",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x8a83c31d6751833b4940b6e871c48d9a15a07b46-1760923307953.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x8a83c31d6751833b4940b6e871c48d9a15a07b46-1760923307953.png"
+ ],
+ "name": "Pfizer (Ondo Tokenized Stock)",
+ "symbol": "PFEON",
+ "marketCap": "162149068000",
+ "price": "30.045669965608379961",
+ "priceChange24hPercent": "-0.39",
+ "volume24h": "669415327.65",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "辉瑞",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x8a83c31d6751833b4940b6e871c48d9a15a07b46",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ }
+ ],
+ "stocks||24h|market__tab__energy": [
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xd3113a0ad20a46f6a662c63fe8e637f7713e59c7",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xd3113a0ad20a46f6a662c63fe8e637f7713e59c7-1760923043289.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xd3113a0ad20a46f6a662c63fe8e637f7713e59c7-1760923043289.png"
+ ],
+ "name": "Chevron (Ondo Tokenized)",
+ "symbol": "CVXon",
+ "marketCap": "415308348000",
+ "price": "214.127850846968341467",
+ "priceChange24hPercent": "-0.1",
+ "volume24h": "1122138299.52",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "雪佛龙",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0xd3113a0ad20a46f6a662c63fe8e637f7713e59c7",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x4d209d275e3492ac08497a7a42915899c4dd5e86",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x4d209d275e3492ac08497a7a42915899c4dd5e86-1768378192726.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x4d209d275e3492ac08497a7a42915899c4dd5e86-1768378192726.png"
+ ],
+ "name": "Exxon Mobil (Ondo Tokenized)",
+ "symbol": "XOMon",
+ "marketCap": "660875591600",
+ "price": "161.929674995637777397",
+ "priceChange24hPercent": "0.06",
+ "volume24h": "2537206808.78",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "埃克森美孚",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x4d209d275e3492ac08497a7a42915899c4dd5e86",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x01b5a4ac600be98448dbefbb78bcdf38262552cc",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x01b5a4ac600be98448dbefbb78bcdf38262552cc-1768118550219.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x01b5a4ac600be98448dbefbb78bcdf38262552cc-1768118550219.png"
+ ],
+ "name": "Occidental Petroleum (Ondo Tokenized)",
+ "symbol": "OXYON",
+ "marketCap": "59717867448",
+ "price": "60.427368985063029401",
+ "priceChange24hPercent": "--",
+ "volume24h": "400488654.56",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "西方石油",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x01b5a4ac600be98448dbefbb78bcdf38262552cc",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x2b1d5cdecc356530a746c5754231efaeaca64022",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x2b1d5cdecc356530a746c5754231efaeaca64022-1760923297458.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x2b1d5cdecc356530a746c5754231efaeaca64022-1760923297458.png"
+ ],
+ "name": "Petrobras (Ondo Tokenized Stock)",
+ "symbol": "PBRON",
+ "marketCap": "129660646415",
+ "price": "20.856197511015279798",
+ "priceChange24hPercent": "-0.22",
+ "volume24h": "377829496.24",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "巴西石油",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x2b1d5cdecc356530a746c5754231efaeaca64022",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ }
+ ],
+ "stocks||24h|market__tab__china_tech": [
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xd5964f3fcee8d649995ab88f04b8982539c282d2",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xd5964f3fcee8d649995ab88f04b8982539c282d2-1760922996465.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xd5964f3fcee8d649995ab88f04b8982539c282d2-1760922996465.png"
+ ],
+ "name": "Alibaba (Ondo Tokenized)",
+ "symbol": "BABAon",
+ "marketCap": "271421798529",
+ "price": "112.499497934947570659",
+ "priceChange24hPercent": "-1.46",
+ "volume24h": "810668853.4399999",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "阿里巴巴",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0xd5964f3fcee8d649995ab88f04b8982539c282d2",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xf3e82ea164cb344b2b11bad4c24b0ea4f7ba4714",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xf3e82ea164cb344b2b11bad4c24b0ea4f7ba4714-1767945976873.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xf3e82ea164cb344b2b11bad4c24b0ea4f7ba4714-1767945976873.png"
+ ],
+ "name": "PDD Holdings (Ondo Tokenized)",
+ "symbol": "PDDon",
+ "marketCap": "117017422072",
+ "price": "81.560326",
+ "priceChange24hPercent": "-0.94",
+ "volume24h": "382935002.09999996",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "拼多多",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0xf3e82ea164cb344b2b11bad4c24b0ea4f7ba4714",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x467e59ce5d5fe01686d4a80dd1e1dae13549aa6c",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x467e59ce5d5fe01686d4a80dd1e1dae13549aa6c-1760515402441.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x467e59ce5d5fe01686d4a80dd1e1dae13549aa6c-1760515402441.png"
+ ],
+ "name": "Baidu (Ondo Tokenized)",
+ "symbol": "BIDUon",
+ "marketCap": "33832211369",
+ "price": "92.292027",
+ "priceChange24hPercent": "-7.17",
+ "volume24h": "256503090.06",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "百度",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x467e59ce5d5fe01686d4a80dd1e1dae13549aa6c",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ }
+ ],
+ "stocks||24h|market__tab__commodities": [
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x8b872732b07be325a8803cdb480d9d20b6f8d11b",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x8b872732b07be325a8803cdb480d9d20b6f8d11b-1760923370870.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x8b872732b07be325a8803cdb480d9d20b6f8d11b-1760923370870.png"
+ ],
+ "name": "iShares Silver Trust (Ondo Tokenized)",
+ "symbol": "SLVon",
+ "marketCap": "32192820451",
+ "price": "60.613516",
+ "priceChange24hPercent": "3.36",
+ "volume24h": "751852335.96",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "白银ETF",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x8b872732b07be325a8803cdb480d9d20b6f8d11b",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xcb2a0f46f67dc4c58a316f1c008edef5c2311795",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xcb2a0f46f67dc4c58a316f1c008edef5c2311795-1760923121884.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xcb2a0f46f67dc4c58a316f1c008edef5c2311795-1760923121884.png"
+ ],
+ "name": "iShares Gold Trust (Ondo Tokenized)",
+ "symbol": "IAUon",
+ "marketCap": "65795429989",
+ "price": "83.510002",
+ "priceChange24hPercent": "0.23",
+ "volume24h": "415966081.39",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "iShares黄金ETF",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0xcb2a0f46f67dc4c58a316f1c008edef5c2311795",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0x3fcd741646a9790635b938cdb69af5df356cbaab",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x3fcd741646a9790635b938cdb69af5df356cbaab-1768118974994.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0x3fcd741646a9790635b938cdb69af5df356cbaab-1768118974994.png"
+ ],
+ "name": "abrdn Physical Palladium Shares ETF (Ondo Tokenized)",
+ "symbol": "PALLon",
+ "marketCap": "662462421",
+ "price": "127.025",
+ "priceChange24hPercent": "1.16",
+ "volume24h": "18618111.93",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "钯金ETF",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0x3fcd741646a9790635b938cdb69af5df356cbaab",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ }
+ ],
+ "stocks||24h|market__tab__aerospace": [
+ {
+ "isNative": false,
+ "networkId": "evm--56",
+ "address": "0xd09f7b75b9659b864c6f82bb00ff096f9d277998",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xd09f7b75b9659b864c6f82bb00ff096f9d277998-1760923206785.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--56/tokens/address-0xd09f7b75b9659b864c6f82bb00ff096f9d277998-1760923206785.png"
+ ],
+ "name": "Lockheed (Ondo Tokenized)",
+ "symbol": "LMTon",
+ "marketCap": "121229896480",
+ "price": "537.114604097175250464",
+ "priceChange24hPercent": "-0.19",
+ "volume24h": "495034902.88",
+ "communityRecognized": false,
+ "stock": {
+ "title": "由 Ondo Finance 代币化发行",
+ "subtitle": "洛克希德马丁",
+ "source": "ondo",
+ "sourceLogoUri": "https://uni.onekey-asset.com/static/logo/ondo.png",
+ "isOpen": true,
+ "description": "Ondo 的代币化证券支持 24/5 交易。价格更新和交易活动遵循美国市场时间,并将在交易暂停或休市期间暂停。"
+ },
+ "key": "evm--56:0xd09f7b75b9659b864c6f82bb00ff096f9d277998",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "networkName": "Binance Smart Chain",
+ "networkLogoUrl": "https://uni.onekey-asset.com/static/chain/bsc.png"
+ }
+ ],
+ "robinhood_meme||5m|all": [
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x39dbed3a2bd333467115de45665cc57f813c4571",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x39dbed3a2bd333467115de45665cc57f813c4571-1785145437955.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x39dbed3a2bd333467115de45665cc57f813c4571-1785145437955.png"
+ ],
+ "name": "Pons",
+ "symbol": "PONS",
+ "marketCap": "502022018.508028785669424106",
+ "price": "0.71717848311520679734",
+ "priceChange24hPercent": "0.53",
+ "volume24h": "383629.1440529709414042",
+ "communityRecognized": true,
+ "key": "evm--4663:0x39dbed3a2bd333467115de45665cc57f813c4571",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x020bfc650a365f8bb26819deaabf3e21291018b4",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x020bfc650a365f8bb26819deaabf3e21291018b4-1784778353843.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x020bfc650a365f8bb26819deaabf3e21291018b4-1784778353843.png"
+ ],
+ "name": "Cash Cat",
+ "symbol": "CASHCAT",
+ "marketCap": "188581610.80185770225929897",
+ "price": "0.19084952071561432263",
+ "priceChange24hPercent": "0.84",
+ "volume24h": "52058.6734423102728966",
+ "communityRecognized": true,
+ "key": "evm--4663:0x020bfc650a365f8bb26819deaabf3e21291018b4",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xe170dc96ca10103e0d4c5d9293c5a3a72ee365a5",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xe170dc96ca10103e0d4c5d9293c5a3a72ee365a5-1785059757195.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xe170dc96ca10103e0d4c5d9293c5a3a72ee365a5-1785059757195.png"
+ ],
+ "name": "Little John",
+ "symbol": "JOHN",
+ "marketCap": "8802.53080883729502627",
+ "price": "0.0000088025308088373",
+ "priceChange24hPercent": "0",
+ "volume24h": "0",
+ "communityRecognized": false,
+ "key": "evm--4663:0xe170dc96ca10103e0d4c5d9293c5a3a72ee365a5",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xe934e36a439c94017b64a3fece66af12099abf50",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xe934e36a439c94017b64a3fece66af12099abf50-1785290631562.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xe934e36a439c94017b64a3fece66af12099abf50-1785290631562.png"
+ ],
+ "name": "StonkBroker",
+ "symbol": "STONKBROKER",
+ "marketCap": "20652805.024120563132606053",
+ "price": "0.01688272635986417616",
+ "priceChange24hPercent": "1.49",
+ "volume24h": "24949.68442122379511647289",
+ "communityRecognized": true,
+ "key": "evm--4663:0xe934e36a439c94017b64a3fece66af12099abf50",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x348cc963411fb82cd6e0b64345714fec94f242cb",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x348cc963411fb82cd6e0b64345714fec94f242cb-1787918436309.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x348cc963411fb82cd6e0b64345714fec94f242cb-1787918436309.png"
+ ],
+ "name": "Goose Token",
+ "symbol": "GOOSE",
+ "marketCap": "81393460.832387531242448284",
+ "price": "0.08139346083238753124",
+ "priceChange24hPercent": "0",
+ "volume24h": "0",
+ "communityRecognized": false,
+ "key": "evm--4663:0x348cc963411fb82cd6e0b64345714fec94f242cb",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x5cb6f181081301b44905f3ae15419112ecabd8a6",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x5cb6f181081301b44905f3ae15419112ecabd8a6-1785411923960.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x5cb6f181081301b44905f3ae15419112ecabd8a6-1785411923960.png"
+ ],
+ "name": "pipedog",
+ "symbol": "PIPEDOG",
+ "marketCap": "35769492.909630204770672297",
+ "price": "0.00289732894922953629",
+ "priceChange24hPercent": "-0.16",
+ "volume24h": "4776.435471492923028365",
+ "communityRecognized": true,
+ "key": "evm--4663:0x5cb6f181081301b44905f3ae15419112ecabd8a6",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x57c0e45cb534413d1c20a4240955d6bb250bb4f1",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x57c0e45cb534413d1c20a4240955d6bb250bb4f1-1785005199051.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x57c0e45cb534413d1c20a4240955d6bb250bb4f1-1785005199051.png"
+ ],
+ "name": "up",
+ "symbol": "UP",
+ "marketCap": "10939824.275003627272484814",
+ "price": "0.54014115573703348966",
+ "priceChange24hPercent": "1.25",
+ "volume24h": "3692.97522239957010554",
+ "communityRecognized": true,
+ "key": "evm--4663:0x57c0e45cb534413d1c20a4240955d6bb250bb4f1",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x0e0d2c89a5a019fe1cf762e5e33187631dacc21b",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x0e0d2c89a5a019fe1cf762e5e33187631dacc21b-1787400114210.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x0e0d2c89a5a019fe1cf762e5e33187631dacc21b-1787400114210.png"
+ ],
+ "name": "Chump Coin",
+ "symbol": "CHUMP",
+ "marketCap": "35977837.123296699878179831",
+ "price": "0.03597783749651078179",
+ "priceChange24hPercent": "-1.91",
+ "volume24h": "9249.730976559425433",
+ "communityRecognized": false,
+ "key": "evm--4663:0x0e0d2c89a5a019fe1cf762e5e33187631dacc21b",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x56910d4409f3a0c78c64dd8d0545ff0705389870",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x56910d4409f3a0c78c64dd8d0545ff0705389870-1784842044117.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x56910d4409f3a0c78c64dd8d0545ff0705389870-1784842044117.png"
+ ],
+ "name": "The Index",
+ "symbol": "Index",
+ "marketCap": "39076127.721770539963962651",
+ "price": "0.03985186707954164859",
+ "priceChange24hPercent": "0.07",
+ "volume24h": "6130.0835167832233727",
+ "communityRecognized": true,
+ "key": "evm--4663:0x56910d4409f3a0c78c64dd8d0545ff0705389870",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x18e674231a58c239dc7daedcffe15ec3a24cff5c",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x18e674231a58c239dc7daedcffe15ec3a24cff5c-1786190410593.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x18e674231a58c239dc7daedcffe15ec3a24cff5c-1786190410593.png"
+ ],
+ "name": "Hookr.fun",
+ "symbol": "HOOKR",
+ "marketCap": "16618445.208237637803108274",
+ "price": "0.0166791731104542394",
+ "priceChange24hPercent": "0.38",
+ "volume24h": "12190.439290870409997",
+ "communityRecognized": true,
+ "key": "evm--4663:0x18e674231a58c239dc7daedcffe15ec3a24cff5c",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x7fe995a80075df3dc8ae11a9b82c7fe4202cd87f",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x7fe995a80075df3dc8ae11a9b82c7fe4202cd87f-1785325956569.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x7fe995a80075df3dc8ae11a9b82c7fe4202cd87f-1785325956569.png"
+ ],
+ "name": "Thinking Cat",
+ "symbol": "HMM",
+ "marketCap": "13039576.030590609490030763",
+ "price": "0.01320187144939991148",
+ "priceChange24hPercent": "2.21",
+ "volume24h": "2415.302078470952857",
+ "communityRecognized": true,
+ "key": "evm--4663:0x7fe995a80075df3dc8ae11a9b82c7fe4202cd87f",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x45242320dbb855eea8fd36804c6487e10e97fcf9",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x45242320dbb855eea8fd36804c6487e10e97fcf9-1784778612504.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x45242320dbb855eea8fd36804c6487e10e97fcf9-1784778612504.png"
+ ],
+ "name": "TENDIES",
+ "symbol": "TENDIES",
+ "marketCap": "15418336.651928049187952375",
+ "price": "0.0161197596815997701",
+ "priceChange24hPercent": "0.28",
+ "volume24h": "328.961730312302788",
+ "communityRecognized": false,
+ "key": "evm--4663:0x45242320dbb855eea8fd36804c6487e10e97fcf9",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xca9c78dd337a67f6e0077f65f5e9218719d30edf",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xca9c78dd337a67f6e0077f65f5e9218719d30edf-1785280831816.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xca9c78dd337a67f6e0077f65f5e9218719d30edf-1785280831816.png"
+ ],
+ "name": "NetNet",
+ "symbol": "NET",
+ "marketCap": "3920472.764198924127605602",
+ "price": "668.59150927027122099446",
+ "priceChange24hPercent": "-0.05",
+ "volume24h": "4674.4240279092992571",
+ "communityRecognized": false,
+ "key": "evm--4663:0xca9c78dd337a67f6e0077f65f5e9218719d30edf",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xc72f232a6869e6cf34dc06129affd07f8a2a246a",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xc72f232a6869e6cf34dc06129affd07f8a2a246a-1786104032870.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xc72f232a6869e6cf34dc06129affd07f8a2a246a-1786104032870.png"
+ ],
+ "name": "Mancer",
+ "symbol": "MANCER",
+ "marketCap": "5440876.002220110409619299",
+ "price": "0.00217635040088804416",
+ "priceChange24hPercent": "0",
+ "volume24h": "0",
+ "communityRecognized": false,
+ "key": "evm--4663:0xc72f232a6869e6cf34dc06129affd07f8a2a246a",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x6245e67affa44a23077f0ea7f981a8dc743a0c47",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x6245e67affa44a23077f0ea7f981a8dc743a0c47-1785931207872.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x6245e67affa44a23077f0ea7f981a8dc743a0c47-1785931207872.png"
+ ],
+ "name": "frong",
+ "symbol": "FRONG",
+ "marketCap": "5491401.474828610941251233",
+ "price": "0.00549140147482861094",
+ "priceChange24hPercent": "0.19",
+ "volume24h": "835.8787699304115184",
+ "communityRecognized": false,
+ "key": "evm--4663:0x6245e67affa44a23077f0ea7f981a8dc743a0c47",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xee5576fa1bcaa380e591d01245f406f3f384eb01",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xee5576fa1bcaa380e591d01245f406f3f384eb01-1787832045009.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xee5576fa1bcaa380e591d01245f406f3f384eb01-1787832045009.png"
+ ],
+ "name": "Down to Finance",
+ "symbol": "DTF",
+ "marketCap": "8682703.707015428616989098",
+ "price": "0.00868270374727847651",
+ "priceChange24hPercent": "-1.03",
+ "volume24h": "5793.24223690745136",
+ "communityRecognized": false,
+ "key": "evm--4663:0xee5576fa1bcaa380e591d01245f406f3f384eb01",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x62c71cd34a52c30d894419cbcc55db2afa8032ea",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x62c71cd34a52c30d894419cbcc55db2afa8032ea-1785197280438.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x62c71cd34a52c30d894419cbcc55db2afa8032ea-1785197280438.png"
+ ],
+ "name": "YOLO",
+ "symbol": "YOLO",
+ "marketCap": "6110793.379760146105089284",
+ "price": "0.0062997870322002435",
+ "priceChange24hPercent": "-0.24",
+ "volume24h": "493.45197776168902",
+ "communityRecognized": false,
+ "key": "evm--4663:0x62c71cd34a52c30d894419cbcc55db2afa8032ea",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x451b42a15100c340ca12f7c66de06fac5ea2d751",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x451b42a15100c340ca12f7c66de06fac5ea2d751-1787832041620.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x451b42a15100c340ca12f7c66de06fac5ea2d751-1787832041620.png"
+ ],
+ "name": "Longbow",
+ "symbol": "BOW",
+ "marketCap": "5787414.729870295757998562",
+ "price": "0.00578741472987029576",
+ "priceChange24hPercent": "0.99",
+ "volume24h": "2669.273028467473932",
+ "communityRecognized": false,
+ "key": "evm--4663:0x451b42a15100c340ca12f7c66de06fac5ea2d751",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xf2915d1e3c1b0c769d0c756ec43f1c1f6c99cd03",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xf2915d1e3c1b0c769d0c756ec43f1c1f6c99cd03-1784861135802.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xf2915d1e3c1b0c769d0c756ec43f1c1f6c99cd03-1784861135802.png"
+ ],
+ "name": "Arrow",
+ "symbol": "ARROW",
+ "marketCap": "3472922.672130186445530038",
+ "price": "0.38588029898682948721",
+ "priceChange24hPercent": "0.51",
+ "volume24h": "236.762862785365715",
+ "communityRecognized": false,
+ "key": "evm--4663:0xf2915d1e3c1b0c769d0c756ec43f1c1f6c99cd03",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xb9972ca7188e511174947e3936a5315ac7073277",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xb9972ca7188e511174947e3936a5315ac7073277-1787400211008.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xb9972ca7188e511174947e3936a5315ac7073277-1787400211008.png"
+ ],
+ "name": "Prologue",
+ "symbol": "PROLOGUE",
+ "marketCap": "10867196.245258369257184329",
+ "price": "0.01086719624525836926",
+ "priceChange24hPercent": "4.01",
+ "volume24h": "18082.7900591936388073",
+ "communityRecognized": true,
+ "key": "evm--4663:0xb9972ca7188e511174947e3936a5315ac7073277",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xd7321801caae694090694ff55a9323139f043b88",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xd7321801caae694090694ff55a9323139f043b88-1784779777690.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xd7321801caae694090694ff55a9323139f043b88-1784779777690.png"
+ ],
+ "name": "The Juggernaut",
+ "symbol": "JUGGERNAUT",
+ "marketCap": "3019903.208555332697636294",
+ "price": "0.00322096834857655848",
+ "priceChange24hPercent": "2.11",
+ "volume24h": "1385.5612851333897125",
+ "communityRecognized": false,
+ "key": "evm--4663:0xd7321801caae694090694ff55a9323139f043b88",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x8ff92566f2e81bdd68edfaa8cde73942a723796b",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x8ff92566f2e81bdd68edfaa8cde73942a723796b-1784854679354.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x8ff92566f2e81bdd68edfaa8cde73942a723796b-1784854679354.png"
+ ],
+ "name": "ProjectVex",
+ "symbol": "VEX",
+ "marketCap": "2665179.099566858123776638",
+ "price": "0.00266517909956685812",
+ "priceChange24hPercent": "-1.08",
+ "volume24h": "845.3753960632374",
+ "communityRecognized": false,
+ "key": "evm--4663:0x8ff92566f2e81bdd68edfaa8cde73942a723796b",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xcebc0cfbc5dd0893a9e3b9d0f75b211ddf5934a0",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xcebc0cfbc5dd0893a9e3b9d0f75b211ddf5934a0-1788177871007.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xcebc0cfbc5dd0893a9e3b9d0f75b211ddf5934a0-1788177871007.png"
+ ],
+ "name": "clan.tech",
+ "symbol": "CLAN",
+ "marketCap": "1346087.777112335683918246",
+ "price": "0.00134608777721111461",
+ "priceChange24hPercent": "-2.82",
+ "volume24h": "1122.02801733353547",
+ "communityRecognized": false,
+ "key": "evm--4663:0xcebc0cfbc5dd0893a9e3b9d0f75b211ddf5934a0",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x232cdfc415d10b673845d83dc02ba2eabe7e30d1",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x232cdfc415d10b673845d83dc02ba2eabe7e30d1-1785412803768.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x232cdfc415d10b673845d83dc02ba2eabe7e30d1-1785412803768.png"
+ ],
+ "name": "What If",
+ "symbol": "IF",
+ "marketCap": "10586906.988923495786384388",
+ "price": "0.01168673691363227001",
+ "priceChange24hPercent": "1.13",
+ "volume24h": "9057.916599174288657",
+ "communityRecognized": false,
+ "key": "evm--4663:0x232cdfc415d10b673845d83dc02ba2eabe7e30d1",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x76761d4aee1e7d6b2b8dedbd13925d6c220b0725",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x76761d4aee1e7d6b2b8dedbd13925d6c220b0725-1786276810800.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x76761d4aee1e7d6b2b8dedbd13925d6c220b0725-1786276810800.png"
+ ],
+ "name": "MowCat",
+ "symbol": "MOW",
+ "marketCap": "4608946.621219782201180129",
+ "price": "0.0046089466212197822",
+ "priceChange24hPercent": "0",
+ "volume24h": "0",
+ "communityRecognized": false,
+ "key": "evm--4663:0x76761d4aee1e7d6b2b8dedbd13925d6c220b0725",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x77b0aa38451ccdc1b42587e2f80b9879a7f82356",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x77b0aa38451ccdc1b42587e2f80b9879a7f82356-1786536021883.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x77b0aa38451ccdc1b42587e2f80b9879a7f82356-1786536021883.png"
+ ],
+ "name": "DogBull",
+ "symbol": "DOGO",
+ "marketCap": "21768233.653662840214264244",
+ "price": "0.02155270658778499031",
+ "priceChange24hPercent": "-0.05",
+ "volume24h": "38.4714065347779",
+ "communityRecognized": false,
+ "key": "evm--4663:0x77b0aa38451ccdc1b42587e2f80b9879a7f82356",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x385b36ff682ab4c76e7c37a66b96aabc466471d5",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x385b36ff682ab4c76e7c37a66b96aabc466471d5-1786017815496.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x385b36ff682ab4c76e7c37a66b96aabc466471d5-1786017815496.png"
+ ],
+ "name": "pools.trade",
+ "symbol": "POOLS",
+ "marketCap": "1556630.67532955837106892",
+ "price": "0.0015566308898872704",
+ "priceChange24hPercent": "0.74",
+ "volume24h": "86.627498129371758",
+ "communityRecognized": false,
+ "key": "evm--4663:0x385b36ff682ab4c76e7c37a66b96aabc466471d5",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x5f62c57e5c537887117eef828b7e3ad41c009feb",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x5f62c57e5c537887117eef828b7e3ad41c009feb-1786018016957.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x5f62c57e5c537887117eef828b7e3ad41c009feb-1786018016957.png"
+ ],
+ "name": "Good In The Hood",
+ "symbol": "GOOD",
+ "marketCap": "3650847.769165494974298471",
+ "price": "0.00464873807570103688",
+ "priceChange24hPercent": "-0.15",
+ "volume24h": "297.98991473345608",
+ "communityRecognized": false,
+ "key": "evm--4663:0x5f62c57e5c537887117eef828b7e3ad41c009feb",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x20024e485c0b22b42855589700721b28320a7777",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x20024e485c0b22b42855589700721b28320a7777-1786363300721.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x20024e485c0b22b42855589700721b28320a7777-1786363300721.png"
+ ],
+ "name": "Prism Assets",
+ "symbol": "PRISM",
+ "marketCap": "2315389.100589988802579267",
+ "price": "0.0023153891005899888",
+ "priceChange24hPercent": "1.99",
+ "volume24h": "189.8134918939075087",
+ "communityRecognized": false,
+ "key": "evm--4663:0x20024e485c0b22b42855589700721b28320a7777",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x4a6eec8a30b49d289b9fc865fd374b4d61eab8fb",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x4a6eec8a30b49d289b9fc865fd374b4d61eab8fb-1785758432269.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x4a6eec8a30b49d289b9fc865fd374b4d61eab8fb-1785758432269.png"
+ ],
+ "name": "Liluni",
+ "symbol": "Liluni",
+ "marketCap": "769327.821597585049202932",
+ "price": "0.00076932782159758505",
+ "priceChange24hPercent": "-2.13",
+ "volume24h": "121.8210164974537",
+ "communityRecognized": false,
+ "key": "evm--4663:0x4a6eec8a30b49d289b9fc865fd374b4d61eab8fb",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xb8fa8010833463aac5595b55b9045479239eff79",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xb8fa8010833463aac5595b55b9045479239eff79-1786881632532.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xb8fa8010833463aac5595b55b9045479239eff79-1786881632532.png"
+ ],
+ "name": "what the hook?",
+ "symbol": "WTH",
+ "marketCap": "4433865.674641148580658499",
+ "price": "21.11364606971975514599",
+ "priceChange24hPercent": "-0.21",
+ "volume24h": "1767.6572677378965",
+ "communityRecognized": false,
+ "key": "evm--4663:0xb8fa8010833463aac5595b55b9045479239eff79",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xf8bc08092c06db6148114dcf82af881f1085f92b",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xf8bc08092c06db6148114dcf82af881f1085f92b-1785137390595.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xf8bc08092c06db6148114dcf82af881f1085f92b-1785137390595.png"
+ ],
+ "name": "Sherwood Protocol",
+ "symbol": "WOOD",
+ "marketCap": "5294868.778292219416037217",
+ "price": "0.00529486877829221942",
+ "priceChange24hPercent": "0.11",
+ "volume24h": "739.52105425656196",
+ "communityRecognized": false,
+ "key": "evm--4663:0xf8bc08092c06db6148114dcf82af881f1085f92b",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x51fb76be80ab6daaa345d818f4e06441816b4fea",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x51fb76be80ab6daaa345d818f4e06441816b4fea-1786104017624.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x51fb76be80ab6daaa345d818f4e06441816b4fea-1786104017624.png"
+ ],
+ "name": "NASDANQ",
+ "symbol": "NASDANQ",
+ "marketCap": "2336139.896707354816830353",
+ "price": "0.00233613989670735482",
+ "priceChange24hPercent": "-0.54",
+ "volume24h": "405.42625046416961",
+ "communityRecognized": false,
+ "key": "evm--4663:0x51fb76be80ab6daaa345d818f4e06441816b4fea",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x8ecea3d0e648db646d824aa51eedeb16ac3d6878",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x8ecea3d0e648db646d824aa51eedeb16ac3d6878-1785284432065.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x8ecea3d0e648db646d824aa51eedeb16ac3d6878-1785284432065.png"
+ ],
+ "name": "wire bot",
+ "symbol": "wire",
+ "marketCap": "539032.655786243127634391",
+ "price": "0.00054041288588799596",
+ "priceChange24hPercent": "1.85",
+ "volume24h": "21.1238702367309107",
+ "communityRecognized": false,
+ "key": "evm--4663:0x8ecea3d0e648db646d824aa51eedeb16ac3d6878",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xcb5566e73bee5390c75df834d4727dcecc65fc87",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xcb5566e73bee5390c75df834d4727dcecc65fc87-1788354026635.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xcb5566e73bee5390c75df834d4727dcecc65fc87-1788354026635.png"
+ ],
+ "name": "Mast Bond",
+ "symbol": "MAST",
+ "marketCap": "652914.665836647500035643",
+ "price": "0.0006529146658366475",
+ "priceChange24hPercent": "-1.28",
+ "volume24h": "604.68257107929776",
+ "communityRecognized": false,
+ "key": "evm--4663:0xcb5566e73bee5390c75df834d4727dcecc65fc87",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xf44702b17d9abd53815f703e772f35e9c71a53af",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xf44702b17d9abd53815f703e772f35e9c71a53af-1784822115804.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xf44702b17d9abd53815f703e772f35e9c71a53af-1784822115804.png"
+ ],
+ "name": "RAXOL",
+ "symbol": "RAXOL",
+ "marketCap": "1712329.03977912128931203",
+ "price": "0.00171232903977912129",
+ "priceChange24hPercent": "0.56",
+ "volume24h": "39.71756040009936",
+ "communityRecognized": false,
+ "key": "evm--4663:0xf44702b17d9abd53815f703e772f35e9c71a53af",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x8e62f281f282686fca6dcb39288069a93fc23f1c",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x8e62f281f282686fca6dcb39288069a93fc23f1c-1784830569718.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x8e62f281f282686fca6dcb39288069a93fc23f1c-1784830569718.png"
+ ],
+ "name": "Hoodrat",
+ "symbol": "HOODRAT",
+ "marketCap": "1729390.247190236716847253",
+ "price": "0.00172939031667982091",
+ "priceChange24hPercent": "0.92",
+ "volume24h": "250.55137027447531",
+ "communityRecognized": true,
+ "key": "evm--4663:0x8e62f281f282686fca6dcb39288069a93fc23f1c",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x77581054581b9c525e7dd7a0155de43867532d03",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x77581054581b9c525e7dd7a0155de43867532d03-1784939141560.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x77581054581b9c525e7dd7a0155de43867532d03-1784939141560.png"
+ ],
+ "name": "WISHBONE",
+ "symbol": "WISHBONE",
+ "marketCap": "890566.402734889733341878",
+ "price": "0.00096332665926777235",
+ "priceChange24hPercent": "0.09",
+ "volume24h": "192.66533185355448",
+ "communityRecognized": false,
+ "key": "evm--4663:0x77581054581b9c525e7dd7a0155de43867532d03",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x43eea882b845a8493152ebc55cf30ae9281b02d5",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x43eea882b845a8493152ebc55cf30ae9281b02d5-1785292897426.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x43eea882b845a8493152ebc55cf30ae9281b02d5-1785292897426.png"
+ ],
+ "name": "FIRE",
+ "symbol": "FIRE",
+ "marketCap": "1462625.380905727143813291",
+ "price": "0.0014809585098065579",
+ "priceChange24hPercent": "-2.31",
+ "volume24h": "64.1005504078177672",
+ "communityRecognized": false,
+ "key": "evm--4663:0x43eea882b845a8493152ebc55cf30ae9281b02d5",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xac77646bcff9d52e99800534192e0290933f4094",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xac77646bcff9d52e99800534192e0290933f4094-1787572842778.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xac77646bcff9d52e99800534192e0290933f4094-1787572842778.png"
+ ],
+ "name": "Martians",
+ "symbol": "MARTIANS",
+ "marketCap": "421107.798117296771237422",
+ "price": "0.00042110779812399404",
+ "priceChange24hPercent": "0",
+ "volume24h": "0",
+ "communityRecognized": false,
+ "key": "evm--4663:0xac77646bcff9d52e99800534192e0290933f4094",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xf0568863195770965a6d8abb0aa87f4314b80320",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xf0568863195770965a6d8abb0aa87f4314b80320-1785239850960.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xf0568863195770965a6d8abb0aa87f4314b80320-1785239850960.png"
+ ],
+ "name": "SLIPPY",
+ "symbol": "SLIPPY",
+ "marketCap": "2285143.7736062878747713",
+ "price": "0.0022851443913658089",
+ "priceChange24hPercent": "0",
+ "volume24h": "199.49327541",
+ "communityRecognized": false,
+ "key": "evm--4663:0xf0568863195770965a6d8abb0aa87f4314b80320",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x9ca1cc0c90d97b4f36c5e2232d4fbd705a73c65d",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x9ca1cc0c90d97b4f36c5e2232d4fbd705a73c65d-1786363300721.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x9ca1cc0c90d97b4f36c5e2232d4fbd705a73c65d-1786363300721.png"
+ ],
+ "name": "TA FUND",
+ "symbol": "TA",
+ "marketCap": "2169025.59885951907590852",
+ "price": "0.00216902559885951908",
+ "priceChange24hPercent": "-1.1",
+ "volume24h": "13.587568451673016",
+ "communityRecognized": false,
+ "key": "evm--4663:0x9ca1cc0c90d97b4f36c5e2232d4fbd705a73c65d",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x7168563b0e70124f0c7c0cf2f13a8d1861baf4a5",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x7168563b0e70124f0c7c0cf2f13a8d1861baf4a5-1785276114071.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x7168563b0e70124f0c7c0cf2f13a8d1861baf4a5-1785276114071.png"
+ ],
+ "name": "Backed",
+ "symbol": "BACKED",
+ "marketCap": "683975.046016032677877222",
+ "price": "0.00072634119132098617",
+ "priceChange24hPercent": "0",
+ "volume24h": "0",
+ "communityRecognized": false,
+ "key": "evm--4663:0x7168563b0e70124f0c7c0cf2f13a8d1861baf4a5",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xe3fa12da7fa026b21817f16622e8ae48fa785166",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xe3fa12da7fa026b21817f16622e8ae48fa785166-1786536006382.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xe3fa12da7fa026b21817f16622e8ae48fa785166-1786536006382.png"
+ ],
+ "name": "Yardkeeper",
+ "symbol": "YARD",
+ "marketCap": "1661101.247537698075666796",
+ "price": "0.00237034455488214896",
+ "priceChange24hPercent": "0.6",
+ "volume24h": "1005.445435556062236",
+ "communityRecognized": false,
+ "key": "evm--4663:0xe3fa12da7fa026b21817f16622e8ae48fa785166",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x727701f88f09fed71eb217bcea88b3f314cf7079",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x727701f88f09fed71eb217bcea88b3f314cf7079-1785229474064.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x727701f88f09fed71eb217bcea88b3f314cf7079-1785229474064.png"
+ ],
+ "name": "GRID by Virtuals",
+ "symbol": "GRID",
+ "marketCap": "1249980.578691939741013368",
+ "price": "0.00124998057869193974",
+ "priceChange24hPercent": "0",
+ "volume24h": "0",
+ "communityRecognized": false,
+ "key": "evm--4663:0x727701f88f09fed71eb217bcea88b3f314cf7079",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x96765066f6a040a21eb027167d2315b707c82633",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x96765066f6a040a21eb027167d2315b707c82633-1784938636403.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x96765066f6a040a21eb027167d2315b707c82633-1784938636403.png"
+ ],
+ "name": "Ravenhood",
+ "symbol": "RVH",
+ "marketCap": "390628.355788254703232466",
+ "price": "0.00496337736804456155",
+ "priceChange24hPercent": "0.47",
+ "volume24h": "183.77650375",
+ "communityRecognized": false,
+ "key": "evm--4663:0x96765066f6a040a21eb027167d2315b707c82633",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xbd957cc9f1e94617792f37bc40f2f299e78acf3e",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xbd957cc9f1e94617792f37bc40f2f299e78acf3e-1785845024248.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xbd957cc9f1e94617792f37bc40f2f299e78acf3e-1785845024248.png"
+ ],
+ "name": "Crude Cat",
+ "symbol": "CRUDECAT",
+ "marketCap": "2307997.035220816076014931",
+ "price": "0.00597695795708211835",
+ "priceChange24hPercent": "-13.61",
+ "volume24h": "9214.958108167651715",
+ "communityRecognized": false,
+ "key": "evm--4663:0xbd957cc9f1e94617792f37bc40f2f299e78acf3e",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xfb1bcb6817f7b8fa86896d3253b16aeb7bd6a5a8",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xfb1bcb6817f7b8fa86896d3253b16aeb7bd6a5a8-1785008871536.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xfb1bcb6817f7b8fa86896d3253b16aeb7bd6a5a8-1785008871536.png"
+ ],
+ "name": "one life, its worth an attempt",
+ "symbol": "worth",
+ "marketCap": "943016.144584851830199867",
+ "price": "0.00112942228622299282",
+ "priceChange24hPercent": "0",
+ "volume24h": "0",
+ "communityRecognized": false,
+ "key": "evm--4663:0xfb1bcb6817f7b8fa86896d3253b16aeb7bd6a5a8",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x49bac47750f3dcdba49350b5d74fd399e90f97c6",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x49bac47750f3dcdba49350b5d74fd399e90f97c6-1786190483451.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x49bac47750f3dcdba49350b5d74fd399e90f97c6-1786190483451.png"
+ ],
+ "name": "The Bull",
+ "symbol": "BULL",
+ "marketCap": "1844160.155161726289434023",
+ "price": "0.00184418762652969795",
+ "priceChange24hPercent": "0",
+ "volume24h": "0",
+ "communityRecognized": false,
+ "key": "evm--4663:0x49bac47750f3dcdba49350b5d74fd399e90f97c6",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x9727b500ac8726c716f018e5d3ca871481245065",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x9727b500ac8726c716f018e5d3ca871481245065-1785196146146.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x9727b500ac8726c716f018e5d3ca871481245065-1785196146146.png"
+ ],
+ "name": "Ansem Cat",
+ "symbol": "AnsemCat",
+ "marketCap": "365173.245867752584482233",
+ "price": "0.00000086803405326429",
+ "priceChange24hPercent": "0",
+ "volume24h": "0",
+ "communityRecognized": false,
+ "key": "evm--4663:0x9727b500ac8726c716f018e5d3ca871481245065",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xeafa804083a4886a9460b5b19557334a652beba8",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xeafa804083a4886a9460b5b19557334a652beba8-1785002418521.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xeafa804083a4886a9460b5b19557334a652beba8-1785002418521.png"
+ ],
+ "name": "Naven Network",
+ "symbol": "NAVEN",
+ "marketCap": "379120.192909717179101389",
+ "price": "0.00043238178622577899",
+ "priceChange24hPercent": "1.82",
+ "volume24h": "0.5882268132571152",
+ "communityRecognized": false,
+ "key": "evm--4663:0xeafa804083a4886a9460b5b19557334a652beba8",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x0762c1708f0d23f86b29d6b857121ff7df357506",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x0762c1708f0d23f86b29d6b857121ff7df357506-1785931280846.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x0762c1708f0d23f86b29d6b857121ff7df357506-1785931280846.png"
+ ],
+ "name": "this is not a website",
+ "symbol": "website",
+ "marketCap": "5197878.936462059211378102",
+ "price": "0.00555662732124259188",
+ "priceChange24hPercent": "-0.21",
+ "volume24h": "388.73491888761322",
+ "communityRecognized": false,
+ "key": "evm--4663:0x0762c1708f0d23f86b29d6b857121ff7df357506",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x3b4a0048a00787a644932cd648faa043410c163e",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x3b4a0048a00787a644932cd648faa043410c163e-1788264033495.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x3b4a0048a00787a644932cd648faa043410c163e-1788264033495.png"
+ ],
+ "name": "The Dogestar",
+ "symbol": "SIRIUS",
+ "marketCap": "889308.889941344775296854",
+ "price": "0.00088930888995381725",
+ "priceChange24hPercent": "0.24",
+ "volume24h": "104.925373",
+ "communityRecognized": false,
+ "key": "evm--4663:0x3b4a0048a00787a644932cd648faa043410c163e",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x2103faa9d1762e27a716c61718b3acf3ec1f9bf1",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x2103faa9d1762e27a716c61718b3acf3ec1f9bf1-1785016173111.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x2103faa9d1762e27a716c61718b3acf3ec1f9bf1-1785016173111.png"
+ ],
+ "name": "Robin Hood",
+ "symbol": "FOX",
+ "marketCap": "819155.44037873657318132",
+ "price": "0.00087392746402269212",
+ "priceChange24hPercent": "-2.11",
+ "volume24h": "70.3873389004011317",
+ "communityRecognized": false,
+ "key": "evm--4663:0x2103faa9d1762e27a716c61718b3acf3ec1f9bf1",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x532c5583671870723ceef573600208af49c87c54",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x532c5583671870723ceef573600208af49c87c54-1787572802676.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x532c5583671870723ceef573600208af49c87c54-1787572802676.png"
+ ],
+ "name": "Canopy Finance",
+ "symbol": "CNPY",
+ "marketCap": "2043406.519085803891568646",
+ "price": "0.00268033834862245422",
+ "priceChange24hPercent": "1.39",
+ "volume24h": "2414.848875378316",
+ "communityRecognized": false,
+ "key": "evm--4663:0x532c5583671870723ceef573600208af49c87c54",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xaa40e79e987517f7462bf79315b8a118799b04e3",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xaa40e79e987517f7462bf79315b8a118799b04e3-1787659277021.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xaa40e79e987517f7462bf79315b8a118799b04e3-1787659277021.png"
+ ],
+ "name": "scopl.live",
+ "symbol": "SCOPL",
+ "marketCap": "401077.566822741022302925",
+ "price": "0.00041294851870877833",
+ "priceChange24hPercent": "0.04",
+ "volume24h": "36.843834545888809",
+ "communityRecognized": false,
+ "key": "evm--4663:0xaa40e79e987517f7462bf79315b8a118799b04e3",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x01637b14b7378b99de75a64d50656d98488d9a4d",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x01637b14b7378b99de75a64d50656d98488d9a4d-1784777167517.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x01637b14b7378b99de75a64d50656d98488d9a4d-1784777167517.png"
+ ],
+ "name": "Lady Marian",
+ "symbol": "MARIAN",
+ "marketCap": "628696.510942059642535741",
+ "price": "0.00063887984115372445",
+ "priceChange24hPercent": "0",
+ "volume24h": "0",
+ "communityRecognized": false,
+ "key": "evm--4663:0x01637b14b7378b99de75a64d50656d98488d9a4d",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xa5be0eeb82a013dc7867b9e020c36a69da666666",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xa5be0eeb82a013dc7867b9e020c36a69da666666-1787227214299.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xa5be0eeb82a013dc7867b9e020c36a69da666666-1787227214299.png"
+ ],
+ "name": "CLOCK IN",
+ "symbol": "CLOCKIN",
+ "marketCap": "390075.568640705056017851",
+ "price": "0.00039007557111482805",
+ "priceChange24hPercent": "0.87",
+ "volume24h": "474.1488705057997",
+ "communityRecognized": false,
+ "key": "evm--4663:0xa5be0eeb82a013dc7867b9e020c36a69da666666",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xf0e17e54239cd945cd7bea471a3a2ca6a8c7f7a3",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xf0e17e54239cd945cd7bea471a3a2ca6a8c7f7a3-1785403528086.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xf0e17e54239cd945cd7bea471a3a2ca6a8c7f7a3-1785403528086.png"
+ ],
+ "name": "Lemon",
+ "symbol": "LEMON.FUN",
+ "marketCap": "567512.386103755069902849",
+ "price": "0.00057397490461328917",
+ "priceChange24hPercent": "0.57",
+ "volume24h": "300.4147447985221",
+ "communityRecognized": false,
+ "key": "evm--4663:0xf0e17e54239cd945cd7bea471a3a2ca6a8c7f7a3",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x5edb417509a869b1d8222dea05257b8c8ba00361",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x5edb417509a869b1d8222dea05257b8c8ba00361-1786881611635.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x5edb417509a869b1d8222dea05257b8c8ba00361-1786881611635.png"
+ ],
+ "name": "DeFi Traded Fund",
+ "symbol": "DTF",
+ "marketCap": "2101276.505389603821695618",
+ "price": "0.00258078710768923079",
+ "priceChange24hPercent": "0.26",
+ "volume24h": "309.463179",
+ "communityRecognized": false,
+ "key": "evm--4663:0x5edb417509a869b1d8222dea05257b8c8ba00361",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x1d5aad3c0d6066078ea60f384a2492a550db30b0",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x1d5aad3c0d6066078ea60f384a2492a550db30b0-1786623045142.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x1d5aad3c0d6066078ea60f384a2492a550db30b0-1786623045142.png"
+ ],
+ "name": "STACKERS",
+ "symbol": "STACK",
+ "marketCap": "328316.712147829017752093",
+ "price": "0.00052860209114416726",
+ "priceChange24hPercent": "-0.09",
+ "volume24h": "8.44916027075663057",
+ "communityRecognized": false,
+ "key": "evm--4663:0x1d5aad3c0d6066078ea60f384a2492a550db30b0",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xd1e861cc5eee7ea88649206b74504d78ccd7aeea",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xd1e861cc5eee7ea88649206b74504d78ccd7aeea-1786708875938.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xd1e861cc5eee7ea88649206b74504d78ccd7aeea-1786708875938.png"
+ ],
+ "name": "Alandale",
+ "symbol": "LUTE",
+ "marketCap": "453658.504315338644932708",
+ "price": "0.00853535222467991659",
+ "priceChange24hPercent": "0",
+ "volume24h": "0",
+ "communityRecognized": false,
+ "key": "evm--4663:0xd1e861cc5eee7ea88649206b74504d78ccd7aeea",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xbc9e7b1c5c0081f4ae85e71ec95703d3dec9ffad",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xbc9e7b1c5c0081f4ae85e71ec95703d3dec9ffad-1786449612801.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xbc9e7b1c5c0081f4ae85e71ec95703d3dec9ffad-1786449612801.png"
+ ],
+ "name": "Bucket Shop",
+ "symbol": "Bucket",
+ "marketCap": "3487714.386686102696356531",
+ "price": "0.00349446150649011294",
+ "priceChange24hPercent": "9.65",
+ "volume24h": "1048.291873307398623",
+ "communityRecognized": false,
+ "key": "evm--4663:0xbc9e7b1c5c0081f4ae85e71ec95703d3dec9ffad",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x8d4dfaaa4198b6486e0293fec914c2b6a821d4dc",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x8d4dfaaa4198b6486e0293fec914c2b6a821d4dc-1784777336133.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x8d4dfaaa4198b6486e0293fec914c2b6a821d4dc-1784777336133.png"
+ ],
+ "name": "KITSU",
+ "symbol": "KITSU",
+ "marketCap": "1112588.761797044854702224",
+ "price": "0.00118106846427510267",
+ "priceChange24hPercent": "2.67",
+ "volume24h": "533.689454873829193",
+ "communityRecognized": false,
+ "key": "evm--4663:0x8d4dfaaa4198b6486e0293fec914c2b6a821d4dc",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xe15db7c8547a0add11eb26a700246cca08aefce5",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xe15db7c8547a0add11eb26a700246cca08aefce5-1785409545430.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xe15db7c8547a0add11eb26a700246cca08aefce5-1785409545430.png"
+ ],
+ "name": "Shibinhood",
+ "symbol": "WOOF",
+ "marketCap": "1215493.548453345796307932",
+ "price": "0.00000121549354859677",
+ "priceChange24hPercent": "-0.09",
+ "volume24h": "207.933795589381293",
+ "communityRecognized": true,
+ "key": "evm--4663:0xe15db7c8547a0add11eb26a700246cca08aefce5",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x69984ad3322300039f2855f81c44dbc532efe744",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x69984ad3322300039f2855f81c44dbc532efe744-1785359089193.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x69984ad3322300039f2855f81c44dbc532efe744-1785359089193.png"
+ ],
+ "name": "Tygr",
+ "symbol": "TYGR",
+ "marketCap": "283285.985380009240663877",
+ "price": "0.00031503893798487123",
+ "priceChange24hPercent": "0",
+ "volume24h": "0",
+ "communityRecognized": false,
+ "key": "evm--4663:0x69984ad3322300039f2855f81c44dbc532efe744",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xa0e67be79118704a35e7d4b20c3ec4df36ef6e10",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xa0e67be79118704a35e7d4b20c3ec4df36ef6e10-1788091298404.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xa0e67be79118704a35e7d4b20c3ec4df36ef6e10-1788091298404.png"
+ ],
+ "name": "Pons Index",
+ "symbol": "PONSFOLIO",
+ "marketCap": "34018.737934824480556041",
+ "price": "0.00003401873793482448",
+ "priceChange24hPercent": "0",
+ "volume24h": "0",
+ "communityRecognized": false,
+ "key": "evm--4663:0xa0e67be79118704a35e7d4b20c3ec4df36ef6e10",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x0e8720b8cd84f95b4b6696adbfa8063c4b8b94f2",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x0e8720b8cd84f95b4b6696adbfa8063c4b8b94f2-1784804605586.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x0e8720b8cd84f95b4b6696adbfa8063c4b8b94f2-1784804605586.png"
+ ],
+ "name": "Buy Button",
+ "symbol": "BUY",
+ "marketCap": "748201.591140112186514847",
+ "price": "0.00082408396918163004",
+ "priceChange24hPercent": "0.14",
+ "volume24h": "437.59528081778749",
+ "communityRecognized": false,
+ "key": "evm--4663:0x0e8720b8cd84f95b4b6696adbfa8063c4b8b94f2",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x3f9f0b6073ee8c495aed96869af31850fed40feb",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x3f9f0b6073ee8c495aed96869af31850fed40feb-1785412064587.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x3f9f0b6073ee8c495aed96869af31850fed40feb-1785412064587.png"
+ ],
+ "name": "Dice Protocol",
+ "symbol": "DICE",
+ "marketCap": "246206.974893546367185266",
+ "price": "0.00025278197889207848",
+ "priceChange24hPercent": "-0.09",
+ "volume24h": "9.602989556087077",
+ "communityRecognized": false,
+ "key": "evm--4663:0x3f9f0b6073ee8c495aed96869af31850fed40feb",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x298348d5b2e45c774e3ee4f1a0924071dfbdc8c7",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x298348d5b2e45c774e3ee4f1a0924071dfbdc8c7-1786190550357.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x298348d5b2e45c774e3ee4f1a0924071dfbdc8c7-1786190550357.png"
+ ],
+ "name": "swappy",
+ "symbol": "swappy",
+ "marketCap": "449114.126612554601310211",
+ "price": "0.0004491141266125546",
+ "priceChange24hPercent": "-0.36",
+ "volume24h": "1.1958745436252232",
+ "communityRecognized": false,
+ "key": "evm--4663:0x298348d5b2e45c774e3ee4f1a0924071dfbdc8c7",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xace55fe98bab14366dd49ab5aa5df76aa11a3c6f",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xace55fe98bab14366dd49ab5aa5df76aa11a3c6f-1785845024248.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xace55fe98bab14366dd49ab5aa5df76aa11a3c6f-1785845024248.png"
+ ],
+ "name": "Wojak",
+ "symbol": "WOJAK",
+ "marketCap": "1692216.549970488123565045",
+ "price": "0.00185787421689451655",
+ "priceChange24hPercent": "0",
+ "volume24h": "0",
+ "communityRecognized": false,
+ "key": "evm--4663:0xace55fe98bab14366dd49ab5aa5df76aa11a3c6f",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xe4b8723d202fdd0298b1d7496a86656b2986c532",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xe4b8723d202fdd0298b1d7496a86656b2986c532-1786622839074.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xe4b8723d202fdd0298b1d7496a86656b2986c532-1786622839074.png"
+ ],
+ "name": "StockRip",
+ "symbol": "RIP",
+ "marketCap": "938245.272755205458732501",
+ "price": "0.0009382885426150306",
+ "priceChange24hPercent": "0",
+ "volume24h": "0",
+ "communityRecognized": false,
+ "key": "evm--4663:0xe4b8723d202fdd0298b1d7496a86656b2986c532",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xfe242d1da8fd04f6a1f80b6d3d807b02e062ad4e",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xfe242d1da8fd04f6a1f80b6d3d807b02e062ad4e-1787832041620.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xfe242d1da8fd04f6a1f80b6d3d807b02e062ad4e-1787832041620.png"
+ ],
+ "name": "Obscura",
+ "symbol": "OBS",
+ "marketCap": "500688.818984870549311758",
+ "price": "0.00050403564936191361",
+ "priceChange24hPercent": "0",
+ "volume24h": "0",
+ "communityRecognized": false,
+ "key": "evm--4663:0xfe242d1da8fd04f6a1f80b6d3d807b02e062ad4e",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x14641000a501bdc736116abf84e6fcea9b90a713",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x14641000a501bdc736116abf84e6fcea9b90a713-1788178423240.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x14641000a501bdc736116abf84e6fcea9b90a713-1788178423240.png"
+ ],
+ "name": "MESH Gateway",
+ "symbol": "MESH",
+ "marketCap": "1208210.549215450362706768",
+ "price": "0.00120821054921545036",
+ "priceChange24hPercent": "2.56",
+ "volume24h": "1270.133549862326245",
+ "communityRecognized": false,
+ "key": "evm--4663:0x14641000a501bdc736116abf84e6fcea9b90a713",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x7ba36be14dd06ba492f08be6c1b2979c1d0b652c",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x7ba36be14dd06ba492f08be6c1b2979c1d0b652c-1788178016235.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x7ba36be14dd06ba492f08be6c1b2979c1d0b652c-1788178016235.png"
+ ],
+ "name": "PerpsHood",
+ "symbol": "PERPSHOOD",
+ "marketCap": "3288366.118814719718758381",
+ "price": "0.00333761406584314507",
+ "priceChange24hPercent": "-0.44",
+ "volume24h": "8731.082947132961256",
+ "communityRecognized": false,
+ "key": "evm--4663:0x7ba36be14dd06ba492f08be6c1b2979c1d0b652c",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x77061b45c5e4d440bd681b5f72bd0f4231a6fc04",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x77061b45c5e4d440bd681b5f72bd0f4231a6fc04-1788004867211.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x77061b45c5e4d440bd681b5f72bd0f4231a6fc04-1788004867211.png"
+ ],
+ "name": "RobinVault",
+ "symbol": "ROBINVAULT",
+ "marketCap": "397586.87667975865000995",
+ "price": "0.00073326281522966963",
+ "priceChange24hPercent": "-0.75",
+ "volume24h": "1597.1937980944245712",
+ "communityRecognized": false,
+ "key": "evm--4663:0x77061b45c5e4d440bd681b5f72bd0f4231a6fc04",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x5173b8ea6923c2d40267890d45c46a3480954773",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x5173b8ea6923c2d40267890d45c46a3480954773-1786709002621.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x5173b8ea6923c2d40267890d45c46a3480954773-1786709002621.png"
+ ],
+ "name": "World is Flat",
+ "symbol": "WIF",
+ "marketCap": "992458.903324373126169822",
+ "price": "0.00099245890332437313",
+ "priceChange24hPercent": "-0.17",
+ "volume24h": "296.82102326154941",
+ "communityRecognized": false,
+ "key": "evm--4663:0x5173b8ea6923c2d40267890d45c46a3480954773",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x5aed379a72bd2533371d153135c47d5eb61babc8",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x5aed379a72bd2533371d153135c47d5eb61babc8-1787054408027.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x5aed379a72bd2533371d153135c47d5eb61babc8-1787054408027.png"
+ ],
+ "name": "Strike",
+ "symbol": "STRIKE",
+ "marketCap": "168166.235763636933834894",
+ "price": "0.00168222444475767271",
+ "priceChange24hPercent": "0",
+ "volume24h": "0",
+ "communityRecognized": false,
+ "key": "evm--4663:0x5aed379a72bd2533371d153135c47d5eb61babc8",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xb48d34dd8b53324cb8525461c8e548522db885ec",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xb48d34dd8b53324cb8525461c8e548522db885ec-1787918407513.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xb48d34dd8b53324cb8525461c8e548522db885ec-1787918407513.png"
+ ],
+ "name": "Sluice",
+ "symbol": "SLUICE",
+ "marketCap": "132222.15206775523555463",
+ "price": "0.00013222215206775524",
+ "priceChange24hPercent": "0",
+ "volume24h": "0",
+ "communityRecognized": false,
+ "key": "evm--4663:0xb48d34dd8b53324cb8525461c8e548522db885ec",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xa80eb66b3e0cf66ccb46f8b8c9e7ff5803eeb820",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xa80eb66b3e0cf66ccb46f8b8c9e7ff5803eeb820-1784949348295.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xa80eb66b3e0cf66ccb46f8b8c9e7ff5803eeb820-1784949348295.png"
+ ],
+ "name": "Wen Lambo",
+ "symbol": "WEN",
+ "marketCap": "1312267.572898479705983932",
+ "price": "0.00131226757289847971",
+ "priceChange24hPercent": "-1.09",
+ "volume24h": "550.006330065831911",
+ "communityRecognized": false,
+ "key": "evm--4663:0xa80eb66b3e0cf66ccb46f8b8c9e7ff5803eeb820",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ }
+ ],
+ "robinhood_meme||1h|all": [
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x39dbed3a2bd333467115de45665cc57f813c4571",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x39dbed3a2bd333467115de45665cc57f813c4571-1785145437955.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x39dbed3a2bd333467115de45665cc57f813c4571-1785145437955.png"
+ ],
+ "name": "Pons",
+ "symbol": "PONS",
+ "marketCap": "502022018.508028785669424106",
+ "price": "0.71717848311520679734",
+ "priceChange24hPercent": "3.39",
+ "volume24h": "4675508.39160508800166635342",
+ "communityRecognized": true,
+ "key": "evm--4663:0x39dbed3a2bd333467115de45665cc57f813c4571",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x020bfc650a365f8bb26819deaabf3e21291018b4",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x020bfc650a365f8bb26819deaabf3e21291018b4-1784778353843.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x020bfc650a365f8bb26819deaabf3e21291018b4-1784778353843.png"
+ ],
+ "name": "Cash Cat",
+ "symbol": "CASHCAT",
+ "marketCap": "188581610.80185770225929897",
+ "price": "0.19084952071561432263",
+ "priceChange24hPercent": "-0.36",
+ "volume24h": "546155.30016517225572183824",
+ "communityRecognized": true,
+ "key": "evm--4663:0x020bfc650a365f8bb26819deaabf3e21291018b4",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xe170dc96ca10103e0d4c5d9293c5a3a72ee365a5",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xe170dc96ca10103e0d4c5d9293c5a3a72ee365a5-1785059757195.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xe170dc96ca10103e0d4c5d9293c5a3a72ee365a5-1785059757195.png"
+ ],
+ "name": "Little John",
+ "symbol": "JOHN",
+ "marketCap": "8802.53080883729502627",
+ "price": "0.0000088025308088373",
+ "priceChange24hPercent": "0",
+ "volume24h": "0",
+ "communityRecognized": false,
+ "key": "evm--4663:0xe170dc96ca10103e0d4c5d9293c5a3a72ee365a5",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xe934e36a439c94017b64a3fece66af12099abf50",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xe934e36a439c94017b64a3fece66af12099abf50-1785290631562.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xe934e36a439c94017b64a3fece66af12099abf50-1785290631562.png"
+ ],
+ "name": "StonkBroker",
+ "symbol": "STONKBROKER",
+ "marketCap": "20652805.024120563132606053",
+ "price": "0.01688272635986417616",
+ "priceChange24hPercent": "5.15",
+ "volume24h": "143333.32193742978584942069",
+ "communityRecognized": true,
+ "key": "evm--4663:0xe934e36a439c94017b64a3fece66af12099abf50",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x348cc963411fb82cd6e0b64345714fec94f242cb",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x348cc963411fb82cd6e0b64345714fec94f242cb-1787918436309.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x348cc963411fb82cd6e0b64345714fec94f242cb-1787918436309.png"
+ ],
+ "name": "Goose Token",
+ "symbol": "GOOSE",
+ "marketCap": "81393460.832387531242448284",
+ "price": "0.08139346083238753124",
+ "priceChange24hPercent": "0",
+ "volume24h": "0",
+ "communityRecognized": false,
+ "key": "evm--4663:0x348cc963411fb82cd6e0b64345714fec94f242cb",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x5cb6f181081301b44905f3ae15419112ecabd8a6",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x5cb6f181081301b44905f3ae15419112ecabd8a6-1785411923960.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x5cb6f181081301b44905f3ae15419112ecabd8a6-1785411923960.png"
+ ],
+ "name": "pipedog",
+ "symbol": "PIPEDOG",
+ "marketCap": "35769492.909630204770672297",
+ "price": "0.00289732894922953629",
+ "priceChange24hPercent": "-0.23",
+ "volume24h": "9511.162469340902851565",
+ "communityRecognized": true,
+ "key": "evm--4663:0x5cb6f181081301b44905f3ae15419112ecabd8a6",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x57c0e45cb534413d1c20a4240955d6bb250bb4f1",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x57c0e45cb534413d1c20a4240955d6bb250bb4f1-1785005199051.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x57c0e45cb534413d1c20a4240955d6bb250bb4f1-1785005199051.png"
+ ],
+ "name": "up",
+ "symbol": "UP",
+ "marketCap": "10939824.275003627272484814",
+ "price": "0.54014115573703348966",
+ "priceChange24hPercent": "0.69",
+ "volume24h": "24795.930795449700796612",
+ "communityRecognized": true,
+ "key": "evm--4663:0x57c0e45cb534413d1c20a4240955d6bb250bb4f1",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x0e0d2c89a5a019fe1cf762e5e33187631dacc21b",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x0e0d2c89a5a019fe1cf762e5e33187631dacc21b-1787400114210.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x0e0d2c89a5a019fe1cf762e5e33187631dacc21b-1787400114210.png"
+ ],
+ "name": "Chump Coin",
+ "symbol": "CHUMP",
+ "marketCap": "35977837.123296699878179831",
+ "price": "0.03597783749651078179",
+ "priceChange24hPercent": "1.12",
+ "volume24h": "126861.63631268617329724",
+ "communityRecognized": false,
+ "key": "evm--4663:0x0e0d2c89a5a019fe1cf762e5e33187631dacc21b",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x56910d4409f3a0c78c64dd8d0545ff0705389870",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x56910d4409f3a0c78c64dd8d0545ff0705389870-1784842044117.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x56910d4409f3a0c78c64dd8d0545ff0705389870-1784842044117.png"
+ ],
+ "name": "The Index",
+ "symbol": "Index",
+ "marketCap": "39076127.721770539963962651",
+ "price": "0.03985186707954164859",
+ "priceChange24hPercent": "1.62",
+ "volume24h": "56270.72923242765604479393",
+ "communityRecognized": true,
+ "key": "evm--4663:0x56910d4409f3a0c78c64dd8d0545ff0705389870",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x18e674231a58c239dc7daedcffe15ec3a24cff5c",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x18e674231a58c239dc7daedcffe15ec3a24cff5c-1786190410593.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x18e674231a58c239dc7daedcffe15ec3a24cff5c-1786190410593.png"
+ ],
+ "name": "Hookr.fun",
+ "symbol": "HOOKR",
+ "marketCap": "16618445.208237637803108274",
+ "price": "0.0166791731104542394",
+ "priceChange24hPercent": "-12.66",
+ "volume24h": "85284.39622974023439848",
+ "communityRecognized": true,
+ "key": "evm--4663:0x18e674231a58c239dc7daedcffe15ec3a24cff5c",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x7fe995a80075df3dc8ae11a9b82c7fe4202cd87f",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x7fe995a80075df3dc8ae11a9b82c7fe4202cd87f-1785325956569.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x7fe995a80075df3dc8ae11a9b82c7fe4202cd87f-1785325956569.png"
+ ],
+ "name": "Thinking Cat",
+ "symbol": "HMM",
+ "marketCap": "13039576.030590609490030763",
+ "price": "0.01320187144939991148",
+ "priceChange24hPercent": "-1.01",
+ "volume24h": "39010.682240971249568965",
+ "communityRecognized": true,
+ "key": "evm--4663:0x7fe995a80075df3dc8ae11a9b82c7fe4202cd87f",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x45242320dbb855eea8fd36804c6487e10e97fcf9",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x45242320dbb855eea8fd36804c6487e10e97fcf9-1784778612504.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x45242320dbb855eea8fd36804c6487e10e97fcf9-1784778612504.png"
+ ],
+ "name": "TENDIES",
+ "symbol": "TENDIES",
+ "marketCap": "15418336.651928049187952375",
+ "price": "0.0161197596815997701",
+ "priceChange24hPercent": "-4.11",
+ "volume24h": "49970.6546972891152591",
+ "communityRecognized": false,
+ "key": "evm--4663:0x45242320dbb855eea8fd36804c6487e10e97fcf9",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xca9c78dd337a67f6e0077f65f5e9218719d30edf",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xca9c78dd337a67f6e0077f65f5e9218719d30edf-1785280831816.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xca9c78dd337a67f6e0077f65f5e9218719d30edf-1785280831816.png"
+ ],
+ "name": "NetNet",
+ "symbol": "NET",
+ "marketCap": "3920472.764198924127605602",
+ "price": "668.59150927027122099446",
+ "priceChange24hPercent": "-0.63",
+ "volume24h": "181080.6656155861419609",
+ "communityRecognized": false,
+ "key": "evm--4663:0xca9c78dd337a67f6e0077f65f5e9218719d30edf",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xc72f232a6869e6cf34dc06129affd07f8a2a246a",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xc72f232a6869e6cf34dc06129affd07f8a2a246a-1786104032870.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xc72f232a6869e6cf34dc06129affd07f8a2a246a-1786104032870.png"
+ ],
+ "name": "Mancer",
+ "symbol": "MANCER",
+ "marketCap": "5440876.002220110409619299",
+ "price": "0.00217635040088804416",
+ "priceChange24hPercent": "-1.18",
+ "volume24h": "20139.36081277153257601",
+ "communityRecognized": false,
+ "key": "evm--4663:0xc72f232a6869e6cf34dc06129affd07f8a2a246a",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x6245e67affa44a23077f0ea7f981a8dc743a0c47",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x6245e67affa44a23077f0ea7f981a8dc743a0c47-1785931207872.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x6245e67affa44a23077f0ea7f981a8dc743a0c47-1785931207872.png"
+ ],
+ "name": "frong",
+ "symbol": "FRONG",
+ "marketCap": "5491401.474828610941251233",
+ "price": "0.00549140147482861094",
+ "priceChange24hPercent": "-2.7",
+ "volume24h": "64782.053303661839993",
+ "communityRecognized": false,
+ "key": "evm--4663:0x6245e67affa44a23077f0ea7f981a8dc743a0c47",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xee5576fa1bcaa380e591d01245f406f3f384eb01",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xee5576fa1bcaa380e591d01245f406f3f384eb01-1787832045009.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xee5576fa1bcaa380e591d01245f406f3f384eb01-1787832045009.png"
+ ],
+ "name": "Down to Finance",
+ "symbol": "DTF",
+ "marketCap": "8682703.707015428616989098",
+ "price": "0.00868270374727847651",
+ "priceChange24hPercent": "4.31",
+ "volume24h": "54323.97077477706916644",
+ "communityRecognized": false,
+ "key": "evm--4663:0xee5576fa1bcaa380e591d01245f406f3f384eb01",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x62c71cd34a52c30d894419cbcc55db2afa8032ea",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x62c71cd34a52c30d894419cbcc55db2afa8032ea-1785197280438.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x62c71cd34a52c30d894419cbcc55db2afa8032ea-1785197280438.png"
+ ],
+ "name": "YOLO",
+ "symbol": "YOLO",
+ "marketCap": "6110793.379760146105089284",
+ "price": "0.0062997870322002435",
+ "priceChange24hPercent": "1.7",
+ "volume24h": "24977.54083074402296342",
+ "communityRecognized": false,
+ "key": "evm--4663:0x62c71cd34a52c30d894419cbcc55db2afa8032ea",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x451b42a15100c340ca12f7c66de06fac5ea2d751",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x451b42a15100c340ca12f7c66de06fac5ea2d751-1787832041620.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x451b42a15100c340ca12f7c66de06fac5ea2d751-1787832041620.png"
+ ],
+ "name": "Longbow",
+ "symbol": "BOW",
+ "marketCap": "5787414.729870295757998562",
+ "price": "0.00578741472987029576",
+ "priceChange24hPercent": "4.71",
+ "volume24h": "114289.631078897797369253",
+ "communityRecognized": false,
+ "key": "evm--4663:0x451b42a15100c340ca12f7c66de06fac5ea2d751",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xf2915d1e3c1b0c769d0c756ec43f1c1f6c99cd03",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xf2915d1e3c1b0c769d0c756ec43f1c1f6c99cd03-1784861135802.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xf2915d1e3c1b0c769d0c756ec43f1c1f6c99cd03-1784861135802.png"
+ ],
+ "name": "Arrow",
+ "symbol": "ARROW",
+ "marketCap": "3472922.672130186445530038",
+ "price": "0.38588029898682948721",
+ "priceChange24hPercent": "0",
+ "volume24h": "1652.25912226465957741",
+ "communityRecognized": false,
+ "key": "evm--4663:0xf2915d1e3c1b0c769d0c756ec43f1c1f6c99cd03",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xb9972ca7188e511174947e3936a5315ac7073277",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xb9972ca7188e511174947e3936a5315ac7073277-1787400211008.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xb9972ca7188e511174947e3936a5315ac7073277-1787400211008.png"
+ ],
+ "name": "Prologue",
+ "symbol": "PROLOGUE",
+ "marketCap": "10867196.245258369257184329",
+ "price": "0.01086719624525836926",
+ "priceChange24hPercent": "2.09",
+ "volume24h": "53532.8404944948708297",
+ "communityRecognized": true,
+ "key": "evm--4663:0xb9972ca7188e511174947e3936a5315ac7073277",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xd7321801caae694090694ff55a9323139f043b88",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xd7321801caae694090694ff55a9323139f043b88-1784779777690.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xd7321801caae694090694ff55a9323139f043b88-1784779777690.png"
+ ],
+ "name": "The Juggernaut",
+ "symbol": "JUGGERNAUT",
+ "marketCap": "3019903.208555332697636294",
+ "price": "0.00322096834857655848",
+ "priceChange24hPercent": "-1.78",
+ "volume24h": "14986.87118516409804131",
+ "communityRecognized": false,
+ "key": "evm--4663:0xd7321801caae694090694ff55a9323139f043b88",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x8ff92566f2e81bdd68edfaa8cde73942a723796b",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x8ff92566f2e81bdd68edfaa8cde73942a723796b-1784854679354.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x8ff92566f2e81bdd68edfaa8cde73942a723796b-1784854679354.png"
+ ],
+ "name": "ProjectVex",
+ "symbol": "VEX",
+ "marketCap": "2665179.099566858123776638",
+ "price": "0.00266517909956685812",
+ "priceChange24hPercent": "-1.82",
+ "volume24h": "5891.618003252671463",
+ "communityRecognized": false,
+ "key": "evm--4663:0x8ff92566f2e81bdd68edfaa8cde73942a723796b",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xcebc0cfbc5dd0893a9e3b9d0f75b211ddf5934a0",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xcebc0cfbc5dd0893a9e3b9d0f75b211ddf5934a0-1788177871007.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xcebc0cfbc5dd0893a9e3b9d0f75b211ddf5934a0-1788177871007.png"
+ ],
+ "name": "clan.tech",
+ "symbol": "CLAN",
+ "marketCap": "1346087.777112335683918246",
+ "price": "0.00134608777721111461",
+ "priceChange24hPercent": "-2.74",
+ "volume24h": "3564.575192429492769967",
+ "communityRecognized": false,
+ "key": "evm--4663:0xcebc0cfbc5dd0893a9e3b9d0f75b211ddf5934a0",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x232cdfc415d10b673845d83dc02ba2eabe7e30d1",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x232cdfc415d10b673845d83dc02ba2eabe7e30d1-1785412803768.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x232cdfc415d10b673845d83dc02ba2eabe7e30d1-1785412803768.png"
+ ],
+ "name": "What If",
+ "symbol": "IF",
+ "marketCap": "10586906.988923495786384388",
+ "price": "0.01168673691363227001",
+ "priceChange24hPercent": "-1.09",
+ "volume24h": "20850.345908729903227",
+ "communityRecognized": false,
+ "key": "evm--4663:0x232cdfc415d10b673845d83dc02ba2eabe7e30d1",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x76761d4aee1e7d6b2b8dedbd13925d6c220b0725",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x76761d4aee1e7d6b2b8dedbd13925d6c220b0725-1786276810800.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x76761d4aee1e7d6b2b8dedbd13925d6c220b0725-1786276810800.png"
+ ],
+ "name": "MowCat",
+ "symbol": "MOW",
+ "marketCap": "4608946.621219782201180129",
+ "price": "0.0046089466212197822",
+ "priceChange24hPercent": "0",
+ "volume24h": "0",
+ "communityRecognized": false,
+ "key": "evm--4663:0x76761d4aee1e7d6b2b8dedbd13925d6c220b0725",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x77b0aa38451ccdc1b42587e2f80b9879a7f82356",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x77b0aa38451ccdc1b42587e2f80b9879a7f82356-1786536021883.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x77b0aa38451ccdc1b42587e2f80b9879a7f82356-1786536021883.png"
+ ],
+ "name": "DogBull",
+ "symbol": "DOGO",
+ "marketCap": "21768233.653662840214264244",
+ "price": "0.02155270658778499031",
+ "priceChange24hPercent": "-0.04",
+ "volume24h": "584.39610784999559",
+ "communityRecognized": false,
+ "key": "evm--4663:0x77b0aa38451ccdc1b42587e2f80b9879a7f82356",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x385b36ff682ab4c76e7c37a66b96aabc466471d5",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x385b36ff682ab4c76e7c37a66b96aabc466471d5-1786017815496.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x385b36ff682ab4c76e7c37a66b96aabc466471d5-1786017815496.png"
+ ],
+ "name": "pools.trade",
+ "symbol": "POOLS",
+ "marketCap": "1556630.67532955837106892",
+ "price": "0.0015566308898872704",
+ "priceChange24hPercent": "-3.09",
+ "volume24h": "9906.1905984351751819",
+ "communityRecognized": false,
+ "key": "evm--4663:0x385b36ff682ab4c76e7c37a66b96aabc466471d5",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x5f62c57e5c537887117eef828b7e3ad41c009feb",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x5f62c57e5c537887117eef828b7e3ad41c009feb-1786018016957.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x5f62c57e5c537887117eef828b7e3ad41c009feb-1786018016957.png"
+ ],
+ "name": "Good In The Hood",
+ "symbol": "GOOD",
+ "marketCap": "3650847.769165494974298471",
+ "price": "0.00464873807570103688",
+ "priceChange24hPercent": "-0.38",
+ "volume24h": "5254.1716644586610265",
+ "communityRecognized": false,
+ "key": "evm--4663:0x5f62c57e5c537887117eef828b7e3ad41c009feb",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x20024e485c0b22b42855589700721b28320a7777",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x20024e485c0b22b42855589700721b28320a7777-1786363300721.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x20024e485c0b22b42855589700721b28320a7777-1786363300721.png"
+ ],
+ "name": "Prism Assets",
+ "symbol": "PRISM",
+ "marketCap": "2315389.100589988802579267",
+ "price": "0.0023153891005899888",
+ "priceChange24hPercent": "-3.67",
+ "volume24h": "16417.9054242849829014",
+ "communityRecognized": false,
+ "key": "evm--4663:0x20024e485c0b22b42855589700721b28320a7777",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x4a6eec8a30b49d289b9fc865fd374b4d61eab8fb",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x4a6eec8a30b49d289b9fc865fd374b4d61eab8fb-1785758432269.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x4a6eec8a30b49d289b9fc865fd374b4d61eab8fb-1785758432269.png"
+ ],
+ "name": "Liluni",
+ "symbol": "Liluni",
+ "marketCap": "769327.821597585049202932",
+ "price": "0.00076932782159758505",
+ "priceChange24hPercent": "-7.81",
+ "volume24h": "4063.62819132475426436",
+ "communityRecognized": false,
+ "key": "evm--4663:0x4a6eec8a30b49d289b9fc865fd374b4d61eab8fb",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xb8fa8010833463aac5595b55b9045479239eff79",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xb8fa8010833463aac5595b55b9045479239eff79-1786881632532.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xb8fa8010833463aac5595b55b9045479239eff79-1786881632532.png"
+ ],
+ "name": "what the hook?",
+ "symbol": "WTH",
+ "marketCap": "4433865.674641148580658499",
+ "price": "21.11364606971975514599",
+ "priceChange24hPercent": "-0.45",
+ "volume24h": "36991.550436991338055",
+ "communityRecognized": false,
+ "key": "evm--4663:0xb8fa8010833463aac5595b55b9045479239eff79",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xf8bc08092c06db6148114dcf82af881f1085f92b",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xf8bc08092c06db6148114dcf82af881f1085f92b-1785137390595.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xf8bc08092c06db6148114dcf82af881f1085f92b-1785137390595.png"
+ ],
+ "name": "Sherwood Protocol",
+ "symbol": "WOOD",
+ "marketCap": "5294868.778292219416037217",
+ "price": "0.00529486877829221942",
+ "priceChange24hPercent": "-0.75",
+ "volume24h": "6528.464623530007067035",
+ "communityRecognized": false,
+ "key": "evm--4663:0xf8bc08092c06db6148114dcf82af881f1085f92b",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x51fb76be80ab6daaa345d818f4e06441816b4fea",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x51fb76be80ab6daaa345d818f4e06441816b4fea-1786104017624.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x51fb76be80ab6daaa345d818f4e06441816b4fea-1786104017624.png"
+ ],
+ "name": "NASDANQ",
+ "symbol": "NASDANQ",
+ "marketCap": "2336139.896707354816830353",
+ "price": "0.00233613989670735482",
+ "priceChange24hPercent": "-15.68",
+ "volume24h": "15526.489488973708213928",
+ "communityRecognized": false,
+ "key": "evm--4663:0x51fb76be80ab6daaa345d818f4e06441816b4fea",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x8ecea3d0e648db646d824aa51eedeb16ac3d6878",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x8ecea3d0e648db646d824aa51eedeb16ac3d6878-1785284432065.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x8ecea3d0e648db646d824aa51eedeb16ac3d6878-1785284432065.png"
+ ],
+ "name": "wire bot",
+ "symbol": "wire",
+ "marketCap": "539032.655786243127634391",
+ "price": "0.00054041288588799596",
+ "priceChange24hPercent": "2.96",
+ "volume24h": "8153.42212987799338961",
+ "communityRecognized": false,
+ "key": "evm--4663:0x8ecea3d0e648db646d824aa51eedeb16ac3d6878",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xcb5566e73bee5390c75df834d4727dcecc65fc87",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xcb5566e73bee5390c75df834d4727dcecc65fc87-1788354026635.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xcb5566e73bee5390c75df834d4727dcecc65fc87-1788354026635.png"
+ ],
+ "name": "Mast Bond",
+ "symbol": "MAST",
+ "marketCap": "652914.665836647500035643",
+ "price": "0.0006529146658366475",
+ "priceChange24hPercent": "-17.25",
+ "volume24h": "12343.009863653653384",
+ "communityRecognized": false,
+ "key": "evm--4663:0xcb5566e73bee5390c75df834d4727dcecc65fc87",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xf44702b17d9abd53815f703e772f35e9c71a53af",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xf44702b17d9abd53815f703e772f35e9c71a53af-1784822115804.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xf44702b17d9abd53815f703e772f35e9c71a53af-1784822115804.png"
+ ],
+ "name": "RAXOL",
+ "symbol": "RAXOL",
+ "marketCap": "1712329.03977912128931203",
+ "price": "0.00171232903977912129",
+ "priceChange24hPercent": "0.39",
+ "volume24h": "151.163027516600206",
+ "communityRecognized": false,
+ "key": "evm--4663:0xf44702b17d9abd53815f703e772f35e9c71a53af",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x8e62f281f282686fca6dcb39288069a93fc23f1c",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x8e62f281f282686fca6dcb39288069a93fc23f1c-1784830569718.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x8e62f281f282686fca6dcb39288069a93fc23f1c-1784830569718.png"
+ ],
+ "name": "Hoodrat",
+ "symbol": "HOODRAT",
+ "marketCap": "1729390.247190236716847253",
+ "price": "0.00172939031667982091",
+ "priceChange24hPercent": "-0.67",
+ "volume24h": "1810.205639073544116",
+ "communityRecognized": true,
+ "key": "evm--4663:0x8e62f281f282686fca6dcb39288069a93fc23f1c",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x77581054581b9c525e7dd7a0155de43867532d03",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x77581054581b9c525e7dd7a0155de43867532d03-1784939141560.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x77581054581b9c525e7dd7a0155de43867532d03-1784939141560.png"
+ ],
+ "name": "WISHBONE",
+ "symbol": "WISHBONE",
+ "marketCap": "890566.402734889733341878",
+ "price": "0.00096332665926777235",
+ "priceChange24hPercent": "2.04",
+ "volume24h": "837.61735086325708537",
+ "communityRecognized": false,
+ "key": "evm--4663:0x77581054581b9c525e7dd7a0155de43867532d03",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x43eea882b845a8493152ebc55cf30ae9281b02d5",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x43eea882b845a8493152ebc55cf30ae9281b02d5-1785292897426.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x43eea882b845a8493152ebc55cf30ae9281b02d5-1785292897426.png"
+ ],
+ "name": "FIRE",
+ "symbol": "FIRE",
+ "marketCap": "1462625.380905727143813291",
+ "price": "0.0014809585098065579",
+ "priceChange24hPercent": "-12.08",
+ "volume24h": "7701.9467964781793196",
+ "communityRecognized": false,
+ "key": "evm--4663:0x43eea882b845a8493152ebc55cf30ae9281b02d5",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xac77646bcff9d52e99800534192e0290933f4094",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xac77646bcff9d52e99800534192e0290933f4094-1787572842778.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xac77646bcff9d52e99800534192e0290933f4094-1787572842778.png"
+ ],
+ "name": "Martians",
+ "symbol": "MARTIANS",
+ "marketCap": "421107.798117296771237422",
+ "price": "0.00042110779812399404",
+ "priceChange24hPercent": "-0.65",
+ "volume24h": "640.7616285976057776",
+ "communityRecognized": false,
+ "key": "evm--4663:0xac77646bcff9d52e99800534192e0290933f4094",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xf0568863195770965a6d8abb0aa87f4314b80320",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xf0568863195770965a6d8abb0aa87f4314b80320-1785239850960.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xf0568863195770965a6d8abb0aa87f4314b80320-1785239850960.png"
+ ],
+ "name": "SLIPPY",
+ "symbol": "SLIPPY",
+ "marketCap": "2285143.7736062878747713",
+ "price": "0.0022851443913658089",
+ "priceChange24hPercent": "2.93",
+ "volume24h": "3277.33644277337205894456",
+ "communityRecognized": false,
+ "key": "evm--4663:0xf0568863195770965a6d8abb0aa87f4314b80320",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x9ca1cc0c90d97b4f36c5e2232d4fbd705a73c65d",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x9ca1cc0c90d97b4f36c5e2232d4fbd705a73c65d-1786363300721.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x9ca1cc0c90d97b4f36c5e2232d4fbd705a73c65d-1786363300721.png"
+ ],
+ "name": "TA FUND",
+ "symbol": "TA",
+ "marketCap": "2169025.59885951907590852",
+ "price": "0.00216902559885951908",
+ "priceChange24hPercent": "-2.89",
+ "volume24h": "12255.548676215078163",
+ "communityRecognized": false,
+ "key": "evm--4663:0x9ca1cc0c90d97b4f36c5e2232d4fbd705a73c65d",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x7168563b0e70124f0c7c0cf2f13a8d1861baf4a5",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x7168563b0e70124f0c7c0cf2f13a8d1861baf4a5-1785276114071.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x7168563b0e70124f0c7c0cf2f13a8d1861baf4a5-1785276114071.png"
+ ],
+ "name": "Backed",
+ "symbol": "BACKED",
+ "marketCap": "683975.046016032677877222",
+ "price": "0.00072634119132098617",
+ "priceChange24hPercent": "1.52",
+ "volume24h": "4602.320740294868786",
+ "communityRecognized": false,
+ "key": "evm--4663:0x7168563b0e70124f0c7c0cf2f13a8d1861baf4a5",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xe3fa12da7fa026b21817f16622e8ae48fa785166",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xe3fa12da7fa026b21817f16622e8ae48fa785166-1786536006382.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xe3fa12da7fa026b21817f16622e8ae48fa785166-1786536006382.png"
+ ],
+ "name": "Yardkeeper",
+ "symbol": "YARD",
+ "marketCap": "1661101.247537698075666796",
+ "price": "0.00237034455488214896",
+ "priceChange24hPercent": "1.8",
+ "volume24h": "3511.619755600601791",
+ "communityRecognized": false,
+ "key": "evm--4663:0xe3fa12da7fa026b21817f16622e8ae48fa785166",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x727701f88f09fed71eb217bcea88b3f314cf7079",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x727701f88f09fed71eb217bcea88b3f314cf7079-1785229474064.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x727701f88f09fed71eb217bcea88b3f314cf7079-1785229474064.png"
+ ],
+ "name": "GRID by Virtuals",
+ "symbol": "GRID",
+ "marketCap": "1249980.578691939741013368",
+ "price": "0.00124998057869193974",
+ "priceChange24hPercent": "0.31",
+ "volume24h": "362.609826348295527",
+ "communityRecognized": false,
+ "key": "evm--4663:0x727701f88f09fed71eb217bcea88b3f314cf7079",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x96765066f6a040a21eb027167d2315b707c82633",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x96765066f6a040a21eb027167d2315b707c82633-1784938636403.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x96765066f6a040a21eb027167d2315b707c82633-1784938636403.png"
+ ],
+ "name": "Ravenhood",
+ "symbol": "RVH",
+ "marketCap": "390628.355788254703232466",
+ "price": "0.00496337736804456155",
+ "priceChange24hPercent": "0.13",
+ "volume24h": "1108.44188934200301877",
+ "communityRecognized": false,
+ "key": "evm--4663:0x96765066f6a040a21eb027167d2315b707c82633",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xbd957cc9f1e94617792f37bc40f2f299e78acf3e",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xbd957cc9f1e94617792f37bc40f2f299e78acf3e-1785845024248.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xbd957cc9f1e94617792f37bc40f2f299e78acf3e-1785845024248.png"
+ ],
+ "name": "Crude Cat",
+ "symbol": "CRUDECAT",
+ "marketCap": "2307997.035220816076014931",
+ "price": "0.00597695795708211835",
+ "priceChange24hPercent": "-16.1",
+ "volume24h": "11007.9283082877411364",
+ "communityRecognized": false,
+ "key": "evm--4663:0xbd957cc9f1e94617792f37bc40f2f299e78acf3e",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xfb1bcb6817f7b8fa86896d3253b16aeb7bd6a5a8",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xfb1bcb6817f7b8fa86896d3253b16aeb7bd6a5a8-1785008871536.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xfb1bcb6817f7b8fa86896d3253b16aeb7bd6a5a8-1785008871536.png"
+ ],
+ "name": "one life, its worth an attempt",
+ "symbol": "worth",
+ "marketCap": "943016.144584851830199867",
+ "price": "0.00112942228622299282",
+ "priceChange24hPercent": "11.61",
+ "volume24h": "3712.61638796117777093",
+ "communityRecognized": false,
+ "key": "evm--4663:0xfb1bcb6817f7b8fa86896d3253b16aeb7bd6a5a8",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x49bac47750f3dcdba49350b5d74fd399e90f97c6",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x49bac47750f3dcdba49350b5d74fd399e90f97c6-1786190483451.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x49bac47750f3dcdba49350b5d74fd399e90f97c6-1786190483451.png"
+ ],
+ "name": "The Bull",
+ "symbol": "BULL",
+ "marketCap": "1844160.155161726289434023",
+ "price": "0.00184418762652969795",
+ "priceChange24hPercent": "-1.06",
+ "volume24h": "1243.36301848924058726",
+ "communityRecognized": false,
+ "key": "evm--4663:0x49bac47750f3dcdba49350b5d74fd399e90f97c6",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x9727b500ac8726c716f018e5d3ca871481245065",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x9727b500ac8726c716f018e5d3ca871481245065-1785196146146.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x9727b500ac8726c716f018e5d3ca871481245065-1785196146146.png"
+ ],
+ "name": "Ansem Cat",
+ "symbol": "AnsemCat",
+ "marketCap": "365173.245867752584482233",
+ "price": "0.00000086803405326429",
+ "priceChange24hPercent": "0",
+ "volume24h": "0",
+ "communityRecognized": false,
+ "key": "evm--4663:0x9727b500ac8726c716f018e5d3ca871481245065",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xeafa804083a4886a9460b5b19557334a652beba8",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xeafa804083a4886a9460b5b19557334a652beba8-1785002418521.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xeafa804083a4886a9460b5b19557334a652beba8-1785002418521.png"
+ ],
+ "name": "Naven Network",
+ "symbol": "NAVEN",
+ "marketCap": "379120.192909717179101389",
+ "price": "0.00043238178622577899",
+ "priceChange24hPercent": "15.18",
+ "volume24h": "5264.3299391435081094",
+ "communityRecognized": false,
+ "key": "evm--4663:0xeafa804083a4886a9460b5b19557334a652beba8",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x0762c1708f0d23f86b29d6b857121ff7df357506",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x0762c1708f0d23f86b29d6b857121ff7df357506-1785931280846.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x0762c1708f0d23f86b29d6b857121ff7df357506-1785931280846.png"
+ ],
+ "name": "this is not a website",
+ "symbol": "website",
+ "marketCap": "5197878.936462059211378102",
+ "price": "0.00555662732124259188",
+ "priceChange24hPercent": "12.86",
+ "volume24h": "33582.80797639951461067",
+ "communityRecognized": false,
+ "key": "evm--4663:0x0762c1708f0d23f86b29d6b857121ff7df357506",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x3b4a0048a00787a644932cd648faa043410c163e",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x3b4a0048a00787a644932cd648faa043410c163e-1788264033495.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x3b4a0048a00787a644932cd648faa043410c163e-1788264033495.png"
+ ],
+ "name": "The Dogestar",
+ "symbol": "SIRIUS",
+ "marketCap": "889308.889941344775296854",
+ "price": "0.00088930888995381725",
+ "priceChange24hPercent": "-2.94",
+ "volume24h": "13500.1153473072908584",
+ "communityRecognized": false,
+ "key": "evm--4663:0x3b4a0048a00787a644932cd648faa043410c163e",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x2103faa9d1762e27a716c61718b3acf3ec1f9bf1",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x2103faa9d1762e27a716c61718b3acf3ec1f9bf1-1785016173111.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x2103faa9d1762e27a716c61718b3acf3ec1f9bf1-1785016173111.png"
+ ],
+ "name": "Robin Hood",
+ "symbol": "FOX",
+ "marketCap": "819155.44037873657318132",
+ "price": "0.00087392746402269212",
+ "priceChange24hPercent": "-3.96",
+ "volume24h": "3177.5645632107489844",
+ "communityRecognized": false,
+ "key": "evm--4663:0x2103faa9d1762e27a716c61718b3acf3ec1f9bf1",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x532c5583671870723ceef573600208af49c87c54",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x532c5583671870723ceef573600208af49c87c54-1787572802676.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x532c5583671870723ceef573600208af49c87c54-1787572802676.png"
+ ],
+ "name": "Canopy Finance",
+ "symbol": "CNPY",
+ "marketCap": "2043406.519085803891568646",
+ "price": "0.00268033834862245422",
+ "priceChange24hPercent": "18.5",
+ "volume24h": "38385.63448397666353553",
+ "communityRecognized": false,
+ "key": "evm--4663:0x532c5583671870723ceef573600208af49c87c54",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xaa40e79e987517f7462bf79315b8a118799b04e3",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xaa40e79e987517f7462bf79315b8a118799b04e3-1787659277021.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xaa40e79e987517f7462bf79315b8a118799b04e3-1787659277021.png"
+ ],
+ "name": "scopl.live",
+ "symbol": "SCOPL",
+ "marketCap": "401077.566822741022302925",
+ "price": "0.00041294851870877833",
+ "priceChange24hPercent": "-10.74",
+ "volume24h": "5586.9137257157393147",
+ "communityRecognized": false,
+ "key": "evm--4663:0xaa40e79e987517f7462bf79315b8a118799b04e3",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x01637b14b7378b99de75a64d50656d98488d9a4d",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x01637b14b7378b99de75a64d50656d98488d9a4d-1784777167517.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x01637b14b7378b99de75a64d50656d98488d9a4d-1784777167517.png"
+ ],
+ "name": "Lady Marian",
+ "symbol": "MARIAN",
+ "marketCap": "628696.510942059642535741",
+ "price": "0.00063887984115372445",
+ "priceChange24hPercent": "-6.96",
+ "volume24h": "9293.046850367078885",
+ "communityRecognized": false,
+ "key": "evm--4663:0x01637b14b7378b99de75a64d50656d98488d9a4d",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xa5be0eeb82a013dc7867b9e020c36a69da666666",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xa5be0eeb82a013dc7867b9e020c36a69da666666-1787227214299.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xa5be0eeb82a013dc7867b9e020c36a69da666666-1787227214299.png"
+ ],
+ "name": "CLOCK IN",
+ "symbol": "CLOCKIN",
+ "marketCap": "390075.568640705056017851",
+ "price": "0.00039007557111482805",
+ "priceChange24hPercent": "4.44",
+ "volume24h": "2112.270541153660644",
+ "communityRecognized": false,
+ "key": "evm--4663:0xa5be0eeb82a013dc7867b9e020c36a69da666666",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xf0e17e54239cd945cd7bea471a3a2ca6a8c7f7a3",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xf0e17e54239cd945cd7bea471a3a2ca6a8c7f7a3-1785403528086.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xf0e17e54239cd945cd7bea471a3a2ca6a8c7f7a3-1785403528086.png"
+ ],
+ "name": "Lemon",
+ "symbol": "LEMON.FUN",
+ "marketCap": "567512.386103755069902849",
+ "price": "0.00057397490461328917",
+ "priceChange24hPercent": "-3.54",
+ "volume24h": "1672.6028670313023494",
+ "communityRecognized": false,
+ "key": "evm--4663:0xf0e17e54239cd945cd7bea471a3a2ca6a8c7f7a3",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x5edb417509a869b1d8222dea05257b8c8ba00361",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x5edb417509a869b1d8222dea05257b8c8ba00361-1786881611635.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x5edb417509a869b1d8222dea05257b8c8ba00361-1786881611635.png"
+ ],
+ "name": "DeFi Traded Fund",
+ "symbol": "DTF",
+ "marketCap": "2101276.505389603821695618",
+ "price": "0.00258078710768923079",
+ "priceChange24hPercent": "2.43",
+ "volume24h": "3458.398138",
+ "communityRecognized": false,
+ "key": "evm--4663:0x5edb417509a869b1d8222dea05257b8c8ba00361",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x1d5aad3c0d6066078ea60f384a2492a550db30b0",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x1d5aad3c0d6066078ea60f384a2492a550db30b0-1786623045142.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x1d5aad3c0d6066078ea60f384a2492a550db30b0-1786623045142.png"
+ ],
+ "name": "STACKERS",
+ "symbol": "STACK",
+ "marketCap": "328316.712147829017752093",
+ "price": "0.00052860209114416726",
+ "priceChange24hPercent": "-8.22",
+ "volume24h": "2580.02370660504785297",
+ "communityRecognized": false,
+ "key": "evm--4663:0x1d5aad3c0d6066078ea60f384a2492a550db30b0",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xd1e861cc5eee7ea88649206b74504d78ccd7aeea",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xd1e861cc5eee7ea88649206b74504d78ccd7aeea-1786708875938.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xd1e861cc5eee7ea88649206b74504d78ccd7aeea-1786708875938.png"
+ ],
+ "name": "Alandale",
+ "symbol": "LUTE",
+ "marketCap": "453658.504315338644932708",
+ "price": "0.00853535222467991659",
+ "priceChange24hPercent": "0",
+ "volume24h": "0",
+ "communityRecognized": false,
+ "key": "evm--4663:0xd1e861cc5eee7ea88649206b74504d78ccd7aeea",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xbc9e7b1c5c0081f4ae85e71ec95703d3dec9ffad",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xbc9e7b1c5c0081f4ae85e71ec95703d3dec9ffad-1786449612801.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xbc9e7b1c5c0081f4ae85e71ec95703d3dec9ffad-1786449612801.png"
+ ],
+ "name": "Bucket Shop",
+ "symbol": "Bucket",
+ "marketCap": "3487714.386686102696356531",
+ "price": "0.00349446150649011294",
+ "priceChange24hPercent": "29.15",
+ "volume24h": "16778.2531163732060708",
+ "communityRecognized": false,
+ "key": "evm--4663:0xbc9e7b1c5c0081f4ae85e71ec95703d3dec9ffad",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x8d4dfaaa4198b6486e0293fec914c2b6a821d4dc",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x8d4dfaaa4198b6486e0293fec914c2b6a821d4dc-1784777336133.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x8d4dfaaa4198b6486e0293fec914c2b6a821d4dc-1784777336133.png"
+ ],
+ "name": "KITSU",
+ "symbol": "KITSU",
+ "marketCap": "1112588.761797044854702224",
+ "price": "0.00118106846427510267",
+ "priceChange24hPercent": "-1.16",
+ "volume24h": "6195.6512003737199649",
+ "communityRecognized": false,
+ "key": "evm--4663:0x8d4dfaaa4198b6486e0293fec914c2b6a821d4dc",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xe15db7c8547a0add11eb26a700246cca08aefce5",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xe15db7c8547a0add11eb26a700246cca08aefce5-1785409545430.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xe15db7c8547a0add11eb26a700246cca08aefce5-1785409545430.png"
+ ],
+ "name": "Shibinhood",
+ "symbol": "WOOF",
+ "marketCap": "1215493.548453345796307932",
+ "price": "0.00000121549354859677",
+ "priceChange24hPercent": "-0.99",
+ "volume24h": "1335.665580041330893",
+ "communityRecognized": true,
+ "key": "evm--4663:0xe15db7c8547a0add11eb26a700246cca08aefce5",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x69984ad3322300039f2855f81c44dbc532efe744",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x69984ad3322300039f2855f81c44dbc532efe744-1785359089193.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x69984ad3322300039f2855f81c44dbc532efe744-1785359089193.png"
+ ],
+ "name": "Tygr",
+ "symbol": "TYGR",
+ "marketCap": "283285.985380009240663877",
+ "price": "0.00031503893798487123",
+ "priceChange24hPercent": "2.58",
+ "volume24h": "1314.13312222189178081",
+ "communityRecognized": false,
+ "key": "evm--4663:0x69984ad3322300039f2855f81c44dbc532efe744",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xa0e67be79118704a35e7d4b20c3ec4df36ef6e10",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xa0e67be79118704a35e7d4b20c3ec4df36ef6e10-1788091298404.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xa0e67be79118704a35e7d4b20c3ec4df36ef6e10-1788091298404.png"
+ ],
+ "name": "Pons Index",
+ "symbol": "PONSFOLIO",
+ "marketCap": "34018.737934824480556041",
+ "price": "0.00003401873793482448",
+ "priceChange24hPercent": "0",
+ "volume24h": "0",
+ "communityRecognized": false,
+ "key": "evm--4663:0xa0e67be79118704a35e7d4b20c3ec4df36ef6e10",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x0e8720b8cd84f95b4b6696adbfa8063c4b8b94f2",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x0e8720b8cd84f95b4b6696adbfa8063c4b8b94f2-1784804605586.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x0e8720b8cd84f95b4b6696adbfa8063c4b8b94f2-1784804605586.png"
+ ],
+ "name": "Buy Button",
+ "symbol": "BUY",
+ "marketCap": "748201.591140112186514847",
+ "price": "0.00082408396918163004",
+ "priceChange24hPercent": "-3.48",
+ "volume24h": "7656.45854777761567737",
+ "communityRecognized": false,
+ "key": "evm--4663:0x0e8720b8cd84f95b4b6696adbfa8063c4b8b94f2",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x3f9f0b6073ee8c495aed96869af31850fed40feb",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x3f9f0b6073ee8c495aed96869af31850fed40feb-1785412064587.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x3f9f0b6073ee8c495aed96869af31850fed40feb-1785412064587.png"
+ ],
+ "name": "Dice Protocol",
+ "symbol": "DICE",
+ "marketCap": "246206.974893546367185266",
+ "price": "0.00025278197889207848",
+ "priceChange24hPercent": "-4.01",
+ "volume24h": "366.66669389857028397",
+ "communityRecognized": false,
+ "key": "evm--4663:0x3f9f0b6073ee8c495aed96869af31850fed40feb",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x298348d5b2e45c774e3ee4f1a0924071dfbdc8c7",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x298348d5b2e45c774e3ee4f1a0924071dfbdc8c7-1786190550357.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x298348d5b2e45c774e3ee4f1a0924071dfbdc8c7-1786190550357.png"
+ ],
+ "name": "swappy",
+ "symbol": "swappy",
+ "marketCap": "449114.126612554601310211",
+ "price": "0.0004491141266125546",
+ "priceChange24hPercent": "2.91",
+ "volume24h": "2259.8109747302917702",
+ "communityRecognized": false,
+ "key": "evm--4663:0x298348d5b2e45c774e3ee4f1a0924071dfbdc8c7",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xace55fe98bab14366dd49ab5aa5df76aa11a3c6f",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xace55fe98bab14366dd49ab5aa5df76aa11a3c6f-1785845024248.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xace55fe98bab14366dd49ab5aa5df76aa11a3c6f-1785845024248.png"
+ ],
+ "name": "Wojak",
+ "symbol": "WOJAK",
+ "marketCap": "1692216.549970488123565045",
+ "price": "0.00185787421689451655",
+ "priceChange24hPercent": "-7.74",
+ "volume24h": "5839.98104851533151364",
+ "communityRecognized": false,
+ "key": "evm--4663:0xace55fe98bab14366dd49ab5aa5df76aa11a3c6f",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xe4b8723d202fdd0298b1d7496a86656b2986c532",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xe4b8723d202fdd0298b1d7496a86656b2986c532-1786622839074.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xe4b8723d202fdd0298b1d7496a86656b2986c532-1786622839074.png"
+ ],
+ "name": "StockRip",
+ "symbol": "RIP",
+ "marketCap": "938245.272755205458732501",
+ "price": "0.0009382885426150306",
+ "priceChange24hPercent": "0.43",
+ "volume24h": "809.1337675890997282",
+ "communityRecognized": false,
+ "key": "evm--4663:0xe4b8723d202fdd0298b1d7496a86656b2986c532",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xfe242d1da8fd04f6a1f80b6d3d807b02e062ad4e",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xfe242d1da8fd04f6a1f80b6d3d807b02e062ad4e-1787832041620.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xfe242d1da8fd04f6a1f80b6d3d807b02e062ad4e-1787832041620.png"
+ ],
+ "name": "Obscura",
+ "symbol": "OBS",
+ "marketCap": "500688.818984870549311758",
+ "price": "0.00050403564936191361",
+ "priceChange24hPercent": "-0.15",
+ "volume24h": "1117.364393579750215",
+ "communityRecognized": false,
+ "key": "evm--4663:0xfe242d1da8fd04f6a1f80b6d3d807b02e062ad4e",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x14641000a501bdc736116abf84e6fcea9b90a713",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x14641000a501bdc736116abf84e6fcea9b90a713-1788178423240.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x14641000a501bdc736116abf84e6fcea9b90a713-1788178423240.png"
+ ],
+ "name": "MESH Gateway",
+ "symbol": "MESH",
+ "marketCap": "1208210.549215450362706768",
+ "price": "0.00120821054921545036",
+ "priceChange24hPercent": "-3.88",
+ "volume24h": "3016.4758538643832347",
+ "communityRecognized": false,
+ "key": "evm--4663:0x14641000a501bdc736116abf84e6fcea9b90a713",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x7ba36be14dd06ba492f08be6c1b2979c1d0b652c",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x7ba36be14dd06ba492f08be6c1b2979c1d0b652c-1788178016235.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x7ba36be14dd06ba492f08be6c1b2979c1d0b652c-1788178016235.png"
+ ],
+ "name": "PerpsHood",
+ "symbol": "PERPSHOOD",
+ "marketCap": "3288366.118814719718758381",
+ "price": "0.00333761406584314507",
+ "priceChange24hPercent": "11.18",
+ "volume24h": "58395.535673114948421",
+ "communityRecognized": false,
+ "key": "evm--4663:0x7ba36be14dd06ba492f08be6c1b2979c1d0b652c",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x77061b45c5e4d440bd681b5f72bd0f4231a6fc04",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x77061b45c5e4d440bd681b5f72bd0f4231a6fc04-1788004867211.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x77061b45c5e4d440bd681b5f72bd0f4231a6fc04-1788004867211.png"
+ ],
+ "name": "RobinVault",
+ "symbol": "ROBINVAULT",
+ "marketCap": "397586.87667975865000995",
+ "price": "0.00073326281522966963",
+ "priceChange24hPercent": "-9.83",
+ "volume24h": "5452.8609022301794384",
+ "communityRecognized": false,
+ "key": "evm--4663:0x77061b45c5e4d440bd681b5f72bd0f4231a6fc04",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x5173b8ea6923c2d40267890d45c46a3480954773",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x5173b8ea6923c2d40267890d45c46a3480954773-1786709002621.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x5173b8ea6923c2d40267890d45c46a3480954773-1786709002621.png"
+ ],
+ "name": "World is Flat",
+ "symbol": "WIF",
+ "marketCap": "992458.903324373126169822",
+ "price": "0.00099245890332437313",
+ "priceChange24hPercent": "-6.39",
+ "volume24h": "5400.91003530705774187",
+ "communityRecognized": false,
+ "key": "evm--4663:0x5173b8ea6923c2d40267890d45c46a3480954773",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x5aed379a72bd2533371d153135c47d5eb61babc8",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x5aed379a72bd2533371d153135c47d5eb61babc8-1787054408027.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x5aed379a72bd2533371d153135c47d5eb61babc8-1787054408027.png"
+ ],
+ "name": "Strike",
+ "symbol": "STRIKE",
+ "marketCap": "168166.235763636933834894",
+ "price": "0.00168222444475767271",
+ "priceChange24hPercent": "0",
+ "volume24h": "0",
+ "communityRecognized": false,
+ "key": "evm--4663:0x5aed379a72bd2533371d153135c47d5eb61babc8",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xb48d34dd8b53324cb8525461c8e548522db885ec",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xb48d34dd8b53324cb8525461c8e548522db885ec-1787918407513.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xb48d34dd8b53324cb8525461c8e548522db885ec-1787918407513.png"
+ ],
+ "name": "Sluice",
+ "symbol": "SLUICE",
+ "marketCap": "132222.15206775523555463",
+ "price": "0.00013222215206775524",
+ "priceChange24hPercent": "-2.06",
+ "volume24h": "148.622282392306725",
+ "communityRecognized": false,
+ "key": "evm--4663:0xb48d34dd8b53324cb8525461c8e548522db885ec",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xa80eb66b3e0cf66ccb46f8b8c9e7ff5803eeb820",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xa80eb66b3e0cf66ccb46f8b8c9e7ff5803eeb820-1784949348295.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xa80eb66b3e0cf66ccb46f8b8c9e7ff5803eeb820-1784949348295.png"
+ ],
+ "name": "Wen Lambo",
+ "symbol": "WEN",
+ "marketCap": "1312267.572898479705983932",
+ "price": "0.00131226757289847971",
+ "priceChange24hPercent": "-2.77",
+ "volume24h": "5430.05839718826059869",
+ "communityRecognized": false,
+ "key": "evm--4663:0xa80eb66b3e0cf66ccb46f8b8c9e7ff5803eeb820",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ }
+ ],
+ "robinhood_meme||4h|all": [
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x39dbed3a2bd333467115de45665cc57f813c4571",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x39dbed3a2bd333467115de45665cc57f813c4571-1785145437955.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x39dbed3a2bd333467115de45665cc57f813c4571-1785145437955.png"
+ ],
+ "name": "Pons",
+ "symbol": "PONS",
+ "marketCap": "502022018.508028785669424106",
+ "price": "0.71717848311520679734",
+ "priceChange24hPercent": "-1.74",
+ "volume24h": "16414780.10286411696075873232",
+ "communityRecognized": true,
+ "key": "evm--4663:0x39dbed3a2bd333467115de45665cc57f813c4571",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x020bfc650a365f8bb26819deaabf3e21291018b4",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x020bfc650a365f8bb26819deaabf3e21291018b4-1784778353843.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x020bfc650a365f8bb26819deaabf3e21291018b4-1784778353843.png"
+ ],
+ "name": "Cash Cat",
+ "symbol": "CASHCAT",
+ "marketCap": "188581610.80185770225929897",
+ "price": "0.19084952071561432263",
+ "priceChange24hPercent": "-0.75",
+ "volume24h": "4205411.46540067704962362577",
+ "communityRecognized": true,
+ "key": "evm--4663:0x020bfc650a365f8bb26819deaabf3e21291018b4",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xe170dc96ca10103e0d4c5d9293c5a3a72ee365a5",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xe170dc96ca10103e0d4c5d9293c5a3a72ee365a5-1785059757195.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xe170dc96ca10103e0d4c5d9293c5a3a72ee365a5-1785059757195.png"
+ ],
+ "name": "Little John",
+ "symbol": "JOHN",
+ "marketCap": "8802.53080883729502627",
+ "price": "0.0000088025308088373",
+ "priceChange24hPercent": "0",
+ "volume24h": "0",
+ "communityRecognized": false,
+ "key": "evm--4663:0xe170dc96ca10103e0d4c5d9293c5a3a72ee365a5",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xe934e36a439c94017b64a3fece66af12099abf50",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xe934e36a439c94017b64a3fece66af12099abf50-1785290631562.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xe934e36a439c94017b64a3fece66af12099abf50-1785290631562.png"
+ ],
+ "name": "StonkBroker",
+ "symbol": "STONKBROKER",
+ "marketCap": "20652805.024120563132606053",
+ "price": "0.01688272635986417616",
+ "priceChange24hPercent": "4.8",
+ "volume24h": "427130.71128594438281049597",
+ "communityRecognized": true,
+ "key": "evm--4663:0xe934e36a439c94017b64a3fece66af12099abf50",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x348cc963411fb82cd6e0b64345714fec94f242cb",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x348cc963411fb82cd6e0b64345714fec94f242cb-1787918436309.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x348cc963411fb82cd6e0b64345714fec94f242cb-1787918436309.png"
+ ],
+ "name": "Goose Token",
+ "symbol": "GOOSE",
+ "marketCap": "81393460.832387531242448284",
+ "price": "0.08139346083238753124",
+ "priceChange24hPercent": "0",
+ "volume24h": "0",
+ "communityRecognized": false,
+ "key": "evm--4663:0x348cc963411fb82cd6e0b64345714fec94f242cb",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x5cb6f181081301b44905f3ae15419112ecabd8a6",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x5cb6f181081301b44905f3ae15419112ecabd8a6-1785411923960.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x5cb6f181081301b44905f3ae15419112ecabd8a6-1785411923960.png"
+ ],
+ "name": "pipedog",
+ "symbol": "PIPEDOG",
+ "marketCap": "35769492.909630204770672297",
+ "price": "0.00289732894922953629",
+ "priceChange24hPercent": "-2.36",
+ "volume24h": "29993.782738060153492765",
+ "communityRecognized": true,
+ "key": "evm--4663:0x5cb6f181081301b44905f3ae15419112ecabd8a6",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x57c0e45cb534413d1c20a4240955d6bb250bb4f1",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x57c0e45cb534413d1c20a4240955d6bb250bb4f1-1785005199051.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x57c0e45cb534413d1c20a4240955d6bb250bb4f1-1785005199051.png"
+ ],
+ "name": "up",
+ "symbol": "UP",
+ "marketCap": "10939824.275003627272484814",
+ "price": "0.54014115573703348966",
+ "priceChange24hPercent": "-2.18",
+ "volume24h": "153505.603425797231973509",
+ "communityRecognized": true,
+ "key": "evm--4663:0x57c0e45cb534413d1c20a4240955d6bb250bb4f1",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x0e0d2c89a5a019fe1cf762e5e33187631dacc21b",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x0e0d2c89a5a019fe1cf762e5e33187631dacc21b-1787400114210.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x0e0d2c89a5a019fe1cf762e5e33187631dacc21b-1787400114210.png"
+ ],
+ "name": "Chump Coin",
+ "symbol": "CHUMP",
+ "marketCap": "35977837.123296699878179831",
+ "price": "0.03597783749651078179",
+ "priceChange24hPercent": "1.84",
+ "volume24h": "475622.88809700274376976",
+ "communityRecognized": false,
+ "key": "evm--4663:0x0e0d2c89a5a019fe1cf762e5e33187631dacc21b",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x56910d4409f3a0c78c64dd8d0545ff0705389870",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x56910d4409f3a0c78c64dd8d0545ff0705389870-1784842044117.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x56910d4409f3a0c78c64dd8d0545ff0705389870-1784842044117.png"
+ ],
+ "name": "The Index",
+ "symbol": "Index",
+ "marketCap": "39076127.721770539963962651",
+ "price": "0.03985186707954164859",
+ "priceChange24hPercent": "1.54",
+ "volume24h": "562421.89756488724316013447",
+ "communityRecognized": true,
+ "key": "evm--4663:0x56910d4409f3a0c78c64dd8d0545ff0705389870",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x18e674231a58c239dc7daedcffe15ec3a24cff5c",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x18e674231a58c239dc7daedcffe15ec3a24cff5c-1786190410593.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x18e674231a58c239dc7daedcffe15ec3a24cff5c-1786190410593.png"
+ ],
+ "name": "Hookr.fun",
+ "symbol": "HOOKR",
+ "marketCap": "16618445.208237637803108274",
+ "price": "0.0166791731104542394",
+ "priceChange24hPercent": "8.73",
+ "volume24h": "637113.24764764323641390883",
+ "communityRecognized": true,
+ "key": "evm--4663:0x18e674231a58c239dc7daedcffe15ec3a24cff5c",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x7fe995a80075df3dc8ae11a9b82c7fe4202cd87f",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x7fe995a80075df3dc8ae11a9b82c7fe4202cd87f-1785325956569.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x7fe995a80075df3dc8ae11a9b82c7fe4202cd87f-1785325956569.png"
+ ],
+ "name": "Thinking Cat",
+ "symbol": "HMM",
+ "marketCap": "13039576.030590609490030763",
+ "price": "0.01320187144939991148",
+ "priceChange24hPercent": "2.97",
+ "volume24h": "230029.01972203715382106733",
+ "communityRecognized": true,
+ "key": "evm--4663:0x7fe995a80075df3dc8ae11a9b82c7fe4202cd87f",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x45242320dbb855eea8fd36804c6487e10e97fcf9",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x45242320dbb855eea8fd36804c6487e10e97fcf9-1784778612504.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x45242320dbb855eea8fd36804c6487e10e97fcf9-1784778612504.png"
+ ],
+ "name": "TENDIES",
+ "symbol": "TENDIES",
+ "marketCap": "15418336.651928049187952375",
+ "price": "0.0161197596815997701",
+ "priceChange24hPercent": "-1.02",
+ "volume24h": "303908.15998870167510240072",
+ "communityRecognized": false,
+ "key": "evm--4663:0x45242320dbb855eea8fd36804c6487e10e97fcf9",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xca9c78dd337a67f6e0077f65f5e9218719d30edf",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xca9c78dd337a67f6e0077f65f5e9218719d30edf-1785280831816.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xca9c78dd337a67f6e0077f65f5e9218719d30edf-1785280831816.png"
+ ],
+ "name": "NetNet",
+ "symbol": "NET",
+ "marketCap": "3920472.764198924127605602",
+ "price": "668.59150927027122099446",
+ "priceChange24hPercent": "-7.83",
+ "volume24h": "1284013.8464058835170252",
+ "communityRecognized": false,
+ "key": "evm--4663:0xca9c78dd337a67f6e0077f65f5e9218719d30edf",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xc72f232a6869e6cf34dc06129affd07f8a2a246a",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xc72f232a6869e6cf34dc06129affd07f8a2a246a-1786104032870.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xc72f232a6869e6cf34dc06129affd07f8a2a246a-1786104032870.png"
+ ],
+ "name": "Mancer",
+ "symbol": "MANCER",
+ "marketCap": "5440876.002220110409619299",
+ "price": "0.00217635040088804416",
+ "priceChange24hPercent": "-3.91",
+ "volume24h": "46025.244159311883742739",
+ "communityRecognized": false,
+ "key": "evm--4663:0xc72f232a6869e6cf34dc06129affd07f8a2a246a",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x6245e67affa44a23077f0ea7f981a8dc743a0c47",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x6245e67affa44a23077f0ea7f981a8dc743a0c47-1785931207872.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x6245e67affa44a23077f0ea7f981a8dc743a0c47-1785931207872.png"
+ ],
+ "name": "frong",
+ "symbol": "FRONG",
+ "marketCap": "5491401.474828610941251233",
+ "price": "0.00549140147482861094",
+ "priceChange24hPercent": "-2.91",
+ "volume24h": "190449.142430712016506254",
+ "communityRecognized": false,
+ "key": "evm--4663:0x6245e67affa44a23077f0ea7f981a8dc743a0c47",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xee5576fa1bcaa380e591d01245f406f3f384eb01",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xee5576fa1bcaa380e591d01245f406f3f384eb01-1787832045009.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xee5576fa1bcaa380e591d01245f406f3f384eb01-1787832045009.png"
+ ],
+ "name": "Down to Finance",
+ "symbol": "DTF",
+ "marketCap": "8682703.707015428616989098",
+ "price": "0.00868270374727847651",
+ "priceChange24hPercent": "-1.18",
+ "volume24h": "228646.94627468329697769",
+ "communityRecognized": false,
+ "key": "evm--4663:0xee5576fa1bcaa380e591d01245f406f3f384eb01",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x62c71cd34a52c30d894419cbcc55db2afa8032ea",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x62c71cd34a52c30d894419cbcc55db2afa8032ea-1785197280438.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x62c71cd34a52c30d894419cbcc55db2afa8032ea-1785197280438.png"
+ ],
+ "name": "YOLO",
+ "symbol": "YOLO",
+ "marketCap": "6110793.379760146105089284",
+ "price": "0.0062997870322002435",
+ "priceChange24hPercent": "4.96",
+ "volume24h": "95825.15978783095941428",
+ "communityRecognized": false,
+ "key": "evm--4663:0x62c71cd34a52c30d894419cbcc55db2afa8032ea",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x451b42a15100c340ca12f7c66de06fac5ea2d751",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x451b42a15100c340ca12f7c66de06fac5ea2d751-1787832041620.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x451b42a15100c340ca12f7c66de06fac5ea2d751-1787832041620.png"
+ ],
+ "name": "Longbow",
+ "symbol": "BOW",
+ "marketCap": "5787414.729870295757998562",
+ "price": "0.00578741472987029576",
+ "priceChange24hPercent": "-2.3",
+ "volume24h": "289514.227269450140201233",
+ "communityRecognized": false,
+ "key": "evm--4663:0x451b42a15100c340ca12f7c66de06fac5ea2d751",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xf2915d1e3c1b0c769d0c756ec43f1c1f6c99cd03",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xf2915d1e3c1b0c769d0c756ec43f1c1f6c99cd03-1784861135802.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xf2915d1e3c1b0c769d0c756ec43f1c1f6c99cd03-1784861135802.png"
+ ],
+ "name": "Arrow",
+ "symbol": "ARROW",
+ "marketCap": "3472922.672130186445530038",
+ "price": "0.38588029898682948721",
+ "priceChange24hPercent": "-7.26",
+ "volume24h": "29678.75129781257653371",
+ "communityRecognized": false,
+ "key": "evm--4663:0xf2915d1e3c1b0c769d0c756ec43f1c1f6c99cd03",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xb9972ca7188e511174947e3936a5315ac7073277",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xb9972ca7188e511174947e3936a5315ac7073277-1787400211008.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xb9972ca7188e511174947e3936a5315ac7073277-1787400211008.png"
+ ],
+ "name": "Prologue",
+ "symbol": "PROLOGUE",
+ "marketCap": "10867196.245258369257184329",
+ "price": "0.01086719624525836926",
+ "priceChange24hPercent": "17.31",
+ "volume24h": "581563.645859815325715904",
+ "communityRecognized": true,
+ "key": "evm--4663:0xb9972ca7188e511174947e3936a5315ac7073277",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xd7321801caae694090694ff55a9323139f043b88",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xd7321801caae694090694ff55a9323139f043b88-1784779777690.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xd7321801caae694090694ff55a9323139f043b88-1784779777690.png"
+ ],
+ "name": "The Juggernaut",
+ "symbol": "JUGGERNAUT",
+ "marketCap": "3019903.208555332697636294",
+ "price": "0.00322096834857655848",
+ "priceChange24hPercent": "-2.51",
+ "volume24h": "34166.89514077934276997",
+ "communityRecognized": false,
+ "key": "evm--4663:0xd7321801caae694090694ff55a9323139f043b88",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x8ff92566f2e81bdd68edfaa8cde73942a723796b",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x8ff92566f2e81bdd68edfaa8cde73942a723796b-1784854679354.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x8ff92566f2e81bdd68edfaa8cde73942a723796b-1784854679354.png"
+ ],
+ "name": "ProjectVex",
+ "symbol": "VEX",
+ "marketCap": "2665179.099566858123776638",
+ "price": "0.00266517909956685812",
+ "priceChange24hPercent": "-3.89",
+ "volume24h": "46079.304108803096957694",
+ "communityRecognized": false,
+ "key": "evm--4663:0x8ff92566f2e81bdd68edfaa8cde73942a723796b",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xcebc0cfbc5dd0893a9e3b9d0f75b211ddf5934a0",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xcebc0cfbc5dd0893a9e3b9d0f75b211ddf5934a0-1788177871007.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xcebc0cfbc5dd0893a9e3b9d0f75b211ddf5934a0-1788177871007.png"
+ ],
+ "name": "clan.tech",
+ "symbol": "CLAN",
+ "marketCap": "1346087.777112335683918246",
+ "price": "0.00134608777721111461",
+ "priceChange24hPercent": "-12.76",
+ "volume24h": "27548.17413550046020931",
+ "communityRecognized": false,
+ "key": "evm--4663:0xcebc0cfbc5dd0893a9e3b9d0f75b211ddf5934a0",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x232cdfc415d10b673845d83dc02ba2eabe7e30d1",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x232cdfc415d10b673845d83dc02ba2eabe7e30d1-1785412803768.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x232cdfc415d10b673845d83dc02ba2eabe7e30d1-1785412803768.png"
+ ],
+ "name": "What If",
+ "symbol": "IF",
+ "marketCap": "10586906.988923495786384388",
+ "price": "0.01168673691363227001",
+ "priceChange24hPercent": "-7.45",
+ "volume24h": "67903.50558038779323687104",
+ "communityRecognized": false,
+ "key": "evm--4663:0x232cdfc415d10b673845d83dc02ba2eabe7e30d1",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x76761d4aee1e7d6b2b8dedbd13925d6c220b0725",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x76761d4aee1e7d6b2b8dedbd13925d6c220b0725-1786276810800.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x76761d4aee1e7d6b2b8dedbd13925d6c220b0725-1786276810800.png"
+ ],
+ "name": "MowCat",
+ "symbol": "MOW",
+ "marketCap": "4608946.621219782201180129",
+ "price": "0.0046089466212197822",
+ "priceChange24hPercent": "-1.01",
+ "volume24h": "0.49487193750628033",
+ "communityRecognized": false,
+ "key": "evm--4663:0x76761d4aee1e7d6b2b8dedbd13925d6c220b0725",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x77b0aa38451ccdc1b42587e2f80b9879a7f82356",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x77b0aa38451ccdc1b42587e2f80b9879a7f82356-1786536021883.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x77b0aa38451ccdc1b42587e2f80b9879a7f82356-1786536021883.png"
+ ],
+ "name": "DogBull",
+ "symbol": "DOGO",
+ "marketCap": "21768233.653662840214264244",
+ "price": "0.02155270658778499031",
+ "priceChange24hPercent": "9.04",
+ "volume24h": "968.3501256395052",
+ "communityRecognized": false,
+ "key": "evm--4663:0x77b0aa38451ccdc1b42587e2f80b9879a7f82356",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x385b36ff682ab4c76e7c37a66b96aabc466471d5",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x385b36ff682ab4c76e7c37a66b96aabc466471d5-1786017815496.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x385b36ff682ab4c76e7c37a66b96aabc466471d5-1786017815496.png"
+ ],
+ "name": "pools.trade",
+ "symbol": "POOLS",
+ "marketCap": "1556630.67532955837106892",
+ "price": "0.0015566308898872704",
+ "priceChange24hPercent": "5.44",
+ "volume24h": "84475.2589248484339141",
+ "communityRecognized": false,
+ "key": "evm--4663:0x385b36ff682ab4c76e7c37a66b96aabc466471d5",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x5f62c57e5c537887117eef828b7e3ad41c009feb",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x5f62c57e5c537887117eef828b7e3ad41c009feb-1786018016957.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x5f62c57e5c537887117eef828b7e3ad41c009feb-1786018016957.png"
+ ],
+ "name": "Good In The Hood",
+ "symbol": "GOOD",
+ "marketCap": "3650847.769165494974298471",
+ "price": "0.00464873807570103688",
+ "priceChange24hPercent": "-0.43",
+ "volume24h": "42347.0605904815970021",
+ "communityRecognized": false,
+ "key": "evm--4663:0x5f62c57e5c537887117eef828b7e3ad41c009feb",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x20024e485c0b22b42855589700721b28320a7777",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x20024e485c0b22b42855589700721b28320a7777-1786363300721.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x20024e485c0b22b42855589700721b28320a7777-1786363300721.png"
+ ],
+ "name": "Prism Assets",
+ "symbol": "PRISM",
+ "marketCap": "2315389.100589988802579267",
+ "price": "0.0023153891005899888",
+ "priceChange24hPercent": "39.81",
+ "volume24h": "79479.37439482278053848",
+ "communityRecognized": false,
+ "key": "evm--4663:0x20024e485c0b22b42855589700721b28320a7777",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x4a6eec8a30b49d289b9fc865fd374b4d61eab8fb",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x4a6eec8a30b49d289b9fc865fd374b4d61eab8fb-1785758432269.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x4a6eec8a30b49d289b9fc865fd374b4d61eab8fb-1785758432269.png"
+ ],
+ "name": "Liluni",
+ "symbol": "Liluni",
+ "marketCap": "769327.821597585049202932",
+ "price": "0.00076932782159758505",
+ "priceChange24hPercent": "-5.77",
+ "volume24h": "7121.24036385021149102",
+ "communityRecognized": false,
+ "key": "evm--4663:0x4a6eec8a30b49d289b9fc865fd374b4d61eab8fb",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xb8fa8010833463aac5595b55b9045479239eff79",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xb8fa8010833463aac5595b55b9045479239eff79-1786881632532.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xb8fa8010833463aac5595b55b9045479239eff79-1786881632532.png"
+ ],
+ "name": "what the hook?",
+ "symbol": "WTH",
+ "marketCap": "4433865.674641148580658499",
+ "price": "21.11364606971975514599",
+ "priceChange24hPercent": "1.21",
+ "volume24h": "143092.04241228086084284",
+ "communityRecognized": false,
+ "key": "evm--4663:0xb8fa8010833463aac5595b55b9045479239eff79",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xf8bc08092c06db6148114dcf82af881f1085f92b",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xf8bc08092c06db6148114dcf82af881f1085f92b-1785137390595.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xf8bc08092c06db6148114dcf82af881f1085f92b-1785137390595.png"
+ ],
+ "name": "Sherwood Protocol",
+ "symbol": "WOOD",
+ "marketCap": "5294868.778292219416037217",
+ "price": "0.00529486877829221942",
+ "priceChange24hPercent": "0.46",
+ "volume24h": "29026.0766873777507563903",
+ "communityRecognized": false,
+ "key": "evm--4663:0xf8bc08092c06db6148114dcf82af881f1085f92b",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x51fb76be80ab6daaa345d818f4e06441816b4fea",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x51fb76be80ab6daaa345d818f4e06441816b4fea-1786104017624.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x51fb76be80ab6daaa345d818f4e06441816b4fea-1786104017624.png"
+ ],
+ "name": "NASDANQ",
+ "symbol": "NASDANQ",
+ "marketCap": "2336139.896707354816830353",
+ "price": "0.00233613989670735482",
+ "priceChange24hPercent": "-10.24",
+ "volume24h": "45451.611629481712159027",
+ "communityRecognized": false,
+ "key": "evm--4663:0x51fb76be80ab6daaa345d818f4e06441816b4fea",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x8ecea3d0e648db646d824aa51eedeb16ac3d6878",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x8ecea3d0e648db646d824aa51eedeb16ac3d6878-1785284432065.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x8ecea3d0e648db646d824aa51eedeb16ac3d6878-1785284432065.png"
+ ],
+ "name": "wire bot",
+ "symbol": "wire",
+ "marketCap": "539032.655786243127634391",
+ "price": "0.00054041288588799596",
+ "priceChange24hPercent": "-0.03",
+ "volume24h": "17114.889281614849401385",
+ "communityRecognized": false,
+ "key": "evm--4663:0x8ecea3d0e648db646d824aa51eedeb16ac3d6878",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xcb5566e73bee5390c75df834d4727dcecc65fc87",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xcb5566e73bee5390c75df834d4727dcecc65fc87-1788354026635.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xcb5566e73bee5390c75df834d4727dcecc65fc87-1788354026635.png"
+ ],
+ "name": "Mast Bond",
+ "symbol": "MAST",
+ "marketCap": "652914.665836647500035643",
+ "price": "0.0006529146658366475",
+ "priceChange24hPercent": "-0.54",
+ "volume24h": "17589.51490846126885682",
+ "communityRecognized": false,
+ "key": "evm--4663:0xcb5566e73bee5390c75df834d4727dcecc65fc87",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xf44702b17d9abd53815f703e772f35e9c71a53af",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xf44702b17d9abd53815f703e772f35e9c71a53af-1784822115804.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xf44702b17d9abd53815f703e772f35e9c71a53af-1784822115804.png"
+ ],
+ "name": "RAXOL",
+ "symbol": "RAXOL",
+ "marketCap": "1712329.03977912128931203",
+ "price": "0.00171232903977912129",
+ "priceChange24hPercent": "-5.88",
+ "volume24h": "5417.0412821532904826",
+ "communityRecognized": false,
+ "key": "evm--4663:0xf44702b17d9abd53815f703e772f35e9c71a53af",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x8e62f281f282686fca6dcb39288069a93fc23f1c",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x8e62f281f282686fca6dcb39288069a93fc23f1c-1784830569718.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x8e62f281f282686fca6dcb39288069a93fc23f1c-1784830569718.png"
+ ],
+ "name": "Hoodrat",
+ "symbol": "HOODRAT",
+ "marketCap": "1729390.247190236716847253",
+ "price": "0.00172939031667982091",
+ "priceChange24hPercent": "1.63",
+ "volume24h": "13905.18189835559297072",
+ "communityRecognized": true,
+ "key": "evm--4663:0x8e62f281f282686fca6dcb39288069a93fc23f1c",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x77581054581b9c525e7dd7a0155de43867532d03",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x77581054581b9c525e7dd7a0155de43867532d03-1784939141560.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x77581054581b9c525e7dd7a0155de43867532d03-1784939141560.png"
+ ],
+ "name": "WISHBONE",
+ "symbol": "WISHBONE",
+ "marketCap": "890566.402734889733341878",
+ "price": "0.00096332665926777235",
+ "priceChange24hPercent": "-2.53",
+ "volume24h": "3308.40679920327238953",
+ "communityRecognized": false,
+ "key": "evm--4663:0x77581054581b9c525e7dd7a0155de43867532d03",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x43eea882b845a8493152ebc55cf30ae9281b02d5",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x43eea882b845a8493152ebc55cf30ae9281b02d5-1785292897426.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x43eea882b845a8493152ebc55cf30ae9281b02d5-1785292897426.png"
+ ],
+ "name": "FIRE",
+ "symbol": "FIRE",
+ "marketCap": "1462625.380905727143813291",
+ "price": "0.0014809585098065579",
+ "priceChange24hPercent": "35.83",
+ "volume24h": "49053.997129408245912783",
+ "communityRecognized": false,
+ "key": "evm--4663:0x43eea882b845a8493152ebc55cf30ae9281b02d5",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xac77646bcff9d52e99800534192e0290933f4094",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xac77646bcff9d52e99800534192e0290933f4094-1787572842778.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xac77646bcff9d52e99800534192e0290933f4094-1787572842778.png"
+ ],
+ "name": "Martians",
+ "symbol": "MARTIANS",
+ "marketCap": "421107.798117296771237422",
+ "price": "0.00042110779812399404",
+ "priceChange24hPercent": "1.32",
+ "volume24h": "14816.6895887998832814",
+ "communityRecognized": false,
+ "key": "evm--4663:0xac77646bcff9d52e99800534192e0290933f4094",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xf0568863195770965a6d8abb0aa87f4314b80320",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xf0568863195770965a6d8abb0aa87f4314b80320-1785239850960.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xf0568863195770965a6d8abb0aa87f4314b80320-1785239850960.png"
+ ],
+ "name": "SLIPPY",
+ "symbol": "SLIPPY",
+ "marketCap": "2285143.7736062878747713",
+ "price": "0.0022851443913658089",
+ "priceChange24hPercent": "5.52",
+ "volume24h": "10566.18636937484024304561",
+ "communityRecognized": false,
+ "key": "evm--4663:0xf0568863195770965a6d8abb0aa87f4314b80320",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x9ca1cc0c90d97b4f36c5e2232d4fbd705a73c65d",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x9ca1cc0c90d97b4f36c5e2232d4fbd705a73c65d-1786363300721.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x9ca1cc0c90d97b4f36c5e2232d4fbd705a73c65d-1786363300721.png"
+ ],
+ "name": "TA FUND",
+ "symbol": "TA",
+ "marketCap": "2169025.59885951907590852",
+ "price": "0.00216902559885951908",
+ "priceChange24hPercent": "-14.02",
+ "volume24h": "33405.98998354852304",
+ "communityRecognized": false,
+ "key": "evm--4663:0x9ca1cc0c90d97b4f36c5e2232d4fbd705a73c65d",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x7168563b0e70124f0c7c0cf2f13a8d1861baf4a5",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x7168563b0e70124f0c7c0cf2f13a8d1861baf4a5-1785276114071.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x7168563b0e70124f0c7c0cf2f13a8d1861baf4a5-1785276114071.png"
+ ],
+ "name": "Backed",
+ "symbol": "BACKED",
+ "marketCap": "683975.046016032677877222",
+ "price": "0.00072634119132098617",
+ "priceChange24hPercent": "6.03",
+ "volume24h": "24408.0027414143083791",
+ "communityRecognized": false,
+ "key": "evm--4663:0x7168563b0e70124f0c7c0cf2f13a8d1861baf4a5",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xe3fa12da7fa026b21817f16622e8ae48fa785166",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xe3fa12da7fa026b21817f16622e8ae48fa785166-1786536006382.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xe3fa12da7fa026b21817f16622e8ae48fa785166-1786536006382.png"
+ ],
+ "name": "Yardkeeper",
+ "symbol": "YARD",
+ "marketCap": "1661101.247537698075666796",
+ "price": "0.00237034455488214896",
+ "priceChange24hPercent": "1.79",
+ "volume24h": "4163.433968748924358",
+ "communityRecognized": false,
+ "key": "evm--4663:0xe3fa12da7fa026b21817f16622e8ae48fa785166",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x727701f88f09fed71eb217bcea88b3f314cf7079",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x727701f88f09fed71eb217bcea88b3f314cf7079-1785229474064.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x727701f88f09fed71eb217bcea88b3f314cf7079-1785229474064.png"
+ ],
+ "name": "GRID by Virtuals",
+ "symbol": "GRID",
+ "marketCap": "1249980.578691939741013368",
+ "price": "0.00124998057869193974",
+ "priceChange24hPercent": "3.45",
+ "volume24h": "4396.5897564914967905",
+ "communityRecognized": false,
+ "key": "evm--4663:0x727701f88f09fed71eb217bcea88b3f314cf7079",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x96765066f6a040a21eb027167d2315b707c82633",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x96765066f6a040a21eb027167d2315b707c82633-1784938636403.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x96765066f6a040a21eb027167d2315b707c82633-1784938636403.png"
+ ],
+ "name": "Ravenhood",
+ "symbol": "RVH",
+ "marketCap": "390628.355788254703232466",
+ "price": "0.00496337736804456155",
+ "priceChange24hPercent": "-15.32",
+ "volume24h": "16316.077325027930377449",
+ "communityRecognized": false,
+ "key": "evm--4663:0x96765066f6a040a21eb027167d2315b707c82633",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xbd957cc9f1e94617792f37bc40f2f299e78acf3e",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xbd957cc9f1e94617792f37bc40f2f299e78acf3e-1785845024248.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xbd957cc9f1e94617792f37bc40f2f299e78acf3e-1785845024248.png"
+ ],
+ "name": "Crude Cat",
+ "symbol": "CRUDECAT",
+ "marketCap": "2307997.035220816076014931",
+ "price": "0.00597695795708211835",
+ "priceChange24hPercent": "4.56",
+ "volume24h": "26559.650447046920187237",
+ "communityRecognized": false,
+ "key": "evm--4663:0xbd957cc9f1e94617792f37bc40f2f299e78acf3e",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xfb1bcb6817f7b8fa86896d3253b16aeb7bd6a5a8",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xfb1bcb6817f7b8fa86896d3253b16aeb7bd6a5a8-1785008871536.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xfb1bcb6817f7b8fa86896d3253b16aeb7bd6a5a8-1785008871536.png"
+ ],
+ "name": "one life, its worth an attempt",
+ "symbol": "worth",
+ "marketCap": "943016.144584851830199867",
+ "price": "0.00112942228622299282",
+ "priceChange24hPercent": "-4.65",
+ "volume24h": "13857.6796452749737343",
+ "communityRecognized": false,
+ "key": "evm--4663:0xfb1bcb6817f7b8fa86896d3253b16aeb7bd6a5a8",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x49bac47750f3dcdba49350b5d74fd399e90f97c6",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x49bac47750f3dcdba49350b5d74fd399e90f97c6-1786190483451.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x49bac47750f3dcdba49350b5d74fd399e90f97c6-1786190483451.png"
+ ],
+ "name": "The Bull",
+ "symbol": "BULL",
+ "marketCap": "1844160.155161726289434023",
+ "price": "0.00184418762652969795",
+ "priceChange24hPercent": "-4.02",
+ "volume24h": "7055.03058764326122966",
+ "communityRecognized": false,
+ "key": "evm--4663:0x49bac47750f3dcdba49350b5d74fd399e90f97c6",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x9727b500ac8726c716f018e5d3ca871481245065",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x9727b500ac8726c716f018e5d3ca871481245065-1785196146146.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x9727b500ac8726c716f018e5d3ca871481245065-1785196146146.png"
+ ],
+ "name": "Ansem Cat",
+ "symbol": "AnsemCat",
+ "marketCap": "365173.245867752584482233",
+ "price": "0.00000086803405326429",
+ "priceChange24hPercent": "-2.64",
+ "volume24h": "9.935641306557192",
+ "communityRecognized": false,
+ "key": "evm--4663:0x9727b500ac8726c716f018e5d3ca871481245065",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xeafa804083a4886a9460b5b19557334a652beba8",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xeafa804083a4886a9460b5b19557334a652beba8-1785002418521.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xeafa804083a4886a9460b5b19557334a652beba8-1785002418521.png"
+ ],
+ "name": "Naven Network",
+ "symbol": "NAVEN",
+ "marketCap": "379120.192909717179101389",
+ "price": "0.00043238178622577899",
+ "priceChange24hPercent": "5.32",
+ "volume24h": "9829.89311807554096518",
+ "communityRecognized": false,
+ "key": "evm--4663:0xeafa804083a4886a9460b5b19557334a652beba8",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x0762c1708f0d23f86b29d6b857121ff7df357506",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x0762c1708f0d23f86b29d6b857121ff7df357506-1785931280846.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x0762c1708f0d23f86b29d6b857121ff7df357506-1785931280846.png"
+ ],
+ "name": "this is not a website",
+ "symbol": "website",
+ "marketCap": "5197878.936462059211378102",
+ "price": "0.00555662732124259188",
+ "priceChange24hPercent": "29.89",
+ "volume24h": "95388.35222699817454776",
+ "communityRecognized": false,
+ "key": "evm--4663:0x0762c1708f0d23f86b29d6b857121ff7df357506",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x3b4a0048a00787a644932cd648faa043410c163e",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x3b4a0048a00787a644932cd648faa043410c163e-1788264033495.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x3b4a0048a00787a644932cd648faa043410c163e-1788264033495.png"
+ ],
+ "name": "The Dogestar",
+ "symbol": "SIRIUS",
+ "marketCap": "889308.889941344775296854",
+ "price": "0.00088930888995381725",
+ "priceChange24hPercent": "-28.3",
+ "volume24h": "182665.0649432332283352",
+ "communityRecognized": false,
+ "key": "evm--4663:0x3b4a0048a00787a644932cd648faa043410c163e",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x2103faa9d1762e27a716c61718b3acf3ec1f9bf1",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x2103faa9d1762e27a716c61718b3acf3ec1f9bf1-1785016173111.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x2103faa9d1762e27a716c61718b3acf3ec1f9bf1-1785016173111.png"
+ ],
+ "name": "Robin Hood",
+ "symbol": "FOX",
+ "marketCap": "819155.44037873657318132",
+ "price": "0.00087392746402269212",
+ "priceChange24hPercent": "-5.91",
+ "volume24h": "15504.59512307167404974",
+ "communityRecognized": false,
+ "key": "evm--4663:0x2103faa9d1762e27a716c61718b3acf3ec1f9bf1",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x532c5583671870723ceef573600208af49c87c54",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x532c5583671870723ceef573600208af49c87c54-1787572802676.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x532c5583671870723ceef573600208af49c87c54-1787572802676.png"
+ ],
+ "name": "Canopy Finance",
+ "symbol": "CNPY",
+ "marketCap": "2043406.519085803891568646",
+ "price": "0.00268033834862245422",
+ "priceChange24hPercent": "24.67",
+ "volume24h": "118357.79101005422933922",
+ "communityRecognized": false,
+ "key": "evm--4663:0x532c5583671870723ceef573600208af49c87c54",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xaa40e79e987517f7462bf79315b8a118799b04e3",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xaa40e79e987517f7462bf79315b8a118799b04e3-1787659277021.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xaa40e79e987517f7462bf79315b8a118799b04e3-1787659277021.png"
+ ],
+ "name": "scopl.live",
+ "symbol": "SCOPL",
+ "marketCap": "401077.566822741022302925",
+ "price": "0.00041294851870877833",
+ "priceChange24hPercent": "-19.12",
+ "volume24h": "14950.8002304033310052",
+ "communityRecognized": false,
+ "key": "evm--4663:0xaa40e79e987517f7462bf79315b8a118799b04e3",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x01637b14b7378b99de75a64d50656d98488d9a4d",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x01637b14b7378b99de75a64d50656d98488d9a4d-1784777167517.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x01637b14b7378b99de75a64d50656d98488d9a4d-1784777167517.png"
+ ],
+ "name": "Lady Marian",
+ "symbol": "MARIAN",
+ "marketCap": "628696.510942059642535741",
+ "price": "0.00063887984115372445",
+ "priceChange24hPercent": "-8.69",
+ "volume24h": "13363.569271539007018",
+ "communityRecognized": false,
+ "key": "evm--4663:0x01637b14b7378b99de75a64d50656d98488d9a4d",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xa5be0eeb82a013dc7867b9e020c36a69da666666",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xa5be0eeb82a013dc7867b9e020c36a69da666666-1787227214299.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xa5be0eeb82a013dc7867b9e020c36a69da666666-1787227214299.png"
+ ],
+ "name": "CLOCK IN",
+ "symbol": "CLOCKIN",
+ "marketCap": "390075.568640705056017851",
+ "price": "0.00039007557111482805",
+ "priceChange24hPercent": "11.89",
+ "volume24h": "7693.0173579416639987",
+ "communityRecognized": false,
+ "key": "evm--4663:0xa5be0eeb82a013dc7867b9e020c36a69da666666",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xf0e17e54239cd945cd7bea471a3a2ca6a8c7f7a3",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xf0e17e54239cd945cd7bea471a3a2ca6a8c7f7a3-1785403528086.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xf0e17e54239cd945cd7bea471a3a2ca6a8c7f7a3-1785403528086.png"
+ ],
+ "name": "Lemon",
+ "symbol": "LEMON.FUN",
+ "marketCap": "567512.386103755069902849",
+ "price": "0.00057397490461328917",
+ "priceChange24hPercent": "-1.41",
+ "volume24h": "4161.0084931589382284",
+ "communityRecognized": false,
+ "key": "evm--4663:0xf0e17e54239cd945cd7bea471a3a2ca6a8c7f7a3",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x5edb417509a869b1d8222dea05257b8c8ba00361",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x5edb417509a869b1d8222dea05257b8c8ba00361-1786881611635.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x5edb417509a869b1d8222dea05257b8c8ba00361-1786881611635.png"
+ ],
+ "name": "DeFi Traded Fund",
+ "symbol": "DTF",
+ "marketCap": "2101276.505389603821695618",
+ "price": "0.00258078710768923079",
+ "priceChange24hPercent": "4.37",
+ "volume24h": "12072.127744",
+ "communityRecognized": false,
+ "key": "evm--4663:0x5edb417509a869b1d8222dea05257b8c8ba00361",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x1d5aad3c0d6066078ea60f384a2492a550db30b0",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x1d5aad3c0d6066078ea60f384a2492a550db30b0-1786623045142.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x1d5aad3c0d6066078ea60f384a2492a550db30b0-1786623045142.png"
+ ],
+ "name": "STACKERS",
+ "symbol": "STACK",
+ "marketCap": "328316.712147829017752093",
+ "price": "0.00052860209114416726",
+ "priceChange24hPercent": "-2.18",
+ "volume24h": "8428.40954421896883364",
+ "communityRecognized": false,
+ "key": "evm--4663:0x1d5aad3c0d6066078ea60f384a2492a550db30b0",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xd1e861cc5eee7ea88649206b74504d78ccd7aeea",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xd1e861cc5eee7ea88649206b74504d78ccd7aeea-1786708875938.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xd1e861cc5eee7ea88649206b74504d78ccd7aeea-1786708875938.png"
+ ],
+ "name": "Alandale",
+ "symbol": "LUTE",
+ "marketCap": "453658.504315338644932708",
+ "price": "0.00853535222467991659",
+ "priceChange24hPercent": "-0.11",
+ "volume24h": "859.6307700072502465",
+ "communityRecognized": false,
+ "key": "evm--4663:0xd1e861cc5eee7ea88649206b74504d78ccd7aeea",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xbc9e7b1c5c0081f4ae85e71ec95703d3dec9ffad",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xbc9e7b1c5c0081f4ae85e71ec95703d3dec9ffad-1786449612801.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xbc9e7b1c5c0081f4ae85e71ec95703d3dec9ffad-1786449612801.png"
+ ],
+ "name": "Bucket Shop",
+ "symbol": "Bucket",
+ "marketCap": "3487714.386686102696356531",
+ "price": "0.00349446150649011294",
+ "priceChange24hPercent": "41.84",
+ "volume24h": "38935.8065227630988422",
+ "communityRecognized": false,
+ "key": "evm--4663:0xbc9e7b1c5c0081f4ae85e71ec95703d3dec9ffad",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x8d4dfaaa4198b6486e0293fec914c2b6a821d4dc",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x8d4dfaaa4198b6486e0293fec914c2b6a821d4dc-1784777336133.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x8d4dfaaa4198b6486e0293fec914c2b6a821d4dc-1784777336133.png"
+ ],
+ "name": "KITSU",
+ "symbol": "KITSU",
+ "marketCap": "1112588.761797044854702224",
+ "price": "0.00118106846427510267",
+ "priceChange24hPercent": "8.39",
+ "volume24h": "29334.829915455111990764",
+ "communityRecognized": false,
+ "key": "evm--4663:0x8d4dfaaa4198b6486e0293fec914c2b6a821d4dc",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xe15db7c8547a0add11eb26a700246cca08aefce5",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xe15db7c8547a0add11eb26a700246cca08aefce5-1785409545430.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xe15db7c8547a0add11eb26a700246cca08aefce5-1785409545430.png"
+ ],
+ "name": "Shibinhood",
+ "symbol": "WOOF",
+ "marketCap": "1215493.548453345796307932",
+ "price": "0.00000121549354859677",
+ "priceChange24hPercent": "-8.75",
+ "volume24h": "7340.097089494747047",
+ "communityRecognized": true,
+ "key": "evm--4663:0xe15db7c8547a0add11eb26a700246cca08aefce5",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x69984ad3322300039f2855f81c44dbc532efe744",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x69984ad3322300039f2855f81c44dbc532efe744-1785359089193.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x69984ad3322300039f2855f81c44dbc532efe744-1785359089193.png"
+ ],
+ "name": "Tygr",
+ "symbol": "TYGR",
+ "marketCap": "283285.985380009240663877",
+ "price": "0.00031503893798487123",
+ "priceChange24hPercent": "2.39",
+ "volume24h": "2531.74493557523230624",
+ "communityRecognized": false,
+ "key": "evm--4663:0x69984ad3322300039f2855f81c44dbc532efe744",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xa0e67be79118704a35e7d4b20c3ec4df36ef6e10",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xa0e67be79118704a35e7d4b20c3ec4df36ef6e10-1788091298404.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xa0e67be79118704a35e7d4b20c3ec4df36ef6e10-1788091298404.png"
+ ],
+ "name": "Pons Index",
+ "symbol": "PONSFOLIO",
+ "marketCap": "34018.737934824480556041",
+ "price": "0.00003401873793482448",
+ "priceChange24hPercent": "1.09",
+ "volume24h": "27.480983845679184",
+ "communityRecognized": false,
+ "key": "evm--4663:0xa0e67be79118704a35e7d4b20c3ec4df36ef6e10",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x0e8720b8cd84f95b4b6696adbfa8063c4b8b94f2",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x0e8720b8cd84f95b4b6696adbfa8063c4b8b94f2-1784804605586.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x0e8720b8cd84f95b4b6696adbfa8063c4b8b94f2-1784804605586.png"
+ ],
+ "name": "Buy Button",
+ "symbol": "BUY",
+ "marketCap": "748201.591140112186514847",
+ "price": "0.00082408396918163004",
+ "priceChange24hPercent": "24.36",
+ "volume24h": "33504.17839825910896768",
+ "communityRecognized": false,
+ "key": "evm--4663:0x0e8720b8cd84f95b4b6696adbfa8063c4b8b94f2",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x3f9f0b6073ee8c495aed96869af31850fed40feb",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x3f9f0b6073ee8c495aed96869af31850fed40feb-1785412064587.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x3f9f0b6073ee8c495aed96869af31850fed40feb-1785412064587.png"
+ ],
+ "name": "Dice Protocol",
+ "symbol": "DICE",
+ "marketCap": "246206.974893546367185266",
+ "price": "0.00025278197889207848",
+ "priceChange24hPercent": "-2.92",
+ "volume24h": "9593.3753147094229535",
+ "communityRecognized": false,
+ "key": "evm--4663:0x3f9f0b6073ee8c495aed96869af31850fed40feb",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x298348d5b2e45c774e3ee4f1a0924071dfbdc8c7",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x298348d5b2e45c774e3ee4f1a0924071dfbdc8c7-1786190550357.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x298348d5b2e45c774e3ee4f1a0924071dfbdc8c7-1786190550357.png"
+ ],
+ "name": "swappy",
+ "symbol": "swappy",
+ "marketCap": "449114.126612554601310211",
+ "price": "0.0004491141266125546",
+ "priceChange24hPercent": "8.5",
+ "volume24h": "7030.29432449232660847",
+ "communityRecognized": false,
+ "key": "evm--4663:0x298348d5b2e45c774e3ee4f1a0924071dfbdc8c7",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xace55fe98bab14366dd49ab5aa5df76aa11a3c6f",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xace55fe98bab14366dd49ab5aa5df76aa11a3c6f-1785845024248.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xace55fe98bab14366dd49ab5aa5df76aa11a3c6f-1785845024248.png"
+ ],
+ "name": "Wojak",
+ "symbol": "WOJAK",
+ "marketCap": "1692216.549970488123565045",
+ "price": "0.00185787421689451655",
+ "priceChange24hPercent": "-9.56",
+ "volume24h": "12806.50534797285045105",
+ "communityRecognized": false,
+ "key": "evm--4663:0xace55fe98bab14366dd49ab5aa5df76aa11a3c6f",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xe4b8723d202fdd0298b1d7496a86656b2986c532",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xe4b8723d202fdd0298b1d7496a86656b2986c532-1786622839074.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xe4b8723d202fdd0298b1d7496a86656b2986c532-1786622839074.png"
+ ],
+ "name": "StockRip",
+ "symbol": "RIP",
+ "marketCap": "938245.272755205458732501",
+ "price": "0.0009382885426150306",
+ "priceChange24hPercent": "-2.67",
+ "volume24h": "3399.459783392204160984",
+ "communityRecognized": false,
+ "key": "evm--4663:0xe4b8723d202fdd0298b1d7496a86656b2986c532",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xfe242d1da8fd04f6a1f80b6d3d807b02e062ad4e",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xfe242d1da8fd04f6a1f80b6d3d807b02e062ad4e-1787832041620.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xfe242d1da8fd04f6a1f80b6d3d807b02e062ad4e-1787832041620.png"
+ ],
+ "name": "Obscura",
+ "symbol": "OBS",
+ "marketCap": "500688.818984870549311758",
+ "price": "0.00050403564936191361",
+ "priceChange24hPercent": "0.78",
+ "volume24h": "6999.07702864570936855",
+ "communityRecognized": false,
+ "key": "evm--4663:0xfe242d1da8fd04f6a1f80b6d3d807b02e062ad4e",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x14641000a501bdc736116abf84e6fcea9b90a713",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x14641000a501bdc736116abf84e6fcea9b90a713-1788178423240.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x14641000a501bdc736116abf84e6fcea9b90a713-1788178423240.png"
+ ],
+ "name": "MESH Gateway",
+ "symbol": "MESH",
+ "marketCap": "1208210.549215450362706768",
+ "price": "0.00120821054921545036",
+ "priceChange24hPercent": "-0.95",
+ "volume24h": "15093.7629923134211251",
+ "communityRecognized": false,
+ "key": "evm--4663:0x14641000a501bdc736116abf84e6fcea9b90a713",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x7ba36be14dd06ba492f08be6c1b2979c1d0b652c",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x7ba36be14dd06ba492f08be6c1b2979c1d0b652c-1788178016235.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x7ba36be14dd06ba492f08be6c1b2979c1d0b652c-1788178016235.png"
+ ],
+ "name": "PerpsHood",
+ "symbol": "PERPSHOOD",
+ "marketCap": "3288366.118814719718758381",
+ "price": "0.00333761406584314507",
+ "priceChange24hPercent": "-3.74",
+ "volume24h": "214117.4754391452934107",
+ "communityRecognized": false,
+ "key": "evm--4663:0x7ba36be14dd06ba492f08be6c1b2979c1d0b652c",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x77061b45c5e4d440bd681b5f72bd0f4231a6fc04",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x77061b45c5e4d440bd681b5f72bd0f4231a6fc04-1788004867211.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x77061b45c5e4d440bd681b5f72bd0f4231a6fc04-1788004867211.png"
+ ],
+ "name": "RobinVault",
+ "symbol": "ROBINVAULT",
+ "marketCap": "397586.87667975865000995",
+ "price": "0.00073326281522966963",
+ "priceChange24hPercent": "-0.23",
+ "volume24h": "41358.0303770635414252",
+ "communityRecognized": false,
+ "key": "evm--4663:0x77061b45c5e4d440bd681b5f72bd0f4231a6fc04",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x5173b8ea6923c2d40267890d45c46a3480954773",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x5173b8ea6923c2d40267890d45c46a3480954773-1786709002621.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x5173b8ea6923c2d40267890d45c46a3480954773-1786709002621.png"
+ ],
+ "name": "World is Flat",
+ "symbol": "WIF",
+ "marketCap": "992458.903324373126169822",
+ "price": "0.00099245890332437313",
+ "priceChange24hPercent": "19.37",
+ "volume24h": "23124.61496478850486387",
+ "communityRecognized": false,
+ "key": "evm--4663:0x5173b8ea6923c2d40267890d45c46a3480954773",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x5aed379a72bd2533371d153135c47d5eb61babc8",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x5aed379a72bd2533371d153135c47d5eb61babc8-1787054408027.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x5aed379a72bd2533371d153135c47d5eb61babc8-1787054408027.png"
+ ],
+ "name": "Strike",
+ "symbol": "STRIKE",
+ "marketCap": "168166.235763636933834894",
+ "price": "0.00168222444475767271",
+ "priceChange24hPercent": "-2.25",
+ "volume24h": "223.378868",
+ "communityRecognized": false,
+ "key": "evm--4663:0x5aed379a72bd2533371d153135c47d5eb61babc8",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xb48d34dd8b53324cb8525461c8e548522db885ec",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xb48d34dd8b53324cb8525461c8e548522db885ec-1787918407513.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xb48d34dd8b53324cb8525461c8e548522db885ec-1787918407513.png"
+ ],
+ "name": "Sluice",
+ "symbol": "SLUICE",
+ "marketCap": "132222.15206775523555463",
+ "price": "0.00013222215206775524",
+ "priceChange24hPercent": "-14.02",
+ "volume24h": "1919.9328551494190164",
+ "communityRecognized": false,
+ "key": "evm--4663:0xb48d34dd8b53324cb8525461c8e548522db885ec",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xa80eb66b3e0cf66ccb46f8b8c9e7ff5803eeb820",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xa80eb66b3e0cf66ccb46f8b8c9e7ff5803eeb820-1784949348295.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xa80eb66b3e0cf66ccb46f8b8c9e7ff5803eeb820-1784949348295.png"
+ ],
+ "name": "Wen Lambo",
+ "symbol": "WEN",
+ "marketCap": "1312267.572898479705983932",
+ "price": "0.00131226757289847971",
+ "priceChange24hPercent": "-2.91",
+ "volume24h": "15987.37086818711240982",
+ "communityRecognized": false,
+ "key": "evm--4663:0xa80eb66b3e0cf66ccb46f8b8c9e7ff5803eeb820",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ }
+ ],
+ "robinhood_meme||24h|all": [
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x39dbed3a2bd333467115de45665cc57f813c4571",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x39dbed3a2bd333467115de45665cc57f813c4571-1785145437955.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x39dbed3a2bd333467115de45665cc57f813c4571-1785145437955.png"
+ ],
+ "name": "Pons",
+ "symbol": "PONS",
+ "marketCap": "502022018.508028785669424106",
+ "price": "0.71717848311520679734",
+ "priceChange24hPercent": "-2.57",
+ "volume24h": "119154009.59381412371511201962",
+ "communityRecognized": true,
+ "key": "evm--4663:0x39dbed3a2bd333467115de45665cc57f813c4571",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x020bfc650a365f8bb26819deaabf3e21291018b4",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x020bfc650a365f8bb26819deaabf3e21291018b4-1784778353843.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x020bfc650a365f8bb26819deaabf3e21291018b4-1784778353843.png"
+ ],
+ "name": "Cash Cat",
+ "symbol": "CASHCAT",
+ "marketCap": "188581610.80185770225929897",
+ "price": "0.19084952071561432263",
+ "priceChange24hPercent": "-16.46",
+ "volume24h": "21049916.65702474858957836048",
+ "communityRecognized": true,
+ "key": "evm--4663:0x020bfc650a365f8bb26819deaabf3e21291018b4",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xe170dc96ca10103e0d4c5d9293c5a3a72ee365a5",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xe170dc96ca10103e0d4c5d9293c5a3a72ee365a5-1785059757195.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xe170dc96ca10103e0d4c5d9293c5a3a72ee365a5-1785059757195.png"
+ ],
+ "name": "Little John",
+ "symbol": "JOHN",
+ "marketCap": "8802.53080883729502627",
+ "price": "0.0000088025308088373",
+ "priceChange24hPercent": "0",
+ "volume24h": "0",
+ "communityRecognized": false,
+ "key": "evm--4663:0xe170dc96ca10103e0d4c5d9293c5a3a72ee365a5",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xe934e36a439c94017b64a3fece66af12099abf50",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xe934e36a439c94017b64a3fece66af12099abf50-1785290631562.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xe934e36a439c94017b64a3fece66af12099abf50-1785290631562.png"
+ ],
+ "name": "StonkBroker",
+ "symbol": "STONKBROKER",
+ "marketCap": "20652805.024120563132606053",
+ "price": "0.01688272635986417616",
+ "priceChange24hPercent": "24.75",
+ "volume24h": "4521406.59327893300333719145",
+ "communityRecognized": true,
+ "key": "evm--4663:0xe934e36a439c94017b64a3fece66af12099abf50",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x348cc963411fb82cd6e0b64345714fec94f242cb",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x348cc963411fb82cd6e0b64345714fec94f242cb-1787918436309.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x348cc963411fb82cd6e0b64345714fec94f242cb-1787918436309.png"
+ ],
+ "name": "Goose Token",
+ "symbol": "GOOSE",
+ "marketCap": "81393460.832387531242448284",
+ "price": "0.08139346083238753124",
+ "priceChange24hPercent": "-1.25",
+ "volume24h": "373756.302628013583814",
+ "communityRecognized": false,
+ "key": "evm--4663:0x348cc963411fb82cd6e0b64345714fec94f242cb",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x5cb6f181081301b44905f3ae15419112ecabd8a6",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x5cb6f181081301b44905f3ae15419112ecabd8a6-1785411923960.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x5cb6f181081301b44905f3ae15419112ecabd8a6-1785411923960.png"
+ ],
+ "name": "pipedog",
+ "symbol": "PIPEDOG",
+ "marketCap": "35769492.909630204770672297",
+ "price": "0.00289732894922953629",
+ "priceChange24hPercent": "-6.62",
+ "volume24h": "671171.1436398643943899174",
+ "communityRecognized": true,
+ "key": "evm--4663:0x5cb6f181081301b44905f3ae15419112ecabd8a6",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x57c0e45cb534413d1c20a4240955d6bb250bb4f1",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x57c0e45cb534413d1c20a4240955d6bb250bb4f1-1785005199051.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x57c0e45cb534413d1c20a4240955d6bb250bb4f1-1785005199051.png"
+ ],
+ "name": "up",
+ "symbol": "UP",
+ "marketCap": "10939824.275003627272484814",
+ "price": "0.54014115573703348966",
+ "priceChange24hPercent": "-13.38",
+ "volume24h": "1174358.45962533006569663823",
+ "communityRecognized": true,
+ "key": "evm--4663:0x57c0e45cb534413d1c20a4240955d6bb250bb4f1",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x0e0d2c89a5a019fe1cf762e5e33187631dacc21b",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x0e0d2c89a5a019fe1cf762e5e33187631dacc21b-1787400114210.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x0e0d2c89a5a019fe1cf762e5e33187631dacc21b-1787400114210.png"
+ ],
+ "name": "Chump Coin",
+ "symbol": "CHUMP",
+ "marketCap": "35977837.123296699878179831",
+ "price": "0.03597783749651078179",
+ "priceChange24hPercent": "-5.88",
+ "volume24h": "4844506.567446358713267547",
+ "communityRecognized": false,
+ "key": "evm--4663:0x0e0d2c89a5a019fe1cf762e5e33187631dacc21b",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x56910d4409f3a0c78c64dd8d0545ff0705389870",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x56910d4409f3a0c78c64dd8d0545ff0705389870-1784842044117.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x56910d4409f3a0c78c64dd8d0545ff0705389870-1784842044117.png"
+ ],
+ "name": "The Index",
+ "symbol": "Index",
+ "marketCap": "39076127.721770539963962651",
+ "price": "0.03985186707954164859",
+ "priceChange24hPercent": "-11.66",
+ "volume24h": "3881125.5665300244293211294",
+ "communityRecognized": true,
+ "key": "evm--4663:0x56910d4409f3a0c78c64dd8d0545ff0705389870",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x18e674231a58c239dc7daedcffe15ec3a24cff5c",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x18e674231a58c239dc7daedcffe15ec3a24cff5c-1786190410593.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x18e674231a58c239dc7daedcffe15ec3a24cff5c-1786190410593.png"
+ ],
+ "name": "Hookr.fun",
+ "symbol": "HOOKR",
+ "marketCap": "16618445.208237637803108274",
+ "price": "0.0166791731104542394",
+ "priceChange24hPercent": "12.23",
+ "volume24h": "3247486.43125150977558586883",
+ "communityRecognized": true,
+ "key": "evm--4663:0x18e674231a58c239dc7daedcffe15ec3a24cff5c",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x7fe995a80075df3dc8ae11a9b82c7fe4202cd87f",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x7fe995a80075df3dc8ae11a9b82c7fe4202cd87f-1785325956569.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x7fe995a80075df3dc8ae11a9b82c7fe4202cd87f-1785325956569.png"
+ ],
+ "name": "Thinking Cat",
+ "symbol": "HMM",
+ "marketCap": "13039576.030590609490030763",
+ "price": "0.01320187144939991148",
+ "priceChange24hPercent": "-15.91",
+ "volume24h": "1717537.55168642575705604436",
+ "communityRecognized": true,
+ "key": "evm--4663:0x7fe995a80075df3dc8ae11a9b82c7fe4202cd87f",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x45242320dbb855eea8fd36804c6487e10e97fcf9",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x45242320dbb855eea8fd36804c6487e10e97fcf9-1784778612504.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x45242320dbb855eea8fd36804c6487e10e97fcf9-1784778612504.png"
+ ],
+ "name": "TENDIES",
+ "symbol": "TENDIES",
+ "marketCap": "15418336.651928049187952375",
+ "price": "0.0161197596815997701",
+ "priceChange24hPercent": "-7.08",
+ "volume24h": "1796714.40248894664104327714",
+ "communityRecognized": false,
+ "key": "evm--4663:0x45242320dbb855eea8fd36804c6487e10e97fcf9",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xca9c78dd337a67f6e0077f65f5e9218719d30edf",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xca9c78dd337a67f6e0077f65f5e9218719d30edf-1785280831816.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xca9c78dd337a67f6e0077f65f5e9218719d30edf-1785280831816.png"
+ ],
+ "name": "NetNet",
+ "symbol": "NET",
+ "marketCap": "3920472.764198924127605602",
+ "price": "668.59150927027122099446",
+ "priceChange24hPercent": "-11.34",
+ "volume24h": "4895982.00999602102097454",
+ "communityRecognized": false,
+ "key": "evm--4663:0xca9c78dd337a67f6e0077f65f5e9218719d30edf",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xc72f232a6869e6cf34dc06129affd07f8a2a246a",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xc72f232a6869e6cf34dc06129affd07f8a2a246a-1786104032870.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xc72f232a6869e6cf34dc06129affd07f8a2a246a-1786104032870.png"
+ ],
+ "name": "Mancer",
+ "symbol": "MANCER",
+ "marketCap": "5440876.002220110409619299",
+ "price": "0.00217635040088804416",
+ "priceChange24hPercent": "-8.3",
+ "volume24h": "646352.26697227264658006201",
+ "communityRecognized": false,
+ "key": "evm--4663:0xc72f232a6869e6cf34dc06129affd07f8a2a246a",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x6245e67affa44a23077f0ea7f981a8dc743a0c47",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x6245e67affa44a23077f0ea7f981a8dc743a0c47-1785931207872.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x6245e67affa44a23077f0ea7f981a8dc743a0c47-1785931207872.png"
+ ],
+ "name": "frong",
+ "symbol": "FRONG",
+ "marketCap": "5491401.474828610941251233",
+ "price": "0.00549140147482861094",
+ "priceChange24hPercent": "-9.05",
+ "volume24h": "1696846.5958274176329043598",
+ "communityRecognized": false,
+ "key": "evm--4663:0x6245e67affa44a23077f0ea7f981a8dc743a0c47",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xee5576fa1bcaa380e591d01245f406f3f384eb01",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xee5576fa1bcaa380e591d01245f406f3f384eb01-1787832045009.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xee5576fa1bcaa380e591d01245f406f3f384eb01-1787832045009.png"
+ ],
+ "name": "Down to Finance",
+ "symbol": "DTF",
+ "marketCap": "8682703.707015428616989098",
+ "price": "0.00868270374727847651",
+ "priceChange24hPercent": "-21.27",
+ "volume24h": "2074057.2942562462486455924",
+ "communityRecognized": false,
+ "key": "evm--4663:0xee5576fa1bcaa380e591d01245f406f3f384eb01",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x62c71cd34a52c30d894419cbcc55db2afa8032ea",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x62c71cd34a52c30d894419cbcc55db2afa8032ea-1785197280438.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x62c71cd34a52c30d894419cbcc55db2afa8032ea-1785197280438.png"
+ ],
+ "name": "YOLO",
+ "symbol": "YOLO",
+ "marketCap": "6110793.379760146105089284",
+ "price": "0.0062997870322002435",
+ "priceChange24hPercent": "-10.16",
+ "volume24h": "845244.447983754982821435",
+ "communityRecognized": false,
+ "key": "evm--4663:0x62c71cd34a52c30d894419cbcc55db2afa8032ea",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x451b42a15100c340ca12f7c66de06fac5ea2d751",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x451b42a15100c340ca12f7c66de06fac5ea2d751-1787832041620.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x451b42a15100c340ca12f7c66de06fac5ea2d751-1787832041620.png"
+ ],
+ "name": "Longbow",
+ "symbol": "BOW",
+ "marketCap": "5787414.729870295757998562",
+ "price": "0.00578741472987029576",
+ "priceChange24hPercent": "-30.41",
+ "volume24h": "1435139.696562878005416178",
+ "communityRecognized": false,
+ "key": "evm--4663:0x451b42a15100c340ca12f7c66de06fac5ea2d751",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xf2915d1e3c1b0c769d0c756ec43f1c1f6c99cd03",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xf2915d1e3c1b0c769d0c756ec43f1c1f6c99cd03-1784861135802.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xf2915d1e3c1b0c769d0c756ec43f1c1f6c99cd03-1784861135802.png"
+ ],
+ "name": "Arrow",
+ "symbol": "ARROW",
+ "marketCap": "3472922.672130186445530038",
+ "price": "0.38588029898682948721",
+ "priceChange24hPercent": "-17.87",
+ "volume24h": "139673.39023762295482776",
+ "communityRecognized": false,
+ "key": "evm--4663:0xf2915d1e3c1b0c769d0c756ec43f1c1f6c99cd03",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xb9972ca7188e511174947e3936a5315ac7073277",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xb9972ca7188e511174947e3936a5315ac7073277-1787400211008.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xb9972ca7188e511174947e3936a5315ac7073277-1787400211008.png"
+ ],
+ "name": "Prologue",
+ "symbol": "PROLOGUE",
+ "marketCap": "10867196.245258369257184329",
+ "price": "0.01086719624525836926",
+ "priceChange24hPercent": "42.67",
+ "volume24h": "3337601.041500520556820744",
+ "communityRecognized": true,
+ "key": "evm--4663:0xb9972ca7188e511174947e3936a5315ac7073277",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xd7321801caae694090694ff55a9323139f043b88",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xd7321801caae694090694ff55a9323139f043b88-1784779777690.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xd7321801caae694090694ff55a9323139f043b88-1784779777690.png"
+ ],
+ "name": "The Juggernaut",
+ "symbol": "JUGGERNAUT",
+ "marketCap": "3019903.208555332697636294",
+ "price": "0.00322096834857655848",
+ "priceChange24hPercent": "-16.17",
+ "volume24h": "623684.55697067497437462766",
+ "communityRecognized": false,
+ "key": "evm--4663:0xd7321801caae694090694ff55a9323139f043b88",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x8ff92566f2e81bdd68edfaa8cde73942a723796b",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x8ff92566f2e81bdd68edfaa8cde73942a723796b-1784854679354.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x8ff92566f2e81bdd68edfaa8cde73942a723796b-1784854679354.png"
+ ],
+ "name": "ProjectVex",
+ "symbol": "VEX",
+ "marketCap": "2665179.099566858123776638",
+ "price": "0.00266517909956685812",
+ "priceChange24hPercent": "-15.72",
+ "volume24h": "260009.5990488141100617625",
+ "communityRecognized": false,
+ "key": "evm--4663:0x8ff92566f2e81bdd68edfaa8cde73942a723796b",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xcebc0cfbc5dd0893a9e3b9d0f75b211ddf5934a0",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xcebc0cfbc5dd0893a9e3b9d0f75b211ddf5934a0-1788177871007.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xcebc0cfbc5dd0893a9e3b9d0f75b211ddf5934a0-1788177871007.png"
+ ],
+ "name": "clan.tech",
+ "symbol": "CLAN",
+ "marketCap": "1346087.777112335683918246",
+ "price": "0.00134608777721111461",
+ "priceChange24hPercent": "-20.07",
+ "volume24h": "377379.7993652442474761952",
+ "communityRecognized": false,
+ "key": "evm--4663:0xcebc0cfbc5dd0893a9e3b9d0f75b211ddf5934a0",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x232cdfc415d10b673845d83dc02ba2eabe7e30d1",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x232cdfc415d10b673845d83dc02ba2eabe7e30d1-1785412803768.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x232cdfc415d10b673845d83dc02ba2eabe7e30d1-1785412803768.png"
+ ],
+ "name": "What If",
+ "symbol": "IF",
+ "marketCap": "10586906.988923495786384388",
+ "price": "0.01168673691363227001",
+ "priceChange24hPercent": "6.83",
+ "volume24h": "699408.75128724638127334204",
+ "communityRecognized": false,
+ "key": "evm--4663:0x232cdfc415d10b673845d83dc02ba2eabe7e30d1",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x76761d4aee1e7d6b2b8dedbd13925d6c220b0725",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x76761d4aee1e7d6b2b8dedbd13925d6c220b0725-1786276810800.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x76761d4aee1e7d6b2b8dedbd13925d6c220b0725-1786276810800.png"
+ ],
+ "name": "MowCat",
+ "symbol": "MOW",
+ "marketCap": "4608946.621219782201180129",
+ "price": "0.0046089466212197822",
+ "priceChange24hPercent": "-0.44",
+ "volume24h": "451522.19566662427513433",
+ "communityRecognized": false,
+ "key": "evm--4663:0x76761d4aee1e7d6b2b8dedbd13925d6c220b0725",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x77b0aa38451ccdc1b42587e2f80b9879a7f82356",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x77b0aa38451ccdc1b42587e2f80b9879a7f82356-1786536021883.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x77b0aa38451ccdc1b42587e2f80b9879a7f82356-1786536021883.png"
+ ],
+ "name": "DogBull",
+ "symbol": "DOGO",
+ "marketCap": "21768233.653662840214264244",
+ "price": "0.02155270658778499031",
+ "priceChange24hPercent": "337.27",
+ "volume24h": "1493612.29049212800162382",
+ "communityRecognized": false,
+ "key": "evm--4663:0x77b0aa38451ccdc1b42587e2f80b9879a7f82356",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x385b36ff682ab4c76e7c37a66b96aabc466471d5",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x385b36ff682ab4c76e7c37a66b96aabc466471d5-1786017815496.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x385b36ff682ab4c76e7c37a66b96aabc466471d5-1786017815496.png"
+ ],
+ "name": "pools.trade",
+ "symbol": "POOLS",
+ "marketCap": "1556630.67532955837106892",
+ "price": "0.0015566308898872704",
+ "priceChange24hPercent": "-21.88",
+ "volume24h": "890048.23832078131258696",
+ "communityRecognized": false,
+ "key": "evm--4663:0x385b36ff682ab4c76e7c37a66b96aabc466471d5",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x5f62c57e5c537887117eef828b7e3ad41c009feb",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x5f62c57e5c537887117eef828b7e3ad41c009feb-1786018016957.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x5f62c57e5c537887117eef828b7e3ad41c009feb-1786018016957.png"
+ ],
+ "name": "Good In The Hood",
+ "symbol": "GOOD",
+ "marketCap": "3650847.769165494974298471",
+ "price": "0.00464873807570103688",
+ "priceChange24hPercent": "-17.08",
+ "volume24h": "521865.9783489107977956399",
+ "communityRecognized": false,
+ "key": "evm--4663:0x5f62c57e5c537887117eef828b7e3ad41c009feb",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x20024e485c0b22b42855589700721b28320a7777",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x20024e485c0b22b42855589700721b28320a7777-1786363300721.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x20024e485c0b22b42855589700721b28320a7777-1786363300721.png"
+ ],
+ "name": "Prism Assets",
+ "symbol": "PRISM",
+ "marketCap": "2315389.100589988802579267",
+ "price": "0.0023153891005899888",
+ "priceChange24hPercent": "72.21",
+ "volume24h": "317617.0090886330388249384",
+ "communityRecognized": false,
+ "key": "evm--4663:0x20024e485c0b22b42855589700721b28320a7777",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x4a6eec8a30b49d289b9fc865fd374b4d61eab8fb",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x4a6eec8a30b49d289b9fc865fd374b4d61eab8fb-1785758432269.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x4a6eec8a30b49d289b9fc865fd374b4d61eab8fb-1785758432269.png"
+ ],
+ "name": "Liluni",
+ "symbol": "Liluni",
+ "marketCap": "769327.821597585049202932",
+ "price": "0.00076932782159758505",
+ "priceChange24hPercent": "-7.08",
+ "volume24h": "136900.653339801969275365",
+ "communityRecognized": false,
+ "key": "evm--4663:0x4a6eec8a30b49d289b9fc865fd374b4d61eab8fb",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xb8fa8010833463aac5595b55b9045479239eff79",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xb8fa8010833463aac5595b55b9045479239eff79-1786881632532.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xb8fa8010833463aac5595b55b9045479239eff79-1786881632532.png"
+ ],
+ "name": "what the hook?",
+ "symbol": "WTH",
+ "marketCap": "4433865.674641148580658499",
+ "price": "21.11364606971975514599",
+ "priceChange24hPercent": "5.47",
+ "volume24h": "652022.972529364908959044",
+ "communityRecognized": false,
+ "key": "evm--4663:0xb8fa8010833463aac5595b55b9045479239eff79",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xf8bc08092c06db6148114dcf82af881f1085f92b",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xf8bc08092c06db6148114dcf82af881f1085f92b-1785137390595.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xf8bc08092c06db6148114dcf82af881f1085f92b-1785137390595.png"
+ ],
+ "name": "Sherwood Protocol",
+ "symbol": "WOOD",
+ "marketCap": "5294868.778292219416037217",
+ "price": "0.00529486877829221942",
+ "priceChange24hPercent": "2.67",
+ "volume24h": "202725.4262502701851060423",
+ "communityRecognized": false,
+ "key": "evm--4663:0xf8bc08092c06db6148114dcf82af881f1085f92b",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x51fb76be80ab6daaa345d818f4e06441816b4fea",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x51fb76be80ab6daaa345d818f4e06441816b4fea-1786104017624.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x51fb76be80ab6daaa345d818f4e06441816b4fea-1786104017624.png"
+ ],
+ "name": "NASDANQ",
+ "symbol": "NASDANQ",
+ "marketCap": "2336139.896707354816830353",
+ "price": "0.00233613989670735482",
+ "priceChange24hPercent": "121.05",
+ "volume24h": "360687.308786243004221415",
+ "communityRecognized": false,
+ "key": "evm--4663:0x51fb76be80ab6daaa345d818f4e06441816b4fea",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x8ecea3d0e648db646d824aa51eedeb16ac3d6878",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x8ecea3d0e648db646d824aa51eedeb16ac3d6878-1785284432065.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x8ecea3d0e648db646d824aa51eedeb16ac3d6878-1785284432065.png"
+ ],
+ "name": "wire bot",
+ "symbol": "wire",
+ "marketCap": "539032.655786243127634391",
+ "price": "0.00054041288588799596",
+ "priceChange24hPercent": "-9.58",
+ "volume24h": "219149.466511261520284418",
+ "communityRecognized": false,
+ "key": "evm--4663:0x8ecea3d0e648db646d824aa51eedeb16ac3d6878",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xcb5566e73bee5390c75df834d4727dcecc65fc87",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xcb5566e73bee5390c75df834d4727dcecc65fc87-1788354026635.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xcb5566e73bee5390c75df834d4727dcecc65fc87-1788354026635.png"
+ ],
+ "name": "Mast Bond",
+ "symbol": "MAST",
+ "marketCap": "652914.665836647500035643",
+ "price": "0.0006529146658366475",
+ "priceChange24hPercent": "83.34",
+ "volume24h": "170354.45318649432250279",
+ "communityRecognized": false,
+ "key": "evm--4663:0xcb5566e73bee5390c75df834d4727dcecc65fc87",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xf44702b17d9abd53815f703e772f35e9c71a53af",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xf44702b17d9abd53815f703e772f35e9c71a53af-1784822115804.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xf44702b17d9abd53815f703e772f35e9c71a53af-1784822115804.png"
+ ],
+ "name": "RAXOL",
+ "symbol": "RAXOL",
+ "marketCap": "1712329.03977912128931203",
+ "price": "0.00171232903977912129",
+ "priceChange24hPercent": "-6.97",
+ "volume24h": "76943.6019876081832075",
+ "communityRecognized": false,
+ "key": "evm--4663:0xf44702b17d9abd53815f703e772f35e9c71a53af",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x8e62f281f282686fca6dcb39288069a93fc23f1c",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x8e62f281f282686fca6dcb39288069a93fc23f1c-1784830569718.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x8e62f281f282686fca6dcb39288069a93fc23f1c-1784830569718.png"
+ ],
+ "name": "Hoodrat",
+ "symbol": "HOODRAT",
+ "marketCap": "1729390.247190236716847253",
+ "price": "0.00172939031667982091",
+ "priceChange24hPercent": "3.89",
+ "volume24h": "222192.52143028026533131022",
+ "communityRecognized": true,
+ "key": "evm--4663:0x8e62f281f282686fca6dcb39288069a93fc23f1c",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x77581054581b9c525e7dd7a0155de43867532d03",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x77581054581b9c525e7dd7a0155de43867532d03-1784939141560.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x77581054581b9c525e7dd7a0155de43867532d03-1784939141560.png"
+ ],
+ "name": "WISHBONE",
+ "symbol": "WISHBONE",
+ "marketCap": "890566.402734889733341878",
+ "price": "0.00096332665926777235",
+ "priceChange24hPercent": "6.55",
+ "volume24h": "130641.64816688500890537",
+ "communityRecognized": false,
+ "key": "evm--4663:0x77581054581b9c525e7dd7a0155de43867532d03",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x43eea882b845a8493152ebc55cf30ae9281b02d5",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x43eea882b845a8493152ebc55cf30ae9281b02d5-1785292897426.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x43eea882b845a8493152ebc55cf30ae9281b02d5-1785292897426.png"
+ ],
+ "name": "FIRE",
+ "symbol": "FIRE",
+ "marketCap": "1462625.380905727143813291",
+ "price": "0.0014809585098065579",
+ "priceChange24hPercent": "12.11",
+ "volume24h": "155884.215541360146363246",
+ "communityRecognized": false,
+ "key": "evm--4663:0x43eea882b845a8493152ebc55cf30ae9281b02d5",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xac77646bcff9d52e99800534192e0290933f4094",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xac77646bcff9d52e99800534192e0290933f4094-1787572842778.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xac77646bcff9d52e99800534192e0290933f4094-1787572842778.png"
+ ],
+ "name": "Martians",
+ "symbol": "MARTIANS",
+ "marketCap": "421107.798117296771237422",
+ "price": "0.00042110779812399404",
+ "priceChange24hPercent": "-15.12",
+ "volume24h": "103002.20281301676551478",
+ "communityRecognized": false,
+ "key": "evm--4663:0xac77646bcff9d52e99800534192e0290933f4094",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xf0568863195770965a6d8abb0aa87f4314b80320",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xf0568863195770965a6d8abb0aa87f4314b80320-1785239850960.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xf0568863195770965a6d8abb0aa87f4314b80320-1785239850960.png"
+ ],
+ "name": "SLIPPY",
+ "symbol": "SLIPPY",
+ "marketCap": "2285143.7736062878747713",
+ "price": "0.0022851443913658089",
+ "priceChange24hPercent": "8.03",
+ "volume24h": "125559.58999912580556649352",
+ "communityRecognized": false,
+ "key": "evm--4663:0xf0568863195770965a6d8abb0aa87f4314b80320",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x9ca1cc0c90d97b4f36c5e2232d4fbd705a73c65d",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x9ca1cc0c90d97b4f36c5e2232d4fbd705a73c65d-1786363300721.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x9ca1cc0c90d97b4f36c5e2232d4fbd705a73c65d-1786363300721.png"
+ ],
+ "name": "TA FUND",
+ "symbol": "TA",
+ "marketCap": "2169025.59885951907590852",
+ "price": "0.00216902559885951908",
+ "priceChange24hPercent": "-16.82",
+ "volume24h": "162073.316988105440870788",
+ "communityRecognized": false,
+ "key": "evm--4663:0x9ca1cc0c90d97b4f36c5e2232d4fbd705a73c65d",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x7168563b0e70124f0c7c0cf2f13a8d1861baf4a5",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x7168563b0e70124f0c7c0cf2f13a8d1861baf4a5-1785276114071.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x7168563b0e70124f0c7c0cf2f13a8d1861baf4a5-1785276114071.png"
+ ],
+ "name": "Backed",
+ "symbol": "BACKED",
+ "marketCap": "683975.046016032677877222",
+ "price": "0.00072634119132098617",
+ "priceChange24hPercent": "-29.11",
+ "volume24h": "110998.05371009463281507",
+ "communityRecognized": false,
+ "key": "evm--4663:0x7168563b0e70124f0c7c0cf2f13a8d1861baf4a5",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xe3fa12da7fa026b21817f16622e8ae48fa785166",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xe3fa12da7fa026b21817f16622e8ae48fa785166-1786536006382.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xe3fa12da7fa026b21817f16622e8ae48fa785166-1786536006382.png"
+ ],
+ "name": "Yardkeeper",
+ "symbol": "YARD",
+ "marketCap": "1661101.247537698075666796",
+ "price": "0.00237034455488214896",
+ "priceChange24hPercent": "12.56",
+ "volume24h": "61644.843779808031652072",
+ "communityRecognized": false,
+ "key": "evm--4663:0xe3fa12da7fa026b21817f16622e8ae48fa785166",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x727701f88f09fed71eb217bcea88b3f314cf7079",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x727701f88f09fed71eb217bcea88b3f314cf7079-1785229474064.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x727701f88f09fed71eb217bcea88b3f314cf7079-1785229474064.png"
+ ],
+ "name": "GRID by Virtuals",
+ "symbol": "GRID",
+ "marketCap": "1249980.578691939741013368",
+ "price": "0.00124998057869193974",
+ "priceChange24hPercent": "-19.17",
+ "volume24h": "33049.4348259689788985",
+ "communityRecognized": false,
+ "key": "evm--4663:0x727701f88f09fed71eb217bcea88b3f314cf7079",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x96765066f6a040a21eb027167d2315b707c82633",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x96765066f6a040a21eb027167d2315b707c82633-1784938636403.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x96765066f6a040a21eb027167d2315b707c82633-1784938636403.png"
+ ],
+ "name": "Ravenhood",
+ "symbol": "RVH",
+ "marketCap": "390628.355788254703232466",
+ "price": "0.00496337736804456155",
+ "priceChange24hPercent": "-24.94",
+ "volume24h": "42114.077570100452830521",
+ "communityRecognized": false,
+ "key": "evm--4663:0x96765066f6a040a21eb027167d2315b707c82633",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xbd957cc9f1e94617792f37bc40f2f299e78acf3e",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xbd957cc9f1e94617792f37bc40f2f299e78acf3e-1785845024248.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xbd957cc9f1e94617792f37bc40f2f299e78acf3e-1785845024248.png"
+ ],
+ "name": "Crude Cat",
+ "symbol": "CRUDECAT",
+ "marketCap": "2307997.035220816076014931",
+ "price": "0.00597695795708211835",
+ "priceChange24hPercent": "-18.37",
+ "volume24h": "235075.435866963851626067",
+ "communityRecognized": false,
+ "key": "evm--4663:0xbd957cc9f1e94617792f37bc40f2f299e78acf3e",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xfb1bcb6817f7b8fa86896d3253b16aeb7bd6a5a8",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xfb1bcb6817f7b8fa86896d3253b16aeb7bd6a5a8-1785008871536.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xfb1bcb6817f7b8fa86896d3253b16aeb7bd6a5a8-1785008871536.png"
+ ],
+ "name": "one life, its worth an attempt",
+ "symbol": "worth",
+ "marketCap": "943016.144584851830199867",
+ "price": "0.00112942228622299282",
+ "priceChange24hPercent": "-41.88",
+ "volume24h": "120227.089695412003159485",
+ "communityRecognized": false,
+ "key": "evm--4663:0xfb1bcb6817f7b8fa86896d3253b16aeb7bd6a5a8",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x49bac47750f3dcdba49350b5d74fd399e90f97c6",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x49bac47750f3dcdba49350b5d74fd399e90f97c6-1786190483451.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x49bac47750f3dcdba49350b5d74fd399e90f97c6-1786190483451.png"
+ ],
+ "name": "The Bull",
+ "symbol": "BULL",
+ "marketCap": "1844160.155161726289434023",
+ "price": "0.00184418762652969795",
+ "priceChange24hPercent": "-9.53",
+ "volume24h": "111165.478002960911664336",
+ "communityRecognized": false,
+ "key": "evm--4663:0x49bac47750f3dcdba49350b5d74fd399e90f97c6",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x9727b500ac8726c716f018e5d3ca871481245065",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x9727b500ac8726c716f018e5d3ca871481245065-1785196146146.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x9727b500ac8726c716f018e5d3ca871481245065-1785196146146.png"
+ ],
+ "name": "Ansem Cat",
+ "symbol": "AnsemCat",
+ "marketCap": "365173.245867752584482233",
+ "price": "0.00000086803405326429",
+ "priceChange24hPercent": "-12.72",
+ "volume24h": "53.4897532851138468",
+ "communityRecognized": false,
+ "key": "evm--4663:0x9727b500ac8726c716f018e5d3ca871481245065",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xeafa804083a4886a9460b5b19557334a652beba8",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xeafa804083a4886a9460b5b19557334a652beba8-1785002418521.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xeafa804083a4886a9460b5b19557334a652beba8-1785002418521.png"
+ ],
+ "name": "Naven Network",
+ "symbol": "NAVEN",
+ "marketCap": "379120.192909717179101389",
+ "price": "0.00043238178622577899",
+ "priceChange24hPercent": "5.46",
+ "volume24h": "96198.47367125811357341",
+ "communityRecognized": false,
+ "key": "evm--4663:0xeafa804083a4886a9460b5b19557334a652beba8",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x0762c1708f0d23f86b29d6b857121ff7df357506",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x0762c1708f0d23f86b29d6b857121ff7df357506-1785931280846.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x0762c1708f0d23f86b29d6b857121ff7df357506-1785931280846.png"
+ ],
+ "name": "this is not a website",
+ "symbol": "website",
+ "marketCap": "5197878.936462059211378102",
+ "price": "0.00555662732124259188",
+ "priceChange24hPercent": "18.8",
+ "volume24h": "418142.061188610976571617",
+ "communityRecognized": false,
+ "key": "evm--4663:0x0762c1708f0d23f86b29d6b857121ff7df357506",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x3b4a0048a00787a644932cd648faa043410c163e",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x3b4a0048a00787a644932cd648faa043410c163e-1788264033495.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x3b4a0048a00787a644932cd648faa043410c163e-1788264033495.png"
+ ],
+ "name": "The Dogestar",
+ "symbol": "SIRIUS",
+ "marketCap": "889308.889941344775296854",
+ "price": "0.00088930888995381725",
+ "priceChange24hPercent": "-56.6",
+ "volume24h": "821876.41690944907080550492",
+ "communityRecognized": false,
+ "key": "evm--4663:0x3b4a0048a00787a644932cd648faa043410c163e",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x2103faa9d1762e27a716c61718b3acf3ec1f9bf1",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x2103faa9d1762e27a716c61718b3acf3ec1f9bf1-1785016173111.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x2103faa9d1762e27a716c61718b3acf3ec1f9bf1-1785016173111.png"
+ ],
+ "name": "Robin Hood",
+ "symbol": "FOX",
+ "marketCap": "819155.44037873657318132",
+ "price": "0.00087392746402269212",
+ "priceChange24hPercent": "-5.3",
+ "volume24h": "256273.385526603899418197",
+ "communityRecognized": false,
+ "key": "evm--4663:0x2103faa9d1762e27a716c61718b3acf3ec1f9bf1",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x532c5583671870723ceef573600208af49c87c54",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x532c5583671870723ceef573600208af49c87c54-1787572802676.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x532c5583671870723ceef573600208af49c87c54-1787572802676.png"
+ ],
+ "name": "Canopy Finance",
+ "symbol": "CNPY",
+ "marketCap": "2043406.519085803891568646",
+ "price": "0.00268033834862245422",
+ "priceChange24hPercent": "-4.5",
+ "volume24h": "1150267.74395023183944733235",
+ "communityRecognized": false,
+ "key": "evm--4663:0x532c5583671870723ceef573600208af49c87c54",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xaa40e79e987517f7462bf79315b8a118799b04e3",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xaa40e79e987517f7462bf79315b8a118799b04e3-1787659277021.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xaa40e79e987517f7462bf79315b8a118799b04e3-1787659277021.png"
+ ],
+ "name": "scopl.live",
+ "symbol": "SCOPL",
+ "marketCap": "401077.566822741022302925",
+ "price": "0.00041294851870877833",
+ "priceChange24hPercent": "-20.52",
+ "volume24h": "224723.96428726743934301682",
+ "communityRecognized": false,
+ "key": "evm--4663:0xaa40e79e987517f7462bf79315b8a118799b04e3",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x01637b14b7378b99de75a64d50656d98488d9a4d",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x01637b14b7378b99de75a64d50656d98488d9a4d-1784777167517.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x01637b14b7378b99de75a64d50656d98488d9a4d-1784777167517.png"
+ ],
+ "name": "Lady Marian",
+ "symbol": "MARIAN",
+ "marketCap": "628696.510942059642535741",
+ "price": "0.00063887984115372445",
+ "priceChange24hPercent": "-11.58",
+ "volume24h": "104202.168378924491549268",
+ "communityRecognized": false,
+ "key": "evm--4663:0x01637b14b7378b99de75a64d50656d98488d9a4d",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xa5be0eeb82a013dc7867b9e020c36a69da666666",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xa5be0eeb82a013dc7867b9e020c36a69da666666-1787227214299.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xa5be0eeb82a013dc7867b9e020c36a69da666666-1787227214299.png"
+ ],
+ "name": "CLOCK IN",
+ "symbol": "CLOCKIN",
+ "marketCap": "390075.568640705056017851",
+ "price": "0.00039007557111482805",
+ "priceChange24hPercent": "16.1",
+ "volume24h": "63928.0115982491239086",
+ "communityRecognized": false,
+ "key": "evm--4663:0xa5be0eeb82a013dc7867b9e020c36a69da666666",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xf0e17e54239cd945cd7bea471a3a2ca6a8c7f7a3",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xf0e17e54239cd945cd7bea471a3a2ca6a8c7f7a3-1785403528086.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xf0e17e54239cd945cd7bea471a3a2ca6a8c7f7a3-1785403528086.png"
+ ],
+ "name": "Lemon",
+ "symbol": "LEMON.FUN",
+ "marketCap": "567512.386103755069902849",
+ "price": "0.00057397490461328917",
+ "priceChange24hPercent": "-15.2",
+ "volume24h": "28709.2760080819226757",
+ "communityRecognized": false,
+ "key": "evm--4663:0xf0e17e54239cd945cd7bea471a3a2ca6a8c7f7a3",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x5edb417509a869b1d8222dea05257b8c8ba00361",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x5edb417509a869b1d8222dea05257b8c8ba00361-1786881611635.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x5edb417509a869b1d8222dea05257b8c8ba00361-1786881611635.png"
+ ],
+ "name": "DeFi Traded Fund",
+ "symbol": "DTF",
+ "marketCap": "2101276.505389603821695618",
+ "price": "0.00258078710768923079",
+ "priceChange24hPercent": "-1.3",
+ "volume24h": "125896.034774",
+ "communityRecognized": false,
+ "key": "evm--4663:0x5edb417509a869b1d8222dea05257b8c8ba00361",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x1d5aad3c0d6066078ea60f384a2492a550db30b0",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x1d5aad3c0d6066078ea60f384a2492a550db30b0-1786623045142.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x1d5aad3c0d6066078ea60f384a2492a550db30b0-1786623045142.png"
+ ],
+ "name": "STACKERS",
+ "symbol": "STACK",
+ "marketCap": "328316.712147829017752093",
+ "price": "0.00052860209114416726",
+ "priceChange24hPercent": "-39.53",
+ "volume24h": "88525.5334792368953772576",
+ "communityRecognized": false,
+ "key": "evm--4663:0x1d5aad3c0d6066078ea60f384a2492a550db30b0",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xd1e861cc5eee7ea88649206b74504d78ccd7aeea",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xd1e861cc5eee7ea88649206b74504d78ccd7aeea-1786708875938.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xd1e861cc5eee7ea88649206b74504d78ccd7aeea-1786708875938.png"
+ ],
+ "name": "Alandale",
+ "symbol": "LUTE",
+ "marketCap": "453658.504315338644932708",
+ "price": "0.00853535222467991659",
+ "priceChange24hPercent": "13.9",
+ "volume24h": "1041.8109374665231065",
+ "communityRecognized": false,
+ "key": "evm--4663:0xd1e861cc5eee7ea88649206b74504d78ccd7aeea",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xbc9e7b1c5c0081f4ae85e71ec95703d3dec9ffad",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xbc9e7b1c5c0081f4ae85e71ec95703d3dec9ffad-1786449612801.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xbc9e7b1c5c0081f4ae85e71ec95703d3dec9ffad-1786449612801.png"
+ ],
+ "name": "Bucket Shop",
+ "symbol": "Bucket",
+ "marketCap": "3487714.386686102696356531",
+ "price": "0.00349446150649011294",
+ "priceChange24hPercent": "29.27",
+ "volume24h": "244251.5313017966904779872",
+ "communityRecognized": false,
+ "key": "evm--4663:0xbc9e7b1c5c0081f4ae85e71ec95703d3dec9ffad",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x8d4dfaaa4198b6486e0293fec914c2b6a821d4dc",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x8d4dfaaa4198b6486e0293fec914c2b6a821d4dc-1784777336133.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x8d4dfaaa4198b6486e0293fec914c2b6a821d4dc-1784777336133.png"
+ ],
+ "name": "KITSU",
+ "symbol": "KITSU",
+ "marketCap": "1112588.761797044854702224",
+ "price": "0.00118106846427510267",
+ "priceChange24hPercent": "-7.7",
+ "volume24h": "118147.202067314724046081",
+ "communityRecognized": false,
+ "key": "evm--4663:0x8d4dfaaa4198b6486e0293fec914c2b6a821d4dc",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xe15db7c8547a0add11eb26a700246cca08aefce5",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xe15db7c8547a0add11eb26a700246cca08aefce5-1785409545430.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xe15db7c8547a0add11eb26a700246cca08aefce5-1785409545430.png"
+ ],
+ "name": "Shibinhood",
+ "symbol": "WOOF",
+ "marketCap": "1215493.548453345796307932",
+ "price": "0.00000121549354859677",
+ "priceChange24hPercent": "2.54",
+ "volume24h": "187334.243924157075583866",
+ "communityRecognized": true,
+ "key": "evm--4663:0xe15db7c8547a0add11eb26a700246cca08aefce5",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x69984ad3322300039f2855f81c44dbc532efe744",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x69984ad3322300039f2855f81c44dbc532efe744-1785359089193.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x69984ad3322300039f2855f81c44dbc532efe744-1785359089193.png"
+ ],
+ "name": "Tygr",
+ "symbol": "TYGR",
+ "marketCap": "283285.985380009240663877",
+ "price": "0.00031503893798487123",
+ "priceChange24hPercent": "-18.62",
+ "volume24h": "75743.558711613512144332",
+ "communityRecognized": false,
+ "key": "evm--4663:0x69984ad3322300039f2855f81c44dbc532efe744",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xa0e67be79118704a35e7d4b20c3ec4df36ef6e10",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xa0e67be79118704a35e7d4b20c3ec4df36ef6e10-1788091298404.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xa0e67be79118704a35e7d4b20c3ec4df36ef6e10-1788091298404.png"
+ ],
+ "name": "Pons Index",
+ "symbol": "PONSFOLIO",
+ "marketCap": "34018.737934824480556041",
+ "price": "0.00003401873793482448",
+ "priceChange24hPercent": "-31.39",
+ "volume24h": "1845.25467733650970038",
+ "communityRecognized": false,
+ "key": "evm--4663:0xa0e67be79118704a35e7d4b20c3ec4df36ef6e10",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x0e8720b8cd84f95b4b6696adbfa8063c4b8b94f2",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x0e8720b8cd84f95b4b6696adbfa8063c4b8b94f2-1784804605586.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x0e8720b8cd84f95b4b6696adbfa8063c4b8b94f2-1784804605586.png"
+ ],
+ "name": "Buy Button",
+ "symbol": "BUY",
+ "marketCap": "748201.591140112186514847",
+ "price": "0.00082408396918163004",
+ "priceChange24hPercent": "-4.3",
+ "volume24h": "99098.1633125375771564",
+ "communityRecognized": false,
+ "key": "evm--4663:0x0e8720b8cd84f95b4b6696adbfa8063c4b8b94f2",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x3f9f0b6073ee8c495aed96869af31850fed40feb",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x3f9f0b6073ee8c495aed96869af31850fed40feb-1785412064587.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x3f9f0b6073ee8c495aed96869af31850fed40feb-1785412064587.png"
+ ],
+ "name": "Dice Protocol",
+ "symbol": "DICE",
+ "marketCap": "246206.974893546367185266",
+ "price": "0.00025278197889207848",
+ "priceChange24hPercent": "10.15",
+ "volume24h": "146739.600094757141635484",
+ "communityRecognized": false,
+ "key": "evm--4663:0x3f9f0b6073ee8c495aed96869af31850fed40feb",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x298348d5b2e45c774e3ee4f1a0924071dfbdc8c7",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x298348d5b2e45c774e3ee4f1a0924071dfbdc8c7-1786190550357.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x298348d5b2e45c774e3ee4f1a0924071dfbdc8c7-1786190550357.png"
+ ],
+ "name": "swappy",
+ "symbol": "swappy",
+ "marketCap": "449114.126612554601310211",
+ "price": "0.0004491141266125546",
+ "priceChange24hPercent": "-22.43",
+ "volume24h": "148998.96954404726968047",
+ "communityRecognized": false,
+ "key": "evm--4663:0x298348d5b2e45c774e3ee4f1a0924071dfbdc8c7",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xace55fe98bab14366dd49ab5aa5df76aa11a3c6f",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xace55fe98bab14366dd49ab5aa5df76aa11a3c6f-1785845024248.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xace55fe98bab14366dd49ab5aa5df76aa11a3c6f-1785845024248.png"
+ ],
+ "name": "Wojak",
+ "symbol": "WOJAK",
+ "marketCap": "1692216.549970488123565045",
+ "price": "0.00185787421689451655",
+ "priceChange24hPercent": "20.87",
+ "volume24h": "74447.7342328660145371",
+ "communityRecognized": false,
+ "key": "evm--4663:0xace55fe98bab14366dd49ab5aa5df76aa11a3c6f",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xe4b8723d202fdd0298b1d7496a86656b2986c532",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xe4b8723d202fdd0298b1d7496a86656b2986c532-1786622839074.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xe4b8723d202fdd0298b1d7496a86656b2986c532-1786622839074.png"
+ ],
+ "name": "StockRip",
+ "symbol": "RIP",
+ "marketCap": "938245.272755205458732501",
+ "price": "0.0009382885426150306",
+ "priceChange24hPercent": "-32",
+ "volume24h": "99319.68263892314420877",
+ "communityRecognized": false,
+ "key": "evm--4663:0xe4b8723d202fdd0298b1d7496a86656b2986c532",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xfe242d1da8fd04f6a1f80b6d3d807b02e062ad4e",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xfe242d1da8fd04f6a1f80b6d3d807b02e062ad4e-1787832041620.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xfe242d1da8fd04f6a1f80b6d3d807b02e062ad4e-1787832041620.png"
+ ],
+ "name": "Obscura",
+ "symbol": "OBS",
+ "marketCap": "500688.818984870549311758",
+ "price": "0.00050403564936191361",
+ "priceChange24hPercent": "-32.51",
+ "volume24h": "219306.60461458429144833",
+ "communityRecognized": false,
+ "key": "evm--4663:0xfe242d1da8fd04f6a1f80b6d3d807b02e062ad4e",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x14641000a501bdc736116abf84e6fcea9b90a713",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x14641000a501bdc736116abf84e6fcea9b90a713-1788178423240.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x14641000a501bdc736116abf84e6fcea9b90a713-1788178423240.png"
+ ],
+ "name": "MESH Gateway",
+ "symbol": "MESH",
+ "marketCap": "1208210.549215450362706768",
+ "price": "0.00120821054921545036",
+ "priceChange24hPercent": "4.5",
+ "volume24h": "188144.4713104379707545156",
+ "communityRecognized": false,
+ "key": "evm--4663:0x14641000a501bdc736116abf84e6fcea9b90a713",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x7ba36be14dd06ba492f08be6c1b2979c1d0b652c",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x7ba36be14dd06ba492f08be6c1b2979c1d0b652c-1788178016235.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x7ba36be14dd06ba492f08be6c1b2979c1d0b652c-1788178016235.png"
+ ],
+ "name": "PerpsHood",
+ "symbol": "PERPSHOOD",
+ "marketCap": "3288366.118814719718758381",
+ "price": "0.00333761406584314507",
+ "priceChange24hPercent": "221.19",
+ "volume24h": "3608182.64584619393431802184",
+ "communityRecognized": false,
+ "key": "evm--4663:0x7ba36be14dd06ba492f08be6c1b2979c1d0b652c",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x77061b45c5e4d440bd681b5f72bd0f4231a6fc04",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x77061b45c5e4d440bd681b5f72bd0f4231a6fc04-1788004867211.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x77061b45c5e4d440bd681b5f72bd0f4231a6fc04-1788004867211.png"
+ ],
+ "name": "RobinVault",
+ "symbol": "ROBINVAULT",
+ "marketCap": "397586.87667975865000995",
+ "price": "0.00073326281522966963",
+ "priceChange24hPercent": "-80.82",
+ "volume24h": "1029592.004454216958580522",
+ "communityRecognized": false,
+ "key": "evm--4663:0x77061b45c5e4d440bd681b5f72bd0f4231a6fc04",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x5173b8ea6923c2d40267890d45c46a3480954773",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x5173b8ea6923c2d40267890d45c46a3480954773-1786709002621.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x5173b8ea6923c2d40267890d45c46a3480954773-1786709002621.png"
+ ],
+ "name": "World is Flat",
+ "symbol": "WIF",
+ "marketCap": "992458.903324373126169822",
+ "price": "0.00099245890332437313",
+ "priceChange24hPercent": "66.12",
+ "volume24h": "78463.15300625280884197",
+ "communityRecognized": false,
+ "key": "evm--4663:0x5173b8ea6923c2d40267890d45c46a3480954773",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x5aed379a72bd2533371d153135c47d5eb61babc8",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x5aed379a72bd2533371d153135c47d5eb61babc8-1787054408027.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x5aed379a72bd2533371d153135c47d5eb61babc8-1787054408027.png"
+ ],
+ "name": "Strike",
+ "symbol": "STRIKE",
+ "marketCap": "168166.235763636933834894",
+ "price": "0.00168222444475767271",
+ "priceChange24hPercent": "-5.91",
+ "volume24h": "8635.191387",
+ "communityRecognized": false,
+ "key": "evm--4663:0x5aed379a72bd2533371d153135c47d5eb61babc8",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xb48d34dd8b53324cb8525461c8e548522db885ec",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xb48d34dd8b53324cb8525461c8e548522db885ec-1787918407513.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xb48d34dd8b53324cb8525461c8e548522db885ec-1787918407513.png"
+ ],
+ "name": "Sluice",
+ "symbol": "SLUICE",
+ "marketCap": "132222.15206775523555463",
+ "price": "0.00013222215206775524",
+ "priceChange24hPercent": "-34.88",
+ "volume24h": "75236.2624130388724919",
+ "communityRecognized": false,
+ "key": "evm--4663:0xb48d34dd8b53324cb8525461c8e548522db885ec",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xa80eb66b3e0cf66ccb46f8b8c9e7ff5803eeb820",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xa80eb66b3e0cf66ccb46f8b8c9e7ff5803eeb820-1784949348295.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xa80eb66b3e0cf66ccb46f8b8c9e7ff5803eeb820-1784949348295.png"
+ ],
+ "name": "Wen Lambo",
+ "symbol": "WEN",
+ "marketCap": "1312267.572898479705983932",
+ "price": "0.00131226757289847971",
+ "priceChange24hPercent": "-6",
+ "volume24h": "93576.5243818584747787434",
+ "communityRecognized": false,
+ "key": "evm--4663:0xa80eb66b3e0cf66ccb46f8b8c9e7ff5803eeb820",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ }
+ ],
+ "robinhood_meme|evm--56|5m|all": [],
+ "robinhood_meme|evm--56|1h|all": [],
+ "robinhood_meme|evm--56|4h|all": [],
+ "robinhood_meme|evm--56|24h|all": [],
+ "robinhood_meme|sol--101|5m|all": [],
+ "robinhood_meme|sol--101|1h|all": [],
+ "robinhood_meme|sol--101|4h|all": [],
+ "robinhood_meme|sol--101|24h|all": [],
+ "robinhood_meme|evm--1|5m|all": [],
+ "robinhood_meme|evm--1|1h|all": [],
+ "robinhood_meme|evm--1|4h|all": [],
+ "robinhood_meme|evm--1|24h|all": [],
+ "robinhood_meme|evm--4663|5m|all": [
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x39dbed3a2bd333467115de45665cc57f813c4571",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x39dbed3a2bd333467115de45665cc57f813c4571-1785145437955.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x39dbed3a2bd333467115de45665cc57f813c4571-1785145437955.png"
+ ],
+ "name": "Pons",
+ "symbol": "PONS",
+ "marketCap": "502022018.508028785669424106",
+ "price": "0.71717848311520679734",
+ "priceChange24hPercent": "0.53",
+ "volume24h": "383629.1440529709414042",
+ "communityRecognized": true,
+ "key": "evm--4663:0x39dbed3a2bd333467115de45665cc57f813c4571",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x020bfc650a365f8bb26819deaabf3e21291018b4",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x020bfc650a365f8bb26819deaabf3e21291018b4-1784778353843.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x020bfc650a365f8bb26819deaabf3e21291018b4-1784778353843.png"
+ ],
+ "name": "Cash Cat",
+ "symbol": "CASHCAT",
+ "marketCap": "188581610.80185770225929897",
+ "price": "0.19084952071561432263",
+ "priceChange24hPercent": "0.84",
+ "volume24h": "52058.6734423102728966",
+ "communityRecognized": true,
+ "key": "evm--4663:0x020bfc650a365f8bb26819deaabf3e21291018b4",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xe170dc96ca10103e0d4c5d9293c5a3a72ee365a5",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xe170dc96ca10103e0d4c5d9293c5a3a72ee365a5-1785059757195.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xe170dc96ca10103e0d4c5d9293c5a3a72ee365a5-1785059757195.png"
+ ],
+ "name": "Little John",
+ "symbol": "JOHN",
+ "marketCap": "8802.53080883729502627",
+ "price": "0.0000088025308088373",
+ "priceChange24hPercent": "0",
+ "volume24h": "0",
+ "communityRecognized": false,
+ "key": "evm--4663:0xe170dc96ca10103e0d4c5d9293c5a3a72ee365a5",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xe934e36a439c94017b64a3fece66af12099abf50",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xe934e36a439c94017b64a3fece66af12099abf50-1785290631562.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xe934e36a439c94017b64a3fece66af12099abf50-1785290631562.png"
+ ],
+ "name": "StonkBroker",
+ "symbol": "STONKBROKER",
+ "marketCap": "20652805.024120563132606053",
+ "price": "0.01688272635986417616",
+ "priceChange24hPercent": "1.49",
+ "volume24h": "24949.68442122379511647289",
+ "communityRecognized": true,
+ "key": "evm--4663:0xe934e36a439c94017b64a3fece66af12099abf50",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x348cc963411fb82cd6e0b64345714fec94f242cb",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x348cc963411fb82cd6e0b64345714fec94f242cb-1787918436309.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x348cc963411fb82cd6e0b64345714fec94f242cb-1787918436309.png"
+ ],
+ "name": "Goose Token",
+ "symbol": "GOOSE",
+ "marketCap": "81393460.832387531242448284",
+ "price": "0.08139346083238753124",
+ "priceChange24hPercent": "0",
+ "volume24h": "0",
+ "communityRecognized": false,
+ "key": "evm--4663:0x348cc963411fb82cd6e0b64345714fec94f242cb",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x5cb6f181081301b44905f3ae15419112ecabd8a6",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x5cb6f181081301b44905f3ae15419112ecabd8a6-1785411923960.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x5cb6f181081301b44905f3ae15419112ecabd8a6-1785411923960.png"
+ ],
+ "name": "pipedog",
+ "symbol": "PIPEDOG",
+ "marketCap": "35769492.909630204770672297",
+ "price": "0.00289732894922953629",
+ "priceChange24hPercent": "-0.16",
+ "volume24h": "4776.435471492923028365",
+ "communityRecognized": true,
+ "key": "evm--4663:0x5cb6f181081301b44905f3ae15419112ecabd8a6",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x57c0e45cb534413d1c20a4240955d6bb250bb4f1",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x57c0e45cb534413d1c20a4240955d6bb250bb4f1-1785005199051.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x57c0e45cb534413d1c20a4240955d6bb250bb4f1-1785005199051.png"
+ ],
+ "name": "up",
+ "symbol": "UP",
+ "marketCap": "10939824.275003627272484814",
+ "price": "0.54014115573703348966",
+ "priceChange24hPercent": "1.25",
+ "volume24h": "3692.97522239957010554",
+ "communityRecognized": true,
+ "key": "evm--4663:0x57c0e45cb534413d1c20a4240955d6bb250bb4f1",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x0e0d2c89a5a019fe1cf762e5e33187631dacc21b",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x0e0d2c89a5a019fe1cf762e5e33187631dacc21b-1787400114210.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x0e0d2c89a5a019fe1cf762e5e33187631dacc21b-1787400114210.png"
+ ],
+ "name": "Chump Coin",
+ "symbol": "CHUMP",
+ "marketCap": "35977837.123296699878179831",
+ "price": "0.03597783749651078179",
+ "priceChange24hPercent": "-1.91",
+ "volume24h": "9249.730976559425433",
+ "communityRecognized": false,
+ "key": "evm--4663:0x0e0d2c89a5a019fe1cf762e5e33187631dacc21b",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x56910d4409f3a0c78c64dd8d0545ff0705389870",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x56910d4409f3a0c78c64dd8d0545ff0705389870-1784842044117.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x56910d4409f3a0c78c64dd8d0545ff0705389870-1784842044117.png"
+ ],
+ "name": "The Index",
+ "symbol": "Index",
+ "marketCap": "39076127.721770539963962651",
+ "price": "0.03985186707954164859",
+ "priceChange24hPercent": "0.07",
+ "volume24h": "6130.0835167832233727",
+ "communityRecognized": true,
+ "key": "evm--4663:0x56910d4409f3a0c78c64dd8d0545ff0705389870",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x18e674231a58c239dc7daedcffe15ec3a24cff5c",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x18e674231a58c239dc7daedcffe15ec3a24cff5c-1786190410593.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x18e674231a58c239dc7daedcffe15ec3a24cff5c-1786190410593.png"
+ ],
+ "name": "Hookr.fun",
+ "symbol": "HOOKR",
+ "marketCap": "16618445.208237637803108274",
+ "price": "0.0166791731104542394",
+ "priceChange24hPercent": "0.38",
+ "volume24h": "12190.439290870409997",
+ "communityRecognized": true,
+ "key": "evm--4663:0x18e674231a58c239dc7daedcffe15ec3a24cff5c",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x7fe995a80075df3dc8ae11a9b82c7fe4202cd87f",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x7fe995a80075df3dc8ae11a9b82c7fe4202cd87f-1785325956569.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x7fe995a80075df3dc8ae11a9b82c7fe4202cd87f-1785325956569.png"
+ ],
+ "name": "Thinking Cat",
+ "symbol": "HMM",
+ "marketCap": "13039576.030590609490030763",
+ "price": "0.01320187144939991148",
+ "priceChange24hPercent": "2.21",
+ "volume24h": "2415.302078470952857",
+ "communityRecognized": true,
+ "key": "evm--4663:0x7fe995a80075df3dc8ae11a9b82c7fe4202cd87f",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x45242320dbb855eea8fd36804c6487e10e97fcf9",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x45242320dbb855eea8fd36804c6487e10e97fcf9-1784778612504.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x45242320dbb855eea8fd36804c6487e10e97fcf9-1784778612504.png"
+ ],
+ "name": "TENDIES",
+ "symbol": "TENDIES",
+ "marketCap": "15418336.651928049187952375",
+ "price": "0.0161197596815997701",
+ "priceChange24hPercent": "0.28",
+ "volume24h": "328.961730312302788",
+ "communityRecognized": false,
+ "key": "evm--4663:0x45242320dbb855eea8fd36804c6487e10e97fcf9",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xca9c78dd337a67f6e0077f65f5e9218719d30edf",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xca9c78dd337a67f6e0077f65f5e9218719d30edf-1785280831816.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xca9c78dd337a67f6e0077f65f5e9218719d30edf-1785280831816.png"
+ ],
+ "name": "NetNet",
+ "symbol": "NET",
+ "marketCap": "3920472.764198924127605602",
+ "price": "668.59150927027122099446",
+ "priceChange24hPercent": "-0.05",
+ "volume24h": "4674.4240279092992571",
+ "communityRecognized": false,
+ "key": "evm--4663:0xca9c78dd337a67f6e0077f65f5e9218719d30edf",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xc72f232a6869e6cf34dc06129affd07f8a2a246a",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xc72f232a6869e6cf34dc06129affd07f8a2a246a-1786104032870.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xc72f232a6869e6cf34dc06129affd07f8a2a246a-1786104032870.png"
+ ],
+ "name": "Mancer",
+ "symbol": "MANCER",
+ "marketCap": "5440876.002220110409619299",
+ "price": "0.00217635040088804416",
+ "priceChange24hPercent": "0",
+ "volume24h": "0",
+ "communityRecognized": false,
+ "key": "evm--4663:0xc72f232a6869e6cf34dc06129affd07f8a2a246a",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x6245e67affa44a23077f0ea7f981a8dc743a0c47",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x6245e67affa44a23077f0ea7f981a8dc743a0c47-1785931207872.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x6245e67affa44a23077f0ea7f981a8dc743a0c47-1785931207872.png"
+ ],
+ "name": "frong",
+ "symbol": "FRONG",
+ "marketCap": "5491401.474828610941251233",
+ "price": "0.00549140147482861094",
+ "priceChange24hPercent": "0.19",
+ "volume24h": "835.8787699304115184",
+ "communityRecognized": false,
+ "key": "evm--4663:0x6245e67affa44a23077f0ea7f981a8dc743a0c47",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xee5576fa1bcaa380e591d01245f406f3f384eb01",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xee5576fa1bcaa380e591d01245f406f3f384eb01-1787832045009.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xee5576fa1bcaa380e591d01245f406f3f384eb01-1787832045009.png"
+ ],
+ "name": "Down to Finance",
+ "symbol": "DTF",
+ "marketCap": "8682703.707015428616989098",
+ "price": "0.00868270374727847651",
+ "priceChange24hPercent": "-1.03",
+ "volume24h": "5793.24223690745136",
+ "communityRecognized": false,
+ "key": "evm--4663:0xee5576fa1bcaa380e591d01245f406f3f384eb01",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x62c71cd34a52c30d894419cbcc55db2afa8032ea",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x62c71cd34a52c30d894419cbcc55db2afa8032ea-1785197280438.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x62c71cd34a52c30d894419cbcc55db2afa8032ea-1785197280438.png"
+ ],
+ "name": "YOLO",
+ "symbol": "YOLO",
+ "marketCap": "6110793.379760146105089284",
+ "price": "0.0062997870322002435",
+ "priceChange24hPercent": "-0.24",
+ "volume24h": "493.45197776168902",
+ "communityRecognized": false,
+ "key": "evm--4663:0x62c71cd34a52c30d894419cbcc55db2afa8032ea",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x451b42a15100c340ca12f7c66de06fac5ea2d751",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x451b42a15100c340ca12f7c66de06fac5ea2d751-1787832041620.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x451b42a15100c340ca12f7c66de06fac5ea2d751-1787832041620.png"
+ ],
+ "name": "Longbow",
+ "symbol": "BOW",
+ "marketCap": "5787414.729870295757998562",
+ "price": "0.00578741472987029576",
+ "priceChange24hPercent": "0.99",
+ "volume24h": "2669.273028467473932",
+ "communityRecognized": false,
+ "key": "evm--4663:0x451b42a15100c340ca12f7c66de06fac5ea2d751",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xf2915d1e3c1b0c769d0c756ec43f1c1f6c99cd03",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xf2915d1e3c1b0c769d0c756ec43f1c1f6c99cd03-1784861135802.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xf2915d1e3c1b0c769d0c756ec43f1c1f6c99cd03-1784861135802.png"
+ ],
+ "name": "Arrow",
+ "symbol": "ARROW",
+ "marketCap": "3472922.672130186445530038",
+ "price": "0.38588029898682948721",
+ "priceChange24hPercent": "0.51",
+ "volume24h": "236.762862785365715",
+ "communityRecognized": false,
+ "key": "evm--4663:0xf2915d1e3c1b0c769d0c756ec43f1c1f6c99cd03",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xb9972ca7188e511174947e3936a5315ac7073277",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xb9972ca7188e511174947e3936a5315ac7073277-1787400211008.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xb9972ca7188e511174947e3936a5315ac7073277-1787400211008.png"
+ ],
+ "name": "Prologue",
+ "symbol": "PROLOGUE",
+ "marketCap": "10867196.245258369257184329",
+ "price": "0.01086719624525836926",
+ "priceChange24hPercent": "4.01",
+ "volume24h": "18082.7900591936388073",
+ "communityRecognized": true,
+ "key": "evm--4663:0xb9972ca7188e511174947e3936a5315ac7073277",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xd7321801caae694090694ff55a9323139f043b88",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xd7321801caae694090694ff55a9323139f043b88-1784779777690.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xd7321801caae694090694ff55a9323139f043b88-1784779777690.png"
+ ],
+ "name": "The Juggernaut",
+ "symbol": "JUGGERNAUT",
+ "marketCap": "3019903.208555332697636294",
+ "price": "0.00322096834857655848",
+ "priceChange24hPercent": "2.11",
+ "volume24h": "1385.5612851333897125",
+ "communityRecognized": false,
+ "key": "evm--4663:0xd7321801caae694090694ff55a9323139f043b88",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x8ff92566f2e81bdd68edfaa8cde73942a723796b",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x8ff92566f2e81bdd68edfaa8cde73942a723796b-1784854679354.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x8ff92566f2e81bdd68edfaa8cde73942a723796b-1784854679354.png"
+ ],
+ "name": "ProjectVex",
+ "symbol": "VEX",
+ "marketCap": "2665179.099566858123776638",
+ "price": "0.00266517909956685812",
+ "priceChange24hPercent": "-1.08",
+ "volume24h": "845.3753960632374",
+ "communityRecognized": false,
+ "key": "evm--4663:0x8ff92566f2e81bdd68edfaa8cde73942a723796b",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xcebc0cfbc5dd0893a9e3b9d0f75b211ddf5934a0",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xcebc0cfbc5dd0893a9e3b9d0f75b211ddf5934a0-1788177871007.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xcebc0cfbc5dd0893a9e3b9d0f75b211ddf5934a0-1788177871007.png"
+ ],
+ "name": "clan.tech",
+ "symbol": "CLAN",
+ "marketCap": "1346087.777112335683918246",
+ "price": "0.00134608777721111461",
+ "priceChange24hPercent": "-2.82",
+ "volume24h": "1122.02801733353547",
+ "communityRecognized": false,
+ "key": "evm--4663:0xcebc0cfbc5dd0893a9e3b9d0f75b211ddf5934a0",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x232cdfc415d10b673845d83dc02ba2eabe7e30d1",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x232cdfc415d10b673845d83dc02ba2eabe7e30d1-1785412803768.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x232cdfc415d10b673845d83dc02ba2eabe7e30d1-1785412803768.png"
+ ],
+ "name": "What If",
+ "symbol": "IF",
+ "marketCap": "10586906.988923495786384388",
+ "price": "0.01168673691363227001",
+ "priceChange24hPercent": "1.13",
+ "volume24h": "9057.916599174288657",
+ "communityRecognized": false,
+ "key": "evm--4663:0x232cdfc415d10b673845d83dc02ba2eabe7e30d1",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x76761d4aee1e7d6b2b8dedbd13925d6c220b0725",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x76761d4aee1e7d6b2b8dedbd13925d6c220b0725-1786276810800.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x76761d4aee1e7d6b2b8dedbd13925d6c220b0725-1786276810800.png"
+ ],
+ "name": "MowCat",
+ "symbol": "MOW",
+ "marketCap": "4608946.621219782201180129",
+ "price": "0.0046089466212197822",
+ "priceChange24hPercent": "0",
+ "volume24h": "0",
+ "communityRecognized": false,
+ "key": "evm--4663:0x76761d4aee1e7d6b2b8dedbd13925d6c220b0725",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x77b0aa38451ccdc1b42587e2f80b9879a7f82356",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x77b0aa38451ccdc1b42587e2f80b9879a7f82356-1786536021883.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x77b0aa38451ccdc1b42587e2f80b9879a7f82356-1786536021883.png"
+ ],
+ "name": "DogBull",
+ "symbol": "DOGO",
+ "marketCap": "21768233.653662840214264244",
+ "price": "0.02155270658778499031",
+ "priceChange24hPercent": "-0.05",
+ "volume24h": "38.4714065347779",
+ "communityRecognized": false,
+ "key": "evm--4663:0x77b0aa38451ccdc1b42587e2f80b9879a7f82356",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x385b36ff682ab4c76e7c37a66b96aabc466471d5",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x385b36ff682ab4c76e7c37a66b96aabc466471d5-1786017815496.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x385b36ff682ab4c76e7c37a66b96aabc466471d5-1786017815496.png"
+ ],
+ "name": "pools.trade",
+ "symbol": "POOLS",
+ "marketCap": "1556630.67532955837106892",
+ "price": "0.0015566308898872704",
+ "priceChange24hPercent": "0.74",
+ "volume24h": "86.627498129371758",
+ "communityRecognized": false,
+ "key": "evm--4663:0x385b36ff682ab4c76e7c37a66b96aabc466471d5",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x5f62c57e5c537887117eef828b7e3ad41c009feb",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x5f62c57e5c537887117eef828b7e3ad41c009feb-1786018016957.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x5f62c57e5c537887117eef828b7e3ad41c009feb-1786018016957.png"
+ ],
+ "name": "Good In The Hood",
+ "symbol": "GOOD",
+ "marketCap": "3650847.769165494974298471",
+ "price": "0.00464873807570103688",
+ "priceChange24hPercent": "-0.15",
+ "volume24h": "297.98991473345608",
+ "communityRecognized": false,
+ "key": "evm--4663:0x5f62c57e5c537887117eef828b7e3ad41c009feb",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x20024e485c0b22b42855589700721b28320a7777",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x20024e485c0b22b42855589700721b28320a7777-1786363300721.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x20024e485c0b22b42855589700721b28320a7777-1786363300721.png"
+ ],
+ "name": "Prism Assets",
+ "symbol": "PRISM",
+ "marketCap": "2315389.100589988802579267",
+ "price": "0.0023153891005899888",
+ "priceChange24hPercent": "1.99",
+ "volume24h": "189.8134918939075087",
+ "communityRecognized": false,
+ "key": "evm--4663:0x20024e485c0b22b42855589700721b28320a7777",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x4a6eec8a30b49d289b9fc865fd374b4d61eab8fb",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x4a6eec8a30b49d289b9fc865fd374b4d61eab8fb-1785758432269.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x4a6eec8a30b49d289b9fc865fd374b4d61eab8fb-1785758432269.png"
+ ],
+ "name": "Liluni",
+ "symbol": "Liluni",
+ "marketCap": "769327.821597585049202932",
+ "price": "0.00076932782159758505",
+ "priceChange24hPercent": "-2.13",
+ "volume24h": "121.8210164974537",
+ "communityRecognized": false,
+ "key": "evm--4663:0x4a6eec8a30b49d289b9fc865fd374b4d61eab8fb",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xb8fa8010833463aac5595b55b9045479239eff79",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xb8fa8010833463aac5595b55b9045479239eff79-1786881632532.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xb8fa8010833463aac5595b55b9045479239eff79-1786881632532.png"
+ ],
+ "name": "what the hook?",
+ "symbol": "WTH",
+ "marketCap": "4433865.674641148580658499",
+ "price": "21.11364606971975514599",
+ "priceChange24hPercent": "-0.21",
+ "volume24h": "1767.6572677378965",
+ "communityRecognized": false,
+ "key": "evm--4663:0xb8fa8010833463aac5595b55b9045479239eff79",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xf8bc08092c06db6148114dcf82af881f1085f92b",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xf8bc08092c06db6148114dcf82af881f1085f92b-1785137390595.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xf8bc08092c06db6148114dcf82af881f1085f92b-1785137390595.png"
+ ],
+ "name": "Sherwood Protocol",
+ "symbol": "WOOD",
+ "marketCap": "5294868.778292219416037217",
+ "price": "0.00529486877829221942",
+ "priceChange24hPercent": "0.11",
+ "volume24h": "739.52105425656196",
+ "communityRecognized": false,
+ "key": "evm--4663:0xf8bc08092c06db6148114dcf82af881f1085f92b",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x51fb76be80ab6daaa345d818f4e06441816b4fea",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x51fb76be80ab6daaa345d818f4e06441816b4fea-1786104017624.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x51fb76be80ab6daaa345d818f4e06441816b4fea-1786104017624.png"
+ ],
+ "name": "NASDANQ",
+ "symbol": "NASDANQ",
+ "marketCap": "2336139.896707354816830353",
+ "price": "0.00233613989670735482",
+ "priceChange24hPercent": "-0.54",
+ "volume24h": "405.42625046416961",
+ "communityRecognized": false,
+ "key": "evm--4663:0x51fb76be80ab6daaa345d818f4e06441816b4fea",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x8ecea3d0e648db646d824aa51eedeb16ac3d6878",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x8ecea3d0e648db646d824aa51eedeb16ac3d6878-1785284432065.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x8ecea3d0e648db646d824aa51eedeb16ac3d6878-1785284432065.png"
+ ],
+ "name": "wire bot",
+ "symbol": "wire",
+ "marketCap": "539032.655786243127634391",
+ "price": "0.00054041288588799596",
+ "priceChange24hPercent": "1.85",
+ "volume24h": "21.1238702367309107",
+ "communityRecognized": false,
+ "key": "evm--4663:0x8ecea3d0e648db646d824aa51eedeb16ac3d6878",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xcb5566e73bee5390c75df834d4727dcecc65fc87",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xcb5566e73bee5390c75df834d4727dcecc65fc87-1788354026635.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xcb5566e73bee5390c75df834d4727dcecc65fc87-1788354026635.png"
+ ],
+ "name": "Mast Bond",
+ "symbol": "MAST",
+ "marketCap": "652914.665836647500035643",
+ "price": "0.0006529146658366475",
+ "priceChange24hPercent": "-1.28",
+ "volume24h": "604.68257107929776",
+ "communityRecognized": false,
+ "key": "evm--4663:0xcb5566e73bee5390c75df834d4727dcecc65fc87",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xf44702b17d9abd53815f703e772f35e9c71a53af",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xf44702b17d9abd53815f703e772f35e9c71a53af-1784822115804.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xf44702b17d9abd53815f703e772f35e9c71a53af-1784822115804.png"
+ ],
+ "name": "RAXOL",
+ "symbol": "RAXOL",
+ "marketCap": "1712329.03977912128931203",
+ "price": "0.00171232903977912129",
+ "priceChange24hPercent": "0.56",
+ "volume24h": "39.71756040009936",
+ "communityRecognized": false,
+ "key": "evm--4663:0xf44702b17d9abd53815f703e772f35e9c71a53af",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x8e62f281f282686fca6dcb39288069a93fc23f1c",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x8e62f281f282686fca6dcb39288069a93fc23f1c-1784830569718.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x8e62f281f282686fca6dcb39288069a93fc23f1c-1784830569718.png"
+ ],
+ "name": "Hoodrat",
+ "symbol": "HOODRAT",
+ "marketCap": "1729390.247190236716847253",
+ "price": "0.00172939031667982091",
+ "priceChange24hPercent": "0.92",
+ "volume24h": "250.55137027447531",
+ "communityRecognized": true,
+ "key": "evm--4663:0x8e62f281f282686fca6dcb39288069a93fc23f1c",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x77581054581b9c525e7dd7a0155de43867532d03",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x77581054581b9c525e7dd7a0155de43867532d03-1784939141560.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x77581054581b9c525e7dd7a0155de43867532d03-1784939141560.png"
+ ],
+ "name": "WISHBONE",
+ "symbol": "WISHBONE",
+ "marketCap": "890566.402734889733341878",
+ "price": "0.00096332665926777235",
+ "priceChange24hPercent": "0.09",
+ "volume24h": "192.66533185355448",
+ "communityRecognized": false,
+ "key": "evm--4663:0x77581054581b9c525e7dd7a0155de43867532d03",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x43eea882b845a8493152ebc55cf30ae9281b02d5",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x43eea882b845a8493152ebc55cf30ae9281b02d5-1785292897426.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x43eea882b845a8493152ebc55cf30ae9281b02d5-1785292897426.png"
+ ],
+ "name": "FIRE",
+ "symbol": "FIRE",
+ "marketCap": "1462625.380905727143813291",
+ "price": "0.0014809585098065579",
+ "priceChange24hPercent": "-2.31",
+ "volume24h": "64.1005504078177672",
+ "communityRecognized": false,
+ "key": "evm--4663:0x43eea882b845a8493152ebc55cf30ae9281b02d5",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xac77646bcff9d52e99800534192e0290933f4094",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xac77646bcff9d52e99800534192e0290933f4094-1787572842778.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xac77646bcff9d52e99800534192e0290933f4094-1787572842778.png"
+ ],
+ "name": "Martians",
+ "symbol": "MARTIANS",
+ "marketCap": "421107.798117296771237422",
+ "price": "0.00042110779812399404",
+ "priceChange24hPercent": "0",
+ "volume24h": "0",
+ "communityRecognized": false,
+ "key": "evm--4663:0xac77646bcff9d52e99800534192e0290933f4094",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xf0568863195770965a6d8abb0aa87f4314b80320",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xf0568863195770965a6d8abb0aa87f4314b80320-1785239850960.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xf0568863195770965a6d8abb0aa87f4314b80320-1785239850960.png"
+ ],
+ "name": "SLIPPY",
+ "symbol": "SLIPPY",
+ "marketCap": "2285143.7736062878747713",
+ "price": "0.0022851443913658089",
+ "priceChange24hPercent": "0",
+ "volume24h": "199.49327541",
+ "communityRecognized": false,
+ "key": "evm--4663:0xf0568863195770965a6d8abb0aa87f4314b80320",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x9ca1cc0c90d97b4f36c5e2232d4fbd705a73c65d",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x9ca1cc0c90d97b4f36c5e2232d4fbd705a73c65d-1786363300721.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x9ca1cc0c90d97b4f36c5e2232d4fbd705a73c65d-1786363300721.png"
+ ],
+ "name": "TA FUND",
+ "symbol": "TA",
+ "marketCap": "2169025.59885951907590852",
+ "price": "0.00216902559885951908",
+ "priceChange24hPercent": "-1.1",
+ "volume24h": "13.587568451673016",
+ "communityRecognized": false,
+ "key": "evm--4663:0x9ca1cc0c90d97b4f36c5e2232d4fbd705a73c65d",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x7168563b0e70124f0c7c0cf2f13a8d1861baf4a5",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x7168563b0e70124f0c7c0cf2f13a8d1861baf4a5-1785276114071.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x7168563b0e70124f0c7c0cf2f13a8d1861baf4a5-1785276114071.png"
+ ],
+ "name": "Backed",
+ "symbol": "BACKED",
+ "marketCap": "683975.046016032677877222",
+ "price": "0.00072634119132098617",
+ "priceChange24hPercent": "0",
+ "volume24h": "0",
+ "communityRecognized": false,
+ "key": "evm--4663:0x7168563b0e70124f0c7c0cf2f13a8d1861baf4a5",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xe3fa12da7fa026b21817f16622e8ae48fa785166",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xe3fa12da7fa026b21817f16622e8ae48fa785166-1786536006382.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xe3fa12da7fa026b21817f16622e8ae48fa785166-1786536006382.png"
+ ],
+ "name": "Yardkeeper",
+ "symbol": "YARD",
+ "marketCap": "1661101.247537698075666796",
+ "price": "0.00237034455488214896",
+ "priceChange24hPercent": "0.6",
+ "volume24h": "1005.445435556062236",
+ "communityRecognized": false,
+ "key": "evm--4663:0xe3fa12da7fa026b21817f16622e8ae48fa785166",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x727701f88f09fed71eb217bcea88b3f314cf7079",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x727701f88f09fed71eb217bcea88b3f314cf7079-1785229474064.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x727701f88f09fed71eb217bcea88b3f314cf7079-1785229474064.png"
+ ],
+ "name": "GRID by Virtuals",
+ "symbol": "GRID",
+ "marketCap": "1249980.578691939741013368",
+ "price": "0.00124998057869193974",
+ "priceChange24hPercent": "0",
+ "volume24h": "0",
+ "communityRecognized": false,
+ "key": "evm--4663:0x727701f88f09fed71eb217bcea88b3f314cf7079",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x96765066f6a040a21eb027167d2315b707c82633",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x96765066f6a040a21eb027167d2315b707c82633-1784938636403.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x96765066f6a040a21eb027167d2315b707c82633-1784938636403.png"
+ ],
+ "name": "Ravenhood",
+ "symbol": "RVH",
+ "marketCap": "390628.355788254703232466",
+ "price": "0.00496337736804456155",
+ "priceChange24hPercent": "0.47",
+ "volume24h": "183.77650375",
+ "communityRecognized": false,
+ "key": "evm--4663:0x96765066f6a040a21eb027167d2315b707c82633",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xbd957cc9f1e94617792f37bc40f2f299e78acf3e",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xbd957cc9f1e94617792f37bc40f2f299e78acf3e-1785845024248.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xbd957cc9f1e94617792f37bc40f2f299e78acf3e-1785845024248.png"
+ ],
+ "name": "Crude Cat",
+ "symbol": "CRUDECAT",
+ "marketCap": "2307997.035220816076014931",
+ "price": "0.00597695795708211835",
+ "priceChange24hPercent": "-13.61",
+ "volume24h": "9214.958108167651715",
+ "communityRecognized": false,
+ "key": "evm--4663:0xbd957cc9f1e94617792f37bc40f2f299e78acf3e",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xfb1bcb6817f7b8fa86896d3253b16aeb7bd6a5a8",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xfb1bcb6817f7b8fa86896d3253b16aeb7bd6a5a8-1785008871536.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xfb1bcb6817f7b8fa86896d3253b16aeb7bd6a5a8-1785008871536.png"
+ ],
+ "name": "one life, its worth an attempt",
+ "symbol": "worth",
+ "marketCap": "943016.144584851830199867",
+ "price": "0.00112942228622299282",
+ "priceChange24hPercent": "0",
+ "volume24h": "0",
+ "communityRecognized": false,
+ "key": "evm--4663:0xfb1bcb6817f7b8fa86896d3253b16aeb7bd6a5a8",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x49bac47750f3dcdba49350b5d74fd399e90f97c6",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x49bac47750f3dcdba49350b5d74fd399e90f97c6-1786190483451.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x49bac47750f3dcdba49350b5d74fd399e90f97c6-1786190483451.png"
+ ],
+ "name": "The Bull",
+ "symbol": "BULL",
+ "marketCap": "1844160.155161726289434023",
+ "price": "0.00184418762652969795",
+ "priceChange24hPercent": "0",
+ "volume24h": "0",
+ "communityRecognized": false,
+ "key": "evm--4663:0x49bac47750f3dcdba49350b5d74fd399e90f97c6",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x9727b500ac8726c716f018e5d3ca871481245065",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x9727b500ac8726c716f018e5d3ca871481245065-1785196146146.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x9727b500ac8726c716f018e5d3ca871481245065-1785196146146.png"
+ ],
+ "name": "Ansem Cat",
+ "symbol": "AnsemCat",
+ "marketCap": "365173.245867752584482233",
+ "price": "0.00000086803405326429",
+ "priceChange24hPercent": "0",
+ "volume24h": "0",
+ "communityRecognized": false,
+ "key": "evm--4663:0x9727b500ac8726c716f018e5d3ca871481245065",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xeafa804083a4886a9460b5b19557334a652beba8",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xeafa804083a4886a9460b5b19557334a652beba8-1785002418521.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xeafa804083a4886a9460b5b19557334a652beba8-1785002418521.png"
+ ],
+ "name": "Naven Network",
+ "symbol": "NAVEN",
+ "marketCap": "379120.192909717179101389",
+ "price": "0.00043238178622577899",
+ "priceChange24hPercent": "1.82",
+ "volume24h": "0.5882268132571152",
+ "communityRecognized": false,
+ "key": "evm--4663:0xeafa804083a4886a9460b5b19557334a652beba8",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x0762c1708f0d23f86b29d6b857121ff7df357506",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x0762c1708f0d23f86b29d6b857121ff7df357506-1785931280846.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x0762c1708f0d23f86b29d6b857121ff7df357506-1785931280846.png"
+ ],
+ "name": "this is not a website",
+ "symbol": "website",
+ "marketCap": "5197878.936462059211378102",
+ "price": "0.00555662732124259188",
+ "priceChange24hPercent": "-0.21",
+ "volume24h": "388.73491888761322",
+ "communityRecognized": false,
+ "key": "evm--4663:0x0762c1708f0d23f86b29d6b857121ff7df357506",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x3b4a0048a00787a644932cd648faa043410c163e",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x3b4a0048a00787a644932cd648faa043410c163e-1788264033495.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x3b4a0048a00787a644932cd648faa043410c163e-1788264033495.png"
+ ],
+ "name": "The Dogestar",
+ "symbol": "SIRIUS",
+ "marketCap": "889308.889941344775296854",
+ "price": "0.00088930888995381725",
+ "priceChange24hPercent": "0.24",
+ "volume24h": "104.925373",
+ "communityRecognized": false,
+ "key": "evm--4663:0x3b4a0048a00787a644932cd648faa043410c163e",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x2103faa9d1762e27a716c61718b3acf3ec1f9bf1",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x2103faa9d1762e27a716c61718b3acf3ec1f9bf1-1785016173111.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x2103faa9d1762e27a716c61718b3acf3ec1f9bf1-1785016173111.png"
+ ],
+ "name": "Robin Hood",
+ "symbol": "FOX",
+ "marketCap": "819155.44037873657318132",
+ "price": "0.00087392746402269212",
+ "priceChange24hPercent": "-2.11",
+ "volume24h": "70.3873389004011317",
+ "communityRecognized": false,
+ "key": "evm--4663:0x2103faa9d1762e27a716c61718b3acf3ec1f9bf1",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x532c5583671870723ceef573600208af49c87c54",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x532c5583671870723ceef573600208af49c87c54-1787572802676.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x532c5583671870723ceef573600208af49c87c54-1787572802676.png"
+ ],
+ "name": "Canopy Finance",
+ "symbol": "CNPY",
+ "marketCap": "2043406.519085803891568646",
+ "price": "0.00268033834862245422",
+ "priceChange24hPercent": "1.39",
+ "volume24h": "2414.848875378316",
+ "communityRecognized": false,
+ "key": "evm--4663:0x532c5583671870723ceef573600208af49c87c54",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xaa40e79e987517f7462bf79315b8a118799b04e3",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xaa40e79e987517f7462bf79315b8a118799b04e3-1787659277021.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xaa40e79e987517f7462bf79315b8a118799b04e3-1787659277021.png"
+ ],
+ "name": "scopl.live",
+ "symbol": "SCOPL",
+ "marketCap": "401077.566822741022302925",
+ "price": "0.00041294851870877833",
+ "priceChange24hPercent": "0.04",
+ "volume24h": "36.843834545888809",
+ "communityRecognized": false,
+ "key": "evm--4663:0xaa40e79e987517f7462bf79315b8a118799b04e3",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x01637b14b7378b99de75a64d50656d98488d9a4d",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x01637b14b7378b99de75a64d50656d98488d9a4d-1784777167517.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x01637b14b7378b99de75a64d50656d98488d9a4d-1784777167517.png"
+ ],
+ "name": "Lady Marian",
+ "symbol": "MARIAN",
+ "marketCap": "628696.510942059642535741",
+ "price": "0.00063887984115372445",
+ "priceChange24hPercent": "0",
+ "volume24h": "0",
+ "communityRecognized": false,
+ "key": "evm--4663:0x01637b14b7378b99de75a64d50656d98488d9a4d",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xa5be0eeb82a013dc7867b9e020c36a69da666666",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xa5be0eeb82a013dc7867b9e020c36a69da666666-1787227214299.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xa5be0eeb82a013dc7867b9e020c36a69da666666-1787227214299.png"
+ ],
+ "name": "CLOCK IN",
+ "symbol": "CLOCKIN",
+ "marketCap": "390075.568640705056017851",
+ "price": "0.00039007557111482805",
+ "priceChange24hPercent": "0.87",
+ "volume24h": "474.1488705057997",
+ "communityRecognized": false,
+ "key": "evm--4663:0xa5be0eeb82a013dc7867b9e020c36a69da666666",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xf0e17e54239cd945cd7bea471a3a2ca6a8c7f7a3",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xf0e17e54239cd945cd7bea471a3a2ca6a8c7f7a3-1785403528086.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xf0e17e54239cd945cd7bea471a3a2ca6a8c7f7a3-1785403528086.png"
+ ],
+ "name": "Lemon",
+ "symbol": "LEMON.FUN",
+ "marketCap": "567512.386103755069902849",
+ "price": "0.00057397490461328917",
+ "priceChange24hPercent": "0.57",
+ "volume24h": "300.4147447985221",
+ "communityRecognized": false,
+ "key": "evm--4663:0xf0e17e54239cd945cd7bea471a3a2ca6a8c7f7a3",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x5edb417509a869b1d8222dea05257b8c8ba00361",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x5edb417509a869b1d8222dea05257b8c8ba00361-1786881611635.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x5edb417509a869b1d8222dea05257b8c8ba00361-1786881611635.png"
+ ],
+ "name": "DeFi Traded Fund",
+ "symbol": "DTF",
+ "marketCap": "2101276.505389603821695618",
+ "price": "0.00258078710768923079",
+ "priceChange24hPercent": "0.26",
+ "volume24h": "309.463179",
+ "communityRecognized": false,
+ "key": "evm--4663:0x5edb417509a869b1d8222dea05257b8c8ba00361",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x1d5aad3c0d6066078ea60f384a2492a550db30b0",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x1d5aad3c0d6066078ea60f384a2492a550db30b0-1786623045142.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x1d5aad3c0d6066078ea60f384a2492a550db30b0-1786623045142.png"
+ ],
+ "name": "STACKERS",
+ "symbol": "STACK",
+ "marketCap": "328316.712147829017752093",
+ "price": "0.00052860209114416726",
+ "priceChange24hPercent": "-0.09",
+ "volume24h": "8.44916027075663057",
+ "communityRecognized": false,
+ "key": "evm--4663:0x1d5aad3c0d6066078ea60f384a2492a550db30b0",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xd1e861cc5eee7ea88649206b74504d78ccd7aeea",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xd1e861cc5eee7ea88649206b74504d78ccd7aeea-1786708875938.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xd1e861cc5eee7ea88649206b74504d78ccd7aeea-1786708875938.png"
+ ],
+ "name": "Alandale",
+ "symbol": "LUTE",
+ "marketCap": "453658.504315338644932708",
+ "price": "0.00853535222467991659",
+ "priceChange24hPercent": "0",
+ "volume24h": "0",
+ "communityRecognized": false,
+ "key": "evm--4663:0xd1e861cc5eee7ea88649206b74504d78ccd7aeea",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xbc9e7b1c5c0081f4ae85e71ec95703d3dec9ffad",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xbc9e7b1c5c0081f4ae85e71ec95703d3dec9ffad-1786449612801.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xbc9e7b1c5c0081f4ae85e71ec95703d3dec9ffad-1786449612801.png"
+ ],
+ "name": "Bucket Shop",
+ "symbol": "Bucket",
+ "marketCap": "3487714.386686102696356531",
+ "price": "0.00349446150649011294",
+ "priceChange24hPercent": "9.65",
+ "volume24h": "1048.291873307398623",
+ "communityRecognized": false,
+ "key": "evm--4663:0xbc9e7b1c5c0081f4ae85e71ec95703d3dec9ffad",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x8d4dfaaa4198b6486e0293fec914c2b6a821d4dc",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x8d4dfaaa4198b6486e0293fec914c2b6a821d4dc-1784777336133.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x8d4dfaaa4198b6486e0293fec914c2b6a821d4dc-1784777336133.png"
+ ],
+ "name": "KITSU",
+ "symbol": "KITSU",
+ "marketCap": "1112588.761797044854702224",
+ "price": "0.00118106846427510267",
+ "priceChange24hPercent": "2.67",
+ "volume24h": "533.689454873829193",
+ "communityRecognized": false,
+ "key": "evm--4663:0x8d4dfaaa4198b6486e0293fec914c2b6a821d4dc",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xe15db7c8547a0add11eb26a700246cca08aefce5",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xe15db7c8547a0add11eb26a700246cca08aefce5-1785409545430.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xe15db7c8547a0add11eb26a700246cca08aefce5-1785409545430.png"
+ ],
+ "name": "Shibinhood",
+ "symbol": "WOOF",
+ "marketCap": "1215493.548453345796307932",
+ "price": "0.00000121549354859677",
+ "priceChange24hPercent": "-0.09",
+ "volume24h": "207.933795589381293",
+ "communityRecognized": true,
+ "key": "evm--4663:0xe15db7c8547a0add11eb26a700246cca08aefce5",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x69984ad3322300039f2855f81c44dbc532efe744",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x69984ad3322300039f2855f81c44dbc532efe744-1785359089193.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x69984ad3322300039f2855f81c44dbc532efe744-1785359089193.png"
+ ],
+ "name": "Tygr",
+ "symbol": "TYGR",
+ "marketCap": "283285.985380009240663877",
+ "price": "0.00031503893798487123",
+ "priceChange24hPercent": "0",
+ "volume24h": "0",
+ "communityRecognized": false,
+ "key": "evm--4663:0x69984ad3322300039f2855f81c44dbc532efe744",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xa0e67be79118704a35e7d4b20c3ec4df36ef6e10",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xa0e67be79118704a35e7d4b20c3ec4df36ef6e10-1788091298404.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xa0e67be79118704a35e7d4b20c3ec4df36ef6e10-1788091298404.png"
+ ],
+ "name": "Pons Index",
+ "symbol": "PONSFOLIO",
+ "marketCap": "34018.737934824480556041",
+ "price": "0.00003401873793482448",
+ "priceChange24hPercent": "0",
+ "volume24h": "0",
+ "communityRecognized": false,
+ "key": "evm--4663:0xa0e67be79118704a35e7d4b20c3ec4df36ef6e10",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x0e8720b8cd84f95b4b6696adbfa8063c4b8b94f2",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x0e8720b8cd84f95b4b6696adbfa8063c4b8b94f2-1784804605586.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x0e8720b8cd84f95b4b6696adbfa8063c4b8b94f2-1784804605586.png"
+ ],
+ "name": "Buy Button",
+ "symbol": "BUY",
+ "marketCap": "748201.591140112186514847",
+ "price": "0.00082408396918163004",
+ "priceChange24hPercent": "0.14",
+ "volume24h": "437.59528081778749",
+ "communityRecognized": false,
+ "key": "evm--4663:0x0e8720b8cd84f95b4b6696adbfa8063c4b8b94f2",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x3f9f0b6073ee8c495aed96869af31850fed40feb",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x3f9f0b6073ee8c495aed96869af31850fed40feb-1785412064587.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x3f9f0b6073ee8c495aed96869af31850fed40feb-1785412064587.png"
+ ],
+ "name": "Dice Protocol",
+ "symbol": "DICE",
+ "marketCap": "246206.974893546367185266",
+ "price": "0.00025278197889207848",
+ "priceChange24hPercent": "-0.09",
+ "volume24h": "9.602989556087077",
+ "communityRecognized": false,
+ "key": "evm--4663:0x3f9f0b6073ee8c495aed96869af31850fed40feb",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x298348d5b2e45c774e3ee4f1a0924071dfbdc8c7",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x298348d5b2e45c774e3ee4f1a0924071dfbdc8c7-1786190550357.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x298348d5b2e45c774e3ee4f1a0924071dfbdc8c7-1786190550357.png"
+ ],
+ "name": "swappy",
+ "symbol": "swappy",
+ "marketCap": "449114.126612554601310211",
+ "price": "0.0004491141266125546",
+ "priceChange24hPercent": "-0.36",
+ "volume24h": "1.1958745436252232",
+ "communityRecognized": false,
+ "key": "evm--4663:0x298348d5b2e45c774e3ee4f1a0924071dfbdc8c7",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xace55fe98bab14366dd49ab5aa5df76aa11a3c6f",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xace55fe98bab14366dd49ab5aa5df76aa11a3c6f-1785845024248.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xace55fe98bab14366dd49ab5aa5df76aa11a3c6f-1785845024248.png"
+ ],
+ "name": "Wojak",
+ "symbol": "WOJAK",
+ "marketCap": "1692216.549970488123565045",
+ "price": "0.00185787421689451655",
+ "priceChange24hPercent": "0",
+ "volume24h": "0",
+ "communityRecognized": false,
+ "key": "evm--4663:0xace55fe98bab14366dd49ab5aa5df76aa11a3c6f",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xe4b8723d202fdd0298b1d7496a86656b2986c532",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xe4b8723d202fdd0298b1d7496a86656b2986c532-1786622839074.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xe4b8723d202fdd0298b1d7496a86656b2986c532-1786622839074.png"
+ ],
+ "name": "StockRip",
+ "symbol": "RIP",
+ "marketCap": "938245.272755205458732501",
+ "price": "0.0009382885426150306",
+ "priceChange24hPercent": "0",
+ "volume24h": "0",
+ "communityRecognized": false,
+ "key": "evm--4663:0xe4b8723d202fdd0298b1d7496a86656b2986c532",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xfe242d1da8fd04f6a1f80b6d3d807b02e062ad4e",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xfe242d1da8fd04f6a1f80b6d3d807b02e062ad4e-1787832041620.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xfe242d1da8fd04f6a1f80b6d3d807b02e062ad4e-1787832041620.png"
+ ],
+ "name": "Obscura",
+ "symbol": "OBS",
+ "marketCap": "500688.818984870549311758",
+ "price": "0.00050403564936191361",
+ "priceChange24hPercent": "0",
+ "volume24h": "0",
+ "communityRecognized": false,
+ "key": "evm--4663:0xfe242d1da8fd04f6a1f80b6d3d807b02e062ad4e",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x14641000a501bdc736116abf84e6fcea9b90a713",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x14641000a501bdc736116abf84e6fcea9b90a713-1788178423240.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x14641000a501bdc736116abf84e6fcea9b90a713-1788178423240.png"
+ ],
+ "name": "MESH Gateway",
+ "symbol": "MESH",
+ "marketCap": "1208210.549215450362706768",
+ "price": "0.00120821054921545036",
+ "priceChange24hPercent": "2.56",
+ "volume24h": "1270.133549862326245",
+ "communityRecognized": false,
+ "key": "evm--4663:0x14641000a501bdc736116abf84e6fcea9b90a713",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x7ba36be14dd06ba492f08be6c1b2979c1d0b652c",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x7ba36be14dd06ba492f08be6c1b2979c1d0b652c-1788178016235.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x7ba36be14dd06ba492f08be6c1b2979c1d0b652c-1788178016235.png"
+ ],
+ "name": "PerpsHood",
+ "symbol": "PERPSHOOD",
+ "marketCap": "3288366.118814719718758381",
+ "price": "0.00333761406584314507",
+ "priceChange24hPercent": "-0.44",
+ "volume24h": "8731.082947132961256",
+ "communityRecognized": false,
+ "key": "evm--4663:0x7ba36be14dd06ba492f08be6c1b2979c1d0b652c",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x77061b45c5e4d440bd681b5f72bd0f4231a6fc04",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x77061b45c5e4d440bd681b5f72bd0f4231a6fc04-1788004867211.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x77061b45c5e4d440bd681b5f72bd0f4231a6fc04-1788004867211.png"
+ ],
+ "name": "RobinVault",
+ "symbol": "ROBINVAULT",
+ "marketCap": "397586.87667975865000995",
+ "price": "0.00073326281522966963",
+ "priceChange24hPercent": "-0.75",
+ "volume24h": "1597.1937980944245712",
+ "communityRecognized": false,
+ "key": "evm--4663:0x77061b45c5e4d440bd681b5f72bd0f4231a6fc04",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x5173b8ea6923c2d40267890d45c46a3480954773",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x5173b8ea6923c2d40267890d45c46a3480954773-1786709002621.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x5173b8ea6923c2d40267890d45c46a3480954773-1786709002621.png"
+ ],
+ "name": "World is Flat",
+ "symbol": "WIF",
+ "marketCap": "992458.903324373126169822",
+ "price": "0.00099245890332437313",
+ "priceChange24hPercent": "-0.17",
+ "volume24h": "296.82102326154941",
+ "communityRecognized": false,
+ "key": "evm--4663:0x5173b8ea6923c2d40267890d45c46a3480954773",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x5aed379a72bd2533371d153135c47d5eb61babc8",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x5aed379a72bd2533371d153135c47d5eb61babc8-1787054408027.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x5aed379a72bd2533371d153135c47d5eb61babc8-1787054408027.png"
+ ],
+ "name": "Strike",
+ "symbol": "STRIKE",
+ "marketCap": "168166.235763636933834894",
+ "price": "0.00168222444475767271",
+ "priceChange24hPercent": "0",
+ "volume24h": "0",
+ "communityRecognized": false,
+ "key": "evm--4663:0x5aed379a72bd2533371d153135c47d5eb61babc8",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xb48d34dd8b53324cb8525461c8e548522db885ec",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xb48d34dd8b53324cb8525461c8e548522db885ec-1787918407513.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xb48d34dd8b53324cb8525461c8e548522db885ec-1787918407513.png"
+ ],
+ "name": "Sluice",
+ "symbol": "SLUICE",
+ "marketCap": "132222.15206775523555463",
+ "price": "0.00013222215206775524",
+ "priceChange24hPercent": "0",
+ "volume24h": "0",
+ "communityRecognized": false,
+ "key": "evm--4663:0xb48d34dd8b53324cb8525461c8e548522db885ec",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xa80eb66b3e0cf66ccb46f8b8c9e7ff5803eeb820",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xa80eb66b3e0cf66ccb46f8b8c9e7ff5803eeb820-1784949348295.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xa80eb66b3e0cf66ccb46f8b8c9e7ff5803eeb820-1784949348295.png"
+ ],
+ "name": "Wen Lambo",
+ "symbol": "WEN",
+ "marketCap": "1312267.572898479705983932",
+ "price": "0.00131226757289847971",
+ "priceChange24hPercent": "-1.09",
+ "volume24h": "550.006330065831911",
+ "communityRecognized": false,
+ "key": "evm--4663:0xa80eb66b3e0cf66ccb46f8b8c9e7ff5803eeb820",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ }
+ ],
+ "robinhood_meme|evm--4663|1h|all": [
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x39dbed3a2bd333467115de45665cc57f813c4571",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x39dbed3a2bd333467115de45665cc57f813c4571-1785145437955.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x39dbed3a2bd333467115de45665cc57f813c4571-1785145437955.png"
+ ],
+ "name": "Pons",
+ "symbol": "PONS",
+ "marketCap": "502022018.508028785669424106",
+ "price": "0.71717848311520679734",
+ "priceChange24hPercent": "3.39",
+ "volume24h": "4675508.39160508800166635342",
+ "communityRecognized": true,
+ "key": "evm--4663:0x39dbed3a2bd333467115de45665cc57f813c4571",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x020bfc650a365f8bb26819deaabf3e21291018b4",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x020bfc650a365f8bb26819deaabf3e21291018b4-1784778353843.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x020bfc650a365f8bb26819deaabf3e21291018b4-1784778353843.png"
+ ],
+ "name": "Cash Cat",
+ "symbol": "CASHCAT",
+ "marketCap": "188581610.80185770225929897",
+ "price": "0.19084952071561432263",
+ "priceChange24hPercent": "-0.36",
+ "volume24h": "546155.30016517225572183824",
+ "communityRecognized": true,
+ "key": "evm--4663:0x020bfc650a365f8bb26819deaabf3e21291018b4",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xe170dc96ca10103e0d4c5d9293c5a3a72ee365a5",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xe170dc96ca10103e0d4c5d9293c5a3a72ee365a5-1785059757195.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xe170dc96ca10103e0d4c5d9293c5a3a72ee365a5-1785059757195.png"
+ ],
+ "name": "Little John",
+ "symbol": "JOHN",
+ "marketCap": "8802.53080883729502627",
+ "price": "0.0000088025308088373",
+ "priceChange24hPercent": "0",
+ "volume24h": "0",
+ "communityRecognized": false,
+ "key": "evm--4663:0xe170dc96ca10103e0d4c5d9293c5a3a72ee365a5",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xe934e36a439c94017b64a3fece66af12099abf50",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xe934e36a439c94017b64a3fece66af12099abf50-1785290631562.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xe934e36a439c94017b64a3fece66af12099abf50-1785290631562.png"
+ ],
+ "name": "StonkBroker",
+ "symbol": "STONKBROKER",
+ "marketCap": "20652805.024120563132606053",
+ "price": "0.01688272635986417616",
+ "priceChange24hPercent": "5.15",
+ "volume24h": "143333.32193742978584942069",
+ "communityRecognized": true,
+ "key": "evm--4663:0xe934e36a439c94017b64a3fece66af12099abf50",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x348cc963411fb82cd6e0b64345714fec94f242cb",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x348cc963411fb82cd6e0b64345714fec94f242cb-1787918436309.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x348cc963411fb82cd6e0b64345714fec94f242cb-1787918436309.png"
+ ],
+ "name": "Goose Token",
+ "symbol": "GOOSE",
+ "marketCap": "81393460.832387531242448284",
+ "price": "0.08139346083238753124",
+ "priceChange24hPercent": "0",
+ "volume24h": "0",
+ "communityRecognized": false,
+ "key": "evm--4663:0x348cc963411fb82cd6e0b64345714fec94f242cb",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x5cb6f181081301b44905f3ae15419112ecabd8a6",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x5cb6f181081301b44905f3ae15419112ecabd8a6-1785411923960.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x5cb6f181081301b44905f3ae15419112ecabd8a6-1785411923960.png"
+ ],
+ "name": "pipedog",
+ "symbol": "PIPEDOG",
+ "marketCap": "35769492.909630204770672297",
+ "price": "0.00289732894922953629",
+ "priceChange24hPercent": "-0.23",
+ "volume24h": "9511.162469340902851565",
+ "communityRecognized": true,
+ "key": "evm--4663:0x5cb6f181081301b44905f3ae15419112ecabd8a6",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x57c0e45cb534413d1c20a4240955d6bb250bb4f1",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x57c0e45cb534413d1c20a4240955d6bb250bb4f1-1785005199051.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x57c0e45cb534413d1c20a4240955d6bb250bb4f1-1785005199051.png"
+ ],
+ "name": "up",
+ "symbol": "UP",
+ "marketCap": "10939824.275003627272484814",
+ "price": "0.54014115573703348966",
+ "priceChange24hPercent": "0.69",
+ "volume24h": "24795.930795449700796612",
+ "communityRecognized": true,
+ "key": "evm--4663:0x57c0e45cb534413d1c20a4240955d6bb250bb4f1",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x0e0d2c89a5a019fe1cf762e5e33187631dacc21b",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x0e0d2c89a5a019fe1cf762e5e33187631dacc21b-1787400114210.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x0e0d2c89a5a019fe1cf762e5e33187631dacc21b-1787400114210.png"
+ ],
+ "name": "Chump Coin",
+ "symbol": "CHUMP",
+ "marketCap": "35977837.123296699878179831",
+ "price": "0.03597783749651078179",
+ "priceChange24hPercent": "1.12",
+ "volume24h": "126861.63631268617329724",
+ "communityRecognized": false,
+ "key": "evm--4663:0x0e0d2c89a5a019fe1cf762e5e33187631dacc21b",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x56910d4409f3a0c78c64dd8d0545ff0705389870",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x56910d4409f3a0c78c64dd8d0545ff0705389870-1784842044117.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x56910d4409f3a0c78c64dd8d0545ff0705389870-1784842044117.png"
+ ],
+ "name": "The Index",
+ "symbol": "Index",
+ "marketCap": "39076127.721770539963962651",
+ "price": "0.03985186707954164859",
+ "priceChange24hPercent": "1.62",
+ "volume24h": "56270.72923242765604479393",
+ "communityRecognized": true,
+ "key": "evm--4663:0x56910d4409f3a0c78c64dd8d0545ff0705389870",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x18e674231a58c239dc7daedcffe15ec3a24cff5c",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x18e674231a58c239dc7daedcffe15ec3a24cff5c-1786190410593.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x18e674231a58c239dc7daedcffe15ec3a24cff5c-1786190410593.png"
+ ],
+ "name": "Hookr.fun",
+ "symbol": "HOOKR",
+ "marketCap": "16618445.208237637803108274",
+ "price": "0.0166791731104542394",
+ "priceChange24hPercent": "-12.66",
+ "volume24h": "85284.39622974023439848",
+ "communityRecognized": true,
+ "key": "evm--4663:0x18e674231a58c239dc7daedcffe15ec3a24cff5c",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x7fe995a80075df3dc8ae11a9b82c7fe4202cd87f",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x7fe995a80075df3dc8ae11a9b82c7fe4202cd87f-1785325956569.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x7fe995a80075df3dc8ae11a9b82c7fe4202cd87f-1785325956569.png"
+ ],
+ "name": "Thinking Cat",
+ "symbol": "HMM",
+ "marketCap": "13039576.030590609490030763",
+ "price": "0.01320187144939991148",
+ "priceChange24hPercent": "-1.01",
+ "volume24h": "39010.682240971249568965",
+ "communityRecognized": true,
+ "key": "evm--4663:0x7fe995a80075df3dc8ae11a9b82c7fe4202cd87f",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x45242320dbb855eea8fd36804c6487e10e97fcf9",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x45242320dbb855eea8fd36804c6487e10e97fcf9-1784778612504.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x45242320dbb855eea8fd36804c6487e10e97fcf9-1784778612504.png"
+ ],
+ "name": "TENDIES",
+ "symbol": "TENDIES",
+ "marketCap": "15418336.651928049187952375",
+ "price": "0.0161197596815997701",
+ "priceChange24hPercent": "-4.11",
+ "volume24h": "49970.6546972891152591",
+ "communityRecognized": false,
+ "key": "evm--4663:0x45242320dbb855eea8fd36804c6487e10e97fcf9",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xca9c78dd337a67f6e0077f65f5e9218719d30edf",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xca9c78dd337a67f6e0077f65f5e9218719d30edf-1785280831816.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xca9c78dd337a67f6e0077f65f5e9218719d30edf-1785280831816.png"
+ ],
+ "name": "NetNet",
+ "symbol": "NET",
+ "marketCap": "3920472.764198924127605602",
+ "price": "668.59150927027122099446",
+ "priceChange24hPercent": "-0.63",
+ "volume24h": "181080.6656155861419609",
+ "communityRecognized": false,
+ "key": "evm--4663:0xca9c78dd337a67f6e0077f65f5e9218719d30edf",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xc72f232a6869e6cf34dc06129affd07f8a2a246a",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xc72f232a6869e6cf34dc06129affd07f8a2a246a-1786104032870.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xc72f232a6869e6cf34dc06129affd07f8a2a246a-1786104032870.png"
+ ],
+ "name": "Mancer",
+ "symbol": "MANCER",
+ "marketCap": "5440876.002220110409619299",
+ "price": "0.00217635040088804416",
+ "priceChange24hPercent": "-1.18",
+ "volume24h": "20139.36081277153257601",
+ "communityRecognized": false,
+ "key": "evm--4663:0xc72f232a6869e6cf34dc06129affd07f8a2a246a",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x6245e67affa44a23077f0ea7f981a8dc743a0c47",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x6245e67affa44a23077f0ea7f981a8dc743a0c47-1785931207872.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x6245e67affa44a23077f0ea7f981a8dc743a0c47-1785931207872.png"
+ ],
+ "name": "frong",
+ "symbol": "FRONG",
+ "marketCap": "5491401.474828610941251233",
+ "price": "0.00549140147482861094",
+ "priceChange24hPercent": "-2.7",
+ "volume24h": "64782.053303661839993",
+ "communityRecognized": false,
+ "key": "evm--4663:0x6245e67affa44a23077f0ea7f981a8dc743a0c47",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xee5576fa1bcaa380e591d01245f406f3f384eb01",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xee5576fa1bcaa380e591d01245f406f3f384eb01-1787832045009.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xee5576fa1bcaa380e591d01245f406f3f384eb01-1787832045009.png"
+ ],
+ "name": "Down to Finance",
+ "symbol": "DTF",
+ "marketCap": "8682703.707015428616989098",
+ "price": "0.00868270374727847651",
+ "priceChange24hPercent": "4.31",
+ "volume24h": "54323.97077477706916644",
+ "communityRecognized": false,
+ "key": "evm--4663:0xee5576fa1bcaa380e591d01245f406f3f384eb01",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x62c71cd34a52c30d894419cbcc55db2afa8032ea",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x62c71cd34a52c30d894419cbcc55db2afa8032ea-1785197280438.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x62c71cd34a52c30d894419cbcc55db2afa8032ea-1785197280438.png"
+ ],
+ "name": "YOLO",
+ "symbol": "YOLO",
+ "marketCap": "6110793.379760146105089284",
+ "price": "0.0062997870322002435",
+ "priceChange24hPercent": "1.7",
+ "volume24h": "24977.54083074402296342",
+ "communityRecognized": false,
+ "key": "evm--4663:0x62c71cd34a52c30d894419cbcc55db2afa8032ea",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x451b42a15100c340ca12f7c66de06fac5ea2d751",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x451b42a15100c340ca12f7c66de06fac5ea2d751-1787832041620.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x451b42a15100c340ca12f7c66de06fac5ea2d751-1787832041620.png"
+ ],
+ "name": "Longbow",
+ "symbol": "BOW",
+ "marketCap": "5787414.729870295757998562",
+ "price": "0.00578741472987029576",
+ "priceChange24hPercent": "4.71",
+ "volume24h": "114289.631078897797369253",
+ "communityRecognized": false,
+ "key": "evm--4663:0x451b42a15100c340ca12f7c66de06fac5ea2d751",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xf2915d1e3c1b0c769d0c756ec43f1c1f6c99cd03",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xf2915d1e3c1b0c769d0c756ec43f1c1f6c99cd03-1784861135802.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xf2915d1e3c1b0c769d0c756ec43f1c1f6c99cd03-1784861135802.png"
+ ],
+ "name": "Arrow",
+ "symbol": "ARROW",
+ "marketCap": "3472922.672130186445530038",
+ "price": "0.38588029898682948721",
+ "priceChange24hPercent": "0",
+ "volume24h": "1652.25912226465957741",
+ "communityRecognized": false,
+ "key": "evm--4663:0xf2915d1e3c1b0c769d0c756ec43f1c1f6c99cd03",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xb9972ca7188e511174947e3936a5315ac7073277",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xb9972ca7188e511174947e3936a5315ac7073277-1787400211008.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xb9972ca7188e511174947e3936a5315ac7073277-1787400211008.png"
+ ],
+ "name": "Prologue",
+ "symbol": "PROLOGUE",
+ "marketCap": "10867196.245258369257184329",
+ "price": "0.01086719624525836926",
+ "priceChange24hPercent": "2.09",
+ "volume24h": "53532.8404944948708297",
+ "communityRecognized": true,
+ "key": "evm--4663:0xb9972ca7188e511174947e3936a5315ac7073277",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xd7321801caae694090694ff55a9323139f043b88",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xd7321801caae694090694ff55a9323139f043b88-1784779777690.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xd7321801caae694090694ff55a9323139f043b88-1784779777690.png"
+ ],
+ "name": "The Juggernaut",
+ "symbol": "JUGGERNAUT",
+ "marketCap": "3019903.208555332697636294",
+ "price": "0.00322096834857655848",
+ "priceChange24hPercent": "-1.78",
+ "volume24h": "14986.87118516409804131",
+ "communityRecognized": false,
+ "key": "evm--4663:0xd7321801caae694090694ff55a9323139f043b88",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x8ff92566f2e81bdd68edfaa8cde73942a723796b",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x8ff92566f2e81bdd68edfaa8cde73942a723796b-1784854679354.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x8ff92566f2e81bdd68edfaa8cde73942a723796b-1784854679354.png"
+ ],
+ "name": "ProjectVex",
+ "symbol": "VEX",
+ "marketCap": "2665179.099566858123776638",
+ "price": "0.00266517909956685812",
+ "priceChange24hPercent": "-1.82",
+ "volume24h": "5891.618003252671463",
+ "communityRecognized": false,
+ "key": "evm--4663:0x8ff92566f2e81bdd68edfaa8cde73942a723796b",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xcebc0cfbc5dd0893a9e3b9d0f75b211ddf5934a0",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xcebc0cfbc5dd0893a9e3b9d0f75b211ddf5934a0-1788177871007.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xcebc0cfbc5dd0893a9e3b9d0f75b211ddf5934a0-1788177871007.png"
+ ],
+ "name": "clan.tech",
+ "symbol": "CLAN",
+ "marketCap": "1346087.777112335683918246",
+ "price": "0.00134608777721111461",
+ "priceChange24hPercent": "-2.74",
+ "volume24h": "3564.575192429492769967",
+ "communityRecognized": false,
+ "key": "evm--4663:0xcebc0cfbc5dd0893a9e3b9d0f75b211ddf5934a0",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x232cdfc415d10b673845d83dc02ba2eabe7e30d1",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x232cdfc415d10b673845d83dc02ba2eabe7e30d1-1785412803768.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x232cdfc415d10b673845d83dc02ba2eabe7e30d1-1785412803768.png"
+ ],
+ "name": "What If",
+ "symbol": "IF",
+ "marketCap": "10586906.988923495786384388",
+ "price": "0.01168673691363227001",
+ "priceChange24hPercent": "-1.09",
+ "volume24h": "20850.345908729903227",
+ "communityRecognized": false,
+ "key": "evm--4663:0x232cdfc415d10b673845d83dc02ba2eabe7e30d1",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x76761d4aee1e7d6b2b8dedbd13925d6c220b0725",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x76761d4aee1e7d6b2b8dedbd13925d6c220b0725-1786276810800.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x76761d4aee1e7d6b2b8dedbd13925d6c220b0725-1786276810800.png"
+ ],
+ "name": "MowCat",
+ "symbol": "MOW",
+ "marketCap": "4608946.621219782201180129",
+ "price": "0.0046089466212197822",
+ "priceChange24hPercent": "0",
+ "volume24h": "0",
+ "communityRecognized": false,
+ "key": "evm--4663:0x76761d4aee1e7d6b2b8dedbd13925d6c220b0725",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x77b0aa38451ccdc1b42587e2f80b9879a7f82356",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x77b0aa38451ccdc1b42587e2f80b9879a7f82356-1786536021883.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x77b0aa38451ccdc1b42587e2f80b9879a7f82356-1786536021883.png"
+ ],
+ "name": "DogBull",
+ "symbol": "DOGO",
+ "marketCap": "21768233.653662840214264244",
+ "price": "0.02155270658778499031",
+ "priceChange24hPercent": "-0.04",
+ "volume24h": "584.39610784999559",
+ "communityRecognized": false,
+ "key": "evm--4663:0x77b0aa38451ccdc1b42587e2f80b9879a7f82356",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x385b36ff682ab4c76e7c37a66b96aabc466471d5",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x385b36ff682ab4c76e7c37a66b96aabc466471d5-1786017815496.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x385b36ff682ab4c76e7c37a66b96aabc466471d5-1786017815496.png"
+ ],
+ "name": "pools.trade",
+ "symbol": "POOLS",
+ "marketCap": "1556630.67532955837106892",
+ "price": "0.0015566308898872704",
+ "priceChange24hPercent": "-3.09",
+ "volume24h": "9906.1905984351751819",
+ "communityRecognized": false,
+ "key": "evm--4663:0x385b36ff682ab4c76e7c37a66b96aabc466471d5",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x5f62c57e5c537887117eef828b7e3ad41c009feb",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x5f62c57e5c537887117eef828b7e3ad41c009feb-1786018016957.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x5f62c57e5c537887117eef828b7e3ad41c009feb-1786018016957.png"
+ ],
+ "name": "Good In The Hood",
+ "symbol": "GOOD",
+ "marketCap": "3650847.769165494974298471",
+ "price": "0.00464873807570103688",
+ "priceChange24hPercent": "-0.38",
+ "volume24h": "5254.1716644586610265",
+ "communityRecognized": false,
+ "key": "evm--4663:0x5f62c57e5c537887117eef828b7e3ad41c009feb",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x20024e485c0b22b42855589700721b28320a7777",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x20024e485c0b22b42855589700721b28320a7777-1786363300721.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x20024e485c0b22b42855589700721b28320a7777-1786363300721.png"
+ ],
+ "name": "Prism Assets",
+ "symbol": "PRISM",
+ "marketCap": "2315389.100589988802579267",
+ "price": "0.0023153891005899888",
+ "priceChange24hPercent": "-3.67",
+ "volume24h": "16417.9054242849829014",
+ "communityRecognized": false,
+ "key": "evm--4663:0x20024e485c0b22b42855589700721b28320a7777",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x4a6eec8a30b49d289b9fc865fd374b4d61eab8fb",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x4a6eec8a30b49d289b9fc865fd374b4d61eab8fb-1785758432269.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x4a6eec8a30b49d289b9fc865fd374b4d61eab8fb-1785758432269.png"
+ ],
+ "name": "Liluni",
+ "symbol": "Liluni",
+ "marketCap": "769327.821597585049202932",
+ "price": "0.00076932782159758505",
+ "priceChange24hPercent": "-7.81",
+ "volume24h": "4063.62819132475426436",
+ "communityRecognized": false,
+ "key": "evm--4663:0x4a6eec8a30b49d289b9fc865fd374b4d61eab8fb",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xb8fa8010833463aac5595b55b9045479239eff79",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xb8fa8010833463aac5595b55b9045479239eff79-1786881632532.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xb8fa8010833463aac5595b55b9045479239eff79-1786881632532.png"
+ ],
+ "name": "what the hook?",
+ "symbol": "WTH",
+ "marketCap": "4433865.674641148580658499",
+ "price": "21.11364606971975514599",
+ "priceChange24hPercent": "-0.45",
+ "volume24h": "36991.550436991338055",
+ "communityRecognized": false,
+ "key": "evm--4663:0xb8fa8010833463aac5595b55b9045479239eff79",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xf8bc08092c06db6148114dcf82af881f1085f92b",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xf8bc08092c06db6148114dcf82af881f1085f92b-1785137390595.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xf8bc08092c06db6148114dcf82af881f1085f92b-1785137390595.png"
+ ],
+ "name": "Sherwood Protocol",
+ "symbol": "WOOD",
+ "marketCap": "5294868.778292219416037217",
+ "price": "0.00529486877829221942",
+ "priceChange24hPercent": "-0.75",
+ "volume24h": "6528.464623530007067035",
+ "communityRecognized": false,
+ "key": "evm--4663:0xf8bc08092c06db6148114dcf82af881f1085f92b",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x51fb76be80ab6daaa345d818f4e06441816b4fea",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x51fb76be80ab6daaa345d818f4e06441816b4fea-1786104017624.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x51fb76be80ab6daaa345d818f4e06441816b4fea-1786104017624.png"
+ ],
+ "name": "NASDANQ",
+ "symbol": "NASDANQ",
+ "marketCap": "2336139.896707354816830353",
+ "price": "0.00233613989670735482",
+ "priceChange24hPercent": "-15.68",
+ "volume24h": "15526.489488973708213928",
+ "communityRecognized": false,
+ "key": "evm--4663:0x51fb76be80ab6daaa345d818f4e06441816b4fea",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x8ecea3d0e648db646d824aa51eedeb16ac3d6878",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x8ecea3d0e648db646d824aa51eedeb16ac3d6878-1785284432065.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x8ecea3d0e648db646d824aa51eedeb16ac3d6878-1785284432065.png"
+ ],
+ "name": "wire bot",
+ "symbol": "wire",
+ "marketCap": "539032.655786243127634391",
+ "price": "0.00054041288588799596",
+ "priceChange24hPercent": "2.96",
+ "volume24h": "8153.42212987799338961",
+ "communityRecognized": false,
+ "key": "evm--4663:0x8ecea3d0e648db646d824aa51eedeb16ac3d6878",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xcb5566e73bee5390c75df834d4727dcecc65fc87",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xcb5566e73bee5390c75df834d4727dcecc65fc87-1788354026635.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xcb5566e73bee5390c75df834d4727dcecc65fc87-1788354026635.png"
+ ],
+ "name": "Mast Bond",
+ "symbol": "MAST",
+ "marketCap": "652914.665836647500035643",
+ "price": "0.0006529146658366475",
+ "priceChange24hPercent": "-17.25",
+ "volume24h": "12343.009863653653384",
+ "communityRecognized": false,
+ "key": "evm--4663:0xcb5566e73bee5390c75df834d4727dcecc65fc87",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xf44702b17d9abd53815f703e772f35e9c71a53af",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xf44702b17d9abd53815f703e772f35e9c71a53af-1784822115804.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xf44702b17d9abd53815f703e772f35e9c71a53af-1784822115804.png"
+ ],
+ "name": "RAXOL",
+ "symbol": "RAXOL",
+ "marketCap": "1712329.03977912128931203",
+ "price": "0.00171232903977912129",
+ "priceChange24hPercent": "0.39",
+ "volume24h": "151.163027516600206",
+ "communityRecognized": false,
+ "key": "evm--4663:0xf44702b17d9abd53815f703e772f35e9c71a53af",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x8e62f281f282686fca6dcb39288069a93fc23f1c",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x8e62f281f282686fca6dcb39288069a93fc23f1c-1784830569718.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x8e62f281f282686fca6dcb39288069a93fc23f1c-1784830569718.png"
+ ],
+ "name": "Hoodrat",
+ "symbol": "HOODRAT",
+ "marketCap": "1729390.247190236716847253",
+ "price": "0.00172939031667982091",
+ "priceChange24hPercent": "-0.67",
+ "volume24h": "1810.205639073544116",
+ "communityRecognized": true,
+ "key": "evm--4663:0x8e62f281f282686fca6dcb39288069a93fc23f1c",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x77581054581b9c525e7dd7a0155de43867532d03",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x77581054581b9c525e7dd7a0155de43867532d03-1784939141560.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x77581054581b9c525e7dd7a0155de43867532d03-1784939141560.png"
+ ],
+ "name": "WISHBONE",
+ "symbol": "WISHBONE",
+ "marketCap": "890566.402734889733341878",
+ "price": "0.00096332665926777235",
+ "priceChange24hPercent": "2.04",
+ "volume24h": "837.61735086325708537",
+ "communityRecognized": false,
+ "key": "evm--4663:0x77581054581b9c525e7dd7a0155de43867532d03",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x43eea882b845a8493152ebc55cf30ae9281b02d5",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x43eea882b845a8493152ebc55cf30ae9281b02d5-1785292897426.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x43eea882b845a8493152ebc55cf30ae9281b02d5-1785292897426.png"
+ ],
+ "name": "FIRE",
+ "symbol": "FIRE",
+ "marketCap": "1462625.380905727143813291",
+ "price": "0.0014809585098065579",
+ "priceChange24hPercent": "-12.08",
+ "volume24h": "7701.9467964781793196",
+ "communityRecognized": false,
+ "key": "evm--4663:0x43eea882b845a8493152ebc55cf30ae9281b02d5",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xac77646bcff9d52e99800534192e0290933f4094",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xac77646bcff9d52e99800534192e0290933f4094-1787572842778.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xac77646bcff9d52e99800534192e0290933f4094-1787572842778.png"
+ ],
+ "name": "Martians",
+ "symbol": "MARTIANS",
+ "marketCap": "421107.798117296771237422",
+ "price": "0.00042110779812399404",
+ "priceChange24hPercent": "-0.65",
+ "volume24h": "640.7616285976057776",
+ "communityRecognized": false,
+ "key": "evm--4663:0xac77646bcff9d52e99800534192e0290933f4094",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xf0568863195770965a6d8abb0aa87f4314b80320",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xf0568863195770965a6d8abb0aa87f4314b80320-1785239850960.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xf0568863195770965a6d8abb0aa87f4314b80320-1785239850960.png"
+ ],
+ "name": "SLIPPY",
+ "symbol": "SLIPPY",
+ "marketCap": "2285143.7736062878747713",
+ "price": "0.0022851443913658089",
+ "priceChange24hPercent": "2.93",
+ "volume24h": "3277.33644277337205894456",
+ "communityRecognized": false,
+ "key": "evm--4663:0xf0568863195770965a6d8abb0aa87f4314b80320",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x9ca1cc0c90d97b4f36c5e2232d4fbd705a73c65d",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x9ca1cc0c90d97b4f36c5e2232d4fbd705a73c65d-1786363300721.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x9ca1cc0c90d97b4f36c5e2232d4fbd705a73c65d-1786363300721.png"
+ ],
+ "name": "TA FUND",
+ "symbol": "TA",
+ "marketCap": "2169025.59885951907590852",
+ "price": "0.00216902559885951908",
+ "priceChange24hPercent": "-2.89",
+ "volume24h": "12255.548676215078163",
+ "communityRecognized": false,
+ "key": "evm--4663:0x9ca1cc0c90d97b4f36c5e2232d4fbd705a73c65d",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x7168563b0e70124f0c7c0cf2f13a8d1861baf4a5",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x7168563b0e70124f0c7c0cf2f13a8d1861baf4a5-1785276114071.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x7168563b0e70124f0c7c0cf2f13a8d1861baf4a5-1785276114071.png"
+ ],
+ "name": "Backed",
+ "symbol": "BACKED",
+ "marketCap": "683975.046016032677877222",
+ "price": "0.00072634119132098617",
+ "priceChange24hPercent": "1.52",
+ "volume24h": "4602.320740294868786",
+ "communityRecognized": false,
+ "key": "evm--4663:0x7168563b0e70124f0c7c0cf2f13a8d1861baf4a5",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xe3fa12da7fa026b21817f16622e8ae48fa785166",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xe3fa12da7fa026b21817f16622e8ae48fa785166-1786536006382.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xe3fa12da7fa026b21817f16622e8ae48fa785166-1786536006382.png"
+ ],
+ "name": "Yardkeeper",
+ "symbol": "YARD",
+ "marketCap": "1661101.247537698075666796",
+ "price": "0.00237034455488214896",
+ "priceChange24hPercent": "1.8",
+ "volume24h": "3511.619755600601791",
+ "communityRecognized": false,
+ "key": "evm--4663:0xe3fa12da7fa026b21817f16622e8ae48fa785166",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x727701f88f09fed71eb217bcea88b3f314cf7079",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x727701f88f09fed71eb217bcea88b3f314cf7079-1785229474064.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x727701f88f09fed71eb217bcea88b3f314cf7079-1785229474064.png"
+ ],
+ "name": "GRID by Virtuals",
+ "symbol": "GRID",
+ "marketCap": "1249980.578691939741013368",
+ "price": "0.00124998057869193974",
+ "priceChange24hPercent": "0.31",
+ "volume24h": "362.609826348295527",
+ "communityRecognized": false,
+ "key": "evm--4663:0x727701f88f09fed71eb217bcea88b3f314cf7079",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x96765066f6a040a21eb027167d2315b707c82633",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x96765066f6a040a21eb027167d2315b707c82633-1784938636403.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x96765066f6a040a21eb027167d2315b707c82633-1784938636403.png"
+ ],
+ "name": "Ravenhood",
+ "symbol": "RVH",
+ "marketCap": "390628.355788254703232466",
+ "price": "0.00496337736804456155",
+ "priceChange24hPercent": "0.13",
+ "volume24h": "1108.44188934200301877",
+ "communityRecognized": false,
+ "key": "evm--4663:0x96765066f6a040a21eb027167d2315b707c82633",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xbd957cc9f1e94617792f37bc40f2f299e78acf3e",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xbd957cc9f1e94617792f37bc40f2f299e78acf3e-1785845024248.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xbd957cc9f1e94617792f37bc40f2f299e78acf3e-1785845024248.png"
+ ],
+ "name": "Crude Cat",
+ "symbol": "CRUDECAT",
+ "marketCap": "2307997.035220816076014931",
+ "price": "0.00597695795708211835",
+ "priceChange24hPercent": "-16.1",
+ "volume24h": "11007.9283082877411364",
+ "communityRecognized": false,
+ "key": "evm--4663:0xbd957cc9f1e94617792f37bc40f2f299e78acf3e",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xfb1bcb6817f7b8fa86896d3253b16aeb7bd6a5a8",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xfb1bcb6817f7b8fa86896d3253b16aeb7bd6a5a8-1785008871536.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xfb1bcb6817f7b8fa86896d3253b16aeb7bd6a5a8-1785008871536.png"
+ ],
+ "name": "one life, its worth an attempt",
+ "symbol": "worth",
+ "marketCap": "943016.144584851830199867",
+ "price": "0.00112942228622299282",
+ "priceChange24hPercent": "11.61",
+ "volume24h": "3712.61638796117777093",
+ "communityRecognized": false,
+ "key": "evm--4663:0xfb1bcb6817f7b8fa86896d3253b16aeb7bd6a5a8",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x49bac47750f3dcdba49350b5d74fd399e90f97c6",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x49bac47750f3dcdba49350b5d74fd399e90f97c6-1786190483451.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x49bac47750f3dcdba49350b5d74fd399e90f97c6-1786190483451.png"
+ ],
+ "name": "The Bull",
+ "symbol": "BULL",
+ "marketCap": "1844160.155161726289434023",
+ "price": "0.00184418762652969795",
+ "priceChange24hPercent": "-1.06",
+ "volume24h": "1243.36301848924058726",
+ "communityRecognized": false,
+ "key": "evm--4663:0x49bac47750f3dcdba49350b5d74fd399e90f97c6",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x9727b500ac8726c716f018e5d3ca871481245065",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x9727b500ac8726c716f018e5d3ca871481245065-1785196146146.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x9727b500ac8726c716f018e5d3ca871481245065-1785196146146.png"
+ ],
+ "name": "Ansem Cat",
+ "symbol": "AnsemCat",
+ "marketCap": "365173.245867752584482233",
+ "price": "0.00000086803405326429",
+ "priceChange24hPercent": "0",
+ "volume24h": "0",
+ "communityRecognized": false,
+ "key": "evm--4663:0x9727b500ac8726c716f018e5d3ca871481245065",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xeafa804083a4886a9460b5b19557334a652beba8",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xeafa804083a4886a9460b5b19557334a652beba8-1785002418521.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xeafa804083a4886a9460b5b19557334a652beba8-1785002418521.png"
+ ],
+ "name": "Naven Network",
+ "symbol": "NAVEN",
+ "marketCap": "379120.192909717179101389",
+ "price": "0.00043238178622577899",
+ "priceChange24hPercent": "15.18",
+ "volume24h": "5264.3299391435081094",
+ "communityRecognized": false,
+ "key": "evm--4663:0xeafa804083a4886a9460b5b19557334a652beba8",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x0762c1708f0d23f86b29d6b857121ff7df357506",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x0762c1708f0d23f86b29d6b857121ff7df357506-1785931280846.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x0762c1708f0d23f86b29d6b857121ff7df357506-1785931280846.png"
+ ],
+ "name": "this is not a website",
+ "symbol": "website",
+ "marketCap": "5197878.936462059211378102",
+ "price": "0.00555662732124259188",
+ "priceChange24hPercent": "12.86",
+ "volume24h": "33582.80797639951461067",
+ "communityRecognized": false,
+ "key": "evm--4663:0x0762c1708f0d23f86b29d6b857121ff7df357506",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x3b4a0048a00787a644932cd648faa043410c163e",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x3b4a0048a00787a644932cd648faa043410c163e-1788264033495.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x3b4a0048a00787a644932cd648faa043410c163e-1788264033495.png"
+ ],
+ "name": "The Dogestar",
+ "symbol": "SIRIUS",
+ "marketCap": "889308.889941344775296854",
+ "price": "0.00088930888995381725",
+ "priceChange24hPercent": "-2.94",
+ "volume24h": "13500.1153473072908584",
+ "communityRecognized": false,
+ "key": "evm--4663:0x3b4a0048a00787a644932cd648faa043410c163e",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x2103faa9d1762e27a716c61718b3acf3ec1f9bf1",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x2103faa9d1762e27a716c61718b3acf3ec1f9bf1-1785016173111.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x2103faa9d1762e27a716c61718b3acf3ec1f9bf1-1785016173111.png"
+ ],
+ "name": "Robin Hood",
+ "symbol": "FOX",
+ "marketCap": "819155.44037873657318132",
+ "price": "0.00087392746402269212",
+ "priceChange24hPercent": "-3.96",
+ "volume24h": "3177.5645632107489844",
+ "communityRecognized": false,
+ "key": "evm--4663:0x2103faa9d1762e27a716c61718b3acf3ec1f9bf1",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x532c5583671870723ceef573600208af49c87c54",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x532c5583671870723ceef573600208af49c87c54-1787572802676.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x532c5583671870723ceef573600208af49c87c54-1787572802676.png"
+ ],
+ "name": "Canopy Finance",
+ "symbol": "CNPY",
+ "marketCap": "2043406.519085803891568646",
+ "price": "0.00268033834862245422",
+ "priceChange24hPercent": "18.5",
+ "volume24h": "38385.63448397666353553",
+ "communityRecognized": false,
+ "key": "evm--4663:0x532c5583671870723ceef573600208af49c87c54",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xaa40e79e987517f7462bf79315b8a118799b04e3",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xaa40e79e987517f7462bf79315b8a118799b04e3-1787659277021.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xaa40e79e987517f7462bf79315b8a118799b04e3-1787659277021.png"
+ ],
+ "name": "scopl.live",
+ "symbol": "SCOPL",
+ "marketCap": "401077.566822741022302925",
+ "price": "0.00041294851870877833",
+ "priceChange24hPercent": "-10.74",
+ "volume24h": "5586.9137257157393147",
+ "communityRecognized": false,
+ "key": "evm--4663:0xaa40e79e987517f7462bf79315b8a118799b04e3",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x01637b14b7378b99de75a64d50656d98488d9a4d",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x01637b14b7378b99de75a64d50656d98488d9a4d-1784777167517.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x01637b14b7378b99de75a64d50656d98488d9a4d-1784777167517.png"
+ ],
+ "name": "Lady Marian",
+ "symbol": "MARIAN",
+ "marketCap": "628696.510942059642535741",
+ "price": "0.00063887984115372445",
+ "priceChange24hPercent": "-6.96",
+ "volume24h": "9293.046850367078885",
+ "communityRecognized": false,
+ "key": "evm--4663:0x01637b14b7378b99de75a64d50656d98488d9a4d",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xa5be0eeb82a013dc7867b9e020c36a69da666666",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xa5be0eeb82a013dc7867b9e020c36a69da666666-1787227214299.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xa5be0eeb82a013dc7867b9e020c36a69da666666-1787227214299.png"
+ ],
+ "name": "CLOCK IN",
+ "symbol": "CLOCKIN",
+ "marketCap": "390075.568640705056017851",
+ "price": "0.00039007557111482805",
+ "priceChange24hPercent": "4.44",
+ "volume24h": "2112.270541153660644",
+ "communityRecognized": false,
+ "key": "evm--4663:0xa5be0eeb82a013dc7867b9e020c36a69da666666",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xf0e17e54239cd945cd7bea471a3a2ca6a8c7f7a3",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xf0e17e54239cd945cd7bea471a3a2ca6a8c7f7a3-1785403528086.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xf0e17e54239cd945cd7bea471a3a2ca6a8c7f7a3-1785403528086.png"
+ ],
+ "name": "Lemon",
+ "symbol": "LEMON.FUN",
+ "marketCap": "567512.386103755069902849",
+ "price": "0.00057397490461328917",
+ "priceChange24hPercent": "-3.54",
+ "volume24h": "1672.6028670313023494",
+ "communityRecognized": false,
+ "key": "evm--4663:0xf0e17e54239cd945cd7bea471a3a2ca6a8c7f7a3",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x5edb417509a869b1d8222dea05257b8c8ba00361",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x5edb417509a869b1d8222dea05257b8c8ba00361-1786881611635.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x5edb417509a869b1d8222dea05257b8c8ba00361-1786881611635.png"
+ ],
+ "name": "DeFi Traded Fund",
+ "symbol": "DTF",
+ "marketCap": "2101276.505389603821695618",
+ "price": "0.00258078710768923079",
+ "priceChange24hPercent": "2.43",
+ "volume24h": "3458.398138",
+ "communityRecognized": false,
+ "key": "evm--4663:0x5edb417509a869b1d8222dea05257b8c8ba00361",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x1d5aad3c0d6066078ea60f384a2492a550db30b0",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x1d5aad3c0d6066078ea60f384a2492a550db30b0-1786623045142.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x1d5aad3c0d6066078ea60f384a2492a550db30b0-1786623045142.png"
+ ],
+ "name": "STACKERS",
+ "symbol": "STACK",
+ "marketCap": "328316.712147829017752093",
+ "price": "0.00052860209114416726",
+ "priceChange24hPercent": "-8.22",
+ "volume24h": "2580.02370660504785297",
+ "communityRecognized": false,
+ "key": "evm--4663:0x1d5aad3c0d6066078ea60f384a2492a550db30b0",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xd1e861cc5eee7ea88649206b74504d78ccd7aeea",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xd1e861cc5eee7ea88649206b74504d78ccd7aeea-1786708875938.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xd1e861cc5eee7ea88649206b74504d78ccd7aeea-1786708875938.png"
+ ],
+ "name": "Alandale",
+ "symbol": "LUTE",
+ "marketCap": "453658.504315338644932708",
+ "price": "0.00853535222467991659",
+ "priceChange24hPercent": "0",
+ "volume24h": "0",
+ "communityRecognized": false,
+ "key": "evm--4663:0xd1e861cc5eee7ea88649206b74504d78ccd7aeea",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xbc9e7b1c5c0081f4ae85e71ec95703d3dec9ffad",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xbc9e7b1c5c0081f4ae85e71ec95703d3dec9ffad-1786449612801.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xbc9e7b1c5c0081f4ae85e71ec95703d3dec9ffad-1786449612801.png"
+ ],
+ "name": "Bucket Shop",
+ "symbol": "Bucket",
+ "marketCap": "3487714.386686102696356531",
+ "price": "0.00349446150649011294",
+ "priceChange24hPercent": "29.15",
+ "volume24h": "16778.2531163732060708",
+ "communityRecognized": false,
+ "key": "evm--4663:0xbc9e7b1c5c0081f4ae85e71ec95703d3dec9ffad",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x8d4dfaaa4198b6486e0293fec914c2b6a821d4dc",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x8d4dfaaa4198b6486e0293fec914c2b6a821d4dc-1784777336133.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x8d4dfaaa4198b6486e0293fec914c2b6a821d4dc-1784777336133.png"
+ ],
+ "name": "KITSU",
+ "symbol": "KITSU",
+ "marketCap": "1112588.761797044854702224",
+ "price": "0.00118106846427510267",
+ "priceChange24hPercent": "-1.16",
+ "volume24h": "6195.6512003737199649",
+ "communityRecognized": false,
+ "key": "evm--4663:0x8d4dfaaa4198b6486e0293fec914c2b6a821d4dc",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xe15db7c8547a0add11eb26a700246cca08aefce5",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xe15db7c8547a0add11eb26a700246cca08aefce5-1785409545430.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xe15db7c8547a0add11eb26a700246cca08aefce5-1785409545430.png"
+ ],
+ "name": "Shibinhood",
+ "symbol": "WOOF",
+ "marketCap": "1215493.548453345796307932",
+ "price": "0.00000121549354859677",
+ "priceChange24hPercent": "-0.99",
+ "volume24h": "1335.665580041330893",
+ "communityRecognized": true,
+ "key": "evm--4663:0xe15db7c8547a0add11eb26a700246cca08aefce5",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x69984ad3322300039f2855f81c44dbc532efe744",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x69984ad3322300039f2855f81c44dbc532efe744-1785359089193.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x69984ad3322300039f2855f81c44dbc532efe744-1785359089193.png"
+ ],
+ "name": "Tygr",
+ "symbol": "TYGR",
+ "marketCap": "283285.985380009240663877",
+ "price": "0.00031503893798487123",
+ "priceChange24hPercent": "2.58",
+ "volume24h": "1314.13312222189178081",
+ "communityRecognized": false,
+ "key": "evm--4663:0x69984ad3322300039f2855f81c44dbc532efe744",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xa0e67be79118704a35e7d4b20c3ec4df36ef6e10",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xa0e67be79118704a35e7d4b20c3ec4df36ef6e10-1788091298404.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xa0e67be79118704a35e7d4b20c3ec4df36ef6e10-1788091298404.png"
+ ],
+ "name": "Pons Index",
+ "symbol": "PONSFOLIO",
+ "marketCap": "34018.737934824480556041",
+ "price": "0.00003401873793482448",
+ "priceChange24hPercent": "0",
+ "volume24h": "0",
+ "communityRecognized": false,
+ "key": "evm--4663:0xa0e67be79118704a35e7d4b20c3ec4df36ef6e10",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x0e8720b8cd84f95b4b6696adbfa8063c4b8b94f2",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x0e8720b8cd84f95b4b6696adbfa8063c4b8b94f2-1784804605586.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x0e8720b8cd84f95b4b6696adbfa8063c4b8b94f2-1784804605586.png"
+ ],
+ "name": "Buy Button",
+ "symbol": "BUY",
+ "marketCap": "748201.591140112186514847",
+ "price": "0.00082408396918163004",
+ "priceChange24hPercent": "-3.48",
+ "volume24h": "7656.45854777761567737",
+ "communityRecognized": false,
+ "key": "evm--4663:0x0e8720b8cd84f95b4b6696adbfa8063c4b8b94f2",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x3f9f0b6073ee8c495aed96869af31850fed40feb",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x3f9f0b6073ee8c495aed96869af31850fed40feb-1785412064587.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x3f9f0b6073ee8c495aed96869af31850fed40feb-1785412064587.png"
+ ],
+ "name": "Dice Protocol",
+ "symbol": "DICE",
+ "marketCap": "246206.974893546367185266",
+ "price": "0.00025278197889207848",
+ "priceChange24hPercent": "-4.01",
+ "volume24h": "366.66669389857028397",
+ "communityRecognized": false,
+ "key": "evm--4663:0x3f9f0b6073ee8c495aed96869af31850fed40feb",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x298348d5b2e45c774e3ee4f1a0924071dfbdc8c7",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x298348d5b2e45c774e3ee4f1a0924071dfbdc8c7-1786190550357.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x298348d5b2e45c774e3ee4f1a0924071dfbdc8c7-1786190550357.png"
+ ],
+ "name": "swappy",
+ "symbol": "swappy",
+ "marketCap": "449114.126612554601310211",
+ "price": "0.0004491141266125546",
+ "priceChange24hPercent": "2.91",
+ "volume24h": "2259.8109747302917702",
+ "communityRecognized": false,
+ "key": "evm--4663:0x298348d5b2e45c774e3ee4f1a0924071dfbdc8c7",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xace55fe98bab14366dd49ab5aa5df76aa11a3c6f",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xace55fe98bab14366dd49ab5aa5df76aa11a3c6f-1785845024248.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xace55fe98bab14366dd49ab5aa5df76aa11a3c6f-1785845024248.png"
+ ],
+ "name": "Wojak",
+ "symbol": "WOJAK",
+ "marketCap": "1692216.549970488123565045",
+ "price": "0.00185787421689451655",
+ "priceChange24hPercent": "-7.74",
+ "volume24h": "5839.98104851533151364",
+ "communityRecognized": false,
+ "key": "evm--4663:0xace55fe98bab14366dd49ab5aa5df76aa11a3c6f",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xe4b8723d202fdd0298b1d7496a86656b2986c532",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xe4b8723d202fdd0298b1d7496a86656b2986c532-1786622839074.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xe4b8723d202fdd0298b1d7496a86656b2986c532-1786622839074.png"
+ ],
+ "name": "StockRip",
+ "symbol": "RIP",
+ "marketCap": "938245.272755205458732501",
+ "price": "0.0009382885426150306",
+ "priceChange24hPercent": "0.43",
+ "volume24h": "809.1337675890997282",
+ "communityRecognized": false,
+ "key": "evm--4663:0xe4b8723d202fdd0298b1d7496a86656b2986c532",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xfe242d1da8fd04f6a1f80b6d3d807b02e062ad4e",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xfe242d1da8fd04f6a1f80b6d3d807b02e062ad4e-1787832041620.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xfe242d1da8fd04f6a1f80b6d3d807b02e062ad4e-1787832041620.png"
+ ],
+ "name": "Obscura",
+ "symbol": "OBS",
+ "marketCap": "500688.818984870549311758",
+ "price": "0.00050403564936191361",
+ "priceChange24hPercent": "-0.15",
+ "volume24h": "1117.364393579750215",
+ "communityRecognized": false,
+ "key": "evm--4663:0xfe242d1da8fd04f6a1f80b6d3d807b02e062ad4e",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x14641000a501bdc736116abf84e6fcea9b90a713",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x14641000a501bdc736116abf84e6fcea9b90a713-1788178423240.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x14641000a501bdc736116abf84e6fcea9b90a713-1788178423240.png"
+ ],
+ "name": "MESH Gateway",
+ "symbol": "MESH",
+ "marketCap": "1208210.549215450362706768",
+ "price": "0.00120821054921545036",
+ "priceChange24hPercent": "-3.88",
+ "volume24h": "3016.4758538643832347",
+ "communityRecognized": false,
+ "key": "evm--4663:0x14641000a501bdc736116abf84e6fcea9b90a713",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x7ba36be14dd06ba492f08be6c1b2979c1d0b652c",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x7ba36be14dd06ba492f08be6c1b2979c1d0b652c-1788178016235.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x7ba36be14dd06ba492f08be6c1b2979c1d0b652c-1788178016235.png"
+ ],
+ "name": "PerpsHood",
+ "symbol": "PERPSHOOD",
+ "marketCap": "3288366.118814719718758381",
+ "price": "0.00333761406584314507",
+ "priceChange24hPercent": "11.18",
+ "volume24h": "58395.535673114948421",
+ "communityRecognized": false,
+ "key": "evm--4663:0x7ba36be14dd06ba492f08be6c1b2979c1d0b652c",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x77061b45c5e4d440bd681b5f72bd0f4231a6fc04",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x77061b45c5e4d440bd681b5f72bd0f4231a6fc04-1788004867211.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x77061b45c5e4d440bd681b5f72bd0f4231a6fc04-1788004867211.png"
+ ],
+ "name": "RobinVault",
+ "symbol": "ROBINVAULT",
+ "marketCap": "397586.87667975865000995",
+ "price": "0.00073326281522966963",
+ "priceChange24hPercent": "-9.83",
+ "volume24h": "5452.8609022301794384",
+ "communityRecognized": false,
+ "key": "evm--4663:0x77061b45c5e4d440bd681b5f72bd0f4231a6fc04",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x5173b8ea6923c2d40267890d45c46a3480954773",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x5173b8ea6923c2d40267890d45c46a3480954773-1786709002621.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x5173b8ea6923c2d40267890d45c46a3480954773-1786709002621.png"
+ ],
+ "name": "World is Flat",
+ "symbol": "WIF",
+ "marketCap": "992458.903324373126169822",
+ "price": "0.00099245890332437313",
+ "priceChange24hPercent": "-6.39",
+ "volume24h": "5400.91003530705774187",
+ "communityRecognized": false,
+ "key": "evm--4663:0x5173b8ea6923c2d40267890d45c46a3480954773",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x5aed379a72bd2533371d153135c47d5eb61babc8",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x5aed379a72bd2533371d153135c47d5eb61babc8-1787054408027.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x5aed379a72bd2533371d153135c47d5eb61babc8-1787054408027.png"
+ ],
+ "name": "Strike",
+ "symbol": "STRIKE",
+ "marketCap": "168166.235763636933834894",
+ "price": "0.00168222444475767271",
+ "priceChange24hPercent": "0",
+ "volume24h": "0",
+ "communityRecognized": false,
+ "key": "evm--4663:0x5aed379a72bd2533371d153135c47d5eb61babc8",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xb48d34dd8b53324cb8525461c8e548522db885ec",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xb48d34dd8b53324cb8525461c8e548522db885ec-1787918407513.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xb48d34dd8b53324cb8525461c8e548522db885ec-1787918407513.png"
+ ],
+ "name": "Sluice",
+ "symbol": "SLUICE",
+ "marketCap": "132222.15206775523555463",
+ "price": "0.00013222215206775524",
+ "priceChange24hPercent": "-2.06",
+ "volume24h": "148.622282392306725",
+ "communityRecognized": false,
+ "key": "evm--4663:0xb48d34dd8b53324cb8525461c8e548522db885ec",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xa80eb66b3e0cf66ccb46f8b8c9e7ff5803eeb820",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xa80eb66b3e0cf66ccb46f8b8c9e7ff5803eeb820-1784949348295.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xa80eb66b3e0cf66ccb46f8b8c9e7ff5803eeb820-1784949348295.png"
+ ],
+ "name": "Wen Lambo",
+ "symbol": "WEN",
+ "marketCap": "1312267.572898479705983932",
+ "price": "0.00131226757289847971",
+ "priceChange24hPercent": "-2.77",
+ "volume24h": "5430.05839718826059869",
+ "communityRecognized": false,
+ "key": "evm--4663:0xa80eb66b3e0cf66ccb46f8b8c9e7ff5803eeb820",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ }
+ ],
+ "robinhood_meme|evm--4663|4h|all": [
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x39dbed3a2bd333467115de45665cc57f813c4571",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x39dbed3a2bd333467115de45665cc57f813c4571-1785145437955.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x39dbed3a2bd333467115de45665cc57f813c4571-1785145437955.png"
+ ],
+ "name": "Pons",
+ "symbol": "PONS",
+ "marketCap": "502022018.508028785669424106",
+ "price": "0.71717848311520679734",
+ "priceChange24hPercent": "-1.74",
+ "volume24h": "16414780.10286411696075873232",
+ "communityRecognized": true,
+ "key": "evm--4663:0x39dbed3a2bd333467115de45665cc57f813c4571",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x020bfc650a365f8bb26819deaabf3e21291018b4",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x020bfc650a365f8bb26819deaabf3e21291018b4-1784778353843.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x020bfc650a365f8bb26819deaabf3e21291018b4-1784778353843.png"
+ ],
+ "name": "Cash Cat",
+ "symbol": "CASHCAT",
+ "marketCap": "188581610.80185770225929897",
+ "price": "0.19084952071561432263",
+ "priceChange24hPercent": "-0.75",
+ "volume24h": "4205411.46540067704962362577",
+ "communityRecognized": true,
+ "key": "evm--4663:0x020bfc650a365f8bb26819deaabf3e21291018b4",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xe170dc96ca10103e0d4c5d9293c5a3a72ee365a5",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xe170dc96ca10103e0d4c5d9293c5a3a72ee365a5-1785059757195.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xe170dc96ca10103e0d4c5d9293c5a3a72ee365a5-1785059757195.png"
+ ],
+ "name": "Little John",
+ "symbol": "JOHN",
+ "marketCap": "8802.53080883729502627",
+ "price": "0.0000088025308088373",
+ "priceChange24hPercent": "0",
+ "volume24h": "0",
+ "communityRecognized": false,
+ "key": "evm--4663:0xe170dc96ca10103e0d4c5d9293c5a3a72ee365a5",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xe934e36a439c94017b64a3fece66af12099abf50",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xe934e36a439c94017b64a3fece66af12099abf50-1785290631562.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xe934e36a439c94017b64a3fece66af12099abf50-1785290631562.png"
+ ],
+ "name": "StonkBroker",
+ "symbol": "STONKBROKER",
+ "marketCap": "20652805.024120563132606053",
+ "price": "0.01688272635986417616",
+ "priceChange24hPercent": "4.8",
+ "volume24h": "427130.71128594438281049597",
+ "communityRecognized": true,
+ "key": "evm--4663:0xe934e36a439c94017b64a3fece66af12099abf50",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x348cc963411fb82cd6e0b64345714fec94f242cb",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x348cc963411fb82cd6e0b64345714fec94f242cb-1787918436309.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x348cc963411fb82cd6e0b64345714fec94f242cb-1787918436309.png"
+ ],
+ "name": "Goose Token",
+ "symbol": "GOOSE",
+ "marketCap": "81393460.832387531242448284",
+ "price": "0.08139346083238753124",
+ "priceChange24hPercent": "0",
+ "volume24h": "0",
+ "communityRecognized": false,
+ "key": "evm--4663:0x348cc963411fb82cd6e0b64345714fec94f242cb",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x5cb6f181081301b44905f3ae15419112ecabd8a6",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x5cb6f181081301b44905f3ae15419112ecabd8a6-1785411923960.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x5cb6f181081301b44905f3ae15419112ecabd8a6-1785411923960.png"
+ ],
+ "name": "pipedog",
+ "symbol": "PIPEDOG",
+ "marketCap": "35769492.909630204770672297",
+ "price": "0.00289732894922953629",
+ "priceChange24hPercent": "-2.36",
+ "volume24h": "29993.782738060153492765",
+ "communityRecognized": true,
+ "key": "evm--4663:0x5cb6f181081301b44905f3ae15419112ecabd8a6",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x57c0e45cb534413d1c20a4240955d6bb250bb4f1",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x57c0e45cb534413d1c20a4240955d6bb250bb4f1-1785005199051.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x57c0e45cb534413d1c20a4240955d6bb250bb4f1-1785005199051.png"
+ ],
+ "name": "up",
+ "symbol": "UP",
+ "marketCap": "10939824.275003627272484814",
+ "price": "0.54014115573703348966",
+ "priceChange24hPercent": "-2.18",
+ "volume24h": "153505.603425797231973509",
+ "communityRecognized": true,
+ "key": "evm--4663:0x57c0e45cb534413d1c20a4240955d6bb250bb4f1",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x0e0d2c89a5a019fe1cf762e5e33187631dacc21b",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x0e0d2c89a5a019fe1cf762e5e33187631dacc21b-1787400114210.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x0e0d2c89a5a019fe1cf762e5e33187631dacc21b-1787400114210.png"
+ ],
+ "name": "Chump Coin",
+ "symbol": "CHUMP",
+ "marketCap": "35977837.123296699878179831",
+ "price": "0.03597783749651078179",
+ "priceChange24hPercent": "1.84",
+ "volume24h": "475622.88809700274376976",
+ "communityRecognized": false,
+ "key": "evm--4663:0x0e0d2c89a5a019fe1cf762e5e33187631dacc21b",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x56910d4409f3a0c78c64dd8d0545ff0705389870",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x56910d4409f3a0c78c64dd8d0545ff0705389870-1784842044117.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x56910d4409f3a0c78c64dd8d0545ff0705389870-1784842044117.png"
+ ],
+ "name": "The Index",
+ "symbol": "Index",
+ "marketCap": "39076127.721770539963962651",
+ "price": "0.03985186707954164859",
+ "priceChange24hPercent": "1.54",
+ "volume24h": "562421.89756488724316013447",
+ "communityRecognized": true,
+ "key": "evm--4663:0x56910d4409f3a0c78c64dd8d0545ff0705389870",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x18e674231a58c239dc7daedcffe15ec3a24cff5c",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x18e674231a58c239dc7daedcffe15ec3a24cff5c-1786190410593.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x18e674231a58c239dc7daedcffe15ec3a24cff5c-1786190410593.png"
+ ],
+ "name": "Hookr.fun",
+ "symbol": "HOOKR",
+ "marketCap": "16618445.208237637803108274",
+ "price": "0.0166791731104542394",
+ "priceChange24hPercent": "8.73",
+ "volume24h": "637113.24764764323641390883",
+ "communityRecognized": true,
+ "key": "evm--4663:0x18e674231a58c239dc7daedcffe15ec3a24cff5c",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x7fe995a80075df3dc8ae11a9b82c7fe4202cd87f",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x7fe995a80075df3dc8ae11a9b82c7fe4202cd87f-1785325956569.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x7fe995a80075df3dc8ae11a9b82c7fe4202cd87f-1785325956569.png"
+ ],
+ "name": "Thinking Cat",
+ "symbol": "HMM",
+ "marketCap": "13039576.030590609490030763",
+ "price": "0.01320187144939991148",
+ "priceChange24hPercent": "2.97",
+ "volume24h": "230029.01972203715382106733",
+ "communityRecognized": true,
+ "key": "evm--4663:0x7fe995a80075df3dc8ae11a9b82c7fe4202cd87f",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x45242320dbb855eea8fd36804c6487e10e97fcf9",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x45242320dbb855eea8fd36804c6487e10e97fcf9-1784778612504.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x45242320dbb855eea8fd36804c6487e10e97fcf9-1784778612504.png"
+ ],
+ "name": "TENDIES",
+ "symbol": "TENDIES",
+ "marketCap": "15418336.651928049187952375",
+ "price": "0.0161197596815997701",
+ "priceChange24hPercent": "-1.02",
+ "volume24h": "303908.15998870167510240072",
+ "communityRecognized": false,
+ "key": "evm--4663:0x45242320dbb855eea8fd36804c6487e10e97fcf9",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xca9c78dd337a67f6e0077f65f5e9218719d30edf",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xca9c78dd337a67f6e0077f65f5e9218719d30edf-1785280831816.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xca9c78dd337a67f6e0077f65f5e9218719d30edf-1785280831816.png"
+ ],
+ "name": "NetNet",
+ "symbol": "NET",
+ "marketCap": "3920472.764198924127605602",
+ "price": "668.59150927027122099446",
+ "priceChange24hPercent": "-7.83",
+ "volume24h": "1284013.8464058835170252",
+ "communityRecognized": false,
+ "key": "evm--4663:0xca9c78dd337a67f6e0077f65f5e9218719d30edf",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xc72f232a6869e6cf34dc06129affd07f8a2a246a",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xc72f232a6869e6cf34dc06129affd07f8a2a246a-1786104032870.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xc72f232a6869e6cf34dc06129affd07f8a2a246a-1786104032870.png"
+ ],
+ "name": "Mancer",
+ "symbol": "MANCER",
+ "marketCap": "5440876.002220110409619299",
+ "price": "0.00217635040088804416",
+ "priceChange24hPercent": "-3.91",
+ "volume24h": "46025.244159311883742739",
+ "communityRecognized": false,
+ "key": "evm--4663:0xc72f232a6869e6cf34dc06129affd07f8a2a246a",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x6245e67affa44a23077f0ea7f981a8dc743a0c47",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x6245e67affa44a23077f0ea7f981a8dc743a0c47-1785931207872.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x6245e67affa44a23077f0ea7f981a8dc743a0c47-1785931207872.png"
+ ],
+ "name": "frong",
+ "symbol": "FRONG",
+ "marketCap": "5491401.474828610941251233",
+ "price": "0.00549140147482861094",
+ "priceChange24hPercent": "-2.91",
+ "volume24h": "190449.142430712016506254",
+ "communityRecognized": false,
+ "key": "evm--4663:0x6245e67affa44a23077f0ea7f981a8dc743a0c47",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xee5576fa1bcaa380e591d01245f406f3f384eb01",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xee5576fa1bcaa380e591d01245f406f3f384eb01-1787832045009.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xee5576fa1bcaa380e591d01245f406f3f384eb01-1787832045009.png"
+ ],
+ "name": "Down to Finance",
+ "symbol": "DTF",
+ "marketCap": "8682703.707015428616989098",
+ "price": "0.00868270374727847651",
+ "priceChange24hPercent": "-1.18",
+ "volume24h": "228646.94627468329697769",
+ "communityRecognized": false,
+ "key": "evm--4663:0xee5576fa1bcaa380e591d01245f406f3f384eb01",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x62c71cd34a52c30d894419cbcc55db2afa8032ea",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x62c71cd34a52c30d894419cbcc55db2afa8032ea-1785197280438.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x62c71cd34a52c30d894419cbcc55db2afa8032ea-1785197280438.png"
+ ],
+ "name": "YOLO",
+ "symbol": "YOLO",
+ "marketCap": "6110793.379760146105089284",
+ "price": "0.0062997870322002435",
+ "priceChange24hPercent": "4.96",
+ "volume24h": "95825.15978783095941428",
+ "communityRecognized": false,
+ "key": "evm--4663:0x62c71cd34a52c30d894419cbcc55db2afa8032ea",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x451b42a15100c340ca12f7c66de06fac5ea2d751",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x451b42a15100c340ca12f7c66de06fac5ea2d751-1787832041620.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x451b42a15100c340ca12f7c66de06fac5ea2d751-1787832041620.png"
+ ],
+ "name": "Longbow",
+ "symbol": "BOW",
+ "marketCap": "5787414.729870295757998562",
+ "price": "0.00578741472987029576",
+ "priceChange24hPercent": "-2.3",
+ "volume24h": "289514.227269450140201233",
+ "communityRecognized": false,
+ "key": "evm--4663:0x451b42a15100c340ca12f7c66de06fac5ea2d751",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xf2915d1e3c1b0c769d0c756ec43f1c1f6c99cd03",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xf2915d1e3c1b0c769d0c756ec43f1c1f6c99cd03-1784861135802.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xf2915d1e3c1b0c769d0c756ec43f1c1f6c99cd03-1784861135802.png"
+ ],
+ "name": "Arrow",
+ "symbol": "ARROW",
+ "marketCap": "3472922.672130186445530038",
+ "price": "0.38588029898682948721",
+ "priceChange24hPercent": "-7.26",
+ "volume24h": "29678.75129781257653371",
+ "communityRecognized": false,
+ "key": "evm--4663:0xf2915d1e3c1b0c769d0c756ec43f1c1f6c99cd03",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xb9972ca7188e511174947e3936a5315ac7073277",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xb9972ca7188e511174947e3936a5315ac7073277-1787400211008.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xb9972ca7188e511174947e3936a5315ac7073277-1787400211008.png"
+ ],
+ "name": "Prologue",
+ "symbol": "PROLOGUE",
+ "marketCap": "10867196.245258369257184329",
+ "price": "0.01086719624525836926",
+ "priceChange24hPercent": "17.31",
+ "volume24h": "581563.645859815325715904",
+ "communityRecognized": true,
+ "key": "evm--4663:0xb9972ca7188e511174947e3936a5315ac7073277",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xd7321801caae694090694ff55a9323139f043b88",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xd7321801caae694090694ff55a9323139f043b88-1784779777690.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xd7321801caae694090694ff55a9323139f043b88-1784779777690.png"
+ ],
+ "name": "The Juggernaut",
+ "symbol": "JUGGERNAUT",
+ "marketCap": "3019903.208555332697636294",
+ "price": "0.00322096834857655848",
+ "priceChange24hPercent": "-2.51",
+ "volume24h": "34166.89514077934276997",
+ "communityRecognized": false,
+ "key": "evm--4663:0xd7321801caae694090694ff55a9323139f043b88",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x8ff92566f2e81bdd68edfaa8cde73942a723796b",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x8ff92566f2e81bdd68edfaa8cde73942a723796b-1784854679354.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x8ff92566f2e81bdd68edfaa8cde73942a723796b-1784854679354.png"
+ ],
+ "name": "ProjectVex",
+ "symbol": "VEX",
+ "marketCap": "2665179.099566858123776638",
+ "price": "0.00266517909956685812",
+ "priceChange24hPercent": "-3.89",
+ "volume24h": "46079.304108803096957694",
+ "communityRecognized": false,
+ "key": "evm--4663:0x8ff92566f2e81bdd68edfaa8cde73942a723796b",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xcebc0cfbc5dd0893a9e3b9d0f75b211ddf5934a0",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xcebc0cfbc5dd0893a9e3b9d0f75b211ddf5934a0-1788177871007.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xcebc0cfbc5dd0893a9e3b9d0f75b211ddf5934a0-1788177871007.png"
+ ],
+ "name": "clan.tech",
+ "symbol": "CLAN",
+ "marketCap": "1346087.777112335683918246",
+ "price": "0.00134608777721111461",
+ "priceChange24hPercent": "-12.76",
+ "volume24h": "27548.17413550046020931",
+ "communityRecognized": false,
+ "key": "evm--4663:0xcebc0cfbc5dd0893a9e3b9d0f75b211ddf5934a0",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x232cdfc415d10b673845d83dc02ba2eabe7e30d1",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x232cdfc415d10b673845d83dc02ba2eabe7e30d1-1785412803768.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x232cdfc415d10b673845d83dc02ba2eabe7e30d1-1785412803768.png"
+ ],
+ "name": "What If",
+ "symbol": "IF",
+ "marketCap": "10586906.988923495786384388",
+ "price": "0.01168673691363227001",
+ "priceChange24hPercent": "-7.45",
+ "volume24h": "67903.50558038779323687104",
+ "communityRecognized": false,
+ "key": "evm--4663:0x232cdfc415d10b673845d83dc02ba2eabe7e30d1",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x76761d4aee1e7d6b2b8dedbd13925d6c220b0725",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x76761d4aee1e7d6b2b8dedbd13925d6c220b0725-1786276810800.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x76761d4aee1e7d6b2b8dedbd13925d6c220b0725-1786276810800.png"
+ ],
+ "name": "MowCat",
+ "symbol": "MOW",
+ "marketCap": "4608946.621219782201180129",
+ "price": "0.0046089466212197822",
+ "priceChange24hPercent": "-1.01",
+ "volume24h": "0.49487193750628033",
+ "communityRecognized": false,
+ "key": "evm--4663:0x76761d4aee1e7d6b2b8dedbd13925d6c220b0725",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x77b0aa38451ccdc1b42587e2f80b9879a7f82356",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x77b0aa38451ccdc1b42587e2f80b9879a7f82356-1786536021883.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x77b0aa38451ccdc1b42587e2f80b9879a7f82356-1786536021883.png"
+ ],
+ "name": "DogBull",
+ "symbol": "DOGO",
+ "marketCap": "21768233.653662840214264244",
+ "price": "0.02155270658778499031",
+ "priceChange24hPercent": "9.04",
+ "volume24h": "968.3501256395052",
+ "communityRecognized": false,
+ "key": "evm--4663:0x77b0aa38451ccdc1b42587e2f80b9879a7f82356",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x385b36ff682ab4c76e7c37a66b96aabc466471d5",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x385b36ff682ab4c76e7c37a66b96aabc466471d5-1786017815496.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x385b36ff682ab4c76e7c37a66b96aabc466471d5-1786017815496.png"
+ ],
+ "name": "pools.trade",
+ "symbol": "POOLS",
+ "marketCap": "1556630.67532955837106892",
+ "price": "0.0015566308898872704",
+ "priceChange24hPercent": "5.44",
+ "volume24h": "84475.2589248484339141",
+ "communityRecognized": false,
+ "key": "evm--4663:0x385b36ff682ab4c76e7c37a66b96aabc466471d5",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x5f62c57e5c537887117eef828b7e3ad41c009feb",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x5f62c57e5c537887117eef828b7e3ad41c009feb-1786018016957.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x5f62c57e5c537887117eef828b7e3ad41c009feb-1786018016957.png"
+ ],
+ "name": "Good In The Hood",
+ "symbol": "GOOD",
+ "marketCap": "3650847.769165494974298471",
+ "price": "0.00464873807570103688",
+ "priceChange24hPercent": "-0.43",
+ "volume24h": "42347.0605904815970021",
+ "communityRecognized": false,
+ "key": "evm--4663:0x5f62c57e5c537887117eef828b7e3ad41c009feb",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x20024e485c0b22b42855589700721b28320a7777",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x20024e485c0b22b42855589700721b28320a7777-1786363300721.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x20024e485c0b22b42855589700721b28320a7777-1786363300721.png"
+ ],
+ "name": "Prism Assets",
+ "symbol": "PRISM",
+ "marketCap": "2315389.100589988802579267",
+ "price": "0.0023153891005899888",
+ "priceChange24hPercent": "39.81",
+ "volume24h": "79479.37439482278053848",
+ "communityRecognized": false,
+ "key": "evm--4663:0x20024e485c0b22b42855589700721b28320a7777",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x4a6eec8a30b49d289b9fc865fd374b4d61eab8fb",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x4a6eec8a30b49d289b9fc865fd374b4d61eab8fb-1785758432269.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x4a6eec8a30b49d289b9fc865fd374b4d61eab8fb-1785758432269.png"
+ ],
+ "name": "Liluni",
+ "symbol": "Liluni",
+ "marketCap": "769327.821597585049202932",
+ "price": "0.00076932782159758505",
+ "priceChange24hPercent": "-5.77",
+ "volume24h": "7121.24036385021149102",
+ "communityRecognized": false,
+ "key": "evm--4663:0x4a6eec8a30b49d289b9fc865fd374b4d61eab8fb",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xb8fa8010833463aac5595b55b9045479239eff79",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xb8fa8010833463aac5595b55b9045479239eff79-1786881632532.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xb8fa8010833463aac5595b55b9045479239eff79-1786881632532.png"
+ ],
+ "name": "what the hook?",
+ "symbol": "WTH",
+ "marketCap": "4433865.674641148580658499",
+ "price": "21.11364606971975514599",
+ "priceChange24hPercent": "1.21",
+ "volume24h": "143092.04241228086084284",
+ "communityRecognized": false,
+ "key": "evm--4663:0xb8fa8010833463aac5595b55b9045479239eff79",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xf8bc08092c06db6148114dcf82af881f1085f92b",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xf8bc08092c06db6148114dcf82af881f1085f92b-1785137390595.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xf8bc08092c06db6148114dcf82af881f1085f92b-1785137390595.png"
+ ],
+ "name": "Sherwood Protocol",
+ "symbol": "WOOD",
+ "marketCap": "5294868.778292219416037217",
+ "price": "0.00529486877829221942",
+ "priceChange24hPercent": "0.46",
+ "volume24h": "29026.0766873777507563903",
+ "communityRecognized": false,
+ "key": "evm--4663:0xf8bc08092c06db6148114dcf82af881f1085f92b",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x51fb76be80ab6daaa345d818f4e06441816b4fea",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x51fb76be80ab6daaa345d818f4e06441816b4fea-1786104017624.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x51fb76be80ab6daaa345d818f4e06441816b4fea-1786104017624.png"
+ ],
+ "name": "NASDANQ",
+ "symbol": "NASDANQ",
+ "marketCap": "2336139.896707354816830353",
+ "price": "0.00233613989670735482",
+ "priceChange24hPercent": "-10.24",
+ "volume24h": "45451.611629481712159027",
+ "communityRecognized": false,
+ "key": "evm--4663:0x51fb76be80ab6daaa345d818f4e06441816b4fea",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x8ecea3d0e648db646d824aa51eedeb16ac3d6878",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x8ecea3d0e648db646d824aa51eedeb16ac3d6878-1785284432065.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x8ecea3d0e648db646d824aa51eedeb16ac3d6878-1785284432065.png"
+ ],
+ "name": "wire bot",
+ "symbol": "wire",
+ "marketCap": "539032.655786243127634391",
+ "price": "0.00054041288588799596",
+ "priceChange24hPercent": "-0.03",
+ "volume24h": "17114.889281614849401385",
+ "communityRecognized": false,
+ "key": "evm--4663:0x8ecea3d0e648db646d824aa51eedeb16ac3d6878",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xcb5566e73bee5390c75df834d4727dcecc65fc87",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xcb5566e73bee5390c75df834d4727dcecc65fc87-1788354026635.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xcb5566e73bee5390c75df834d4727dcecc65fc87-1788354026635.png"
+ ],
+ "name": "Mast Bond",
+ "symbol": "MAST",
+ "marketCap": "652914.665836647500035643",
+ "price": "0.0006529146658366475",
+ "priceChange24hPercent": "-0.54",
+ "volume24h": "17589.51490846126885682",
+ "communityRecognized": false,
+ "key": "evm--4663:0xcb5566e73bee5390c75df834d4727dcecc65fc87",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xf44702b17d9abd53815f703e772f35e9c71a53af",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xf44702b17d9abd53815f703e772f35e9c71a53af-1784822115804.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xf44702b17d9abd53815f703e772f35e9c71a53af-1784822115804.png"
+ ],
+ "name": "RAXOL",
+ "symbol": "RAXOL",
+ "marketCap": "1712329.03977912128931203",
+ "price": "0.00171232903977912129",
+ "priceChange24hPercent": "-5.88",
+ "volume24h": "5417.0412821532904826",
+ "communityRecognized": false,
+ "key": "evm--4663:0xf44702b17d9abd53815f703e772f35e9c71a53af",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x8e62f281f282686fca6dcb39288069a93fc23f1c",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x8e62f281f282686fca6dcb39288069a93fc23f1c-1784830569718.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x8e62f281f282686fca6dcb39288069a93fc23f1c-1784830569718.png"
+ ],
+ "name": "Hoodrat",
+ "symbol": "HOODRAT",
+ "marketCap": "1729390.247190236716847253",
+ "price": "0.00172939031667982091",
+ "priceChange24hPercent": "1.63",
+ "volume24h": "13905.18189835559297072",
+ "communityRecognized": true,
+ "key": "evm--4663:0x8e62f281f282686fca6dcb39288069a93fc23f1c",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x77581054581b9c525e7dd7a0155de43867532d03",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x77581054581b9c525e7dd7a0155de43867532d03-1784939141560.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x77581054581b9c525e7dd7a0155de43867532d03-1784939141560.png"
+ ],
+ "name": "WISHBONE",
+ "symbol": "WISHBONE",
+ "marketCap": "890566.402734889733341878",
+ "price": "0.00096332665926777235",
+ "priceChange24hPercent": "-2.53",
+ "volume24h": "3308.40679920327238953",
+ "communityRecognized": false,
+ "key": "evm--4663:0x77581054581b9c525e7dd7a0155de43867532d03",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x43eea882b845a8493152ebc55cf30ae9281b02d5",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x43eea882b845a8493152ebc55cf30ae9281b02d5-1785292897426.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x43eea882b845a8493152ebc55cf30ae9281b02d5-1785292897426.png"
+ ],
+ "name": "FIRE",
+ "symbol": "FIRE",
+ "marketCap": "1462625.380905727143813291",
+ "price": "0.0014809585098065579",
+ "priceChange24hPercent": "35.83",
+ "volume24h": "49053.997129408245912783",
+ "communityRecognized": false,
+ "key": "evm--4663:0x43eea882b845a8493152ebc55cf30ae9281b02d5",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xac77646bcff9d52e99800534192e0290933f4094",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xac77646bcff9d52e99800534192e0290933f4094-1787572842778.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xac77646bcff9d52e99800534192e0290933f4094-1787572842778.png"
+ ],
+ "name": "Martians",
+ "symbol": "MARTIANS",
+ "marketCap": "421107.798117296771237422",
+ "price": "0.00042110779812399404",
+ "priceChange24hPercent": "1.32",
+ "volume24h": "14816.6895887998832814",
+ "communityRecognized": false,
+ "key": "evm--4663:0xac77646bcff9d52e99800534192e0290933f4094",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xf0568863195770965a6d8abb0aa87f4314b80320",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xf0568863195770965a6d8abb0aa87f4314b80320-1785239850960.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xf0568863195770965a6d8abb0aa87f4314b80320-1785239850960.png"
+ ],
+ "name": "SLIPPY",
+ "symbol": "SLIPPY",
+ "marketCap": "2285143.7736062878747713",
+ "price": "0.0022851443913658089",
+ "priceChange24hPercent": "5.52",
+ "volume24h": "10566.18636937484024304561",
+ "communityRecognized": false,
+ "key": "evm--4663:0xf0568863195770965a6d8abb0aa87f4314b80320",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x9ca1cc0c90d97b4f36c5e2232d4fbd705a73c65d",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x9ca1cc0c90d97b4f36c5e2232d4fbd705a73c65d-1786363300721.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x9ca1cc0c90d97b4f36c5e2232d4fbd705a73c65d-1786363300721.png"
+ ],
+ "name": "TA FUND",
+ "symbol": "TA",
+ "marketCap": "2169025.59885951907590852",
+ "price": "0.00216902559885951908",
+ "priceChange24hPercent": "-14.02",
+ "volume24h": "33405.98998354852304",
+ "communityRecognized": false,
+ "key": "evm--4663:0x9ca1cc0c90d97b4f36c5e2232d4fbd705a73c65d",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x7168563b0e70124f0c7c0cf2f13a8d1861baf4a5",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x7168563b0e70124f0c7c0cf2f13a8d1861baf4a5-1785276114071.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x7168563b0e70124f0c7c0cf2f13a8d1861baf4a5-1785276114071.png"
+ ],
+ "name": "Backed",
+ "symbol": "BACKED",
+ "marketCap": "683975.046016032677877222",
+ "price": "0.00072634119132098617",
+ "priceChange24hPercent": "6.03",
+ "volume24h": "24408.0027414143083791",
+ "communityRecognized": false,
+ "key": "evm--4663:0x7168563b0e70124f0c7c0cf2f13a8d1861baf4a5",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xe3fa12da7fa026b21817f16622e8ae48fa785166",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xe3fa12da7fa026b21817f16622e8ae48fa785166-1786536006382.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xe3fa12da7fa026b21817f16622e8ae48fa785166-1786536006382.png"
+ ],
+ "name": "Yardkeeper",
+ "symbol": "YARD",
+ "marketCap": "1661101.247537698075666796",
+ "price": "0.00237034455488214896",
+ "priceChange24hPercent": "1.79",
+ "volume24h": "4163.433968748924358",
+ "communityRecognized": false,
+ "key": "evm--4663:0xe3fa12da7fa026b21817f16622e8ae48fa785166",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x727701f88f09fed71eb217bcea88b3f314cf7079",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x727701f88f09fed71eb217bcea88b3f314cf7079-1785229474064.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x727701f88f09fed71eb217bcea88b3f314cf7079-1785229474064.png"
+ ],
+ "name": "GRID by Virtuals",
+ "symbol": "GRID",
+ "marketCap": "1249980.578691939741013368",
+ "price": "0.00124998057869193974",
+ "priceChange24hPercent": "3.45",
+ "volume24h": "4396.5897564914967905",
+ "communityRecognized": false,
+ "key": "evm--4663:0x727701f88f09fed71eb217bcea88b3f314cf7079",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x96765066f6a040a21eb027167d2315b707c82633",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x96765066f6a040a21eb027167d2315b707c82633-1784938636403.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x96765066f6a040a21eb027167d2315b707c82633-1784938636403.png"
+ ],
+ "name": "Ravenhood",
+ "symbol": "RVH",
+ "marketCap": "390628.355788254703232466",
+ "price": "0.00496337736804456155",
+ "priceChange24hPercent": "-15.32",
+ "volume24h": "16316.077325027930377449",
+ "communityRecognized": false,
+ "key": "evm--4663:0x96765066f6a040a21eb027167d2315b707c82633",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xbd957cc9f1e94617792f37bc40f2f299e78acf3e",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xbd957cc9f1e94617792f37bc40f2f299e78acf3e-1785845024248.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xbd957cc9f1e94617792f37bc40f2f299e78acf3e-1785845024248.png"
+ ],
+ "name": "Crude Cat",
+ "symbol": "CRUDECAT",
+ "marketCap": "2307997.035220816076014931",
+ "price": "0.00597695795708211835",
+ "priceChange24hPercent": "4.56",
+ "volume24h": "26559.650447046920187237",
+ "communityRecognized": false,
+ "key": "evm--4663:0xbd957cc9f1e94617792f37bc40f2f299e78acf3e",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xfb1bcb6817f7b8fa86896d3253b16aeb7bd6a5a8",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xfb1bcb6817f7b8fa86896d3253b16aeb7bd6a5a8-1785008871536.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xfb1bcb6817f7b8fa86896d3253b16aeb7bd6a5a8-1785008871536.png"
+ ],
+ "name": "one life, its worth an attempt",
+ "symbol": "worth",
+ "marketCap": "943016.144584851830199867",
+ "price": "0.00112942228622299282",
+ "priceChange24hPercent": "-4.65",
+ "volume24h": "13857.6796452749737343",
+ "communityRecognized": false,
+ "key": "evm--4663:0xfb1bcb6817f7b8fa86896d3253b16aeb7bd6a5a8",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x49bac47750f3dcdba49350b5d74fd399e90f97c6",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x49bac47750f3dcdba49350b5d74fd399e90f97c6-1786190483451.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x49bac47750f3dcdba49350b5d74fd399e90f97c6-1786190483451.png"
+ ],
+ "name": "The Bull",
+ "symbol": "BULL",
+ "marketCap": "1844160.155161726289434023",
+ "price": "0.00184418762652969795",
+ "priceChange24hPercent": "-4.02",
+ "volume24h": "7055.03058764326122966",
+ "communityRecognized": false,
+ "key": "evm--4663:0x49bac47750f3dcdba49350b5d74fd399e90f97c6",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x9727b500ac8726c716f018e5d3ca871481245065",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x9727b500ac8726c716f018e5d3ca871481245065-1785196146146.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x9727b500ac8726c716f018e5d3ca871481245065-1785196146146.png"
+ ],
+ "name": "Ansem Cat",
+ "symbol": "AnsemCat",
+ "marketCap": "365173.245867752584482233",
+ "price": "0.00000086803405326429",
+ "priceChange24hPercent": "-2.64",
+ "volume24h": "9.935641306557192",
+ "communityRecognized": false,
+ "key": "evm--4663:0x9727b500ac8726c716f018e5d3ca871481245065",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xeafa804083a4886a9460b5b19557334a652beba8",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xeafa804083a4886a9460b5b19557334a652beba8-1785002418521.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xeafa804083a4886a9460b5b19557334a652beba8-1785002418521.png"
+ ],
+ "name": "Naven Network",
+ "symbol": "NAVEN",
+ "marketCap": "379120.192909717179101389",
+ "price": "0.00043238178622577899",
+ "priceChange24hPercent": "5.32",
+ "volume24h": "9829.89311807554096518",
+ "communityRecognized": false,
+ "key": "evm--4663:0xeafa804083a4886a9460b5b19557334a652beba8",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x0762c1708f0d23f86b29d6b857121ff7df357506",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x0762c1708f0d23f86b29d6b857121ff7df357506-1785931280846.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x0762c1708f0d23f86b29d6b857121ff7df357506-1785931280846.png"
+ ],
+ "name": "this is not a website",
+ "symbol": "website",
+ "marketCap": "5197878.936462059211378102",
+ "price": "0.00555662732124259188",
+ "priceChange24hPercent": "29.89",
+ "volume24h": "95388.35222699817454776",
+ "communityRecognized": false,
+ "key": "evm--4663:0x0762c1708f0d23f86b29d6b857121ff7df357506",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x3b4a0048a00787a644932cd648faa043410c163e",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x3b4a0048a00787a644932cd648faa043410c163e-1788264033495.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x3b4a0048a00787a644932cd648faa043410c163e-1788264033495.png"
+ ],
+ "name": "The Dogestar",
+ "symbol": "SIRIUS",
+ "marketCap": "889308.889941344775296854",
+ "price": "0.00088930888995381725",
+ "priceChange24hPercent": "-28.3",
+ "volume24h": "182665.0649432332283352",
+ "communityRecognized": false,
+ "key": "evm--4663:0x3b4a0048a00787a644932cd648faa043410c163e",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x2103faa9d1762e27a716c61718b3acf3ec1f9bf1",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x2103faa9d1762e27a716c61718b3acf3ec1f9bf1-1785016173111.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x2103faa9d1762e27a716c61718b3acf3ec1f9bf1-1785016173111.png"
+ ],
+ "name": "Robin Hood",
+ "symbol": "FOX",
+ "marketCap": "819155.44037873657318132",
+ "price": "0.00087392746402269212",
+ "priceChange24hPercent": "-5.91",
+ "volume24h": "15504.59512307167404974",
+ "communityRecognized": false,
+ "key": "evm--4663:0x2103faa9d1762e27a716c61718b3acf3ec1f9bf1",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x532c5583671870723ceef573600208af49c87c54",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x532c5583671870723ceef573600208af49c87c54-1787572802676.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x532c5583671870723ceef573600208af49c87c54-1787572802676.png"
+ ],
+ "name": "Canopy Finance",
+ "symbol": "CNPY",
+ "marketCap": "2043406.519085803891568646",
+ "price": "0.00268033834862245422",
+ "priceChange24hPercent": "24.67",
+ "volume24h": "118357.79101005422933922",
+ "communityRecognized": false,
+ "key": "evm--4663:0x532c5583671870723ceef573600208af49c87c54",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xaa40e79e987517f7462bf79315b8a118799b04e3",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xaa40e79e987517f7462bf79315b8a118799b04e3-1787659277021.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xaa40e79e987517f7462bf79315b8a118799b04e3-1787659277021.png"
+ ],
+ "name": "scopl.live",
+ "symbol": "SCOPL",
+ "marketCap": "401077.566822741022302925",
+ "price": "0.00041294851870877833",
+ "priceChange24hPercent": "-19.12",
+ "volume24h": "14950.8002304033310052",
+ "communityRecognized": false,
+ "key": "evm--4663:0xaa40e79e987517f7462bf79315b8a118799b04e3",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x01637b14b7378b99de75a64d50656d98488d9a4d",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x01637b14b7378b99de75a64d50656d98488d9a4d-1784777167517.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x01637b14b7378b99de75a64d50656d98488d9a4d-1784777167517.png"
+ ],
+ "name": "Lady Marian",
+ "symbol": "MARIAN",
+ "marketCap": "628696.510942059642535741",
+ "price": "0.00063887984115372445",
+ "priceChange24hPercent": "-8.69",
+ "volume24h": "13363.569271539007018",
+ "communityRecognized": false,
+ "key": "evm--4663:0x01637b14b7378b99de75a64d50656d98488d9a4d",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xa5be0eeb82a013dc7867b9e020c36a69da666666",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xa5be0eeb82a013dc7867b9e020c36a69da666666-1787227214299.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xa5be0eeb82a013dc7867b9e020c36a69da666666-1787227214299.png"
+ ],
+ "name": "CLOCK IN",
+ "symbol": "CLOCKIN",
+ "marketCap": "390075.568640705056017851",
+ "price": "0.00039007557111482805",
+ "priceChange24hPercent": "11.89",
+ "volume24h": "7693.0173579416639987",
+ "communityRecognized": false,
+ "key": "evm--4663:0xa5be0eeb82a013dc7867b9e020c36a69da666666",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xf0e17e54239cd945cd7bea471a3a2ca6a8c7f7a3",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xf0e17e54239cd945cd7bea471a3a2ca6a8c7f7a3-1785403528086.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xf0e17e54239cd945cd7bea471a3a2ca6a8c7f7a3-1785403528086.png"
+ ],
+ "name": "Lemon",
+ "symbol": "LEMON.FUN",
+ "marketCap": "567512.386103755069902849",
+ "price": "0.00057397490461328917",
+ "priceChange24hPercent": "-1.41",
+ "volume24h": "4161.0084931589382284",
+ "communityRecognized": false,
+ "key": "evm--4663:0xf0e17e54239cd945cd7bea471a3a2ca6a8c7f7a3",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x5edb417509a869b1d8222dea05257b8c8ba00361",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x5edb417509a869b1d8222dea05257b8c8ba00361-1786881611635.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x5edb417509a869b1d8222dea05257b8c8ba00361-1786881611635.png"
+ ],
+ "name": "DeFi Traded Fund",
+ "symbol": "DTF",
+ "marketCap": "2101276.505389603821695618",
+ "price": "0.00258078710768923079",
+ "priceChange24hPercent": "4.37",
+ "volume24h": "12072.127744",
+ "communityRecognized": false,
+ "key": "evm--4663:0x5edb417509a869b1d8222dea05257b8c8ba00361",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x1d5aad3c0d6066078ea60f384a2492a550db30b0",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x1d5aad3c0d6066078ea60f384a2492a550db30b0-1786623045142.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x1d5aad3c0d6066078ea60f384a2492a550db30b0-1786623045142.png"
+ ],
+ "name": "STACKERS",
+ "symbol": "STACK",
+ "marketCap": "328316.712147829017752093",
+ "price": "0.00052860209114416726",
+ "priceChange24hPercent": "-2.18",
+ "volume24h": "8428.40954421896883364",
+ "communityRecognized": false,
+ "key": "evm--4663:0x1d5aad3c0d6066078ea60f384a2492a550db30b0",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xd1e861cc5eee7ea88649206b74504d78ccd7aeea",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xd1e861cc5eee7ea88649206b74504d78ccd7aeea-1786708875938.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xd1e861cc5eee7ea88649206b74504d78ccd7aeea-1786708875938.png"
+ ],
+ "name": "Alandale",
+ "symbol": "LUTE",
+ "marketCap": "453658.504315338644932708",
+ "price": "0.00853535222467991659",
+ "priceChange24hPercent": "-0.11",
+ "volume24h": "859.6307700072502465",
+ "communityRecognized": false,
+ "key": "evm--4663:0xd1e861cc5eee7ea88649206b74504d78ccd7aeea",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xbc9e7b1c5c0081f4ae85e71ec95703d3dec9ffad",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xbc9e7b1c5c0081f4ae85e71ec95703d3dec9ffad-1786449612801.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xbc9e7b1c5c0081f4ae85e71ec95703d3dec9ffad-1786449612801.png"
+ ],
+ "name": "Bucket Shop",
+ "symbol": "Bucket",
+ "marketCap": "3487714.386686102696356531",
+ "price": "0.00349446150649011294",
+ "priceChange24hPercent": "41.84",
+ "volume24h": "38935.8065227630988422",
+ "communityRecognized": false,
+ "key": "evm--4663:0xbc9e7b1c5c0081f4ae85e71ec95703d3dec9ffad",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x8d4dfaaa4198b6486e0293fec914c2b6a821d4dc",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x8d4dfaaa4198b6486e0293fec914c2b6a821d4dc-1784777336133.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x8d4dfaaa4198b6486e0293fec914c2b6a821d4dc-1784777336133.png"
+ ],
+ "name": "KITSU",
+ "symbol": "KITSU",
+ "marketCap": "1112588.761797044854702224",
+ "price": "0.00118106846427510267",
+ "priceChange24hPercent": "8.39",
+ "volume24h": "29334.829915455111990764",
+ "communityRecognized": false,
+ "key": "evm--4663:0x8d4dfaaa4198b6486e0293fec914c2b6a821d4dc",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xe15db7c8547a0add11eb26a700246cca08aefce5",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xe15db7c8547a0add11eb26a700246cca08aefce5-1785409545430.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xe15db7c8547a0add11eb26a700246cca08aefce5-1785409545430.png"
+ ],
+ "name": "Shibinhood",
+ "symbol": "WOOF",
+ "marketCap": "1215493.548453345796307932",
+ "price": "0.00000121549354859677",
+ "priceChange24hPercent": "-8.75",
+ "volume24h": "7340.097089494747047",
+ "communityRecognized": true,
+ "key": "evm--4663:0xe15db7c8547a0add11eb26a700246cca08aefce5",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x69984ad3322300039f2855f81c44dbc532efe744",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x69984ad3322300039f2855f81c44dbc532efe744-1785359089193.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x69984ad3322300039f2855f81c44dbc532efe744-1785359089193.png"
+ ],
+ "name": "Tygr",
+ "symbol": "TYGR",
+ "marketCap": "283285.985380009240663877",
+ "price": "0.00031503893798487123",
+ "priceChange24hPercent": "2.39",
+ "volume24h": "2531.74493557523230624",
+ "communityRecognized": false,
+ "key": "evm--4663:0x69984ad3322300039f2855f81c44dbc532efe744",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xa0e67be79118704a35e7d4b20c3ec4df36ef6e10",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xa0e67be79118704a35e7d4b20c3ec4df36ef6e10-1788091298404.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xa0e67be79118704a35e7d4b20c3ec4df36ef6e10-1788091298404.png"
+ ],
+ "name": "Pons Index",
+ "symbol": "PONSFOLIO",
+ "marketCap": "34018.737934824480556041",
+ "price": "0.00003401873793482448",
+ "priceChange24hPercent": "1.09",
+ "volume24h": "27.480983845679184",
+ "communityRecognized": false,
+ "key": "evm--4663:0xa0e67be79118704a35e7d4b20c3ec4df36ef6e10",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x0e8720b8cd84f95b4b6696adbfa8063c4b8b94f2",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x0e8720b8cd84f95b4b6696adbfa8063c4b8b94f2-1784804605586.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x0e8720b8cd84f95b4b6696adbfa8063c4b8b94f2-1784804605586.png"
+ ],
+ "name": "Buy Button",
+ "symbol": "BUY",
+ "marketCap": "748201.591140112186514847",
+ "price": "0.00082408396918163004",
+ "priceChange24hPercent": "24.36",
+ "volume24h": "33504.17839825910896768",
+ "communityRecognized": false,
+ "key": "evm--4663:0x0e8720b8cd84f95b4b6696adbfa8063c4b8b94f2",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x3f9f0b6073ee8c495aed96869af31850fed40feb",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x3f9f0b6073ee8c495aed96869af31850fed40feb-1785412064587.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x3f9f0b6073ee8c495aed96869af31850fed40feb-1785412064587.png"
+ ],
+ "name": "Dice Protocol",
+ "symbol": "DICE",
+ "marketCap": "246206.974893546367185266",
+ "price": "0.00025278197889207848",
+ "priceChange24hPercent": "-2.92",
+ "volume24h": "9593.3753147094229535",
+ "communityRecognized": false,
+ "key": "evm--4663:0x3f9f0b6073ee8c495aed96869af31850fed40feb",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x298348d5b2e45c774e3ee4f1a0924071dfbdc8c7",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x298348d5b2e45c774e3ee4f1a0924071dfbdc8c7-1786190550357.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x298348d5b2e45c774e3ee4f1a0924071dfbdc8c7-1786190550357.png"
+ ],
+ "name": "swappy",
+ "symbol": "swappy",
+ "marketCap": "449114.126612554601310211",
+ "price": "0.0004491141266125546",
+ "priceChange24hPercent": "8.5",
+ "volume24h": "7030.29432449232660847",
+ "communityRecognized": false,
+ "key": "evm--4663:0x298348d5b2e45c774e3ee4f1a0924071dfbdc8c7",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xace55fe98bab14366dd49ab5aa5df76aa11a3c6f",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xace55fe98bab14366dd49ab5aa5df76aa11a3c6f-1785845024248.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xace55fe98bab14366dd49ab5aa5df76aa11a3c6f-1785845024248.png"
+ ],
+ "name": "Wojak",
+ "symbol": "WOJAK",
+ "marketCap": "1692216.549970488123565045",
+ "price": "0.00185787421689451655",
+ "priceChange24hPercent": "-9.56",
+ "volume24h": "12806.50534797285045105",
+ "communityRecognized": false,
+ "key": "evm--4663:0xace55fe98bab14366dd49ab5aa5df76aa11a3c6f",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xe4b8723d202fdd0298b1d7496a86656b2986c532",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xe4b8723d202fdd0298b1d7496a86656b2986c532-1786622839074.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xe4b8723d202fdd0298b1d7496a86656b2986c532-1786622839074.png"
+ ],
+ "name": "StockRip",
+ "symbol": "RIP",
+ "marketCap": "938245.272755205458732501",
+ "price": "0.0009382885426150306",
+ "priceChange24hPercent": "-2.67",
+ "volume24h": "3399.459783392204160984",
+ "communityRecognized": false,
+ "key": "evm--4663:0xe4b8723d202fdd0298b1d7496a86656b2986c532",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xfe242d1da8fd04f6a1f80b6d3d807b02e062ad4e",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xfe242d1da8fd04f6a1f80b6d3d807b02e062ad4e-1787832041620.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xfe242d1da8fd04f6a1f80b6d3d807b02e062ad4e-1787832041620.png"
+ ],
+ "name": "Obscura",
+ "symbol": "OBS",
+ "marketCap": "500688.818984870549311758",
+ "price": "0.00050403564936191361",
+ "priceChange24hPercent": "0.78",
+ "volume24h": "6999.07702864570936855",
+ "communityRecognized": false,
+ "key": "evm--4663:0xfe242d1da8fd04f6a1f80b6d3d807b02e062ad4e",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x14641000a501bdc736116abf84e6fcea9b90a713",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x14641000a501bdc736116abf84e6fcea9b90a713-1788178423240.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x14641000a501bdc736116abf84e6fcea9b90a713-1788178423240.png"
+ ],
+ "name": "MESH Gateway",
+ "symbol": "MESH",
+ "marketCap": "1208210.549215450362706768",
+ "price": "0.00120821054921545036",
+ "priceChange24hPercent": "-0.95",
+ "volume24h": "15093.7629923134211251",
+ "communityRecognized": false,
+ "key": "evm--4663:0x14641000a501bdc736116abf84e6fcea9b90a713",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x7ba36be14dd06ba492f08be6c1b2979c1d0b652c",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x7ba36be14dd06ba492f08be6c1b2979c1d0b652c-1788178016235.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x7ba36be14dd06ba492f08be6c1b2979c1d0b652c-1788178016235.png"
+ ],
+ "name": "PerpsHood",
+ "symbol": "PERPSHOOD",
+ "marketCap": "3288366.118814719718758381",
+ "price": "0.00333761406584314507",
+ "priceChange24hPercent": "-3.74",
+ "volume24h": "214117.4754391452934107",
+ "communityRecognized": false,
+ "key": "evm--4663:0x7ba36be14dd06ba492f08be6c1b2979c1d0b652c",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x77061b45c5e4d440bd681b5f72bd0f4231a6fc04",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x77061b45c5e4d440bd681b5f72bd0f4231a6fc04-1788004867211.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x77061b45c5e4d440bd681b5f72bd0f4231a6fc04-1788004867211.png"
+ ],
+ "name": "RobinVault",
+ "symbol": "ROBINVAULT",
+ "marketCap": "397586.87667975865000995",
+ "price": "0.00073326281522966963",
+ "priceChange24hPercent": "-0.23",
+ "volume24h": "41358.0303770635414252",
+ "communityRecognized": false,
+ "key": "evm--4663:0x77061b45c5e4d440bd681b5f72bd0f4231a6fc04",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x5173b8ea6923c2d40267890d45c46a3480954773",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x5173b8ea6923c2d40267890d45c46a3480954773-1786709002621.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x5173b8ea6923c2d40267890d45c46a3480954773-1786709002621.png"
+ ],
+ "name": "World is Flat",
+ "symbol": "WIF",
+ "marketCap": "992458.903324373126169822",
+ "price": "0.00099245890332437313",
+ "priceChange24hPercent": "19.37",
+ "volume24h": "23124.61496478850486387",
+ "communityRecognized": false,
+ "key": "evm--4663:0x5173b8ea6923c2d40267890d45c46a3480954773",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x5aed379a72bd2533371d153135c47d5eb61babc8",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x5aed379a72bd2533371d153135c47d5eb61babc8-1787054408027.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x5aed379a72bd2533371d153135c47d5eb61babc8-1787054408027.png"
+ ],
+ "name": "Strike",
+ "symbol": "STRIKE",
+ "marketCap": "168166.235763636933834894",
+ "price": "0.00168222444475767271",
+ "priceChange24hPercent": "-2.25",
+ "volume24h": "223.378868",
+ "communityRecognized": false,
+ "key": "evm--4663:0x5aed379a72bd2533371d153135c47d5eb61babc8",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xb48d34dd8b53324cb8525461c8e548522db885ec",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xb48d34dd8b53324cb8525461c8e548522db885ec-1787918407513.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xb48d34dd8b53324cb8525461c8e548522db885ec-1787918407513.png"
+ ],
+ "name": "Sluice",
+ "symbol": "SLUICE",
+ "marketCap": "132222.15206775523555463",
+ "price": "0.00013222215206775524",
+ "priceChange24hPercent": "-14.02",
+ "volume24h": "1919.9328551494190164",
+ "communityRecognized": false,
+ "key": "evm--4663:0xb48d34dd8b53324cb8525461c8e548522db885ec",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xa80eb66b3e0cf66ccb46f8b8c9e7ff5803eeb820",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xa80eb66b3e0cf66ccb46f8b8c9e7ff5803eeb820-1784949348295.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xa80eb66b3e0cf66ccb46f8b8c9e7ff5803eeb820-1784949348295.png"
+ ],
+ "name": "Wen Lambo",
+ "symbol": "WEN",
+ "marketCap": "1312267.572898479705983932",
+ "price": "0.00131226757289847971",
+ "priceChange24hPercent": "-2.91",
+ "volume24h": "15987.37086818711240982",
+ "communityRecognized": false,
+ "key": "evm--4663:0xa80eb66b3e0cf66ccb46f8b8c9e7ff5803eeb820",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ }
+ ],
+ "robinhood_meme|evm--4663|24h|all": [
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x39dbed3a2bd333467115de45665cc57f813c4571",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x39dbed3a2bd333467115de45665cc57f813c4571-1785145437955.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x39dbed3a2bd333467115de45665cc57f813c4571-1785145437955.png"
+ ],
+ "name": "Pons",
+ "symbol": "PONS",
+ "marketCap": "502022018.508028785669424106",
+ "price": "0.71717848311520679734",
+ "priceChange24hPercent": "-2.57",
+ "volume24h": "119154009.59381412371511201962",
+ "communityRecognized": true,
+ "key": "evm--4663:0x39dbed3a2bd333467115de45665cc57f813c4571",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x020bfc650a365f8bb26819deaabf3e21291018b4",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x020bfc650a365f8bb26819deaabf3e21291018b4-1784778353843.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x020bfc650a365f8bb26819deaabf3e21291018b4-1784778353843.png"
+ ],
+ "name": "Cash Cat",
+ "symbol": "CASHCAT",
+ "marketCap": "188581610.80185770225929897",
+ "price": "0.19084952071561432263",
+ "priceChange24hPercent": "-16.46",
+ "volume24h": "21049916.65702474858957836048",
+ "communityRecognized": true,
+ "key": "evm--4663:0x020bfc650a365f8bb26819deaabf3e21291018b4",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xe170dc96ca10103e0d4c5d9293c5a3a72ee365a5",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xe170dc96ca10103e0d4c5d9293c5a3a72ee365a5-1785059757195.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xe170dc96ca10103e0d4c5d9293c5a3a72ee365a5-1785059757195.png"
+ ],
+ "name": "Little John",
+ "symbol": "JOHN",
+ "marketCap": "8802.53080883729502627",
+ "price": "0.0000088025308088373",
+ "priceChange24hPercent": "0",
+ "volume24h": "0",
+ "communityRecognized": false,
+ "key": "evm--4663:0xe170dc96ca10103e0d4c5d9293c5a3a72ee365a5",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xe934e36a439c94017b64a3fece66af12099abf50",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xe934e36a439c94017b64a3fece66af12099abf50-1785290631562.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xe934e36a439c94017b64a3fece66af12099abf50-1785290631562.png"
+ ],
+ "name": "StonkBroker",
+ "symbol": "STONKBROKER",
+ "marketCap": "20652805.024120563132606053",
+ "price": "0.01688272635986417616",
+ "priceChange24hPercent": "24.75",
+ "volume24h": "4521406.59327893300333719145",
+ "communityRecognized": true,
+ "key": "evm--4663:0xe934e36a439c94017b64a3fece66af12099abf50",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x348cc963411fb82cd6e0b64345714fec94f242cb",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x348cc963411fb82cd6e0b64345714fec94f242cb-1787918436309.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x348cc963411fb82cd6e0b64345714fec94f242cb-1787918436309.png"
+ ],
+ "name": "Goose Token",
+ "symbol": "GOOSE",
+ "marketCap": "81393460.832387531242448284",
+ "price": "0.08139346083238753124",
+ "priceChange24hPercent": "-1.25",
+ "volume24h": "373756.302628013583814",
+ "communityRecognized": false,
+ "key": "evm--4663:0x348cc963411fb82cd6e0b64345714fec94f242cb",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x5cb6f181081301b44905f3ae15419112ecabd8a6",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x5cb6f181081301b44905f3ae15419112ecabd8a6-1785411923960.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x5cb6f181081301b44905f3ae15419112ecabd8a6-1785411923960.png"
+ ],
+ "name": "pipedog",
+ "symbol": "PIPEDOG",
+ "marketCap": "35769492.909630204770672297",
+ "price": "0.00289732894922953629",
+ "priceChange24hPercent": "-6.62",
+ "volume24h": "671171.1436398643943899174",
+ "communityRecognized": true,
+ "key": "evm--4663:0x5cb6f181081301b44905f3ae15419112ecabd8a6",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x57c0e45cb534413d1c20a4240955d6bb250bb4f1",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x57c0e45cb534413d1c20a4240955d6bb250bb4f1-1785005199051.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x57c0e45cb534413d1c20a4240955d6bb250bb4f1-1785005199051.png"
+ ],
+ "name": "up",
+ "symbol": "UP",
+ "marketCap": "10939824.275003627272484814",
+ "price": "0.54014115573703348966",
+ "priceChange24hPercent": "-13.38",
+ "volume24h": "1174358.45962533006569663823",
+ "communityRecognized": true,
+ "key": "evm--4663:0x57c0e45cb534413d1c20a4240955d6bb250bb4f1",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x0e0d2c89a5a019fe1cf762e5e33187631dacc21b",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x0e0d2c89a5a019fe1cf762e5e33187631dacc21b-1787400114210.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x0e0d2c89a5a019fe1cf762e5e33187631dacc21b-1787400114210.png"
+ ],
+ "name": "Chump Coin",
+ "symbol": "CHUMP",
+ "marketCap": "35977837.123296699878179831",
+ "price": "0.03597783749651078179",
+ "priceChange24hPercent": "-5.88",
+ "volume24h": "4844506.567446358713267547",
+ "communityRecognized": false,
+ "key": "evm--4663:0x0e0d2c89a5a019fe1cf762e5e33187631dacc21b",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x56910d4409f3a0c78c64dd8d0545ff0705389870",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x56910d4409f3a0c78c64dd8d0545ff0705389870-1784842044117.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x56910d4409f3a0c78c64dd8d0545ff0705389870-1784842044117.png"
+ ],
+ "name": "The Index",
+ "symbol": "Index",
+ "marketCap": "39076127.721770539963962651",
+ "price": "0.03985186707954164859",
+ "priceChange24hPercent": "-11.66",
+ "volume24h": "3881125.5665300244293211294",
+ "communityRecognized": true,
+ "key": "evm--4663:0x56910d4409f3a0c78c64dd8d0545ff0705389870",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x18e674231a58c239dc7daedcffe15ec3a24cff5c",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x18e674231a58c239dc7daedcffe15ec3a24cff5c-1786190410593.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x18e674231a58c239dc7daedcffe15ec3a24cff5c-1786190410593.png"
+ ],
+ "name": "Hookr.fun",
+ "symbol": "HOOKR",
+ "marketCap": "16618445.208237637803108274",
+ "price": "0.0166791731104542394",
+ "priceChange24hPercent": "12.23",
+ "volume24h": "3247486.43125150977558586883",
+ "communityRecognized": true,
+ "key": "evm--4663:0x18e674231a58c239dc7daedcffe15ec3a24cff5c",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x7fe995a80075df3dc8ae11a9b82c7fe4202cd87f",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x7fe995a80075df3dc8ae11a9b82c7fe4202cd87f-1785325956569.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x7fe995a80075df3dc8ae11a9b82c7fe4202cd87f-1785325956569.png"
+ ],
+ "name": "Thinking Cat",
+ "symbol": "HMM",
+ "marketCap": "13039576.030590609490030763",
+ "price": "0.01320187144939991148",
+ "priceChange24hPercent": "-15.91",
+ "volume24h": "1717537.55168642575705604436",
+ "communityRecognized": true,
+ "key": "evm--4663:0x7fe995a80075df3dc8ae11a9b82c7fe4202cd87f",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x45242320dbb855eea8fd36804c6487e10e97fcf9",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x45242320dbb855eea8fd36804c6487e10e97fcf9-1784778612504.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x45242320dbb855eea8fd36804c6487e10e97fcf9-1784778612504.png"
+ ],
+ "name": "TENDIES",
+ "symbol": "TENDIES",
+ "marketCap": "15418336.651928049187952375",
+ "price": "0.0161197596815997701",
+ "priceChange24hPercent": "-7.08",
+ "volume24h": "1796714.40248894664104327714",
+ "communityRecognized": false,
+ "key": "evm--4663:0x45242320dbb855eea8fd36804c6487e10e97fcf9",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xca9c78dd337a67f6e0077f65f5e9218719d30edf",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xca9c78dd337a67f6e0077f65f5e9218719d30edf-1785280831816.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xca9c78dd337a67f6e0077f65f5e9218719d30edf-1785280831816.png"
+ ],
+ "name": "NetNet",
+ "symbol": "NET",
+ "marketCap": "3920472.764198924127605602",
+ "price": "668.59150927027122099446",
+ "priceChange24hPercent": "-11.34",
+ "volume24h": "4895982.00999602102097454",
+ "communityRecognized": false,
+ "key": "evm--4663:0xca9c78dd337a67f6e0077f65f5e9218719d30edf",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xc72f232a6869e6cf34dc06129affd07f8a2a246a",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xc72f232a6869e6cf34dc06129affd07f8a2a246a-1786104032870.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xc72f232a6869e6cf34dc06129affd07f8a2a246a-1786104032870.png"
+ ],
+ "name": "Mancer",
+ "symbol": "MANCER",
+ "marketCap": "5440876.002220110409619299",
+ "price": "0.00217635040088804416",
+ "priceChange24hPercent": "-8.3",
+ "volume24h": "646352.26697227264658006201",
+ "communityRecognized": false,
+ "key": "evm--4663:0xc72f232a6869e6cf34dc06129affd07f8a2a246a",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x6245e67affa44a23077f0ea7f981a8dc743a0c47",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x6245e67affa44a23077f0ea7f981a8dc743a0c47-1785931207872.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x6245e67affa44a23077f0ea7f981a8dc743a0c47-1785931207872.png"
+ ],
+ "name": "frong",
+ "symbol": "FRONG",
+ "marketCap": "5491401.474828610941251233",
+ "price": "0.00549140147482861094",
+ "priceChange24hPercent": "-9.05",
+ "volume24h": "1696846.5958274176329043598",
+ "communityRecognized": false,
+ "key": "evm--4663:0x6245e67affa44a23077f0ea7f981a8dc743a0c47",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xee5576fa1bcaa380e591d01245f406f3f384eb01",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xee5576fa1bcaa380e591d01245f406f3f384eb01-1787832045009.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xee5576fa1bcaa380e591d01245f406f3f384eb01-1787832045009.png"
+ ],
+ "name": "Down to Finance",
+ "symbol": "DTF",
+ "marketCap": "8682703.707015428616989098",
+ "price": "0.00868270374727847651",
+ "priceChange24hPercent": "-21.27",
+ "volume24h": "2074057.2942562462486455924",
+ "communityRecognized": false,
+ "key": "evm--4663:0xee5576fa1bcaa380e591d01245f406f3f384eb01",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x62c71cd34a52c30d894419cbcc55db2afa8032ea",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x62c71cd34a52c30d894419cbcc55db2afa8032ea-1785197280438.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x62c71cd34a52c30d894419cbcc55db2afa8032ea-1785197280438.png"
+ ],
+ "name": "YOLO",
+ "symbol": "YOLO",
+ "marketCap": "6110793.379760146105089284",
+ "price": "0.0062997870322002435",
+ "priceChange24hPercent": "-10.16",
+ "volume24h": "845244.447983754982821435",
+ "communityRecognized": false,
+ "key": "evm--4663:0x62c71cd34a52c30d894419cbcc55db2afa8032ea",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x451b42a15100c340ca12f7c66de06fac5ea2d751",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x451b42a15100c340ca12f7c66de06fac5ea2d751-1787832041620.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x451b42a15100c340ca12f7c66de06fac5ea2d751-1787832041620.png"
+ ],
+ "name": "Longbow",
+ "symbol": "BOW",
+ "marketCap": "5787414.729870295757998562",
+ "price": "0.00578741472987029576",
+ "priceChange24hPercent": "-30.41",
+ "volume24h": "1435139.696562878005416178",
+ "communityRecognized": false,
+ "key": "evm--4663:0x451b42a15100c340ca12f7c66de06fac5ea2d751",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xf2915d1e3c1b0c769d0c756ec43f1c1f6c99cd03",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xf2915d1e3c1b0c769d0c756ec43f1c1f6c99cd03-1784861135802.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xf2915d1e3c1b0c769d0c756ec43f1c1f6c99cd03-1784861135802.png"
+ ],
+ "name": "Arrow",
+ "symbol": "ARROW",
+ "marketCap": "3472922.672130186445530038",
+ "price": "0.38588029898682948721",
+ "priceChange24hPercent": "-17.87",
+ "volume24h": "139673.39023762295482776",
+ "communityRecognized": false,
+ "key": "evm--4663:0xf2915d1e3c1b0c769d0c756ec43f1c1f6c99cd03",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xb9972ca7188e511174947e3936a5315ac7073277",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xb9972ca7188e511174947e3936a5315ac7073277-1787400211008.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xb9972ca7188e511174947e3936a5315ac7073277-1787400211008.png"
+ ],
+ "name": "Prologue",
+ "symbol": "PROLOGUE",
+ "marketCap": "10867196.245258369257184329",
+ "price": "0.01086719624525836926",
+ "priceChange24hPercent": "42.67",
+ "volume24h": "3337601.041500520556820744",
+ "communityRecognized": true,
+ "key": "evm--4663:0xb9972ca7188e511174947e3936a5315ac7073277",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xd7321801caae694090694ff55a9323139f043b88",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xd7321801caae694090694ff55a9323139f043b88-1784779777690.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xd7321801caae694090694ff55a9323139f043b88-1784779777690.png"
+ ],
+ "name": "The Juggernaut",
+ "symbol": "JUGGERNAUT",
+ "marketCap": "3019903.208555332697636294",
+ "price": "0.00322096834857655848",
+ "priceChange24hPercent": "-16.17",
+ "volume24h": "623684.55697067497437462766",
+ "communityRecognized": false,
+ "key": "evm--4663:0xd7321801caae694090694ff55a9323139f043b88",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x8ff92566f2e81bdd68edfaa8cde73942a723796b",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x8ff92566f2e81bdd68edfaa8cde73942a723796b-1784854679354.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x8ff92566f2e81bdd68edfaa8cde73942a723796b-1784854679354.png"
+ ],
+ "name": "ProjectVex",
+ "symbol": "VEX",
+ "marketCap": "2665179.099566858123776638",
+ "price": "0.00266517909956685812",
+ "priceChange24hPercent": "-15.72",
+ "volume24h": "260009.5990488141100617625",
+ "communityRecognized": false,
+ "key": "evm--4663:0x8ff92566f2e81bdd68edfaa8cde73942a723796b",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xcebc0cfbc5dd0893a9e3b9d0f75b211ddf5934a0",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xcebc0cfbc5dd0893a9e3b9d0f75b211ddf5934a0-1788177871007.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xcebc0cfbc5dd0893a9e3b9d0f75b211ddf5934a0-1788177871007.png"
+ ],
+ "name": "clan.tech",
+ "symbol": "CLAN",
+ "marketCap": "1346087.777112335683918246",
+ "price": "0.00134608777721111461",
+ "priceChange24hPercent": "-20.07",
+ "volume24h": "377379.7993652442474761952",
+ "communityRecognized": false,
+ "key": "evm--4663:0xcebc0cfbc5dd0893a9e3b9d0f75b211ddf5934a0",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x232cdfc415d10b673845d83dc02ba2eabe7e30d1",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x232cdfc415d10b673845d83dc02ba2eabe7e30d1-1785412803768.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x232cdfc415d10b673845d83dc02ba2eabe7e30d1-1785412803768.png"
+ ],
+ "name": "What If",
+ "symbol": "IF",
+ "marketCap": "10586906.988923495786384388",
+ "price": "0.01168673691363227001",
+ "priceChange24hPercent": "6.83",
+ "volume24h": "699408.75128724638127334204",
+ "communityRecognized": false,
+ "key": "evm--4663:0x232cdfc415d10b673845d83dc02ba2eabe7e30d1",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x76761d4aee1e7d6b2b8dedbd13925d6c220b0725",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x76761d4aee1e7d6b2b8dedbd13925d6c220b0725-1786276810800.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x76761d4aee1e7d6b2b8dedbd13925d6c220b0725-1786276810800.png"
+ ],
+ "name": "MowCat",
+ "symbol": "MOW",
+ "marketCap": "4608946.621219782201180129",
+ "price": "0.0046089466212197822",
+ "priceChange24hPercent": "-0.44",
+ "volume24h": "451522.19566662427513433",
+ "communityRecognized": false,
+ "key": "evm--4663:0x76761d4aee1e7d6b2b8dedbd13925d6c220b0725",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x77b0aa38451ccdc1b42587e2f80b9879a7f82356",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x77b0aa38451ccdc1b42587e2f80b9879a7f82356-1786536021883.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x77b0aa38451ccdc1b42587e2f80b9879a7f82356-1786536021883.png"
+ ],
+ "name": "DogBull",
+ "symbol": "DOGO",
+ "marketCap": "21768233.653662840214264244",
+ "price": "0.02155270658778499031",
+ "priceChange24hPercent": "337.27",
+ "volume24h": "1493612.29049212800162382",
+ "communityRecognized": false,
+ "key": "evm--4663:0x77b0aa38451ccdc1b42587e2f80b9879a7f82356",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x385b36ff682ab4c76e7c37a66b96aabc466471d5",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x385b36ff682ab4c76e7c37a66b96aabc466471d5-1786017815496.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x385b36ff682ab4c76e7c37a66b96aabc466471d5-1786017815496.png"
+ ],
+ "name": "pools.trade",
+ "symbol": "POOLS",
+ "marketCap": "1556630.67532955837106892",
+ "price": "0.0015566308898872704",
+ "priceChange24hPercent": "-21.88",
+ "volume24h": "890048.23832078131258696",
+ "communityRecognized": false,
+ "key": "evm--4663:0x385b36ff682ab4c76e7c37a66b96aabc466471d5",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x5f62c57e5c537887117eef828b7e3ad41c009feb",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x5f62c57e5c537887117eef828b7e3ad41c009feb-1786018016957.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x5f62c57e5c537887117eef828b7e3ad41c009feb-1786018016957.png"
+ ],
+ "name": "Good In The Hood",
+ "symbol": "GOOD",
+ "marketCap": "3650847.769165494974298471",
+ "price": "0.00464873807570103688",
+ "priceChange24hPercent": "-17.08",
+ "volume24h": "521865.9783489107977956399",
+ "communityRecognized": false,
+ "key": "evm--4663:0x5f62c57e5c537887117eef828b7e3ad41c009feb",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x20024e485c0b22b42855589700721b28320a7777",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x20024e485c0b22b42855589700721b28320a7777-1786363300721.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x20024e485c0b22b42855589700721b28320a7777-1786363300721.png"
+ ],
+ "name": "Prism Assets",
+ "symbol": "PRISM",
+ "marketCap": "2315389.100589988802579267",
+ "price": "0.0023153891005899888",
+ "priceChange24hPercent": "72.21",
+ "volume24h": "317617.0090886330388249384",
+ "communityRecognized": false,
+ "key": "evm--4663:0x20024e485c0b22b42855589700721b28320a7777",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x4a6eec8a30b49d289b9fc865fd374b4d61eab8fb",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x4a6eec8a30b49d289b9fc865fd374b4d61eab8fb-1785758432269.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x4a6eec8a30b49d289b9fc865fd374b4d61eab8fb-1785758432269.png"
+ ],
+ "name": "Liluni",
+ "symbol": "Liluni",
+ "marketCap": "769327.821597585049202932",
+ "price": "0.00076932782159758505",
+ "priceChange24hPercent": "-7.08",
+ "volume24h": "136900.653339801969275365",
+ "communityRecognized": false,
+ "key": "evm--4663:0x4a6eec8a30b49d289b9fc865fd374b4d61eab8fb",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xb8fa8010833463aac5595b55b9045479239eff79",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xb8fa8010833463aac5595b55b9045479239eff79-1786881632532.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xb8fa8010833463aac5595b55b9045479239eff79-1786881632532.png"
+ ],
+ "name": "what the hook?",
+ "symbol": "WTH",
+ "marketCap": "4433865.674641148580658499",
+ "price": "21.11364606971975514599",
+ "priceChange24hPercent": "5.47",
+ "volume24h": "652022.972529364908959044",
+ "communityRecognized": false,
+ "key": "evm--4663:0xb8fa8010833463aac5595b55b9045479239eff79",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xf8bc08092c06db6148114dcf82af881f1085f92b",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xf8bc08092c06db6148114dcf82af881f1085f92b-1785137390595.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xf8bc08092c06db6148114dcf82af881f1085f92b-1785137390595.png"
+ ],
+ "name": "Sherwood Protocol",
+ "symbol": "WOOD",
+ "marketCap": "5294868.778292219416037217",
+ "price": "0.00529486877829221942",
+ "priceChange24hPercent": "2.67",
+ "volume24h": "202725.4262502701851060423",
+ "communityRecognized": false,
+ "key": "evm--4663:0xf8bc08092c06db6148114dcf82af881f1085f92b",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x51fb76be80ab6daaa345d818f4e06441816b4fea",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x51fb76be80ab6daaa345d818f4e06441816b4fea-1786104017624.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x51fb76be80ab6daaa345d818f4e06441816b4fea-1786104017624.png"
+ ],
+ "name": "NASDANQ",
+ "symbol": "NASDANQ",
+ "marketCap": "2336139.896707354816830353",
+ "price": "0.00233613989670735482",
+ "priceChange24hPercent": "121.05",
+ "volume24h": "360687.308786243004221415",
+ "communityRecognized": false,
+ "key": "evm--4663:0x51fb76be80ab6daaa345d818f4e06441816b4fea",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x8ecea3d0e648db646d824aa51eedeb16ac3d6878",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x8ecea3d0e648db646d824aa51eedeb16ac3d6878-1785284432065.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x8ecea3d0e648db646d824aa51eedeb16ac3d6878-1785284432065.png"
+ ],
+ "name": "wire bot",
+ "symbol": "wire",
+ "marketCap": "539032.655786243127634391",
+ "price": "0.00054041288588799596",
+ "priceChange24hPercent": "-9.58",
+ "volume24h": "219149.466511261520284418",
+ "communityRecognized": false,
+ "key": "evm--4663:0x8ecea3d0e648db646d824aa51eedeb16ac3d6878",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xcb5566e73bee5390c75df834d4727dcecc65fc87",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xcb5566e73bee5390c75df834d4727dcecc65fc87-1788354026635.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xcb5566e73bee5390c75df834d4727dcecc65fc87-1788354026635.png"
+ ],
+ "name": "Mast Bond",
+ "symbol": "MAST",
+ "marketCap": "652914.665836647500035643",
+ "price": "0.0006529146658366475",
+ "priceChange24hPercent": "83.34",
+ "volume24h": "170354.45318649432250279",
+ "communityRecognized": false,
+ "key": "evm--4663:0xcb5566e73bee5390c75df834d4727dcecc65fc87",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xf44702b17d9abd53815f703e772f35e9c71a53af",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xf44702b17d9abd53815f703e772f35e9c71a53af-1784822115804.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xf44702b17d9abd53815f703e772f35e9c71a53af-1784822115804.png"
+ ],
+ "name": "RAXOL",
+ "symbol": "RAXOL",
+ "marketCap": "1712329.03977912128931203",
+ "price": "0.00171232903977912129",
+ "priceChange24hPercent": "-6.97",
+ "volume24h": "76943.6019876081832075",
+ "communityRecognized": false,
+ "key": "evm--4663:0xf44702b17d9abd53815f703e772f35e9c71a53af",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x8e62f281f282686fca6dcb39288069a93fc23f1c",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x8e62f281f282686fca6dcb39288069a93fc23f1c-1784830569718.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x8e62f281f282686fca6dcb39288069a93fc23f1c-1784830569718.png"
+ ],
+ "name": "Hoodrat",
+ "symbol": "HOODRAT",
+ "marketCap": "1729390.247190236716847253",
+ "price": "0.00172939031667982091",
+ "priceChange24hPercent": "3.89",
+ "volume24h": "222192.52143028026533131022",
+ "communityRecognized": true,
+ "key": "evm--4663:0x8e62f281f282686fca6dcb39288069a93fc23f1c",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x77581054581b9c525e7dd7a0155de43867532d03",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x77581054581b9c525e7dd7a0155de43867532d03-1784939141560.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x77581054581b9c525e7dd7a0155de43867532d03-1784939141560.png"
+ ],
+ "name": "WISHBONE",
+ "symbol": "WISHBONE",
+ "marketCap": "890566.402734889733341878",
+ "price": "0.00096332665926777235",
+ "priceChange24hPercent": "6.55",
+ "volume24h": "130641.64816688500890537",
+ "communityRecognized": false,
+ "key": "evm--4663:0x77581054581b9c525e7dd7a0155de43867532d03",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x43eea882b845a8493152ebc55cf30ae9281b02d5",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x43eea882b845a8493152ebc55cf30ae9281b02d5-1785292897426.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x43eea882b845a8493152ebc55cf30ae9281b02d5-1785292897426.png"
+ ],
+ "name": "FIRE",
+ "symbol": "FIRE",
+ "marketCap": "1462625.380905727143813291",
+ "price": "0.0014809585098065579",
+ "priceChange24hPercent": "12.11",
+ "volume24h": "155884.215541360146363246",
+ "communityRecognized": false,
+ "key": "evm--4663:0x43eea882b845a8493152ebc55cf30ae9281b02d5",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xac77646bcff9d52e99800534192e0290933f4094",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xac77646bcff9d52e99800534192e0290933f4094-1787572842778.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xac77646bcff9d52e99800534192e0290933f4094-1787572842778.png"
+ ],
+ "name": "Martians",
+ "symbol": "MARTIANS",
+ "marketCap": "421107.798117296771237422",
+ "price": "0.00042110779812399404",
+ "priceChange24hPercent": "-15.12",
+ "volume24h": "103002.20281301676551478",
+ "communityRecognized": false,
+ "key": "evm--4663:0xac77646bcff9d52e99800534192e0290933f4094",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xf0568863195770965a6d8abb0aa87f4314b80320",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xf0568863195770965a6d8abb0aa87f4314b80320-1785239850960.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xf0568863195770965a6d8abb0aa87f4314b80320-1785239850960.png"
+ ],
+ "name": "SLIPPY",
+ "symbol": "SLIPPY",
+ "marketCap": "2285143.7736062878747713",
+ "price": "0.0022851443913658089",
+ "priceChange24hPercent": "8.03",
+ "volume24h": "125559.58999912580556649352",
+ "communityRecognized": false,
+ "key": "evm--4663:0xf0568863195770965a6d8abb0aa87f4314b80320",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x9ca1cc0c90d97b4f36c5e2232d4fbd705a73c65d",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x9ca1cc0c90d97b4f36c5e2232d4fbd705a73c65d-1786363300721.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x9ca1cc0c90d97b4f36c5e2232d4fbd705a73c65d-1786363300721.png"
+ ],
+ "name": "TA FUND",
+ "symbol": "TA",
+ "marketCap": "2169025.59885951907590852",
+ "price": "0.00216902559885951908",
+ "priceChange24hPercent": "-16.82",
+ "volume24h": "162073.316988105440870788",
+ "communityRecognized": false,
+ "key": "evm--4663:0x9ca1cc0c90d97b4f36c5e2232d4fbd705a73c65d",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x7168563b0e70124f0c7c0cf2f13a8d1861baf4a5",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x7168563b0e70124f0c7c0cf2f13a8d1861baf4a5-1785276114071.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x7168563b0e70124f0c7c0cf2f13a8d1861baf4a5-1785276114071.png"
+ ],
+ "name": "Backed",
+ "symbol": "BACKED",
+ "marketCap": "683975.046016032677877222",
+ "price": "0.00072634119132098617",
+ "priceChange24hPercent": "-29.11",
+ "volume24h": "110998.05371009463281507",
+ "communityRecognized": false,
+ "key": "evm--4663:0x7168563b0e70124f0c7c0cf2f13a8d1861baf4a5",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xe3fa12da7fa026b21817f16622e8ae48fa785166",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xe3fa12da7fa026b21817f16622e8ae48fa785166-1786536006382.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xe3fa12da7fa026b21817f16622e8ae48fa785166-1786536006382.png"
+ ],
+ "name": "Yardkeeper",
+ "symbol": "YARD",
+ "marketCap": "1661101.247537698075666796",
+ "price": "0.00237034455488214896",
+ "priceChange24hPercent": "12.56",
+ "volume24h": "61644.843779808031652072",
+ "communityRecognized": false,
+ "key": "evm--4663:0xe3fa12da7fa026b21817f16622e8ae48fa785166",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x727701f88f09fed71eb217bcea88b3f314cf7079",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x727701f88f09fed71eb217bcea88b3f314cf7079-1785229474064.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x727701f88f09fed71eb217bcea88b3f314cf7079-1785229474064.png"
+ ],
+ "name": "GRID by Virtuals",
+ "symbol": "GRID",
+ "marketCap": "1249980.578691939741013368",
+ "price": "0.00124998057869193974",
+ "priceChange24hPercent": "-19.17",
+ "volume24h": "33049.4348259689788985",
+ "communityRecognized": false,
+ "key": "evm--4663:0x727701f88f09fed71eb217bcea88b3f314cf7079",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x96765066f6a040a21eb027167d2315b707c82633",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x96765066f6a040a21eb027167d2315b707c82633-1784938636403.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x96765066f6a040a21eb027167d2315b707c82633-1784938636403.png"
+ ],
+ "name": "Ravenhood",
+ "symbol": "RVH",
+ "marketCap": "390628.355788254703232466",
+ "price": "0.00496337736804456155",
+ "priceChange24hPercent": "-24.94",
+ "volume24h": "42114.077570100452830521",
+ "communityRecognized": false,
+ "key": "evm--4663:0x96765066f6a040a21eb027167d2315b707c82633",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xbd957cc9f1e94617792f37bc40f2f299e78acf3e",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xbd957cc9f1e94617792f37bc40f2f299e78acf3e-1785845024248.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xbd957cc9f1e94617792f37bc40f2f299e78acf3e-1785845024248.png"
+ ],
+ "name": "Crude Cat",
+ "symbol": "CRUDECAT",
+ "marketCap": "2307997.035220816076014931",
+ "price": "0.00597695795708211835",
+ "priceChange24hPercent": "-18.37",
+ "volume24h": "235075.435866963851626067",
+ "communityRecognized": false,
+ "key": "evm--4663:0xbd957cc9f1e94617792f37bc40f2f299e78acf3e",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xfb1bcb6817f7b8fa86896d3253b16aeb7bd6a5a8",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xfb1bcb6817f7b8fa86896d3253b16aeb7bd6a5a8-1785008871536.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xfb1bcb6817f7b8fa86896d3253b16aeb7bd6a5a8-1785008871536.png"
+ ],
+ "name": "one life, its worth an attempt",
+ "symbol": "worth",
+ "marketCap": "943016.144584851830199867",
+ "price": "0.00112942228622299282",
+ "priceChange24hPercent": "-41.88",
+ "volume24h": "120227.089695412003159485",
+ "communityRecognized": false,
+ "key": "evm--4663:0xfb1bcb6817f7b8fa86896d3253b16aeb7bd6a5a8",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x49bac47750f3dcdba49350b5d74fd399e90f97c6",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x49bac47750f3dcdba49350b5d74fd399e90f97c6-1786190483451.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x49bac47750f3dcdba49350b5d74fd399e90f97c6-1786190483451.png"
+ ],
+ "name": "The Bull",
+ "symbol": "BULL",
+ "marketCap": "1844160.155161726289434023",
+ "price": "0.00184418762652969795",
+ "priceChange24hPercent": "-9.53",
+ "volume24h": "111165.478002960911664336",
+ "communityRecognized": false,
+ "key": "evm--4663:0x49bac47750f3dcdba49350b5d74fd399e90f97c6",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x9727b500ac8726c716f018e5d3ca871481245065",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x9727b500ac8726c716f018e5d3ca871481245065-1785196146146.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x9727b500ac8726c716f018e5d3ca871481245065-1785196146146.png"
+ ],
+ "name": "Ansem Cat",
+ "symbol": "AnsemCat",
+ "marketCap": "365173.245867752584482233",
+ "price": "0.00000086803405326429",
+ "priceChange24hPercent": "-12.72",
+ "volume24h": "53.4897532851138468",
+ "communityRecognized": false,
+ "key": "evm--4663:0x9727b500ac8726c716f018e5d3ca871481245065",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xeafa804083a4886a9460b5b19557334a652beba8",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xeafa804083a4886a9460b5b19557334a652beba8-1785002418521.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xeafa804083a4886a9460b5b19557334a652beba8-1785002418521.png"
+ ],
+ "name": "Naven Network",
+ "symbol": "NAVEN",
+ "marketCap": "379120.192909717179101389",
+ "price": "0.00043238178622577899",
+ "priceChange24hPercent": "5.46",
+ "volume24h": "96198.47367125811357341",
+ "communityRecognized": false,
+ "key": "evm--4663:0xeafa804083a4886a9460b5b19557334a652beba8",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x0762c1708f0d23f86b29d6b857121ff7df357506",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x0762c1708f0d23f86b29d6b857121ff7df357506-1785931280846.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x0762c1708f0d23f86b29d6b857121ff7df357506-1785931280846.png"
+ ],
+ "name": "this is not a website",
+ "symbol": "website",
+ "marketCap": "5197878.936462059211378102",
+ "price": "0.00555662732124259188",
+ "priceChange24hPercent": "18.8",
+ "volume24h": "418142.061188610976571617",
+ "communityRecognized": false,
+ "key": "evm--4663:0x0762c1708f0d23f86b29d6b857121ff7df357506",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x3b4a0048a00787a644932cd648faa043410c163e",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x3b4a0048a00787a644932cd648faa043410c163e-1788264033495.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x3b4a0048a00787a644932cd648faa043410c163e-1788264033495.png"
+ ],
+ "name": "The Dogestar",
+ "symbol": "SIRIUS",
+ "marketCap": "889308.889941344775296854",
+ "price": "0.00088930888995381725",
+ "priceChange24hPercent": "-56.6",
+ "volume24h": "821876.41690944907080550492",
+ "communityRecognized": false,
+ "key": "evm--4663:0x3b4a0048a00787a644932cd648faa043410c163e",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x2103faa9d1762e27a716c61718b3acf3ec1f9bf1",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x2103faa9d1762e27a716c61718b3acf3ec1f9bf1-1785016173111.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x2103faa9d1762e27a716c61718b3acf3ec1f9bf1-1785016173111.png"
+ ],
+ "name": "Robin Hood",
+ "symbol": "FOX",
+ "marketCap": "819155.44037873657318132",
+ "price": "0.00087392746402269212",
+ "priceChange24hPercent": "-5.3",
+ "volume24h": "256273.385526603899418197",
+ "communityRecognized": false,
+ "key": "evm--4663:0x2103faa9d1762e27a716c61718b3acf3ec1f9bf1",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x532c5583671870723ceef573600208af49c87c54",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x532c5583671870723ceef573600208af49c87c54-1787572802676.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x532c5583671870723ceef573600208af49c87c54-1787572802676.png"
+ ],
+ "name": "Canopy Finance",
+ "symbol": "CNPY",
+ "marketCap": "2043406.519085803891568646",
+ "price": "0.00268033834862245422",
+ "priceChange24hPercent": "-4.5",
+ "volume24h": "1150267.74395023183944733235",
+ "communityRecognized": false,
+ "key": "evm--4663:0x532c5583671870723ceef573600208af49c87c54",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xaa40e79e987517f7462bf79315b8a118799b04e3",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xaa40e79e987517f7462bf79315b8a118799b04e3-1787659277021.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xaa40e79e987517f7462bf79315b8a118799b04e3-1787659277021.png"
+ ],
+ "name": "scopl.live",
+ "symbol": "SCOPL",
+ "marketCap": "401077.566822741022302925",
+ "price": "0.00041294851870877833",
+ "priceChange24hPercent": "-20.52",
+ "volume24h": "224723.96428726743934301682",
+ "communityRecognized": false,
+ "key": "evm--4663:0xaa40e79e987517f7462bf79315b8a118799b04e3",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x01637b14b7378b99de75a64d50656d98488d9a4d",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x01637b14b7378b99de75a64d50656d98488d9a4d-1784777167517.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x01637b14b7378b99de75a64d50656d98488d9a4d-1784777167517.png"
+ ],
+ "name": "Lady Marian",
+ "symbol": "MARIAN",
+ "marketCap": "628696.510942059642535741",
+ "price": "0.00063887984115372445",
+ "priceChange24hPercent": "-11.58",
+ "volume24h": "104202.168378924491549268",
+ "communityRecognized": false,
+ "key": "evm--4663:0x01637b14b7378b99de75a64d50656d98488d9a4d",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xa5be0eeb82a013dc7867b9e020c36a69da666666",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xa5be0eeb82a013dc7867b9e020c36a69da666666-1787227214299.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xa5be0eeb82a013dc7867b9e020c36a69da666666-1787227214299.png"
+ ],
+ "name": "CLOCK IN",
+ "symbol": "CLOCKIN",
+ "marketCap": "390075.568640705056017851",
+ "price": "0.00039007557111482805",
+ "priceChange24hPercent": "16.1",
+ "volume24h": "63928.0115982491239086",
+ "communityRecognized": false,
+ "key": "evm--4663:0xa5be0eeb82a013dc7867b9e020c36a69da666666",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xf0e17e54239cd945cd7bea471a3a2ca6a8c7f7a3",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xf0e17e54239cd945cd7bea471a3a2ca6a8c7f7a3-1785403528086.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xf0e17e54239cd945cd7bea471a3a2ca6a8c7f7a3-1785403528086.png"
+ ],
+ "name": "Lemon",
+ "symbol": "LEMON.FUN",
+ "marketCap": "567512.386103755069902849",
+ "price": "0.00057397490461328917",
+ "priceChange24hPercent": "-15.2",
+ "volume24h": "28709.2760080819226757",
+ "communityRecognized": false,
+ "key": "evm--4663:0xf0e17e54239cd945cd7bea471a3a2ca6a8c7f7a3",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x5edb417509a869b1d8222dea05257b8c8ba00361",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x5edb417509a869b1d8222dea05257b8c8ba00361-1786881611635.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x5edb417509a869b1d8222dea05257b8c8ba00361-1786881611635.png"
+ ],
+ "name": "DeFi Traded Fund",
+ "symbol": "DTF",
+ "marketCap": "2101276.505389603821695618",
+ "price": "0.00258078710768923079",
+ "priceChange24hPercent": "-1.3",
+ "volume24h": "125896.034774",
+ "communityRecognized": false,
+ "key": "evm--4663:0x5edb417509a869b1d8222dea05257b8c8ba00361",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x1d5aad3c0d6066078ea60f384a2492a550db30b0",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x1d5aad3c0d6066078ea60f384a2492a550db30b0-1786623045142.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x1d5aad3c0d6066078ea60f384a2492a550db30b0-1786623045142.png"
+ ],
+ "name": "STACKERS",
+ "symbol": "STACK",
+ "marketCap": "328316.712147829017752093",
+ "price": "0.00052860209114416726",
+ "priceChange24hPercent": "-39.53",
+ "volume24h": "88525.5334792368953772576",
+ "communityRecognized": false,
+ "key": "evm--4663:0x1d5aad3c0d6066078ea60f384a2492a550db30b0",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xd1e861cc5eee7ea88649206b74504d78ccd7aeea",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xd1e861cc5eee7ea88649206b74504d78ccd7aeea-1786708875938.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xd1e861cc5eee7ea88649206b74504d78ccd7aeea-1786708875938.png"
+ ],
+ "name": "Alandale",
+ "symbol": "LUTE",
+ "marketCap": "453658.504315338644932708",
+ "price": "0.00853535222467991659",
+ "priceChange24hPercent": "13.9",
+ "volume24h": "1041.8109374665231065",
+ "communityRecognized": false,
+ "key": "evm--4663:0xd1e861cc5eee7ea88649206b74504d78ccd7aeea",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xbc9e7b1c5c0081f4ae85e71ec95703d3dec9ffad",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xbc9e7b1c5c0081f4ae85e71ec95703d3dec9ffad-1786449612801.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xbc9e7b1c5c0081f4ae85e71ec95703d3dec9ffad-1786449612801.png"
+ ],
+ "name": "Bucket Shop",
+ "symbol": "Bucket",
+ "marketCap": "3487714.386686102696356531",
+ "price": "0.00349446150649011294",
+ "priceChange24hPercent": "29.27",
+ "volume24h": "244251.5313017966904779872",
+ "communityRecognized": false,
+ "key": "evm--4663:0xbc9e7b1c5c0081f4ae85e71ec95703d3dec9ffad",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x8d4dfaaa4198b6486e0293fec914c2b6a821d4dc",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x8d4dfaaa4198b6486e0293fec914c2b6a821d4dc-1784777336133.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x8d4dfaaa4198b6486e0293fec914c2b6a821d4dc-1784777336133.png"
+ ],
+ "name": "KITSU",
+ "symbol": "KITSU",
+ "marketCap": "1112588.761797044854702224",
+ "price": "0.00118106846427510267",
+ "priceChange24hPercent": "-7.7",
+ "volume24h": "118147.202067314724046081",
+ "communityRecognized": false,
+ "key": "evm--4663:0x8d4dfaaa4198b6486e0293fec914c2b6a821d4dc",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xe15db7c8547a0add11eb26a700246cca08aefce5",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xe15db7c8547a0add11eb26a700246cca08aefce5-1785409545430.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xe15db7c8547a0add11eb26a700246cca08aefce5-1785409545430.png"
+ ],
+ "name": "Shibinhood",
+ "symbol": "WOOF",
+ "marketCap": "1215493.548453345796307932",
+ "price": "0.00000121549354859677",
+ "priceChange24hPercent": "2.54",
+ "volume24h": "187334.243924157075583866",
+ "communityRecognized": true,
+ "key": "evm--4663:0xe15db7c8547a0add11eb26a700246cca08aefce5",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x69984ad3322300039f2855f81c44dbc532efe744",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x69984ad3322300039f2855f81c44dbc532efe744-1785359089193.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x69984ad3322300039f2855f81c44dbc532efe744-1785359089193.png"
+ ],
+ "name": "Tygr",
+ "symbol": "TYGR",
+ "marketCap": "283285.985380009240663877",
+ "price": "0.00031503893798487123",
+ "priceChange24hPercent": "-18.62",
+ "volume24h": "75743.558711613512144332",
+ "communityRecognized": false,
+ "key": "evm--4663:0x69984ad3322300039f2855f81c44dbc532efe744",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xa0e67be79118704a35e7d4b20c3ec4df36ef6e10",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xa0e67be79118704a35e7d4b20c3ec4df36ef6e10-1788091298404.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xa0e67be79118704a35e7d4b20c3ec4df36ef6e10-1788091298404.png"
+ ],
+ "name": "Pons Index",
+ "symbol": "PONSFOLIO",
+ "marketCap": "34018.737934824480556041",
+ "price": "0.00003401873793482448",
+ "priceChange24hPercent": "-31.39",
+ "volume24h": "1845.25467733650970038",
+ "communityRecognized": false,
+ "key": "evm--4663:0xa0e67be79118704a35e7d4b20c3ec4df36ef6e10",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x0e8720b8cd84f95b4b6696adbfa8063c4b8b94f2",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x0e8720b8cd84f95b4b6696adbfa8063c4b8b94f2-1784804605586.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x0e8720b8cd84f95b4b6696adbfa8063c4b8b94f2-1784804605586.png"
+ ],
+ "name": "Buy Button",
+ "symbol": "BUY",
+ "marketCap": "748201.591140112186514847",
+ "price": "0.00082408396918163004",
+ "priceChange24hPercent": "-4.3",
+ "volume24h": "99098.1633125375771564",
+ "communityRecognized": false,
+ "key": "evm--4663:0x0e8720b8cd84f95b4b6696adbfa8063c4b8b94f2",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x3f9f0b6073ee8c495aed96869af31850fed40feb",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x3f9f0b6073ee8c495aed96869af31850fed40feb-1785412064587.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x3f9f0b6073ee8c495aed96869af31850fed40feb-1785412064587.png"
+ ],
+ "name": "Dice Protocol",
+ "symbol": "DICE",
+ "marketCap": "246206.974893546367185266",
+ "price": "0.00025278197889207848",
+ "priceChange24hPercent": "10.15",
+ "volume24h": "146739.600094757141635484",
+ "communityRecognized": false,
+ "key": "evm--4663:0x3f9f0b6073ee8c495aed96869af31850fed40feb",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x298348d5b2e45c774e3ee4f1a0924071dfbdc8c7",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x298348d5b2e45c774e3ee4f1a0924071dfbdc8c7-1786190550357.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x298348d5b2e45c774e3ee4f1a0924071dfbdc8c7-1786190550357.png"
+ ],
+ "name": "swappy",
+ "symbol": "swappy",
+ "marketCap": "449114.126612554601310211",
+ "price": "0.0004491141266125546",
+ "priceChange24hPercent": "-22.43",
+ "volume24h": "148998.96954404726968047",
+ "communityRecognized": false,
+ "key": "evm--4663:0x298348d5b2e45c774e3ee4f1a0924071dfbdc8c7",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xace55fe98bab14366dd49ab5aa5df76aa11a3c6f",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xace55fe98bab14366dd49ab5aa5df76aa11a3c6f-1785845024248.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xace55fe98bab14366dd49ab5aa5df76aa11a3c6f-1785845024248.png"
+ ],
+ "name": "Wojak",
+ "symbol": "WOJAK",
+ "marketCap": "1692216.549970488123565045",
+ "price": "0.00185787421689451655",
+ "priceChange24hPercent": "20.87",
+ "volume24h": "74447.7342328660145371",
+ "communityRecognized": false,
+ "key": "evm--4663:0xace55fe98bab14366dd49ab5aa5df76aa11a3c6f",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xe4b8723d202fdd0298b1d7496a86656b2986c532",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xe4b8723d202fdd0298b1d7496a86656b2986c532-1786622839074.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xe4b8723d202fdd0298b1d7496a86656b2986c532-1786622839074.png"
+ ],
+ "name": "StockRip",
+ "symbol": "RIP",
+ "marketCap": "938245.272755205458732501",
+ "price": "0.0009382885426150306",
+ "priceChange24hPercent": "-32",
+ "volume24h": "99319.68263892314420877",
+ "communityRecognized": false,
+ "key": "evm--4663:0xe4b8723d202fdd0298b1d7496a86656b2986c532",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xfe242d1da8fd04f6a1f80b6d3d807b02e062ad4e",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xfe242d1da8fd04f6a1f80b6d3d807b02e062ad4e-1787832041620.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xfe242d1da8fd04f6a1f80b6d3d807b02e062ad4e-1787832041620.png"
+ ],
+ "name": "Obscura",
+ "symbol": "OBS",
+ "marketCap": "500688.818984870549311758",
+ "price": "0.00050403564936191361",
+ "priceChange24hPercent": "-32.51",
+ "volume24h": "219306.60461458429144833",
+ "communityRecognized": false,
+ "key": "evm--4663:0xfe242d1da8fd04f6a1f80b6d3d807b02e062ad4e",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x14641000a501bdc736116abf84e6fcea9b90a713",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x14641000a501bdc736116abf84e6fcea9b90a713-1788178423240.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x14641000a501bdc736116abf84e6fcea9b90a713-1788178423240.png"
+ ],
+ "name": "MESH Gateway",
+ "symbol": "MESH",
+ "marketCap": "1208210.549215450362706768",
+ "price": "0.00120821054921545036",
+ "priceChange24hPercent": "4.5",
+ "volume24h": "188144.4713104379707545156",
+ "communityRecognized": false,
+ "key": "evm--4663:0x14641000a501bdc736116abf84e6fcea9b90a713",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x7ba36be14dd06ba492f08be6c1b2979c1d0b652c",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x7ba36be14dd06ba492f08be6c1b2979c1d0b652c-1788178016235.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x7ba36be14dd06ba492f08be6c1b2979c1d0b652c-1788178016235.png"
+ ],
+ "name": "PerpsHood",
+ "symbol": "PERPSHOOD",
+ "marketCap": "3288366.118814719718758381",
+ "price": "0.00333761406584314507",
+ "priceChange24hPercent": "221.19",
+ "volume24h": "3608182.64584619393431802184",
+ "communityRecognized": false,
+ "key": "evm--4663:0x7ba36be14dd06ba492f08be6c1b2979c1d0b652c",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x77061b45c5e4d440bd681b5f72bd0f4231a6fc04",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x77061b45c5e4d440bd681b5f72bd0f4231a6fc04-1788004867211.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x77061b45c5e4d440bd681b5f72bd0f4231a6fc04-1788004867211.png"
+ ],
+ "name": "RobinVault",
+ "symbol": "ROBINVAULT",
+ "marketCap": "397586.87667975865000995",
+ "price": "0.00073326281522966963",
+ "priceChange24hPercent": "-80.82",
+ "volume24h": "1029592.004454216958580522",
+ "communityRecognized": false,
+ "key": "evm--4663:0x77061b45c5e4d440bd681b5f72bd0f4231a6fc04",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x5173b8ea6923c2d40267890d45c46a3480954773",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x5173b8ea6923c2d40267890d45c46a3480954773-1786709002621.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x5173b8ea6923c2d40267890d45c46a3480954773-1786709002621.png"
+ ],
+ "name": "World is Flat",
+ "symbol": "WIF",
+ "marketCap": "992458.903324373126169822",
+ "price": "0.00099245890332437313",
+ "priceChange24hPercent": "66.12",
+ "volume24h": "78463.15300625280884197",
+ "communityRecognized": false,
+ "key": "evm--4663:0x5173b8ea6923c2d40267890d45c46a3480954773",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0x5aed379a72bd2533371d153135c47d5eb61babc8",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x5aed379a72bd2533371d153135c47d5eb61babc8-1787054408027.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0x5aed379a72bd2533371d153135c47d5eb61babc8-1787054408027.png"
+ ],
+ "name": "Strike",
+ "symbol": "STRIKE",
+ "marketCap": "168166.235763636933834894",
+ "price": "0.00168222444475767271",
+ "priceChange24hPercent": "-5.91",
+ "volume24h": "8635.191387",
+ "communityRecognized": false,
+ "key": "evm--4663:0x5aed379a72bd2533371d153135c47d5eb61babc8",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xb48d34dd8b53324cb8525461c8e548522db885ec",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xb48d34dd8b53324cb8525461c8e548522db885ec-1787918407513.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xb48d34dd8b53324cb8525461c8e548522db885ec-1787918407513.png"
+ ],
+ "name": "Sluice",
+ "symbol": "SLUICE",
+ "marketCap": "132222.15206775523555463",
+ "price": "0.00013222215206775524",
+ "priceChange24hPercent": "-34.88",
+ "volume24h": "75236.2624130388724919",
+ "communityRecognized": false,
+ "key": "evm--4663:0xb48d34dd8b53324cb8525461c8e548522db885ec",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ },
+ {
+ "isNative": false,
+ "networkId": "evm--4663",
+ "address": "0xa80eb66b3e0cf66ccb46f8b8c9e7ff5803eeb820",
+ "logoUrl": "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xa80eb66b3e0cf66ccb46f8b8c9e7ff5803eeb820-1784949348295.png",
+ "logoUrls": [
+ "https://uni.onekey-asset.com/server-service-indexer/evm--4663/tokens/address-0xa80eb66b3e0cf66ccb46f8b8c9e7ff5803eeb820-1784949348295.png"
+ ],
+ "name": "Wen Lambo",
+ "symbol": "WEN",
+ "marketCap": "1312267.572898479705983932",
+ "price": "0.00131226757289847971",
+ "priceChange24hPercent": "-6",
+ "volume24h": "93576.5243818584747787434",
+ "communityRecognized": false,
+ "key": "evm--4663:0xa80eb66b3e0cf66ccb46f8b8c9e7ff5803eeb820",
+ "kind": "token",
+ "sourceCategory": "robinhood_meme",
+ "networkName": "Robinhood",
+ "networkLogoUrl": "https://uni.onekey-asset.com/dashboard/logo/upload_1782996521358.0.27118193195795703.0.png"
+ }
+ ],
+ "robinhood_meme|evm--8453|5m|all": [],
+ "robinhood_meme|evm--8453|1h|all": [],
+ "robinhood_meme|evm--8453|4h|all": [],
+ "robinhood_meme|evm--8453|24h|all": [],
+ "robinhood_meme|sui--mainnet|5m|all": [],
+ "robinhood_meme|sui--mainnet|1h|all": [],
+ "robinhood_meme|sui--mainnet|4h|all": [],
+ "robinhood_meme|sui--mainnet|24h|all": [],
+ "robinhood_meme|evm--196|5m|all": [],
+ "robinhood_meme|evm--196|1h|all": [],
+ "robinhood_meme|evm--196|4h|all": [],
+ "robinhood_meme|evm--196|24h|all": [],
+ "robinhood_meme|evm--42161|5m|all": [],
+ "robinhood_meme|evm--42161|1h|all": [],
+ "robinhood_meme|evm--42161|4h|all": [],
+ "robinhood_meme|evm--42161|24h|all": [],
+ "robinhood_meme|evm--10|5m|all": [],
+ "robinhood_meme|evm--10|1h|all": [],
+ "robinhood_meme|evm--10|4h|all": [],
+ "robinhood_meme|evm--10|24h|all": [],
+ "robinhood_meme|evm--43114|5m|all": [],
+ "robinhood_meme|evm--43114|1h|all": [],
+ "robinhood_meme|evm--43114|4h|all": [],
+ "robinhood_meme|evm--43114|24h|all": [],
+ "robinhood_meme|evm--137|5m|all": [],
+ "robinhood_meme|evm--137|1h|all": [],
+ "robinhood_meme|evm--137|4h|all": [],
+ "robinhood_meme|evm--137|24h|all": [],
+ "robinhood_meme|evm--143|5m|all": [],
+ "robinhood_meme|evm--143|1h|all": [],
+ "robinhood_meme|evm--143|4h|all": [],
+ "robinhood_meme|evm--143|24h|all": [],
+ "robinhood_meme|evm--146|5m|all": [],
+ "robinhood_meme|evm--146|1h|all": [],
+ "robinhood_meme|evm--146|4h|all": [],
+ "robinhood_meme|evm--146|24h|all": [],
+ "robinhood_meme|evm--59144|5m|all": [],
+ "robinhood_meme|evm--59144|1h|all": [],
+ "robinhood_meme|evm--59144|4h|all": [],
+ "robinhood_meme|evm--59144|24h|all": [],
+ "robinhood_meme|ton--mainnet|5m|all": [],
+ "robinhood_meme|ton--mainnet|1h|all": [],
+ "robinhood_meme|ton--mainnet|4h|all": [],
+ "robinhood_meme|ton--mainnet|24h|all": []
+ },
+ "perps": {
+ "hot": [
+ {
+ "key": "perps:AERO",
+ "kind": "perp",
+ "sourceCategory": "hot",
+ "name": "AERO",
+ "symbol": "AERO",
+ "dexLabel": "Hyperliquid",
+ "logoUrl": "https://uni.onekey-asset.com/static/hyperliquid/AERO.png",
+ "price": "0.66772",
+ "priceChange24hPercent": "23.4849",
+ "volume24h": "12086611.5491099954",
+ "maxLeverage": 3
+ },
+ {
+ "key": "perps:WLD",
+ "kind": "perp",
+ "sourceCategory": "hot",
+ "name": "WLD",
+ "symbol": "WLD",
+ "dexLabel": "Hyperliquid",
+ "logoUrl": "https://uni.onekey-asset.com/static/hyperliquid/WLD.png",
+ "price": "0.47381",
+ "priceChange24hPercent": "13.7818",
+ "volume24h": "46689718.8531849831",
+ "maxLeverage": 10
+ },
+ {
+ "key": "perps:VVV",
+ "kind": "perp",
+ "sourceCategory": "hot",
+ "name": "VVV",
+ "symbol": "VVV",
+ "dexLabel": "Hyperliquid",
+ "logoUrl": "https://uni.onekey-asset.com/static/hyperliquid/VVV.png",
+ "price": "17.843",
+ "priceChange24hPercent": "4.7739",
+ "volume24h": "9827504.2810999993",
+ "maxLeverage": 3
+ },
+ {
+ "key": "perps:INJ",
+ "kind": "perp",
+ "sourceCategory": "hot",
+ "name": "INJ",
+ "symbol": "INJ",
+ "dexLabel": "Hyperliquid",
+ "logoUrl": "https://uni.onekey-asset.com/static/hyperliquid/INJ.png",
+ "price": "6.4834",
+ "priceChange24hPercent": "17.5338",
+ "volume24h": "20680485.8125400059",
+ "maxLeverage": 5
+ },
+ {
+ "key": "perps:BTC",
+ "kind": "perp",
+ "sourceCategory": "hot",
+ "name": "BTC",
+ "symbol": "BTC",
+ "dexLabel": "Hyperliquid",
+ "logoUrl": "https://uni.onekey-asset.com/static/hyperliquid/BTC.png",
+ "price": "78759.0",
+ "priceChange24hPercent": "-1.1249",
+ "volume24h": "1615979368.5051996708",
+ "maxLeverage": 40
+ },
+ {
+ "key": "perps:PUMP",
+ "kind": "perp",
+ "sourceCategory": "hot",
+ "name": "PUMP",
+ "symbol": "PUMP",
+ "dexLabel": "Hyperliquid",
+ "logoUrl": "https://uni.onekey-asset.com/static/hyperliquid/PUMP.png",
+ "price": "0.004334",
+ "priceChange24hPercent": "8.6488",
+ "volume24h": "157105528.058822006",
+ "maxLeverage": 10
+ },
+ {
+ "key": "perps:LTC",
+ "kind": "perp",
+ "sourceCategory": "hot",
+ "name": "LTC",
+ "symbol": "LTC",
+ "dexLabel": "Hyperliquid",
+ "logoUrl": "https://uni.onekey-asset.com/static/hyperliquid/LTC.png",
+ "price": "55.055",
+ "priceChange24hPercent": "1.4614",
+ "volume24h": "14817474.8585399985",
+ "maxLeverage": 10
+ },
+ {
+ "key": "perps:kPEPE",
+ "kind": "perp",
+ "sourceCategory": "hot",
+ "name": "kPEPE",
+ "symbol": "kPEPE",
+ "dexLabel": "Hyperliquid",
+ "logoUrl": "https://uni.onekey-asset.com/static/hyperliquid/kPEPE.png",
+ "price": "0.003595",
+ "priceChange24hPercent": "0.2789",
+ "volume24h": "18371316.9629879966",
+ "maxLeverage": 10
+ },
+ {
+ "key": "perps:ENA",
+ "kind": "perp",
+ "sourceCategory": "hot",
+ "name": "ENA",
+ "symbol": "ENA",
+ "dexLabel": "Hyperliquid",
+ "logoUrl": "https://uni.onekey-asset.com/static/hyperliquid/ENA.png",
+ "price": "0.16411",
+ "priceChange24hPercent": "-5.2865",
+ "volume24h": "27271311.1723399907",
+ "maxLeverage": 10
+ }
+ ],
+ "newList": [
+ {
+ "key": "perps:PONS",
+ "kind": "perp",
+ "sourceCategory": "newList",
+ "name": "PONS",
+ "symbol": "PONS",
+ "dexLabel": "Hyperliquid",
+ "logoUrl": "https://uni.onekey-asset.com/static/hyperliquid/PONS.png",
+ "price": "0.70307",
+ "priceChange24hPercent": "-4.7034",
+ "volume24h": "111500008.1917399466",
+ "maxLeverage": 3
+ }
+ ],
+ "crypto": [
+ {
+ "key": "perps:BTC",
+ "kind": "perp",
+ "sourceCategory": "crypto",
+ "name": "BTC",
+ "symbol": "BTC",
+ "dexLabel": "Hyperliquid",
+ "logoUrl": "https://uni.onekey-asset.com/static/hyperliquid/BTC.png",
+ "price": "78759.0",
+ "priceChange24hPercent": "-1.1249",
+ "volume24h": "1615979368.5051996708",
+ "maxLeverage": 40
+ },
+ {
+ "key": "perps:ETH",
+ "kind": "perp",
+ "sourceCategory": "crypto",
+ "name": "ETH",
+ "symbol": "ETH",
+ "dexLabel": "Hyperliquid",
+ "logoUrl": "https://uni.onekey-asset.com/static/hyperliquid/ETH.png",
+ "price": "2481.2",
+ "priceChange24hPercent": "-0.6805",
+ "volume24h": "674134815.1677800417",
+ "maxLeverage": 25
+ },
+ {
+ "key": "perps:ZEC",
+ "kind": "perp",
+ "sourceCategory": "crypto",
+ "name": "ZEC",
+ "symbol": "ZEC",
+ "dexLabel": "Hyperliquid",
+ "logoUrl": "https://uni.onekey-asset.com/static/hyperliquid/ZEC.png",
+ "price": "1126.066",
+ "priceChange24hPercent": "-5.3726",
+ "volume24h": "299443138.3579999804",
+ "maxLeverage": 10
+ },
+ {
+ "key": "perps:HYPE",
+ "kind": "perp",
+ "sourceCategory": "crypto",
+ "name": "HYPE",
+ "symbol": "HYPE",
+ "dexLabel": "Hyperliquid",
+ "logoUrl": "https://uni.onekey-asset.com/static/hyperliquid/HYPE.png",
+ "price": "83.913",
+ "priceChange24hPercent": "-2.6464",
+ "volume24h": "290943735.0806797147",
+ "maxLeverage": 10
+ },
+ {
+ "key": "perps:PUMP",
+ "kind": "perp",
+ "sourceCategory": "crypto",
+ "name": "PUMP",
+ "symbol": "PUMP",
+ "dexLabel": "Hyperliquid",
+ "logoUrl": "https://uni.onekey-asset.com/static/hyperliquid/PUMP.png",
+ "price": "0.004334",
+ "priceChange24hPercent": "8.6488",
+ "volume24h": "157105528.058822006",
+ "maxLeverage": 10
+ },
+ {
+ "key": "perps:SOL",
+ "kind": "perp",
+ "sourceCategory": "crypto",
+ "name": "SOL",
+ "symbol": "SOL",
+ "dexLabel": "Hyperliquid",
+ "logoUrl": "https://uni.onekey-asset.com/static/hyperliquid/SOL.png",
+ "price": "103.1",
+ "priceChange24hPercent": "-1.7815",
+ "volume24h": "137811702.3443000317",
+ "maxLeverage": 20
+ },
+ {
+ "key": "perps:PONS",
+ "kind": "perp",
+ "sourceCategory": "crypto",
+ "name": "PONS",
+ "symbol": "PONS",
+ "dexLabel": "Hyperliquid",
+ "logoUrl": "https://uni.onekey-asset.com/static/hyperliquid/PONS.png",
+ "price": "0.70307",
+ "priceChange24hPercent": "-4.7034",
+ "volume24h": "111500008.1917399466",
+ "maxLeverage": 3
+ },
+ {
+ "key": "perps:WLD",
+ "kind": "perp",
+ "sourceCategory": "crypto",
+ "name": "WLD",
+ "symbol": "WLD",
+ "dexLabel": "Hyperliquid",
+ "logoUrl": "https://uni.onekey-asset.com/static/hyperliquid/WLD.png",
+ "price": "0.47381",
+ "priceChange24hPercent": "13.7818",
+ "volume24h": "46689718.8531849831",
+ "maxLeverage": 10
+ },
+ {
+ "key": "perps:ARB",
+ "kind": "perp",
+ "sourceCategory": "crypto",
+ "name": "ARB",
+ "symbol": "ARB",
+ "dexLabel": "Hyperliquid",
+ "logoUrl": "https://uni.onekey-asset.com/static/hyperliquid/ARB.png",
+ "price": "0.17046",
+ "priceChange24hPercent": "-3.7112",
+ "volume24h": "39794241.3648830056",
+ "maxLeverage": 10
+ },
+ {
+ "key": "perps:TAO",
+ "kind": "perp",
+ "sourceCategory": "crypto",
+ "name": "TAO",
+ "symbol": "TAO",
+ "dexLabel": "Hyperliquid",
+ "logoUrl": "https://uni.onekey-asset.com/static/hyperliquid/TAO.png",
+ "price": "255.69",
+ "priceChange24hPercent": "-5.4261",
+ "volume24h": "35835809.0484599918",
+ "maxLeverage": 5
+ },
+ {
+ "key": "perps:NEAR",
+ "kind": "perp",
+ "sourceCategory": "crypto",
+ "name": "NEAR",
+ "symbol": "NEAR",
+ "dexLabel": "Hyperliquid",
+ "logoUrl": "https://uni.onekey-asset.com/static/hyperliquid/NEAR.png",
+ "price": "2.26449",
+ "priceChange24hPercent": "-6.0611",
+ "volume24h": "35316603.8019199893",
+ "maxLeverage": 10
+ },
+ {
+ "key": "perps:UNI",
+ "kind": "perp",
+ "sourceCategory": "crypto",
+ "name": "UNI",
+ "symbol": "UNI",
+ "dexLabel": "Hyperliquid",
+ "logoUrl": "https://uni.onekey-asset.com/static/hyperliquid/UNI.png",
+ "price": "6.9843",
+ "priceChange24hPercent": "-0.4844",
+ "volume24h": "33853740.8768700138",
+ "maxLeverage": 10
+ },
+ {
+ "key": "perps:LIT",
+ "kind": "perp",
+ "sourceCategory": "crypto",
+ "name": "LIT",
+ "symbol": "LIT",
+ "dexLabel": "Hyperliquid",
+ "logoUrl": "https://uni.onekey-asset.com/static/hyperliquid/LIT.png",
+ "price": "4.6149",
+ "priceChange24hPercent": "4.8769",
+ "volume24h": "33173186.8799000047",
+ "maxLeverage": 5
+ },
+ {
+ "key": "perps:XRP",
+ "kind": "perp",
+ "sourceCategory": "crypto",
+ "name": "XRP",
+ "symbol": "XRP",
+ "dexLabel": "Hyperliquid",
+ "logoUrl": "https://uni.onekey-asset.com/static/hyperliquid/XRP.png",
+ "price": "1.3931",
+ "priceChange24hPercent": "-1.0161",
+ "volume24h": "32915099.3136999868",
+ "maxLeverage": 20
+ },
+ {
+ "key": "perps:ENA",
+ "kind": "perp",
+ "sourceCategory": "crypto",
+ "name": "ENA",
+ "symbol": "ENA",
+ "dexLabel": "Hyperliquid",
+ "logoUrl": "https://uni.onekey-asset.com/static/hyperliquid/ENA.png",
+ "price": "0.16411",
+ "priceChange24hPercent": "-5.2865",
+ "volume24h": "27271311.1723399907",
+ "maxLeverage": 10
+ },
+ {
+ "key": "perps:XMR",
+ "kind": "perp",
+ "sourceCategory": "crypto",
+ "name": "XMR",
+ "symbol": "XMR",
+ "dexLabel": "Hyperliquid",
+ "logoUrl": "https://uni.onekey-asset.com/static/hyperliquid/XMR.png",
+ "price": "510.67",
+ "priceChange24hPercent": "-4.4512",
+ "volume24h": "24071212.1402000114",
+ "maxLeverage": 5
+ },
+ {
+ "key": "perps:LINK",
+ "kind": "perp",
+ "sourceCategory": "crypto",
+ "name": "LINK",
+ "symbol": "LINK",
+ "dexLabel": "Hyperliquid",
+ "logoUrl": "https://uni.onekey-asset.com/static/hyperliquid/LINK.png",
+ "price": "12.633",
+ "priceChange24hPercent": "-3.6237",
+ "volume24h": "22086115.6081999913",
+ "maxLeverage": 10
+ },
+ {
+ "key": "perps:CASHCAT",
+ "kind": "perp",
+ "sourceCategory": "crypto",
+ "name": "CASHCAT",
+ "symbol": "CASHCAT",
+ "dexLabel": "Hyperliquid",
+ "logoUrl": "https://uni.onekey-asset.com/static/hyperliquid/CASHCAT.png",
+ "price": "0.19118",
+ "priceChange24hPercent": "-16.8385",
+ "volume24h": "21636754.0377700031",
+ "maxLeverage": 3
+ },
+ {
+ "key": "perps:BNB",
+ "kind": "perp",
+ "sourceCategory": "crypto",
+ "name": "BNB",
+ "symbol": "BNB",
+ "dexLabel": "Hyperliquid",
+ "logoUrl": "https://uni.onekey-asset.com/static/hyperliquid/BNB.png",
+ "price": "741.62",
+ "priceChange24hPercent": "-0.7176",
+ "volume24h": "21052965.9469799958",
+ "maxLeverage": 10
+ },
+ {
+ "key": "perps:INJ",
+ "kind": "perp",
+ "sourceCategory": "crypto",
+ "name": "INJ",
+ "symbol": "INJ",
+ "dexLabel": "Hyperliquid",
+ "logoUrl": "https://uni.onekey-asset.com/static/hyperliquid/INJ.png",
+ "price": "6.4834",
+ "priceChange24hPercent": "17.5338",
+ "volume24h": "20680485.8125400059",
+ "maxLeverage": 5
+ },
+ {
+ "key": "perps:kPEPE",
+ "kind": "perp",
+ "sourceCategory": "crypto",
+ "name": "kPEPE",
+ "symbol": "kPEPE",
+ "dexLabel": "Hyperliquid",
+ "logoUrl": "https://uni.onekey-asset.com/static/hyperliquid/kPEPE.png",
+ "price": "0.003595",
+ "priceChange24hPercent": "0.2789",
+ "volume24h": "18371316.9629879966",
+ "maxLeverage": 10
+ },
+ {
+ "key": "perps:DOGE",
+ "kind": "perp",
+ "sourceCategory": "crypto",
+ "name": "DOGE",
+ "symbol": "DOGE",
+ "dexLabel": "Hyperliquid",
+ "logoUrl": "https://uni.onekey-asset.com/static/hyperliquid/DOGE.png",
+ "price": "0.089724",
+ "priceChange24hPercent": "0.2424",
+ "volume24h": "15997035.3316160012",
+ "maxLeverage": 10
+ },
+ {
+ "key": "perps:FARTCOIN",
+ "kind": "perp",
+ "sourceCategory": "crypto",
+ "name": "FARTCOIN",
+ "symbol": "FARTCOIN",
+ "dexLabel": "Hyperliquid",
+ "logoUrl": "https://uni.onekey-asset.com/static/hyperliquid/FARTCOIN.png",
+ "price": "0.1701",
+ "priceChange24hPercent": "-1.7161",
+ "volume24h": "15021360.4873760045",
+ "maxLeverage": 10
+ },
+ {
+ "key": "perps:LTC",
+ "kind": "perp",
+ "sourceCategory": "crypto",
+ "name": "LTC",
+ "symbol": "LTC",
+ "dexLabel": "Hyperliquid",
+ "logoUrl": "https://uni.onekey-asset.com/static/hyperliquid/LTC.png",
+ "price": "55.055",
+ "priceChange24hPercent": "1.4614",
+ "volume24h": "14817474.8585399985",
+ "maxLeverage": 10
+ },
+ {
+ "key": "perps:SUI",
+ "kind": "perp",
+ "sourceCategory": "crypto",
+ "name": "SUI",
+ "symbol": "SUI",
+ "dexLabel": "Hyperliquid",
+ "logoUrl": "https://uni.onekey-asset.com/static/hyperliquid/SUI.png",
+ "price": "0.81797",
+ "priceChange24hPercent": "2.5629",
+ "volume24h": "14072462.1580870003",
+ "maxLeverage": 10
+ },
+ {
+ "key": "perps:XPL",
+ "kind": "perp",
+ "sourceCategory": "crypto",
+ "name": "XPL",
+ "symbol": "XPL",
+ "dexLabel": "Hyperliquid",
+ "logoUrl": "https://uni.onekey-asset.com/static/hyperliquid/XPL.png",
+ "price": "0.092752",
+ "priceChange24hPercent": "4.986",
+ "volume24h": "12867796.8786689974",
+ "maxLeverage": 10
+ },
+ {
+ "key": "perps:ASTER",
+ "kind": "perp",
+ "sourceCategory": "crypto",
+ "name": "ASTER",
+ "symbol": "ASTER",
+ "dexLabel": "Hyperliquid",
+ "logoUrl": "https://uni.onekey-asset.com/static/hyperliquid/ASTER.png",
+ "price": "0.76054",
+ "priceChange24hPercent": "-2.9119",
+ "volume24h": "12131711.7454800028",
+ "maxLeverage": 5
+ },
+ {
+ "key": "perps:AERO",
+ "kind": "perp",
+ "sourceCategory": "crypto",
+ "name": "AERO",
+ "symbol": "AERO",
+ "dexLabel": "Hyperliquid",
+ "logoUrl": "https://uni.onekey-asset.com/static/hyperliquid/AERO.png",
+ "price": "0.66772",
+ "priceChange24hPercent": "23.4849",
+ "volume24h": "12086611.5491099954",
+ "maxLeverage": 3
+ },
+ {
+ "key": "perps:ONDO",
+ "kind": "perp",
+ "sourceCategory": "crypto",
+ "name": "ONDO",
+ "symbol": "ONDO",
+ "dexLabel": "Hyperliquid",
+ "logoUrl": "https://uni.onekey-asset.com/static/hyperliquid/ONDO.png",
+ "price": "0.37834",
+ "priceChange24hPercent": "-1.4842",
+ "volume24h": "10413057.1454099994",
+ "maxLeverage": 10
+ },
+ {
+ "key": "perps:TRUMP",
+ "kind": "perp",
+ "sourceCategory": "crypto",
+ "name": "TRUMP",
+ "symbol": "TRUMP",
+ "dexLabel": "Hyperliquid",
+ "logoUrl": "https://uni.onekey-asset.com/static/hyperliquid/TRUMP.png",
+ "price": "2.2652",
+ "priceChange24hPercent": "0.4791",
+ "volume24h": "10141917.6337199993",
+ "maxLeverage": 10
+ },
+ {
+ "key": "perps:VVV",
+ "kind": "perp",
+ "sourceCategory": "crypto",
+ "name": "VVV",
+ "symbol": "VVV",
+ "dexLabel": "Hyperliquid",
+ "logoUrl": "https://uni.onekey-asset.com/static/hyperliquid/VVV.png",
+ "price": "17.843",
+ "priceChange24hPercent": "4.7739",
+ "volume24h": "9827504.2810999993",
+ "maxLeverage": 3
+ },
+ {
+ "key": "perps:MON",
+ "kind": "perp",
+ "sourceCategory": "crypto",
+ "name": "MON",
+ "symbol": "MON",
+ "dexLabel": "Hyperliquid",
+ "logoUrl": "https://uni.onekey-asset.com/static/hyperliquid/MON.png",
+ "price": "0.026198",
+ "priceChange24hPercent": "-0.2931",
+ "volume24h": "9070072.4234280009",
+ "maxLeverage": 5
+ },
+ {
+ "key": "perps:CRV",
+ "kind": "perp",
+ "sourceCategory": "crypto",
+ "name": "CRV",
+ "symbol": "CRV",
+ "dexLabel": "Hyperliquid",
+ "logoUrl": "https://uni.onekey-asset.com/static/hyperliquid/CRV.png",
+ "price": "0.3621",
+ "priceChange24hPercent": "-6.8122",
+ "volume24h": "9036757.2102039959",
+ "maxLeverage": 10
+ },
+ {
+ "key": "perps:DOT",
+ "kind": "perp",
+ "sourceCategory": "crypto",
+ "name": "DOT",
+ "symbol": "DOT",
+ "dexLabel": "Hyperliquid",
+ "logoUrl": "https://uni.onekey-asset.com/static/hyperliquid/DOT.png",
+ "price": "1.0737",
+ "priceChange24hPercent": "9.3826",
+ "volume24h": "7594616.2780740019",
+ "maxLeverage": 10
+ },
+ {
+ "key": "perps:SOPH",
+ "kind": "perp",
+ "sourceCategory": "crypto",
+ "name": "SOPH",
+ "symbol": "SOPH",
+ "dexLabel": "Hyperliquid",
+ "logoUrl": "https://uni.onekey-asset.com/static/hyperliquid/SOPH.png",
+ "price": "0.008846",
+ "priceChange24hPercent": "100.8629",
+ "volume24h": "7312414.2552489983",
+ "maxLeverage": 3
+ },
+ {
+ "key": "perps:CHIP",
+ "kind": "perp",
+ "sourceCategory": "crypto",
+ "name": "CHIP",
+ "symbol": "CHIP",
+ "dexLabel": "Hyperliquid",
+ "logoUrl": "https://uni.onekey-asset.com/static/hyperliquid/CHIP.png",
+ "price": "0.050795",
+ "priceChange24hPercent": "-11.2379",
+ "volume24h": "6787647.8972520009",
+ "maxLeverage": 3
+ },
+ {
+ "key": "perps:JUP",
+ "kind": "perp",
+ "sourceCategory": "crypto",
+ "name": "JUP",
+ "symbol": "JUP",
+ "dexLabel": "Hyperliquid",
+ "logoUrl": "https://uni.onekey-asset.com/static/hyperliquid/JUP.png",
+ "price": "0.24772",
+ "priceChange24hPercent": "0.2671",
+ "volume24h": "6762368.91591",
+ "maxLeverage": 10
+ },
+ {
+ "key": "perps:ADA",
+ "kind": "perp",
+ "sourceCategory": "crypto",
+ "name": "ADA",
+ "symbol": "ADA",
+ "dexLabel": "Hyperliquid",
+ "logoUrl": "https://uni.onekey-asset.com/static/hyperliquid/ADA.png",
+ "price": "0.21729",
+ "priceChange24hPercent": "-1.0159",
+ "volume24h": "6224183.6786399996",
+ "maxLeverage": 10
+ },
+ {
+ "key": "perps:PENDLE",
+ "kind": "perp",
+ "sourceCategory": "crypto",
+ "name": "PENDLE",
+ "symbol": "PENDLE",
+ "dexLabel": "Hyperliquid",
+ "logoUrl": "https://uni.onekey-asset.com/static/hyperliquid/PENDLE.png",
+ "price": "2.1926",
+ "priceChange24hPercent": "6.3337",
+ "volume24h": "5970993.8554000007",
+ "maxLeverage": 5
+ },
+ {
+ "key": "perps:ICP",
+ "kind": "perp",
+ "sourceCategory": "crypto",
+ "name": "ICP",
+ "symbol": "ICP",
+ "dexLabel": "Hyperliquid",
+ "logoUrl": "https://uni.onekey-asset.com/static/hyperliquid/ICP.png",
+ "price": "3.038",
+ "priceChange24hPercent": "10.2682",
+ "volume24h": "5482909.5928700007",
+ "maxLeverage": 5
+ },
+ {
+ "key": "perps:DASH",
+ "kind": "perp",
+ "sourceCategory": "crypto",
+ "name": "DASH",
+ "symbol": "DASH",
+ "dexLabel": "Hyperliquid",
+ "logoUrl": "https://uni.onekey-asset.com/static/hyperliquid/DASH.png",
+ "price": "62.4941",
+ "priceChange24hPercent": "-11.2338",
+ "volume24h": "5075568.7998700002",
+ "maxLeverage": 5
+ },
+ {
+ "key": "perps:AAVE",
+ "kind": "perp",
+ "sourceCategory": "crypto",
+ "name": "AAVE",
+ "symbol": "AAVE",
+ "dexLabel": "Hyperliquid",
+ "logoUrl": "https://uni.onekey-asset.com/static/hyperliquid/AAVE.png",
+ "price": "130.9514",
+ "priceChange24hPercent": "-2.0778",
+ "volume24h": "4898256.3570000017",
+ "maxLeverage": 10
+ },
+ {
+ "key": "perps:AVAX",
+ "kind": "perp",
+ "sourceCategory": "crypto",
+ "name": "AVAX",
+ "symbol": "AVAX",
+ "dexLabel": "Hyperliquid",
+ "logoUrl": "https://uni.onekey-asset.com/static/hyperliquid/AVAX.png",
+ "price": "8.0505",
+ "priceChange24hPercent": "3.1732",
+ "volume24h": "4749202.8701439984",
+ "maxLeverage": 10
+ },
+ {
+ "key": "perps:PENGU",
+ "kind": "perp",
+ "sourceCategory": "crypto",
+ "name": "PENGU",
+ "symbol": "PENGU",
+ "dexLabel": "Hyperliquid",
+ "logoUrl": "https://uni.onekey-asset.com/static/hyperliquid/PENGU.png",
+ "price": "0.008364",
+ "priceChange24hPercent": "-3.0486",
+ "volume24h": "4093591.9587289998",
+ "maxLeverage": 5
+ },
+ {
+ "key": "perps:MET",
+ "kind": "perp",
+ "sourceCategory": "crypto",
+ "name": "MET",
+ "symbol": "MET",
+ "dexLabel": "Hyperliquid",
+ "logoUrl": "https://uni.onekey-asset.com/static/hyperliquid/MET.png",
+ "price": "0.198551",
+ "priceChange24hPercent": "-4.1002",
+ "volume24h": "3999865.3420799994",
+ "maxLeverage": 3
+ },
+ {
+ "key": "perps:ZRO",
+ "kind": "perp",
+ "sourceCategory": "crypto",
+ "name": "ZRO",
+ "symbol": "ZRO",
+ "dexLabel": "Hyperliquid",
+ "logoUrl": "https://uni.onekey-asset.com/static/hyperliquid/ZRO.png",
+ "price": "1.1352",
+ "priceChange24hPercent": "4.849",
+ "volume24h": "3440254.1594599998",
+ "maxLeverage": 5
+ },
+ {
+ "key": "perps:VIRTUAL",
+ "kind": "perp",
+ "sourceCategory": "crypto",
+ "name": "VIRTUAL",
+ "symbol": "VIRTUAL",
+ "dexLabel": "Hyperliquid",
+ "logoUrl": "https://uni.onekey-asset.com/static/hyperliquid/VIRTUAL.png",
+ "price": "0.72824",
+ "priceChange24hPercent": "1.3034",
+ "volume24h": "3177314.9719370017",
+ "maxLeverage": 5
+ },
+ {
+ "key": "perps:HEMI",
+ "kind": "perp",
+ "sourceCategory": "crypto",
+ "name": "HEMI",
+ "symbol": "HEMI",
+ "dexLabel": "Hyperliquid",
+ "logoUrl": "https://uni.onekey-asset.com/static/hyperliquid/HEMI.png",
+ "price": "0.008716",
+ "priceChange24hPercent": "-12.1637",
+ "volume24h": "2945604.8078500009",
+ "maxLeverage": 3
+ },
+ {
+ "key": "perps:GRAM",
+ "kind": "perp",
+ "sourceCategory": "crypto",
+ "name": "GRAM",
+ "symbol": "GRAM",
+ "dexLabel": "Hyperliquid",
+ "logoUrl": "https://uni.onekey-asset.com/static/hyperliquid/GRAM.png",
+ "price": "1.3864",
+ "priceChange24hPercent": "-2.6063",
+ "volume24h": "2938722.7074999996",
+ "maxLeverage": 5
+ },
+ {
+ "key": "perps:ETHFI",
+ "kind": "perp",
+ "sourceCategory": "crypto",
+ "name": "ETHFI",
+ "symbol": "ETHFI",
+ "dexLabel": "Hyperliquid",
+ "logoUrl": "https://uni.onekey-asset.com/static/hyperliquid/ETHFI.png",
+ "price": "0.58156",
+ "priceChange24hPercent": "1.4019",
+ "volume24h": "2837368.6408510003",
+ "maxLeverage": 5
+ },
+ {
+ "key": "perps:kBONK",
+ "kind": "perp",
+ "sourceCategory": "crypto",
+ "name": "kBONK",
+ "symbol": "kBONK",
+ "dexLabel": "Hyperliquid",
+ "logoUrl": "https://uni.onekey-asset.com/static/hyperliquid/kBONK.png",
+ "price": "0.003115",
+ "priceChange24hPercent": "0.907",
+ "volume24h": "2688671.5803639987",
+ "maxLeverage": 10
+ },
+ {
+ "key": "perps:XLM",
+ "kind": "perp",
+ "sourceCategory": "crypto",
+ "name": "XLM",
+ "symbol": "XLM",
+ "dexLabel": "Hyperliquid",
+ "logoUrl": "https://uni.onekey-asset.com/static/hyperliquid/XLM.png",
+ "price": "0.18978",
+ "priceChange24hPercent": "0.0791",
+ "volume24h": "2686628.7690800009",
+ "maxLeverage": 5
+ },
+ {
+ "key": "perps:RENDER",
+ "kind": "perp",
+ "sourceCategory": "crypto",
+ "name": "RENDER",
+ "symbol": "RENDER",
+ "dexLabel": "Hyperliquid",
+ "logoUrl": "https://uni.onekey-asset.com/static/hyperliquid/RENDER.png",
+ "price": "1.5381",
+ "priceChange24hPercent": "0.0716",
+ "volume24h": "2652705.9169300003",
+ "maxLeverage": 5
+ },
+ {
+ "key": "perps:SKR",
+ "kind": "perp",
+ "sourceCategory": "crypto",
+ "name": "SKR",
+ "symbol": "SKR",
+ "dexLabel": "Hyperliquid",
+ "logoUrl": "https://uni.onekey-asset.com/static/hyperliquid/SKR.png",
+ "price": "0.021778",
+ "priceChange24hPercent": "7.1699",
+ "volume24h": "2588840.5254719998",
+ "maxLeverage": 3
+ },
+ {
+ "key": "perps:FIL",
+ "kind": "perp",
+ "sourceCategory": "crypto",
+ "name": "FIL",
+ "symbol": "FIL",
+ "dexLabel": "Hyperliquid",
+ "logoUrl": "https://uni.onekey-asset.com/static/hyperliquid/FIL.png",
+ "price": "0.84103",
+ "priceChange24hPercent": "4.7412",
+ "volume24h": "2352201.1711700014",
+ "maxLeverage": 5
+ },
+ {
+ "key": "perps:ACE",
+ "kind": "perp",
+ "sourceCategory": "crypto",
+ "name": "ACE",
+ "symbol": "ACE",
+ "dexLabel": "Hyperliquid",
+ "logoUrl": "https://uni.onekey-asset.com/static/hyperliquid/ACE.png",
+ "price": "0.1814",
+ "priceChange24hPercent": "9.6073",
+ "volume24h": "2317483.8588219997",
+ "maxLeverage": 3
+ },
+ {
+ "key": "perps:SPX",
+ "kind": "perp",
+ "sourceCategory": "crypto",
+ "name": "SPX",
+ "symbol": "SPX",
+ "dexLabel": "Hyperliquid",
+ "logoUrl": "https://uni.onekey-asset.com/static/hyperliquid/SPX.png",
+ "price": "0.5308",
+ "priceChange24hPercent": "-5.5062",
+ "volume24h": "2147741.8077920005",
+ "maxLeverage": 5
+ },
+ {
+ "key": "perps:FET",
+ "kind": "perp",
+ "sourceCategory": "crypto",
+ "name": "FET",
+ "symbol": "FET",
+ "dexLabel": "Hyperliquid",
+ "logoUrl": "https://uni.onekey-asset.com/static/hyperliquid/FET.png",
+ "price": "0.1842",
+ "priceChange24hPercent": "5.8925",
+ "volume24h": "2106158.5023099994",
+ "maxLeverage": 5
+ },
+ {
+ "key": "perps:MORPHO",
+ "kind": "perp",
+ "sourceCategory": "crypto",
+ "name": "MORPHO",
+ "symbol": "MORPHO",
+ "dexLabel": "Hyperliquid",
+ "logoUrl": "https://uni.onekey-asset.com/static/hyperliquid/MORPHO.png",
+ "price": "2.4402",
+ "priceChange24hPercent": "-5.8964",
+ "volume24h": "2076380.9937599988",
+ "maxLeverage": 5
+ },
+ {
+ "key": "perps:BCH",
+ "kind": "perp",
+ "sourceCategory": "crypto",
+ "name": "BCH",
+ "symbol": "BCH",
+ "dexLabel": "Hyperliquid",
+ "logoUrl": "https://uni.onekey-asset.com/static/hyperliquid/BCH.png",
+ "price": "257.5",
+ "priceChange24hPercent": "0.6292",
+ "volume24h": "1974496.2026800006",
+ "maxLeverage": 10
+ },
+ {
+ "key": "perps:PAXG",
+ "kind": "perp",
+ "sourceCategory": "crypto",
+ "name": "PAXG",
+ "symbol": "PAXG",
+ "dexLabel": "Hyperliquid",
+ "logoUrl": "https://uni.onekey-asset.com/static/hyperliquid/PAXG.png",
+ "price": "4437.5",
+ "priceChange24hPercent": "0.763",
+ "volume24h": "1933524.5789999994",
+ "maxLeverage": 10
+ },
+ {
+ "key": "perps:TIA",
+ "kind": "perp",
+ "sourceCategory": "crypto",
+ "name": "TIA",
+ "symbol": "TIA",
+ "dexLabel": "Hyperliquid",
+ "logoUrl": "https://uni.onekey-asset.com/static/hyperliquid/TIA.png",
+ "price": "0.42809",
+ "priceChange24hPercent": "-0.8753",
+ "volume24h": "1848738.8103460004",
+ "maxLeverage": 5
+ },
+ {
+ "key": "perps:HBAR",
+ "kind": "perp",
+ "sourceCategory": "crypto",
+ "name": "HBAR",
+ "symbol": "HBAR",
+ "dexLabel": "Hyperliquid",
+ "logoUrl": "https://uni.onekey-asset.com/static/hyperliquid/HBAR.png",
+ "price": "0.081418",
+ "priceChange24hPercent": "0.6776",
+ "volume24h": "1843903.4586229997",
+ "maxLeverage": 5
+ },
+ {
+ "key": "perps:JTO",
+ "kind": "perp",
+ "sourceCategory": "crypto",
+ "name": "JTO",
+ "symbol": "JTO",
+ "dexLabel": "Hyperliquid",
+ "logoUrl": "https://uni.onekey-asset.com/static/hyperliquid/JTO.png",
+ "price": "0.4401",
+ "priceChange24hPercent": "-1.4091",
+ "volume24h": "1831837.4322199998",
+ "maxLeverage": 5
+ },
+ {
+ "key": "perps:TRX",
+ "kind": "perp",
+ "sourceCategory": "crypto",
+ "name": "TRX",
+ "symbol": "TRX",
+ "dexLabel": "Hyperliquid",
+ "logoUrl": "https://uni.onekey-asset.com/static/hyperliquid/TRX.png",
+ "price": "0.3347",
+ "priceChange24hPercent": "-0.3276",
+ "volume24h": "1747725.4372100004",
+ "maxLeverage": 10
+ },
+ {
+ "key": "perps:KAS",
+ "kind": "perp",
+ "sourceCategory": "crypto",
+ "name": "KAS",
+ "symbol": "KAS",
+ "dexLabel": "Hyperliquid",
+ "logoUrl": "https://uni.onekey-asset.com/static/hyperliquid/KAS.png",
+ "price": "0.035661",
+ "priceChange24hPercent": "8.7159",
+ "volume24h": "1728343.1959250001",
+ "maxLeverage": 3
+ },
+ {
+ "key": "perps:APT",
+ "kind": "perp",
+ "sourceCategory": "crypto",
+ "name": "APT",
+ "symbol": "APT",
+ "dexLabel": "Hyperliquid",
+ "logoUrl": "https://uni.onekey-asset.com/static/hyperliquid/APT.png",
+ "price": "0.6309",
+ "priceChange24hPercent": "2.1039",
+ "volume24h": "1629449.8686259997",
+ "maxLeverage": 10
+ },
+ {
+ "key": "perps:STRK",
+ "kind": "perp",
+ "sourceCategory": "crypto",
+ "name": "STRK",
+ "symbol": "STRK",
+ "dexLabel": "Hyperliquid",
+ "logoUrl": "https://uni.onekey-asset.com/static/hyperliquid/STRK.png",
+ "price": "0.03099",
+ "priceChange24hPercent": "0.6496",
+ "volume24h": "1318005.3608400002",
+ "maxLeverage": 5
+ },
+ {
+ "key": "perps:WIF",
+ "kind": "perp",
+ "sourceCategory": "crypto",
+ "name": "WIF",
+ "symbol": "WIF",
+ "dexLabel": "Hyperliquid",
+ "logoUrl": "https://uni.onekey-asset.com/static/hyperliquid/WIF.png",
+ "price": "0.2171",
+ "priceChange24hPercent": "0.8923",
+ "volume24h": "1187020.33861",
+ "maxLeverage": 5
+ },
+ {
+ "key": "perps:EIGEN",
+ "kind": "perp",
+ "sourceCategory": "crypto",
+ "name": "EIGEN",
+ "symbol": "EIGEN",
+ "dexLabel": "Hyperliquid",
+ "logoUrl": "https://uni.onekey-asset.com/static/hyperliquid/EIGEN.png",
+ "price": "0.2175",
+ "priceChange24hPercent": "1.2099",
+ "volume24h": "1181871.4053750003",
+ "maxLeverage": 5
+ },
+ {
+ "key": "perps:CAKE",
+ "kind": "perp",
+ "sourceCategory": "crypto",
+ "name": "CAKE",
+ "symbol": "CAKE",
+ "dexLabel": "Hyperliquid",
+ "logoUrl": "https://uni.onekey-asset.com/static/hyperliquid/CAKE.png",
+ "price": "2.2349",
+ "priceChange24hPercent": "2.1248",
+ "volume24h": "1161007.7697700001",
+ "maxLeverage": 3
+ },
+ {
+ "key": "perps:ETC",
+ "kind": "perp",
+ "sourceCategory": "crypto",
+ "name": "ETC",
+ "symbol": "ETC",
+ "dexLabel": "Hyperliquid",
+ "logoUrl": "https://uni.onekey-asset.com/static/hyperliquid/ETC.png",
+ "price": "7.9677",
+ "priceChange24hPercent": "2.0323",
+ "volume24h": "1144164.1277489997",
+ "maxLeverage": 5
+ },
+ {
+ "key": "perps:kLUNC",
+ "kind": "perp",
+ "sourceCategory": "crypto",
+ "name": "kLUNC",
+ "symbol": "kLUNC",
+ "dexLabel": "Hyperliquid",
+ "logoUrl": "https://uni.onekey-asset.com/static/hyperliquid/kLUNC.png",
+ "price": "0.053818",
+ "priceChange24hPercent": "4.0303",
+ "volume24h": "1096305.598608",
+ "maxLeverage": 3
+ },
+ {
+ "key": "perps:GRASS",
+ "kind": "perp",
+ "sourceCategory": "crypto",
+ "name": "GRASS",
+ "symbol": "GRASS",
+ "dexLabel": "Hyperliquid",
+ "logoUrl": "https://uni.onekey-asset.com/static/hyperliquid/GRASS.png",
+ "price": "0.34433",
+ "priceChange24hPercent": "1.4376",
+ "volume24h": "1096069.5572980004",
+ "maxLeverage": 3
+ },
+ {
+ "key": "perps:PURR",
+ "kind": "perp",
+ "sourceCategory": "crypto",
+ "name": "PURR",
+ "symbol": "PURR",
+ "dexLabel": "Hyperliquid",
+ "logoUrl": "https://uni.onekey-asset.com/static/hyperliquid/PURR.png",
+ "price": "0.11181",
+ "priceChange24hPercent": "-3.8772",
+ "volume24h": "1089209.8758600003",
+ "maxLeverage": 3
+ },
+ {
+ "key": "perps:ALGO",
+ "kind": "perp",
+ "sourceCategory": "crypto",
+ "name": "ALGO",
+ "symbol": "ALGO",
+ "dexLabel": "Hyperliquid",
+ "logoUrl": "https://uni.onekey-asset.com/static/hyperliquid/ALGO.png",
+ "price": "0.097755",
+ "priceChange24hPercent": "3.6034",
+ "volume24h": "1088602.1119440002",
+ "maxLeverage": 5
+ },
+ {
+ "key": "perps:SYRUP",
+ "kind": "perp",
+ "sourceCategory": "crypto",
+ "name": "SYRUP",
+ "symbol": "SYRUP",
+ "dexLabel": "Hyperliquid",
+ "logoUrl": "https://uni.onekey-asset.com/static/hyperliquid/SYRUP.png",
+ "price": "0.23576",
+ "priceChange24hPercent": "7.6087",
+ "volume24h": "1042084.62231",
+ "maxLeverage": 3
+ },
+ {
+ "key": "perps:CC",
+ "kind": "perp",
+ "sourceCategory": "crypto",
+ "name": "CC",
+ "symbol": "CC",
+ "dexLabel": "Hyperliquid",
+ "logoUrl": "https://uni.onekey-asset.com/static/hyperliquid/CC.png",
+ "price": "0.10671",
+ "priceChange24hPercent": "-3.0878",
+ "volume24h": "999214.36216",
+ "maxLeverage": 3
+ },
+ {
+ "key": "perps:STX",
+ "kind": "perp",
+ "sourceCategory": "crypto",
+ "name": "STX",
+ "symbol": "STX",
+ "dexLabel": "Hyperliquid",
+ "logoUrl": "https://uni.onekey-asset.com/static/hyperliquid/STX.png",
+ "price": "0.27025",
+ "priceChange24hPercent": "2.9367",
+ "volume24h": "972527.9245239997",
+ "maxLeverage": 5
+ },
+ {
+ "key": "perps:LDO",
+ "kind": "perp",
+ "sourceCategory": "crypto",
+ "name": "LDO",
+ "symbol": "LDO",
+ "dexLabel": "Hyperliquid",
+ "logoUrl": "https://uni.onekey-asset.com/static/hyperliquid/LDO.png",
+ "price": "0.39157",
+ "priceChange24hPercent": "-2.7349",
+ "volume24h": "866821.5666029999",
+ "maxLeverage": 5
+ },
+ {
+ "key": "perps:OP",
+ "kind": "perp",
+ "sourceCategory": "crypto",
+ "name": "OP",
+ "symbol": "OP",
+ "dexLabel": "Hyperliquid",
+ "logoUrl": "https://uni.onekey-asset.com/static/hyperliquid/OP.png",
+ "price": "0.1085",
+ "priceChange24hPercent": "-0.4861",
+ "volume24h": "829409.6125339997",
+ "maxLeverage": 5
+ },
+ {
+ "key": "perps:MNT",
+ "kind": "perp",
+ "sourceCategory": "crypto",
+ "name": "MNT",
+ "symbol": "MNT",
+ "dexLabel": "Hyperliquid",
+ "logoUrl": "https://uni.onekey-asset.com/static/hyperliquid/MNT.png",
+ "price": "0.62592",
+ "priceChange24hPercent": "-3.5146",
+ "volume24h": "818205.8195279996",
+ "maxLeverage": 5
+ },
+ {
+ "key": "perps:ZEN",
+ "kind": "perp",
+ "sourceCategory": "crypto",
+ "name": "ZEN",
+ "symbol": "ZEN",
+ "dexLabel": "Hyperliquid",
+ "logoUrl": "https://uni.onekey-asset.com/static/hyperliquid/ZEN.png",
+ "price": "6.9869",
+ "priceChange24hPercent": "-2.8653",
+ "volume24h": "790304.9108310001",
+ "maxLeverage": 5
+ },
+ {
+ "key": "perps:SEI",
+ "kind": "perp",
+ "sourceCategory": "crypto",
+ "name": "SEI",
+ "symbol": "SEI",
+ "dexLabel": "Hyperliquid",
+ "logoUrl": "https://uni.onekey-asset.com/static/hyperliquid/SEI.png",
+ "price": "0.048873",
+ "priceChange24hPercent": "0.4439",
+ "volume24h": "732230.695098",
+ "maxLeverage": 5
+ },
+ {
+ "key": "perps:ZORA",
+ "kind": "perp",
+ "sourceCategory": "crypto",
+ "name": "ZORA",
+ "symbol": "ZORA",
+ "dexLabel": "Hyperliquid",
+ "logoUrl": "https://uni.onekey-asset.com/static/hyperliquid/ZORA.png",
+ "price": "0.008359",
+ "priceChange24hPercent": "2.9941",
+ "volume24h": "730620.5458290001",
+ "maxLeverage": 3
+ },
+ {
+ "key": "perps:2Z",
+ "kind": "perp",
+ "sourceCategory": "crypto",
+ "name": "2Z",
+ "symbol": "2Z",
+ "dexLabel": "Hyperliquid",
+ "logoUrl": "https://uni.onekey-asset.com/static/hyperliquid/2Z.png",
+ "price": "0.05046",
+ "priceChange24hPercent": "-1.1906",
+ "volume24h": "685318.426972",
+ "maxLeverage": 3
+ },
+ {
+ "key": "perps:YGG",
+ "kind": "perp",
+ "sourceCategory": "crypto",
+ "name": "YGG",
+ "symbol": "YGG",
+ "dexLabel": "Hyperliquid",
+ "logoUrl": "https://uni.onekey-asset.com/static/hyperliquid/YGG.png",
+ "price": "0.023719",
+ "priceChange24hPercent": "-3.6205",
+ "volume24h": "683695.797589",
+ "maxLeverage": 3
+ },
+ {
+ "key": "perps:PYTH",
+ "kind": "perp",
+ "sourceCategory": "crypto",
+ "name": "PYTH",
+ "symbol": "PYTH",
+ "dexLabel": "Hyperliquid",
+ "logoUrl": "https://uni.onekey-asset.com/static/hyperliquid/PYTH.png",
+ "price": "0.05385",
+ "priceChange24hPercent": "-2.359",
+ "volume24h": "639262.7789750001",
+ "maxLeverage": 5
+ },
+ {
+ "key": "perps:POL",
+ "kind": "perp",
+ "sourceCategory": "crypto",
+ "name": "POL",
+ "symbol": "POL",
+ "dexLabel": "Hyperliquid",
+ "logoUrl": "https://uni.onekey-asset.com/static/hyperliquid/POL.png",
+ "price": "0.095402",
+ "priceChange24hPercent": "-1.8861",
+ "volume24h": "612425.5757019999",
+ "maxLeverage": 5
+ },
+ {
+ "key": "perps:MEGA",
+ "kind": "perp",
+ "sourceCategory": "crypto",
+ "name": "MEGA",
+ "symbol": "MEGA",
+ "dexLabel": "Hyperliquid",
+ "logoUrl": "https://uni.onekey-asset.com/static/hyperliquid/MEGA.png",
+ "price": "0.041779",
+ "priceChange24hPercent": "7.2136",
+ "volume24h": "556664.4957329996",
+ "maxLeverage": 3
+ },
+ {
+ "key": "perps:SUSHI",
+ "kind": "perp",
+ "sourceCategory": "crypto",
+ "name": "SUSHI",
+ "symbol": "SUSHI",
+ "dexLabel": "Hyperliquid",
+ "logoUrl": "https://uni.onekey-asset.com/static/hyperliquid/SUSHI.png",
+ "price": "0.23649",
+ "priceChange24hPercent": "-1.0005",
+ "volume24h": "549036.7718809999",
+ "maxLeverage": 3
+ },
+ {
+ "key": "perps:ATOM",
+ "kind": "perp",
+ "sourceCategory": "crypto",
+ "name": "ATOM",
+ "symbol": "ATOM",
+ "dexLabel": "Hyperliquid",
+ "logoUrl": "https://uni.onekey-asset.com/static/hyperliquid/ATOM.png",
+ "price": "1.639",
+ "priceChange24hPercent": "3.3092",
+ "volume24h": "527859.280467",
+ "maxLeverage": 5
+ },
+ {
+ "key": "perps:ZK",
+ "kind": "perp",
+ "sourceCategory": "crypto",
+ "name": "ZK",
+ "symbol": "ZK",
+ "dexLabel": "Hyperliquid",
+ "logoUrl": "https://uni.onekey-asset.com/static/hyperliquid/ZK.png",
+ "price": "0.010451",
+ "priceChange24hPercent": "-5.2235",
+ "volume24h": "486518.258514",
+ "maxLeverage": 5
+ },
+ {
+ "key": "perps:AR",
+ "kind": "perp",
+ "sourceCategory": "crypto",
+ "name": "AR",
+ "symbol": "AR",
+ "dexLabel": "Hyperliquid",
+ "logoUrl": "https://uni.onekey-asset.com/static/hyperliquid/AR.png",
+ "price": "2.9427",
+ "priceChange24hPercent": "-2.9132",
+ "volume24h": "467107.8981749998",
+ "maxLeverage": 5
+ },
+ {
+ "key": "perps:AVNT",
+ "kind": "perp",
+ "sourceCategory": "crypto",
+ "name": "AVNT",
+ "symbol": "AVNT",
+ "dexLabel": "Hyperliquid",
+ "logoUrl": "https://uni.onekey-asset.com/static/hyperliquid/AVNT.png",
+ "price": "0.11456",
+ "priceChange24hPercent": "8.1469",
+ "volume24h": "464228.8967399999",
+ "maxLeverage": 5
+ },
+ {
+ "key": "perps:MINA",
+ "kind": "perp",
+ "sourceCategory": "crypto",
+ "name": "MINA",
+ "symbol": "MINA",
+ "dexLabel": "Hyperliquid",
+ "logoUrl": "https://uni.onekey-asset.com/static/hyperliquid/MINA.png",
+ "price": "0.08055",
+ "priceChange24hPercent": "4.5357",
+ "volume24h": "459597.735392",
+ "maxLeverage": 3
+ },
+ {
+ "key": "perps:WLFI",
+ "kind": "perp",
+ "sourceCategory": "crypto",
+ "name": "WLFI",
+ "symbol": "WLFI",
+ "dexLabel": "Hyperliquid",
+ "logoUrl": "https://uni.onekey-asset.com/static/hyperliquid/WLFI.png",
+ "price": "0.0562",
+ "priceChange24hPercent": "-0.5222",
+ "volume24h": "448285.7723899999",
+ "maxLeverage": 5
+ },
+ {
+ "key": "perps:MELANIA",
+ "kind": "perp",
+ "sourceCategory": "crypto",
+ "name": "MELANIA",
+ "symbol": "MELANIA",
+ "dexLabel": "Hyperliquid",
+ "logoUrl": "https://uni.onekey-asset.com/static/hyperliquid/MELANIA.png",
+ "price": "0.11301",
+ "priceChange24hPercent": "1.921",
+ "volume24h": "435670.6765489999",
+ "maxLeverage": 3
+ },
+ {
+ "key": "perps:W",
+ "kind": "perp",
+ "sourceCategory": "crypto",
+ "name": "W",
+ "symbol": "W",
+ "dexLabel": "Hyperliquid",
+ "logoUrl": "https://uni.onekey-asset.com/static/hyperliquid/W.png",
+ "price": "0.01024",
+ "priceChange24hPercent": "-1.8217",
+ "volume24h": "416981.4852860002",
+ "maxLeverage": 5
+ },
+ {
+ "key": "perps:SKY",
+ "kind": "perp",
+ "sourceCategory": "crypto",
+ "name": "SKY",
+ "symbol": "SKY",
+ "dexLabel": "Hyperliquid",
+ "logoUrl": "https://uni.onekey-asset.com/static/hyperliquid/SKY.png",
+ "price": "0.068543",
+ "priceChange24hPercent": "-1.6049",
+ "volume24h": "399587.1529699998",
+ "maxLeverage": 3
+ },
+ {
+ "key": "perps:BERA",
+ "kind": "perp",
+ "sourceCategory": "crypto",
+ "name": "BERA",
+ "symbol": "BERA",
+ "dexLabel": "Hyperliquid",
+ "logoUrl": "https://uni.onekey-asset.com/static/hyperliquid/BERA.png",
+ "price": "0.18302",
+ "priceChange24hPercent": "-1.729",
+ "volume24h": "372965.35732",
+ "maxLeverage": 5
+ },
+ {
+ "key": "perps:kSHIB",
+ "kind": "perp",
+ "sourceCategory": "crypto",
+ "name": "kSHIB",
+ "symbol": "kSHIB",
+ "dexLabel": "Hyperliquid",
+ "logoUrl": "https://uni.onekey-asset.com/static/hyperliquid/kSHIB.png",
+ "price": "0.005423",
+ "priceChange24hPercent": "-0.823",
+ "volume24h": "343958.0792559998",
+ "maxLeverage": 10
+ },
+ {
+ "key": "perps:AZTEC",
+ "kind": "perp",
+ "sourceCategory": "crypto",
+ "name": "AZTEC",
+ "symbol": "AZTEC",
+ "dexLabel": "Hyperliquid",
+ "logoUrl": "https://uni.onekey-asset.com/static/hyperliquid/AZTEC.png",
+ "price": "0.014714",
+ "priceChange24hPercent": "0.7808",
+ "volume24h": "325418.0694249999",
+ "maxLeverage": 3
+ },
+ {
+ "key": "perps:NIL",
+ "kind": "perp",
+ "sourceCategory": "crypto",
+ "name": "NIL",
+ "symbol": "NIL",
+ "dexLabel": "Hyperliquid",
+ "logoUrl": "https://uni.onekey-asset.com/static/hyperliquid/NIL.png",
+ "price": "0.052136",
+ "priceChange24hPercent": "1.1937",
+ "volume24h": "322368.726469",
+ "maxLeverage": 3
+ },
+ {
+ "key": "perps:BOME",
+ "kind": "perp",
+ "sourceCategory": "crypto",
+ "name": "BOME",
+ "symbol": "BOME",
+ "dexLabel": "Hyperliquid",
+ "logoUrl": "https://uni.onekey-asset.com/static/hyperliquid/BOME.png",
+ "price": "0.000899",
+ "priceChange24hPercent": "-2.4946",
+ "volume24h": "321030.595484",
+ "maxLeverage": 3
+ },
+ {
+ "key": "perps:DYDX",
+ "kind": "perp",
+ "sourceCategory": "crypto",
+ "name": "DYDX",
+ "symbol": "DYDX",
+ "dexLabel": "Hyperliquid",
+ "logoUrl": "https://uni.onekey-asset.com/static/hyperliquid/DYDX.png",
+ "price": "0.1221",
+ "priceChange24hPercent": "0.3699",
+ "volume24h": "318317.4539829999",
+ "maxLeverage": 5
+ },
+ {
+ "key": "perps:REZ",
+ "kind": "perp",
+ "sourceCategory": "crypto",
+ "name": "REZ",
+ "symbol": "REZ",
+ "dexLabel": "Hyperliquid",
+ "logoUrl": "https://uni.onekey-asset.com/static/hyperliquid/REZ.png",
+ "price": "0.003178",
+ "priceChange24hPercent": "3.0814",
+ "volume24h": "313900.718194",
+ "maxLeverage": 3
+ },
+ {
+ "key": "perps:USUAL",
+ "kind": "perp",
+ "sourceCategory": "crypto",
+ "name": "USUAL",
+ "symbol": "USUAL",
+ "dexLabel": "Hyperliquid",
+ "logoUrl": "https://uni.onekey-asset.com/static/hyperliquid/USUAL.png",
+ "price": "0.01207",
+ "priceChange24hPercent": "0.6672",
+ "volume24h": "313230.740935",
+ "maxLeverage": 3
+ },
+ {
+ "key": "perps:MOODENG",
+ "kind": "perp",
+ "sourceCategory": "crypto",
+ "name": "MOODENG",
+ "symbol": "MOODENG",
+ "dexLabel": "Hyperliquid",
+ "logoUrl": "https://uni.onekey-asset.com/static/hyperliquid/MOODENG.png",
+ "price": "0.044088",
+ "priceChange24hPercent": "-0.4741",
+ "volume24h": "297712.7826260001",
+ "maxLeverage": 3
+ },
+ {
+ "key": "perps:POPCAT",
+ "kind": "perp",
+ "sourceCategory": "crypto",
+ "name": "POPCAT",
+ "symbol": "POPCAT",
+ "dexLabel": "Hyperliquid",
+ "logoUrl": "https://uni.onekey-asset.com/static/hyperliquid/POPCAT.png",
+ "price": "0.051736",
+ "priceChange24hPercent": "-1.579",
+ "volume24h": "289093.572392",
+ "maxLeverage": 3
+ },
+ {
+ "key": "perps:AIXBT",
+ "kind": "perp",
+ "sourceCategory": "crypto",
+ "name": "AIXBT",
+ "symbol": "AIXBT",
+ "dexLabel": "Hyperliquid",
+ "logoUrl": "https://uni.onekey-asset.com/static/hyperliquid/AIXBT.png",
+ "price": "0.022172",
+ "priceChange24hPercent": "1.4923",
+ "volume24h": "283681.8348490002",
+ "maxLeverage": 3
+ },
+ {
+ "key": "perps:IO",
+ "kind": "perp",
+ "sourceCategory": "crypto",
+ "name": "IO",
+ "symbol": "IO",
+ "dexLabel": "Hyperliquid",
+ "logoUrl": "https://uni.onekey-asset.com/static/hyperliquid/IO.png",
+ "price": "0.14104",
+ "priceChange24hPercent": "2.6417",
+ "volume24h": "271397.876615",
+ "maxLeverage": 3
+ },
+ {
+ "key": "perps:GMX",
+ "kind": "perp",
+ "sourceCategory": "crypto",
+ "name": "GMX",
+ "symbol": "GMX",
+ "dexLabel": "Hyperliquid",
+ "logoUrl": "https://uni.onekey-asset.com/static/hyperliquid/GMX.png",
+ "price": "8.4824",
+ "priceChange24hPercent": "7.8417",
+ "volume24h": "270299.880671",
+ "maxLeverage": 3
+ },
+ {
+ "key": "perps:STBL",
+ "kind": "perp",
+ "sourceCategory": "crypto",
+ "name": "STBL",
+ "symbol": "STBL",
+ "dexLabel": "Hyperliquid",
+ "logoUrl": "https://uni.onekey-asset.com/static/hyperliquid/STBL.png",
+ "price": "0.024785",
+ "priceChange24hPercent": "-1.5922",
+ "volume24h": "249981.458031",
+ "maxLeverage": 3
+ },
+ {
+ "key": "perps:KAITO",
+ "kind": "perp",
+ "sourceCategory": "crypto",
+ "name": "KAITO",
+ "symbol": "KAITO",
+ "dexLabel": "Hyperliquid",
+ "logoUrl": "https://uni.onekey-asset.com/static/hyperliquid/KAITO.png",
+ "price": "0.3223",
+ "priceChange24hPercent": "2.6629",
+ "volume24h": "249582.00012",
+ "maxLeverage": 5
+ },
+ {
+ "key": "perps:APE",
+ "kind": "perp",
+ "sourceCategory": "crypto",
+ "name": "APE",
+ "symbol": "APE",
+ "dexLabel": "Hyperliquid",
+ "logoUrl": "https://uni.onekey-asset.com/static/hyperliquid/APE.png",
+ "price": "0.14457",
+ "priceChange24hPercent": "2.2853",
+ "volume24h": "243969.3305980001",
+ "maxLeverage": 5
+ },
+ {
+ "key": "perps:BIGTIME",
+ "kind": "perp",
+ "sourceCategory": "crypto",
+ "name": "BIGTIME",
+ "symbol": "BIGTIME",
+ "dexLabel": "Hyperliquid",
+ "logoUrl": "https://uni.onekey-asset.com/static/hyperliquid/BIGTIME.png",
+ "price": "0.007248",
+ "priceChange24hPercent": "-0.6307",
+ "volume24h": "230164.709712",
+ "maxLeverage": 3
+ },
+ {
+ "key": "perps:LAYER",
+ "kind": "perp",
+ "sourceCategory": "crypto",
+ "name": "LAYER",
+ "symbol": "LAYER",
+ "dexLabel": "Hyperliquid",
+ "logoUrl": "https://uni.onekey-asset.com/static/hyperliquid/LAYER.png",
+ "price": "0.072839",
+ "priceChange24hPercent": "-1.183",
+ "volume24h": "219946.223509",
+ "maxLeverage": 3
+ },
+ {
+ "key": "perps:IOTA",
+ "kind": "perp",
+ "sourceCategory": "crypto",
+ "name": "IOTA",
+ "symbol": "IOTA",
+ "dexLabel": "Hyperliquid",
+ "logoUrl": "https://uni.onekey-asset.com/static/hyperliquid/IOTA.png",
+ "price": "0.042598",
+ "priceChange24hPercent": "2.6186",
+ "volume24h": "208689.347551",
+ "maxLeverage": 3
+ },
+ {
+ "key": "perps:BIO",
+ "kind": "perp",
+ "sourceCategory": "crypto",
+ "name": "BIO",
+ "symbol": "BIO",
+ "dexLabel": "Hyperliquid",
+ "logoUrl": "https://uni.onekey-asset.com/static/hyperliquid/BIO.png",
+ "price": "0.027139",
+ "priceChange24hPercent": "-0.484",
+ "volume24h": "206019.083034",
+ "maxLeverage": 3
+ },
+ {
+ "key": "perps:GOAT",
+ "kind": "perp",
+ "sourceCategory": "crypto",
+ "name": "GOAT",
+ "symbol": "GOAT",
+ "dexLabel": "Hyperliquid",
+ "logoUrl": "https://uni.onekey-asset.com/static/hyperliquid/GOAT.png",
+ "price": "0.016291",
+ "priceChange24hPercent": "-1.0327",
+ "volume24h": "201103.947198",
+ "maxLeverage": 3
+ },
+ {
+ "key": "perps:0G",
+ "kind": "perp",
+ "sourceCategory": "crypto",
+ "name": "0G",
+ "symbol": "0G",
+ "dexLabel": "Hyperliquid",
+ "logoUrl": "https://uni.onekey-asset.com/static/hyperliquid/0G.png",
+ "price": "0.19301",
+ "priceChange24hPercent": "0.3536",
+ "volume24h": "199339.75994",
+ "maxLeverage": 3
+ },
+ {
+ "key": "perps:BRETT",
+ "kind": "perp",
+ "sourceCategory": "crypto",
+ "name": "BRETT",
+ "symbol": "BRETT",
+ "dexLabel": "Hyperliquid",
+ "logoUrl": "https://uni.onekey-asset.com/static/hyperliquid/BRETT.png",
+ "price": "0.005266",
+ "priceChange24hPercent": "-3.1985",
+ "volume24h": "199032.939324",
+ "maxLeverage": 3
+ },
+ {
+ "key": "perps:ORDI",
+ "kind": "perp",
+ "sourceCategory": "crypto",
+ "name": "ORDI",
+ "symbol": "ORDI",
+ "dexLabel": "Hyperliquid",
+ "logoUrl": "https://uni.onekey-asset.com/static/hyperliquid/ORDI.png",
+ "price": "4.326",
+ "priceChange24hPercent": "2.5483",
+ "volume24h": "189543.62338",
+ "maxLeverage": 3
+ },
+ {
+ "key": "perps:COMP",
+ "kind": "perp",
+ "sourceCategory": "crypto",
+ "name": "COMP",
+ "symbol": "COMP",
+ "dexLabel": "Hyperliquid",
+ "logoUrl": "https://uni.onekey-asset.com/static/hyperliquid/COMP.png",
+ "price": "21.0256",
+ "priceChange24hPercent": "-1.33",
+ "volume24h": "166839.1075899999",
+ "maxLeverage": 5
+ },
+ {
+ "key": "perps:BSV",
+ "kind": "perp",
+ "sourceCategory": "crypto",
+ "name": "BSV",
+ "symbol": "BSV",
+ "dexLabel": "Hyperliquid",
+ "logoUrl": "https://uni.onekey-asset.com/static/hyperliquid/BSV.png",
+ "price": "17.077",
+ "priceChange24hPercent": "1.251",
+ "volume24h": "166338.84076",
+ "maxLeverage": 3
+ },
+ {
+ "key": "perps:PEOPLE",
+ "kind": "perp",
+ "sourceCategory": "crypto",
+ "name": "PEOPLE",
+ "symbol": "PEOPLE",
+ "dexLabel": "Hyperliquid",
+ "logoUrl": "https://uni.onekey-asset.com/static/hyperliquid/PEOPLE.png",
+ "price": "0.007966",
+ "priceChange24hPercent": "-0.0627",
+ "volume24h": "156163.397619",
+ "maxLeverage": 3
+ },
+ {
+ "key": "perps:ENS",
+ "kind": "perp",
+ "sourceCategory": "crypto",
+ "name": "ENS",
+ "symbol": "ENS",
+ "dexLabel": "Hyperliquid",
+ "logoUrl": "https://uni.onekey-asset.com/static/hyperliquid/ENS.png",
+ "price": "6.1188",
+ "priceChange24hPercent": "-0.5671",
+ "volume24h": "150979.955176",
+ "maxLeverage": 5
+ },
+ {
+ "key": "perps:S",
+ "kind": "perp",
+ "sourceCategory": "crypto",
+ "name": "S",
+ "symbol": "S",
+ "dexLabel": "Hyperliquid",
+ "logoUrl": "https://uni.onekey-asset.com/static/hyperliquid/S.png",
+ "price": "0.029565",
+ "priceChange24hPercent": "-2.8554",
+ "volume24h": "150531.902503",
+ "maxLeverage": 5
+ },
+ {
+ "key": "perps:MOVE",
+ "kind": "perp",
+ "sourceCategory": "crypto",
+ "name": "MOVE",
+ "symbol": "MOVE",
+ "dexLabel": "Hyperliquid",
+ "logoUrl": "https://uni.onekey-asset.com/static/hyperliquid/MOVE.png",
+ "price": "0.009051",
+ "priceChange24hPercent": "0.2326",
+ "volume24h": "146077.425954",
+ "maxLeverage": 3
+ },
+ {
+ "key": "perps:LINEA",
+ "kind": "perp",
+ "sourceCategory": "crypto",
+ "name": "LINEA",
+ "symbol": "LINEA",
+ "dexLabel": "Hyperliquid",
+ "logoUrl": "https://uni.onekey-asset.com/static/hyperliquid/LINEA.png",
+ "price": "0.002713",
+ "priceChange24hPercent": "-3.6919",
+ "volume24h": "144368.6123820001",
+ "maxLeverage": 3
+ },
+ {
+ "key": "perps:STABLE",
+ "kind": "perp",
+ "sourceCategory": "crypto",
+ "name": "STABLE",
+ "symbol": "STABLE",
+ "dexLabel": "Hyperliquid",
+ "logoUrl": "https://uni.onekey-asset.com/static/hyperliquid/STABLE.png",
+ "price": "0.029297",
+ "priceChange24hPercent": "3.7723",
+ "volume24h": "135057.31127",
+ "maxLeverage": 3
+ },
+ {
+ "key": "perps:GALA",
+ "kind": "perp",
+ "sourceCategory": "crypto",
+ "name": "GALA",
+ "symbol": "GALA",
+ "dexLabel": "Hyperliquid",
+ "logoUrl": "https://uni.onekey-asset.com/static/hyperliquid/GALA.png",
+ "price": "0.001891",
+ "priceChange24hPercent": "0",
+ "volume24h": "129520.801461",
+ "maxLeverage": 3
+ },
+ {
+ "key": "perps:APEX",
+ "kind": "perp",
+ "sourceCategory": "crypto",
+ "name": "APEX",
+ "symbol": "APEX",
+ "dexLabel": "Hyperliquid",
+ "logoUrl": "https://uni.onekey-asset.com/static/hyperliquid/APEX.png",
+ "price": "0.2591",
+ "priceChange24hPercent": "-1.3779",
+ "volume24h": "126986.55001",
+ "maxLeverage": 3
+ },
+ {
+ "key": "perps:kNEIRO",
+ "kind": "perp",
+ "sourceCategory": "crypto",
+ "name": "kNEIRO",
+ "symbol": "kNEIRO",
+ "dexLabel": "Hyperliquid",
+ "logoUrl": "https://uni.onekey-asset.com/static/hyperliquid/kNEIRO.png",
+ "price": "0.0887",
+ "priceChange24hPercent": "-0.1913",
+ "volume24h": "125889.758162",
+ "maxLeverage": 3
+ },
+ {
+ "key": "perps:ZETA",
+ "kind": "perp",
+ "sourceCategory": "crypto",
+ "name": "ZETA",
+ "symbol": "ZETA",
+ "dexLabel": "Hyperliquid",
+ "logoUrl": "https://uni.onekey-asset.com/static/hyperliquid/ZETA.png",
+ "price": "0.03483",
+ "priceChange24hPercent": "-3.1962",
+ "volume24h": "125803.761324",
+ "maxLeverage": 3
+ },
+ {
+ "key": "perps:AXS",
+ "kind": "perp",
+ "sourceCategory": "crypto",
+ "name": "AXS",
+ "symbol": "AXS",
+ "dexLabel": "Hyperliquid",
+ "logoUrl": "https://uni.onekey-asset.com/static/hyperliquid/AXS.png",
+ "price": "0.96265",
+ "priceChange24hPercent": "0.3942",
+ "volume24h": "123092.382604",
+ "maxLeverage": 5
+ },
+ {
+ "key": "perps:SAND",
+ "kind": "perp",
+ "sourceCategory": "crypto",
+ "name": "SAND",
+ "symbol": "SAND",
+ "dexLabel": "Hyperliquid",
+ "logoUrl": "https://uni.onekey-asset.com/static/hyperliquid/SAND.png",
+ "price": "0.040316",
+ "priceChange24hPercent": "0.9086",
+ "volume24h": "119849.152358",
+ "maxLeverage": 5
+ },
+ {
+ "key": "perps:CFX",
+ "kind": "perp",
+ "sourceCategory": "crypto",
+ "name": "CFX",
+ "symbol": "CFX",
+ "dexLabel": "Hyperliquid",
+ "logoUrl": "https://uni.onekey-asset.com/static/hyperliquid/CFX.png",
+ "price": "0.049545",
+ "priceChange24hPercent": "0.3748",
+ "volume24h": "116377.907728",
+ "maxLeverage": 5
+ },
+ {
+ "key": "perps:RSR",
+ "kind": "perp",
+ "sourceCategory": "crypto",
+ "name": "RSR",
+ "symbol": "RSR",
+ "dexLabel": "Hyperliquid",
+ "logoUrl": "https://uni.onekey-asset.com/static/hyperliquid/RSR.png",
+ "price": "0.001417",
+ "priceChange24hPercent": "-0.9783",
+ "volume24h": "115142.399069",
+ "maxLeverage": 3
+ },
+ {
+ "key": "perps:PNUT",
+ "kind": "perp",
+ "sourceCategory": "crypto",
+ "name": "PNUT",
+ "symbol": "PNUT",
+ "dexLabel": "Hyperliquid",
+ "logoUrl": "https://uni.onekey-asset.com/static/hyperliquid/PNUT.png",
+ "price": "0.05036",
+ "priceChange24hPercent": "-0.0397",
+ "volume24h": "114293.790341",
+ "maxLeverage": 3
+ },
+ {
+ "key": "perps:POLYX",
+ "kind": "perp",
+ "sourceCategory": "crypto",
+ "name": "POLYX",
+ "symbol": "POLYX",
+ "dexLabel": "Hyperliquid",
+ "logoUrl": "https://uni.onekey-asset.com/static/hyperliquid/POLYX.png",
+ "price": "0.037101",
+ "priceChange24hPercent": "-0.1856",
+ "volume24h": "113808.4505730001",
+ "maxLeverage": 3
+ },
+ {
+ "key": "perps:kFLOKI",
+ "kind": "perp",
+ "sourceCategory": "crypto",
+ "name": "kFLOKI",
+ "symbol": "kFLOKI",
+ "dexLabel": "Hyperliquid",
+ "logoUrl": "https://uni.onekey-asset.com/static/hyperliquid/kFLOKI.png",
+ "price": "0.026135",
+ "priceChange24hPercent": "-0.0077",
+ "volume24h": "111064.403751",
+ "maxLeverage": 5
+ },
+ {
+ "key": "perps:NEO",
+ "kind": "perp",
+ "sourceCategory": "crypto",
+ "name": "NEO",
+ "symbol": "NEO",
+ "dexLabel": "Hyperliquid",
+ "logoUrl": "https://uni.onekey-asset.com/static/hyperliquid/NEO.png",
+ "price": "2.1864",
+ "priceChange24hPercent": "0.9885",
+ "volume24h": "107715.823019",
+ "maxLeverage": 5
+ },
+ {
+ "key": "perps:RUNE",
+ "kind": "perp",
+ "sourceCategory": "crypto",
+ "name": "RUNE",
+ "symbol": "RUNE",
+ "dexLabel": "Hyperliquid",
+ "logoUrl": "https://uni.onekey-asset.com/static/hyperliquid/RUNE.png",
+ "price": "0.48442",
+ "priceChange24hPercent": "-0.4828",
+ "volume24h": "106420.737902",
+ "maxLeverage": 5
+ },
+ {
+ "key": "perps:IMX",
+ "kind": "perp",
+ "sourceCategory": "crypto",
+ "name": "IMX",
+ "symbol": "IMX",
+ "dexLabel": "Hyperliquid",
+ "logoUrl": "https://uni.onekey-asset.com/static/hyperliquid/IMX.png",
+ "price": "0.13333",
+ "priceChange24hPercent": "0.6112",
+ "volume24h": "99678.3382069999",
+ "maxLeverage": 5
+ },
+ {
+ "key": "perps:SUPER",
+ "kind": "perp",
+ "sourceCategory": "crypto",
+ "name": "SUPER",
+ "symbol": "SUPER",
+ "dexLabel": "Hyperliquid",
+ "logoUrl": "https://uni.onekey-asset.com/static/hyperliquid/SUPER.png",
+ "price": "0.1213",
+ "priceChange24hPercent": "-0.4023",
+ "volume24h": "97814.31201",
+ "maxLeverage": 3
+ },
+ {
+ "key": "perps:FOGO",
+ "kind": "perp",
+ "sourceCategory": "crypto",
+ "name": "FOGO",
+ "symbol": "FOGO",
+ "dexLabel": "Hyperliquid",
+ "logoUrl": "https://uni.onekey-asset.com/static/hyperliquid/FOGO.png",
+ "price": "0.007256",
+ "priceChange24hPercent": "0.4291",
+ "volume24h": "96161.0251519999",
+ "maxLeverage": 3
+ },
+ {
+ "key": "perps:BLUR",
+ "kind": "perp",
+ "sourceCategory": "crypto",
+ "name": "BLUR",
+ "symbol": "BLUR",
+ "dexLabel": "Hyperliquid",
+ "logoUrl": "https://uni.onekey-asset.com/static/hyperliquid/BLUR.png",
+ "price": "0.017305",
+ "priceChange24hPercent": "-0.8139",
+ "volume24h": "92580.675037",
+ "maxLeverage": 3
+ },
+ {
+ "key": "perps:MEME",
+ "kind": "perp",
+ "sourceCategory": "crypto",
+ "name": "MEME",
+ "symbol": "MEME",
+ "dexLabel": "Hyperliquid",
+ "logoUrl": "https://uni.onekey-asset.com/static/hyperliquid/MEME.png",
+ "price": "0.00056",
+ "priceChange24hPercent": "0.3584",
+ "volume24h": "90815.477002",
+ "maxLeverage": 3
+ },
+ {
+ "key": "perps:DYM",
+ "kind": "perp",
+ "sourceCategory": "crypto",
+ "name": "DYM",
+ "symbol": "DYM",
+ "dexLabel": "Hyperliquid",
+ "logoUrl": "https://uni.onekey-asset.com/static/hyperliquid/DYM.png",
+ "price": "0.01522",
+ "priceChange24hPercent": "-1.8065",
+ "volume24h": "90397.773191",
+ "maxLeverage": 3
+ },
+ {
+ "key": "perps:INIT",
+ "kind": "perp",
+ "sourceCategory": "crypto",
+ "name": "INIT",
+ "symbol": "INIT",
+ "dexLabel": "Hyperliquid",
+ "logoUrl": "https://uni.onekey-asset.com/static/hyperliquid/INIT.png",
+ "price": "0.067642",
+ "priceChange24hPercent": "1.2665",
+ "volume24h": "86791.885308",
+ "maxLeverage": 3
+ },
+ {
+ "key": "perps:NXPC",
+ "kind": "perp",
+ "sourceCategory": "crypto",
+ "name": "NXPC",
+ "symbol": "NXPC",
+ "dexLabel": "Hyperliquid",
+ "logoUrl": "https://uni.onekey-asset.com/static/hyperliquid/NXPC.png",
+ "price": "0.2113",
+ "priceChange24hPercent": "1.4841",
+ "volume24h": "84261.5009400001",
+ "maxLeverage": 3
+ },
+ {
+ "key": "perps:BABY",
+ "kind": "perp",
+ "sourceCategory": "crypto",
+ "name": "BABY",
+ "symbol": "BABY",
+ "dexLabel": "Hyperliquid",
+ "logoUrl": "https://uni.onekey-asset.com/static/hyperliquid/BABY.png",
+ "price": "0.011157",
+ "priceChange24hPercent": "-1.5964",
+ "volume24h": "82731.2663029999",
+ "maxLeverage": 3
+ },
+ {
+ "key": "perps:SNX",
+ "kind": "perp",
+ "sourceCategory": "crypto",
+ "name": "SNX",
+ "symbol": "SNX",
+ "dexLabel": "Hyperliquid",
+ "logoUrl": "https://uni.onekey-asset.com/static/hyperliquid/SNX.png",
+ "price": "0.22247",
+ "priceChange24hPercent": "-1.8529",
+ "volume24h": "79326.442792",
+ "maxLeverage": 3
+ },
+ {
+ "key": "perps:ME",
+ "kind": "perp",
+ "sourceCategory": "crypto",
+ "name": "ME",
+ "symbol": "ME",
+ "dexLabel": "Hyperliquid",
+ "logoUrl": "https://uni.onekey-asset.com/static/hyperliquid/ME.png",
+ "price": "0.06566",
+ "priceChange24hPercent": "0",
+ "volume24h": "79248.147698",
+ "maxLeverage": 3
+ },
+ {
+ "key": "perps:MERL",
+ "kind": "perp",
+ "sourceCategory": "crypto",
+ "name": "MERL",
+ "symbol": "MERL",
+ "dexLabel": "Hyperliquid",
+ "logoUrl": "https://uni.onekey-asset.com/static/hyperliquid/MERL.png",
+ "price": "0.02334",
+ "priceChange24hPercent": "-0.1241",
+ "volume24h": "77402.739986",
+ "maxLeverage": 3
+ },
+ {
+ "key": "perps:BANANA",
+ "kind": "perp",
+ "sourceCategory": "crypto",
+ "name": "BANANA",
+ "symbol": "BANANA",
+ "dexLabel": "Hyperliquid",
+ "logoUrl": "https://uni.onekey-asset.com/static/hyperliquid/BANANA.png",
+ "price": "4.1083",
+ "priceChange24hPercent": "1.2395",
+ "volume24h": "73219.53861",
+ "maxLeverage": 3
+ },
+ {
+ "key": "perps:ANIME",
+ "kind": "perp",
+ "sourceCategory": "crypto",
+ "name": "ANIME",
+ "symbol": "ANIME",
+ "dexLabel": "Hyperliquid",
+ "logoUrl": "https://uni.onekey-asset.com/static/hyperliquid/ANIME.png",
+ "price": "0.002868",
+ "priceChange24hPercent": "-1.3076",
+ "volume24h": "70389.513858",
+ "maxLeverage": 3
+ },
+ {
+ "key": "perps:XAI",
+ "kind": "perp",
+ "sourceCategory": "crypto",
+ "name": "XAI",
+ "symbol": "XAI",
+ "dexLabel": "Hyperliquid",
+ "logoUrl": "https://uni.onekey-asset.com/static/hyperliquid/XAI.png",
+ "price": "0.0077",
+ "priceChange24hPercent": "-1.0283",
+ "volume24h": "68997.681576",
+ "maxLeverage": 3
+ },
+ {
+ "key": "perps:PROVE",
+ "kind": "perp",
+ "sourceCategory": "crypto",
+ "name": "PROVE",
+ "symbol": "PROVE",
+ "dexLabel": "Hyperliquid",
+ "logoUrl": "https://uni.onekey-asset.com/static/hyperliquid/PROVE.png",
+ "price": "0.19081",
+ "priceChange24hPercent": "2.9791",
+ "volume24h": "68714.41878",
+ "maxLeverage": 3
+ },
+ {
+ "key": "perps:HYPER",
+ "kind": "perp",
+ "sourceCategory": "crypto",
+ "name": "HYPER",
+ "symbol": "HYPER",
+ "dexLabel": "Hyperliquid",
+ "logoUrl": "https://uni.onekey-asset.com/static/hyperliquid/HYPER.png",
+ "price": "0.070315",
+ "priceChange24hPercent": "1.4485",
+ "volume24h": "67332.725",
+ "maxLeverage": 3
+ },
+ {
+ "key": "perps:GMT",
+ "kind": "perp",
+ "sourceCategory": "crypto",
+ "name": "GMT",
+ "symbol": "GMT",
+ "dexLabel": "Hyperliquid",
+ "logoUrl": "https://uni.onekey-asset.com/static/hyperliquid/GMT.png",
+ "price": "0.007549",
+ "priceChange24hPercent": "-0.3564",
+ "volume24h": "65592.587623",
+ "maxLeverage": 3
+ },
+ {
+ "key": "perps:ALT",
+ "kind": "perp",
+ "sourceCategory": "crypto",
+ "name": "ALT",
+ "symbol": "ALT",
+ "dexLabel": "Hyperliquid",
+ "logoUrl": "https://uni.onekey-asset.com/static/hyperliquid/ALT.png",
+ "price": "0.00655",
+ "priceChange24hPercent": "0.1682",
+ "volume24h": "63786.052668",
+ "maxLeverage": 3
+ },
+ {
+ "key": "perps:CELO",
+ "kind": "perp",
+ "sourceCategory": "crypto",
+ "name": "CELO",
+ "symbol": "CELO",
+ "dexLabel": "Hyperliquid",
+ "logoUrl": "https://uni.onekey-asset.com/static/hyperliquid/CELO.png",
+ "price": "0.078347",
+ "priceChange24hPercent": "-0.6845",
+ "volume24h": "63368.614664",
+ "maxLeverage": 3
+ },
+ {
+ "key": "perps:RESOLV",
+ "kind": "perp",
+ "sourceCategory": "crypto",
+ "name": "RESOLV",
+ "symbol": "RESOLV",
+ "dexLabel": "Hyperliquid",
+ "logoUrl": "https://uni.onekey-asset.com/static/hyperliquid/RESOLV.png",
+ "price": "0.018016",
+ "priceChange24hPercent": "-0.6233",
+ "volume24h": "62768.928598",
+ "maxLeverage": 3
+ },
+ {
+ "key": "perps:TRB",
+ "kind": "perp",
+ "sourceCategory": "crypto",
+ "name": "TRB",
+ "symbol": "TRB",
+ "dexLabel": "Hyperliquid",
+ "logoUrl": "https://uni.onekey-asset.com/static/hyperliquid/TRB.png",
+ "price": "18.396",
+ "priceChange24hPercent": "0.9106",
+ "volume24h": "61527.55486",
+ "maxLeverage": 3
+ },
+ {
+ "key": "perps:TURBO",
+ "kind": "perp",
+ "sourceCategory": "crypto",
+ "name": "TURBO",
+ "symbol": "TURBO",
+ "dexLabel": "Hyperliquid",
+ "logoUrl": "https://uni.onekey-asset.com/static/hyperliquid/TURBO.png",
+ "price": "0.000985",
+ "priceChange24hPercent": "-1.6966",
+ "volume24h": "59439.294126",
+ "maxLeverage": 3
+ },
+ {
+ "key": "perps:UMA",
+ "kind": "perp",
+ "sourceCategory": "crypto",
+ "name": "UMA",
+ "symbol": "UMA",
+ "dexLabel": "Hyperliquid",
+ "logoUrl": "https://uni.onekey-asset.com/static/hyperliquid/UMA.png",
+ "price": "0.38937",
+ "priceChange24hPercent": "-1.5574",
+ "volume24h": "57567.225709",
+ "maxLeverage": 3
+ },
+ {
+ "key": "perps:MANTA",
+ "kind": "perp",
+ "sourceCategory": "crypto",
+ "name": "MANTA",
+ "symbol": "MANTA",
+ "dexLabel": "Hyperliquid",
+ "logoUrl": "https://uni.onekey-asset.com/static/hyperliquid/MANTA.png",
+ "price": "0.06195",
+ "priceChange24hPercent": "-0.5618",
+ "volume24h": "53614.672267",
+ "maxLeverage": 3
+ },
+ {
+ "key": "perps:GAS",
+ "kind": "perp",
+ "sourceCategory": "crypto",
+ "name": "GAS",
+ "symbol": "GAS",
+ "dexLabel": "Hyperliquid",
+ "logoUrl": "https://uni.onekey-asset.com/static/hyperliquid/GAS.png",
+ "price": "1.2554",
+ "priceChange24hPercent": "1.9242",
+ "volume24h": "48768.50975",
+ "maxLeverage": 3
+ },
+ {
+ "key": "perps:GRIFFAIN",
+ "kind": "perp",
+ "sourceCategory": "crypto",
+ "name": "GRIFFAIN",
+ "symbol": "GRIFFAIN",
+ "dexLabel": "Hyperliquid",
+ "logoUrl": "https://uni.onekey-asset.com/static/hyperliquid/GRIFFAIN.png",
+ "price": "0.011584",
+ "priceChange24hPercent": "-2.9653",
+ "volume24h": "46729.33477",
+ "maxLeverage": 3
+ },
+ {
+ "key": "perps:WCT",
+ "kind": "perp",
+ "sourceCategory": "crypto",
+ "name": "WCT",
+ "symbol": "WCT",
+ "dexLabel": "Hyperliquid",
+ "logoUrl": "https://uni.onekey-asset.com/static/hyperliquid/WCT.png",
+ "price": "0.039585",
+ "priceChange24hPercent": "-0.2344",
+ "volume24h": "43585.234375",
+ "maxLeverage": 3
+ },
+ {
+ "key": "perps:HMSTR",
+ "kind": "perp",
+ "sourceCategory": "crypto",
+ "name": "HMSTR",
+ "symbol": "HMSTR",
+ "dexLabel": "Hyperliquid",
+ "logoUrl": "https://uni.onekey-asset.com/static/hyperliquid/HMSTR.png",
+ "price": "0.000177",
+ "priceChange24hPercent": "0",
+ "volume24h": "24190.25169",
+ "maxLeverage": 3
+ },
+ {
+ "key": "perps:NOT",
+ "kind": "perp",
+ "sourceCategory": "crypto",
+ "name": "NOT",
+ "symbol": "NOT",
+ "dexLabel": "Hyperliquid",
+ "logoUrl": "https://uni.onekey-asset.com/static/hyperliquid/NOT.png",
+ "price": "0.000467",
+ "priceChange24hPercent": "1.7429",
+ "volume24h": "23684.986835",
+ "maxLeverage": 3
+ },
+ {
+ "key": "perps:SAGA",
+ "kind": "perp",
+ "sourceCategory": "crypto",
+ "name": "SAGA",
+ "symbol": "SAGA",
+ "dexLabel": "Hyperliquid",
+ "logoUrl": "https://uni.onekey-asset.com/static/hyperliquid/SAGA.png",
+ "price": "0.01537",
+ "priceChange24hPercent": "-0.065",
+ "volume24h": "23212.761919",
+ "maxLeverage": 3
+ },
+ {
+ "key": "perps:TNSR",
+ "kind": "perp",
+ "sourceCategory": "crypto",
+ "name": "TNSR",
+ "symbol": "TNSR",
+ "dexLabel": "Hyperliquid",
+ "logoUrl": "https://uni.onekey-asset.com/static/hyperliquid/TNSR.png",
+ "price": "0.0366",
+ "priceChange24hPercent": "0.5771",
+ "volume24h": "17966.22055",
+ "maxLeverage": 3
+ }
+ ],
+ "stocks": [],
+ "metals": [],
+ "indices": [],
+ "commodities": [],
+ "forex": [],
+ "pre-ipo": [],
+ "pre-launch": [],
+ "etfs": []
+ },
+ "stocks": {
+ "all": [
+ {
+ "symbol": "A",
+ "name": "Agilent Technologies, Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/A.png",
+ "price": "150.84",
+ "priceChange24hPercent": "0.57341",
+ "marketCap": "42602042880",
+ "volume24h": "272619165.6",
+ "key": "stock:A",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Agilent Technologies, Inc."
+ }
+ },
+ {
+ "symbol": "AA",
+ "name": "Alcoa Corporation",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/AA.png",
+ "price": "49.97",
+ "priceChange24hPercent": "-2.11557",
+ "marketCap": "13187532730",
+ "volume24h": "139787427.19",
+ "key": "stock:AA",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Alcoa Corporation"
+ }
+ },
+ {
+ "symbol": "AAL",
+ "name": "American Airlines Group Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/AAL.png",
+ "price": "13.13",
+ "priceChange24hPercent": "1.23362",
+ "marketCap": "8691665457",
+ "volume24h": "972636708.4200001",
+ "key": "stock:AAL",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "American Airlines Group Inc."
+ }
+ },
+ {
+ "symbol": "AAOI",
+ "name": "Applied Optoelectronics, Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/AAOI.png",
+ "price": "105.53",
+ "priceChange24hPercent": "5.1305",
+ "marketCap": "8468019202",
+ "volume24h": "721847361.3",
+ "key": "stock:AAOI",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Applied Optoelectronics, Inc."
+ }
+ },
+ {
+ "symbol": "AAON",
+ "name": "AAON, Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/AAON.png",
+ "price": "79.4",
+ "priceChange24hPercent": "1.82098",
+ "marketCap": "6503788980",
+ "volume24h": "112611908.4",
+ "key": "stock:AAON",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "AAON, Inc."
+ }
+ },
+ {
+ "symbol": "AAPL",
+ "name": "苹果",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/AAPL.png",
+ "price": "319.97",
+ "priceChange24hPercent": "-2.51059",
+ "marketCap": "4699513299320",
+ "volume24h": "12673014673.480001",
+ "key": "stock:AAPL",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "苹果"
+ }
+ },
+ {
+ "symbol": "ABBV",
+ "name": "艾伯维",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/ABBV.png",
+ "price": "256.34",
+ "priceChange24hPercent": "-1.48726",
+ "marketCap": "452899671735",
+ "volume24h": "1197819912.52",
+ "key": "stock:ABBV",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "艾伯维"
+ }
+ },
+ {
+ "symbol": "ABNB",
+ "name": "爱彼迎",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/ABNB.png",
+ "price": "181.94",
+ "priceChange24hPercent": "-1.78677",
+ "marketCap": "107983869660",
+ "volume24h": "620194706.78",
+ "key": "stock:ABNB",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "爱彼迎"
+ }
+ },
+ {
+ "symbol": "ABT",
+ "name": "雅培",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/ABT.png",
+ "price": "108.32",
+ "priceChange24hPercent": "-0.43203",
+ "marketCap": "187435126855",
+ "volume24h": "744744194.56",
+ "key": "stock:ABT",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "雅培"
+ }
+ },
+ {
+ "symbol": "ACHR",
+ "name": "Archer航空",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/ACHR.png",
+ "price": "5.71",
+ "priceChange24hPercent": "-0.86806",
+ "marketCap": "4337304580",
+ "volume24h": "88472532.94",
+ "key": "stock:ACHR",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Archer航空"
+ }
+ },
+ {
+ "symbol": "ACLS",
+ "name": "Axcelis Technologies, Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/ACLS.png",
+ "price": "115.08",
+ "priceChange24hPercent": "4.26746",
+ "marketCap": "3536856867",
+ "volume24h": "55324825.08",
+ "key": "stock:ACLS",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Axcelis Technologies, Inc."
+ }
+ },
+ {
+ "symbol": "ACMR",
+ "name": "ACM Research, Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/ACMR.png",
+ "price": "74.44",
+ "priceChange24hPercent": "7.23135",
+ "marketCap": "4772920025",
+ "volume24h": "47904001",
+ "key": "stock:ACMR",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "ACM Research, Inc."
+ }
+ },
+ {
+ "symbol": "ACN",
+ "name": "埃森哲",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/ACN.png",
+ "price": "186.72",
+ "priceChange24hPercent": "-3.314",
+ "marketCap": "114261830592",
+ "volume24h": "906653876.64",
+ "key": "stock:ACN",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "埃森哲"
+ }
+ },
+ {
+ "symbol": "ADBE",
+ "name": "奥多比",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/ADBE.png",
+ "price": "266.51",
+ "priceChange24hPercent": "-6.73316",
+ "marketCap": "105937725000",
+ "volume24h": "1770913376.79",
+ "key": "stock:ADBE",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "奥多比"
+ }
+ },
+ {
+ "symbol": "ADI",
+ "name": "亚德诺",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/ADI.png",
+ "price": "362.25",
+ "priceChange24hPercent": "1.6129",
+ "marketCap": "176447265750",
+ "volume24h": "1289821554",
+ "key": "stock:ADI",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "亚德诺"
+ }
+ },
+ {
+ "symbol": "ADM",
+ "name": "Archer-Daniels-Midland Company",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/ADM.png",
+ "price": "84.61",
+ "priceChange24hPercent": "0.27258",
+ "marketCap": "40778381770",
+ "volume24h": "196485149.45",
+ "key": "stock:ADM",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Archer-Daniels-Midland Company"
+ }
+ },
+ {
+ "symbol": "ADP",
+ "name": "Automatic Data Processing, Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/ADP.png",
+ "price": "277.62",
+ "priceChange24hPercent": "-2.08444",
+ "marketCap": "110974153080",
+ "volume24h": "613454970.66",
+ "key": "stock:ADP",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Automatic Data Processing, Inc."
+ }
+ },
+ {
+ "symbol": "ADSK",
+ "name": "Autodesk, Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/ADSK.png",
+ "price": "217.9",
+ "priceChange24hPercent": "-8.26036",
+ "marketCap": "46008550193",
+ "volume24h": "863407177.9",
+ "key": "stock:ADSK",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Autodesk, Inc."
+ }
+ },
+ {
+ "symbol": "AEE",
+ "name": "Ameren Corporation",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/AEE.png",
+ "price": "106.47",
+ "priceChange24hPercent": "0.05638568",
+ "marketCap": "29465785440",
+ "volume24h": "172858729.68",
+ "key": "stock:AEE",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Ameren Corporation"
+ }
+ },
+ {
+ "symbol": "AEHR",
+ "name": "Aehr Test Systems",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/AEHR.png",
+ "price": "86.26",
+ "priceChange24hPercent": "13.0982",
+ "marketCap": "2813840017",
+ "volume24h": "389960930.12",
+ "key": "stock:AEHR",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Aehr Test Systems"
+ }
+ },
+ {
+ "symbol": "AEP",
+ "name": "American Electric Power Company, Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/AEP.png",
+ "price": "124.5",
+ "priceChange24hPercent": "-0.16839",
+ "marketCap": "67777426500",
+ "volume24h": "392085733.5",
+ "key": "stock:AEP",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "American Electric Power Company, Inc."
+ }
+ },
+ {
+ "symbol": "AFL",
+ "name": "Aflac Incorporated",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/AFL.png",
+ "price": "117.21",
+ "priceChange24hPercent": "-0.97161",
+ "marketCap": "59658131850",
+ "volume24h": "217968638.82",
+ "key": "stock:AFL",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Aflac Incorporated"
+ }
+ },
+ {
+ "symbol": "AG",
+ "name": "First Majestic Silver Corp.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/AG.png",
+ "price": "20.97",
+ "priceChange24hPercent": "-1.96353",
+ "marketCap": "10338797160",
+ "volume24h": "158140662.57",
+ "key": "stock:AG",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "First Majestic Silver Corp."
+ }
+ },
+ {
+ "symbol": "AGG",
+ "name": "iShares Core U.S. Aggregate Bond ETF",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/AGG.png",
+ "price": "97",
+ "priceChange24hPercent": "0.05157298",
+ "marketCap": "136630691995",
+ "volume24h": "757482021",
+ "key": "stock:AGG",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "iShares Core U.S. Aggregate Bond ETF"
+ }
+ },
+ {
+ "symbol": "AIAGR",
+ "name": "AIAGR",
+ "logoUrl": "https://uni-test.onekey-asset.com/utility/okx/token/30d87c734ecf188c62f2d3d983cae68d732e06b8b6145b4f902558444895eb70",
+ "key": "stock:AIAGR",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "AIAGR"
+ }
+ },
+ {
+ "symbol": "AIG",
+ "name": "American International Group, Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/AIG.png",
+ "price": "76.21",
+ "priceChange24hPercent": "-0.84569",
+ "marketCap": "40406999260",
+ "volume24h": "223022925.45999998",
+ "key": "stock:AIG",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "American International Group, Inc."
+ }
+ },
+ {
+ "symbol": "AIP",
+ "name": "Arteris, Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/AIP.png",
+ "price": "21.37",
+ "priceChange24hPercent": "3.33656",
+ "marketCap": "986695255",
+ "volume24h": "11771920.940000001",
+ "key": "stock:AIP",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Arteris, Inc."
+ }
+ },
+ {
+ "symbol": "AIQ",
+ "name": "Global X - Artificial Intelligence & Technology ETF",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/AIQ.png",
+ "price": "64.32",
+ "priceChange24hPercent": "0.0311042",
+ "marketCap": "11179963726",
+ "volume24h": "80028680.63999999",
+ "key": "stock:AIQ",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Global X - Artificial Intelligence & Technology ETF"
+ }
+ },
+ {
+ "symbol": "AIT",
+ "name": "Applied Industrial Technologies, Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/AIT.png",
+ "price": "325.57",
+ "priceChange24hPercent": "0.96446",
+ "marketCap": "12032904415",
+ "volume24h": "63569821.49",
+ "key": "stock:AIT",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Applied Industrial Technologies, Inc."
+ }
+ },
+ {
+ "symbol": "AIZ",
+ "name": "Assurant, Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/AIZ.png",
+ "price": "285.74",
+ "priceChange24hPercent": "-0.68472",
+ "marketCap": "14157731224",
+ "volume24h": "92484322.84",
+ "key": "stock:AIZ",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Assurant, Inc."
+ }
+ },
+ {
+ "symbol": "AJG",
+ "name": "Arthur J. Gallagher & Co.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/AJG.png",
+ "price": "262.69",
+ "priceChange24hPercent": "-1.48879",
+ "marketCap": "67485060737",
+ "volume24h": "265128025.89",
+ "key": "stock:AJG",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Arthur J. Gallagher & Co."
+ }
+ },
+ {
+ "symbol": "AKAM",
+ "name": "Akamai Technologies, Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/AKAM.png",
+ "price": "105.22",
+ "priceChange24hPercent": "-1.20188",
+ "marketCap": "15297457154",
+ "volume24h": "185025687.3",
+ "key": "stock:AKAM",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Akamai Technologies, Inc."
+ }
+ },
+ {
+ "symbol": "ALAB",
+ "name": "Astera Labs, Inc. Common Stock",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/ALAB.png",
+ "price": "310.4",
+ "priceChange24hPercent": "9.75179",
+ "marketCap": "53205024266",
+ "volume24h": "2028854793.6",
+ "key": "stock:ALAB",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Astera Labs, Inc. Common Stock"
+ }
+ },
+ {
+ "symbol": "ALB",
+ "name": "Albemarle Corporation",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/ALB.png",
+ "price": "126.28",
+ "priceChange24hPercent": "-4.44915",
+ "marketCap": "14892787728",
+ "volume24h": "408484482.56",
+ "key": "stock:ALB",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Albemarle Corporation"
+ }
+ },
+ {
+ "symbol": "ALGN",
+ "name": "Align Technology, Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/ALGN.png",
+ "price": "158.635",
+ "priceChange24hPercent": "-0.76319",
+ "marketCap": "11361141577",
+ "volume24h": "157130822.92999998",
+ "key": "stock:ALGN",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Align Technology, Inc."
+ }
+ },
+ {
+ "symbol": "ALL",
+ "name": "The Allstate Corporation",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/ALL.png",
+ "price": "259.57",
+ "priceChange24hPercent": "-1.34544",
+ "marketCap": "66818768970",
+ "volume24h": "329020808.77",
+ "key": "stock:ALL",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "The Allstate Corporation"
+ }
+ },
+ {
+ "symbol": "ALLY",
+ "name": "Ally Financial Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/ALLY.png",
+ "price": "43.73",
+ "priceChange24hPercent": "0.32117",
+ "marketCap": "13302666000",
+ "volume24h": "68233580.74",
+ "key": "stock:ALLY",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Ally Financial Inc."
+ }
+ },
+ {
+ "symbol": "ALNY",
+ "name": "Alnylam Pharmaceuticals, Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/ALNY.png",
+ "price": "266.11",
+ "priceChange24hPercent": "0.6087",
+ "marketCap": "35607912990",
+ "volume24h": "380862220.31",
+ "key": "stock:ALNY",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Alnylam Pharmaceuticals, Inc."
+ }
+ },
+ {
+ "symbol": "ALOY",
+ "name": "REalloys Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/ALOY.png",
+ "price": "10.1",
+ "priceChange24hPercent": "0.39761",
+ "marketCap": "689133484",
+ "volume24h": "13405810.799999999",
+ "key": "stock:ALOY",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "REalloys Inc."
+ }
+ },
+ {
+ "symbol": "AMAT",
+ "name": "应用材料",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/AMAT.png",
+ "price": "454.71",
+ "priceChange24hPercent": "4.31282",
+ "marketCap": "361021096890",
+ "volume24h": "2735913224.0099998",
+ "key": "stock:AMAT",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "应用材料"
+ }
+ },
+ {
+ "symbol": "AMBR",
+ "name": "Amber International Holding Ltd",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/AMBR.png",
+ "price": "0.9096",
+ "priceChange24hPercent": "-3.21345",
+ "marketCap": "85213987",
+ "volume24h": "261758.3208",
+ "key": "stock:AMBR",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Amber International Holding Ltd"
+ }
+ },
+ {
+ "symbol": "AMC",
+ "name": "AMC院线",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/AMC.png",
+ "price": "2.65",
+ "priceChange24hPercent": "4.53649",
+ "marketCap": "2365402291",
+ "volume24h": "151024419.54999998",
+ "key": "stock:AMC",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "AMC院线"
+ }
+ },
+ {
+ "symbol": "AMD",
+ "name": "超威半导体",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/AMD.png",
+ "price": "477.57",
+ "priceChange24hPercent": "4.69353",
+ "marketCap": "778725642000",
+ "volume24h": "9397976816.94",
+ "key": "stock:AMD",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "超威半导体"
+ }
+ },
+ {
+ "symbol": "AME",
+ "name": "AMETEK, Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/AME.png",
+ "price": "237.72",
+ "priceChange24hPercent": "1.50299",
+ "marketCap": "54486137160",
+ "volume24h": "343509916.68",
+ "key": "stock:AME",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "AMETEK, Inc."
+ }
+ },
+ {
+ "symbol": "AMGN",
+ "name": "安进",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/AMGN.png",
+ "price": "437.23",
+ "priceChange24hPercent": "-1.55138",
+ "marketCap": "235976528840",
+ "volume24h": "724091793.47",
+ "key": "stock:AMGN",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "安进"
+ }
+ },
+ {
+ "symbol": "AMKR",
+ "name": "Amkor Technology, Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/AMKR.png",
+ "price": "47.77",
+ "priceChange24hPercent": "1.76821",
+ "marketCap": "11868552040",
+ "volume24h": "198345530.38000003",
+ "key": "stock:AMKR",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Amkor Technology, Inc."
+ }
+ },
+ {
+ "symbol": "AMP",
+ "name": "Ameriprise Financial, Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/AMP.png",
+ "price": "560.56",
+ "priceChange24hPercent": "-0.79989",
+ "marketCap": "50392718376",
+ "volume24h": "207392625.43999997",
+ "key": "stock:AMP",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Ameriprise Financial, Inc."
+ }
+ },
+ {
+ "symbol": "AMT",
+ "name": "American Tower Corporation",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/AMT.png",
+ "price": "175.85",
+ "priceChange24hPercent": "-1.06892",
+ "marketCap": "81939066000",
+ "volume24h": "339662715.8",
+ "key": "stock:AMT",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "American Tower Corporation"
+ }
+ },
+ {
+ "symbol": "AMZN",
+ "name": "亚马逊",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/AMZN.png",
+ "price": "258.51",
+ "priceChange24hPercent": "-0.15064",
+ "marketCap": "2780817921000",
+ "volume24h": "7949159751.12",
+ "key": "stock:AMZN",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "亚马逊"
+ }
+ },
+ {
+ "symbol": "ANET",
+ "name": "阿里斯塔网络",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/ANET.png",
+ "price": "193.78",
+ "priceChange24hPercent": "1.22232",
+ "marketCap": "244001853696",
+ "volume24h": "812084116.34",
+ "key": "stock:ANET",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "阿里斯塔网络"
+ }
+ },
+ {
+ "symbol": "ANTAS",
+ "name": "ANTAS",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/ANTAS.png",
+ "key": "stock:ANTAS",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "ANTAS"
+ }
+ },
+ {
+ "symbol": "AOSL",
+ "name": "Alpha and Omega Semiconductor Limited",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/AOSL.png",
+ "price": "25.2",
+ "priceChange24hPercent": "3.06748",
+ "marketCap": "754225366",
+ "volume24h": "8939574",
+ "key": "stock:AOSL",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Alpha and Omega Semiconductor Limited"
+ }
+ },
+ {
+ "symbol": "APA",
+ "name": "APA Corporation",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/APA.png",
+ "price": "42.77",
+ "priceChange24hPercent": "-3.19149",
+ "marketCap": "15117911900",
+ "volume24h": "180726131.95000002",
+ "key": "stock:APA",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "APA Corporation"
+ }
+ },
+ {
+ "symbol": "APD",
+ "name": "Air Products and Chemicals, Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/APD.png",
+ "price": "301.27",
+ "priceChange24hPercent": "-0.96969",
+ "marketCap": "67088469623",
+ "volume24h": "202196155.42",
+ "key": "stock:APD",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Air Products and Chemicals, Inc."
+ }
+ },
+ {
+ "symbol": "APG",
+ "name": "APi Group Corporation",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/APG.png",
+ "price": "40.04",
+ "priceChange24hPercent": "0.02498126",
+ "marketCap": "17303698292",
+ "volume24h": "117631514",
+ "key": "stock:APG",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "APi Group Corporation"
+ }
+ },
+ {
+ "symbol": "APH",
+ "name": "Amphenol Corporation",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/APH.png",
+ "price": "82.78",
+ "priceChange24hPercent": "0.86512",
+ "marketCap": "204132168800",
+ "volume24h": "915155085.04",
+ "key": "stock:APH",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Amphenol Corporation"
+ }
+ },
+ {
+ "symbol": "APLD",
+ "name": "Applied Digital",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/APLD.png",
+ "price": "26.37",
+ "priceChange24hPercent": "1.77538",
+ "marketCap": "7591490611",
+ "volume24h": "355150527.12",
+ "key": "stock:APLD",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Applied Digital"
+ }
+ },
+ {
+ "symbol": "APO",
+ "name": "Apollo Global Management, Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/APO.png",
+ "price": "133.67",
+ "priceChange24hPercent": "-0.60971",
+ "marketCap": "76990149303",
+ "volume24h": "225600072.12999997",
+ "key": "stock:APO",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Apollo Global Management, Inc."
+ }
+ },
+ {
+ "symbol": "APP",
+ "name": "AppLovin",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/APP.png",
+ "price": "320.56",
+ "priceChange24hPercent": "2.22591",
+ "marketCap": "107688769005",
+ "volume24h": "1220609134.4",
+ "key": "stock:APP",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "AppLovin"
+ }
+ },
+ {
+ "symbol": "ARES",
+ "name": "Ares Management Corporation",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/ARES.png",
+ "price": "140.15",
+ "priceChange24hPercent": "-0.96806",
+ "marketCap": "46027356083",
+ "volume24h": "140801136.9",
+ "key": "stock:ARES",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Ares Management Corporation"
+ }
+ },
+ {
+ "symbol": "ARGT",
+ "name": "Global X - MSCI Argentina ETF",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/ARGT.png",
+ "price": "96.41",
+ "priceChange24hPercent": "-0.40289",
+ "marketCap": "852521333",
+ "volume24h": "6093112",
+ "key": "stock:ARGT",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Global X - MSCI Argentina ETF"
+ }
+ },
+ {
+ "symbol": "ARM",
+ "name": "安谋",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/ARM.png",
+ "price": "252.09",
+ "priceChange24hPercent": "3.91607",
+ "marketCap": "269231759259",
+ "volume24h": "1041739741.08",
+ "key": "stock:ARM",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "安谋"
+ }
+ },
+ {
+ "symbol": "ARMK",
+ "name": "Aramark",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/ARMK.png",
+ "price": "56.78",
+ "priceChange24hPercent": "-0.87291",
+ "marketCap": "14930503364",
+ "volume24h": "65727278.84",
+ "key": "stock:ARMK",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Aramark"
+ }
+ },
+ {
+ "symbol": "ARQQ",
+ "name": "Arqit Quantum Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/ARQQ.png",
+ "price": "21.37",
+ "priceChange24hPercent": "3.63725",
+ "marketCap": "371889288",
+ "volume24h": "3193511.43",
+ "key": "stock:ARQQ",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Arqit Quantum Inc."
+ }
+ },
+ {
+ "symbol": "ARW",
+ "name": "Arrow Electronics, Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/ARW.png",
+ "price": "215.97",
+ "priceChange24hPercent": "2.41855",
+ "marketCap": "11043398318",
+ "volume24h": "98927650.14",
+ "key": "stock:ARW",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Arrow Electronics, Inc."
+ }
+ },
+ {
+ "symbol": "ASML",
+ "name": "阿斯麦",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/ASML.png",
+ "price": "1714.88",
+ "priceChange24hPercent": "4.17267",
+ "marketCap": "660945604406",
+ "volume24h": "2211546975.36",
+ "key": "stock:ASML",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "阿斯麦"
+ }
+ },
+ {
+ "symbol": "ASMPT",
+ "name": "ASMPT",
+ "logoUrl": "https://uni-test.onekey-asset.com/utility/okx/token/5b0afd96b08d799a068552120a3f7d2be8b1b916f65fb939c27733a08741270f",
+ "key": "stock:ASMPT",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "ASMPT"
+ }
+ },
+ {
+ "symbol": "ASTS",
+ "name": "AST SpaceMobile",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/ASTS.png",
+ "price": "62.31",
+ "priceChange24hPercent": "0.28972",
+ "marketCap": "25353443760",
+ "volume24h": "638603538.03",
+ "key": "stock:ASTS",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "AST SpaceMobile"
+ }
+ },
+ {
+ "symbol": "ATI",
+ "name": "ATI Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/ATI.png",
+ "price": "210.65",
+ "priceChange24hPercent": "2.98719",
+ "marketCap": "28747495448",
+ "volume24h": "377036958.1",
+ "key": "stock:ATI",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "ATI Inc."
+ }
+ },
+ {
+ "symbol": "ATKR",
+ "name": "Atkore Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/ATKR.png",
+ "price": "93.76",
+ "priceChange24hPercent": "0.11746",
+ "marketCap": "3166022048",
+ "volume24h": "38166508.160000004",
+ "key": "stock:ATKR",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Atkore Inc."
+ }
+ },
+ {
+ "symbol": "ATO",
+ "name": "Atmos Energy Corporation",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/ATO.png",
+ "price": "167.56",
+ "priceChange24hPercent": "-0.92242",
+ "marketCap": "27969085374",
+ "volume24h": "116307752.56",
+ "key": "stock:ATO",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Atmos Energy Corporation"
+ }
+ },
+ {
+ "symbol": "AUR",
+ "name": "Aurora Innovation, Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/AUR.png",
+ "price": "6.34",
+ "priceChange24hPercent": "0.31646",
+ "marketCap": "12434027407",
+ "volume24h": "137391946.35999998",
+ "key": "stock:AUR",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Aurora Innovation, Inc."
+ }
+ },
+ {
+ "symbol": "AVB",
+ "name": "AvalonBay Communities, Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/AVB.png",
+ "price": "184.06",
+ "priceChange24hPercent": "0",
+ "marketCap": "26283393070",
+ "volume24h": "454443035.64",
+ "key": "stock:AVB",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "AvalonBay Communities, Inc."
+ }
+ },
+ {
+ "symbol": "AVGO",
+ "name": "博通",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/AVGO.png",
+ "price": "357.895",
+ "priceChange24hPercent": "0.20579",
+ "marketCap": "1702714094100",
+ "volume24h": "11761598227.175",
+ "key": "stock:AVGO",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "博通"
+ }
+ },
+ {
+ "symbol": "AVY",
+ "name": "Avery Dennison Corporation",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/AVY.png",
+ "price": "175.06",
+ "priceChange24hPercent": "1.17321",
+ "marketCap": "13390409424",
+ "volume24h": "131858518.14",
+ "key": "stock:AVY",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Avery Dennison Corporation"
+ }
+ },
+ {
+ "symbol": "AWK",
+ "name": "American Water Works Company, Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/AWK.png",
+ "price": "140.7",
+ "priceChange24hPercent": "-0.13486",
+ "marketCap": "27961168752",
+ "volume24h": "290408458.2",
+ "key": "stock:AWK",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "American Water Works Company, Inc."
+ }
+ },
+ {
+ "symbol": "AXON",
+ "name": "Axon Enterprise, Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/AXON.png",
+ "price": "515.67",
+ "priceChange24hPercent": "-4.17727",
+ "marketCap": "41564073047",
+ "volume24h": "335013781.89",
+ "key": "stock:AXON",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Axon Enterprise, Inc."
+ }
+ },
+ {
+ "symbol": "AXP",
+ "name": "美国运通",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/AXP.png",
+ "price": "326.16",
+ "priceChange24hPercent": "-1.1097",
+ "marketCap": "220259109600",
+ "volume24h": "647105353.9200001",
+ "key": "stock:AXP",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "美国运通"
+ }
+ },
+ {
+ "symbol": "AXTI",
+ "name": "AXT, Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/AXTI.png",
+ "price": "61.64",
+ "priceChange24hPercent": "9.67972",
+ "marketCap": "3128335898",
+ "volume24h": "671831804.12",
+ "key": "stock:AXTI",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "AXT, Inc."
+ }
+ },
+ {
+ "symbol": "AZN",
+ "name": "阿斯利康",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/AZN.png",
+ "price": "162.7",
+ "priceChange24hPercent": "-1.2563",
+ "marketCap": "252326948103",
+ "volume24h": "499486396.79999995",
+ "key": "stock:AZN",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "阿斯利康"
+ }
+ },
+ {
+ "symbol": "AZO",
+ "name": "AutoZone, Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/AZO.png",
+ "price": "2983.29",
+ "priceChange24hPercent": "0.51381",
+ "marketCap": "48703399583",
+ "volume24h": "1199306446.32",
+ "key": "stock:AZO",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "AutoZone, Inc."
+ }
+ },
+ {
+ "symbol": "B",
+ "name": "Barrick Mining Corporation",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/B.png",
+ "price": "36.73",
+ "priceChange24hPercent": "-2.57295",
+ "marketCap": "61541482300",
+ "volume24h": "224099426.71999997",
+ "key": "stock:B",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Barrick Mining Corporation"
+ }
+ },
+ {
+ "symbol": "BA",
+ "name": "波音",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/BA.png",
+ "price": "212.25",
+ "priceChange24hPercent": "0.82656",
+ "marketCap": "167756032500",
+ "volume24h": "971355969.75",
+ "key": "stock:BA",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "波音"
+ }
+ },
+ {
+ "symbol": "BABA",
+ "name": "阿里巴巴",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/BABA.png",
+ "price": "113.24",
+ "priceChange24hPercent": "1.27896",
+ "marketCap": "271421798529",
+ "volume24h": "810668853.4399999",
+ "key": "stock:BABA",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "阿里巴巴"
+ }
+ },
+ {
+ "symbol": "BAC",
+ "name": "美国银行",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/BAC.png",
+ "price": "62.68",
+ "priceChange24hPercent": "-0.57107",
+ "marketCap": "444814261200",
+ "volume24h": "1622265645.48",
+ "key": "stock:BAC",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "美国银行"
+ }
+ },
+ {
+ "symbol": "BAI",
+ "name": "iShares A.I. Innovation and Tech Active ETF",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/BAI.png",
+ "price": "44.59",
+ "priceChange24hPercent": "2.52932",
+ "marketCap": "13719037717",
+ "volume24h": "101855911.43",
+ "key": "stock:BAI",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "iShares A.I. Innovation and Tech Active ETF"
+ }
+ },
+ {
+ "symbol": "BALL",
+ "name": "Ball Corporation",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/BALL.png",
+ "price": "62.67",
+ "priceChange24hPercent": "-0.42107",
+ "marketCap": "16685699490",
+ "volume24h": "115394647.02",
+ "key": "stock:BALL",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Ball Corporation"
+ }
+ },
+ {
+ "symbol": "BAM",
+ "name": "Brookfield Asset Management Ltd.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/BAM.png",
+ "price": "50.6",
+ "priceChange24hPercent": "0.61642",
+ "marketCap": "80797392548",
+ "volume24h": "110589133.60000001",
+ "key": "stock:BAM",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Brookfield Asset Management Ltd."
+ }
+ },
+ {
+ "symbol": "BANKC",
+ "name": "BANKC",
+ "logoUrl": "https://uni-test.onekey-asset.com/utility/okx/token/d78be4f985aab7fca310c9f118fab0902b385f149342a45d13c75930327e022d",
+ "key": "stock:BANKC",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "BANKC"
+ }
+ },
+ {
+ "symbol": "BB",
+ "name": "BlackBerry Limited",
+ "logoUrl": "",
+ "price": "7.7",
+ "priceChange24hPercent": "0",
+ "marketCap": "4512973319",
+ "volume24h": "56122843.7",
+ "key": "stock:BB",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "BlackBerry Limited"
+ }
+ },
+ {
+ "symbol": "BBAI",
+ "name": "BigBear.ai Holdings, Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/BBAI.png",
+ "price": "2.93",
+ "priceChange24hPercent": "-1.67785",
+ "marketCap": "1404918791",
+ "volume24h": "27076833.200000003",
+ "key": "stock:BBAI",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "BigBear.ai Holdings, Inc."
+ }
+ },
+ {
+ "symbol": "BBY",
+ "name": "Best Buy Co., Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/BBY.png",
+ "price": "90.27",
+ "priceChange24hPercent": "3.17751",
+ "marketCap": "19025937090",
+ "volume24h": "353109159",
+ "key": "stock:BBY",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Best Buy Co., Inc."
+ }
+ },
+ {
+ "symbol": "BD",
+ "name": "Russell Investments Core Plus Bond ETF",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/BD.png",
+ "price": "24.7678",
+ "priceChange24hPercent": "0",
+ "marketCap": "47554176",
+ "volume24h": "148.60680000000002",
+ "key": "stock:BD",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Russell Investments Core Plus Bond ETF"
+ }
+ },
+ {
+ "symbol": "BDWAP",
+ "name": "BDWAP",
+ "logoUrl": "https://uni-test.onekey-asset.com/utility/okx/token/e4463b99a82387bdd5636f6f105d8994ceeb4b086b6b2b021f7bf7bc613bd8c6",
+ "key": "stock:BDWAP",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "BDWAP"
+ }
+ },
+ {
+ "symbol": "BDX",
+ "name": "Becton, Dickinson and Company",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/BDX.png",
+ "price": "184.74",
+ "priceChange24hPercent": "-1.53502",
+ "marketCap": "50903259600",
+ "volume24h": "265851759.66000003",
+ "key": "stock:BDX",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Becton, Dickinson and Company"
+ }
+ },
+ {
+ "symbol": "BE",
+ "name": "Bloom Energy Corporation",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/BE.png",
+ "price": "252.87",
+ "priceChange24hPercent": "7.353",
+ "marketCap": "74477042490",
+ "volume24h": "3738425528.34",
+ "key": "stock:BE",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Bloom Energy Corporation"
+ }
+ },
+ {
+ "symbol": "BIDU",
+ "name": "百度",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/BIDU.png",
+ "price": "99.47",
+ "priceChange24hPercent": "4.06989",
+ "marketCap": "33832211369",
+ "volume24h": "256503090.06",
+ "key": "stock:BIDU",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "百度"
+ }
+ },
+ {
+ "symbol": "BIIB",
+ "name": "Biogen Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/BIIB.png",
+ "price": "220.83",
+ "priceChange24hPercent": "-1.63913",
+ "marketCap": "32628515378",
+ "volume24h": "102709799.64",
+ "key": "stock:BIIB",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Biogen Inc."
+ }
+ },
+ {
+ "symbol": "BIL",
+ "name": "State Street SPDR Bloomberg 1-3 Month T-Bill ETF",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/BIL.png",
+ "price": "91.45",
+ "priceChange24hPercent": "0.03828693",
+ "marketCap": "46959505955",
+ "volume24h": "637300326.5500001",
+ "key": "stock:BIL",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "State Street SPDR Bloomberg 1-3 Month T-Bill ETF"
+ }
+ },
+ {
+ "symbol": "BILI",
+ "name": "哔哩哔哩",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/BILI.png",
+ "price": "15.23",
+ "priceChange24hPercent": "-1.74194",
+ "marketCap": "6388386156",
+ "volume24h": "162714548.14000002",
+ "key": "stock:BILI",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "哔哩哔哩"
+ }
+ },
+ {
+ "symbol": "BINC",
+ "name": "灵活收益ETF",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/BINC.png",
+ "price": "51.68",
+ "priceChange24hPercent": "0.06777036",
+ "marketCap": "16189176954",
+ "volume24h": "83860154.08",
+ "key": "stock:BINC",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "灵活收益ETF"
+ }
+ },
+ {
+ "symbol": "BIRD",
+ "name": "Smartbird, Inc",
+ "logoUrl": "",
+ "price": "2.52",
+ "priceChange24hPercent": "2.43902",
+ "marketCap": "15812564",
+ "volume24h": "954671.76",
+ "key": "stock:BIRD",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Smartbird, Inc"
+ }
+ },
+ {
+ "symbol": "BIT",
+ "name": "BlackRock Multi-Sector Income Trust",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/BIT.png",
+ "price": "12.24",
+ "priceChange24hPercent": "0.08176615",
+ "marketCap": "698447448",
+ "volume24h": "2012843.52",
+ "key": "stock:BIT",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "BlackRock Multi-Sector Income Trust"
+ }
+ },
+ {
+ "symbol": "BITX",
+ "name": "2x Bitcoin Strategy ETF",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/BITX.png",
+ "price": "18.25",
+ "priceChange24hPercent": "-4.8736",
+ "marketCap": "1358915458",
+ "volume24h": "255766340.5",
+ "key": "stock:BITX",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "2x Bitcoin Strategy ETF"
+ }
+ },
+ {
+ "symbol": "BJ",
+ "name": "BJ's Wholesale Club Holdings, Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/BJ.png",
+ "price": "93.19",
+ "priceChange24hPercent": "0",
+ "marketCap": "11899802649",
+ "volume24h": "114054495.48",
+ "key": "stock:BJ",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "BJ's Wholesale Club Holdings, Inc."
+ }
+ },
+ {
+ "symbol": "BKCH",
+ "name": "Global X - Blockchain ETF",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/BKCH.png",
+ "price": "74.91",
+ "priceChange24hPercent": "0.37518",
+ "marketCap": "197779030",
+ "volume24h": "9120067.77",
+ "key": "stock:BKCH",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Global X - Blockchain ETF"
+ }
+ },
+ {
+ "symbol": "BKR",
+ "name": "Baker Hughes Company",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/BKR.png",
+ "price": "63.5",
+ "priceChange24hPercent": "-0.21999",
+ "marketCap": "63034799000",
+ "volume24h": "367787047",
+ "key": "stock:BKR",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Baker Hughes Company"
+ }
+ },
+ {
+ "symbol": "BLCR",
+ "name": "iShares Large Cap Core Active ETF",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/BLCR.png",
+ "price": "49.87",
+ "priceChange24hPercent": "0.40266",
+ "marketCap": "12996571",
+ "volume24h": "18878787.2",
+ "key": "stock:BLCR",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "iShares Large Cap Core Active ETF"
+ }
+ },
+ {
+ "symbol": "BLK",
+ "name": "贝莱德",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/BLK.png",
+ "price": "1122.29",
+ "priceChange24hPercent": "-0.34276",
+ "marketCap": "173949338550",
+ "volume24h": "460986228.95",
+ "key": "stock:BLK",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "贝莱德"
+ }
+ },
+ {
+ "symbol": "BLSH",
+ "name": "Bullish",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/BLSH.png",
+ "price": "36",
+ "priceChange24hPercent": "-0.6074",
+ "marketCap": "5459340456",
+ "volume24h": "40503528",
+ "key": "stock:BLSH",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Bullish"
+ }
+ },
+ {
+ "symbol": "BMNR",
+ "name": "BitMine",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/BMNR.png",
+ "price": "24.97",
+ "priceChange24hPercent": "-5.59546",
+ "marketCap": "14222332846",
+ "volume24h": "1155029873.9099998",
+ "key": "stock:BMNR",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "BitMine"
+ }
+ },
+ {
+ "symbol": "BMY",
+ "name": "Bristol-Myers Squibb Company",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/BMY.png",
+ "price": "66.82",
+ "priceChange24hPercent": "-1.86518",
+ "marketCap": "136493882200",
+ "volume24h": "306388075.49999994",
+ "key": "stock:BMY",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Bristol-Myers Squibb Company"
+ }
+ },
+ {
+ "symbol": "BNO",
+ "name": "United States Brent Oil Fund LP",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/BNO.png",
+ "price": "56.11",
+ "priceChange24hPercent": "0.37567",
+ "marketCap": "214568568",
+ "volume24h": "78069602.37",
+ "key": "stock:BNO",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "United States Brent Oil Fund LP"
+ }
+ },
+ {
+ "symbol": "BNY",
+ "name": "Bank of New York Mellon Corp",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/BNY.png",
+ "price": "164.84",
+ "priceChange24hPercent": "0.31035",
+ "marketCap": "113142714360",
+ "volume24h": "385009205.36",
+ "key": "stock:BNY",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Bank of New York Mellon Corp"
+ }
+ },
+ {
+ "symbol": "BOCHK",
+ "name": "BOCHK",
+ "logoUrl": "https://uni-test.onekey-asset.com/utility/okx/token/c1c29a3cc9dd724327ce0e21862a8e05166390522f4739ba2a3a4a32511356bd",
+ "key": "stock:BOCHK",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "BOCHK"
+ }
+ },
+ {
+ "symbol": "BOCOM",
+ "name": "BOCOM",
+ "logoUrl": "https://uni-test.onekey-asset.com/utility/okx/token/ed2970f89cfbc811f3d70137704b275f5466c779b5afab63d37e38a17bde01fa",
+ "key": "stock:BOCOM",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "BOCOM"
+ }
+ },
+ {
+ "symbol": "BOT",
+ "name": "RoboStrategy, Inc. Common Stock",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/BOT.png",
+ "price": "26.8",
+ "priceChange24hPercent": "-1.32548",
+ "marketCap": "543347702",
+ "volume24h": "3726272",
+ "key": "stock:BOT",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "RoboStrategy, Inc. Common Stock"
+ }
+ },
+ {
+ "symbol": "BOTZ",
+ "name": "Global X - Robotics & Artificial Intelligence ETF",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/BOTZ.png",
+ "price": "35.95",
+ "priceChange24hPercent": "0.39095",
+ "marketCap": "3340405192",
+ "volume24h": "27909530.85",
+ "key": "stock:BOTZ",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Global X - Robotics & Artificial Intelligence ETF"
+ }
+ },
+ {
+ "symbol": "BR",
+ "name": "Broadridge Financial Solutions, Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/BR.png",
+ "price": "172.88",
+ "priceChange24hPercent": "-3.37041",
+ "marketCap": "19994955040",
+ "volume24h": "216169843.51999998",
+ "key": "stock:BR",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Broadridge Financial Solutions, Inc."
+ }
+ },
+ {
+ "symbol": "BRHY",
+ "name": "iShares High Yield Active ETF",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/BRHY.png",
+ "price": "50.735",
+ "priceChange24hPercent": "-0.06126135",
+ "marketCap": "122899906",
+ "volume24h": "629418.41",
+ "key": "stock:BRHY",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "iShares High Yield Active ETF"
+ }
+ },
+ {
+ "symbol": "BRK.B",
+ "name": "伯克希尔",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/BRK.B.png",
+ "key": "stock:BRK.B",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "伯克希尔"
+ }
+ },
+ {
+ "symbol": "BRLN",
+ "name": "iShares Floating Rate Loan Active ETF",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/BRLN.png",
+ "price": "50.79",
+ "priceChange24hPercent": "-0.31403",
+ "marketCap": "53398371",
+ "volume24h": "198361.8763185",
+ "key": "stock:BRLN",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "iShares Floating Rate Loan Active ETF"
+ }
+ },
+ {
+ "symbol": "BRO",
+ "name": "Brown & Brown, Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/BRO.png",
+ "price": "71.42",
+ "priceChange24hPercent": "-1.57111",
+ "marketCap": "23897871697",
+ "volume24h": "96662042.02",
+ "key": "stock:BRO",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Brown & Brown, Inc."
+ }
+ },
+ {
+ "symbol": "BRTR",
+ "name": "iShares Total Return Active ETF",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/BRTR.png",
+ "price": "49.2308",
+ "priceChange24hPercent": "0.0219423",
+ "marketCap": "251570668",
+ "volume24h": "6946908.9572",
+ "key": "stock:BRTR",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "iShares Total Return Active ETF"
+ }
+ },
+ {
+ "symbol": "BS",
+ "name": "BS",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/BS.png",
+ "key": "stock:BS",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "BS"
+ }
+ },
+ {
+ "symbol": "BSP",
+ "name": "Bending Spoons S.p.A.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/BSP.png",
+ "price": "39.58",
+ "priceChange24hPercent": "-5.06117",
+ "marketCap": "26502893073",
+ "volume24h": "41871761.16",
+ "key": "stock:BSP",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Bending Spoons S.p.A."
+ }
+ },
+ {
+ "symbol": "BSX",
+ "name": "Boston Scientific Corporation",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/BSX.png",
+ "price": "47.8",
+ "priceChange24hPercent": "1.81044",
+ "marketCap": "71048008000",
+ "volume24h": "737936639",
+ "key": "stock:BSX",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Boston Scientific Corporation"
+ }
+ },
+ {
+ "symbol": "BTBT",
+ "name": "比特数字",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/BTBT.png",
+ "price": "1.64",
+ "priceChange24hPercent": "0.6135",
+ "marketCap": "572671600",
+ "volume24h": "63311006.08",
+ "key": "stock:BTBT",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "比特数字"
+ }
+ },
+ {
+ "symbol": "BTDR",
+ "name": "Bitdeer Technologies Group",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/BTDR.png",
+ "price": "12.38",
+ "priceChange24hPercent": "3.94626",
+ "marketCap": "2890354440",
+ "volume24h": "138361417.9",
+ "key": "stock:BTDR",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Bitdeer Technologies Group"
+ }
+ },
+ {
+ "symbol": "BTG",
+ "name": "B2Gold",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/BTG.png",
+ "price": "5.61",
+ "priceChange24hPercent": "-1.40598",
+ "marketCap": "7474876200",
+ "volume24h": "122764847.37",
+ "key": "stock:BTG",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "B2Gold"
+ }
+ },
+ {
+ "symbol": "BTGO",
+ "name": "BitGo",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/BTGO.png",
+ "price": "7.3",
+ "priceChange24hPercent": "-2.92553",
+ "marketCap": "781859397",
+ "volume24h": "10028338.5",
+ "key": "stock:BTGO",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "BitGo"
+ }
+ },
+ {
+ "symbol": "BURL",
+ "name": "Burlington Stores, Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/BURL.png",
+ "price": "265.33",
+ "priceChange24hPercent": "2.61835",
+ "marketCap": "16700453926",
+ "volume24h": "564344174.16",
+ "key": "stock:BURL",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Burlington Stores, Inc."
+ }
+ },
+ {
+ "symbol": "BWA",
+ "name": "BorgWarner Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/BWA.png",
+ "price": "67.54",
+ "priceChange24hPercent": "2.75369",
+ "marketCap": "13853467100",
+ "volume24h": "96088617.68",
+ "key": "stock:BWA",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "BorgWarner Inc."
+ }
+ },
+ {
+ "symbol": "BWET",
+ "name": "Breakwave Tanker Shipping ETF",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/BWET.png",
+ "price": "505.17",
+ "priceChange24hPercent": "1.76467",
+ "marketCap": "68247962",
+ "volume24h": "66515733.9",
+ "key": "stock:BWET",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Breakwave Tanker Shipping ETF"
+ }
+ },
+ {
+ "symbol": "BWXT",
+ "name": "BWX Technologies, Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/BWXT.png",
+ "price": "157.59",
+ "priceChange24hPercent": "-1.65991",
+ "marketCap": "14437544814",
+ "volume24h": "102621820.05",
+ "key": "stock:BWXT",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "BWX Technologies, Inc."
+ }
+ },
+ {
+ "symbol": "BX",
+ "name": "Blackstone Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/BX.png",
+ "price": "136.15",
+ "priceChange24hPercent": "-1.11127",
+ "marketCap": "164468222443",
+ "volume24h": "378118503",
+ "key": "stock:BX",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Blackstone Inc."
+ }
+ },
+ {
+ "symbol": "BYDCO",
+ "name": "BYDCO",
+ "logoUrl": "https://uni-test.onekey-asset.com/utility/okx/token/27b51ba14ba070b1f3fbaddffb54535f6b8e2d1ea4c593bcd422a94b86545e52",
+ "key": "stock:BYDCO",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "BYDCO"
+ }
+ },
+ {
+ "symbol": "BZ",
+ "name": "Kanzhun Limited",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/BZ.png",
+ "price": "16.92",
+ "priceChange24hPercent": "0.47506",
+ "marketCap": "7742644418",
+ "volume24h": "77034018.96000001",
+ "key": "stock:BZ",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Kanzhun Limited"
+ }
+ },
+ {
+ "symbol": "C",
+ "name": "花旗集团",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/C.png",
+ "price": "137.72",
+ "priceChange24hPercent": "-0.30404",
+ "marketCap": "236177405200",
+ "volume24h": "785482990.16",
+ "key": "stock:C",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "花旗集团"
+ }
+ },
+ {
+ "symbol": "CAH",
+ "name": "Cardinal Health, Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/CAH.png",
+ "price": "247.18",
+ "priceChange24hPercent": "-0.5752",
+ "marketCap": "57891039080",
+ "volume24h": "381532711.56",
+ "key": "stock:CAH",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Cardinal Health, Inc."
+ }
+ },
+ {
+ "symbol": "CAMT",
+ "name": "Camtek Ltd.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/CAMT.png",
+ "price": "145.72",
+ "priceChange24hPercent": "4.91001",
+ "marketCap": "6798785180",
+ "volume24h": "44378443.12",
+ "key": "stock:CAMT",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Camtek Ltd."
+ }
+ },
+ {
+ "symbol": "CAPR",
+ "name": "Capricor",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/CAPR.png",
+ "price": "9.4",
+ "priceChange24hPercent": "1.2931",
+ "marketCap": "540599969",
+ "volume24h": "24023119.400000002",
+ "key": "stock:CAPR",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Capricor"
+ }
+ },
+ {
+ "symbol": "CARR",
+ "name": "Carrier Global Corporation",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/CARR.png",
+ "price": "59.71",
+ "priceChange24hPercent": "1.06635",
+ "marketCap": "49220449153",
+ "volume24h": "259687567.37",
+ "key": "stock:CARR",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Carrier Global Corporation"
+ }
+ },
+ {
+ "symbol": "CASY",
+ "name": "Casey's General Stores, Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/CASY.png",
+ "price": "756.09",
+ "priceChange24hPercent": "-0.30722",
+ "marketCap": "27979034841",
+ "volume24h": "306530227.35",
+ "key": "stock:CASY",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Casey's General Stores, Inc."
+ }
+ },
+ {
+ "symbol": "CAT",
+ "name": "卡特彼勒",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/CAT.png",
+ "price": "813.94",
+ "priceChange24hPercent": "1.7247",
+ "marketCap": "374930879780",
+ "volume24h": "1620957440.3000002",
+ "key": "stock:CAT",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "卡特彼勒"
+ }
+ },
+ {
+ "symbol": "CBRE",
+ "name": "CBRE Group, Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/CBRE.png",
+ "price": "147.85",
+ "priceChange24hPercent": "-0.59836",
+ "marketCap": "42813707809",
+ "volume24h": "158048397.29999998",
+ "key": "stock:CBRE",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "CBRE Group, Inc."
+ }
+ },
+ {
+ "symbol": "CBRS",
+ "name": "Cerebras Systems Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/CBRS.png",
+ "price": "210.05",
+ "priceChange24hPercent": "10.29721",
+ "marketCap": "47584206286",
+ "volume24h": "2890620719.2000003",
+ "key": "stock:CBRS",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Cerebras Systems Inc."
+ }
+ },
+ {
+ "symbol": "CCI",
+ "name": "Crown Castle Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/CCI.png",
+ "price": "75.83",
+ "priceChange24hPercent": "-1.85089",
+ "marketCap": "33137710000",
+ "volume24h": "177022935.93",
+ "key": "stock:CCI",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Crown Castle Inc."
+ }
+ },
+ {
+ "symbol": "CCJ",
+ "name": "Cameco Corporation",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/CCJ.png",
+ "price": "100.74",
+ "priceChange24hPercent": "0.11926",
+ "marketCap": "43875594420",
+ "volume24h": "156184273.79999998",
+ "key": "stock:CCJ",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Cameco Corporation"
+ }
+ },
+ {
+ "symbol": "CCONB",
+ "name": "CCONB",
+ "logoUrl": "https://uni-test.onekey-asset.com/utility/okx/token/a0ca3c087ec1d2d0aee9556959d6e94bc893adb14e33651649d9c1cfd3998c7b",
+ "key": "stock:CCONB",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "CCONB"
+ }
+ },
+ {
+ "symbol": "CDNS",
+ "name": "Cadence Design Systems, Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/CDNS.png",
+ "price": "292.7",
+ "priceChange24hPercent": "-3.99344",
+ "marketCap": "80607531100",
+ "volume24h": "1236961615.3",
+ "key": "stock:CDNS",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Cadence Design Systems, Inc."
+ }
+ },
+ {
+ "symbol": "CDW",
+ "name": "CDW Corporation",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/CDW.png",
+ "price": "152.38",
+ "priceChange24hPercent": "-1.00052",
+ "marketCap": "19467002140",
+ "volume24h": "196751836.96",
+ "key": "stock:CDW",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "CDW Corporation"
+ }
+ },
+ {
+ "symbol": "CEG",
+ "name": "星座能源",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/CEG.png",
+ "price": "298.96",
+ "priceChange24hPercent": "4.87985",
+ "marketCap": "107357139899",
+ "volume24h": "866527189.1199999",
+ "key": "stock:CEG",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "星座能源"
+ }
+ },
+ {
+ "symbol": "CEVA",
+ "name": "CEVA, Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/CEVA.png",
+ "price": "26.95",
+ "priceChange24hPercent": "1.9289",
+ "marketCap": "750809995",
+ "volume24h": "16392822.6",
+ "key": "stock:CEVA",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "CEVA, Inc."
+ }
+ },
+ {
+ "symbol": "CF",
+ "name": "CF Industries Holdings, Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/CF.png",
+ "price": "133.35",
+ "priceChange24hPercent": "-3.23634",
+ "marketCap": "20486427150",
+ "volume24h": "349753447.05",
+ "key": "stock:CF",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "CF Industries Holdings, Inc."
+ }
+ },
+ {
+ "symbol": "CFG",
+ "name": "Citizens Financial Group, Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/CFG.png",
+ "price": "70.78",
+ "priceChange24hPercent": "-0.07059156",
+ "marketCap": "29931587960",
+ "volume24h": "133179081.76",
+ "key": "stock:CFG",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Citizens Financial Group, Inc."
+ }
+ },
+ {
+ "symbol": "CG",
+ "name": "The Carlyle Group Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/CG.png",
+ "price": "46.97",
+ "priceChange24hPercent": "-1.63351",
+ "marketCap": "16907978780",
+ "volume24h": "91096342.25999999",
+ "key": "stock:CG",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "The Carlyle Group Inc."
+ }
+ },
+ {
+ "symbol": "CHD",
+ "name": "Church & Dwight Co., Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/CHD.png",
+ "price": "98.55",
+ "priceChange24hPercent": "-0.04057207",
+ "marketCap": "23350831200",
+ "volume24h": "127225783.35",
+ "key": "stock:CHD",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Church & Dwight Co., Inc."
+ }
+ },
+ {
+ "symbol": "CHONG",
+ "name": "CHONG",
+ "logoUrl": "https://uni-test.onekey-asset.com/utility/okx/token/4df6147cb83792f625c7e63e1af8ea91e958a83e99d35a3af4eeb8c064ce3c8b",
+ "key": "stock:CHONG",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "CHONG"
+ }
+ },
+ {
+ "symbol": "CHRW",
+ "name": "C.H. Robinson Worldwide, Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/CHRW.png",
+ "price": "147.64",
+ "priceChange24hPercent": "0.64762",
+ "marketCap": "17402775921",
+ "volume24h": "164798868.44",
+ "key": "stock:CHRW",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "C.H. Robinson Worldwide, Inc."
+ }
+ },
+ {
+ "symbol": "CHTR",
+ "name": "Charter Communications, Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/CHTR.png",
+ "price": "151.99",
+ "priceChange24hPercent": "0.40296",
+ "marketCap": "20484829793",
+ "volume24h": "296746339.93",
+ "key": "stock:CHTR",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Charter Communications, Inc."
+ }
+ },
+ {
+ "symbol": "CI",
+ "name": "Cigna Corporation",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/CI.png",
+ "price": "282.52",
+ "priceChange24hPercent": "-1.3065",
+ "marketCap": "74653222105",
+ "volume24h": "312482093.56",
+ "key": "stock:CI",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Cigna Corporation"
+ }
+ },
+ {
+ "symbol": "CIBR",
+ "name": "First Trust Nasdaq Cybersecurity ETF",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/CIBR.png",
+ "price": "94.59",
+ "priceChange24hPercent": "-0.76584",
+ "marketCap": "10221191653",
+ "volume24h": "99200411.19",
+ "key": "stock:CIBR",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "First Trust Nasdaq Cybersecurity ETF"
+ }
+ },
+ {
+ "symbol": "CIEN",
+ "name": "Ciena Corporation",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/CIEN.png",
+ "price": "321",
+ "priceChange24hPercent": "1.1151",
+ "marketCap": "45438487962",
+ "volume24h": "1069982559",
+ "key": "stock:CIEN",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Ciena Corporation"
+ }
+ },
+ {
+ "symbol": "CIFR",
+ "name": "Cipher Mining Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/CIFR.png",
+ "price": "17.74",
+ "priceChange24hPercent": "2.13011",
+ "marketCap": "7256529260",
+ "volume24h": "444150472.58",
+ "key": "stock:CIFR",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Cipher Mining Inc."
+ }
+ },
+ {
+ "symbol": "CINF",
+ "name": "Cincinnati Financial Corporation",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/CINF.png",
+ "price": "171.1",
+ "priceChange24hPercent": "-2.07189",
+ "marketCap": "26260093500",
+ "volume24h": "65652438.8",
+ "key": "stock:CINF",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Cincinnati Financial Corporation"
+ }
+ },
+ {
+ "symbol": "CITIC",
+ "name": "CITIC",
+ "logoUrl": "https://uni-test.onekey-asset.com/utility/okx/token/66194dd48a0b899e01f4023090c8ca4ea8f655f7d285bf5419a621586a480030",
+ "key": "stock:CITIC",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "CITIC"
+ }
+ },
+ {
+ "symbol": "CKAH",
+ "name": "CKAH",
+ "logoUrl": "https://uni-test.onekey-asset.com/utility/okx/token/f9157ce64d71e89c05a0e377d1a0566a279cdd4ab6f4a6f77979f24437d92f14",
+ "key": "stock:CKAH",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "CKAH"
+ }
+ },
+ {
+ "symbol": "CKHUT",
+ "name": "CKHUT",
+ "logoUrl": "https://uni-test.onekey-asset.com/utility/okx/token/de5fade53e2b1fa013ecead0087ffa9fe873edd858fc535101d62ccf0c3a9f54",
+ "key": "stock:CKHUT",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "CKHUT"
+ }
+ },
+ {
+ "symbol": "CKINF",
+ "name": "CKINF",
+ "logoUrl": "https://uni-test.onekey-asset.com/utility/okx/token/ab68950a5227a379f83497ebc0453aaf7b83e4bf2cfcb70a521c7154e643f53c",
+ "key": "stock:CKINF",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "CKINF"
+ }
+ },
+ {
+ "symbol": "CL",
+ "name": "Colgate-Palmolive Company",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/CL.png",
+ "price": "88.77",
+ "priceChange24hPercent": "-1.4652",
+ "marketCap": "71032777530",
+ "volume24h": "353080633.28999996",
+ "key": "stock:CL",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Colgate-Palmolive Company"
+ }
+ },
+ {
+ "symbol": "CLF",
+ "name": "Cleveland-Cliffs Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/CLF.png",
+ "price": "12.5",
+ "priceChange24hPercent": "1.79153",
+ "marketCap": "7131750000",
+ "volume24h": "93534000",
+ "key": "stock:CLF",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Cleveland-Cliffs Inc."
+ }
+ },
+ {
+ "symbol": "CLH",
+ "name": "Clean Harbors, Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/CLH.png",
+ "price": "317.1",
+ "priceChange24hPercent": "-0.48643",
+ "marketCap": "16738836341",
+ "volume24h": "70468815.9",
+ "key": "stock:CLH",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Clean Harbors, Inc."
+ }
+ },
+ {
+ "symbol": "CLINS",
+ "name": "CLINS",
+ "logoUrl": "https://uni-test.onekey-asset.com/utility/okx/token/cf2b92c0a09d2b094b8e5ad03f74b765cf52a4178936487e8c2db0d58eaf5d6c",
+ "key": "stock:CLINS",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "CLINS"
+ }
+ },
+ {
+ "symbol": "CLOA",
+ "name": "iShares AAA CLO Active ETF",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/CLOA.png",
+ "price": "51.86",
+ "priceChange24hPercent": "0.06753497",
+ "marketCap": "2261285548",
+ "volume24h": "22300214.88",
+ "key": "stock:CLOA",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "iShares AAA CLO Active ETF"
+ }
+ },
+ {
+ "symbol": "CLOI",
+ "name": "VanEck CLO ETF",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/CLOI.png",
+ "price": "52.84",
+ "priceChange24hPercent": "0.03786445",
+ "marketCap": "1420791035",
+ "volume24h": "11130798.84",
+ "key": "stock:CLOI",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "VanEck CLO ETF"
+ }
+ },
+ {
+ "symbol": "CLONP",
+ "name": "CLONP",
+ "logoUrl": "https://uni-test.onekey-asset.com/utility/okx/token/f79592bca2b9c938eb6b3e3740bbcb0516aab9e942b54e19e154a1ea4e64242a",
+ "key": "stock:CLONP",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "CLONP"
+ }
+ },
+ {
+ "symbol": "CLPHD",
+ "name": "CLPHD",
+ "logoUrl": "https://uni-test.onekey-asset.com/utility/okx/token/a8c1414b043b3f97d37f0611faee99d0d5394534f08699792f28bd4a8b0d115d",
+ "key": "stock:CLPHD",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "CLPHD"
+ }
+ },
+ {
+ "symbol": "CLS",
+ "name": "Celestica Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/CLS.png",
+ "price": "312.35",
+ "priceChange24hPercent": "0.8101",
+ "marketCap": "35914627700",
+ "volume24h": "576960738.35",
+ "key": "stock:CLS",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Celestica Inc."
+ }
+ },
+ {
+ "symbol": "CLSK",
+ "name": "CleanSpark, Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/CLSK.png",
+ "price": "12.69",
+ "priceChange24hPercent": "0.8744",
+ "marketCap": "3256363210",
+ "volume24h": "201040969.67999998",
+ "key": "stock:CLSK",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "CleanSpark, Inc."
+ }
+ },
+ {
+ "symbol": "CLX",
+ "name": "The Clorox Company",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/CLX.png",
+ "price": "93.06",
+ "priceChange24hPercent": "-1.30449",
+ "marketCap": "11252908260",
+ "volume24h": "204997965.48000002",
+ "key": "stock:CLX",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "The Clorox Company"
+ }
+ },
+ {
+ "symbol": "CMCSA",
+ "name": "康卡斯特",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/CMCSA.png",
+ "price": "26.49",
+ "priceChange24hPercent": "-0.60038",
+ "marketCap": "94003383878",
+ "volume24h": "457864020.9",
+ "key": "stock:CMCSA",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "康卡斯特"
+ }
+ },
+ {
+ "symbol": "CME",
+ "name": "CME Group Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/CME.png",
+ "price": "281.29",
+ "priceChange24hPercent": "-0.26946",
+ "marketCap": "101146055390",
+ "volume24h": "463617114.78000003",
+ "key": "stock:CME",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "CME Group Inc."
+ }
+ },
+ {
+ "symbol": "CMEND",
+ "name": "CMEND",
+ "logoUrl": "https://uni-test.onekey-asset.com/utility/okx/token/53233daad7e4280b99c5beb6b35d2ce8235eacf616d9b8898d5402b81db78abf",
+ "key": "stock:CMEND",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "CMEND"
+ }
+ },
+ {
+ "symbol": "CMERP",
+ "name": "CMERP",
+ "logoUrl": "https://uni-test.onekey-asset.com/utility/okx/token/a09fdb53db50dc85cdaa89d6cfddd3dab78c9d43230f9242af683840aece6ab1",
+ "key": "stock:CMERP",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "CMERP"
+ }
+ },
+ {
+ "symbol": "CMG",
+ "name": "Chipotle Mexican Grill, Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/CMG.png",
+ "price": "36.94",
+ "priceChange24hPercent": "-1.67687",
+ "marketCap": "47384046200",
+ "volume24h": "357421724.78",
+ "key": "stock:CMG",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Chipotle Mexican Grill, Inc."
+ }
+ },
+ {
+ "symbol": "CMI",
+ "name": "Cummins Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/CMI.png",
+ "price": "560.75",
+ "priceChange24hPercent": "2.7956",
+ "marketCap": "77377331750",
+ "volume24h": "594033316.25",
+ "key": "stock:CMI",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Cummins Inc."
+ }
+ },
+ {
+ "symbol": "CMS",
+ "name": "CMS Energy Corporation",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/CMS.png",
+ "price": "68.46",
+ "priceChange24hPercent": "-0.18953",
+ "marketCap": "21467481420",
+ "volume24h": "216266303.82",
+ "key": "stock:CMS",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "CMS Energy Corporation"
+ }
+ },
+ {
+ "symbol": "CNC",
+ "name": "Centene Corp.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/CNC.png",
+ "price": "67.04",
+ "priceChange24hPercent": "-1.44075",
+ "marketCap": "33117424800",
+ "volume24h": "186167800.64000002",
+ "key": "stock:CNC",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Centene Corp."
+ }
+ },
+ {
+ "symbol": "CNP",
+ "name": "CenterPoint Energy, Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/CNP.png",
+ "price": "39.67",
+ "priceChange24hPercent": "-0.77539",
+ "marketCap": "26131422400",
+ "volume24h": "161453369.37",
+ "key": "stock:CNP",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "CenterPoint Energy, Inc."
+ }
+ },
+ {
+ "symbol": "COF",
+ "name": "Capital One Financial Corporation",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/COF.png",
+ "price": "219.6",
+ "priceChange24hPercent": "-0.40816",
+ "marketCap": "134721306000",
+ "volume24h": "415632088.8",
+ "key": "stock:COF",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Capital One Financial Corporation"
+ }
+ },
+ {
+ "symbol": "COHR",
+ "name": "Coherent",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/COHR.png",
+ "price": "281.86",
+ "priceChange24hPercent": "6.5996",
+ "marketCap": "55142899017",
+ "volume24h": "1409072257.1200001",
+ "key": "stock:COHR",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Coherent"
+ }
+ },
+ {
+ "symbol": "COHU",
+ "name": "Cohu, Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/COHU.png",
+ "price": "50.72",
+ "priceChange24hPercent": "10.30883",
+ "marketCap": "2392731216",
+ "volume24h": "44294536.8",
+ "key": "stock:COHU",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Cohu, Inc."
+ }
+ },
+ {
+ "symbol": "COIN",
+ "name": "Coinbase",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/COIN.png",
+ "price": "184.64",
+ "priceChange24hPercent": "-4.18267",
+ "marketCap": "48714333394",
+ "volume24h": "1509934590.08",
+ "key": "stock:COIN",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Coinbase"
+ }
+ },
+ {
+ "symbol": "COO",
+ "name": "The Cooper Companies, Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/COO.png",
+ "price": "69.59",
+ "priceChange24hPercent": "-1.48641",
+ "marketCap": "13572207290",
+ "volume24h": "136193266.79000002",
+ "key": "stock:COO",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "The Cooper Companies, Inc."
+ }
+ },
+ {
+ "symbol": "COP",
+ "name": "康菲石油",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/COP.png",
+ "price": "134.26",
+ "priceChange24hPercent": "-1.07574",
+ "marketCap": "163568153380",
+ "volume24h": "696228456.9799999",
+ "key": "stock:COP",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "康菲石油"
+ }
+ },
+ {
+ "symbol": "COPX",
+ "name": "铜矿ETF",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/COPX.png",
+ "price": "90.66",
+ "priceChange24hPercent": "-0.64658",
+ "marketCap": "8398061634",
+ "volume24h": "120614154.66",
+ "key": "stock:COPX",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "铜矿ETF"
+ }
+ },
+ {
+ "symbol": "COR",
+ "name": "Cencora, Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/COR.png",
+ "price": "330.95",
+ "priceChange24hPercent": "-1.85932",
+ "marketCap": "64389982807",
+ "volume24h": "336699263.4",
+ "key": "stock:COR",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Cencora, Inc."
+ }
+ },
+ {
+ "symbol": "CORO",
+ "name": "iShares International Country Rotation Active ETF",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/CORO.png",
+ "price": "37.54",
+ "priceChange24hPercent": "0.75148",
+ "marketCap": "8165631051",
+ "volume24h": "33714786.62",
+ "key": "stock:CORO",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "iShares International Country Rotation Active ETF"
+ }
+ },
+ {
+ "symbol": "CORZ",
+ "name": "Core Scientific, Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/CORZ.png",
+ "price": "17.89",
+ "priceChange24hPercent": "-0.05586251",
+ "marketCap": "5748780489",
+ "volume24h": "151979217.45000002",
+ "key": "stock:CORZ",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Core Scientific, Inc."
+ }
+ },
+ {
+ "symbol": "COSC",
+ "name": "COSC",
+ "logoUrl": "https://uni-test.onekey-asset.com/utility/okx/token/8f57431ee0cf93984a951174234d8112058eca8ddd509449d6026526f54cc835",
+ "key": "stock:COSC",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "COSC"
+ }
+ },
+ {
+ "symbol": "COST",
+ "name": "开市客",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/COST.png",
+ "price": "915.74",
+ "priceChange24hPercent": "-1.04494",
+ "marketCap": "406111459460",
+ "volume24h": "1903887561.8",
+ "key": "stock:COST",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "开市客"
+ }
+ },
+ {
+ "symbol": "COVEL",
+ "name": "COVEL",
+ "logoUrl": "https://uni-test.onekey-asset.com/utility/okx/token/3326cf6a2408700a99a1766c7a8899153348b3de4a35fd2f609a78a3933962d6",
+ "key": "stock:COVEL",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "COVEL"
+ }
+ },
+ {
+ "symbol": "CPAY",
+ "name": "Corpay, Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/CPAY.png",
+ "price": "416.37",
+ "priceChange24hPercent": "-0.7887",
+ "marketCap": "27214742214",
+ "volume24h": "122802918.69",
+ "key": "stock:CPAY",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Corpay, Inc."
+ }
+ },
+ {
+ "symbol": "CPER",
+ "name": "United States Copper Index Fund",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/CPER.png",
+ "price": "39.95",
+ "priceChange24hPercent": "0.10023",
+ "marketCap": "253119964",
+ "volume24h": "9477378.450000001",
+ "key": "stock:CPER",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "United States Copper Index Fund"
+ }
+ },
+ {
+ "symbol": "CPETC",
+ "name": "CPETC",
+ "logoUrl": "https://uni-test.onekey-asset.com/utility/okx/token/0301396b2ad366cf96bdb3d98eb18f92f0b74f4247c14b545c2e07e131ffce6b",
+ "key": "stock:CPETC",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "CPETC"
+ }
+ },
+ {
+ "symbol": "CPNG",
+ "name": "酷澎",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/CPNG.png",
+ "price": "15.29",
+ "priceChange24hPercent": "-1.41844",
+ "marketCap": "27483953694",
+ "volume24h": "179465167.09",
+ "key": "stock:CPNG",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "酷澎"
+ }
+ },
+ {
+ "symbol": "CPRT",
+ "name": "Copart, Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/CPRT.png",
+ "price": "33.72",
+ "priceChange24hPercent": "0.41691",
+ "marketCap": "31218363173",
+ "volume24h": "222210989.64",
+ "key": "stock:CPRT",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Copart, Inc."
+ }
+ },
+ {
+ "symbol": "CPT",
+ "name": "Camden Property Trust",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/CPT.png",
+ "price": "105.69",
+ "priceChange24hPercent": "0.08522727",
+ "marketCap": "10623958800",
+ "volume24h": "77797457.78999999",
+ "key": "stock:CPT",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Camden Property Trust"
+ }
+ },
+ {
+ "symbol": "CRAUT",
+ "name": "CRAUT",
+ "logoUrl": "https://uni-test.onekey-asset.com/utility/okx/token/0a4354f1817e30408fbe057e8b84580473572eedc5bb864ec3043b5f291c9753",
+ "key": "stock:CRAUT",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "CRAUT"
+ }
+ },
+ {
+ "symbol": "CRCL",
+ "name": "Circle Internet Group",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/CRCL.png",
+ "price": "102.05",
+ "priceChange24hPercent": "-1.14308",
+ "marketCap": "27277014302",
+ "volume24h": "1440248998.5",
+ "key": "stock:CRCL",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Circle Internet Group"
+ }
+ },
+ {
+ "symbol": "CRDO",
+ "name": "Credo Technology Group Holding Ltd",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/CRDO.png",
+ "price": "170.57",
+ "priceChange24hPercent": "3.8984",
+ "marketCap": "31807535062",
+ "volume24h": "1834730235.05",
+ "key": "stock:CRDO",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Credo Technology Group Holding Ltd"
+ }
+ },
+ {
+ "symbol": "CRESB",
+ "name": "CRESB",
+ "logoUrl": "https://uni-test.onekey-asset.com/utility/okx/token/975a8841a6656e248ab012e94c4dde5fde1cd6db0109fb0a03b790468ecc631b",
+ "key": "stock:CRESB",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "CRESB"
+ }
+ },
+ {
+ "symbol": "CRESL",
+ "name": "CRESL",
+ "logoUrl": "https://uni-test.onekey-asset.com/utility/okx/token/06afb040fe70c48bb60b4a9a7e5accf9056a6bb5143582b4c090bed0904f9b1b",
+ "key": "stock:CRESL",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "CRESL"
+ }
+ },
+ {
+ "symbol": "CRESM",
+ "name": "CRESM",
+ "logoUrl": "https://uni-test.onekey-asset.com/utility/okx/token/1c256171df92292631cb5289eef271f63584674be4bc1e0bf49e980a7e106d07",
+ "key": "stock:CRESM",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "CRESM"
+ }
+ },
+ {
+ "symbol": "CRESP",
+ "name": "CRESP",
+ "logoUrl": "https://uni-test.onekey-asset.com/utility/okx/token/2be7ecccda45a4af482485b2f71251bb3534b801c2d5fca2f9fa21e81e76290a",
+ "key": "stock:CRESP",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "CRESP"
+ }
+ },
+ {
+ "symbol": "CRM",
+ "name": "赛富时",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/CRM.png",
+ "price": "259.23",
+ "priceChange24hPercent": "-1.96649",
+ "marketCap": "212309370000",
+ "volume24h": "2679425388.3900003",
+ "key": "stock:CRM",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "赛富时"
+ }
+ },
+ {
+ "symbol": "CRS",
+ "name": "Carpenter Technology Corporation",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/CRS.png",
+ "price": "475.33",
+ "priceChange24hPercent": "1.67922",
+ "marketCap": "23617056248",
+ "volume24h": "207295215.64",
+ "key": "stock:CRS",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Carpenter Technology Corporation"
+ }
+ },
+ {
+ "symbol": "CRWD",
+ "name": "CrowdStrike",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/CRWD.png",
+ "price": "213.1",
+ "priceChange24hPercent": "-0.86989",
+ "marketCap": "216991052568",
+ "volume24h": "1796128480.1",
+ "key": "stock:CRWD",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "CrowdStrike"
+ }
+ },
+ {
+ "symbol": "CRWV",
+ "name": "CoreWeave",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/CRWV.png",
+ "price": "89.36",
+ "priceChange24hPercent": "5.67644",
+ "marketCap": "48752169872",
+ "volume24h": "1858414200.96",
+ "key": "stock:CRWV",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "CoreWeave"
+ }
+ },
+ {
+ "symbol": "CS",
+ "name": "Credit Suisse Group AG",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/CS.png",
+ "price": "0.8858",
+ "priceChange24hPercent": "0.9919",
+ "marketCap": "3496163992",
+ "volume24h": "56647789.5994",
+ "key": "stock:CS",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Credit Suisse Group AG"
+ }
+ },
+ {
+ "symbol": "CSCO",
+ "name": "思科",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/CSCO.png",
+ "price": "109.2",
+ "priceChange24hPercent": "0.54323",
+ "marketCap": "430404665418",
+ "volume24h": "1351570474.8",
+ "key": "stock:CSCO",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "思科"
+ }
+ },
+ {
+ "symbol": "CSGP",
+ "name": "CoStar Group, Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/CSGP.png",
+ "price": "30.91",
+ "priceChange24hPercent": "-2.43056",
+ "marketCap": "12524670180",
+ "volume24h": "119785986.65",
+ "key": "stock:CSGP",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "CoStar Group, Inc."
+ }
+ },
+ {
+ "symbol": "CSHEE",
+ "name": "CSHEE",
+ "logoUrl": "https://uni-test.onekey-asset.com/utility/okx/token/d0ef7d3b004e379aae4945a31e46ff67ffda74eefd04e5e5c55dfe8e1d094bc1",
+ "key": "stock:CSHEE",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "CSHEE"
+ }
+ },
+ {
+ "symbol": "CSL",
+ "name": "Carlisle Companies Incorporated",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/CSL.png",
+ "price": "352.14",
+ "priceChange24hPercent": "2.05773",
+ "marketCap": "14249380314",
+ "volume24h": "140949317.1",
+ "key": "stock:CSL",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Carlisle Companies Incorporated"
+ }
+ },
+ {
+ "symbol": "CSPC",
+ "name": "CSPC",
+ "logoUrl": "https://uni-test.onekey-asset.com/utility/okx/token/9a6ada4c7f473bf88d91d57b8ef7db5e63d82d0f4cef09828d295b137ba0454b",
+ "key": "stock:CSPC",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "CSPC"
+ }
+ },
+ {
+ "symbol": "CSX",
+ "name": "CSX Corporation",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/CSX.png",
+ "price": "49.41",
+ "priceChange24hPercent": "0.85732",
+ "marketCap": "91531036800",
+ "volume24h": "386214055.56",
+ "key": "stock:CSX",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "CSX Corporation"
+ }
+ },
+ {
+ "symbol": "CTAS",
+ "name": "Cintas Corporation",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/CTAS.png",
+ "price": "200.47",
+ "priceChange24hPercent": "-0.28849",
+ "marketCap": "80221991894",
+ "volume24h": "264788393.85999998",
+ "key": "stock:CTAS",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Cintas Corporation"
+ }
+ },
+ {
+ "symbol": "CTFJW",
+ "name": "CTFJW",
+ "logoUrl": "https://uni-test.onekey-asset.com/utility/okx/token/312f9a68eb01488070e8cf77300b94e9a139934735e78473f5b4c3d6681a5171",
+ "key": "stock:CTFJW",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "CTFJW"
+ }
+ },
+ {
+ "symbol": "CTINS",
+ "name": "CTINS",
+ "logoUrl": "https://uni-test.onekey-asset.com/utility/okx/token/1ae266f616f92d65acd2145f0596f852b8fa15fc8e0ac877d4d0755d6a10fe7a",
+ "key": "stock:CTINS",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "CTINS"
+ }
+ },
+ {
+ "symbol": "CTPCA",
+ "name": "CTPCA",
+ "logoUrl": "https://uni-test.onekey-asset.com/utility/okx/token/df2ff4aa333a4cb7a63b3f449ac0abb38a76adad1dbf52f3920823f9f3df7e94",
+ "key": "stock:CTPCA",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "CTPCA"
+ }
+ },
+ {
+ "symbol": "CTSH",
+ "name": "Cognizant Technology Solutions Corporation",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/CTSH.png",
+ "price": "62.31",
+ "priceChange24hPercent": "-3.60458",
+ "marketCap": "28067178663",
+ "volume24h": "278738364.03000003",
+ "key": "stock:CTSH",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Cognizant Technology Solutions Corporation"
+ }
+ },
+ {
+ "symbol": "CTVA",
+ "name": "Corteva, Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/CTVA.png",
+ "price": "87.86",
+ "priceChange24hPercent": "-0.85759",
+ "marketCap": "58762525200",
+ "volume24h": "365989703.86",
+ "key": "stock:CTVA",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Corteva, Inc."
+ }
+ },
+ {
+ "symbol": "CV",
+ "name": "CapsoVision, Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/CV.png",
+ "price": "7.17",
+ "priceChange24hPercent": "8.96657",
+ "marketCap": "358238912",
+ "volume24h": "815135.79",
+ "key": "stock:CV",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "CapsoVision, Inc."
+ }
+ },
+ {
+ "symbol": "CVNA",
+ "name": "Carvana Co.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/CVNA.png",
+ "price": "74.59",
+ "priceChange24hPercent": "1.57974",
+ "marketCap": "81812972402",
+ "volume24h": "275312659.67",
+ "key": "stock:CVNA",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Carvana Co."
+ }
+ },
+ {
+ "symbol": "CVS",
+ "name": "CVS Health Corp.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/CVS.png",
+ "price": "96.74",
+ "priceChange24hPercent": "-0.47325",
+ "marketCap": "123433468200",
+ "volume24h": "433143192.29999995",
+ "key": "stock:CVS",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "CVS Health Corp."
+ }
+ },
+ {
+ "symbol": "CVX",
+ "name": "雪佛龙",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/CVX.png",
+ "price": "208.53",
+ "priceChange24hPercent": "-1.32027",
+ "marketCap": "415308348000",
+ "volume24h": "1122138299.52",
+ "key": "stock:CVX",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "雪佛龙"
+ }
+ },
+ {
+ "symbol": "CW",
+ "name": "Curtiss-Wright Corporation",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/CW.png",
+ "price": "566.75",
+ "priceChange24hPercent": "-0.34639",
+ "marketCap": "20936425100",
+ "volume24h": "139868232.5",
+ "key": "stock:CW",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Curtiss-Wright Corporation"
+ }
+ },
+ {
+ "symbol": "D",
+ "name": "Dominion Energy, Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/D.png",
+ "price": "65.84",
+ "priceChange24hPercent": "-1.42237",
+ "marketCap": "57907988482",
+ "volume24h": "211009101.68",
+ "key": "stock:D",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Dominion Energy, Inc."
+ }
+ },
+ {
+ "symbol": "DA",
+ "name": "DA",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/DA.png",
+ "key": "stock:DA",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "DA"
+ }
+ },
+ {
+ "symbol": "DAL",
+ "name": "Delta Air Lines, Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/DAL.png",
+ "price": "80.17",
+ "priceChange24hPercent": "1.80317",
+ "marketCap": "52721635910",
+ "volume24h": "406521305.97",
+ "key": "stock:DAL",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Delta Air Lines, Inc."
+ }
+ },
+ {
+ "symbol": "DASH",
+ "name": "DoorDash",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/DASH.png",
+ "price": "211.73",
+ "priceChange24hPercent": "-4.62613",
+ "marketCap": "92254722892",
+ "volume24h": "883319774.68",
+ "key": "stock:DASH",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "DoorDash"
+ }
+ },
+ {
+ "symbol": "DAX",
+ "name": "Global X - DAX Germany ETF",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/DAX.png",
+ "price": "46.8688",
+ "priceChange24hPercent": "-0.0886797",
+ "marketCap": "245299113",
+ "volume24h": "1810635.4816",
+ "key": "stock:DAX",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Global X - DAX Germany ETF"
+ }
+ },
+ {
+ "symbol": "DBC",
+ "name": "大宗商品ETF",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/DBC.png",
+ "price": "31.9",
+ "priceChange24hPercent": "-0.18773",
+ "marketCap": "2250209253",
+ "volume24h": "26635351.599999998",
+ "key": "stock:DBC",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "大宗商品ETF"
+ }
+ },
+ {
+ "symbol": "DDOG",
+ "name": "Datadog, Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/DDOG.png",
+ "price": "212.93",
+ "priceChange24hPercent": "-0.85211",
+ "marketCap": "75794599850",
+ "volume24h": "533052155.95",
+ "key": "stock:DDOG",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Datadog, Inc."
+ }
+ },
+ {
+ "symbol": "DE",
+ "name": "约翰迪尔",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/DE.png",
+ "price": "693.53",
+ "priceChange24hPercent": "-0.12673",
+ "marketCap": "187209702360",
+ "volume24h": "730782270.42",
+ "key": "stock:DE",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "约翰迪尔"
+ }
+ },
+ {
+ "symbol": "DECK",
+ "name": "Deckers Outdoor Corporation",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/DECK.png",
+ "price": "85.81",
+ "priceChange24hPercent": "1.5503",
+ "marketCap": "11685777420",
+ "volume24h": "227687224.28",
+ "key": "stock:DECK",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Deckers Outdoor Corporation"
+ }
+ },
+ {
+ "symbol": "DELL",
+ "name": "戴尔",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/DELL.png",
+ "price": "524",
+ "priceChange24hPercent": "1.47369",
+ "marketCap": "348067494132",
+ "volume24h": "5715795144",
+ "key": "stock:DELL",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "戴尔"
+ }
+ },
+ {
+ "symbol": "DFDV",
+ "name": "DeFi Development Corp",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/DFDV.png",
+ "price": "5.87",
+ "priceChange24hPercent": "-3.45395",
+ "marketCap": "176793857",
+ "volume24h": "11104584.24",
+ "key": "stock:DFDV",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "DeFi Development Corp"
+ }
+ },
+ {
+ "symbol": "DG",
+ "name": "Dollar General Corporation",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/DG.png",
+ "price": "133.21",
+ "priceChange24hPercent": "1.4856",
+ "marketCap": "29384347247",
+ "volume24h": "227319534.75",
+ "key": "stock:DG",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Dollar General Corporation"
+ }
+ },
+ {
+ "symbol": "DGRW",
+ "name": "股息增长ETF",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/DGRW.png",
+ "price": "99.77",
+ "priceChange24hPercent": "-0.31971",
+ "marketCap": "17178307111",
+ "volume24h": "31749507.79",
+ "key": "stock:DGRW",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "股息增长ETF"
+ }
+ },
+ {
+ "symbol": "DGX",
+ "name": "Quest Diagnostics Incorporated",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/DGX.png",
+ "price": "237.14",
+ "priceChange24hPercent": "-0.94403",
+ "marketCap": "26173853220",
+ "volume24h": "183929578.23999998",
+ "key": "stock:DGX",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Quest Diagnostics Incorporated"
+ }
+ },
+ {
+ "symbol": "DGXX",
+ "name": "Digi Power X Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/DGXX.png",
+ "price": "3.75",
+ "priceChange24hPercent": "0.80645",
+ "marketCap": "369537581",
+ "volume24h": "4327305",
+ "key": "stock:DGXX",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Digi Power X Inc."
+ }
+ },
+ {
+ "symbol": "DHI",
+ "name": "D.R. Horton, Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/DHI.png",
+ "price": "142.75",
+ "priceChange24hPercent": "-1.1495",
+ "marketCap": "39927355864",
+ "volume24h": "229493750.5",
+ "key": "stock:DHI",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "D.R. Horton, Inc."
+ }
+ },
+ {
+ "symbol": "DHR",
+ "name": "Danaher Corporation",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/DHR.png",
+ "price": "207.66",
+ "priceChange24hPercent": "-1.59693",
+ "marketCap": "145982083974",
+ "volume24h": "601790996.58",
+ "key": "stock:DHR",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Danaher Corporation"
+ }
+ },
+ {
+ "symbol": "DIS",
+ "name": "迪士尼",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/DIS.png",
+ "price": "105.29",
+ "priceChange24hPercent": "-1.74505",
+ "marketCap": "182837137900",
+ "volume24h": "624667460.12",
+ "key": "stock:DIS",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "迪士尼"
+ }
+ },
+ {
+ "symbol": "DJT",
+ "name": "Trump Media & Technology Group Corp.",
+ "logoUrl": "https://uni-test.onekey-asset.com/utility/okx/token/001b4443aa4251ef1afd763fa2e5f4ac5e9650e5de92230c40b57b32250badeb",
+ "price": "9.02",
+ "priceChange24hPercent": "-5.2521",
+ "marketCap": "2498123529",
+ "volume24h": "40566376.62",
+ "key": "stock:DJT",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Trump Media & Technology Group Corp."
+ }
+ },
+ {
+ "symbol": "DKNG",
+ "name": "DraftKings Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/DKNG.png",
+ "price": "24.01",
+ "priceChange24hPercent": "-0.74411",
+ "marketCap": "11912052896",
+ "volume24h": "199691818.27",
+ "key": "stock:DKNG",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "DraftKings Inc."
+ }
+ },
+ {
+ "symbol": "DKS",
+ "name": "DICK'S Sporting Goods, Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/DKS.png",
+ "price": "139.15",
+ "priceChange24hPercent": "-0.44359",
+ "marketCap": "11888077508",
+ "volume24h": "304847037",
+ "key": "stock:DKS",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "DICK'S Sporting Goods, Inc."
+ }
+ },
+ {
+ "symbol": "DLR",
+ "name": "Digital Realty Trust, Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/DLR.png",
+ "price": "188.39",
+ "priceChange24hPercent": "0.31951",
+ "marketCap": "69699779017",
+ "volume24h": "372986390.57",
+ "key": "stock:DLR",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Digital Realty Trust, Inc."
+ }
+ },
+ {
+ "symbol": "DLTR",
+ "name": "Dollar Tree, Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/DLTR.png",
+ "price": "131.42",
+ "priceChange24hPercent": "0.28999",
+ "marketCap": "25255638500",
+ "volume24h": "159004795.16",
+ "key": "stock:DLTR",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Dollar Tree, Inc."
+ }
+ },
+ {
+ "symbol": "DNN",
+ "name": "Denison铀矿",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/DNN.png",
+ "price": "3.42",
+ "priceChange24hPercent": "0.44053",
+ "marketCap": "3095158010",
+ "volume24h": "71310779.1",
+ "key": "stock:DNN",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Denison铀矿"
+ }
+ },
+ {
+ "symbol": "DOC",
+ "name": "Healthpeak Properties, Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/DOC.png",
+ "price": "20.65",
+ "priceChange24hPercent": "-1.78359",
+ "marketCap": "14236523000",
+ "volume24h": "63066937.849999994",
+ "key": "stock:DOC",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Healthpeak Properties, Inc."
+ }
+ },
+ {
+ "symbol": "DOV",
+ "name": "Dover Corporation",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/DOV.png",
+ "price": "192.88",
+ "priceChange24hPercent": "0.9473",
+ "marketCap": "25977078400",
+ "volume24h": "247888990.23999998",
+ "key": "stock:DOV",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Dover Corporation"
+ }
+ },
+ {
+ "symbol": "DOW",
+ "name": "Dow Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/DOW.png",
+ "price": "29.44",
+ "priceChange24hPercent": "-3.0303",
+ "marketCap": "21265710532",
+ "volume24h": "276993187.84000003",
+ "key": "stock:DOW",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Dow Inc."
+ }
+ },
+ {
+ "symbol": "DRAM",
+ "name": "Roundhill Memory ETF",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/DRAM.png",
+ "price": "59.69",
+ "priceChange24hPercent": "6.60832",
+ "marketCap": "2218424752",
+ "volume24h": "2417331230.86",
+ "key": "stock:DRAM",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Roundhill Memory ETF"
+ }
+ },
+ {
+ "symbol": "DRI",
+ "name": "Darden Restaurants, Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/DRI.png",
+ "price": "216.88",
+ "priceChange24hPercent": "-0.53201",
+ "marketCap": "24840351451",
+ "volume24h": "134479263.44",
+ "key": "stock:DRI",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Darden Restaurants, Inc."
+ }
+ },
+ {
+ "symbol": "DRS",
+ "name": "Leonardo DRS, Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/DRS.png",
+ "price": "36.6",
+ "priceChange24hPercent": "-1.13452",
+ "marketCap": "9768229376",
+ "volume24h": "23375944.2",
+ "key": "stock:DRS",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Leonardo DRS, Inc."
+ }
+ },
+ {
+ "symbol": "DT",
+ "name": "Dynatrace, Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/DT.png",
+ "price": "51.9",
+ "priceChange24hPercent": "-1.63002",
+ "marketCap": "15127590543",
+ "volume24h": "219942494.7",
+ "key": "stock:DT",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Dynatrace, Inc."
+ }
+ },
+ {
+ "symbol": "DTCR",
+ "name": "Global X - Data Center & Digital Infrastructure ETF",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/DTCR.png",
+ "price": "28.18",
+ "priceChange24hPercent": "0.85898",
+ "marketCap": "2151028461",
+ "volume24h": "18114554.88",
+ "key": "stock:DTCR",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Global X - Data Center & Digital Infrastructure ETF"
+ }
+ },
+ {
+ "symbol": "DTE",
+ "name": "DTE Energy Company",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/DTE.png",
+ "price": "136.08",
+ "priceChange24hPercent": "-0.72226",
+ "marketCap": "28316615040",
+ "volume24h": "159237958.32000002",
+ "key": "stock:DTE",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "DTE Energy Company"
+ }
+ },
+ {
+ "symbol": "DUK",
+ "name": "Duke Energy Corporation",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/DUK.png",
+ "price": "120.22",
+ "priceChange24hPercent": "-0.97199",
+ "marketCap": "93723031120",
+ "volume24h": "384529801.21999997",
+ "key": "stock:DUK",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Duke Energy Corporation"
+ }
+ },
+ {
+ "symbol": "DVN",
+ "name": "Devon Energy Corporation",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/DVN.png",
+ "price": "48.06",
+ "priceChange24hPercent": "-1.49621",
+ "marketCap": "52866000000",
+ "volume24h": "424926094.5",
+ "key": "stock:DVN",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Devon Energy Corporation"
+ }
+ },
+ {
+ "symbol": "DXCM",
+ "name": "DexCom, Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/DXCM.png",
+ "price": "87.9",
+ "priceChange24hPercent": "-2.01761",
+ "marketCap": "33170031900",
+ "volume24h": "207579102.3",
+ "key": "stock:DXCM",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "DexCom, Inc."
+ }
+ },
+ {
+ "symbol": "DYNF",
+ "name": "iShares U.S. Equity Factor Rotation Active ETF",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/DYNF.png",
+ "price": "70.05",
+ "priceChange24hPercent": "-0.35562",
+ "marketCap": "40111411128",
+ "volume24h": "119284642.5",
+ "key": "stock:DYNF",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "iShares U.S. Equity Factor Rotation Active ETF"
+ }
+ },
+ {
+ "symbol": "EA",
+ "name": "Electronic Arts Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/EA.png",
+ "price": "209.7",
+ "priceChange24hPercent": "0",
+ "marketCap": "52924891248",
+ "volume24h": "0",
+ "key": "stock:EA",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Electronic Arts Inc."
+ }
+ },
+ {
+ "symbol": "EBAY",
+ "name": "eBay Inc.",
+ "logoUrl": "",
+ "price": "103.41",
+ "priceChange24hPercent": "-2.31438",
+ "marketCap": "45914040000",
+ "volume24h": "330724827.9",
+ "key": "stock:EBAY",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "eBay Inc."
+ }
+ },
+ {
+ "symbol": "ECH",
+ "name": "iShares MSCI Chile ETF",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/ECH.png",
+ "price": "40.84",
+ "priceChange24hPercent": "-0.51157",
+ "marketCap": "1057598684",
+ "volume24h": "18157423.16",
+ "key": "stock:ECH",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "iShares MSCI Chile ETF"
+ }
+ },
+ {
+ "symbol": "ECL",
+ "name": "Ecolab Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/ECL.png",
+ "price": "279.28",
+ "priceChange24hPercent": "0.11112",
+ "marketCap": "78600004640",
+ "volume24h": "280302723.35999995",
+ "key": "stock:ECL",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Ecolab Inc."
+ }
+ },
+ {
+ "symbol": "ECO",
+ "name": "Okeanis Eco Tankers Corp.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/ECO.png",
+ "price": "71.43",
+ "priceChange24hPercent": "2.68833",
+ "marketCap": "2335392850",
+ "volume24h": "26437028.730000004",
+ "key": "stock:ECO",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Okeanis Eco Tankers Corp."
+ }
+ },
+ {
+ "symbol": "ED",
+ "name": "Consolidated Edison, Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/ED.png",
+ "price": "107.29",
+ "priceChange24hPercent": "-1.34253",
+ "marketCap": "39539583700",
+ "volume24h": "230983353.52",
+ "key": "stock:ED",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Consolidated Edison, Inc."
+ }
+ },
+ {
+ "symbol": "EEM",
+ "name": "新兴市场ETF",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/EEM.png",
+ "price": "68.7",
+ "priceChange24hPercent": "1.82303",
+ "marketCap": "32146260773",
+ "volume24h": "1506651730.8",
+ "key": "stock:EEM",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "新兴市场ETF"
+ }
+ },
+ {
+ "symbol": "EF",
+ "name": "EF",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/EF.png",
+ "key": "stock:EF",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "EF"
+ }
+ },
+ {
+ "symbol": "EFA",
+ "name": "iShares MSCI EAFE ETF",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/EFA.png",
+ "price": "108.35",
+ "priceChange24hPercent": "0.12938",
+ "marketCap": "78896005005",
+ "volume24h": "613264467.1999999",
+ "key": "stock:EFA",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "iShares MSCI EAFE ETF"
+ }
+ },
+ {
+ "symbol": "EFV",
+ "name": "iShares MSCI EAFE Value ETF",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/EFV.png",
+ "price": "82.965",
+ "priceChange24hPercent": "-0.13842",
+ "marketCap": "32233584201",
+ "volume24h": "124598828.16000001",
+ "key": "stock:EFV",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "iShares MSCI EAFE Value ETF"
+ }
+ },
+ {
+ "symbol": "EFX",
+ "name": "Equifax Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/EFX.png",
+ "price": "177.05",
+ "priceChange24hPercent": "-6.36734",
+ "marketCap": "20800700837",
+ "volume24h": "484056116.40000004",
+ "key": "stock:EFX",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Equifax Inc."
+ }
+ },
+ {
+ "symbol": "EG",
+ "name": "Everest Group, Ltd.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/EG.png",
+ "price": "380.87",
+ "priceChange24hPercent": "-1.39288",
+ "marketCap": "15071635292",
+ "volume24h": "88437633.13",
+ "key": "stock:EG",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Everest Group, Ltd."
+ }
+ },
+ {
+ "symbol": "EI",
+ "name": "EI",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/EI.png",
+ "key": "stock:EI",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "EI"
+ }
+ },
+ {
+ "symbol": "EIX",
+ "name": "Edison International",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/EIX.png",
+ "price": "56.77",
+ "priceChange24hPercent": "0.83481",
+ "marketCap": "21844755380",
+ "volume24h": "265135939.81",
+ "key": "stock:EIX",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Edison International"
+ }
+ },
+ {
+ "symbol": "EL",
+ "name": "The Estée Lauder Companies Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/EL.png",
+ "price": "103.86",
+ "priceChange24hPercent": "2.97442",
+ "marketCap": "37563528318",
+ "volume24h": "402837731.46",
+ "key": "stock:EL",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "The Estée Lauder Companies Inc."
+ }
+ },
+ {
+ "symbol": "ELAN",
+ "name": "Elanco Animal Health Incorporated",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/ELAN.png",
+ "price": "24.5",
+ "priceChange24hPercent": "0.34815",
+ "marketCap": "12236514784",
+ "volume24h": "91091098",
+ "key": "stock:ELAN",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Elanco Animal Health Incorporated"
+ }
+ },
+ {
+ "symbol": "ELS",
+ "name": "Equity LifeStyle Properties, Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/ELS.png",
+ "price": "62.42",
+ "priceChange24hPercent": "-0.30347",
+ "marketCap": "12113513518",
+ "volume24h": "52519813.480000004",
+ "key": "stock:ELS",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Equity LifeStyle Properties, Inc."
+ }
+ },
+ {
+ "symbol": "ELV",
+ "name": "Elevance Health Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/ELV.png",
+ "price": "407.5",
+ "priceChange24hPercent": "-1.75515",
+ "marketCap": "88374235675",
+ "volume24h": "424593810",
+ "key": "stock:ELV",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Elevance Health Inc."
+ }
+ },
+ {
+ "symbol": "EME",
+ "name": "EMCOR Group, Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/EME.png",
+ "price": "754.16",
+ "priceChange24hPercent": "1.73205",
+ "marketCap": "33265922938",
+ "volume24h": "256552411.28",
+ "key": "stock:EME",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "EMCOR Group, Inc."
+ }
+ },
+ {
+ "symbol": "EMR",
+ "name": "Emerson Electric Co.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/EMR.png",
+ "price": "152.82",
+ "priceChange24hPercent": "1.73757",
+ "marketCap": "85594482000",
+ "volume24h": "311253689.88",
+ "key": "stock:EMR",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Emerson Electric Co."
+ }
+ },
+ {
+ "symbol": "ENB",
+ "name": "Enbridge Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/ENB.png",
+ "price": "50.09",
+ "priceChange24hPercent": "-0.85115",
+ "marketCap": "109381533000",
+ "volume24h": "247540171.72000003",
+ "key": "stock:ENB",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Enbridge Inc."
+ }
+ },
+ {
+ "symbol": "ENHA",
+ "name": "Enhanced Group Inc. Class A",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/ENHA.png",
+ "price": "1.58",
+ "priceChange24hPercent": "0.63694",
+ "marketCap": "203278355",
+ "volume24h": "531951.24",
+ "key": "stock:ENHA",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Enhanced Group Inc. Class A"
+ }
+ },
+ {
+ "symbol": "ENLV",
+ "name": "Enlivex",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/ENLV.png",
+ "price": "1.1",
+ "priceChange24hPercent": "-5.17241",
+ "marketCap": "18515217",
+ "volume24h": "277355.10000000003",
+ "key": "stock:ENLV",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Enlivex"
+ }
+ },
+ {
+ "symbol": "ENNHL",
+ "name": "ENNHL",
+ "logoUrl": "https://uni-test.onekey-asset.com/utility/okx/token/7e4ab14b14eba43dcced5bcf34356d6bb7addfebb965ab2f8dfd03afdbfa1de2",
+ "key": "stock:ENNHL",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "ENNHL"
+ }
+ },
+ {
+ "symbol": "ENPH",
+ "name": "Enphase Energy",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/ENPH.png",
+ "price": "36.37",
+ "priceChange24hPercent": "0.16524",
+ "marketCap": "4806100848",
+ "volume24h": "96012944.77999999",
+ "key": "stock:ENPH",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Enphase Energy"
+ }
+ },
+ {
+ "symbol": "ENTG",
+ "name": "Entegris, Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/ENTG.png",
+ "price": "138.74",
+ "priceChange24hPercent": "6.15149",
+ "marketCap": "21157850000",
+ "volume24h": "261524622.52",
+ "key": "stock:ENTG",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Entegris, Inc."
+ }
+ },
+ {
+ "symbol": "EOG",
+ "name": "EOG Resources, Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/EOG.png",
+ "price": "145.19",
+ "priceChange24hPercent": "-0.52754",
+ "marketCap": "77332404510",
+ "volume24h": "378480420.86",
+ "key": "stock:EOG",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "EOG Resources, Inc."
+ }
+ },
+ {
+ "symbol": "EQH",
+ "name": "Equitable Holdings, Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/EQH.png",
+ "price": "52.96",
+ "priceChange24hPercent": "-1.0833",
+ "marketCap": "14455863200",
+ "volume24h": "105050343.84",
+ "key": "stock:EQH",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Equitable Holdings, Inc."
+ }
+ },
+ {
+ "symbol": "EQI",
+ "name": "EQI",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/EQI.png",
+ "key": "stock:EQI",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "EQI"
+ }
+ },
+ {
+ "symbol": "EQIX",
+ "name": "Equinix, Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/EQIX.png",
+ "price": "1035.98",
+ "priceChange24hPercent": "-0.46597",
+ "marketCap": "102221893262",
+ "volume24h": "357010103.78000003",
+ "key": "stock:EQIX",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Equinix, Inc."
+ }
+ },
+ {
+ "symbol": "EQR",
+ "name": "Equity Residential",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/EQR.png",
+ "price": "63.66",
+ "priceChange24hPercent": "-3.50159",
+ "marketCap": "23868935040",
+ "volume24h": "474247329.06",
+ "key": "stock:EQR",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Equity Residential"
+ }
+ },
+ {
+ "symbol": "EQT",
+ "name": "EQT Corporation",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/EQT.png",
+ "price": "55.17",
+ "priceChange24hPercent": "-0.79122",
+ "marketCap": "34509717720",
+ "volume24h": "286230787.2",
+ "key": "stock:EQT",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "EQT Corporation"
+ }
+ },
+ {
+ "symbol": "ES",
+ "name": "Eversource Energy",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/ES.png",
+ "price": "71.05",
+ "priceChange24hPercent": "-0.58766",
+ "marketCap": "26720485776",
+ "volume24h": "118149613.39999999",
+ "key": "stock:ES",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Eversource Energy"
+ }
+ },
+ {
+ "symbol": "ESS",
+ "name": "Essex Property Trust, Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/ESS.png",
+ "price": "278.61",
+ "priceChange24hPercent": "-0.01435493",
+ "marketCap": "17903963103",
+ "volume24h": "115867769.58000001",
+ "key": "stock:ESS",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Essex Property Trust, Inc."
+ }
+ },
+ {
+ "symbol": "ETHA",
+ "name": "贝莱德以太坊ETF",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/ETHA.png",
+ "price": "18.52",
+ "priceChange24hPercent": "-2.62881",
+ "marketCap": "11310681690",
+ "volume24h": "611677115.4399999",
+ "key": "stock:ETHA",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "贝莱德以太坊ETF"
+ }
+ },
+ {
+ "symbol": "ETN",
+ "name": "Eaton Corporation plc",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/ETN.png",
+ "price": "410.85",
+ "priceChange24hPercent": "3.45739",
+ "marketCap": "159533055000",
+ "volume24h": "776088254.7",
+ "key": "stock:ETN",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Eaton Corporation plc"
+ }
+ },
+ {
+ "symbol": "ETR",
+ "name": "Entergy Corporation",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/ETR.png",
+ "price": "107.27",
+ "priceChange24hPercent": "-0.47319",
+ "marketCap": "50055560790",
+ "volume24h": "299785109.06",
+ "key": "stock:ETR",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Entergy Corporation"
+ }
+ },
+ {
+ "symbol": "EUHY",
+ "name": "iShares, Inc. - iShares Euro High Yield Corporate Bond USD Hedged ETF",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/EUHY.png",
+ "price": "53.08",
+ "priceChange24hPercent": "0.11316",
+ "marketCap": "63691647",
+ "volume24h": "1143672.1776315998",
+ "key": "stock:EUHY",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "iShares, Inc. - iShares Euro High Yield Corporate Bond USD Hedged ETF"
+ }
+ },
+ {
+ "symbol": "EVR",
+ "name": "Evercore Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/EVR.png",
+ "price": "297.92",
+ "priceChange24hPercent": "0.34017",
+ "marketCap": "11524290400",
+ "volume24h": "87712414.72",
+ "key": "stock:EVR",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Evercore Inc."
+ }
+ },
+ {
+ "symbol": "EVRG",
+ "name": "Evergy, Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/EVRG.png",
+ "price": "81.54",
+ "priceChange24hPercent": "-0.47602",
+ "marketCap": "18796030020",
+ "volume24h": "145665746.82000002",
+ "key": "stock:EVRG",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Evergy, Inc."
+ }
+ },
+ {
+ "symbol": "EW",
+ "name": "Edwards Lifesciences Corporation",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/EW.png",
+ "price": "89.9",
+ "priceChange24hPercent": "0.13366",
+ "marketCap": "51764420000",
+ "volume24h": "235321071.3",
+ "key": "stock:EW",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Edwards Lifesciences Corporation"
+ }
+ },
+ {
+ "symbol": "EWBC",
+ "name": "East West Bancorp, Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/EWBC.png",
+ "price": "130.77",
+ "priceChange24hPercent": "0.1225",
+ "marketCap": "17915001182",
+ "volume24h": "57953602.440000005",
+ "key": "stock:EWBC",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "East West Bancorp, Inc."
+ }
+ },
+ {
+ "symbol": "EWG",
+ "name": "iShares MSCI Germany ETF",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/EWG.png",
+ "price": "43.89",
+ "priceChange24hPercent": "-0.06830601",
+ "marketCap": "1598313382",
+ "volume24h": "16363069.8",
+ "key": "stock:EWG",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "iShares MSCI Germany ETF"
+ }
+ },
+ {
+ "symbol": "EWJ",
+ "name": "iShares MSCI日本ETF",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/EWJ.png",
+ "price": "98.28",
+ "priceChange24hPercent": "0.39328",
+ "marketCap": "23173990290",
+ "volume24h": "311496985.8",
+ "key": "stock:EWJ",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "iShares MSCI日本ETF"
+ }
+ },
+ {
+ "symbol": "EWQ",
+ "name": "iShares MSCI France ETF",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/EWQ.png",
+ "price": "45.69",
+ "priceChange24hPercent": "-0.10931",
+ "marketCap": "371446359",
+ "volume24h": "6726847.319999999",
+ "key": "stock:EWQ",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "iShares MSCI France ETF"
+ }
+ },
+ {
+ "symbol": "EWT",
+ "name": "iShares MSCI Taiwan ETF",
+ "logoUrl": "",
+ "price": "112.18",
+ "priceChange24hPercent": "1.86144",
+ "marketCap": "12058932578",
+ "volume24h": "435218800.46000004",
+ "key": "stock:EWT",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "iShares MSCI Taiwan ETF"
+ }
+ },
+ {
+ "symbol": "EWU",
+ "name": "iShares MSCI United Kingdom ETF",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/EWU.png",
+ "price": "48.59",
+ "priceChange24hPercent": "-0.18488",
+ "marketCap": "3697821884",
+ "volume24h": "17036139.900000002",
+ "key": "stock:EWU",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "iShares MSCI United Kingdom ETF"
+ }
+ },
+ {
+ "symbol": "EWY",
+ "name": "iShares MSCI韩国ETF",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/EWY.png",
+ "price": "188.87",
+ "priceChange24hPercent": "4.60524",
+ "marketCap": "14278571056",
+ "volume24h": "3455448231.73",
+ "key": "stock:EWY",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "iShares MSCI韩国ETF"
+ }
+ },
+ {
+ "symbol": "EWZ",
+ "name": "iShares MSCI巴西ETF",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/EWZ.png",
+ "price": "37.86",
+ "priceChange24hPercent": "-0.7081",
+ "marketCap": "7592822584",
+ "volume24h": "938719997.16",
+ "key": "stock:EWZ",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "iShares MSCI巴西ETF"
+ }
+ },
+ {
+ "symbol": "EXC",
+ "name": "Exelon Corporation",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/EXC.png",
+ "price": "43.64",
+ "priceChange24hPercent": "-1.99865",
+ "marketCap": "44960282509",
+ "volume24h": "365267891",
+ "key": "stock:EXC",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Exelon Corporation"
+ }
+ },
+ {
+ "symbol": "EXE",
+ "name": "Expand Energy Corporation",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/EXE.png",
+ "price": "97.91",
+ "priceChange24hPercent": "-1.15093",
+ "marketCap": "22666556640",
+ "volume24h": "187253168.73",
+ "key": "stock:EXE",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Expand Energy Corporation"
+ }
+ },
+ {
+ "symbol": "EXEL",
+ "name": "Exelixis, Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/EXEL.png",
+ "price": "59.01",
+ "priceChange24hPercent": "-0.20294",
+ "marketCap": "14832463448",
+ "volume24h": "93294101.88",
+ "key": "stock:EXEL",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Exelixis, Inc."
+ }
+ },
+ {
+ "symbol": "EXOD",
+ "name": "Exodus Movement, Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/EXOD.png",
+ "price": "7.41",
+ "priceChange24hPercent": "1.50685",
+ "marketCap": "222357931",
+ "volume24h": "222514.89",
+ "key": "stock:EXOD",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Exodus Movement, Inc."
+ }
+ },
+ {
+ "symbol": "EXPD",
+ "name": "Expeditors International of Washington, Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/EXPD.png",
+ "price": "188.8",
+ "priceChange24hPercent": "0.89243",
+ "marketCap": "24693340800",
+ "volume24h": "91626339.2",
+ "key": "stock:EXPD",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Expeditors International of Washington, Inc."
+ }
+ },
+ {
+ "symbol": "EXR",
+ "name": "Extra Space Storage Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/EXR.png",
+ "price": "139.25",
+ "priceChange24hPercent": "-1.22712",
+ "marketCap": "29419285952",
+ "volume24h": "124372947.75",
+ "key": "stock:EXR",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Extra Space Storage Inc."
+ }
+ },
+ {
+ "symbol": "EXTR",
+ "name": "Extreme Networks, Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/EXTR.png",
+ "price": "21.7",
+ "priceChange24hPercent": "-0.86798",
+ "marketCap": "2837884510",
+ "volume24h": "17429526.8",
+ "key": "stock:EXTR",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Extreme Networks, Inc."
+ }
+ },
+ {
+ "symbol": "F",
+ "name": "福特",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/F.png",
+ "price": "14.62",
+ "priceChange24hPercent": "1.45732",
+ "marketCap": "58298650494",
+ "volume24h": "568011342.3",
+ "key": "stock:F",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "福特"
+ }
+ },
+ {
+ "symbol": "FAAA",
+ "name": "FIDELITY AAA CLO ETF",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/FAAA.png",
+ "price": "50.3",
+ "priceChange24hPercent": "0.08018353",
+ "marketCap": "21324081",
+ "volume24h": "2098717.1999999997",
+ "key": "stock:FAAA",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "FIDELITY AAA CLO ETF"
+ }
+ },
+ {
+ "symbol": "FANG",
+ "name": "Diamondback Energy, Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/FANG.png",
+ "price": "199.22",
+ "priceChange24hPercent": "-1.83305",
+ "marketCap": "56043175860",
+ "volume24h": "340169942.98",
+ "key": "stock:FANG",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Diamondback Energy, Inc."
+ }
+ },
+ {
+ "symbol": "FAST",
+ "name": "Fastenal Company",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/FAST.png",
+ "price": "49.6",
+ "priceChange24hPercent": "0.75157",
+ "marketCap": "56916000000",
+ "volume24h": "325794624",
+ "key": "stock:FAST",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Fastenal Company"
+ }
+ },
+ {
+ "symbol": "FC",
+ "name": "Franklin Covey Co.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/FC.png",
+ "price": "21.59",
+ "priceChange24hPercent": "0.65268",
+ "marketCap": "243835301",
+ "volume24h": "1817705.28",
+ "key": "stock:FC",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Franklin Covey Co."
+ }
+ },
+ {
+ "symbol": "FCEL",
+ "name": "FuelCell Energy, Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/FCEL.png",
+ "price": "14.95",
+ "priceChange24hPercent": "1.90866",
+ "marketCap": "1195315200",
+ "volume24h": "87676995.89999999",
+ "key": "stock:FCEL",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "FuelCell Energy, Inc."
+ }
+ },
+ {
+ "symbol": "FCNCA",
+ "name": "First Citizens BancShares, Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/FCNCA.png",
+ "price": "2208.49",
+ "priceChange24hPercent": "0.22964",
+ "marketCap": "25155597747",
+ "volume24h": "106575101.92999999",
+ "key": "stock:FCNCA",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "First Citizens BancShares, Inc."
+ }
+ },
+ {
+ "symbol": "FCX",
+ "name": "自由港麦克莫兰",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/FCX.png",
+ "price": "72.72",
+ "priceChange24hPercent": "0.22741",
+ "marketCap": "104539363200",
+ "volume24h": "527756673.59999996",
+ "key": "stock:FCX",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "自由港麦克莫兰"
+ }
+ },
+ {
+ "symbol": "FD",
+ "name": "FD",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/FD.png",
+ "key": "stock:FD",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "FD"
+ }
+ },
+ {
+ "symbol": "FDX",
+ "name": "FedEx Corporation",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/FDX.png",
+ "price": "322.52",
+ "priceChange24hPercent": "-0.55194",
+ "marketCap": "76302164754",
+ "volume24h": "635928810",
+ "key": "stock:FDX",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "FedEx Corporation"
+ }
+ },
+ {
+ "symbol": "FDXF",
+ "name": "FedEx Freight Holding Company, Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/FDXF.png",
+ "price": "129.45",
+ "priceChange24hPercent": "1.77687",
+ "marketCap": "19353454354",
+ "volume24h": "144273837.29999998",
+ "key": "stock:FDXF",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "FedEx Freight Holding Company, Inc."
+ }
+ },
+ {
+ "symbol": "FE",
+ "name": "FirstEnergy Corp.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/FE.png",
+ "price": "46.77",
+ "priceChange24hPercent": "-0.58455",
+ "marketCap": "27062989620",
+ "volume24h": "180856082.25",
+ "key": "stock:FE",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "FirstEnergy Corp."
+ }
+ },
+ {
+ "symbol": "FERG",
+ "name": "Ferguson plc",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/FERG.png",
+ "price": "228.41",
+ "priceChange24hPercent": "2.32048",
+ "marketCap": "44297337466",
+ "volume24h": "261486508.92",
+ "key": "stock:FERG",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Ferguson plc"
+ }
+ },
+ {
+ "symbol": "FEZ",
+ "name": "State Street SPDR EURO STOXX 50 ETF",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/FEZ.png",
+ "price": "70.65",
+ "priceChange24hPercent": "0.08499788",
+ "marketCap": "4472758171",
+ "volume24h": "27157577.400000002",
+ "key": "stock:FEZ",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "State Street SPDR EURO STOXX 50 ETF"
+ }
+ },
+ {
+ "symbol": "FFIV",
+ "name": "F5, Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/FFIV.png",
+ "price": "390.47",
+ "priceChange24hPercent": "-0.42841",
+ "marketCap": "22030005024",
+ "volume24h": "122024608.29",
+ "key": "stock:FFIV",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "F5, Inc."
+ }
+ },
+ {
+ "symbol": "FFOG",
+ "name": "Franklin Focused Growth ETF",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/FFOG.png",
+ "price": "50.08",
+ "priceChange24hPercent": "0.87622",
+ "marketCap": "343007235",
+ "volume24h": "669168.96",
+ "key": "stock:FFOG",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Franklin Focused Growth ETF"
+ }
+ },
+ {
+ "symbol": "FGDL",
+ "name": "Franklin Responsibly Sourced Gold ETF",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/FGDL.png",
+ "price": "59.04",
+ "priceChange24hPercent": "-0.91749",
+ "marketCap": "454589757",
+ "volume24h": "578710.08",
+ "key": "stock:FGDL",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Franklin Responsibly Sourced Gold ETF"
+ }
+ },
+ {
+ "symbol": "FHN",
+ "name": "First Horizon Corporation",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/FHN.png",
+ "price": "24.94",
+ "priceChange24hPercent": "-0.08012821",
+ "marketCap": "11836972920",
+ "volume24h": "92699211.66000001",
+ "key": "stock:FHN",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "First Horizon Corporation"
+ }
+ },
+ {
+ "symbol": "FI",
+ "name": "Fiserv, Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/FI.png",
+ "price": "63.8",
+ "priceChange24hPercent": "0.15699",
+ "marketCap": "34314950646",
+ "volume24h": "513544383",
+ "key": "stock:FI",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Fiserv, Inc."
+ }
+ },
+ {
+ "symbol": "FICO",
+ "name": "Fair Isaac Corporation",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/FICO.png",
+ "price": "932.26",
+ "priceChange24hPercent": "-16.6829",
+ "marketCap": "20134612137",
+ "volume24h": "1332762625.04",
+ "key": "stock:FICO",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Fair Isaac Corporation"
+ }
+ },
+ {
+ "symbol": "FIG",
+ "name": "Figma, Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/FIG.png",
+ "price": "24.12",
+ "priceChange24hPercent": "-4.34265",
+ "marketCap": "11757556980",
+ "volume24h": "396050496.48",
+ "key": "stock:FIG",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Figma, Inc."
+ }
+ },
+ {
+ "symbol": "FIGR",
+ "name": "Figure Technology Solutions, Inc. Class A Common Stock",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/FIGR.png",
+ "price": "35.96",
+ "priceChange24hPercent": "-0.69042",
+ "marketCap": "6567113730",
+ "volume24h": "99081055.48",
+ "key": "stock:FIGR",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Figure Technology Solutions, Inc. Class A Common Stock"
+ }
+ },
+ {
+ "symbol": "FIS",
+ "name": "Fidelity National Information Services, Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/FIS.png",
+ "price": "41.9",
+ "priceChange24hPercent": "-0.89877",
+ "marketCap": "21657230100",
+ "volume24h": "237325329.1",
+ "key": "stock:FIS",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Fidelity National Information Services, Inc."
+ }
+ },
+ {
+ "symbol": "FISV",
+ "name": "Fiserv, Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/FISV.png",
+ "price": "53",
+ "priceChange24hPercent": "0.51204",
+ "marketCap": "28262462000",
+ "volume24h": "217170680",
+ "key": "stock:FISV",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Fiserv, Inc."
+ }
+ },
+ {
+ "symbol": "FITB",
+ "name": "Fifth Third Bancorp",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/FITB.png",
+ "price": "54.87",
+ "priceChange24hPercent": "-0.18192",
+ "marketCap": "49729339440",
+ "volume24h": "170568827.13",
+ "key": "stock:FITB",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Fifth Third Bancorp"
+ }
+ },
+ {
+ "symbol": "FIX",
+ "name": "Comfort Systems USA, Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/FIX.png",
+ "price": "1610.34",
+ "priceChange24hPercent": "1.908",
+ "marketCap": "56674789062",
+ "volume24h": "440737175.28",
+ "key": "stock:FIX",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Comfort Systems USA, Inc."
+ }
+ },
+ {
+ "symbol": "FLBL",
+ "name": "Franklin Senior Loan ETF",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/FLBL.png",
+ "price": "23.08",
+ "priceChange24hPercent": "0.04334634",
+ "marketCap": "853909824",
+ "volume24h": "2996568.7199999997",
+ "key": "stock:FLBL",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Franklin Senior Loan ETF"
+ }
+ },
+ {
+ "symbol": "FLEX",
+ "name": "Flex Ltd.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/FLEX.png",
+ "price": "109.51",
+ "priceChange24hPercent": "1.50153",
+ "marketCap": "40453320121",
+ "volume24h": "492163674.85",
+ "key": "stock:FLEX",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Flex Ltd."
+ }
+ },
+ {
+ "symbol": "FLHY",
+ "name": "Franklin High Yield Corporate ETF",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/FLHY.png",
+ "price": "24.05",
+ "priceChange24hPercent": "-0.12458",
+ "marketCap": "860008351",
+ "volume24h": "5332534.350000001",
+ "key": "stock:FLHY",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Franklin High Yield Corporate ETF"
+ }
+ },
+ {
+ "symbol": "FLNC",
+ "name": "Fluence Energy, Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/FLNC.png",
+ "price": "10.35",
+ "priceChange24hPercent": "1.47059",
+ "marketCap": "1909850931",
+ "volume24h": "34477992.449999996",
+ "key": "stock:FLNC",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Fluence Energy, Inc."
+ }
+ },
+ {
+ "symbol": "FLQL",
+ "name": "Franklin U.S. Large Cap Multifactor Index ETF",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/FLQL.png",
+ "price": "78.98",
+ "priceChange24hPercent": "-0.15171",
+ "marketCap": "2118890209",
+ "volume24h": "7021243.0200000005",
+ "key": "stock:FLQL",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Franklin U.S. Large Cap Multifactor Index ETF"
+ }
+ },
+ {
+ "symbol": "FLQM",
+ "name": "Franklin U.S. Mid Cap Multifactor Index ETF",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/FLQM.png",
+ "price": "60.78",
+ "priceChange24hPercent": "-0.52373",
+ "marketCap": "1554644516",
+ "volume24h": "11471313.3",
+ "key": "stock:FLQM",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Franklin U.S. Mid Cap Multifactor Index ETF"
+ }
+ },
+ {
+ "symbol": "FN",
+ "name": "Fabrinet",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/FN.png",
+ "price": "407.4",
+ "priceChange24hPercent": "3.13924",
+ "marketCap": "14597019780",
+ "volume24h": "235338276.6",
+ "key": "stock:FN",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Fabrinet"
+ }
+ },
+ {
+ "symbol": "FNF",
+ "name": "Fidelity National Financial, Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/FNF.png",
+ "price": "45.78",
+ "priceChange24hPercent": "-3.17259",
+ "marketCap": "12322032181",
+ "volume24h": "121782216.36",
+ "key": "stock:FNF",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Fidelity National Financial, Inc."
+ }
+ },
+ {
+ "symbol": "FORM",
+ "name": "FormFactor, Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/FORM.png",
+ "price": "103.9",
+ "priceChange24hPercent": "7.37908",
+ "marketCap": "8099500811",
+ "volume24h": "114335196.5",
+ "key": "stock:FORM",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "FormFactor, Inc."
+ }
+ },
+ {
+ "symbol": "FPS",
+ "name": "Forgent Power Solutions, Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/FPS.png",
+ "price": "31.35",
+ "priceChange24hPercent": "2.45098",
+ "marketCap": "8150096148",
+ "volume24h": "140653123.05",
+ "key": "stock:FPS",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Forgent Power Solutions, Inc."
+ }
+ },
+ {
+ "symbol": "FSLR",
+ "name": "First Solar, Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/FSLR.png",
+ "price": "204.45",
+ "priceChange24hPercent": "-1.43188",
+ "marketCap": "21972197952",
+ "volume24h": "311033260.65",
+ "key": "stock:FSLR",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "First Solar, Inc."
+ }
+ },
+ {
+ "symbol": "FSML",
+ "name": "Franklin Small Cap Enhanced ETF",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/FSML.png",
+ "price": "30.35",
+ "priceChange24hPercent": "0.66135",
+ "marketCap": "150230011",
+ "volume24h": "96421.95000000001",
+ "key": "stock:FSML",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Franklin Small Cap Enhanced ETF"
+ }
+ },
+ {
+ "symbol": "FSOL",
+ "name": "FSOL",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/FSOL.png",
+ "key": "stock:FSOL",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "FSOL"
+ }
+ },
+ {
+ "symbol": "FTAI",
+ "name": "FTAI Aviation Ltd.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/FTAI.png",
+ "price": "196.28",
+ "priceChange24hPercent": "-1.55976",
+ "marketCap": "20134991240",
+ "volume24h": "206147780.72",
+ "key": "stock:FTAI",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "FTAI Aviation Ltd."
+ }
+ },
+ {
+ "symbol": "FTGC",
+ "name": "First Trust Global Tactical Commodity Strategy Fund",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/FTGC.png",
+ "price": "30.98",
+ "priceChange24hPercent": "-0.24151",
+ "marketCap": "2897128499",
+ "volume24h": "10950407.66",
+ "key": "stock:FTGC",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "First Trust Global Tactical Commodity Strategy Fund"
+ }
+ },
+ {
+ "symbol": "FTNT",
+ "name": "Fortinet, Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/FTNT.png",
+ "price": "156.29",
+ "priceChange24hPercent": "-0.04476848",
+ "marketCap": "114672106827",
+ "volume24h": "478326170.15999997",
+ "key": "stock:FTNT",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Fortinet, Inc."
+ }
+ },
+ {
+ "symbol": "FTV",
+ "name": "Fortive Corporation",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/FTV.png",
+ "price": "56.94",
+ "priceChange24hPercent": "-0.97391",
+ "marketCap": "17196850941",
+ "volume24h": "112907464.8",
+ "key": "stock:FTV",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Fortive Corporation"
+ }
+ },
+ {
+ "symbol": "FUTU",
+ "name": "富途控股",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/FUTU.png",
+ "price": "121.75",
+ "priceChange24hPercent": "-0.2131",
+ "marketCap": "16991222660",
+ "volume24h": "88127276.5",
+ "key": "stock:FUTU",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "富途控股"
+ }
+ },
+ {
+ "symbol": "FWONK",
+ "name": "Liberty Media Corporation",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/FWONK.png",
+ "price": "95.5",
+ "priceChange24hPercent": "-1.48545",
+ "marketCap": "23932846356",
+ "volume24h": "166251270.5",
+ "key": "stock:FWONK",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Liberty Media Corporation"
+ }
+ },
+ {
+ "symbol": "FXI",
+ "name": "iShares China Large-Cap ETF",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/FXI.png",
+ "price": "35.88",
+ "priceChange24hPercent": "1.52801",
+ "marketCap": "4278187895",
+ "volume24h": "667110345.72",
+ "key": "stock:FXI",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "iShares China Large-Cap ETF"
+ }
+ },
+ {
+ "symbol": "GD",
+ "name": "General Dynamics Corporation",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/GD.png",
+ "price": "359.39",
+ "priceChange24hPercent": "-1.77112",
+ "marketCap": "97235480230",
+ "volume24h": "378413590.87",
+ "key": "stock:GD",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "General Dynamics Corporation"
+ }
+ },
+ {
+ "symbol": "GDX",
+ "name": "VanEck Gold Miners ETF",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/GDX.png",
+ "price": "99.26",
+ "priceChange24hPercent": "-2.19726",
+ "marketCap": "30413082751",
+ "volume24h": "2125492396.5800002",
+ "key": "stock:GDX",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "VanEck Gold Miners ETF"
+ }
+ },
+ {
+ "symbol": "GE",
+ "name": "通用电气",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/GE.png",
+ "price": "337.12",
+ "priceChange24hPercent": "1.09152",
+ "marketCap": "349783074383",
+ "volume24h": "825014560.16",
+ "key": "stock:GE",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "通用电气"
+ }
+ },
+ {
+ "symbol": "GEEL",
+ "name": "GEEL",
+ "logoUrl": "https://uni-test.onekey-asset.com/utility/okx/token/720faac2949c588ed26a1b7841d88df3f764f82223270609aeb84b2d38b10419",
+ "key": "stock:GEEL",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "GEEL"
+ }
+ },
+ {
+ "symbol": "GEHC",
+ "name": "GE HealthCare Technologies Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/GEHC.png",
+ "price": "68.86",
+ "priceChange24hPercent": "-1.23351",
+ "marketCap": "31103115313",
+ "volume24h": "193684725.52",
+ "key": "stock:GEHC",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "GE HealthCare Technologies Inc."
+ }
+ },
+ {
+ "symbol": "GEMI",
+ "name": "Gemini Space Station, Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/GEMI.png",
+ "price": "4.68",
+ "priceChange24hPercent": "-3.30579",
+ "marketCap": "571804483",
+ "volume24h": "9376857.36",
+ "key": "stock:GEMI",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Gemini Space Station, Inc."
+ }
+ },
+ {
+ "symbol": "GEN",
+ "name": "Gen Digital Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/GEN.png",
+ "price": "30.65",
+ "priceChange24hPercent": "-2.17044",
+ "marketCap": "18346387042",
+ "volume24h": "148305266.15",
+ "key": "stock:GEN",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Gen Digital Inc."
+ }
+ },
+ {
+ "symbol": "GENTE",
+ "name": "GENTE",
+ "logoUrl": "https://uni-test.onekey-asset.com/utility/okx/token/b30794e2b5105f31883d7add29e4673aa87e3ad0f341f2c2617dd0584864c804",
+ "key": "stock:GENTE",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "GENTE"
+ }
+ },
+ {
+ "symbol": "GEV",
+ "name": "GE Vernova",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/GEV.png",
+ "price": "941.95",
+ "priceChange24hPercent": "0.01167927",
+ "marketCap": "250872934520",
+ "volume24h": "1162161896.8500001",
+ "key": "stock:GEV",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "GE Vernova"
+ }
+ },
+ {
+ "symbol": "GFS",
+ "name": "格芯",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/GFS.png",
+ "price": "45.21",
+ "priceChange24hPercent": "1.52706",
+ "marketCap": "24806764660",
+ "volume24h": "119235633.33",
+ "key": "stock:GFS",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "格芯"
+ }
+ },
+ {
+ "symbol": "GGG",
+ "name": "Graco Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/GGG.png",
+ "price": "77.88",
+ "priceChange24hPercent": "0",
+ "marketCap": "12612963813",
+ "volume24h": "103832964.83999999",
+ "key": "stock:GGG",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Graco Inc."
+ }
+ },
+ {
+ "symbol": "GGOV",
+ "name": "iShares Global Government Bond USD Hedged Active ETF",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/GGOV.png",
+ "price": "50.23",
+ "priceChange24hPercent": "-0.039801",
+ "marketCap": "2871887542",
+ "volume24h": "10285295.719999999",
+ "key": "stock:GGOV",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "iShares Global Government Bond USD Hedged Active ETF"
+ }
+ },
+ {
+ "symbol": "GILD",
+ "name": "Gilead Sciences, Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/GILD.png",
+ "price": "150.995",
+ "priceChange24hPercent": "-0.14879",
+ "marketCap": "187470843125",
+ "volume24h": "933418324.085",
+ "key": "stock:GILD",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Gilead Sciences, Inc."
+ }
+ },
+ {
+ "symbol": "GIS",
+ "name": "General Mills, Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/GIS.png",
+ "price": "38.29",
+ "priceChange24hPercent": "-2.47071",
+ "marketCap": "20435679282",
+ "volume24h": "303948202.53",
+ "key": "stock:GIS",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "General Mills, Inc."
+ }
+ },
+ {
+ "symbol": "GL",
+ "name": "Globe Life Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/GL.png",
+ "price": "174.27",
+ "priceChange24hPercent": "-1.27464",
+ "marketCap": "13531159296",
+ "volume24h": "39194891.43",
+ "key": "stock:GL",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Globe Life Inc."
+ }
+ },
+ {
+ "symbol": "GLD",
+ "name": "黄金ETF",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/GLD.png",
+ "price": "406.77",
+ "priceChange24hPercent": "-0.84101",
+ "marketCap": "143506616993",
+ "volume24h": "3943071366.7799997",
+ "key": "stock:GLD",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "黄金ETF"
+ }
+ },
+ {
+ "symbol": "GLPI",
+ "name": "Gaming and Leisure Properties, Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/GLPI.png",
+ "price": "41.92",
+ "priceChange24hPercent": "-1.03872",
+ "marketCap": "11872659575",
+ "volume24h": "106989313.92",
+ "key": "stock:GLPI",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Gaming and Leisure Properties, Inc."
+ }
+ },
+ {
+ "symbol": "GLTR",
+ "name": "abrdn实物贵金属篮子ETF",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/GLTR.png",
+ "price": "201.51",
+ "priceChange24hPercent": "-0.98397",
+ "marketCap": "2158905193",
+ "volume24h": "7740200.609999999",
+ "key": "stock:GLTR",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "abrdn实物贵金属篮子ETF"
+ }
+ },
+ {
+ "symbol": "GLW",
+ "name": "Corning Inc",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/GLW.png",
+ "price": "154.29",
+ "priceChange24hPercent": "5.67808",
+ "marketCap": "132903554520",
+ "volume24h": "1216223943.06",
+ "key": "stock:GLW",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Corning Inc"
+ }
+ },
+ {
+ "symbol": "GLXY",
+ "name": "银河数码",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/GLXY.png",
+ "price": "26.33",
+ "priceChange24hPercent": "-0.64151",
+ "marketCap": "8733320000",
+ "volume24h": "96240784.08",
+ "key": "stock:GLXY",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "银河数码"
+ }
+ },
+ {
+ "symbol": "GM",
+ "name": "General Motors Company",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/GM.png",
+ "price": "87.76",
+ "priceChange24hPercent": "0.61912",
+ "marketCap": "79374667238",
+ "volume24h": "468677189.92",
+ "key": "stock:GM",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "General Motors Company"
+ }
+ },
+ {
+ "symbol": "GME",
+ "name": "游戏驿站",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/GME.png",
+ "price": "19.16",
+ "priceChange24hPercent": "-0.36401",
+ "marketCap": "8596924484",
+ "volume24h": "121763275.32000001",
+ "key": "stock:GME",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "游戏驿站"
+ }
+ },
+ {
+ "symbol": "GNRC",
+ "name": "Generac Holdings Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/GNRC.png",
+ "price": "187.35",
+ "priceChange24hPercent": "2.36586",
+ "marketCap": "11029050945",
+ "volume24h": "113437989.45",
+ "key": "stock:GNRC",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Generac Holdings Inc."
+ }
+ },
+ {
+ "symbol": "GOLD",
+ "name": "Gold.com, Inc.",
+ "logoUrl": "",
+ "price": "46.13",
+ "priceChange24hPercent": "11.21022",
+ "marketCap": "1337971773",
+ "volume24h": "64652855.68000001",
+ "key": "stock:GOLD",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Gold.com, Inc."
+ }
+ },
+ {
+ "symbol": "GOOGL",
+ "name": "谷歌",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/GOOGL.png",
+ "price": "338.46",
+ "priceChange24hPercent": "-1.17379",
+ "marketCap": "4096080585860",
+ "volume24h": "7848657585.66",
+ "key": "stock:GOOGL",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "谷歌"
+ }
+ },
+ {
+ "symbol": "GPC",
+ "name": "Genuine Parts Company",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/GPC.png",
+ "price": "138.08",
+ "priceChange24hPercent": "0.33425",
+ "marketCap": "19035675385",
+ "volume24h": "98648494.4",
+ "key": "stock:GPC",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Genuine Parts Company"
+ }
+ },
+ {
+ "symbol": "GPN",
+ "name": "Global Payments Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/GPN.png",
+ "price": "92.54",
+ "priceChange24hPercent": "0.83905",
+ "marketCap": "22973481054",
+ "volume24h": "231770964.46",
+ "key": "stock:GPN",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Global Payments Inc."
+ }
+ },
+ {
+ "symbol": "GRAB",
+ "name": "Grab",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/GRAB.png",
+ "price": "3.42",
+ "priceChange24hPercent": "0",
+ "marketCap": "13586736600",
+ "volume24h": "88492859.1",
+ "key": "stock:GRAB",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Grab"
+ }
+ },
+ {
+ "symbol": "GRND",
+ "name": "Grindr Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/GRND.png",
+ "price": "15.25",
+ "priceChange24hPercent": "-2.61814",
+ "marketCap": "2710321500",
+ "volume24h": "17078947.75",
+ "key": "stock:GRND",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Grindr Inc."
+ }
+ },
+ {
+ "symbol": "GS",
+ "name": "高盛",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/GS.png",
+ "price": "1038.61",
+ "priceChange24hPercent": "0.06551502",
+ "marketCap": "306397220270",
+ "volume24h": "1483473666.86",
+ "key": "stock:GS",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "高盛"
+ }
+ },
+ {
+ "symbol": "GWW",
+ "name": "W.W. Grainger, Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/GWW.png",
+ "price": "1324.49",
+ "priceChange24hPercent": "0.88739",
+ "marketCap": "62533278819",
+ "volume24h": "231536745.88",
+ "key": "stock:GWW",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "W.W. Grainger, Inc."
+ }
+ },
+ {
+ "symbol": "HAIDL",
+ "name": "HAIDL",
+ "logoUrl": "https://uni-test.onekey-asset.com/utility/okx/token/d0fcfe4195d8e6517a38fb2253ae4bb50160368d702ad338e384050db2968ad4",
+ "key": "stock:HAIDL",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "HAIDL"
+ }
+ },
+ {
+ "symbol": "HAIER",
+ "name": "HAIER",
+ "logoUrl": "https://uni-test.onekey-asset.com/utility/okx/token/61d7244c1b212e685365e84b9c09a5b1aea700c5828b524d4795e65daaa15cae",
+ "key": "stock:HAIER",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "HAIER"
+ }
+ },
+ {
+ "symbol": "HAL",
+ "name": "Halliburton Company",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/HAL.png",
+ "price": "37.07",
+ "priceChange24hPercent": "-0.58997",
+ "marketCap": "30968194036",
+ "volume24h": "403606853.65",
+ "key": "stock:HAL",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Halliburton Company"
+ }
+ },
+ {
+ "symbol": "HAS",
+ "name": "Hasbro, Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/HAS.png",
+ "price": "92.53",
+ "priceChange24hPercent": "-0.50538",
+ "marketCap": "13050844532",
+ "volume24h": "116531634.29",
+ "key": "stock:HAS",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Hasbro, Inc."
+ }
+ },
+ {
+ "symbol": "HBAN",
+ "name": "Huntington Bancshares Incorporated",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/HBAN.png",
+ "price": "17.03",
+ "priceChange24hPercent": "-0.17585",
+ "marketCap": "34407667075",
+ "volume24h": "225859540.53",
+ "key": "stock:HBAN",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Huntington Bancshares Incorporated"
+ }
+ },
+ {
+ "symbol": "HCA",
+ "name": "HCA Healthcare, Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/HCA.png",
+ "price": "405",
+ "priceChange24hPercent": "-1.02639",
+ "marketCap": "87683108310",
+ "volume24h": "376294410",
+ "key": "stock:HCA",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "HCA Healthcare, Inc."
+ }
+ },
+ {
+ "symbol": "HD",
+ "name": "家得宝",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/HD.png",
+ "price": "321.05",
+ "priceChange24hPercent": "0.9369",
+ "marketCap": "320124412850",
+ "volume24h": "725394496.2",
+ "key": "stock:HD",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "家得宝"
+ }
+ },
+ {
+ "symbol": "HEI",
+ "name": "HEICO Corporation",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/HEI.png",
+ "price": "325.48",
+ "priceChange24hPercent": "-0.06754682",
+ "marketCap": "45345766192",
+ "volume24h": "155361368.4",
+ "key": "stock:HEI",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "HEICO Corporation"
+ }
+ },
+ {
+ "symbol": "HIG",
+ "name": "The Hartford Insurance Group, Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/HIG.png",
+ "price": "138.37",
+ "priceChange24hPercent": "-1.16429",
+ "marketCap": "37931481563",
+ "volume24h": "196787461.71",
+ "key": "stock:HIG",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "The Hartford Insurance Group, Inc."
+ }
+ },
+ {
+ "symbol": "HII",
+ "name": "Huntington Ingalls Industries, Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/HII.png",
+ "price": "285.93",
+ "priceChange24hPercent": "-1.65102",
+ "marketCap": "11266956706",
+ "volume24h": "88965975.78",
+ "key": "stock:HII",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Huntington Ingalls Industries, Inc."
+ }
+ },
+ {
+ "symbol": "HIMS",
+ "name": "Hims & Hers",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/HIMS.png",
+ "price": "27.71",
+ "priceChange24hPercent": "-0.3954",
+ "marketCap": "6181546800",
+ "volume24h": "182854493.73000002",
+ "key": "stock:HIMS",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Hims & Hers"
+ }
+ },
+ {
+ "symbol": "HIMX",
+ "name": "Himax Technologies, Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/HIMX.png",
+ "price": "13.68",
+ "priceChange24hPercent": "0.88496",
+ "marketCap": "2385792000",
+ "volume24h": "9730064.16",
+ "key": "stock:HIMX",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Himax Technologies, Inc."
+ }
+ },
+ {
+ "symbol": "HIVE",
+ "name": "HIVE Digital Technologies Ltd.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/HIVE.png",
+ "price": "3.11",
+ "priceChange24hPercent": "1.96721",
+ "marketCap": "851015878",
+ "volume24h": "44574423.32",
+ "key": "stock:HIVE",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "HIVE Digital Technologies Ltd."
+ }
+ },
+ {
+ "symbol": "HKCGA",
+ "name": "HKCGA",
+ "logoUrl": "https://uni-test.onekey-asset.com/utility/okx/token/a741a793b97d8e8999d22b4c65750d5eeeb01660683343ed01c1f8dcd8c241cd",
+ "key": "stock:HKCGA",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "HKCGA"
+ }
+ },
+ {
+ "symbol": "HKEXC",
+ "name": "HKEXC",
+ "logoUrl": "https://uni-test.onekey-asset.com/utility/okx/token/f73da299f38a00292613242707de454804c93117e4d04c4cffcfcf74aebe398e",
+ "key": "stock:HKEXC",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "HKEXC"
+ }
+ },
+ {
+ "symbol": "HLIT",
+ "name": "Harmonic Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/HLIT.png",
+ "price": "11.78",
+ "priceChange24hPercent": "1.50797",
+ "marketCap": "1278088016",
+ "volume24h": "10971420.799999999",
+ "key": "stock:HLIT",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Harmonic Inc."
+ }
+ },
+ {
+ "symbol": "HLT",
+ "name": "Hilton Worldwide Holdings Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/HLT.png",
+ "price": "311.18",
+ "priceChange24hPercent": "-1.00843",
+ "marketCap": "70035726700",
+ "volume24h": "486982074.54",
+ "key": "stock:HLT",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Hilton Worldwide Holdings Inc."
+ }
+ },
+ {
+ "symbol": "HNDLD",
+ "name": "HNDLD",
+ "logoUrl": "https://uni-test.onekey-asset.com/utility/okx/token/1fd2b7e86bb8e2d614d59f8d76dc4c5584855a10a8724e90a95aca2cf10e6875",
+ "key": "stock:HNDLD",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "HNDLD"
+ }
+ },
+ {
+ "symbol": "HON",
+ "name": "霍尼韦尔",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/HON.png",
+ "price": "209.61",
+ "priceChange24hPercent": "0.95362",
+ "marketCap": "66433793400",
+ "volume24h": "565694419.95",
+ "key": "stock:HON",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "霍尼韦尔"
+ }
+ },
+ {
+ "symbol": "HOOD",
+ "name": "罗宾汉",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/HOOD.png",
+ "price": "122.11",
+ "priceChange24hPercent": "-2.09269",
+ "marketCap": "109786941485",
+ "volume24h": "2897993280.95",
+ "key": "stock:HOOD",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "罗宾汉"
+ }
+ },
+ {
+ "symbol": "HPE",
+ "name": "Hewlett Packard Enterprise Company",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/HPE.png",
+ "price": "52",
+ "priceChange24hPercent": "-4.482",
+ "marketCap": "68858583092",
+ "volume24h": "1557603164",
+ "key": "stock:HPE",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Hewlett Packard Enterprise Company"
+ }
+ },
+ {
+ "symbol": "HPQ",
+ "name": "HP Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/HPQ.png",
+ "price": "32.64",
+ "priceChange24hPercent": "2.22361",
+ "marketCap": "29850030720",
+ "volume24h": "429106394.88",
+ "key": "stock:HPQ",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "HP Inc."
+ }
+ },
+ {
+ "symbol": "HRZRB",
+ "name": "HRZRB",
+ "logoUrl": "https://uni-test.onekey-asset.com/utility/okx/token/97bafcac9cb774b687ecf292880beee79a9bc3bdc2038925ff88c80672369a59",
+ "key": "stock:HRZRB",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "HRZRB"
+ }
+ },
+ {
+ "symbol": "HSAI",
+ "name": "禾赛科技",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/HSAI.png",
+ "price": "18.89",
+ "priceChange24hPercent": "2.32936",
+ "marketCap": "2745369064",
+ "volume24h": "28927749.310000002",
+ "key": "stock:HSAI",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "禾赛科技"
+ }
+ },
+ {
+ "symbol": "HST",
+ "name": "Host Hotels & Resorts, Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/HST.png",
+ "price": "22.05",
+ "priceChange24hPercent": "0.27285",
+ "marketCap": "15101581950",
+ "volume24h": "115712270.10000001",
+ "key": "stock:HST",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Host Hotels & Resorts, Inc."
+ }
+ },
+ {
+ "symbol": "HSY",
+ "name": "The Hershey Company",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/HSY.png",
+ "price": "173.15",
+ "priceChange24hPercent": "-1.09105",
+ "marketCap": "35116483106",
+ "volume24h": "258711033.6",
+ "key": "stock:HSY",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "The Hershey Company"
+ }
+ },
+ {
+ "symbol": "HUBB",
+ "name": "Hubbell Incorporated",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/HUBB.png",
+ "price": "460.72",
+ "priceChange24hPercent": "0.12387",
+ "marketCap": "24341022111",
+ "volume24h": "244547411.68",
+ "key": "stock:HUBB",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Hubbell Incorporated"
+ }
+ },
+ {
+ "symbol": "HUM",
+ "name": "Humana Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/HUM.png",
+ "price": "401.54",
+ "priceChange24hPercent": "-1.22503",
+ "marketCap": "48216923200",
+ "volume24h": "310301278.12",
+ "key": "stock:HUM",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Humana Inc."
+ }
+ },
+ {
+ "symbol": "HUT",
+ "name": "Hut 8 Corp.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/HUT.png",
+ "price": "93.545",
+ "priceChange24hPercent": "6.19253",
+ "marketCap": "10532615926",
+ "volume24h": "536360182.58500004",
+ "key": "stock:HUT",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Hut 8 Corp."
+ }
+ },
+ {
+ "symbol": "HWM",
+ "name": "Howmet Aerospace Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/HWM.png",
+ "price": "259.27",
+ "priceChange24hPercent": "-0.46835",
+ "marketCap": "103735867117",
+ "volume24h": "730316662.13",
+ "key": "stock:HWM",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Howmet Aerospace Inc."
+ }
+ },
+ {
+ "symbol": "HYG",
+ "name": "iShares iBoxx $ High Yield Corporate Bond ETF",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/HYG.png",
+ "price": "79.16",
+ "priceChange24hPercent": "-0.06312334",
+ "marketCap": "17091537241",
+ "volume24h": "1988481389",
+ "key": "stock:HYG",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "iShares iBoxx $ High Yield Corporate Bond ETF"
+ }
+ },
+ {
+ "symbol": "HYGW",
+ "name": "iShares High Yield Corporate Bond BuyWrite Strategy ETF",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/HYGW.png",
+ "price": "28.78",
+ "priceChange24hPercent": "0.03510614",
+ "marketCap": "246110587",
+ "volume24h": "391264.10000000003",
+ "key": "stock:HYGW",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "iShares High Yield Corporate Bond BuyWrite Strategy ETF"
+ }
+ },
+ {
+ "symbol": "HYS",
+ "name": "PIMCO 0-5 Year High Yield Corporate Bond Index Exchange-Traded Fund",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/HYS.png",
+ "price": "92.39",
+ "priceChange24hPercent": "-0.02164268",
+ "marketCap": "1681276449",
+ "volume24h": "11047072.3",
+ "key": "stock:HYS",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "PIMCO 0-5 Year High Yield Corporate Bond Index Exchange-Traded Fund"
+ }
+ },
+ {
+ "symbol": "IALT",
+ "name": "iShares Systematic Alternatives Active ETF",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/IALT.png",
+ "price": "29.12",
+ "priceChange24hPercent": "-0.63129",
+ "marketCap": "95985198",
+ "volume24h": "37364978.56",
+ "key": "stock:IALT",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "iShares Systematic Alternatives Active ETF"
+ }
+ },
+ {
+ "symbol": "IAU",
+ "name": "iShares黄金ETF",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/IAU.png",
+ "price": "83.39",
+ "priceChange24hPercent": "-0.84423",
+ "marketCap": "65795429989",
+ "volume24h": "415966081.39",
+ "key": "stock:IAU",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "iShares黄金ETF"
+ }
+ },
+ {
+ "symbol": "IBIT",
+ "name": "贝莱德比特币ETF",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/IBIT.png",
+ "price": "45.23",
+ "priceChange24hPercent": "-2.4164",
+ "marketCap": "75421432839",
+ "volume24h": "2361768351.6499996",
+ "key": "stock:IBIT",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "贝莱德比特币ETF"
+ }
+ },
+ {
+ "symbol": "IBKR",
+ "name": "Interactive Brokers Group, Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/IBKR.png",
+ "price": "92.62",
+ "priceChange24hPercent": "-0.35503",
+ "marketCap": "160050364222",
+ "volume24h": "231730516.38000003",
+ "key": "stock:IBKR",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Interactive Brokers Group, Inc."
+ }
+ },
+ {
+ "symbol": "IBM",
+ "name": "国际商业机器",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/IBM.png",
+ "price": "234.89",
+ "priceChange24hPercent": "0.07669038",
+ "marketCap": "221297855260",
+ "volume24h": "717698173.8499999",
+ "key": "stock:IBM",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "国际商业机器"
+ }
+ },
+ {
+ "symbol": "ICBC",
+ "name": "ICBC",
+ "logoUrl": "https://uni-test.onekey-asset.com/utility/okx/token/fb4ffddf2e67a141d367e01a10049edd27adaa5b504b03923b2868d60a5c0f0a",
+ "key": "stock:ICBC",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "ICBC"
+ }
+ },
+ {
+ "symbol": "ICE",
+ "name": "Intercontinental Exchange, Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/ICE.png",
+ "price": "161.26",
+ "priceChange24hPercent": "-2.02321",
+ "marketCap": "90530557700",
+ "volume24h": "513425232.09999996",
+ "key": "stock:ICE",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Intercontinental Exchange, Inc."
+ }
+ },
+ {
+ "symbol": "ICHR",
+ "name": "Ichor Holdings, Ltd.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/ICHR.png",
+ "price": "56.38",
+ "priceChange24hPercent": "6.73987",
+ "marketCap": "1965807098",
+ "volume24h": "39059274.68",
+ "key": "stock:ICHR",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Ichor Holdings, Ltd."
+ }
+ },
+ {
+ "symbol": "IDEF",
+ "name": "iShares Defense Industrials Act",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/IDEF.png",
+ "price": "32.26",
+ "priceChange24hPercent": "0.03100775",
+ "marketCap": "4054610649",
+ "volume24h": "14298793.36",
+ "key": "stock:IDEF",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "iShares Defense Industrials Act"
+ }
+ },
+ {
+ "symbol": "IDX",
+ "name": "VanEck Indonesia Index ETF",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/IDX.png",
+ "price": "10.96",
+ "priceChange24hPercent": "0.64279",
+ "marketCap": "24118762",
+ "volume24h": "231847.84000000003",
+ "key": "stock:IDX",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "VanEck Indonesia Index ETF"
+ }
+ },
+ {
+ "symbol": "IDXX",
+ "name": "IDEXX Laboratories, Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/IDXX.png",
+ "price": "535.38",
+ "priceChange24hPercent": "1.1506",
+ "marketCap": "42232380540",
+ "volume24h": "218352056.1",
+ "key": "stock:IDXX",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "IDEXX Laboratories, Inc."
+ }
+ },
+ {
+ "symbol": "IE",
+ "name": "Ivanhoe Electric Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/IE.png",
+ "price": "9.7",
+ "priceChange24hPercent": "6.01093",
+ "marketCap": "1535428452",
+ "volume24h": "12672962.7",
+ "key": "stock:IE",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Ivanhoe Electric Inc."
+ }
+ },
+ {
+ "symbol": "IEF",
+ "name": "iShares 7-10 Year Treasury Bond ETF",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/IEF.png",
+ "price": "92.25",
+ "priceChange24hPercent": "-0.03250975",
+ "marketCap": "46852235993",
+ "volume24h": "277918530.75",
+ "key": "stock:IEF",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "iShares 7-10 Year Treasury Bond ETF"
+ }
+ },
+ {
+ "symbol": "IEFA",
+ "name": "iShares Core MSCI EAFE ETF",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/IEFA.png",
+ "price": "101.08",
+ "priceChange24hPercent": "0.12878",
+ "marketCap": "191069877912",
+ "volume24h": "562851547.16",
+ "key": "stock:IEFA",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "iShares Core MSCI EAFE ETF"
+ }
+ },
+ {
+ "symbol": "IEI",
+ "name": "iShares 3-7 Year Treasury Bond ETF",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/IEI.png",
+ "price": "115.66",
+ "priceChange24hPercent": "-0.04321148",
+ "marketCap": "18175872771",
+ "volume24h": "100102920.38",
+ "key": "stock:IEI",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "iShares 3-7 Year Treasury Bond ETF"
+ }
+ },
+ {
+ "symbol": "IEMG",
+ "name": "核心新兴市场ETF",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/IEMG.png",
+ "price": "83.65",
+ "priceChange24hPercent": "1.65269",
+ "marketCap": "171167801924",
+ "volume24h": "577001471.9000001",
+ "key": "stock:IEMG",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "核心新兴市场ETF"
+ }
+ },
+ {
+ "symbol": "IEX",
+ "name": "IDEX Corporation",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/IEX.png",
+ "price": "223.74",
+ "priceChange24hPercent": "0.28687",
+ "marketCap": "16494090426",
+ "volume24h": "100708506.36",
+ "key": "stock:IEX",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "IDEX Corporation"
+ }
+ },
+ {
+ "symbol": "IFF",
+ "name": "International Flavors & Fragrances Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/IFF.png",
+ "price": "86.35",
+ "priceChange24hPercent": "-0.12723",
+ "marketCap": "22045414050",
+ "volume24h": "126930700.6",
+ "key": "stock:IFF",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "International Flavors & Fragrances Inc."
+ }
+ },
+ {
+ "symbol": "IGEB",
+ "name": "iShares Investment Grade Systematic Bond ETF",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/IGEB.png",
+ "price": "43.925",
+ "priceChange24hPercent": "-0.05688282",
+ "marketCap": "1351449699",
+ "volume24h": "14188917.049999999",
+ "key": "stock:IGEB",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "iShares Investment Grade Systematic Bond ETF"
+ }
+ },
+ {
+ "symbol": "IGV",
+ "name": "iShares Expanded Tech-Software Sector ETF",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/IGV.png",
+ "price": "104.57",
+ "priceChange24hPercent": "-2.22534",
+ "marketCap": "14696946878",
+ "volume24h": "1256004282.3799999",
+ "key": "stock:IGV",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "iShares Expanded Tech-Software Sector ETF"
+ }
+ },
+ {
+ "symbol": "IJH",
+ "name": "iShares Core S&P Mid-Cap ETF",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/IJH.png",
+ "price": "75.85",
+ "priceChange24hPercent": "0.13201",
+ "marketCap": "123402837938",
+ "volume24h": "360950049.75",
+ "key": "stock:IJH",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "iShares Core S&P Mid-Cap ETF"
+ }
+ },
+ {
+ "symbol": "IJR",
+ "name": "iShares标普小盘ETF",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/IJR.png",
+ "price": "145.34",
+ "priceChange24hPercent": "0.37293",
+ "marketCap": "109416868998",
+ "volume24h": "354844557.86",
+ "key": "stock:IJR",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "iShares标普小盘ETF"
+ }
+ },
+ {
+ "symbol": "IJS",
+ "name": "iShares S&P Small-Cap 600 Value ETF",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/IJS.png",
+ "price": "137.54",
+ "priceChange24hPercent": "0.62921",
+ "marketCap": "8259265447",
+ "volume24h": "24058359.259999998",
+ "key": "stock:IJS",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "iShares S&P Small-Cap 600 Value ETF"
+ }
+ },
+ {
+ "symbol": "ILMN",
+ "name": "Illumina, Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/ILMN.png",
+ "price": "218.22",
+ "priceChange24hPercent": "-1.55193",
+ "marketCap": "33016686000",
+ "volume24h": "381491767.56",
+ "key": "stock:ILMN",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Illumina, Inc."
+ }
+ },
+ {
+ "symbol": "INCE",
+ "name": "Franklin Income Equity Focus ETF",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/INCE.png",
+ "price": "68.78",
+ "priceChange24hPercent": "-0.34773",
+ "marketCap": "128015193",
+ "volume24h": "915874.48",
+ "key": "stock:INCE",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Franklin Income Equity Focus ETF"
+ }
+ },
+ {
+ "symbol": "INCY",
+ "name": "Incyte Corporation",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/INCY.png",
+ "price": "126.75",
+ "priceChange24hPercent": "-0.97656",
+ "marketCap": "25691939306",
+ "volume24h": "131322252.75",
+ "key": "stock:INCY",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Incyte Corporation"
+ }
+ },
+ {
+ "symbol": "INDA",
+ "name": "iShares MSCI India ETF",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/INDA.png",
+ "price": "49.91",
+ "priceChange24hPercent": "-0.01001703",
+ "marketCap": "9837193023",
+ "volume24h": "196947954.42",
+ "key": "stock:INDA",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "iShares MSCI India ETF"
+ }
+ },
+ {
+ "symbol": "INOD",
+ "name": "Innodata Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/INOD.png",
+ "price": "55.66",
+ "priceChange24hPercent": "1.11727",
+ "marketCap": "1817597226",
+ "volume24h": "39160539.22",
+ "key": "stock:INOD",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Innodata Inc."
+ }
+ },
+ {
+ "symbol": "INRO",
+ "name": "iShares U.S. Industry Rotation Active ETF",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/INRO.png",
+ "price": "36.9492",
+ "priceChange24hPercent": "0.242",
+ "marketCap": "35781716",
+ "volume24h": "569387.172",
+ "key": "stock:INRO",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "iShares U.S. Industry Rotation Active ETF"
+ }
+ },
+ {
+ "symbol": "INSM",
+ "name": "Insmed Incorporated",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/INSM.png",
+ "price": "126.29",
+ "priceChange24hPercent": "-0.30786",
+ "marketCap": "27373610080",
+ "volume24h": "227662098.97",
+ "key": "stock:INSM",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Insmed Incorporated"
+ }
+ },
+ {
+ "symbol": "INSW",
+ "name": "International Seaways, Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/INSW.png",
+ "price": "104.5",
+ "priceChange24hPercent": "2.21049",
+ "marketCap": "5173240732",
+ "volume24h": "77281303",
+ "key": "stock:INSW",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "International Seaways, Inc."
+ }
+ },
+ {
+ "symbol": "INTC",
+ "name": "英特尔",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/INTC.png",
+ "price": "95.8",
+ "priceChange24hPercent": "4.50529",
+ "marketCap": "483215175763",
+ "volume24h": "9355284335",
+ "key": "stock:INTC",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "英特尔"
+ }
+ },
+ {
+ "symbol": "INTU",
+ "name": "Intuit Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/INTU.png",
+ "price": "332.7",
+ "priceChange24hPercent": "-3.36915",
+ "marketCap": "91005759900",
+ "volume24h": "1177837182.6",
+ "key": "stock:INTU",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Intuit Inc."
+ }
+ },
+ {
+ "symbol": "INTW",
+ "name": "GraniteShares 2x Long INTC Daily ETF",
+ "logoUrl": "https://uni-test.onekey-asset.com/utility/okx/token/912ee7862f0e5c0577105c8818ceb6ad8e60d72d8770b32b3c1be112758195c7",
+ "price": "20.925",
+ "priceChange24hPercent": "8.87097",
+ "marketCap": "303210657",
+ "volume24h": "76680499.5",
+ "key": "stock:INTW",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "GraniteShares 2x Long INTC Daily ETF"
+ }
+ },
+ {
+ "symbol": "INVH",
+ "name": "Invitation Homes Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/INVH.png",
+ "price": "28.39",
+ "priceChange24hPercent": "-0.2109",
+ "marketCap": "16864852380",
+ "volume24h": "68698036.83",
+ "key": "stock:INVH",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Invitation Homes Inc."
+ }
+ },
+ {
+ "symbol": "IONQ",
+ "name": "IonQ",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/IONQ.png",
+ "price": "39.52",
+ "priceChange24hPercent": "1.28139",
+ "marketCap": "14751628345",
+ "volume24h": "511896790.08000004",
+ "key": "stock:IONQ",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "IonQ"
+ }
+ },
+ {
+ "symbol": "IP",
+ "name": "International Paper Company",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/IP.png",
+ "price": "37.24",
+ "priceChange24hPercent": "2.19539",
+ "marketCap": "19719213080",
+ "volume24h": "142581756.24",
+ "key": "stock:IP",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "International Paper Company"
+ }
+ },
+ {
+ "symbol": "IQM",
+ "name": "Franklin Intelligent Machines ETF",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/IQM.png",
+ "price": "105.65",
+ "priceChange24hPercent": "2.06546",
+ "marketCap": "61780528",
+ "volume24h": "51662.850000000006",
+ "key": "stock:IQM",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Franklin Intelligent Machines ETF"
+ }
+ },
+ {
+ "symbol": "IQV",
+ "name": "IQVIA Holdings Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/IQV.png",
+ "price": "267.77",
+ "priceChange24hPercent": "-1.41742",
+ "marketCap": "44074942000",
+ "volume24h": "316970863.10999995",
+ "key": "stock:IQV",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "IQVIA Holdings Inc."
+ }
+ },
+ {
+ "symbol": "IR",
+ "name": "Ingersoll Rand Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/IR.png",
+ "price": "76.36",
+ "priceChange24hPercent": "1.27321",
+ "marketCap": "29882493320",
+ "volume24h": "290543691.2",
+ "key": "stock:IR",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Ingersoll Rand Inc."
+ }
+ },
+ {
+ "symbol": "IRDM",
+ "name": "Iridium Communications Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/IRDM.png",
+ "price": "47.21",
+ "priceChange24hPercent": "0.55378",
+ "marketCap": "5002371600",
+ "volume24h": "24575165.5",
+ "key": "stock:IRDM",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Iridium Communications Inc."
+ }
+ },
+ {
+ "symbol": "IREN",
+ "name": "IREN",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/IREN.png",
+ "price": "44.68",
+ "priceChange24hPercent": "7.27491",
+ "marketCap": "15944391045",
+ "volume24h": "1620373503.24",
+ "key": "stock:IREN",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "IREN"
+ }
+ },
+ {
+ "symbol": "IRM",
+ "name": "Iron Mountain Incorporated",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/IRM.png",
+ "price": "116.86",
+ "priceChange24hPercent": "1.63507",
+ "marketCap": "34768734222",
+ "volume24h": "153490585.02",
+ "key": "stock:IRM",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Iron Mountain Incorporated"
+ }
+ },
+ {
+ "symbol": "ISRG",
+ "name": "直觉外科",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/ISRG.png",
+ "price": "366.7",
+ "priceChange24hPercent": "-0.84633",
+ "marketCap": "129547042600",
+ "volume24h": "763389826.1",
+ "key": "stock:ISRG",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "直觉外科"
+ }
+ },
+ {
+ "symbol": "ITA",
+ "name": "iShares U.S. Aerospace & Defense ETF",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/ITA.png",
+ "price": "225.61",
+ "priceChange24hPercent": "-0.16373",
+ "marketCap": "13240826192",
+ "volume24h": "127292094.93",
+ "key": "stock:ITA",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "iShares U.S. Aerospace & Defense ETF"
+ }
+ },
+ {
+ "symbol": "ITOT",
+ "name": "美股全市场ETF",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/ITOT.png",
+ "price": "168.64",
+ "priceChange24hPercent": "-0.31329",
+ "marketCap": "95625104840",
+ "volume24h": "169106458.23999998",
+ "key": "stock:ITOT",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "美股全市场ETF"
+ }
+ },
+ {
+ "symbol": "ITT",
+ "name": "ITT Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/ITT.png",
+ "price": "204.33",
+ "priceChange24hPercent": "0.41773",
+ "marketCap": "18268074815",
+ "volume24h": "102009300.54",
+ "key": "stock:ITT",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "ITT Inc."
+ }
+ },
+ {
+ "symbol": "ITW",
+ "name": "Illinois Tool Works Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/ITW.png",
+ "price": "270.12",
+ "priceChange24hPercent": "-0.56322",
+ "marketCap": "77713524000",
+ "volume24h": "278793823.32",
+ "key": "stock:ITW",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Illinois Tool Works Inc."
+ }
+ },
+ {
+ "symbol": "IVV",
+ "name": "安硕标普500",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/IVV.png",
+ "price": "773.92",
+ "priceChange24hPercent": "-0.41306",
+ "marketCap": "896778097376",
+ "volume24h": "7974410540.32",
+ "key": "stock:IVV",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "安硕标普500"
+ }
+ },
+ {
+ "symbol": "IWF",
+ "name": "iShares Russell 1000 Growth ETF",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/IWF.png",
+ "price": "123.41",
+ "priceChange24hPercent": "-0.01620352",
+ "marketCap": "134439059389",
+ "volume24h": "387028445.78999996",
+ "key": "stock:IWF",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "iShares Russell 1000 Growth ETF"
+ }
+ },
+ {
+ "symbol": "IWM",
+ "name": "罗素2000 ETF",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/IWM.png",
+ "price": "296.01",
+ "priceChange24hPercent": "0.27779",
+ "marketCap": "81417408119",
+ "volume24h": "4113713428.1099997",
+ "key": "stock:IWM",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "罗素2000 ETF"
+ }
+ },
+ {
+ "symbol": "IWN",
+ "name": "iShares Russell 2000 Value ETF",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/IWN.png",
+ "price": "224.62",
+ "priceChange24hPercent": "0.40229",
+ "marketCap": "14510541399",
+ "volume24h": "144788928.9",
+ "key": "stock:IWN",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "iShares Russell 2000 Value ETF"
+ }
+ },
+ {
+ "symbol": "IYW",
+ "name": "iShares U.S. Technology ETF",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/IYW.png",
+ "price": "253.31",
+ "priceChange24hPercent": "0.3049",
+ "marketCap": "25090505206",
+ "volume24h": "65735718.17",
+ "key": "stock:IYW",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "iShares U.S. Technology ETF"
+ }
+ },
+ {
+ "symbol": "J",
+ "name": "Jacobs Solutions Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/J.png",
+ "price": "146.23",
+ "priceChange24hPercent": "-0.88789",
+ "marketCap": "17266984630",
+ "volume24h": "98787723.72",
+ "key": "stock:J",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Jacobs Solutions Inc."
+ }
+ },
+ {
+ "symbol": "JAAA",
+ "name": "AAA级CLO ETF",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/JAAA.png",
+ "price": "50.58",
+ "priceChange24hPercent": "0.07914523",
+ "marketCap": "28463213839",
+ "volume24h": "301561905.24",
+ "key": "stock:JAAA",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "AAA级CLO ETF"
+ }
+ },
+ {
+ "symbol": "JBHT",
+ "name": "J.B. Hunt Transport Services, Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/JBHT.png",
+ "price": "273.77",
+ "priceChange24hPercent": "2.81283",
+ "marketCap": "25711082173",
+ "volume24h": "235459995.04999998",
+ "key": "stock:JBHT",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "J.B. Hunt Transport Services, Inc."
+ }
+ },
+ {
+ "symbol": "JBL",
+ "name": "Jabil Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/JBL.png",
+ "price": "310.57",
+ "priceChange24hPercent": "1.52001",
+ "marketCap": "32543726231",
+ "volume24h": "216150508.6",
+ "key": "stock:JBL",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Jabil Inc."
+ }
+ },
+ {
+ "symbol": "JD",
+ "name": "京东",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/JD.png",
+ "price": "28.26",
+ "priceChange24hPercent": "1.87455",
+ "marketCap": "39672796818",
+ "volume24h": "138237124.68",
+ "key": "stock:JD",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "京东"
+ }
+ },
+ {
+ "symbol": "JDHLT",
+ "name": "JDHLT",
+ "logoUrl": "https://uni-test.onekey-asset.com/utility/okx/token/7840dbbb4e4b8e078efec24e5f98a6a43051b0423079d4f07b6c13a985936bc6",
+ "key": "stock:JDHLT",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "JDHLT"
+ }
+ },
+ {
+ "symbol": "JDLOG",
+ "name": "JDLOG",
+ "logoUrl": "https://uni-test.onekey-asset.com/utility/okx/token/2d1b7ee0d6546db1c1d10d3be82c5a2d9f90eec2d02f4f9ddcf61e9fea7a40f3",
+ "key": "stock:JDLOG",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "JDLOG"
+ }
+ },
+ {
+ "symbol": "JLL",
+ "name": "Jones Lang LaSalle Incorporated",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/JLL.png",
+ "price": "362.36",
+ "priceChange24hPercent": "0.01656086",
+ "marketCap": "16671351259",
+ "volume24h": "87276580.16",
+ "key": "stock:JLL",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Jones Lang LaSalle Incorporated"
+ }
+ },
+ {
+ "symbol": "JMKE",
+ "name": "Jersey Mike's Subs Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/JMKE.png",
+ "price": "20.78",
+ "priceChange24hPercent": "3.53762",
+ "marketCap": "4838294198",
+ "volume24h": "39539061.88",
+ "key": "stock:JMKE",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Jersey Mike's Subs Inc."
+ }
+ },
+ {
+ "symbol": "JNJ",
+ "name": "强生",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/JNJ.png",
+ "price": "275.23",
+ "priceChange24hPercent": "-1.1493",
+ "marketCap": "663276341036",
+ "volume24h": "1067610839.71",
+ "key": "stock:JNJ",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "强生"
+ }
+ },
+ {
+ "symbol": "JPM",
+ "name": "摩根大通",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/JPM.png",
+ "price": "358.64",
+ "priceChange24hPercent": "-0.94459",
+ "marketCap": "960979466400",
+ "volume24h": "1745667647.6",
+ "key": "stock:JPM",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "摩根大通"
+ }
+ },
+ {
+ "symbol": "JPST",
+ "name": "JPMorgan Ultra-Short Income ETF",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/JPST.png",
+ "price": "50.39",
+ "priceChange24hPercent": "0.00992359",
+ "marketCap": "40380399789",
+ "volume24h": "286613331.39",
+ "key": "stock:JPST",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "JPMorgan Ultra-Short Income ETF"
+ }
+ },
+ {
+ "symbol": "JPY",
+ "name": "Lazard Japanese Equity ETF",
+ "logoUrl": "",
+ "price": "39.4471",
+ "priceChange24hPercent": "-0.26749",
+ "marketCap": "62868224",
+ "volume24h": "46192.5541",
+ "key": "stock:JPY",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Lazard Japanese Equity ETF"
+ }
+ },
+ {
+ "symbol": "JTGEX",
+ "name": "JTGEX",
+ "logoUrl": "https://uni-test.onekey-asset.com/utility/okx/token/5c9cf2ae416b66b894297152e310d6fc5f44dddbaeef35d589408d5fe30186af",
+ "key": "stock:JTGEX",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "JTGEX"
+ }
+ },
+ {
+ "symbol": "KDP",
+ "name": "Keurig Dr Pepper Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/KDP.png",
+ "price": "32.59",
+ "priceChange24hPercent": "-0.882",
+ "marketCap": "44340633160",
+ "volume24h": "191274979.29000002",
+ "key": "stock:KDP",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Keurig Dr Pepper Inc."
+ }
+ },
+ {
+ "symbol": "KEEL",
+ "name": "Bitfarms Ltd.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/KEEL.png",
+ "price": "3.47",
+ "priceChange24hPercent": "3.58209",
+ "marketCap": "2095285419",
+ "volume24h": "110530243.12",
+ "key": "stock:KEEL",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Bitfarms Ltd."
+ }
+ },
+ {
+ "symbol": "KEY",
+ "name": "KeyCorp",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/KEY.png",
+ "price": "22.18",
+ "priceChange24hPercent": "0.27125",
+ "marketCap": "23940426600",
+ "volume24h": "214774507.18",
+ "key": "stock:KEY",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "KeyCorp"
+ }
+ },
+ {
+ "symbol": "KEYS",
+ "name": "Keysight Technologies, Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/KEYS.png",
+ "price": "327.21",
+ "priceChange24hPercent": "1.42273",
+ "marketCap": "55918673363",
+ "volume24h": "198226108.47",
+ "key": "stock:KEYS",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Keysight Technologies, Inc."
+ }
+ },
+ {
+ "symbol": "KHC",
+ "name": "The Kraft Heinz Company",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/KHC.png",
+ "price": "24.85",
+ "priceChange24hPercent": "-2.24233",
+ "marketCap": "29466574304",
+ "volume24h": "507758782.65000004",
+ "key": "stock:KHC",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "The Kraft Heinz Company"
+ }
+ },
+ {
+ "symbol": "KIM",
+ "name": "Kimco Realty Corporation",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/KIM.png",
+ "price": "23.6",
+ "priceChange24hPercent": "-1.33779",
+ "marketCap": "15915604000",
+ "volume24h": "120845664.4",
+ "key": "stock:KIM",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Kimco Realty Corporation"
+ }
+ },
+ {
+ "symbol": "KKR",
+ "name": "KKR & Co. Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/KKR.png",
+ "price": "107.73",
+ "priceChange24hPercent": "-1.84949",
+ "marketCap": "96727851934",
+ "volume24h": "398127742.11",
+ "key": "stock:KKR",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "KKR & Co. Inc."
+ }
+ },
+ {
+ "symbol": "KLAC",
+ "name": "科磊",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/KLAC.png",
+ "price": "185.6",
+ "priceChange24hPercent": "7.32046",
+ "marketCap": "242445568000",
+ "volume24h": "2361877856",
+ "key": "stock:KLAC",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "科磊"
+ }
+ },
+ {
+ "symbol": "KMB",
+ "name": "Kimberly-Clark Corporation",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/KMB.png",
+ "price": "104.96",
+ "priceChange24hPercent": "-2.7698",
+ "marketCap": "34840422400",
+ "volume24h": "435720028.15999997",
+ "key": "stock:KMB",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Kimberly-Clark Corporation"
+ }
+ },
+ {
+ "symbol": "KMI",
+ "name": "Kinder Morgan, Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/KMI.png",
+ "price": "31.4",
+ "priceChange24hPercent": "-0.63291",
+ "marketCap": "69921520000",
+ "volume24h": "233537123.2",
+ "key": "stock:KMI",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Kinder Morgan, Inc."
+ }
+ },
+ {
+ "symbol": "KN",
+ "name": "Knowles Corporation",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/KN.png",
+ "price": "36.59",
+ "priceChange24hPercent": "1.41353",
+ "marketCap": "3125164011",
+ "volume24h": "20841920.130000003",
+ "key": "stock:KN",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Knowles Corporation"
+ }
+ },
+ {
+ "symbol": "KNX",
+ "name": "Knight-Swift Transportation Holdings Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/KNX.png",
+ "price": "71.99",
+ "priceChange24hPercent": "3.47851",
+ "marketCap": "11716804368",
+ "volume24h": "270706876.59999996",
+ "key": "stock:KNX",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Knight-Swift Transportation Holdings Inc."
+ }
+ },
+ {
+ "symbol": "KO",
+ "name": "可口可乐",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/KO.png",
+ "price": "88.07",
+ "priceChange24hPercent": "-0.83324",
+ "marketCap": "378925484617",
+ "volume24h": "1283321428.49",
+ "key": "stock:KO",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "可口可乐"
+ }
+ },
+ {
+ "symbol": "KOPN",
+ "name": "Kopin Corp.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/KOPN.png",
+ "price": "4.28",
+ "priceChange24hPercent": "0.23419",
+ "marketCap": "793088280",
+ "volume24h": "8194398.12",
+ "key": "stock:KOPN",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Kopin Corp."
+ }
+ },
+ {
+ "symbol": "KORU",
+ "name": "Direxion Daily MSCI South Korea Bull 3X ETF",
+ "logoUrl": "https://uni-test.onekey-asset.com/utility/okx/token/847d94593984a3e047e3f3c168762a6b6b5551d611cb52f9557fe29f08fd4a6d",
+ "price": "23.47",
+ "priceChange24hPercent": "13.43644",
+ "marketCap": "1749652849",
+ "volume24h": "595974414.1",
+ "key": "stock:KORU",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Direxion Daily MSCI South Korea Bull 3X ETF"
+ }
+ },
+ {
+ "symbol": "KR",
+ "name": "The Kroger Co.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/KR.png",
+ "price": "58.59",
+ "priceChange24hPercent": "0.13673",
+ "marketCap": "35894987730",
+ "volume24h": "225477228.69000003",
+ "key": "stock:KR",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "The Kroger Co."
+ }
+ },
+ {
+ "symbol": "KRAQ",
+ "name": "KRAKacquisition Corp Class A Ordinary Shares",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/KRAQ.png",
+ "price": "10.0088",
+ "priceChange24hPercent": "0.088",
+ "marketCap": "431629480",
+ "volume24h": "19797.4064",
+ "key": "stock:KRAQ",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "KRAKacquisition Corp Class A Ordinary Shares"
+ }
+ },
+ {
+ "symbol": "KUAI",
+ "name": "KUAI",
+ "logoUrl": "https://uni-test.onekey-asset.com/utility/okx/token/38d150e2ad2b8124cd836b0618c17185f1e7315d48a70fe6963f6c773a5bea0a",
+ "key": "stock:KUAI",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "KUAI"
+ }
+ },
+ {
+ "symbol": "KUNL",
+ "name": "KUNL",
+ "logoUrl": "https://uni-test.onekey-asset.com/utility/okx/token/502e80e5d76c5dceb1107f4351c601f0cf77e449b0fc3febf11ae13583a911a4",
+ "key": "stock:KUNL",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "KUNL"
+ }
+ },
+ {
+ "symbol": "KVUE",
+ "name": "Kenvue Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/KVUE.png",
+ "price": "18.74",
+ "priceChange24hPercent": "-1.10818",
+ "marketCap": "35980962438",
+ "volume24h": "501248412.35999995",
+ "key": "stock:KVUE",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Kenvue Inc."
+ }
+ },
+ {
+ "symbol": "KWEB",
+ "name": "KraneShares CSI China Internet ETF",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/KWEB.png",
+ "price": "26.05",
+ "priceChange24hPercent": "1.99687",
+ "marketCap": "5157023808",
+ "volume24h": "392193691",
+ "key": "stock:KWEB",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "KraneShares CSI China Internet ETF"
+ }
+ },
+ {
+ "symbol": "L",
+ "name": "Loews Corporation",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/L.png",
+ "price": "109.3",
+ "priceChange24hPercent": "-0.67248",
+ "marketCap": "22490551700",
+ "volume24h": "67051505.9",
+ "key": "stock:L",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Loews Corporation"
+ }
+ },
+ {
+ "symbol": "LAMR",
+ "name": "Lamar Advertising Company",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/LAMR.png",
+ "price": "150.76",
+ "priceChange24hPercent": "-0.52128",
+ "marketCap": "15298386679",
+ "volume24h": "48541855.559999995",
+ "key": "stock:LAMR",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Lamar Advertising Company"
+ }
+ },
+ {
+ "symbol": "LAOPG",
+ "name": "LAOPG",
+ "logoUrl": "https://uni-test.onekey-asset.com/utility/okx/token/430a4cb8c3e5d8b47d091fa2ae1fe398dc5441b3cfd835702a524a70961428c8",
+ "key": "stock:LAOPG",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "LAOPG"
+ }
+ },
+ {
+ "symbol": "LASR",
+ "name": "nLIGHT, Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/LASR.png",
+ "price": "40.06",
+ "priceChange24hPercent": "-3.40005",
+ "marketCap": "2259732522",
+ "volume24h": "66388593.74",
+ "key": "stock:LASR",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "nLIGHT, Inc."
+ }
+ },
+ {
+ "symbol": "LDOS",
+ "name": "Leidos Holdings, Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/LDOS.png",
+ "price": "133.05",
+ "priceChange24hPercent": "0.52131",
+ "marketCap": "16735694250",
+ "volume24h": "142196522.25",
+ "key": "stock:LDOS",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Leidos Holdings, Inc."
+ }
+ },
+ {
+ "symbol": "LECO",
+ "name": "Lincoln Electric Holdings, Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/LECO.png",
+ "price": "276.44",
+ "priceChange24hPercent": "0.95315",
+ "marketCap": "15067583352",
+ "volume24h": "65805989.12",
+ "key": "stock:LECO",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Lincoln Electric Holdings, Inc."
+ }
+ },
+ {
+ "symbol": "LEMB",
+ "name": "iShares J.P. Morgan EM Local Currency Bond ETF",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/LEMB.png",
+ "price": "43.31",
+ "priceChange24hPercent": "0",
+ "marketCap": "727525538",
+ "volume24h": "1874153.6300000001",
+ "key": "stock:LEMB",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "iShares J.P. Morgan EM Local Currency Bond ETF"
+ }
+ },
+ {
+ "symbol": "LEN",
+ "name": "Lennar Corporation",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/LEN.png",
+ "price": "83.58",
+ "priceChange24hPercent": "-1.0302",
+ "marketCap": "20752518750",
+ "volume24h": "194561870.16",
+ "key": "stock:LEN",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Lennar Corporation"
+ }
+ },
+ {
+ "symbol": "LH",
+ "name": "Labcorp Holdings Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/LH.png",
+ "price": "307.42",
+ "priceChange24hPercent": "-0.57568",
+ "marketCap": "25208440000",
+ "volume24h": "168850435",
+ "key": "stock:LH",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Labcorp Holdings Inc."
+ }
+ },
+ {
+ "symbol": "LHX",
+ "name": "L3Harris Technologies, Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/LHX.png",
+ "price": "256.45",
+ "priceChange24hPercent": "-2.1706",
+ "marketCap": "47754836750",
+ "volume24h": "310352199.7",
+ "key": "stock:LHX",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "L3Harris Technologies, Inc."
+ }
+ },
+ {
+ "symbol": "LI",
+ "name": "理想汽车",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/LI.png",
+ "price": "12.37",
+ "priceChange24hPercent": "2.57048",
+ "marketCap": "12493209567",
+ "volume24h": "33822957.01",
+ "key": "stock:LI",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "理想汽车"
+ }
+ },
+ {
+ "symbol": "LII",
+ "name": "Lennox International Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/LII.png",
+ "price": "390.53",
+ "priceChange24hPercent": "1.15261",
+ "marketCap": "13496990171",
+ "volume24h": "173318776.11999997",
+ "key": "stock:LII",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Lennox International Inc."
+ }
+ },
+ {
+ "symbol": "LIN",
+ "name": "Linde plc",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/LIN.png",
+ "price": "477.57",
+ "priceChange24hPercent": "-0.95813",
+ "marketCap": "220923882000",
+ "volume24h": "1085952153.84",
+ "key": "stock:LIN",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Linde plc"
+ }
+ },
+ {
+ "symbol": "LIT",
+ "name": "Global X - Lithium & Battery Tech ETF",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/LIT.png",
+ "price": "74.18",
+ "priceChange24hPercent": "-0.37604",
+ "marketCap": "1438564580",
+ "volume24h": "6554841.5200000005",
+ "key": "stock:LIT",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Global X - Lithium & Battery Tech ETF"
+ }
+ },
+ {
+ "symbol": "LITE",
+ "name": "Lumentum Holdings Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/LITE.png",
+ "price": "881.255",
+ "priceChange24hPercent": "3.99884",
+ "marketCap": "68561639000",
+ "volume24h": "3140271998.295",
+ "key": "stock:LITE",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Lumentum Holdings Inc."
+ }
+ },
+ {
+ "symbol": "LLY",
+ "name": "礼来",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/LLY.png",
+ "price": "1148.2",
+ "priceChange24hPercent": "-0.9831",
+ "marketCap": "1081307016200",
+ "volume24h": "2468999720.4",
+ "key": "stock:LLY",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "礼来"
+ }
+ },
+ {
+ "symbol": "LMT",
+ "name": "洛克希德马丁",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/LMT.png",
+ "price": "525.28",
+ "priceChange24hPercent": "-1.43916",
+ "marketCap": "121229896480",
+ "volume24h": "495034902.88",
+ "key": "stock:LMT",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "洛克希德马丁"
+ }
+ },
+ {
+ "symbol": "LNG",
+ "name": "Cheniere Energy, Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/LNG.png",
+ "price": "292",
+ "priceChange24hPercent": "0.39539",
+ "marketCap": "61189184000",
+ "volume24h": "833596344",
+ "key": "stock:LNG",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Cheniere Energy, Inc."
+ }
+ },
+ {
+ "symbol": "LNT",
+ "name": "Alliant Energy Corporation",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/LNT.png",
+ "price": "67.97",
+ "priceChange24hPercent": "-0.04411765",
+ "marketCap": "17555087690",
+ "volume24h": "125749053.99",
+ "key": "stock:LNT",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Alliant Energy Corporation"
+ }
+ },
+ {
+ "symbol": "LOW",
+ "name": "劳氏",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/LOW.png",
+ "price": "204.45",
+ "priceChange24hPercent": "1.263",
+ "marketCap": "114636546150",
+ "volume24h": "497424396.59999996",
+ "key": "stock:LOW",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "劳氏"
+ }
+ },
+ {
+ "symbol": "LPLA",
+ "name": "LPL Financial Holdings Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/LPLA.png",
+ "price": "359.33",
+ "priceChange24hPercent": "-0.31072",
+ "marketCap": "28740241443",
+ "volume24h": "158487167.79",
+ "key": "stock:LPLA",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "LPL Financial Holdings Inc."
+ }
+ },
+ {
+ "symbol": "LPTH",
+ "name": "LightPath Technologies, Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/LPTH.png",
+ "price": "9.67",
+ "priceChange24hPercent": "0.31121",
+ "marketCap": "607173566",
+ "volume24h": "24039523.3",
+ "key": "stock:LPTH",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "LightPath Technologies, Inc."
+ }
+ },
+ {
+ "symbol": "LRC",
+ "name": "LRC",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/LRC.png",
+ "key": "stock:LRC",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "LRC"
+ }
+ },
+ {
+ "symbol": "LRCX",
+ "name": "泛林集团",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/LRCX.png",
+ "price": "307.65",
+ "priceChange24hPercent": "5.12198",
+ "marketCap": "384737860500",
+ "volume24h": "2571760488.1499996",
+ "key": "stock:LRCX",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "泛林集团"
+ }
+ },
+ {
+ "symbol": "LSCC",
+ "name": "Lattice Semiconductor Corporation",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/LSCC.png",
+ "price": "115.9",
+ "priceChange24hPercent": "1.99771",
+ "marketCap": "15879227200",
+ "volume24h": "109910288",
+ "key": "stock:LSCC",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Lattice Semiconductor Corporation"
+ }
+ },
+ {
+ "symbol": "LUNR",
+ "name": "直觉机器",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/LUNR.png",
+ "price": "14.81",
+ "priceChange24hPercent": "0.7483",
+ "marketCap": "2360307717",
+ "volume24h": "66831606",
+ "key": "stock:LUNR",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "直觉机器"
+ }
+ },
+ {
+ "symbol": "LUV",
+ "name": "Southwest Airlines Co.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/LUV.png",
+ "price": "39.62",
+ "priceChange24hPercent": "2.29796",
+ "marketCap": "19382420960",
+ "volume24h": "212533328.27999997",
+ "key": "stock:LUV",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Southwest Airlines Co."
+ }
+ },
+ {
+ "symbol": "LVS",
+ "name": "Las Vegas Sands Corp.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/LVS.png",
+ "price": "44.37",
+ "priceChange24hPercent": "-0.31454",
+ "marketCap": "28738501534",
+ "volume24h": "189947171.34",
+ "key": "stock:LVS",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Las Vegas Sands Corp."
+ }
+ },
+ {
+ "symbol": "LWLG",
+ "name": "Lightwave Logic, Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/LWLG.png",
+ "price": "5.35",
+ "priceChange24hPercent": "4.49219",
+ "marketCap": "824328000",
+ "volume24h": "14295542.399999999",
+ "key": "stock:LWLG",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Lightwave Logic, Inc."
+ }
+ },
+ {
+ "symbol": "LYTE",
+ "name": "Roundhill Photonics & Optics ETF",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/LYTE.png",
+ "price": "23.67",
+ "priceChange24hPercent": "2.91304",
+ "marketCap": "172554300",
+ "volume24h": "41262609.150000006",
+ "key": "stock:LYTE",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Roundhill Photonics & Optics ETF"
+ }
+ },
+ {
+ "symbol": "LYV",
+ "name": "Live Nation Entertainment, Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/LYV.png",
+ "price": "173.5",
+ "priceChange24hPercent": "-2.24801",
+ "marketCap": "40375705500",
+ "volume24h": "332717827",
+ "key": "stock:LYV",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Live Nation Entertainment, Inc."
+ }
+ },
+ {
+ "symbol": "MA",
+ "name": "万事达",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/MA.png",
+ "price": "579.21",
+ "priceChange24hPercent": "-1.10976",
+ "marketCap": "507988021560",
+ "volume24h": "1015977201.5400001",
+ "key": "stock:MA",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "万事达"
+ }
+ },
+ {
+ "symbol": "MAA",
+ "name": "Mid-America Apartment Communities, Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/MAA.png",
+ "price": "128.32",
+ "priceChange24hPercent": "-0.18668",
+ "marketCap": "14934497793",
+ "volume24h": "64899893.12",
+ "key": "stock:MAA",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Mid-America Apartment Communities, Inc."
+ }
+ },
+ {
+ "symbol": "MAGS",
+ "name": "Roundhill Magnificent Seven ETF",
+ "logoUrl": "https://uni.onekey-asset.com/static/hyperliquid/MAGS.png",
+ "price": "69.44",
+ "priceChange24hPercent": "-1.40565",
+ "marketCap": "3792195409",
+ "volume24h": "264020671.04",
+ "key": "stock:MAGS",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Roundhill Magnificent Seven ETF"
+ }
+ },
+ {
+ "symbol": "MAR",
+ "name": "Marriott International, Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/MAR.png",
+ "price": "336.51",
+ "priceChange24hPercent": "0.13093",
+ "marketCap": "87750463575",
+ "volume24h": "395593416.27",
+ "key": "stock:MAR",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Marriott International, Inc."
+ }
+ },
+ {
+ "symbol": "MARA",
+ "name": "马拉松数字",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/MARA.png",
+ "price": "11.31",
+ "priceChange24hPercent": "-2.5",
+ "marketCap": "4312169389",
+ "volume24h": "425197504.68",
+ "key": "stock:MARA",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "马拉松数字"
+ }
+ },
+ {
+ "symbol": "MAS",
+ "name": "Masco Corporation",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/MAS.png",
+ "price": "72.7",
+ "priceChange24hPercent": "1.79222",
+ "marketCap": "14335526161",
+ "volume24h": "144832285.70000002",
+ "key": "stock:MAS",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Masco Corporation"
+ }
+ },
+ {
+ "symbol": "MBLY",
+ "name": "Mobileye",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/MBLY.png",
+ "price": "8.56",
+ "priceChange24hPercent": "2.88462",
+ "marketCap": "6980970869",
+ "volume24h": "23330725.12",
+ "key": "stock:MBLY",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Mobileye"
+ }
+ },
+ {
+ "symbol": "MCD",
+ "name": "麦当劳",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/MCD.png",
+ "price": "255.69",
+ "priceChange24hPercent": "-1.51754",
+ "marketCap": "181669279140",
+ "volume24h": "1069340837.13",
+ "key": "stock:MCD",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "麦当劳"
+ }
+ },
+ {
+ "symbol": "MCHP",
+ "name": "Microchip Technology Incorporated",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/MCHP.png",
+ "price": "74.17",
+ "priceChange24hPercent": "1.44987",
+ "marketCap": "40274903360",
+ "volume24h": "569153211.27",
+ "key": "stock:MCHP",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Microchip Technology Incorporated"
+ }
+ },
+ {
+ "symbol": "MCK",
+ "name": "McKesson Corporation",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/MCK.png",
+ "price": "907.99",
+ "priceChange24hPercent": "-1.45325",
+ "marketCap": "106305653220",
+ "volume24h": "620297908.45",
+ "key": "stock:MCK",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "McKesson Corporation"
+ }
+ },
+ {
+ "symbol": "MCO",
+ "name": "Moody's Corporation",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/MCO.png",
+ "price": "493.55",
+ "priceChange24hPercent": "-2.13167",
+ "marketCap": "85482860000",
+ "volume24h": "209662507.75",
+ "key": "stock:MCO",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Moody's Corporation"
+ }
+ },
+ {
+ "symbol": "MDB",
+ "name": "MongoDB, Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/MDB.png",
+ "price": "368.74",
+ "priceChange24hPercent": "-4.08636",
+ "marketCap": "29658468762",
+ "volume24h": "763192240.2",
+ "key": "stock:MDB",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "MongoDB, Inc."
+ }
+ },
+ {
+ "symbol": "MDLN",
+ "name": "Medline Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/MDLN.png",
+ "price": "36.59",
+ "priceChange24hPercent": "0",
+ "marketCap": "30940730382",
+ "volume24h": "191880484.71",
+ "key": "stock:MDLN",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Medline Inc."
+ }
+ },
+ {
+ "symbol": "MDLZ",
+ "name": "Mondelez International, Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/MDLZ.png",
+ "price": "61.28",
+ "priceChange24hPercent": "-0.27665",
+ "marketCap": "78212276800",
+ "volume24h": "484512526.08",
+ "key": "stock:MDLZ",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Mondelez International, Inc."
+ }
+ },
+ {
+ "symbol": "MDT",
+ "name": "Medtronic plc",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/MDT.png",
+ "price": "94.17",
+ "priceChange24hPercent": "1.1493",
+ "marketCap": "120542308500",
+ "volume24h": "812436513.63",
+ "key": "stock:MDT",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Medtronic plc"
+ }
+ },
+ {
+ "symbol": "MEI",
+ "name": "Methode Electronics, Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/MEI.png",
+ "price": "15.69",
+ "priceChange24hPercent": "2.41514",
+ "marketCap": "556552542",
+ "volume24h": "19467477.33",
+ "key": "stock:MEI",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Methode Electronics, Inc."
+ }
+ },
+ {
+ "symbol": "MEIT",
+ "name": "MEIT",
+ "logoUrl": "https://uni-test.onekey-asset.com/utility/okx/token/b9367aac246230d221f16297501c24eb739533557d0e7093f30d385bfb006cbb",
+ "key": "stock:MEIT",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "MEIT"
+ }
+ },
+ {
+ "symbol": "MELI",
+ "name": "美客多",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/MELI.png",
+ "price": "1978.36",
+ "priceChange24hPercent": "-0.6376",
+ "marketCap": "100297276982",
+ "volume24h": "557770904.9599999",
+ "key": "stock:MELI",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "美客多"
+ }
+ },
+ {
+ "symbol": "MET",
+ "name": "MetLife, Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/MET.png",
+ "price": "97.62",
+ "priceChange24hPercent": "-1.62249",
+ "marketCap": "62812298366",
+ "volume24h": "256088596.02",
+ "key": "stock:MET",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "MetLife, Inc."
+ }
+ },
+ {
+ "symbol": "META",
+ "name": "Meta",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/META.png",
+ "price": "616.77",
+ "priceChange24hPercent": "0.99725",
+ "marketCap": "1571213291779",
+ "volume24h": "9847481192.01",
+ "key": "stock:META",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Meta"
+ }
+ },
+ {
+ "symbol": "MIXU",
+ "name": "MIXU",
+ "logoUrl": "https://uni-test.onekey-asset.com/utility/okx/token/b732ad46fd870c02be00b62e2f4d934c85292f28a4ac344467ab0f5ce7d35864",
+ "key": "stock:MIXU",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "MIXU"
+ }
+ },
+ {
+ "symbol": "MKC",
+ "name": "McCormick & Company, Incorporated",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/MKC.png",
+ "price": "52.08",
+ "priceChange24hPercent": "-0.95093",
+ "marketCap": "14001788984",
+ "volume24h": "146039611.2",
+ "key": "stock:MKC",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "McCormick & Company, Incorporated"
+ }
+ },
+ {
+ "symbol": "MKL",
+ "name": "Markel Corporation",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/MKL.png",
+ "price": "1826.72",
+ "priceChange24hPercent": "-0.88227",
+ "marketCap": "22633060800",
+ "volume24h": "106883213.92",
+ "key": "stock:MKL",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Markel Corporation"
+ }
+ },
+ {
+ "symbol": "MKSI",
+ "name": "MKS Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/MKSI.png",
+ "price": "260.31",
+ "priceChange24hPercent": "4.26998",
+ "marketCap": "17582404671",
+ "volume24h": "439774221.75",
+ "key": "stock:MKSI",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "MKS Inc."
+ }
+ },
+ {
+ "symbol": "MLI",
+ "name": "Mueller Industries, Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/MLI.png",
+ "price": "63.74",
+ "priceChange24hPercent": "1.23888",
+ "marketCap": "14098076940",
+ "volume24h": "52817959.78",
+ "key": "stock:MLI",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Mueller Industries, Inc."
+ }
+ },
+ {
+ "symbol": "MLM",
+ "name": "Martin Marietta Materials, Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/MLM.png",
+ "price": "514.77",
+ "priceChange24hPercent": "1.14552",
+ "marketCap": "30920071866",
+ "volume24h": "352695695.03999996",
+ "key": "stock:MLM",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Martin Marietta Materials, Inc."
+ }
+ },
+ {
+ "symbol": "MMG",
+ "name": "MMG",
+ "logoUrl": "https://uni-test.onekey-asset.com/utility/okx/token/75884b98846564b4340d610a44e15e9626a7ac7defa57c83afa28834b779cc0e",
+ "key": "stock:MMG",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "MMG"
+ }
+ },
+ {
+ "symbol": "MMM",
+ "name": "3M Company",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/MMM.png",
+ "price": "168.56",
+ "priceChange24hPercent": "0.14854",
+ "marketCap": "86930170610",
+ "volume24h": "366435449.52",
+ "key": "stock:MMM",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "3M Company"
+ }
+ },
+ {
+ "symbol": "MO",
+ "name": "Altria Group, Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/MO.png",
+ "price": "68.88",
+ "priceChange24hPercent": "-0.87782",
+ "marketCap": "115011964034",
+ "volume24h": "481123769.28",
+ "key": "stock:MO",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Altria Group, Inc."
+ }
+ },
+ {
+ "symbol": "MOO",
+ "name": "范达农业ETF",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/MOO.png",
+ "price": "87.83",
+ "priceChange24hPercent": "-0.39692",
+ "marketCap": "620075496",
+ "volume24h": "36205458.26",
+ "key": "stock:MOO",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "范达农业ETF"
+ }
+ },
+ {
+ "symbol": "MP",
+ "name": "MP材料",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/MP.png",
+ "price": "54.53",
+ "priceChange24hPercent": "1.39457",
+ "marketCap": "9707539660",
+ "volume24h": "382925201.05",
+ "key": "stock:MP",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "MP材料"
+ }
+ },
+ {
+ "symbol": "MPC",
+ "name": "Marathon Petroleum Corporation",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/MPC.png",
+ "price": "388.9",
+ "priceChange24hPercent": "0.30693",
+ "marketCap": "113534299300",
+ "volume24h": "721157103.9",
+ "key": "stock:MPC",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Marathon Petroleum Corporation"
+ }
+ },
+ {
+ "symbol": "MPWR",
+ "name": "Monolithic Power Systems, Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/MPWR.png",
+ "price": "1223.86",
+ "priceChange24hPercent": "0.84126",
+ "marketCap": "60128241800",
+ "volume24h": "766011526.28",
+ "key": "stock:MPWR",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Monolithic Power Systems, Inc."
+ }
+ },
+ {
+ "symbol": "MRK",
+ "name": "默克",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/MRK.png",
+ "price": "150.34",
+ "priceChange24hPercent": "-1.31285",
+ "marketCap": "371312738800",
+ "volume24h": "626458360.96",
+ "key": "stock:MRK",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "默克"
+ }
+ },
+ {
+ "symbol": "MRNA",
+ "name": "莫德纳",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/MRNA.png",
+ "price": "145.55",
+ "priceChange24hPercent": "-2.23013",
+ "marketCap": "57752202300",
+ "volume24h": "2178380915.8500004",
+ "key": "stock:MRNA",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "莫德纳"
+ }
+ },
+ {
+ "symbol": "MRSH",
+ "name": "Marsh & McLennan Companies, Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/MRSH.png",
+ "price": "185.74",
+ "priceChange24hPercent": "-1.44328",
+ "marketCap": "88637220918",
+ "volume24h": "252608814.62",
+ "key": "stock:MRSH",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Marsh & McLennan Companies, Inc."
+ }
+ },
+ {
+ "symbol": "MRVL",
+ "name": "迈威尔科技",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/MRVL.png",
+ "price": "223.55",
+ "priceChange24hPercent": "7.04879",
+ "marketCap": "195777489300",
+ "volume24h": "4743302231.1",
+ "key": "stock:MRVL",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "迈威尔科技"
+ }
+ },
+ {
+ "symbol": "MS",
+ "name": "Morgan Stanley",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/MS.png",
+ "price": "217.7",
+ "priceChange24hPercent": "0.25328",
+ "marketCap": "343373856000",
+ "volume24h": "636710455.5",
+ "key": "stock:MS",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Morgan Stanley"
+ }
+ },
+ {
+ "symbol": "MSCI",
+ "name": "MSCI Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/MSCI.png",
+ "price": "573.01",
+ "priceChange24hPercent": "-0.28539",
+ "marketCap": "41657827000",
+ "volume24h": "273242683.55",
+ "key": "stock:MSCI",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "MSCI Inc."
+ }
+ },
+ {
+ "symbol": "MSFT",
+ "name": "微软",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/MSFT.png",
+ "price": "499.7",
+ "priceChange24hPercent": "-2.04266",
+ "marketCap": "3710547335000",
+ "volume24h": "9045448472.6",
+ "key": "stock:MSFT",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "微软"
+ }
+ },
+ {
+ "symbol": "MSI",
+ "name": "Motorola Solutions, Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/MSI.png",
+ "price": "468.05",
+ "priceChange24hPercent": "-0.88516",
+ "marketCap": "77694427800",
+ "volume24h": "348766053.35",
+ "key": "stock:MSI",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Motorola Solutions, Inc."
+ }
+ },
+ {
+ "symbol": "MSTR",
+ "name": "微策略",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/MSTR.png",
+ "price": "142.8",
+ "priceChange24hPercent": "-1.39483",
+ "marketCap": "47239382400",
+ "volume24h": "3878826420.0000005",
+ "key": "stock:MSTR",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "微策略"
+ }
+ },
+ {
+ "symbol": "MTB",
+ "name": "M&T Bank Corporation",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/MTB.png",
+ "price": "239.84",
+ "priceChange24hPercent": "-0.09164376",
+ "marketCap": "34760730720",
+ "volume24h": "144715378.72",
+ "key": "stock:MTB",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "M&T Bank Corporation"
+ }
+ },
+ {
+ "symbol": "MTD",
+ "name": "Mettler-Toledo International Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/MTD.png",
+ "price": "1345.26",
+ "priceChange24hPercent": "-0.80886",
+ "marketCap": "27184475976",
+ "volume24h": "138587339.94",
+ "key": "stock:MTD",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Mettler-Toledo International Inc."
+ }
+ },
+ {
+ "symbol": "MTRCP",
+ "name": "MTRCP",
+ "logoUrl": "https://uni-test.onekey-asset.com/utility/okx/token/ccdb747668454d5bbd6046c752afc8b4d2f72f2b4087a6f4bf785e45d8190638",
+ "key": "stock:MTRCP",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "MTRCP"
+ }
+ },
+ {
+ "symbol": "MTSI",
+ "name": "MACOM Technology Solutions Holdings, Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/MTSI.png",
+ "price": "268.95",
+ "priceChange24hPercent": "3.4622",
+ "marketCap": "20519748417",
+ "volume24h": "272130602.7",
+ "key": "stock:MTSI",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "MACOM Technology Solutions Holdings, Inc."
+ }
+ },
+ {
+ "symbol": "MTZ",
+ "name": "MasTec, Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/MTZ.png",
+ "price": "237.19",
+ "priceChange24hPercent": "2.11383",
+ "marketCap": "19047529667",
+ "volume24h": "390268156.58",
+ "key": "stock:MTZ",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "MasTec, Inc."
+ }
+ },
+ {
+ "symbol": "MU",
+ "name": "美光科技",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/MU.png",
+ "price": "1016.59",
+ "priceChange24hPercent": "6.09815",
+ "marketCap": "1148126580100",
+ "volume24h": "35834308520.21",
+ "key": "stock:MU",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "美光科技"
+ }
+ },
+ {
+ "symbol": "MUU",
+ "name": "Direxion Daily MU Bull 2X ETF",
+ "logoUrl": "https://uni-test.onekey-asset.com/utility/okx/token/667495fccd45b33585b0fc6e2bef89faeecf6a7f6e2955e75490b546623ad30c",
+ "price": "34.25",
+ "priceChange24hPercent": "11.59987",
+ "marketCap": "1819293555",
+ "volume24h": "1144078437.5",
+ "key": "stock:MUU",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Direxion Daily MU Bull 2X ETF"
+ }
+ },
+ {
+ "symbol": "MVLL",
+ "name": "GraniteShares 2x Long MRVL Daily ETF",
+ "logoUrl": "https://uni-test.onekey-asset.com/utility/okx/token/667495fccd45b33585b0fc6e2bef89faeecf6a7f6e2955e75490b546623ad30c",
+ "price": "26.49",
+ "priceChange24hPercent": "14.03358",
+ "marketCap": "318168344",
+ "volume24h": "111884382.53999999",
+ "key": "stock:MVLL",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "GraniteShares 2x Long MRVL Daily ETF"
+ }
+ },
+ {
+ "symbol": "MXL",
+ "name": "MaxLinear, Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/MXL.png",
+ "price": "62.74",
+ "priceChange24hPercent": "5.53406",
+ "marketCap": "5690090803",
+ "volume24h": "108338679.12",
+ "key": "stock:MXL",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "MaxLinear, Inc."
+ }
+ },
+ {
+ "symbol": "MYRG",
+ "name": "MYR Group Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/MYRG.png",
+ "price": "286.59",
+ "priceChange24hPercent": "0.87645",
+ "marketCap": "4462005687",
+ "volume24h": "50539573.31999999",
+ "key": "stock:MYRG",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "MYR Group Inc."
+ }
+ },
+ {
+ "symbol": "NAT",
+ "name": "Nordic American Tankers Limited",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/NAT.png",
+ "price": "7.25",
+ "priceChange24hPercent": "2.11268",
+ "marketCap": "1535194750",
+ "volume24h": "28800973",
+ "key": "stock:NAT",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Nordic American Tankers Limited"
+ }
+ },
+ {
+ "symbol": "NBI",
+ "name": "NBI",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/NBI.png",
+ "key": "stock:NBI",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "NBI"
+ }
+ },
+ {
+ "symbol": "NBIS",
+ "name": "Nebius",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/NBIS.png",
+ "price": "226.39",
+ "priceChange24hPercent": "7.48231",
+ "marketCap": "54333600000",
+ "volume24h": "3389209981.2999997",
+ "key": "stock:NBIS",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Nebius"
+ }
+ },
+ {
+ "symbol": "NBIX",
+ "name": "Neurocrine Biosciences, Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/NBIX.png",
+ "price": "155.64",
+ "priceChange24hPercent": "-1.7114",
+ "marketCap": "15649599354",
+ "volume24h": "145300679.16",
+ "key": "stock:NBIX",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Neurocrine Biosciences, Inc."
+ }
+ },
+ {
+ "symbol": "NCLD",
+ "name": "Roundhill Neocloud ETF",
+ "logoUrl": "",
+ "price": "24.23",
+ "priceChange24hPercent": "5.11931",
+ "marketCap": "59605800",
+ "volume24h": "26412032.650000002",
+ "key": "stock:NCLD",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Roundhill Neocloud ETF"
+ }
+ },
+ {
+ "symbol": "NDAQ",
+ "name": "Nasdaq, Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/NDAQ.png",
+ "price": "96.88",
+ "priceChange24hPercent": "-1.85392",
+ "marketCap": "54153727799",
+ "volume24h": "216770646.95999998",
+ "key": "stock:NDAQ",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Nasdaq, Inc."
+ }
+ },
+ {
+ "symbol": "NDSN",
+ "name": "Nordson Corporation",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/NDSN.png",
+ "price": "318.36",
+ "priceChange24hPercent": "0.27402",
+ "marketCap": "17738382480",
+ "volume24h": "136557656.76000002",
+ "key": "stock:NDSN",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Nordson Corporation"
+ }
+ },
+ {
+ "symbol": "NEE",
+ "name": "新纪元能源",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/NEE.png",
+ "price": "83.43",
+ "priceChange24hPercent": "-0.74946",
+ "marketCap": "174033160725",
+ "volume24h": "787539570.7500001",
+ "key": "stock:NEE",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "新纪元能源"
+ }
+ },
+ {
+ "symbol": "NEM",
+ "name": "纽蒙特",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/NEM.png",
+ "price": "128.09",
+ "priceChange24hPercent": "-1.79407",
+ "marketCap": "134967442992",
+ "volume24h": "721700689.25",
+ "key": "stock:NEM",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "纽蒙特"
+ }
+ },
+ {
+ "symbol": "NET",
+ "name": "Cloudflare",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/NET.png",
+ "price": "278.92",
+ "priceChange24hPercent": "-1.96478",
+ "marketCap": "98999733987",
+ "volume24h": "500210386.36",
+ "key": "stock:NET",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Cloudflare"
+ }
+ },
+ {
+ "symbol": "NFL",
+ "name": "NFL",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/NFL.png",
+ "key": "stock:NFL",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "NFL"
+ }
+ },
+ {
+ "symbol": "NFLX",
+ "name": "奈飞",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/NFLX.png",
+ "price": "78.25",
+ "priceChange24hPercent": "-5.34656",
+ "marketCap": "325828304922",
+ "volume24h": "3144868282.5",
+ "key": "stock:NFLX",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "奈飞"
+ }
+ },
+ {
+ "symbol": "NI",
+ "name": "NiSource Inc",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/NI.png",
+ "price": "41.39",
+ "priceChange24hPercent": "-0.6481",
+ "marketCap": "19843990351",
+ "volume24h": "188465764.07",
+ "key": "stock:NI",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "NiSource Inc"
+ }
+ },
+ {
+ "symbol": "NIKL",
+ "name": "Sprott Nickel Miners ETF",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/NIKL.png",
+ "price": "14.69",
+ "priceChange24hPercent": "0.12337",
+ "marketCap": "11570064",
+ "volume24h": "229810.36",
+ "key": "stock:NIKL",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Sprott Nickel Miners ETF"
+ }
+ },
+ {
+ "symbol": "NIO",
+ "name": "蔚来",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/NIO.png",
+ "price": "3.8",
+ "priceChange24hPercent": "-1.42672",
+ "marketCap": "9428221682",
+ "volume24h": "198012725.6",
+ "key": "stock:NIO",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "蔚来"
+ }
+ },
+ {
+ "symbol": "NKE",
+ "name": "耐克",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/NKE.png",
+ "price": "38.4",
+ "priceChange24hPercent": "-0.95435",
+ "marketCap": "56824751040",
+ "volume24h": "774864883.1999999",
+ "key": "stock:NKE",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "耐克"
+ }
+ },
+ {
+ "symbol": "NLR",
+ "name": "VanEck Uranium and Nuclear ETF",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/NLR.png",
+ "price": "119.95",
+ "priceChange24hPercent": "0.63764",
+ "marketCap": "2872010110",
+ "volume24h": "31718138.6",
+ "key": "stock:NLR",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "VanEck Uranium and Nuclear ETF"
+ }
+ },
+ {
+ "symbol": "NLY",
+ "name": "Annaly Capital Management, Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/NLY.png",
+ "price": "22.81",
+ "priceChange24hPercent": "-0.08760403",
+ "marketCap": "17192216340",
+ "volume24h": "135402920.01",
+ "key": "stock:NLY",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Annaly Capital Management, Inc."
+ }
+ },
+ {
+ "symbol": "NNE",
+ "name": "Nano Nuclear Energy Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/NNE.png",
+ "price": "17.72",
+ "priceChange24hPercent": "0.3966",
+ "marketCap": "951531076",
+ "volume24h": "22838386.56",
+ "key": "stock:NNE",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Nano Nuclear Energy Inc."
+ }
+ },
+ {
+ "symbol": "NOC",
+ "name": "诺斯罗普·格鲁曼",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/NOC.png",
+ "price": "514.98",
+ "priceChange24hPercent": "-2.51022",
+ "marketCap": "73159603740",
+ "volume24h": "382014223.92",
+ "key": "stock:NOC",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "诺斯罗普·格鲁曼"
+ }
+ },
+ {
+ "symbol": "NOK",
+ "name": "Nokia Oyj",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/NOK.png",
+ "price": "10.04",
+ "priceChange24hPercent": "2.81618",
+ "marketCap": "54224955680",
+ "volume24h": "456510567.2",
+ "key": "stock:NOK",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Nokia Oyj"
+ }
+ },
+ {
+ "symbol": "NONG",
+ "name": "NONG",
+ "logoUrl": "https://uni-test.onekey-asset.com/utility/okx/token/637ddd149abce44e6e37fba75ee5ca22e529aa400e31d1bb30a84e8fe62ce2ce",
+ "key": "stock:NONG",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "NONG"
+ }
+ },
+ {
+ "symbol": "NOW",
+ "name": "ServiceNow",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/NOW.png",
+ "price": "141.26",
+ "priceChange24hPercent": "-2.97411",
+ "marketCap": "146043346120",
+ "volume24h": "1736762600.4399998",
+ "key": "stock:NOW",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "ServiceNow"
+ }
+ },
+ {
+ "symbol": "NRG",
+ "name": "NRG Energy, Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/NRG.png",
+ "price": "119.02",
+ "priceChange24hPercent": "6.41989",
+ "marketCap": "25111553720",
+ "volume24h": "397103921.94",
+ "key": "stock:NRG",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "NRG Energy, Inc."
+ }
+ },
+ {
+ "symbol": "NSC",
+ "name": "Norfolk Southern Corporation",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/NSC.png",
+ "price": "329.46",
+ "priceChange24hPercent": "0.49721",
+ "marketCap": "73999351680",
+ "volume24h": "206750975.7",
+ "key": "stock:NSC",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Norfolk Southern Corporation"
+ }
+ },
+ {
+ "symbol": "NTAP",
+ "name": "NetApp, Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/NTAP.png",
+ "price": "185.59",
+ "priceChange24hPercent": "0.11328",
+ "marketCap": "36419068060",
+ "volume24h": "417168274.05",
+ "key": "stock:NTAP",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "NetApp, Inc."
+ }
+ },
+ {
+ "symbol": "NTES",
+ "name": "网易",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/NTES.png",
+ "price": "119.29",
+ "priceChange24hPercent": "1.91371",
+ "marketCap": "76157280933",
+ "volume24h": "87598822.15",
+ "key": "stock:NTES",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "网易"
+ }
+ },
+ {
+ "symbol": "NTN",
+ "name": "NTN",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/NTN.png",
+ "key": "stock:NTN",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "NTN"
+ }
+ },
+ {
+ "symbol": "NTNX",
+ "name": "Nutanix, Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/NTNX.png",
+ "price": "68.06",
+ "priceChange24hPercent": "-0.0293772",
+ "marketCap": "18397979200",
+ "volume24h": "133640165.84",
+ "key": "stock:NTNX",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Nutanix, Inc."
+ }
+ },
+ {
+ "symbol": "NTRA",
+ "name": "Natera, Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/NTRA.png",
+ "price": "328.18",
+ "priceChange24hPercent": "0.15564",
+ "marketCap": "47000298700",
+ "volume24h": "317750767.78000003",
+ "key": "stock:NTRA",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Natera, Inc."
+ }
+ },
+ {
+ "symbol": "NTRS",
+ "name": "Northern Trust Corporation",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/NTRS.png",
+ "price": "186.63",
+ "priceChange24hPercent": "-0.43745",
+ "marketCap": "34145078280",
+ "volume24h": "146576029.29",
+ "key": "stock:NTRS",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Northern Trust Corporation"
+ }
+ },
+ {
+ "symbol": "NUE",
+ "name": "Nucor Corporation",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/NUE.png",
+ "price": "261.07",
+ "priceChange24hPercent": "-0.53339",
+ "marketCap": "59456342870",
+ "volume24h": "202583532.18",
+ "key": "stock:NUE",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Nucor Corporation"
+ }
+ },
+ {
+ "symbol": "NVDA",
+ "name": "英伟达",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/NVDA.png",
+ "price": "230.36",
+ "priceChange24hPercent": "0.83607",
+ "marketCap": "5579549560000",
+ "volume24h": "31179783471.2",
+ "key": "stock:NVDA",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "英伟达"
+ }
+ },
+ {
+ "symbol": "NVMI",
+ "name": "Nova Ltd.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/NVMI.png",
+ "price": "372.1",
+ "priceChange24hPercent": "5.50043",
+ "marketCap": "11826454300",
+ "volume24h": "260633351.9",
+ "key": "stock:NVMI",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Nova Ltd."
+ }
+ },
+ {
+ "symbol": "NVO",
+ "name": "诺和诺德",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/NVO.png",
+ "price": "46.6",
+ "priceChange24hPercent": "-1.91539",
+ "marketCap": "206932361506",
+ "volume24h": "285153974.40000004",
+ "key": "stock:NVO",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "诺和诺德"
+ }
+ },
+ {
+ "symbol": "NVT",
+ "name": "nVent Electric plc",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/NVT.png",
+ "price": "156.03",
+ "priceChange24hPercent": "2.59057",
+ "marketCap": "25233171600",
+ "volume24h": "251282414.25",
+ "key": "stock:NVT",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "nVent Electric plc"
+ }
+ },
+ {
+ "symbol": "NVTS",
+ "name": "Navitas Semiconductor Corp",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/NVTS.png",
+ "price": "11.8",
+ "priceChange24hPercent": "6.30631",
+ "marketCap": "3080897400",
+ "volume24h": "143472282.4",
+ "key": "stock:NVTS",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Navitas Semiconductor Corp"
+ }
+ },
+ {
+ "symbol": "NYT",
+ "name": "The New York Times Company",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/NYT.png",
+ "price": "67.28",
+ "priceChange24hPercent": "0.32806",
+ "marketCap": "10926338540",
+ "volume24h": "135548141.36",
+ "key": "stock:NYT",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "The New York Times Company"
+ }
+ },
+ {
+ "symbol": "O",
+ "name": "Realty Income Corporation",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/O.png",
+ "price": "61.25",
+ "priceChange24hPercent": "-0.79365",
+ "marketCap": "57115196250",
+ "volume24h": "311336751.25",
+ "key": "stock:O",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Realty Income Corporation"
+ }
+ },
+ {
+ "symbol": "ODFL",
+ "name": "Old Dominion Freight Line, Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/ODFL.png",
+ "price": "185.87",
+ "priceChange24hPercent": "0.06460296",
+ "marketCap": "38655064761",
+ "volume24h": "444207367.34000003",
+ "key": "stock:ODFL",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Old Dominion Freight Line, Inc."
+ }
+ },
+ {
+ "symbol": "OHI",
+ "name": "Omega Healthcare Investors, Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/OHI.png",
+ "price": "46.38",
+ "priceChange24hPercent": "-1.40306",
+ "marketCap": "13872768180",
+ "volume24h": "62391999.300000004",
+ "key": "stock:OHI",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Omega Healthcare Investors, Inc."
+ }
+ },
+ {
+ "symbol": "OIH",
+ "name": "范达石油服务ETF",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/OIH.png",
+ "price": "427.53",
+ "priceChange24hPercent": "-0.53047",
+ "marketCap": "1549499117",
+ "volume24h": "90304596.72",
+ "key": "stock:OIH",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "范达石油服务ETF"
+ }
+ },
+ {
+ "symbol": "OII",
+ "name": "Oceaneering International, Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/OII.png",
+ "price": "51.4",
+ "priceChange24hPercent": "-0.73387",
+ "marketCap": "5115826580",
+ "volume24h": "20249081.4",
+ "key": "stock:OII",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Oceaneering International, Inc."
+ }
+ },
+ {
+ "symbol": "OKE",
+ "name": "ONEOK, Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/OKE.png",
+ "price": "95.43",
+ "priceChange24hPercent": "-0.3342",
+ "marketCap": "60134928210",
+ "volume24h": "325679114.22",
+ "key": "stock:OKE",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "ONEOK, Inc."
+ }
+ },
+ {
+ "symbol": "OKLO",
+ "name": "Oklo",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/OKLO.png",
+ "price": "41.27",
+ "priceChange24hPercent": "3.58936",
+ "marketCap": "7180608033",
+ "volume24h": "333578889.34000003",
+ "key": "stock:OKLO",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Oklo"
+ }
+ },
+ {
+ "symbol": "OKTA",
+ "name": "Okta, Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/OKTA.png",
+ "price": "170.6",
+ "priceChange24hPercent": "0.10562",
+ "marketCap": "28340072000",
+ "volume24h": "399485319.4",
+ "key": "stock:OKTA",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Okta, Inc."
+ }
+ },
+ {
+ "symbol": "OMC",
+ "name": "Omnicom Group Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/OMC.png",
+ "price": "82.62",
+ "priceChange24hPercent": "-2.49026",
+ "marketCap": "22666466520",
+ "volume24h": "223369944.84",
+ "key": "stock:OMC",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Omnicom Group Inc."
+ }
+ },
+ {
+ "symbol": "ON",
+ "name": "安森美",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/ON.png",
+ "price": "74.38",
+ "priceChange24hPercent": "0.99117",
+ "marketCap": "28957026560",
+ "volume24h": "767660508.9599999",
+ "key": "stock:ON",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "安森美"
+ }
+ },
+ {
+ "symbol": "ONDS",
+ "name": "Ondas",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/ONDS.png",
+ "price": "7.62",
+ "priceChange24hPercent": "-0.13106",
+ "marketCap": "4342170193",
+ "volume24h": "329491223.16",
+ "key": "stock:ONDS",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Ondas"
+ }
+ },
+ {
+ "symbol": "ONTO",
+ "name": "Onto Innovation Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/ONTO.png",
+ "price": "268.01",
+ "priceChange24hPercent": "6.15939",
+ "marketCap": "13331773392",
+ "volume24h": "193394407.94",
+ "key": "stock:ONTO",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Onto Innovation Inc."
+ }
+ },
+ {
+ "symbol": "OPEN",
+ "name": "Opendoor Technologies Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/OPEN.png",
+ "price": "3.15",
+ "priceChange24hPercent": "0.63898",
+ "marketCap": "3038921550",
+ "volume24h": "58454118.449999996",
+ "key": "stock:OPEN",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Opendoor Technologies Inc."
+ }
+ },
+ {
+ "symbol": "OPRA",
+ "name": "Opera Limited",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/OPRA.png",
+ "price": "18.78",
+ "priceChange24hPercent": "1.84382",
+ "marketCap": "1681804739",
+ "volume24h": "6138336.9",
+ "key": "stock:OPRA",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Opera Limited"
+ }
+ },
+ {
+ "symbol": "ORBX",
+ "name": "Global X Space Tech ETF",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/ORBX.png",
+ "price": "42.24",
+ "priceChange24hPercent": "0.46785",
+ "marketCap": "1689600",
+ "volume24h": "766698.24",
+ "key": "stock:ORBX",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Global X Space Tech ETF"
+ }
+ },
+ {
+ "symbol": "ORCL",
+ "name": "甲骨文",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/ORCL.png",
+ "price": "158.83",
+ "priceChange24hPercent": "3.10958",
+ "marketCap": "457505050100",
+ "volume24h": "4138044844.8500004",
+ "key": "stock:ORCL",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "甲骨文"
+ }
+ },
+ {
+ "symbol": "ORLY",
+ "name": "O'Reilly Automotive, Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/ORLY.png",
+ "price": "87.89",
+ "priceChange24hPercent": "0.58366",
+ "marketCap": "72835761350",
+ "volume24h": "333190286.88",
+ "key": "stock:ORLY",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "O'Reilly Automotive, Inc."
+ }
+ },
+ {
+ "symbol": "OSCR",
+ "name": "Oscar Health, Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/OSCR.png",
+ "price": "32.25",
+ "priceChange24hPercent": "0.03101737",
+ "marketCap": "8361557217",
+ "volume24h": "118993308.75",
+ "key": "stock:OSCR",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Oscar Health, Inc."
+ }
+ },
+ {
+ "symbol": "OTIS",
+ "name": "Otis Worldwide Corporation",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/OTIS.png",
+ "price": "71.21",
+ "priceChange24hPercent": "-0.37773",
+ "marketCap": "27107463630",
+ "volume24h": "211190630.23999998",
+ "key": "stock:OTIS",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Otis Worldwide Corporation"
+ }
+ },
+ {
+ "symbol": "OUST",
+ "name": "Ouster, Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/OUST.png",
+ "price": "36.43",
+ "priceChange24hPercent": "1.67457",
+ "marketCap": "2627052291",
+ "volume24h": "67815501.47",
+ "key": "stock:OUST",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Ouster, Inc."
+ }
+ },
+ {
+ "symbol": "OVV",
+ "name": "Ovintiv Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/OVV.png",
+ "price": "64.76",
+ "priceChange24hPercent": "-1.7448",
+ "marketCap": "17912616000",
+ "volume24h": "231422968.48000002",
+ "key": "stock:OVV",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Ovintiv Inc."
+ }
+ },
+ {
+ "symbol": "OXY",
+ "name": "西方石油",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/OXY.png",
+ "price": "60.04",
+ "priceChange24hPercent": "-0.93227",
+ "marketCap": "59717867448",
+ "volume24h": "400488654.56",
+ "key": "stock:OXY",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "西方石油"
+ }
+ },
+ {
+ "symbol": "P",
+ "name": "Everpure, Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/P.png",
+ "price": "99.51",
+ "priceChange24hPercent": "1.38563",
+ "marketCap": "33077621550",
+ "volume24h": "191439029.67000002",
+ "key": "stock:P",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Everpure, Inc."
+ }
+ },
+ {
+ "symbol": "PALL",
+ "name": "钯金ETF",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/PALL.png",
+ "price": "25.31",
+ "priceChange24hPercent": "-1.86119",
+ "marketCap": "662462421",
+ "volume24h": "18618111.93",
+ "key": "stock:PALL",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "钯金ETF"
+ }
+ },
+ {
+ "symbol": "PANW",
+ "name": "帕洛阿尔托网络",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/PANW.png",
+ "price": "333.26",
+ "priceChange24hPercent": "0.39766",
+ "marketCap": "271606900000",
+ "volume24h": "1879381111.84",
+ "key": "stock:PANW",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "帕洛阿尔托网络"
+ }
+ },
+ {
+ "symbol": "PAVE",
+ "name": "Global X - U.S. Infrastructure Development ETF",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/PAVE.png",
+ "price": "55.16",
+ "priceChange24hPercent": "0.85939",
+ "marketCap": "14269646593",
+ "volume24h": "65742611.48",
+ "key": "stock:PAVE",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Global X - U.S. Infrastructure Development ETF"
+ }
+ },
+ {
+ "symbol": "PAY",
+ "name": "Paymentus Holdings, Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/PAY.png",
+ "price": "34.52",
+ "priceChange24hPercent": "1.23167",
+ "marketCap": "4329676903",
+ "volume24h": "46107052.24",
+ "key": "stock:PAY",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Paymentus Holdings, Inc."
+ }
+ },
+ {
+ "symbol": "PAYX",
+ "name": "Paychex, Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/PAYX.png",
+ "price": "121.71",
+ "priceChange24hPercent": "-2.69428",
+ "marketCap": "43290160891",
+ "volume24h": "224113142.7",
+ "key": "stock:PAYX",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Paychex, Inc."
+ }
+ },
+ {
+ "symbol": "PBR",
+ "name": "巴西石油",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/PBR.png",
+ "price": "20.12",
+ "priceChange24hPercent": "-1.87759",
+ "marketCap": "129660646415",
+ "volume24h": "377829496.24",
+ "key": "stock:PBR",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "巴西石油"
+ }
+ },
+ {
+ "symbol": "PCAR",
+ "name": "PACCAR Inc",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/PCAR.png",
+ "price": "124.7",
+ "priceChange24hPercent": "0.1526",
+ "marketCap": "65637709639",
+ "volume24h": "218888029.9",
+ "key": "stock:PCAR",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "PACCAR Inc"
+ }
+ },
+ {
+ "symbol": "PCG",
+ "name": "太平洋煤电",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/PCG.png",
+ "price": "14.3",
+ "priceChange24hPercent": "2.43553",
+ "marketCap": "38325580093",
+ "volume24h": "660800554.7",
+ "key": "stock:PCG",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "太平洋煤电"
+ }
+ },
+ {
+ "symbol": "PDBC",
+ "name": "Invesco Optimum Yield Diversified Commodity Strategy No K-1 ETF",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/PDBC.png",
+ "price": "19.01",
+ "priceChange24hPercent": "-0.41907",
+ "marketCap": "5775156732",
+ "volume24h": "69516471.37",
+ "key": "stock:PDBC",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Invesco Optimum Yield Diversified Commodity Strategy No K-1 ETF"
+ }
+ },
+ {
+ "symbol": "PDD",
+ "name": "拼多多",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/PDD.png",
+ "price": "82.21",
+ "priceChange24hPercent": "0.71052",
+ "marketCap": "117017422072",
+ "volume24h": "382935002.09999996",
+ "key": "stock:PDD",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "拼多多"
+ }
+ },
+ {
+ "symbol": "PEG",
+ "name": "Public Service Enterprise Group Incorporated",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/PEG.png",
+ "price": "73.7",
+ "priceChange24hPercent": "-0.14903",
+ "marketCap": "36726257700",
+ "volume24h": "147841389.3",
+ "key": "stock:PEG",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Public Service Enterprise Group Incorporated"
+ }
+ },
+ {
+ "symbol": "PEN",
+ "name": "Penumbra, Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/PEN.png",
+ "price": "322.17",
+ "priceChange24hPercent": "0.32073",
+ "marketCap": "12690082998",
+ "volume24h": "56078198.88",
+ "key": "stock:PEN",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Penumbra, Inc."
+ }
+ },
+ {
+ "symbol": "PENG",
+ "name": "Penguin Solutions, Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/PENG.png",
+ "price": "51.76",
+ "priceChange24hPercent": "6.43636",
+ "marketCap": "2652322152",
+ "volume24h": "58616595.44",
+ "key": "stock:PENG",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Penguin Solutions, Inc."
+ }
+ },
+ {
+ "symbol": "PEP",
+ "name": "百事",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/PEP.png",
+ "price": "137.63",
+ "priceChange24hPercent": "-1.7069",
+ "marketCap": "188002580000",
+ "volume24h": "845805577.89",
+ "key": "stock:PEP",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "百事"
+ }
+ },
+ {
+ "symbol": "PFE",
+ "name": "辉瑞",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/PFE.png",
+ "price": "28.45",
+ "priceChange24hPercent": "-1.24957",
+ "marketCap": "162149068000",
+ "volume24h": "669415327.65",
+ "key": "stock:PFE",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "辉瑞"
+ }
+ },
+ {
+ "symbol": "PFG",
+ "name": "Principal Financial Group, Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/PFG.png",
+ "price": "116.68",
+ "priceChange24hPercent": "-1.54417",
+ "marketCap": "24981771400",
+ "volume24h": "175242742.12",
+ "key": "stock:PFG",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Principal Financial Group, Inc."
+ }
+ },
+ {
+ "symbol": "PFGC",
+ "name": "Performance Food Group Co",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/PFGC.png",
+ "price": "98.63",
+ "priceChange24hPercent": "-0.52446",
+ "marketCap": "15493786700",
+ "volume24h": "125642685.77",
+ "key": "stock:PFGC",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Performance Food Group Co"
+ }
+ },
+ {
+ "symbol": "PG",
+ "name": "宝洁",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/PG.png",
+ "price": "146.43",
+ "priceChange24hPercent": "-0.33351",
+ "marketCap": "348094704645",
+ "volume24h": "812032397.19",
+ "key": "stock:PG",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "宝洁"
+ }
+ },
+ {
+ "symbol": "PGR",
+ "name": "The Progressive Corporation",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/PGR.png",
+ "price": "218.95",
+ "priceChange24hPercent": "-2.1977",
+ "marketCap": "127297530000",
+ "volume24h": "420777672.09999996",
+ "key": "stock:PGR",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "The Progressive Corporation"
+ }
+ },
+ {
+ "symbol": "PH",
+ "name": "Parker-Hannifin Corporation",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/PH.png",
+ "price": "962.59",
+ "priceChange24hPercent": "-0.2001",
+ "marketCap": "121369497188",
+ "volume24h": "614889015.74",
+ "key": "stock:PH",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Parker-Hannifin Corporation"
+ }
+ },
+ {
+ "symbol": "PICC",
+ "name": "Pivotal Investment Corporation III",
+ "logoUrl": "https://uni-test.onekey-asset.com/utility/okx/token/cf7b190f1981c1db182e59a747efe6b696d1b9fc96e4f45ec05eb3aa9ebcc41d",
+ "price": "10",
+ "priceChange24hPercent": "-0.0999",
+ "marketCap": "89220400",
+ "volume24h": "4800",
+ "key": "stock:PICC",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Pivotal Investment Corporation III"
+ }
+ },
+ {
+ "symbol": "PICO",
+ "name": "PICO",
+ "logoUrl": "https://uni-test.onekey-asset.com/utility/okx/token/189d092775c5f0625cd269d411addcef3535768200bed0bb8562a7a9f16a80ef",
+ "key": "stock:PICO",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "PICO"
+ }
+ },
+ {
+ "symbol": "PINS",
+ "name": "拼趣",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/PINS.png",
+ "price": "20.4",
+ "priceChange24hPercent": "-2.15827",
+ "marketCap": "12978172307",
+ "volume24h": "204233580",
+ "key": "stock:PINS",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "拼趣"
+ }
+ },
+ {
+ "symbol": "PKG",
+ "name": "Packaging Corporation of America",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/PKG.png",
+ "price": "237.25",
+ "priceChange24hPercent": "1.14252",
+ "marketCap": "21138654001",
+ "volume24h": "125028614.75",
+ "key": "stock:PKG",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Packaging Corporation of America"
+ }
+ },
+ {
+ "symbol": "PL",
+ "name": "Planet Labs PBC",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/PL.png",
+ "price": "18.12",
+ "priceChange24hPercent": "-1.25341",
+ "marketCap": "6032306188",
+ "volume24h": "580546535.0400001",
+ "key": "stock:PL",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Planet Labs PBC"
+ }
+ },
+ {
+ "symbol": "PLD",
+ "name": "Prologis, Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/PLD.png",
+ "price": "137.34",
+ "priceChange24hPercent": "-0.73003",
+ "marketCap": "128148657840",
+ "volume24h": "309724498.44",
+ "key": "stock:PLD",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Prologis, Inc."
+ }
+ },
+ {
+ "symbol": "PLTR",
+ "name": "帕兰提尔",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/PLTR.png",
+ "price": "174.33",
+ "priceChange24hPercent": "-4.49241",
+ "marketCap": "400273883100",
+ "volume24h": "4874798157.84",
+ "key": "stock:PLTR",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "帕兰提尔"
+ }
+ },
+ {
+ "symbol": "PLUG",
+ "name": "Plug Power Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/PLUG.png",
+ "price": "2.17",
+ "priceChange24hPercent": "2.8436",
+ "marketCap": "3027301900",
+ "volume24h": "98350209.09",
+ "key": "stock:PLUG",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Plug Power Inc."
+ }
+ },
+ {
+ "symbol": "PM",
+ "name": "菲莫国际",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/PM.png",
+ "price": "182.53",
+ "priceChange24hPercent": "-1.9552",
+ "marketCap": "284493083300",
+ "volume24h": "570977021.3100001",
+ "key": "stock:PM",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "菲莫国际"
+ }
+ },
+ {
+ "symbol": "PNC",
+ "name": "The PNC Financial Services Group, Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/PNC.png",
+ "price": "245.6",
+ "priceChange24hPercent": "0.1713",
+ "marketCap": "97994400000",
+ "volume24h": "266908010.4",
+ "key": "stock:PNC",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "The PNC Financial Services Group, Inc."
+ }
+ },
+ {
+ "symbol": "PNFP",
+ "name": "Pinnacle Financial Partners, Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/PNFP.png",
+ "price": "101.01",
+ "priceChange24hPercent": "-0.35513",
+ "marketCap": "15252510000",
+ "volume24h": "53937622.830000006",
+ "key": "stock:PNFP",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Pinnacle Financial Partners, Inc."
+ }
+ },
+ {
+ "symbol": "PNW",
+ "name": "Pinnacle West Capital Corporation",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/PNW.png",
+ "price": "97.52",
+ "priceChange24hPercent": "-0.4898",
+ "marketCap": "11818156240",
+ "volume24h": "46982112.879999995",
+ "key": "stock:PNW",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Pinnacle West Capital Corporation"
+ }
+ },
+ {
+ "symbol": "POPMT",
+ "name": "POPMT",
+ "logoUrl": "https://uni-test.onekey-asset.com/utility/okx/token/f36b10abcc37c8f431b9a73e0a6586f443dc1bd83a06184e48824b51c798424c",
+ "key": "stock:POPMT",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "POPMT"
+ }
+ },
+ {
+ "symbol": "POWI",
+ "name": "Power Integrations, Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/POWI.png",
+ "price": "50.45",
+ "priceChange24hPercent": "-0.17808",
+ "marketCap": "2811073193",
+ "volume24h": "23743737.55",
+ "key": "stock:POWI",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Power Integrations, Inc."
+ }
+ },
+ {
+ "symbol": "POWL",
+ "name": "Powell Industries, Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/POWL.png",
+ "price": "181.17",
+ "priceChange24hPercent": "3.43115",
+ "marketCap": "6600312972",
+ "volume24h": "86143617.44999999",
+ "key": "stock:POWL",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Powell Industries, Inc."
+ }
+ },
+ {
+ "symbol": "PPG",
+ "name": "PPG Industries, Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/PPG.png",
+ "price": "112.53",
+ "priceChange24hPercent": "1.60722",
+ "marketCap": "25015419338",
+ "volume24h": "129775109.97",
+ "key": "stock:PPG",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "PPG Industries, Inc."
+ }
+ },
+ {
+ "symbol": "PPL",
+ "name": "PPL Corporation",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/PPL.png",
+ "price": "35.11",
+ "priceChange24hPercent": "0",
+ "marketCap": "26422988301",
+ "volume24h": "352288789.49",
+ "key": "stock:PPL",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "PPL Corporation"
+ }
+ },
+ {
+ "symbol": "PPLT",
+ "name": "abrdn Physical Platinum Shares ETF",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/PPLT.png",
+ "price": "16.5",
+ "priceChange24hPercent": "0.06063911",
+ "marketCap": "2630758713",
+ "volume24h": "23657997",
+ "key": "stock:PPLT",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "abrdn Physical Platinum Shares ETF"
+ }
+ },
+ {
+ "symbol": "PR",
+ "name": "Permian Resources Corporation",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/PR.png",
+ "price": "23.36",
+ "priceChange24hPercent": "-1.60067",
+ "marketCap": "19559050577",
+ "volume24h": "145541957.12",
+ "key": "stock:PR",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Permian Resources Corporation"
+ }
+ },
+ {
+ "symbol": "PRAD",
+ "name": "PRAD",
+ "logoUrl": "https://uni-test.onekey-asset.com/utility/okx/token/89dc4661fa40dcf7bdbd9abdacf8b1eec84565ea62f8caa8616097bd79cb00f5",
+ "key": "stock:PRAD",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "PRAD"
+ }
+ },
+ {
+ "symbol": "PRIM",
+ "name": "Primoris Services Corporation",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/PRIM.png",
+ "price": "74.43",
+ "priceChange24hPercent": "1.14146",
+ "marketCap": "4038192207",
+ "volume24h": "85608418.41000001",
+ "key": "stock:PRIM",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Primoris Services Corporation"
+ }
+ },
+ {
+ "symbol": "PRU",
+ "name": "Prudential Financial, Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/PRU.png",
+ "price": "122.02",
+ "priceChange24hPercent": "-0.95779",
+ "marketCap": "42340940000",
+ "volume24h": "171342558.34",
+ "key": "stock:PRU",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Prudential Financial, Inc."
+ }
+ },
+ {
+ "symbol": "PS",
+ "name": "Pershing Square Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/PS.png",
+ "price": "35.17",
+ "priceChange24hPercent": "5.67909",
+ "marketCap": "14068000000",
+ "volume24h": "2218945.64",
+ "key": "stock:PS",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Pershing Square Inc."
+ }
+ },
+ {
+ "symbol": "PSA",
+ "name": "Public Storage",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/PSA.png",
+ "price": "302.01",
+ "priceChange24hPercent": "-1.21676",
+ "marketCap": "56317616760",
+ "volume24h": "149545687.68",
+ "key": "stock:PSA",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Public Storage"
+ }
+ },
+ {
+ "symbol": "PSBOC",
+ "name": "PSBOC",
+ "logoUrl": "https://uni-test.onekey-asset.com/utility/okx/token/5223f3221afa4ec61bbef4df63383e77d21628e7faa8f283ae276cf607c92968",
+ "key": "stock:PSBOC",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "PSBOC"
+ }
+ },
+ {
+ "symbol": "PSQ",
+ "name": "ProShares - Short QQQ",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/PSQ.png",
+ "price": "25.77",
+ "priceChange24hPercent": "-0.07754944",
+ "marketCap": "728439405",
+ "volume24h": "218405233.98",
+ "key": "stock:PSQ",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "ProShares - Short QQQ"
+ }
+ },
+ {
+ "symbol": "PSX",
+ "name": "Phillips 66",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/PSX.png",
+ "price": "255.09",
+ "priceChange24hPercent": "0.16885",
+ "marketCap": "102274514252",
+ "volume24h": "578124496.95",
+ "key": "stock:PSX",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Phillips 66"
+ }
+ },
+ {
+ "symbol": "PTC",
+ "name": "PTC Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/PTC.png",
+ "price": "141.02",
+ "priceChange24hPercent": "-6.03678",
+ "marketCap": "16288656120",
+ "volume24h": "298926862.96000004",
+ "key": "stock:PTC",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "PTC Inc."
+ }
+ },
+ {
+ "symbol": "PURR",
+ "name": "Hyperliquid Strategies Inc Common Stock",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/PURR.png",
+ "price": "12.18",
+ "priceChange24hPercent": "-4.6202",
+ "marketCap": "1639428000",
+ "volume24h": "333206396.46",
+ "key": "stock:PURR",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Hyperliquid Strategies Inc Common Stock"
+ }
+ },
+ {
+ "symbol": "PWAHL",
+ "name": "PWAHL",
+ "logoUrl": "https://uni-test.onekey-asset.com/utility/okx/token/7b0c7e1a03f465b626c55ec454f6270613a16c02d311d275adc2eb67035c9a56",
+ "key": "stock:PWAHL",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "PWAHL"
+ }
+ },
+ {
+ "symbol": "PWR",
+ "name": "Quanta Services, Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/PWR.png",
+ "price": "624.41",
+ "priceChange24hPercent": "0.70155",
+ "marketCap": "93875672630",
+ "volume24h": "399250251.64",
+ "key": "stock:PWR",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Quanta Services, Inc."
+ }
+ },
+ {
+ "symbol": "PYPL",
+ "name": "贝宝",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/PYPL.png",
+ "price": "54.96",
+ "priceChange24hPercent": "-3.2735",
+ "marketCap": "47016136560",
+ "volume24h": "716925445.2",
+ "key": "stock:PYPL",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "贝宝"
+ }
+ },
+ {
+ "symbol": "Q",
+ "name": "Qnity Electronics, Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/Q.png",
+ "price": "120.47",
+ "priceChange24hPercent": "1.68819",
+ "marketCap": "25219093424",
+ "volume24h": "157825578.54",
+ "key": "stock:Q",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Qnity Electronics, Inc."
+ }
+ },
+ {
+ "symbol": "QBTS",
+ "name": "D-Wave Quantum Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/QBTS.png",
+ "price": "16.58",
+ "priceChange24hPercent": "-1.42687",
+ "marketCap": "6089321219",
+ "volume24h": "12169305.499999998",
+ "key": "stock:QBTS",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "D-Wave Quantum Inc."
+ }
+ },
+ {
+ "symbol": "QCOM",
+ "name": "高通",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/QCOM.png",
+ "price": "168.74",
+ "priceChange24hPercent": "0.10085",
+ "marketCap": "177177000000",
+ "volume24h": "1440555484.94",
+ "key": "stock:QCOM",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "高通"
+ }
+ },
+ {
+ "symbol": "QLTA",
+ "name": "iShares Aaa - A Rated Corporate Bond ETF",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/QLTA.png",
+ "price": "46.23",
+ "priceChange24hPercent": "0.08659883",
+ "marketCap": "1558189269",
+ "volume24h": "2758590.3299999996",
+ "key": "stock:QLTA",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "iShares Aaa - A Rated Corporate Bond ETF"
+ }
+ },
+ {
+ "symbol": "QNT",
+ "name": "Quantinuum Inc. Class A Common Stock",
+ "logoUrl": "",
+ "price": "49.65",
+ "priceChange24hPercent": "1.95072",
+ "marketCap": "13073249002",
+ "volume24h": "53286713.55",
+ "key": "stock:QNT",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Quantinuum Inc. Class A Common Stock"
+ }
+ },
+ {
+ "symbol": "QQQ",
+ "name": "纳指ETF",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/QQQ.png",
+ "price": "718.96",
+ "priceChange24hPercent": "0.17975",
+ "marketCap": "512284401576",
+ "volume24h": "23632988800.960003",
+ "key": "stock:QQQ",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "纳指ETF"
+ }
+ },
+ {
+ "symbol": "QSR",
+ "name": "Restaurant Brands International Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/QSR.png",
+ "price": "80.17",
+ "priceChange24hPercent": "-0.11214",
+ "marketCap": "27816312162",
+ "volume24h": "264664178.79",
+ "key": "stock:QSR",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Restaurant Brands International Inc."
+ }
+ },
+ {
+ "symbol": "QTUM",
+ "name": "Defiance Quantum ETF",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/QTUM.png",
+ "price": "147.89",
+ "priceChange24hPercent": "1.21133",
+ "marketCap": "3894270685",
+ "volume24h": "35870867.38999999",
+ "key": "stock:QTUM",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Defiance Quantum ETF"
+ }
+ },
+ {
+ "symbol": "QUBT",
+ "name": "Quantum Computing",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/QUBT.png",
+ "price": "8.01",
+ "priceChange24hPercent": "0.62814",
+ "marketCap": "1798551415",
+ "volume24h": "29482743.419999998",
+ "key": "stock:QUBT",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Quantum Computing"
+ }
+ },
+ {
+ "symbol": "QURE",
+ "name": "uniQure N.V.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/QURE.png",
+ "price": "44.5",
+ "priceChange24hPercent": "-0.8025",
+ "marketCap": "3086804800",
+ "volume24h": "44120637.5",
+ "key": "stock:QURE",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "uniQure N.V."
+ }
+ },
+ {
+ "symbol": "QYLD",
+ "name": "Global X - Nasdaq 100 Covered Call ETF",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/QYLD.png",
+ "price": "18.36",
+ "priceChange24hPercent": "0.16367",
+ "marketCap": "8665421214",
+ "volume24h": "69101256.6",
+ "key": "stock:QYLD",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Global X - Nasdaq 100 Covered Call ETF"
+ }
+ },
+ {
+ "symbol": "RBA",
+ "name": "RB Global, Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/RBA.png",
+ "price": "83.54",
+ "priceChange24hPercent": "0.32425",
+ "marketCap": "15563502000",
+ "volume24h": "70966812.30000001",
+ "key": "stock:RBA",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "RB Global, Inc."
+ }
+ },
+ {
+ "symbol": "RBL",
+ "name": "RBL",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/RBL.png",
+ "key": "stock:RBL",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "RBL"
+ }
+ },
+ {
+ "symbol": "RBLX",
+ "name": "罗布乐思",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/RBLX.png",
+ "price": "43.31",
+ "priceChange24hPercent": "4.3363",
+ "marketCap": "30939619406",
+ "volume24h": "431483714.11",
+ "key": "stock:RBLX",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "罗布乐思"
+ }
+ },
+ {
+ "symbol": "RCAT",
+ "name": "Red Cat Holdings, Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/RCAT.png",
+ "price": "8.37",
+ "priceChange24hPercent": "-1.99063",
+ "marketCap": "1273849258",
+ "volume24h": "42822518.669999994",
+ "key": "stock:RCAT",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Red Cat Holdings, Inc."
+ }
+ },
+ {
+ "symbol": "RDDT",
+ "name": "红迪",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/RDDT.png",
+ "price": "154.46",
+ "priceChange24hPercent": "-0.98083",
+ "marketCap": "29734946936",
+ "volume24h": "429786803.52000004",
+ "key": "stock:RDDT",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "红迪"
+ }
+ },
+ {
+ "symbol": "RDW",
+ "name": "Redwire",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/RDW.png",
+ "price": "10.53",
+ "priceChange24hPercent": "1.54291",
+ "marketCap": "2514827250",
+ "volume24h": "93690969.83999999",
+ "key": "stock:RDW",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Redwire"
+ }
+ },
+ {
+ "symbol": "REG",
+ "name": "Regency Centers Corporation",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/REG.png",
+ "price": "75.26",
+ "priceChange24hPercent": "-0.86934",
+ "marketCap": "13743568850",
+ "volume24h": "66539096.980000004",
+ "key": "stock:REG",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Regency Centers Corporation"
+ }
+ },
+ {
+ "symbol": "REGN",
+ "name": "再生元制药",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/REGN.png",
+ "price": "827.72",
+ "priceChange24hPercent": "-1.86729",
+ "marketCap": "85273369840",
+ "volume24h": "464491632.40000004",
+ "key": "stock:REGN",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "再生元制药"
+ }
+ },
+ {
+ "symbol": "REMX",
+ "name": "VanEck Rare Earth and Strategic Metals ETF",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/REMX.png",
+ "price": "75.66",
+ "priceChange24hPercent": "-0.48665",
+ "marketCap": "983755910",
+ "volume24h": "34693060.74",
+ "key": "stock:REMX",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "VanEck Rare Earth and Strategic Metals ETF"
+ }
+ },
+ {
+ "symbol": "RF",
+ "name": "Regions Financial Corporation",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/RF.png",
+ "price": "30.42",
+ "priceChange24hPercent": "-0.08211529",
+ "marketCap": "25959819600",
+ "volume24h": "187143900.84",
+ "key": "stock:RF",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Regions Financial Corporation"
+ }
+ },
+ {
+ "symbol": "RGA",
+ "name": "Reinsurance Group of America, Incorporated",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/RGA.png",
+ "price": "253.27",
+ "priceChange24hPercent": "-1.03161",
+ "marketCap": "16592518793",
+ "volume24h": "61599822.86",
+ "key": "stock:RGA",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Reinsurance Group of America, Incorporated"
+ }
+ },
+ {
+ "symbol": "RGLD",
+ "name": "Royal Gold, Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/RGLD.png",
+ "price": "262.11",
+ "priceChange24hPercent": "-1.03455",
+ "marketCap": "22244385050",
+ "volume24h": "93208150.77000001",
+ "key": "stock:RGLD",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Royal Gold, Inc."
+ }
+ },
+ {
+ "symbol": "RGTI",
+ "name": "Rigetti Computing, Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/RGTI.png",
+ "price": "15.2",
+ "priceChange24hPercent": "0.13175",
+ "marketCap": "5052461866",
+ "volume24h": "162009215.2",
+ "key": "stock:RGTI",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Rigetti Computing, Inc."
+ }
+ },
+ {
+ "symbol": "RIOT",
+ "name": "Riot平台",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/RIOT.png",
+ "price": "21.8",
+ "priceChange24hPercent": "3.12204",
+ "marketCap": "8243696814",
+ "volume24h": "335036003.2",
+ "key": "stock:RIOT",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Riot平台"
+ }
+ },
+ {
+ "symbol": "RIVN",
+ "name": "Rivian",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/RIVN.png",
+ "price": "15.74",
+ "priceChange24hPercent": "-1.06851",
+ "marketCap": "19106438288",
+ "volume24h": "222478635.48",
+ "key": "stock:RIVN",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Rivian"
+ }
+ },
+ {
+ "symbol": "RJF",
+ "name": "Raymond James Financial, Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/RJF.png",
+ "price": "178.29",
+ "priceChange24hPercent": "-1.55163",
+ "marketCap": "34249509000",
+ "volume24h": "175396888.17",
+ "key": "stock:RJF",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Raymond James Financial, Inc."
+ }
+ },
+ {
+ "symbol": "RKLB",
+ "name": "火箭实验室",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/RKLB.png",
+ "price": "64.26",
+ "priceChange24hPercent": "0.70522",
+ "marketCap": "37198023944",
+ "volume24h": "960816805.2",
+ "key": "stock:RKLB",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "火箭实验室"
+ }
+ },
+ {
+ "symbol": "RL",
+ "name": "Ralph Lauren Corporation",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/RL.png",
+ "price": "351.2",
+ "priceChange24hPercent": "2.0337",
+ "marketCap": "21423133974",
+ "volume24h": "239816217.6",
+ "key": "stock:RL",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Ralph Lauren Corporation"
+ }
+ },
+ {
+ "symbol": "RMBS",
+ "name": "Rambus Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/RMBS.png",
+ "price": "85.46",
+ "priceChange24hPercent": "1.32796",
+ "marketCap": "9269128336",
+ "volume24h": "161576658.2",
+ "key": "stock:RMBS",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Rambus Inc."
+ }
+ },
+ {
+ "symbol": "RMD",
+ "name": "ResMed Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/RMD.png",
+ "price": "228.35",
+ "priceChange24hPercent": "-0.36651",
+ "marketCap": "33123625286",
+ "volume24h": "191267558.45",
+ "key": "stock:RMD",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "ResMed Inc."
+ }
+ },
+ {
+ "symbol": "RNR",
+ "name": "RenaissanceRe Holdings Ltd.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/RNR.png",
+ "price": "330.38",
+ "priceChange24hPercent": "-2.24576",
+ "marketCap": "13727916722",
+ "volume24h": "96876666.64",
+ "key": "stock:RNR",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "RenaissanceRe Holdings Ltd."
+ }
+ },
+ {
+ "symbol": "ROIV",
+ "name": "Roivant Sciences Ltd.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/ROIV.png",
+ "price": "34.93",
+ "priceChange24hPercent": "1.51119",
+ "marketCap": "25233641580",
+ "volume24h": "183054612.09",
+ "key": "stock:ROIV",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Roivant Sciences Ltd."
+ }
+ },
+ {
+ "symbol": "ROK",
+ "name": "Rockwell Automation, Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/ROK.png",
+ "price": "433.81",
+ "priceChange24hPercent": "1.29121",
+ "marketCap": "48271773940",
+ "volume24h": "219902193.29",
+ "key": "stock:ROK",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Rockwell Automation, Inc."
+ }
+ },
+ {
+ "symbol": "ROKU",
+ "name": "Roku, Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/ROKU.png",
+ "price": "155.59",
+ "priceChange24hPercent": "-1.71815",
+ "marketCap": "23080556830",
+ "volume24h": "322600150.41",
+ "key": "stock:ROKU",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Roku, Inc."
+ }
+ },
+ {
+ "symbol": "ROL",
+ "name": "Rollins, Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/ROL.png",
+ "price": "35.86",
+ "priceChange24hPercent": "0.42005",
+ "marketCap": "17253874187",
+ "volume24h": "187773574.56",
+ "key": "stock:ROL",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Rollins, Inc."
+ }
+ },
+ {
+ "symbol": "ROP",
+ "name": "Roper Technologies, Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/ROP.png",
+ "price": "407.28",
+ "priceChange24hPercent": "-3.56813",
+ "marketCap": "41101475760",
+ "volume24h": "251209896.71999997",
+ "key": "stock:ROP",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Roper Technologies, Inc."
+ }
+ },
+ {
+ "symbol": "ROST",
+ "name": "Ross Stores, Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/ROST.png",
+ "price": "230.69",
+ "priceChange24hPercent": "-0.42302",
+ "marketCap": "74000986422",
+ "volume24h": "318748294.73",
+ "key": "stock:ROST",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Ross Stores, Inc."
+ }
+ },
+ {
+ "symbol": "RPM",
+ "name": "RPM International Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/RPM.png",
+ "price": "105.52",
+ "priceChange24hPercent": "2.02069",
+ "marketCap": "13479230320",
+ "volume24h": "126202131.03999999",
+ "key": "stock:RPM",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "RPM International Inc."
+ }
+ },
+ {
+ "symbol": "RR",
+ "name": "Richtech Robotics Inc. Class B Common Stock",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/RR.png",
+ "price": "1.52",
+ "priceChange24hPercent": "7.04225",
+ "marketCap": "279164913",
+ "volume24h": "8466662.96",
+ "key": "stock:RR",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Richtech Robotics Inc. Class B Common Stock"
+ }
+ },
+ {
+ "symbol": "RRX",
+ "name": "Regal Rexnord Corporation",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/RRX.png",
+ "price": "162.86",
+ "priceChange24hPercent": "0.15066",
+ "marketCap": "10841520659",
+ "volume24h": "142057240.76000002",
+ "key": "stock:RRX",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Regal Rexnord Corporation"
+ }
+ },
+ {
+ "symbol": "RS",
+ "name": "Reliance Steel & Aluminum Co.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/RS.png",
+ "price": "400.51",
+ "priceChange24hPercent": "0.57001",
+ "marketCap": "20447859823",
+ "volume24h": "134132401.03999999",
+ "key": "stock:RS",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Reliance Steel & Aluminum Co."
+ }
+ },
+ {
+ "symbol": "RSG",
+ "name": "Republic Services, Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/RSG.png",
+ "price": "222.71",
+ "priceChange24hPercent": "-1.07054",
+ "marketCap": "68519849440",
+ "volume24h": "344182269.88",
+ "key": "stock:RSG",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Republic Services, Inc."
+ }
+ },
+ {
+ "symbol": "RT",
+ "name": "RT",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/RT.png",
+ "key": "stock:RT",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "RT"
+ }
+ },
+ {
+ "symbol": "RTX",
+ "name": "雷神技术",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/RTX.png",
+ "price": "200.79",
+ "priceChange24hPercent": "-0.66294",
+ "marketCap": "270616349100",
+ "volume24h": "560053507.5",
+ "key": "stock:RTX",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "雷神技术"
+ }
+ },
+ {
+ "symbol": "RVMD",
+ "name": "Revolution Medicines, Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/RVMD.png",
+ "price": "210.02",
+ "priceChange24hPercent": "-0.40309",
+ "marketCap": "44649411920",
+ "volume24h": "185880511.22",
+ "key": "stock:RVMD",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Revolution Medicines, Inc."
+ }
+ },
+ {
+ "symbol": "SAIA",
+ "name": "Saia, Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/SAIA.png",
+ "price": "357.94",
+ "priceChange24hPercent": "3.50771",
+ "marketCap": "9547906324",
+ "volume24h": "166924603.12",
+ "key": "stock:SAIA",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Saia, Inc."
+ }
+ },
+ {
+ "symbol": "SAP",
+ "name": "思爱普",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/SAP.png",
+ "price": "215.11",
+ "priceChange24hPercent": "-0.88467",
+ "marketCap": "250653736128",
+ "volume24h": "494307292.08000004",
+ "key": "stock:SAP",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "思爱普"
+ }
+ },
+ {
+ "symbol": "SATA",
+ "name": "Strive Inc. Perp. Pfd. Series A",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/SATA.png",
+ "price": "100.01",
+ "priceChange24hPercent": "0.01",
+ "marketCap": "69880477349",
+ "volume24h": "54718771.330000006",
+ "key": "stock:SATA",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Strive Inc. Perp. Pfd. Series A"
+ }
+ },
+ {
+ "symbol": "SBAC",
+ "name": "SBA Communications Corporation",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/SBAC.png",
+ "price": "189.44",
+ "priceChange24hPercent": "-1.08605",
+ "marketCap": "20092574720",
+ "volume24h": "126692357.12",
+ "key": "stock:SBAC",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "SBA Communications Corporation"
+ }
+ },
+ {
+ "symbol": "SBET",
+ "name": "SharpLink博彩",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/SBET.png",
+ "price": "8.68",
+ "priceChange24hPercent": "-3.34076",
+ "marketCap": "1711340120",
+ "volume24h": "54330194.519999996",
+ "key": "stock:SBET",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "SharpLink博彩"
+ }
+ },
+ {
+ "symbol": "SBU",
+ "name": "Leverage Shares 2X Long SBUX Daily ETF",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/SBU.png",
+ "price": "19.835",
+ "priceChange24hPercent": "-1.23488",
+ "marketCap": "638072",
+ "volume24h": "71604.35",
+ "key": "stock:SBU",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Leverage Shares 2X Long SBUX Daily ETF"
+ }
+ },
+ {
+ "symbol": "SBUX",
+ "name": "星巴克",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/SBUX.png",
+ "price": "104.47",
+ "priceChange24hPercent": "-1.27575",
+ "marketCap": "119095800000",
+ "volume24h": "481009967.36",
+ "key": "stock:SBUX",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "星巴克"
+ }
+ },
+ {
+ "symbol": "SCCO",
+ "name": "南方铜业",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/SCCO.png",
+ "price": "198.76",
+ "priceChange24hPercent": "-0.38591",
+ "marketCap": "165831769885",
+ "volume24h": "156565040.84",
+ "key": "stock:SCCO",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "南方铜业"
+ }
+ },
+ {
+ "symbol": "SCHF",
+ "name": "Schwab International Equity ETF",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/SCHF.png",
+ "price": "28.58",
+ "priceChange24hPercent": "0.422",
+ "marketCap": "68568735709",
+ "volume24h": "199559078.33999997",
+ "key": "stock:SCHF",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Schwab International Equity ETF"
+ }
+ },
+ {
+ "symbol": "SCHW",
+ "name": "嘉信理财",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/SCHW.png",
+ "price": "109.29",
+ "priceChange24hPercent": "-0.9875",
+ "marketCap": "190070610600",
+ "volume24h": "642860719.95",
+ "key": "stock:SCHW",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "嘉信理财"
+ }
+ },
+ {
+ "symbol": "SECU",
+ "name": "iShares Securitized Income Active ETF",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/SECU.png",
+ "price": "49.32",
+ "priceChange24hPercent": "-0.06079027",
+ "marketCap": "441210802",
+ "volume24h": "2978533.44",
+ "key": "stock:SECU",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "iShares Securitized Income Active ETF"
+ }
+ },
+ {
+ "symbol": "SEDG",
+ "name": "SolarEdge",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/SEDG.png",
+ "price": "34.2",
+ "priceChange24hPercent": "1.18343",
+ "marketCap": "2079982508",
+ "volume24h": "53972969.400000006",
+ "key": "stock:SEDG",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "SolarEdge"
+ }
+ },
+ {
+ "symbol": "SGI",
+ "name": "Somnigroup International Inc",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/SGI.png",
+ "price": "69.87",
+ "priceChange24hPercent": "0.50345",
+ "marketCap": "14698236856",
+ "volume24h": "217514882.19000003",
+ "key": "stock:SGI",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Somnigroup International Inc"
+ }
+ },
+ {
+ "symbol": "SGOV",
+ "name": "iShares 0-3个月国债ETF",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/SGOV.png",
+ "price": "100.47",
+ "priceChange24hPercent": "0.04480956",
+ "marketCap": "95942590920",
+ "volume24h": "2053722039.09",
+ "key": "stock:SGOV",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "iShares 0-3个月国债ETF"
+ }
+ },
+ {
+ "symbol": "SHAZ",
+ "name": "SharonAI Holdings, Inc. Class A Common Stock",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/SHAZ.png",
+ "price": "55.94",
+ "priceChange24hPercent": "1.7646",
+ "marketCap": "1960563863",
+ "volume24h": "69943236.44",
+ "key": "stock:SHAZ",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "SharonAI Holdings, Inc. Class A Common Stock"
+ }
+ },
+ {
+ "symbol": "SHEIN",
+ "name": "SHEIN",
+ "logoUrl": "https://uni-test.onekey-asset.com/utility/okx/token/3ee6ddcee6f7e7253699590002a19d6969fb3f95f63a2d99982e853ab10f1c04",
+ "key": "stock:SHEIN",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "SHEIN"
+ }
+ },
+ {
+ "symbol": "SHLD",
+ "name": "Global X - Defense Tech ETF",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/SHLD.png",
+ "price": "62.98",
+ "priceChange24hPercent": "-1.20784",
+ "marketCap": "4352042637",
+ "volume24h": "48126796.8",
+ "key": "stock:SHLD",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Global X - Defense Tech ETF"
+ }
+ },
+ {
+ "symbol": "SHOP",
+ "name": "Shopify",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/SHOP.png",
+ "price": "145.09",
+ "priceChange24hPercent": "-0.54154",
+ "marketCap": "188276717956",
+ "volume24h": "1001972823.39",
+ "key": "stock:SHOP",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Shopify"
+ }
+ },
+ {
+ "symbol": "SHV",
+ "name": "iShares Trust iShares 0-1 Year Treasury Bond ETF",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/SHV.png",
+ "price": "110.12",
+ "priceChange24hPercent": "0.03633721",
+ "marketCap": "20956002281",
+ "volume24h": "261901259.12",
+ "key": "stock:SHV",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "iShares Trust iShares 0-1 Year Treasury Bond ETF"
+ }
+ },
+ {
+ "symbol": "SHW",
+ "name": "The Sherwin-Williams Company",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/SHW.png",
+ "price": "333.71",
+ "priceChange24hPercent": "0.43641",
+ "marketCap": "81010822570",
+ "volume24h": "326272938.94",
+ "key": "stock:SHW",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "The Sherwin-Williams Company"
+ }
+ },
+ {
+ "symbol": "SHY",
+ "name": "iShares 1-3 Year Treasury Bond ETF",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/SHY.png",
+ "price": "81.69",
+ "priceChange24hPercent": "-0.02447681",
+ "marketCap": "24998077801",
+ "volume24h": "202602881.67",
+ "key": "stock:SHY",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "iShares 1-3 Year Treasury Bond ETF"
+ }
+ },
+ {
+ "symbol": "SIL",
+ "name": "Global X - Silver Miners ETF",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/SIL.png",
+ "price": "99.29",
+ "priceChange24hPercent": "-2.04223",
+ "marketCap": "5665084878",
+ "volume24h": "98538275.41000001",
+ "key": "stock:SIL",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Global X - Silver Miners ETF"
+ }
+ },
+ {
+ "symbol": "SINO",
+ "name": "Singularity Future Technology Ltd.",
+ "logoUrl": "https://uni-test.onekey-asset.com/utility/okx/token/2e1106ecd2862af2cb992e69170e67de306f1e56b7172578b91a8f9d20a5b190",
+ "price": "4.19",
+ "priceChange24hPercent": "1.6990334",
+ "marketCap": "91946617",
+ "volume24h": "10124879.41",
+ "key": "stock:SINO",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Singularity Future Technology Ltd."
+ }
+ },
+ {
+ "symbol": "SINOT",
+ "name": "SINOT",
+ "logoUrl": "https://uni-test.onekey-asset.com/utility/okx/token/f7cd5d7362702c90070a9115eb712dc3453bdc173f5a3ffb704d4b4948a368c7",
+ "key": "stock:SINOT",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "SINOT"
+ }
+ },
+ {
+ "symbol": "SITC",
+ "name": "SITE Centers Corp.",
+ "logoUrl": "https://uni-test.onekey-asset.com/utility/okx/token/b36848cddd944fa176c9afce7f3ae5036b18abe4ce7b448f9a886440f58b1dd3",
+ "price": "2.87",
+ "priceChange24hPercent": "0",
+ "marketCap": "150602888",
+ "volume24h": "1859180.26",
+ "key": "stock:SITC",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "SITE Centers Corp."
+ }
+ },
+ {
+ "symbol": "SJM",
+ "name": "The J. M. Smucker Company",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/SJM.png",
+ "price": "126.08",
+ "priceChange24hPercent": "-1.8909",
+ "marketCap": "13475517395",
+ "volume24h": "140073240.96",
+ "key": "stock:SJM",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "The J. M. Smucker Company"
+ }
+ },
+ {
+ "symbol": "SKHY",
+ "name": "SK hynix Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/SKHY.png",
+ "price": "177",
+ "priceChange24hPercent": "8.13783",
+ "marketCap": "1256443157070",
+ "volume24h": "3682173834",
+ "key": "stock:SKHY",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "SK hynix Inc."
+ }
+ },
+ {
+ "symbol": "SKHYV",
+ "name": "SK hynix Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/SKHYV.png",
+ "price": "168.31",
+ "priceChange24hPercent": "12.95973",
+ "marketCap": "1192134101714",
+ "volume24h": "17666525468.84333",
+ "key": "stock:SKHYV",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "SK hynix Inc."
+ }
+ },
+ {
+ "symbol": "SLB",
+ "name": "Slb N.V.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/SLB.png",
+ "price": "57.51",
+ "priceChange24hPercent": "0.17419",
+ "marketCap": "85353079343",
+ "volume24h": "436358907.81",
+ "key": "stock:SLB",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Slb N.V."
+ }
+ },
+ {
+ "symbol": "SLMT",
+ "name": "Brera Holdings PLC",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/SLMT.png",
+ "price": "3.85",
+ "priceChange24hPercent": "-2.77778",
+ "marketCap": "32297330",
+ "volume24h": "91268.1",
+ "key": "stock:SLMT",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Brera Holdings PLC"
+ }
+ },
+ {
+ "symbol": "SLV",
+ "name": "白银ETF",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/SLV.png",
+ "price": "59.82",
+ "priceChange24hPercent": "-1.19746",
+ "marketCap": "32192820451",
+ "volume24h": "751852335.96",
+ "key": "stock:SLV",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "白银ETF"
+ }
+ },
+ {
+ "symbol": "SMCI",
+ "name": "超微电脑",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/SMCI.png",
+ "price": "39.59",
+ "priceChange24hPercent": "4.54185",
+ "marketCap": "25609702070",
+ "volume24h": "2123337279.4800003",
+ "key": "stock:SMCI",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "超微电脑"
+ }
+ },
+ {
+ "symbol": "SMH",
+ "name": "范达半导体ETF",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/SMH.png",
+ "price": "567.01",
+ "priceChange24hPercent": "2.60767",
+ "marketCap": "71466364523",
+ "volume24h": "5361710065.12",
+ "key": "stock:SMH",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "范达半导体ETF"
+ }
+ },
+ {
+ "symbol": "SMOIH",
+ "name": "SMOIH",
+ "logoUrl": "https://uni-test.onekey-asset.com/utility/okx/token/84022f274aad24e9c6906752f42f2236952b16353667fc6e5b550c87ebfb5f88",
+ "key": "stock:SMOIH",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "SMOIH"
+ }
+ },
+ {
+ "symbol": "SMR",
+ "name": "NuScale Power Corporation",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/SMR.png",
+ "price": "9.695",
+ "priceChange24hPercent": "-0.61507",
+ "marketCap": "2890835109",
+ "volume24h": "180709729.51500002",
+ "key": "stock:SMR",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "NuScale Power Corporation"
+ }
+ },
+ {
+ "symbol": "SN",
+ "name": "SharkNinja, Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/SN.png",
+ "price": "161.77",
+ "priceChange24hPercent": "-0.95512",
+ "marketCap": "22893753490",
+ "volume24h": "167608764.61",
+ "key": "stock:SN",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "SharkNinja, Inc."
+ }
+ },
+ {
+ "symbol": "SNA",
+ "name": "Snap-on Incorporated",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/SNA.png",
+ "price": "383",
+ "priceChange24hPercent": "-0.30974",
+ "marketCap": "19811488492",
+ "volume24h": "84169229",
+ "key": "stock:SNA",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Snap-on Incorporated"
+ }
+ },
+ {
+ "symbol": "SNAP",
+ "name": "Snap",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/SNAP.png",
+ "price": "5.47",
+ "priceChange24hPercent": "-4.03509",
+ "marketCap": "9241933930",
+ "volume24h": "109720585.75999999",
+ "key": "stock:SNAP",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Snap"
+ }
+ },
+ {
+ "symbol": "SNBIO",
+ "name": "SNBIO",
+ "logoUrl": "https://uni-test.onekey-asset.com/utility/okx/token/c409924c5725505bd2f21fb13497bf2cbc94a2d9f316cab87cbec6e965ff7b64",
+ "key": "stock:SNBIO",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "SNBIO"
+ }
+ },
+ {
+ "symbol": "SNDK",
+ "name": "闪迪",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/SNDK.png",
+ "price": "1740",
+ "priceChange24hPercent": "11.89783",
+ "marketCap": "257676165000",
+ "volume24h": "28809122580",
+ "key": "stock:SNDK",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "闪迪"
+ }
+ },
+ {
+ "symbol": "SNDSC",
+ "name": "SNDSC",
+ "logoUrl": "https://uni-test.onekey-asset.com/utility/okx/token/959f355983937b429a3bbac6c530fe1a08ec45900fa09e4990ae610acc4c451b",
+ "key": "stock:SNDSC",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "SNDSC"
+ }
+ },
+ {
+ "symbol": "SNOW",
+ "name": "雪花",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/SNOW.png",
+ "price": "337.18",
+ "priceChange24hPercent": "-5.4114",
+ "marketCap": "116866588000",
+ "volume24h": "2842981049.56",
+ "key": "stock:SNOW",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "雪花"
+ }
+ },
+ {
+ "symbol": "SNPS",
+ "name": "Synopsys, Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/SNPS.png",
+ "price": "393.84",
+ "priceChange24hPercent": "-5.39742",
+ "marketCap": "75412217358",
+ "volume24h": "1169456286.96",
+ "key": "stock:SNPS",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Synopsys, Inc."
+ }
+ },
+ {
+ "symbol": "SNX",
+ "name": "TD Synnex Corp",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/SNX.png",
+ "price": "262.64",
+ "priceChange24hPercent": "0.04189997",
+ "marketCap": "21000379232",
+ "volume24h": "111878599.28",
+ "key": "stock:SNX",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "TD Synnex Corp"
+ }
+ },
+ {
+ "symbol": "SNXX",
+ "name": "Tradr 2X Long SNDK Daily ETF",
+ "logoUrl": "https://uni-test.onekey-asset.com/utility/okx/token/75dffb8b104bceede1093263c4532653ad03a3a5c46b68b105ecf91a8c6e2223",
+ "price": "17.36",
+ "priceChange24hPercent": "23.38308",
+ "marketCap": "2501402400",
+ "volume24h": "1659417783.52",
+ "key": "stock:SNXX",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Tradr 2X Long SNDK Daily ETF"
+ }
+ },
+ {
+ "symbol": "SO",
+ "name": "南方公司",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/SO.png",
+ "price": "88.11",
+ "priceChange24hPercent": "-0.74349",
+ "marketCap": "101358219600",
+ "volume24h": "632984618.97",
+ "key": "stock:SO",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "南方公司"
+ }
+ },
+ {
+ "symbol": "SOFI",
+ "name": "SoFi Technologies, Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/SOFI.png",
+ "price": "18.22",
+ "priceChange24hPercent": "-1.56672",
+ "marketCap": "23371522800",
+ "volume24h": "530598175.67999995",
+ "key": "stock:SOFI",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "SoFi Technologies, Inc."
+ }
+ },
+ {
+ "symbol": "SOLS",
+ "name": "Solstice Advanced Materials Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/SOLS.png",
+ "price": "63.73",
+ "priceChange24hPercent": "3.84553",
+ "marketCap": "10123342635",
+ "volume24h": "173037847.82999998",
+ "key": "stock:SOLS",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Solstice Advanced Materials Inc."
+ }
+ },
+ {
+ "symbol": "SOUN",
+ "name": "SoundHound AI, Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/SOUN.png",
+ "price": "6.74",
+ "priceChange24hPercent": "0",
+ "marketCap": "2936443946",
+ "volume24h": "139343663.16",
+ "key": "stock:SOUN",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "SoundHound AI, Inc."
+ }
+ },
+ {
+ "symbol": "SOX",
+ "name": "SOX",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/SOX.png",
+ "key": "stock:SOX",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "SOX"
+ }
+ },
+ {
+ "symbol": "SOXL",
+ "name": "Direxion Daily Semiconductor Bull 3X ETF",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/SOXL.png",
+ "price": "117.28",
+ "priceChange24hPercent": "9.87446",
+ "marketCap": "32455506015",
+ "volume24h": "7388437340.16",
+ "key": "stock:SOXL",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Direxion Daily Semiconductor Bull 3X ETF"
+ }
+ },
+ {
+ "symbol": "SOXQ",
+ "name": "Invesco PHLX Semiconductor ETF",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/SOXQ.png",
+ "price": "92.4",
+ "priceChange24hPercent": "3.3557",
+ "marketCap": "2740480235",
+ "volume24h": "105765475.2",
+ "key": "stock:SOXQ",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Invesco PHLX Semiconductor ETF"
+ }
+ },
+ {
+ "symbol": "SOXS",
+ "name": "Direxion Daily Semiconductor Bear 3X ETF",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/SOXS.png",
+ "price": "46.34",
+ "priceChange24hPercent": "-10.1938",
+ "marketCap": "147096691",
+ "volume24h": "2532888050.5600004",
+ "key": "stock:SOXS",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Direxion Daily Semiconductor Bear 3X ETF"
+ }
+ },
+ {
+ "symbol": "SOXX",
+ "name": "iShares半导体ETF",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/SOXX.png",
+ "price": "519.86",
+ "priceChange24hPercent": "3.51653",
+ "marketCap": "46085325431",
+ "volume24h": "4800405954.96",
+ "key": "stock:SOXX",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "iShares半导体ETF"
+ }
+ },
+ {
+ "symbol": "SPC",
+ "name": "CrossingBridge Pre-Merger SPAC ETF",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/SPC.png",
+ "price": "19.275",
+ "priceChange24hPercent": "0",
+ "marketCap": "18389449",
+ "volume24h": "0",
+ "key": "stock:SPC",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "CrossingBridge Pre-Merger SPAC ETF"
+ }
+ },
+ {
+ "symbol": "SPCE",
+ "name": "维珍银河",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/SPCE.png",
+ "price": "3.04",
+ "priceChange24hPercent": "2.7027",
+ "marketCap": "390753316",
+ "volume24h": "16809895.84",
+ "key": "stock:SPCE",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "维珍银河"
+ }
+ },
+ {
+ "symbol": "SPCX",
+ "name": "SpaceX",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/SPCX.png",
+ "price": "147.95",
+ "priceChange24hPercent": "-1.19541",
+ "marketCap": "1934574292144",
+ "volume24h": "7267658044.349999",
+ "key": "stock:SPCX",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "SpaceX"
+ }
+ },
+ {
+ "symbol": "SPG",
+ "name": "Simon Property Group, Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/SPG.png",
+ "price": "209.44",
+ "priceChange24hPercent": "-0.98336",
+ "marketCap": "67917622080",
+ "volume24h": "172299167.04",
+ "key": "stock:SPG",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Simon Property Group, Inc."
+ }
+ },
+ {
+ "symbol": "SPGI",
+ "name": "S&P Global Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/SPGI.png",
+ "price": "443.51",
+ "priceChange24hPercent": "-1.56909",
+ "marketCap": "130746748000",
+ "volume24h": "674754339.96",
+ "key": "stock:SPGI",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "S&P Global Inc."
+ }
+ },
+ {
+ "symbol": "SPOT",
+ "name": "Spotify",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/SPOT.png",
+ "price": "542.43",
+ "priceChange24hPercent": "-3.15652",
+ "marketCap": "111515040318",
+ "volume24h": "742202629.56",
+ "key": "stock:SPOT",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Spotify"
+ }
+ },
+ {
+ "symbol": "SPY",
+ "name": "标普500 ETF",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/SPY.png",
+ "price": "770.19",
+ "priceChange24hPercent": "-0.38543",
+ "marketCap": "820435829283",
+ "volume24h": "25385765084.670002",
+ "key": "stock:SPY",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "标普500 ETF"
+ }
+ },
+ {
+ "symbol": "SQQQ",
+ "name": "三倍做空纳指ETF",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/SQQQ.png",
+ "price": "38.18",
+ "priceChange24hPercent": "-0.41732",
+ "marketCap": "1732347440",
+ "volume24h": "1358956699.24",
+ "key": "stock:SQQQ",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "三倍做空纳指ETF"
+ }
+ },
+ {
+ "symbol": "SRE",
+ "name": "Sempra",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/SRE.png",
+ "price": "84.04",
+ "priceChange24hPercent": "-0.6267",
+ "marketCap": "54937536280",
+ "volume24h": "225860525.44000003",
+ "key": "stock:SRE",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Sempra"
+ }
+ },
+ {
+ "symbol": "SSNC",
+ "name": "SS&C Technologies Holdings, Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/SSNC.png",
+ "price": "83.65",
+ "priceChange24hPercent": "-1.15799",
+ "marketCap": "19628890917",
+ "volume24h": "172105859.8",
+ "key": "stock:SSNC",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "SS&C Technologies Holdings, Inc."
+ }
+ },
+ {
+ "symbol": "STLD",
+ "name": "Steel Dynamics, Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/STLD.png",
+ "price": "242.06",
+ "priceChange24hPercent": "-1.61362",
+ "marketCap": "34693999160",
+ "volume24h": "285107708.34",
+ "key": "stock:STLD",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Steel Dynamics, Inc."
+ }
+ },
+ {
+ "symbol": "STM",
+ "name": "意法半导体",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/STM.png",
+ "price": "52.24",
+ "priceChange24hPercent": "1.87207",
+ "marketCap": "46626560569",
+ "volume24h": "377206756",
+ "key": "stock:STM",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "意法半导体"
+ }
+ },
+ {
+ "symbol": "STNG",
+ "name": "Scorpio Tankers Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/STNG.png",
+ "price": "82.35",
+ "priceChange24hPercent": "2.79616",
+ "marketCap": "4124199337",
+ "volume24h": "86125088.69999999",
+ "key": "stock:STNG",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Scorpio Tankers Inc."
+ }
+ },
+ {
+ "symbol": "STRC",
+ "name": "微策略",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/STRC.png",
+ "price": "97.75",
+ "priceChange24hPercent": "-0.07156001",
+ "marketCap": "33717270739",
+ "volume24h": "129158443.5",
+ "key": "stock:STRC",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "微策略"
+ }
+ },
+ {
+ "symbol": "STRK",
+ "name": "微策略",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/STRK.png",
+ "price": "77.77",
+ "priceChange24hPercent": "0.869",
+ "marketCap": "23103342946",
+ "volume24h": "7451221.47",
+ "key": "stock:STRK",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "微策略"
+ }
+ },
+ {
+ "symbol": "STT",
+ "name": "State Street Corporation",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/STT.png",
+ "price": "194.26",
+ "priceChange24hPercent": "0.165",
+ "marketCap": "53764757420",
+ "volume24h": "217954280.72",
+ "key": "stock:STT",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "State Street Corporation"
+ }
+ },
+ {
+ "symbol": "STX",
+ "name": "希捷",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/STX.png",
+ "price": "849.28",
+ "priceChange24hPercent": "6.34477",
+ "marketCap": "190433205120",
+ "volume24h": "2173913905.92",
+ "key": "stock:STX",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "希捷"
+ }
+ },
+ {
+ "symbol": "STZ",
+ "name": "Constellation Brands, Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/STZ.png",
+ "price": "128.18",
+ "priceChange24hPercent": "-0.70493",
+ "marketCap": "21893701968",
+ "volume24h": "202618612.3",
+ "key": "stock:STZ",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Constellation Brands, Inc."
+ }
+ },
+ {
+ "symbol": "SUI",
+ "name": "Sun Communities, Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/SUI.png",
+ "price": "119.44",
+ "priceChange24hPercent": "-0.34209",
+ "marketCap": "14718681616",
+ "volume24h": "108322166.48",
+ "key": "stock:SUI",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Sun Communities, Inc."
+ }
+ },
+ {
+ "symbol": "SUOPT",
+ "name": "SUOPT",
+ "logoUrl": "https://uni-test.onekey-asset.com/utility/okx/token/9824cb0281e9d13feb825115f114d28cb6ca0babf261aa2a7a07e3ac8deabbbc",
+ "key": "stock:SUOPT",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "SUOPT"
+ }
+ },
+ {
+ "symbol": "SWK",
+ "name": "Stanley Black & Decker, Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/SWK.png",
+ "price": "97.36",
+ "priceChange24hPercent": "0.89119",
+ "marketCap": "14703015120",
+ "volume24h": "129853121.12",
+ "key": "stock:SWK",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Stanley Black & Decker, Inc."
+ }
+ },
+ {
+ "symbol": "SWKS",
+ "name": "Skyworks Solutions, Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/SWKS.png",
+ "price": "74.02",
+ "priceChange24hPercent": "3.52448",
+ "marketCap": "11137995324",
+ "volume24h": "355696078.09999996",
+ "key": "stock:SWKS",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Skyworks Solutions, Inc."
+ }
+ },
+ {
+ "symbol": "SWPRP",
+ "name": "SWPRP",
+ "logoUrl": "https://uni-test.onekey-asset.com/utility/okx/token/dcce5ee28c28badc02b7f045f792ad38e4e748484a9c8442d56bf69059050173",
+ "key": "stock:SWPRP",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "SWPRP"
+ }
+ },
+ {
+ "symbol": "SYF",
+ "name": "Synchrony Financial",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/SYF.png",
+ "price": "79.92",
+ "priceChange24hPercent": "0.08766437",
+ "marketCap": "26003637533",
+ "volume24h": "206994558.24",
+ "key": "stock:SYF",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Synchrony Financial"
+ }
+ },
+ {
+ "symbol": "SYK",
+ "name": "Stryker Corporation",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/SYK.png",
+ "price": "303.13",
+ "priceChange24hPercent": "-1.57797",
+ "marketCap": "116208147785",
+ "volume24h": "712087533.08",
+ "key": "stock:SYK",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Stryker Corporation"
+ }
+ },
+ {
+ "symbol": "SYM",
+ "name": "Symbotic Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/SYM.png",
+ "price": "42.94",
+ "priceChange24hPercent": "3.22115",
+ "marketCap": "27554468836",
+ "volume24h": "61357137.76",
+ "key": "stock:SYM",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Symbotic Inc."
+ }
+ },
+ {
+ "symbol": "SYSB",
+ "name": "iShares Systematic Bond ETF",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/SYSB.png",
+ "price": "86.81",
+ "priceChange24hPercent": "0.02880682",
+ "marketCap": "1163263810",
+ "volume24h": "4708487.59",
+ "key": "stock:SYSB",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "iShares Systematic Bond ETF"
+ }
+ },
+ {
+ "symbol": "SYY",
+ "name": "Sysco Corporation",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/SYY.png",
+ "price": "80.05",
+ "priceChange24hPercent": "-1.27035",
+ "marketCap": "38278549150",
+ "volume24h": "172359897.65",
+ "key": "stock:SYY",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Sysco Corporation"
+ }
+ },
+ {
+ "symbol": "SZIGH",
+ "name": "SZIGH",
+ "logoUrl": "https://uni-test.onekey-asset.com/utility/okx/token/66aedc5f5c2188a95e58082c54036a1426052ed3769d67ea017db7e87f9a5998",
+ "key": "stock:SZIGH",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "SZIGH"
+ }
+ },
+ {
+ "symbol": "T",
+ "name": "AT&T",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/T.png",
+ "price": "25.665",
+ "priceChange24hPercent": "-2.00458",
+ "marketCap": "175866589350",
+ "volume24h": "665540673.6",
+ "key": "stock:T",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "AT&T"
+ }
+ },
+ {
+ "symbol": "TASK",
+ "name": "TaskUs, Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/TASK.png",
+ "price": "7.91",
+ "priceChange24hPercent": "-2.10396",
+ "marketCap": "713590320",
+ "volume24h": "3543268.68",
+ "key": "stock:TASK",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "TaskUs, Inc."
+ }
+ },
+ {
+ "symbol": "TBLL",
+ "name": "美国3个月国债ETF",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/TBLL.png",
+ "price": "105.71",
+ "priceChange24hPercent": "0.0378537",
+ "marketCap": "2593839674",
+ "volume24h": "6053588.859999999",
+ "key": "stock:TBLL",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "美国3个月国债ETF"
+ }
+ },
+ {
+ "symbol": "TCENT",
+ "name": "TCENT",
+ "logoUrl": "https://uni-test.onekey-asset.com/utility/okx/token/df91b3559fda6b9a234c4d12327a5d207f8a87638c7e9d438044f22736d133dc",
+ "key": "stock:TCENT",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "TCENT"
+ }
+ },
+ {
+ "symbol": "TCOM",
+ "name": "携程",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/TCOM.png",
+ "price": "41.03",
+ "priceChange24hPercent": "-0.89372",
+ "marketCap": "26652408420",
+ "volume24h": "130346032.41",
+ "key": "stock:TCOM",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "携程"
+ }
+ },
+ {
+ "symbol": "TDG",
+ "name": "TransDigm Group Incorporated",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/TDG.png",
+ "price": "1162.05",
+ "priceChange24hPercent": "0.36447",
+ "marketCap": "64997639880",
+ "volume24h": "243908484.75",
+ "key": "stock:TDG",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "TransDigm Group Incorporated"
+ }
+ },
+ {
+ "symbol": "TDY",
+ "name": "Teledyne Technologies Incorporated",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/TDY.png",
+ "price": "610.65",
+ "priceChange24hPercent": "0.45733",
+ "marketCap": "28306128112",
+ "volume24h": "90920289.14999999",
+ "key": "stock:TDY",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Teledyne Technologies Incorporated"
+ }
+ },
+ {
+ "symbol": "TE",
+ "name": "T1 Energy Inc",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/TE.png",
+ "price": "4.6",
+ "priceChange24hPercent": "1.4333",
+ "marketCap": "1283569036",
+ "volume24h": "67587795.39999999",
+ "key": "stock:TE",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "T1 Energy Inc"
+ }
+ },
+ {
+ "symbol": "TEAM",
+ "name": "Atlassian Corporation",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/TEAM.png",
+ "price": "189.58",
+ "priceChange24hPercent": "-2.61968",
+ "marketCap": "49797796638",
+ "volume24h": "468977127.02000004",
+ "key": "stock:TEAM",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Atlassian Corporation"
+ }
+ },
+ {
+ "symbol": "TEL",
+ "name": "TE Connectivity plc",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/TEL.png",
+ "price": "208.65",
+ "priceChange24hPercent": "-0.36292",
+ "marketCap": "60496121213",
+ "volume24h": "421243902.3",
+ "key": "stock:TEL",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "TE Connectivity plc"
+ }
+ },
+ {
+ "symbol": "TEN",
+ "name": "Tsakos Energy Navigation Limited",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/TEN.png",
+ "price": "43.74",
+ "priceChange24hPercent": "1.06285",
+ "marketCap": "1317781355",
+ "volume24h": "9679749.48",
+ "key": "stock:TEN",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Tsakos Energy Navigation Limited"
+ }
+ },
+ {
+ "symbol": "TER",
+ "name": "Teradyne, Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/TER.png",
+ "price": "357.03",
+ "priceChange24hPercent": "5.44611",
+ "marketCap": "55818427230",
+ "volume24h": "802401003.9899999",
+ "key": "stock:TER",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Teradyne, Inc."
+ }
+ },
+ {
+ "symbol": "TFC",
+ "name": "Truist Financial Corporation",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/TFC.png",
+ "price": "51.65",
+ "priceChange24hPercent": "0.07750436",
+ "marketCap": "64349702000",
+ "volume24h": "226473525.45",
+ "key": "stock:TFC",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Truist Financial Corporation"
+ }
+ },
+ {
+ "symbol": "THC",
+ "name": "Tenet Healthcare Corporation",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/THC.png",
+ "price": "265.05",
+ "priceChange24hPercent": "0.59205",
+ "marketCap": "21341562010",
+ "volume24h": "147704943.6",
+ "key": "stock:THC",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Tenet Healthcare Corporation"
+ }
+ },
+ {
+ "symbol": "TIP",
+ "name": "iShares TIPS Bond ETF",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/TIP.png",
+ "price": "106.97",
+ "priceChange24hPercent": "-0.02336558",
+ "marketCap": "14720410837",
+ "volume24h": "108138754.22",
+ "key": "stock:TIP",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "iShares TIPS Bond ETF"
+ }
+ },
+ {
+ "symbol": "TJ",
+ "name": "TJ",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/TJ.png",
+ "key": "stock:TJ",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "TJ"
+ }
+ },
+ {
+ "symbol": "TJX",
+ "name": "The TJX Companies, Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/TJX.png",
+ "price": "132.08",
+ "priceChange24hPercent": "-0.08321356",
+ "marketCap": "145909363228",
+ "volume24h": "905241847.1200001",
+ "key": "stock:TJX",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "The TJX Companies, Inc."
+ }
+ },
+ {
+ "symbol": "TLN",
+ "name": "Talen Energy Corporation",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/TLN.png",
+ "price": "317",
+ "priceChange24hPercent": "3.75753",
+ "marketCap": "14390217536",
+ "volume24h": "183146750",
+ "key": "stock:TLN",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Talen Energy Corporation"
+ }
+ },
+ {
+ "symbol": "TLT",
+ "name": "20年国债ETF",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/TLT.png",
+ "price": "82.21",
+ "priceChange24hPercent": "0.17059",
+ "marketCap": "41558996997",
+ "volume24h": "1364023798.4499998",
+ "key": "stock:TLT",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "20年国债ETF"
+ }
+ },
+ {
+ "symbol": "TM",
+ "name": "丰田",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/TM.png",
+ "price": "197.11",
+ "priceChange24hPercent": "-1.3809",
+ "marketCap": "233414630448",
+ "volume24h": "64367650.27",
+ "key": "stock:TM",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "丰田"
+ }
+ },
+ {
+ "symbol": "TMO",
+ "name": "赛默飞",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/TMO.png",
+ "price": "613.78",
+ "priceChange24hPercent": "-0.7519",
+ "marketCap": "228093537380",
+ "volume24h": "746494580.5",
+ "key": "stock:TMO",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "赛默飞"
+ }
+ },
+ {
+ "symbol": "TMUS",
+ "name": "T-Mobile US",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/TMUS.png",
+ "price": "181.52",
+ "priceChange24hPercent": "-3.45708",
+ "marketCap": "194711351192",
+ "volume24h": "818674622.6400001",
+ "key": "stock:TMUS",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "T-Mobile US"
+ }
+ },
+ {
+ "symbol": "TNGYI",
+ "name": "TNGYI",
+ "logoUrl": "https://uni-test.onekey-asset.com/utility/okx/token/0f00417acf0368c5132178be3e27403e83e125019290a972d1901905ae93a9e8",
+ "key": "stock:TNGYI",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "TNGYI"
+ }
+ },
+ {
+ "symbol": "TNK",
+ "name": "Teekay Tankers Ltd.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/TNK.png",
+ "price": "93.37",
+ "priceChange24hPercent": "1.67701",
+ "marketCap": "3234696928",
+ "volume24h": "42316964.660000004",
+ "key": "stock:TNK",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Teekay Tankers Ltd."
+ }
+ },
+ {
+ "symbol": "TOL",
+ "name": "Toll Brothers, Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/TOL.png",
+ "price": "141.77",
+ "priceChange24hPercent": "-0.02115656",
+ "marketCap": "13251383670",
+ "volume24h": "79509294.41000001",
+ "key": "stock:TOL",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Toll Brothers, Inc."
+ }
+ },
+ {
+ "symbol": "TON",
+ "name": "TON",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/TON.png",
+ "key": "stock:TON",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "TON"
+ }
+ },
+ {
+ "symbol": "TONX",
+ "name": "TON Strategy Co.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/TONX.png",
+ "price": "3.32",
+ "priceChange24hPercent": "-2.92398",
+ "marketCap": "187681648",
+ "volume24h": "877595.5199999999",
+ "key": "stock:TONX",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "TON Strategy Co."
+ }
+ },
+ {
+ "symbol": "TPL",
+ "name": "Texas Pacific Land Corporation",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/TPL.png",
+ "price": "362.42",
+ "priceChange24hPercent": "-1.11323",
+ "marketCap": "24997702048",
+ "volume24h": "96843697.88000001",
+ "key": "stock:TPL",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Texas Pacific Land Corporation"
+ }
+ },
+ {
+ "symbol": "TPR",
+ "name": "Tapestry, Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/TPR.png",
+ "price": "122.14",
+ "priceChange24hPercent": "0.00245626",
+ "marketCap": "24677776300",
+ "volume24h": "301814657.7",
+ "key": "stock:TPR",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Tapestry, Inc."
+ }
+ },
+ {
+ "symbol": "TQQQ",
+ "name": "三倍做多纳指ETF",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/TQQQ.png",
+ "price": "72.37",
+ "priceChange24hPercent": "0.47203",
+ "marketCap": "44436706139",
+ "volume24h": "3426881608.8",
+ "key": "stock:TQQQ",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "三倍做多纳指ETF"
+ }
+ },
+ {
+ "symbol": "TRGP",
+ "name": "Targa Resources Corp.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/TRGP.png",
+ "price": "290.05",
+ "priceChange24hPercent": "-1.18894",
+ "marketCap": "62257492200",
+ "volume24h": "167769560.8",
+ "key": "stock:TRGP",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Targa Resources Corp."
+ }
+ },
+ {
+ "symbol": "TRMB",
+ "name": "Trimble Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/TRMB.png",
+ "price": "59.47",
+ "priceChange24hPercent": "-1.04825",
+ "marketCap": "13863142035",
+ "volume24h": "162454853.17",
+ "key": "stock:TRMB",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Trimble Inc."
+ }
+ },
+ {
+ "symbol": "TROW",
+ "name": "T. Rowe Price Group, Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/TROW.png",
+ "price": "109.78",
+ "priceChange24hPercent": "-0.99206",
+ "marketCap": "23522231260",
+ "volume24h": "108550573.78",
+ "key": "stock:TROW",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "T. Rowe Price Group, Inc."
+ }
+ },
+ {
+ "symbol": "TRU",
+ "name": "TransUnion",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/TRU.png",
+ "price": "79.88",
+ "priceChange24hPercent": "-5.935",
+ "marketCap": "15305008000",
+ "volume24h": "334439427.24",
+ "key": "stock:TRU",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "TransUnion"
+ }
+ },
+ {
+ "symbol": "TRV",
+ "name": "The Travelers Companies, Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/TRV.png",
+ "price": "369.35",
+ "priceChange24hPercent": "-1.33169",
+ "marketCap": "77037184376",
+ "volume24h": "425743466.05",
+ "key": "stock:TRV",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "The Travelers Companies, Inc."
+ }
+ },
+ {
+ "symbol": "TSCO",
+ "name": "Tractor Supply Company",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/TSCO.png",
+ "price": "34.99",
+ "priceChange24hPercent": "1.12717",
+ "marketCap": "18350505500",
+ "volume24h": "229793955.82000002",
+ "key": "stock:TSCO",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Tractor Supply Company"
+ }
+ },
+ {
+ "symbol": "TSEM",
+ "name": "Tower Semiconductor Ltd.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/TSEM.png",
+ "price": "222.335",
+ "priceChange24hPercent": "7.84585",
+ "marketCap": "25084933035",
+ "volume24h": "383593241.49",
+ "key": "stock:TSEM",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Tower Semiconductor Ltd."
+ }
+ },
+ {
+ "symbol": "TSLA",
+ "name": "特斯拉",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/TSLA.png",
+ "price": "354.08",
+ "priceChange24hPercent": "-5.92111",
+ "marketCap": "1398455741268",
+ "volume24h": "23021647442.719997",
+ "key": "stock:TSLA",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "特斯拉"
+ }
+ },
+ {
+ "symbol": "TSM",
+ "name": "台积电",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/TSM.png",
+ "price": "428.91",
+ "priceChange24hPercent": "2.85365",
+ "marketCap": "2224533136800",
+ "volume24h": "5261764083.780001",
+ "key": "stock:TSM",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "台积电"
+ }
+ },
+ {
+ "symbol": "TSN",
+ "name": "Tyson Foods, Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/TSN.png",
+ "price": "51.42",
+ "priceChange24hPercent": "-0.65688",
+ "marketCap": "18229409093",
+ "volume24h": "290556114.48",
+ "key": "stock:TSN",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Tyson Foods, Inc."
+ }
+ },
+ {
+ "symbol": "TT",
+ "name": "Trane Technologies plc",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/TT.png",
+ "price": "447.9",
+ "priceChange24hPercent": "0.60873",
+ "marketCap": "98548383666",
+ "volume24h": "430643756.7",
+ "key": "stock:TT",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Trane Technologies plc"
+ }
+ },
+ {
+ "symbol": "TTMI",
+ "name": "TTM Technologies, Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/TTMI.png",
+ "price": "125.6",
+ "priceChange24hPercent": "8.84825",
+ "marketCap": "13043560000",
+ "volume24h": "291565830.4",
+ "key": "stock:TTMI",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "TTM Technologies, Inc."
+ }
+ },
+ {
+ "symbol": "TTWO",
+ "name": "Take-Two Interactive Software, Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/TTWO.png",
+ "price": "214.69",
+ "priceChange24hPercent": "0.26152",
+ "marketCap": "40142736200",
+ "volume24h": "446811754.55",
+ "key": "stock:TTWO",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Take-Two Interactive Software, Inc."
+ }
+ },
+ {
+ "symbol": "TW",
+ "name": "Tradeweb Markets Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/TW.png",
+ "price": "106.2",
+ "priceChange24hPercent": "0.8164",
+ "marketCap": "22608518369",
+ "volume24h": "162677903.4",
+ "key": "stock:TW",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Tradeweb Markets Inc."
+ }
+ },
+ {
+ "symbol": "TWLO",
+ "name": "Twilio Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/TWLO.png",
+ "price": "232.98",
+ "priceChange24hPercent": "-3.11876",
+ "marketCap": "35360273903",
+ "volume24h": "339534334.91999996",
+ "key": "stock:TWLO",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Twilio Inc."
+ }
+ },
+ {
+ "symbol": "TWST",
+ "name": "Twist Bioscience Corporation",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/TWST.png",
+ "price": "124.72",
+ "priceChange24hPercent": "-3.09999",
+ "marketCap": "7766476536",
+ "volume24h": "112478732",
+ "key": "stock:TWST",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Twist Bioscience Corporation"
+ }
+ },
+ {
+ "symbol": "TXN",
+ "name": "德州仪器",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/TXN.png",
+ "price": "258.44",
+ "priceChange24hPercent": "1.81618",
+ "marketCap": "236019731970",
+ "volume24h": "1096823236.6",
+ "key": "stock:TXN",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "德州仪器"
+ }
+ },
+ {
+ "symbol": "TXT",
+ "name": "Textron Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/TXT.png",
+ "price": "79.07",
+ "priceChange24hPercent": "-0.37798",
+ "marketCap": "13599012090",
+ "volume24h": "161106231.98",
+ "key": "stock:TXT",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Textron Inc."
+ }
+ },
+ {
+ "symbol": "TYL",
+ "name": "Tyler Technologies, Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/TYL.png",
+ "price": "364.03",
+ "priceChange24hPercent": "-4.01825",
+ "marketCap": "14907865769",
+ "volume24h": "229104828.70999998",
+ "key": "stock:TYL",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Tyler Technologies, Inc."
+ }
+ },
+ {
+ "symbol": "UAL",
+ "name": "United Airlines Holdings, Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/UAL.png",
+ "price": "111.38",
+ "priceChange24hPercent": "2.50322",
+ "marketCap": "36150576305",
+ "volume24h": "326694247",
+ "key": "stock:UAL",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "United Airlines Holdings, Inc."
+ }
+ },
+ {
+ "symbol": "UAMY",
+ "name": "United States Antimony Corporation",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/UAMY.png",
+ "price": "5.2",
+ "priceChange24hPercent": "1.16732",
+ "marketCap": "770565234",
+ "volume24h": "23547217.2",
+ "key": "stock:UAMY",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "United States Antimony Corporation"
+ }
+ },
+ {
+ "symbol": "UBER",
+ "name": "优步",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/UBER.png",
+ "price": "75.76",
+ "priceChange24hPercent": "-0.25673",
+ "marketCap": "154216981225",
+ "volume24h": "1069346490.72",
+ "key": "stock:UBER",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "优步"
+ }
+ },
+ {
+ "symbol": "UCTT",
+ "name": "Ultra Clean Holdings, Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/UCTT.png",
+ "price": "72.43",
+ "priceChange24hPercent": "8.77009",
+ "marketCap": "3246921012",
+ "volume24h": "106203312.27000001",
+ "key": "stock:UCTT",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Ultra Clean Holdings, Inc."
+ }
+ },
+ {
+ "symbol": "UDR",
+ "name": "UDR, Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/UDR.png",
+ "price": "36.38",
+ "priceChange24hPercent": "0.02749519",
+ "marketCap": "11687592396",
+ "volume24h": "82882225.68",
+ "key": "stock:UDR",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "UDR, Inc."
+ }
+ },
+ {
+ "symbol": "UEC",
+ "name": "铀能源",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/UEC.png",
+ "price": "11.54",
+ "priceChange24hPercent": "0.26064",
+ "marketCap": "5710822880",
+ "volume24h": "57592724.16",
+ "key": "stock:UEC",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "铀能源"
+ }
+ },
+ {
+ "symbol": "ULTA",
+ "name": "Ulta Beauty, Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/ULTA.png",
+ "price": "564.12",
+ "priceChange24hPercent": "1.25828",
+ "marketCap": "24251130121",
+ "volume24h": "290983814.28000003",
+ "key": "stock:ULTA",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Ulta Beauty, Inc."
+ }
+ },
+ {
+ "symbol": "UMC",
+ "name": "联华电子",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/UMC.png",
+ "price": "20.77",
+ "priceChange24hPercent": "4.58207",
+ "marketCap": "51807813791",
+ "volume24h": "207116861.48",
+ "key": "stock:UMC",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "联华电子"
+ }
+ },
+ {
+ "symbol": "UNG",
+ "name": "United States Natural Gas Fund LP",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/UNG.png",
+ "price": "10.56",
+ "priceChange24hPercent": "0.67018",
+ "marketCap": "441850295",
+ "volume24h": "172057892.16",
+ "key": "stock:UNG",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "United States Natural Gas Fund LP"
+ }
+ },
+ {
+ "symbol": "UNH",
+ "name": "联合健康",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/UNH.png",
+ "price": "397.14",
+ "priceChange24hPercent": "-0.94777",
+ "marketCap": "360660468605",
+ "volume24h": "1916737036.1399999",
+ "key": "stock:UNH",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "联合健康"
+ }
+ },
+ {
+ "symbol": "UNM",
+ "name": "Unum Group",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/UNM.png",
+ "price": "95.85",
+ "priceChange24hPercent": "-0.74557",
+ "marketCap": "15173725950",
+ "volume24h": "118133495.55",
+ "key": "stock:UNM",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Unum Group"
+ }
+ },
+ {
+ "symbol": "UNP",
+ "name": "联合太平洋",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/UNP.png",
+ "price": "289.62",
+ "priceChange24hPercent": "0.16428",
+ "marketCap": "172056145731",
+ "volume24h": "368956765.08",
+ "key": "stock:UNP",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "联合太平洋"
+ }
+ },
+ {
+ "symbol": "UPS",
+ "name": "United Parcel Service, Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/UPS.png",
+ "price": "102.3",
+ "priceChange24hPercent": "-1.15942",
+ "marketCap": "86904071582",
+ "volume24h": "316675481.09999996",
+ "key": "stock:UPS",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "United Parcel Service, Inc."
+ }
+ },
+ {
+ "symbol": "URA",
+ "name": "Global X铀ETF",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/URA.png",
+ "price": "46.06",
+ "priceChange24hPercent": "0.78775",
+ "marketCap": "4598432941",
+ "volume24h": "122185020.16000001",
+ "key": "stock:URA",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Global X铀ETF"
+ }
+ },
+ {
+ "symbol": "URI",
+ "name": "United Rentals, Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/URI.png",
+ "price": "1009.86",
+ "priceChange24hPercent": "1.60886",
+ "marketCap": "62856211050",
+ "volume24h": "319208667.12",
+ "key": "stock:URI",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "United Rentals, Inc."
+ }
+ },
+ {
+ "symbol": "URNM",
+ "name": "Sprott Uranium Miners ETF",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/URNM.png",
+ "price": "57.07",
+ "priceChange24hPercent": "-0.21855",
+ "marketCap": "1323416205",
+ "volume24h": "18906891.51",
+ "key": "stock:URNM",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Sprott Uranium Miners ETF"
+ }
+ },
+ {
+ "symbol": "USAR",
+ "name": "美国稀土",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/USAR.png",
+ "price": "17.61",
+ "priceChange24hPercent": "-0.45223",
+ "marketCap": "2335765059",
+ "volume24h": "390777328.89",
+ "key": "stock:USAR",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "美国稀土"
+ }
+ },
+ {
+ "symbol": "USB",
+ "name": "U.S. Bancorp",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/USB.png",
+ "price": "63.37",
+ "priceChange24hPercent": "-0.25185",
+ "marketCap": "98713459603",
+ "volume24h": "286463641.40999997",
+ "key": "stock:USB",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "U.S. Bancorp"
+ }
+ },
+ {
+ "symbol": "USFD",
+ "name": "US Foods Holding Corp.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/USFD.png",
+ "price": "104.04",
+ "priceChange24hPercent": "-0.35437",
+ "marketCap": "22911896880",
+ "volume24h": "126959179.68",
+ "key": "stock:USFD",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "US Foods Holding Corp."
+ }
+ },
+ {
+ "symbol": "USFR",
+ "name": "浮动利率国债ETF",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/USFR.png",
+ "price": "50.39",
+ "priceChange24hPercent": "0.01984612",
+ "marketCap": "17761132358",
+ "volume24h": "300470329.44",
+ "key": "stock:USFR",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "浮动利率国债ETF"
+ }
+ },
+ {
+ "symbol": "USO",
+ "name": "原油ETF",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/USO.png",
+ "price": "141.96",
+ "priceChange24hPercent": "-0.09149131",
+ "marketCap": "16907435006",
+ "volume24h": "523317653.04",
+ "key": "stock:USO",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "原油ETF"
+ }
+ },
+ {
+ "symbol": "USP",
+ "name": "USP",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/USP.png",
+ "key": "stock:USP",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "USP"
+ }
+ },
+ {
+ "symbol": "USPX",
+ "name": "Franklin U.S. Equity Index ETF",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/USPX.png",
+ "price": "67.34",
+ "priceChange24hPercent": "-0.3631",
+ "marketCap": "2065644130",
+ "volume24h": "1979391.9600000002",
+ "key": "stock:USPX",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Franklin U.S. Equity Index ETF"
+ }
+ },
+ {
+ "symbol": "UTHR",
+ "name": "United Therapeutics Corporation",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/UTHR.png",
+ "price": "487.61",
+ "priceChange24hPercent": "-0.53647",
+ "marketCap": "20697435387",
+ "volume24h": "159460172.64000002",
+ "key": "stock:UTHR",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "United Therapeutics Corporation"
+ }
+ },
+ {
+ "symbol": "UUUU",
+ "name": "能源燃料",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/UUUU.png",
+ "price": "14.47",
+ "priceChange24hPercent": "0.87138",
+ "marketCap": "3616329956",
+ "volume24h": "69504778.37",
+ "key": "stock:UUUU",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "能源燃料"
+ }
+ },
+ {
+ "symbol": "V",
+ "name": "维萨",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/V.png",
+ "price": "375.07",
+ "priceChange24hPercent": "-0.97162",
+ "marketCap": "700273397430",
+ "volume24h": "1730302929.6",
+ "key": "stock:V",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "维萨"
+ }
+ },
+ {
+ "symbol": "VCX",
+ "name": "Fundrise Innovation Fund, LLC",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/VCX.png",
+ "price": "36.88",
+ "priceChange24hPercent": "-0.29738",
+ "marketCap": "1654990000",
+ "volume24h": "15017978.56",
+ "key": "stock:VCX",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Fundrise Innovation Fund, LLC"
+ }
+ },
+ {
+ "symbol": "VDE",
+ "name": "Vanguard Energy ETF",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/VDE.png",
+ "price": "180.58",
+ "priceChange24hPercent": "-0.86737",
+ "marketCap": "11908134835",
+ "volume24h": "77312257.14",
+ "key": "stock:VDE",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Vanguard Energy ETF"
+ }
+ },
+ {
+ "symbol": "VEEV",
+ "name": "Veeva Systems Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/VEEV.png",
+ "price": "275.09",
+ "priceChange24hPercent": "-3.26676",
+ "marketCap": "44686524921",
+ "volume24h": "316889375.32",
+ "key": "stock:VEEV",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Veeva Systems Inc."
+ }
+ },
+ {
+ "symbol": "VFS",
+ "name": "VinFast",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/VFS.png",
+ "price": "3.08",
+ "priceChange24hPercent": "0",
+ "marketCap": "7205770880",
+ "volume24h": "596448.16",
+ "key": "stock:VFS",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "VinFast"
+ }
+ },
+ {
+ "symbol": "VGK",
+ "name": "先锋富时欧洲ETF",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/VGK.png",
+ "price": "91.74",
+ "priceChange24hPercent": "0",
+ "marketCap": "38343259588",
+ "volume24h": "99296715.53999999",
+ "key": "stock:VGK",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "先锋富时欧洲ETF"
+ }
+ },
+ {
+ "symbol": "VICI",
+ "name": "VICI Properties Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/VICI.png",
+ "price": "25.42",
+ "priceChange24hPercent": "-0.89669",
+ "marketCap": "27989391270",
+ "volume24h": "422222539.52000004",
+ "key": "stock:VICI",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "VICI Properties Inc."
+ }
+ },
+ {
+ "symbol": "VICR",
+ "name": "Vicor Corporation",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/VICR.png",
+ "price": "188.55",
+ "priceChange24hPercent": "5.47662",
+ "marketCap": "8547648017",
+ "volume24h": "95721932.7",
+ "key": "stock:VICR",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Vicor Corporation"
+ }
+ },
+ {
+ "symbol": "VIDA",
+ "name": "VIDA Global Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/VIDA.png",
+ "price": "2",
+ "priceChange24hPercent": "-19.67871",
+ "marketCap": "40018668",
+ "volume24h": "724812",
+ "key": "stock:VIDA",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "VIDA Global Inc."
+ }
+ },
+ {
+ "symbol": "VIK",
+ "name": "Viking Holdings Ltd",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/VIK.png",
+ "price": "85.81",
+ "priceChange24hPercent": "0.27461",
+ "marketCap": "38119287916",
+ "volume24h": "183060189.20000002",
+ "key": "stock:VIK",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Viking Holdings Ltd"
+ }
+ },
+ {
+ "symbol": "VLO",
+ "name": "Valero Energy Corporation",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/VLO.png",
+ "price": "370.72",
+ "priceChange24hPercent": "0.00944198",
+ "marketCap": "106740468713",
+ "volume24h": "1051102416.0000001",
+ "key": "stock:VLO",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Valero Energy Corporation"
+ }
+ },
+ {
+ "symbol": "VLTO",
+ "name": "Veralto Corporation",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/VLTO.png",
+ "price": "96.31",
+ "priceChange24hPercent": "-1.604",
+ "marketCap": "23479737539",
+ "volume24h": "129180795.62",
+ "key": "stock:VLTO",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Veralto Corporation"
+ }
+ },
+ {
+ "symbol": "VMC",
+ "name": "Vulcan Materials Company",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/VMC.png",
+ "price": "262.63",
+ "priceChange24hPercent": "0.92226",
+ "marketCap": "34031332770",
+ "volume24h": "280477284.28",
+ "key": "stock:VMC",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Vulcan Materials Company"
+ }
+ },
+ {
+ "symbol": "VNQ",
+ "name": "Vanguard Real Estate ETF",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/VNQ.png",
+ "price": "96.02",
+ "priceChange24hPercent": "-0.66212",
+ "marketCap": "69291360341",
+ "volume24h": "391838992.12",
+ "key": "stock:VNQ",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Vanguard Real Estate ETF"
+ }
+ },
+ {
+ "symbol": "VOO",
+ "name": "先锋标普500",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/VOO.png",
+ "price": "708.01",
+ "priceChange24hPercent": "-0.3813",
+ "marketCap": "1723888520272",
+ "volume24h": "4804414966.01",
+ "key": "stock:VOO",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "先锋标普500"
+ }
+ },
+ {
+ "symbol": "VPG",
+ "name": "Vishay Precision Group, Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/VPG.png",
+ "price": "63.01",
+ "priceChange24hPercent": "0.39834",
+ "marketCap": "839342411",
+ "volume24h": "17066069.47",
+ "key": "stock:VPG",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Vishay Precision Group, Inc."
+ }
+ },
+ {
+ "symbol": "VRSK",
+ "name": "Verisk Analytics, Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/VRSK.png",
+ "price": "185.79",
+ "priceChange24hPercent": "-2.52361",
+ "marketCap": "24181686770",
+ "volume24h": "158743434.95999998",
+ "key": "stock:VRSK",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Verisk Analytics, Inc."
+ }
+ },
+ {
+ "symbol": "VRSN",
+ "name": "VeriSign, Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/VRSN.png",
+ "price": "292.08",
+ "priceChange24hPercent": "-0.43293",
+ "marketCap": "26404032000",
+ "volume24h": "144460431.35999998",
+ "key": "stock:VRSN",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "VeriSign, Inc."
+ }
+ },
+ {
+ "symbol": "VRT",
+ "name": "Vertiv Holdings Co",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/VRT.png",
+ "price": "280.53",
+ "priceChange24hPercent": "4.35219",
+ "marketCap": "108000683640",
+ "volume24h": "926540655.66",
+ "key": "stock:VRT",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Vertiv Holdings Co"
+ }
+ },
+ {
+ "symbol": "VRTX",
+ "name": "福泰制药",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/VRTX.png",
+ "price": "546.12",
+ "priceChange24hPercent": "-2.12202",
+ "marketCap": "138607986600",
+ "volume24h": "438820526.88",
+ "key": "stock:VRTX",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "福泰制药"
+ }
+ },
+ {
+ "symbol": "VSH",
+ "name": "Vishay Intertechnology, Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/VSH.png",
+ "price": "31.8",
+ "priceChange24hPercent": "4.4335",
+ "marketCap": "4492728041",
+ "volume24h": "71712752.4",
+ "key": "stock:VSH",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Vishay Intertechnology, Inc."
+ }
+ },
+ {
+ "symbol": "VST",
+ "name": "Vistra",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/VST.png",
+ "price": "149.3",
+ "priceChange24hPercent": "3.5224",
+ "marketCap": "50341342472",
+ "volume24h": "684515119",
+ "key": "stock:VST",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Vistra"
+ }
+ },
+ {
+ "symbol": "VT",
+ "name": "先锋全球股票ETF",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/VT.png",
+ "price": "161.73",
+ "priceChange24hPercent": "-0.01854599",
+ "marketCap": "100361027010",
+ "volume24h": "246654099.54",
+ "key": "stock:VT",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "先锋全球股票ETF"
+ }
+ },
+ {
+ "symbol": "VTI",
+ "name": "美股全市场ETF",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/VTI.png",
+ "price": "379.73",
+ "priceChange24hPercent": "-0.31502",
+ "marketCap": "2294441087421",
+ "volume24h": "997141740.7900001",
+ "key": "stock:VTI",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "美股全市场ETF"
+ }
+ },
+ {
+ "symbol": "VTR",
+ "name": "Ventas, Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/VTR.png",
+ "price": "90.27",
+ "priceChange24hPercent": "-1.99761",
+ "marketCap": "43886565900",
+ "volume24h": "288844953.03",
+ "key": "stock:VTR",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Ventas, Inc."
+ }
+ },
+ {
+ "symbol": "VTRS",
+ "name": "Viatris Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/VTRS.png",
+ "price": "16.88",
+ "priceChange24hPercent": "-0.35419",
+ "marketCap": "19657648800",
+ "volume24h": "96769512.08",
+ "key": "stock:VTRS",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Viatris Inc."
+ }
+ },
+ {
+ "symbol": "VTV",
+ "name": "Vanguard Morningstar Value ETF",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/VTV.png",
+ "price": "226.46",
+ "priceChange24hPercent": "-0.24667",
+ "marketCap": "261795133764",
+ "volume24h": "397335393",
+ "key": "stock:VTV",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Vanguard Morningstar Value ETF"
+ }
+ },
+ {
+ "symbol": "VUG",
+ "name": "先锋成长ETF",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/VUG.png",
+ "price": "88.45",
+ "priceChange24hPercent": "-0.4838",
+ "marketCap": "393718496514",
+ "volume24h": "308953373.40000004",
+ "key": "stock:VUG",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "先锋成长ETF"
+ }
+ },
+ {
+ "symbol": "VXUS",
+ "name": "Vanguard Total International Stock ETF",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/VXUS.png",
+ "price": "88.41",
+ "priceChange24hPercent": "0.50017",
+ "marketCap": "679525446932",
+ "volume24h": "582092766.15",
+ "key": "stock:VXUS",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Vanguard Total International Stock ETF"
+ }
+ },
+ {
+ "symbol": "VZ",
+ "name": "威瑞森",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/VZ.png",
+ "price": "50.14",
+ "priceChange24hPercent": "-0.87971",
+ "marketCap": "209362578400",
+ "volume24h": "672671771.94",
+ "key": "stock:VZ",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "威瑞森"
+ }
+ },
+ {
+ "symbol": "WAB",
+ "name": "Westinghouse Air Brake Technologies Corporation",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/WAB.png",
+ "price": "282.86",
+ "priceChange24hPercent": "0.72286",
+ "marketCap": "47778165460",
+ "volume24h": "125608791.62",
+ "key": "stock:WAB",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Westinghouse Air Brake Technologies Corporation"
+ }
+ },
+ {
+ "symbol": "WAT",
+ "name": "Waters Corporation",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/WAT.png",
+ "price": "409.38",
+ "priceChange24hPercent": "-1.01074",
+ "marketCap": "30617868348",
+ "volume24h": "144133282.26",
+ "key": "stock:WAT",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Waters Corporation"
+ }
+ },
+ {
+ "symbol": "WBD",
+ "name": "华纳兄弟探索",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/WBD.png",
+ "price": "28.25",
+ "priceChange24hPercent": "-0.42298",
+ "marketCap": "70826611832",
+ "volume24h": "324648378.5",
+ "key": "stock:WBD",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "华纳兄弟探索"
+ }
+ },
+ {
+ "symbol": "WBS",
+ "name": "Webster Financial Corporation",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/WBS.png",
+ "price": "77.57",
+ "priceChange24hPercent": "-0.51302",
+ "marketCap": "12568899810",
+ "volume24h": "7082639309.679999",
+ "key": "stock:WBS",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Webster Financial Corporation"
+ }
+ },
+ {
+ "symbol": "WCC",
+ "name": "WESCO International, Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/WCC.png",
+ "price": "351.46",
+ "priceChange24hPercent": "3.86855",
+ "marketCap": "17127648867",
+ "volume24h": "154116967.29999998",
+ "key": "stock:WCC",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "WESCO International, Inc."
+ }
+ },
+ {
+ "symbol": "WDAY",
+ "name": "Workday, Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/WDAY.png",
+ "price": "195.79",
+ "priceChange24hPercent": "-5.37889",
+ "marketCap": "51285645130",
+ "volume24h": "560935608.9399999",
+ "key": "stock:WDAY",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Workday, Inc."
+ }
+ },
+ {
+ "symbol": "WDC",
+ "name": "西部数据",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/WDC.png",
+ "price": "467.46",
+ "priceChange24hPercent": "5.86317",
+ "marketCap": "161125047720",
+ "volume24h": "2717005136.58",
+ "key": "stock:WDC",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "西部数据"
+ }
+ },
+ {
+ "symbol": "WEC",
+ "name": "WEC Energy Group, Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/WEC.png",
+ "price": "105.94",
+ "priceChange24hPercent": "-0.71228",
+ "marketCap": "34507412440",
+ "volume24h": "166409492.6",
+ "key": "stock:WEC",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "WEC Energy Group, Inc."
+ }
+ },
+ {
+ "symbol": "WELL",
+ "name": "Welltower Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/WELL.png",
+ "price": "236.17",
+ "priceChange24hPercent": "-2.05292",
+ "marketCap": "170177491838",
+ "volume24h": "474254157.84999996",
+ "key": "stock:WELL",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Welltower Inc."
+ }
+ },
+ {
+ "symbol": "WEN",
+ "name": "The Wendy's Company",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/WEN.png",
+ "price": "8.03",
+ "priceChange24hPercent": "1.90355",
+ "marketCap": "1529562430",
+ "volume24h": "40299687.23",
+ "key": "stock:WEN",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "The Wendy's Company"
+ }
+ },
+ {
+ "symbol": "WFC",
+ "name": "富国银行",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/WFC.png",
+ "price": "89.96",
+ "priceChange24hPercent": "0.86333",
+ "marketCap": "272039040000",
+ "volume24h": "712161682.9599999",
+ "key": "stock:WFC",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "富国银行"
+ }
+ },
+ {
+ "symbol": "WHGRO",
+ "name": "WHGRO",
+ "logoUrl": "https://uni-test.onekey-asset.com/utility/okx/token/51b8e97bbb03df048fe8b1c69ed4b495319f6acf9f9697ebfdbdaf5a0f35af3d",
+ "key": "stock:WHGRO",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "WHGRO"
+ }
+ },
+ {
+ "symbol": "WHRFR",
+ "name": "WHRFR",
+ "logoUrl": "https://uni-test.onekey-asset.com/utility/okx/token/65f63c6b11f9481f0a6ea7ddec5606cf674bf6fa345f340c03b2487eed774290",
+ "key": "stock:WHRFR",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "WHRFR"
+ }
+ },
+ {
+ "symbol": "WLK",
+ "name": "Westlake Corporation",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/WLK.png",
+ "price": "74.79",
+ "priceChange24hPercent": "0.25469",
+ "marketCap": "9582314982",
+ "volume24h": "42663357.18000001",
+ "key": "stock:WLK",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Westlake Corporation"
+ }
+ },
+ {
+ "symbol": "WM",
+ "name": "Waste Management, Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/WM.png",
+ "price": "218.99",
+ "priceChange24hPercent": "-1.23128",
+ "marketCap": "87533628144",
+ "volume24h": "529282624.74",
+ "key": "stock:WM",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Waste Management, Inc."
+ }
+ },
+ {
+ "symbol": "WMB",
+ "name": "The Williams Companies, Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/WMB.png",
+ "price": "74.15",
+ "priceChange24hPercent": "0.13504",
+ "marketCap": "90697868049",
+ "volume24h": "506310955.85",
+ "key": "stock:WMB",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "The Williams Companies, Inc."
+ }
+ },
+ {
+ "symbol": "WMT",
+ "name": "沃尔玛",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/WMT.png",
+ "price": "107.14",
+ "priceChange24hPercent": "-1.18059",
+ "marketCap": "852628691200",
+ "volume24h": "2200706170.08",
+ "key": "stock:WMT",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "沃尔玛"
+ }
+ },
+ {
+ "symbol": "WOLF",
+ "name": "Wolfspeed Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/WOLF.png",
+ "price": "28.35",
+ "priceChange24hPercent": "5.62593",
+ "marketCap": "1473409035",
+ "volume24h": "65135032.2",
+ "key": "stock:WOLF",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Wolfspeed Inc."
+ }
+ },
+ {
+ "symbol": "WPC",
+ "name": "W. P. Carey Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/WPC.png",
+ "price": "70.38",
+ "priceChange24hPercent": "0.15654",
+ "marketCap": "16033074185",
+ "volume24h": "103722173.1",
+ "key": "stock:WPC",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "W. P. Carey Inc."
+ }
+ },
+ {
+ "symbol": "WRB",
+ "name": "W. R. Berkley Corporation",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/WRB.png",
+ "price": "69.14",
+ "priceChange24hPercent": "-0.51799",
+ "marketCap": "25739231780",
+ "volume24h": "114252674.62",
+ "key": "stock:WRB",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "W. R. Berkley Corporation"
+ }
+ },
+ {
+ "symbol": "WRFHD",
+ "name": "WRFHD",
+ "logoUrl": "https://uni-test.onekey-asset.com/utility/okx/token/0062425ba8e8ca642f469858c2f8eb32b28371fdf52a0d9d6afd3b95ed91164c",
+ "key": "stock:WRFHD",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "WRFHD"
+ }
+ },
+ {
+ "symbol": "WS",
+ "name": "Worthington Steel, Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/WS.png",
+ "price": "36.17",
+ "priceChange24hPercent": "0.50014",
+ "marketCap": "1842794224",
+ "volume24h": "7527772.74",
+ "key": "stock:WS",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Worthington Steel, Inc."
+ }
+ },
+ {
+ "symbol": "WSM",
+ "name": "Williams-Sonoma, Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/WSM.png",
+ "price": "227.42",
+ "priceChange24hPercent": "2.09194",
+ "marketCap": "26777934274",
+ "volume24h": "234311053.42",
+ "key": "stock:WSM",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Williams-Sonoma, Inc."
+ }
+ },
+ {
+ "symbol": "WSO",
+ "name": "Watsco, Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/WSO.png",
+ "price": "315.13",
+ "priceChange24hPercent": "-0.07926945",
+ "marketCap": "12979662361",
+ "volume24h": "88135558.4",
+ "key": "stock:WSO",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Watsco, Inc."
+ }
+ },
+ {
+ "symbol": "WST",
+ "name": "West Pharmaceutical Services, Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/WST.png",
+ "price": "339.97",
+ "priceChange24hPercent": "-0.8053",
+ "marketCap": "23925660726",
+ "volume24h": "114843905.82000001",
+ "key": "stock:WST",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "West Pharmaceutical Services, Inc."
+ }
+ },
+ {
+ "symbol": "WULF",
+ "name": "TeraWulf",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/WULF.png",
+ "price": "16.51",
+ "priceChange24hPercent": "1.7252",
+ "marketCap": "8181243969",
+ "volume24h": "338104195.52000004",
+ "key": "stock:WULF",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "TeraWulf"
+ }
+ },
+ {
+ "symbol": "WUXIB",
+ "name": "WUXIB",
+ "logoUrl": "https://uni-test.onekey-asset.com/utility/okx/token/abcb61fb93baf58925da4537492259529ce2b5c50feb5277f55defc490bd35b7",
+ "key": "stock:WUXIB",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "WUXIB"
+ }
+ },
+ {
+ "symbol": "WWD",
+ "name": "Woodward, Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/WWD.png",
+ "price": "346.22",
+ "priceChange24hPercent": "1.06843",
+ "marketCap": "20628791638",
+ "volume24h": "122969727.16000001",
+ "key": "stock:WWD",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Woodward, Inc."
+ }
+ },
+ {
+ "symbol": "WXXDC",
+ "name": "WXXDC",
+ "logoUrl": "https://uni-test.onekey-asset.com/utility/okx/token/fb40eaeabfe5554b7b030f20557c99ea6d8addd3fb175a919778d2ecf811456e",
+ "key": "stock:WXXDC",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "WXXDC"
+ }
+ },
+ {
+ "symbol": "WY",
+ "name": "Weyerhaeuser Company",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/WY.png",
+ "price": "23.02",
+ "priceChange24hPercent": "-0.08680556",
+ "marketCap": "16598400859",
+ "volume24h": "88824143.28",
+ "key": "stock:WY",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Weyerhaeuser Company"
+ }
+ },
+ {
+ "symbol": "WYFI",
+ "name": "WhiteFiber, Inc. Ordinary Shares",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/WYFI.png",
+ "price": "19.54",
+ "priceChange24hPercent": "4.04686",
+ "marketCap": "754521781",
+ "volume24h": "26772262.04",
+ "key": "stock:WYFI",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "WhiteFiber, Inc. Ordinary Shares"
+ }
+ },
+ {
+ "symbol": "XBI",
+ "name": "State Street SPDR S&P Biotech ETF",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/XBI.png",
+ "price": "163.81",
+ "priceChange24hPercent": "-0.34676",
+ "marketCap": "8564874814",
+ "volume24h": "614709638.37",
+ "key": "stock:XBI",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "State Street SPDR S&P Biotech ETF"
+ }
+ },
+ {
+ "symbol": "XEL",
+ "name": "Xcel Energy Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/XEL.png",
+ "price": "75.7238",
+ "priceChange24hPercent": "-0.80718",
+ "marketCap": "47299660089",
+ "volume24h": "273736312.0578",
+ "key": "stock:XEL",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Xcel Energy Inc."
+ }
+ },
+ {
+ "symbol": "XIAO",
+ "name": "XIAO",
+ "logoUrl": "https://uni-test.onekey-asset.com/utility/okx/token/6d6fc86a6ea1bb9b0357bccda5c3cca47f1d47cb2a08b2c416917602d04db5d2",
+ "key": "stock:XIAO",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "XIAO"
+ }
+ },
+ {
+ "symbol": "XLE",
+ "name": "State Street Energy Select Sector SPDR ETF",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/XLE.png",
+ "price": "64.06",
+ "priceChange24hPercent": "-0.8666",
+ "marketCap": "42192941938",
+ "volume24h": "1671212590.3400002",
+ "key": "stock:XLE",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "State Street Energy Select Sector SPDR ETF"
+ }
+ },
+ {
+ "symbol": "XOM",
+ "name": "埃克森美孚",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/XOM.png",
+ "price": "159.46",
+ "priceChange24hPercent": "-1.69533",
+ "marketCap": "660875591600",
+ "volume24h": "2537206808.78",
+ "key": "stock:XOM",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "埃克森美孚"
+ }
+ },
+ {
+ "symbol": "XOP",
+ "name": "SPDR标普油气勘探ETF",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/XOP.png",
+ "price": "190.71",
+ "priceChange24hPercent": "-0.84488",
+ "marketCap": "3132012975",
+ "volume24h": "282369230.91",
+ "key": "stock:XOP",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "SPDR标普油气勘探ETF"
+ }
+ },
+ {
+ "symbol": "XPO",
+ "name": "XPO Logistics, Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/XPO.png",
+ "price": "193.1",
+ "priceChange24hPercent": "4.49134",
+ "marketCap": "22609396392",
+ "volume24h": "266538826.5",
+ "key": "stock:XPO",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "XPO Logistics, Inc."
+ }
+ },
+ {
+ "symbol": "XYL",
+ "name": "Xylem Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/XYL.png",
+ "price": "105.69",
+ "priceChange24hPercent": "-2.03911",
+ "marketCap": "24677241030",
+ "volume24h": "256252697.60999998",
+ "key": "stock:XYL",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Xylem Inc."
+ }
+ },
+ {
+ "symbol": "XYLD",
+ "name": "Global X - S&P 500 Covered Call ETF",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/XYLD.png",
+ "price": "41.66",
+ "priceChange24hPercent": "-0.09592326",
+ "marketCap": "3236656260",
+ "volume24h": "16549351.679999998",
+ "key": "stock:XYLD",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Global X - S&P 500 Covered Call ETF"
+ }
+ },
+ {
+ "symbol": "XYZ",
+ "name": "Block",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/XYZ.png",
+ "price": "82.76",
+ "priceChange24hPercent": "-0.73168",
+ "marketCap": "49257177243",
+ "volume24h": "203267084.28",
+ "key": "stock:XYZ",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Block"
+ }
+ },
+ {
+ "symbol": "YEAR",
+ "name": "Alliance Bernstein - AB Ultra Short Income ETF",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/YEAR.png",
+ "price": "50.17",
+ "priceChange24hPercent": "0.0199362",
+ "marketCap": "1448328080",
+ "volume24h": "2470671.8200000003",
+ "key": "stock:YEAR",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Alliance Bernstein - AB Ultra Short Income ETF"
+ }
+ },
+ {
+ "symbol": "YLDE",
+ "name": "Franklin ClearBridge Enhanced Income ETF",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/YLDE.png",
+ "price": "56.9946",
+ "priceChange24hPercent": "-0.53958",
+ "marketCap": "124768076",
+ "volume24h": "595194.6078",
+ "key": "stock:YLDE",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Franklin ClearBridge Enhanced Income ETF"
+ }
+ },
+ {
+ "symbol": "YUM",
+ "name": "Yum! Brands, Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/YUM.png",
+ "price": "150.71",
+ "priceChange24hPercent": "-1.19969",
+ "marketCap": "41538840910",
+ "volume24h": "240122475.25",
+ "key": "stock:YUM",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Yum! Brands, Inc."
+ }
+ },
+ {
+ "symbol": "ZBH",
+ "name": "Zimmer Biomet Holdings, Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/ZBH.png",
+ "price": "98.07",
+ "priceChange24hPercent": "-0.85928",
+ "marketCap": "18972818340",
+ "volume24h": "129927254.94",
+ "key": "stock:ZBH",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Zimmer Biomet Holdings, Inc."
+ }
+ },
+ {
+ "symbol": "ZBRA",
+ "name": "Zebra Technologies Corporation",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/ZBRA.png",
+ "price": "362.74",
+ "priceChange24hPercent": "1.46573",
+ "marketCap": "17278539516",
+ "volume24h": "145623061.22",
+ "key": "stock:ZBRA",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Zebra Technologies Corporation"
+ }
+ },
+ {
+ "symbol": "ZHAOM",
+ "name": "ZHAOM",
+ "logoUrl": "https://uni-test.onekey-asset.com/utility/okx/token/55fa4c61a0c78fb9a8a304240a8b6731a5dfeb52bb7c0b5ad5e633c752020592",
+ "key": "stock:ZHAOM",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "ZHAOM"
+ }
+ },
+ {
+ "symbol": "ZJGLD",
+ "name": "ZJGLD",
+ "logoUrl": "https://uni-test.onekey-asset.com/utility/okx/token/8522b044debced8a9d284055257ecfa1994ab37a4079705788701abbbc786894",
+ "key": "stock:ZJGLD",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "ZJGLD"
+ }
+ },
+ {
+ "symbol": "ZM",
+ "name": "Zoom Communications, Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/ZM.png",
+ "price": "101.33",
+ "priceChange24hPercent": "3.25046",
+ "marketCap": "29713221157",
+ "volume24h": "356002385.01",
+ "key": "stock:ZM",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Zoom Communications, Inc."
+ }
+ },
+ {
+ "symbol": "ZS",
+ "name": "Zscaler, Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/ZS.png",
+ "price": "169.8",
+ "priceChange24hPercent": "-4.49944",
+ "marketCap": "27458277345",
+ "volume24h": "1314594486.6000001",
+ "key": "stock:ZS",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Zscaler, Inc."
+ }
+ },
+ {
+ "symbol": "ZTS",
+ "name": "Zoetis Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/ZTS.png",
+ "price": "75.81",
+ "priceChange24hPercent": "-0.62918",
+ "marketCap": "31781674680",
+ "volume24h": "302150458.68",
+ "key": "stock:ZTS",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Zoetis Inc."
+ }
+ }
+ ],
+ "market__tab__consumer_tech": [
+ {
+ "symbol": "AAPL",
+ "name": "苹果",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/AAPL.png",
+ "price": "319.97",
+ "priceChange24hPercent": "-2.51059",
+ "marketCap": "4699513299320",
+ "volume24h": "12673014673.480001",
+ "key": "stock:AAPL",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "苹果"
+ }
+ },
+ {
+ "symbol": "ABNB",
+ "name": "爱彼迎",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/ABNB.png",
+ "price": "181.94",
+ "priceChange24hPercent": "-1.78677",
+ "marketCap": "107983869660",
+ "volume24h": "620194706.78",
+ "key": "stock:ABNB",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "爱彼迎"
+ }
+ },
+ {
+ "symbol": "ACN",
+ "name": "埃森哲",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/ACN.png",
+ "price": "186.72",
+ "priceChange24hPercent": "-3.314",
+ "marketCap": "114261830592",
+ "volume24h": "906653876.64",
+ "key": "stock:ACN",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "埃森哲"
+ }
+ },
+ {
+ "symbol": "ADBE",
+ "name": "奥多比",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/ADBE.png",
+ "price": "266.51",
+ "priceChange24hPercent": "-6.73316",
+ "marketCap": "105937725000",
+ "volume24h": "1770913376.79",
+ "key": "stock:ADBE",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "奥多比"
+ }
+ },
+ {
+ "symbol": "AMZN",
+ "name": "亚马逊",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/AMZN.png",
+ "price": "258.51",
+ "priceChange24hPercent": "-0.15064",
+ "marketCap": "2780817921000",
+ "volume24h": "7949159751.12",
+ "key": "stock:AMZN",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "亚马逊"
+ }
+ },
+ {
+ "symbol": "APP",
+ "name": "AppLovin",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/APP.png",
+ "price": "320.56",
+ "priceChange24hPercent": "2.22591",
+ "marketCap": "107688769005",
+ "volume24h": "1220609134.4",
+ "key": "stock:APP",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "AppLovin"
+ }
+ },
+ {
+ "symbol": "CRWD",
+ "name": "CrowdStrike",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/CRWD.png",
+ "price": "213.1",
+ "priceChange24hPercent": "-0.86989",
+ "marketCap": "216991052568",
+ "volume24h": "1796128480.1",
+ "key": "stock:CRWD",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "CrowdStrike"
+ }
+ },
+ {
+ "symbol": "CSCO",
+ "name": "思科",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/CSCO.png",
+ "price": "109.2",
+ "priceChange24hPercent": "0.54323",
+ "marketCap": "430404665418",
+ "volume24h": "1351570474.8",
+ "key": "stock:CSCO",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "思科"
+ }
+ },
+ {
+ "symbol": "DASH",
+ "name": "DoorDash",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/DASH.png",
+ "price": "211.73",
+ "priceChange24hPercent": "-4.62613",
+ "marketCap": "92254722892",
+ "volume24h": "883319774.68",
+ "key": "stock:DASH",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "DoorDash"
+ }
+ },
+ {
+ "symbol": "DIS",
+ "name": "迪士尼",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/DIS.png",
+ "price": "105.29",
+ "priceChange24hPercent": "-1.74505",
+ "marketCap": "182837137900",
+ "volume24h": "624667460.12",
+ "key": "stock:DIS",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "迪士尼"
+ }
+ },
+ {
+ "symbol": "GOOGL",
+ "name": "谷歌",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/GOOGL.png",
+ "price": "338.46",
+ "priceChange24hPercent": "-1.17379",
+ "marketCap": "4096080585860",
+ "volume24h": "7848657585.66",
+ "key": "stock:GOOGL",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "谷歌"
+ }
+ },
+ {
+ "symbol": "HD",
+ "name": "家得宝",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/HD.png",
+ "price": "321.05",
+ "priceChange24hPercent": "0.9369",
+ "marketCap": "320124412850",
+ "volume24h": "725394496.2",
+ "key": "stock:HD",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "家得宝"
+ }
+ },
+ {
+ "symbol": "MCD",
+ "name": "麦当劳",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/MCD.png",
+ "price": "255.69",
+ "priceChange24hPercent": "-1.51754",
+ "marketCap": "181669279140",
+ "volume24h": "1069340837.13",
+ "key": "stock:MCD",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "麦当劳"
+ }
+ },
+ {
+ "symbol": "META",
+ "name": "Meta",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/META.png",
+ "price": "616.77",
+ "priceChange24hPercent": "0.99725",
+ "marketCap": "1571213291779",
+ "volume24h": "9847481192.01",
+ "key": "stock:META",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Meta"
+ }
+ },
+ {
+ "symbol": "MSFT",
+ "name": "微软",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/MSFT.png",
+ "price": "499.7",
+ "priceChange24hPercent": "-2.04266",
+ "marketCap": "3710547335000",
+ "volume24h": "9045448472.6",
+ "key": "stock:MSFT",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "微软"
+ }
+ },
+ {
+ "symbol": "NFLX",
+ "name": "奈飞",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/NFLX.png",
+ "price": "78.25",
+ "priceChange24hPercent": "-5.34656",
+ "marketCap": "325828304922",
+ "volume24h": "3144868282.5",
+ "key": "stock:NFLX",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "奈飞"
+ }
+ },
+ {
+ "symbol": "NOW",
+ "name": "ServiceNow",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/NOW.png",
+ "price": "141.26",
+ "priceChange24hPercent": "-2.97411",
+ "marketCap": "146043346120",
+ "volume24h": "1736762600.4399998",
+ "key": "stock:NOW",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "ServiceNow"
+ }
+ },
+ {
+ "symbol": "ORCL",
+ "name": "甲骨文",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/ORCL.png",
+ "price": "158.83",
+ "priceChange24hPercent": "3.10958",
+ "marketCap": "457505050100",
+ "volume24h": "4138044844.8500004",
+ "key": "stock:ORCL",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "甲骨文"
+ }
+ },
+ {
+ "symbol": "PANW",
+ "name": "帕洛阿尔托网络",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/PANW.png",
+ "price": "333.26",
+ "priceChange24hPercent": "0.39766",
+ "marketCap": "271606900000",
+ "volume24h": "1879381111.84",
+ "key": "stock:PANW",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "帕洛阿尔托网络"
+ }
+ },
+ {
+ "symbol": "RBLX",
+ "name": "罗布乐思",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/RBLX.png",
+ "price": "43.31",
+ "priceChange24hPercent": "4.3363",
+ "marketCap": "30939619406",
+ "volume24h": "431483714.11",
+ "key": "stock:RBLX",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "罗布乐思"
+ }
+ },
+ {
+ "symbol": "SHOP",
+ "name": "Shopify",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/SHOP.png",
+ "price": "145.09",
+ "priceChange24hPercent": "-0.54154",
+ "marketCap": "188276717956",
+ "volume24h": "1001972823.39",
+ "key": "stock:SHOP",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Shopify"
+ }
+ },
+ {
+ "symbol": "SNAP",
+ "name": "Snap",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/SNAP.png",
+ "price": "5.47",
+ "priceChange24hPercent": "-4.03509",
+ "marketCap": "9241933930",
+ "volume24h": "109720585.75999999",
+ "key": "stock:SNAP",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Snap"
+ }
+ },
+ {
+ "symbol": "SPOT",
+ "name": "Spotify",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/SPOT.png",
+ "price": "542.43",
+ "priceChange24hPercent": "-3.15652",
+ "marketCap": "111515040318",
+ "volume24h": "742202629.56",
+ "key": "stock:SPOT",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Spotify"
+ }
+ },
+ {
+ "symbol": "TM",
+ "name": "丰田",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/TM.png",
+ "price": "197.11",
+ "priceChange24hPercent": "-1.3809",
+ "marketCap": "233414630448",
+ "volume24h": "64367650.27",
+ "key": "stock:TM",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "丰田"
+ }
+ },
+ {
+ "symbol": "TMUS",
+ "name": "T-Mobile US",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/TMUS.png",
+ "price": "181.52",
+ "priceChange24hPercent": "-3.45708",
+ "marketCap": "194711351192",
+ "volume24h": "818674622.6400001",
+ "key": "stock:TMUS",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "T-Mobile US"
+ }
+ },
+ {
+ "symbol": "TSLA",
+ "name": "特斯拉",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/TSLA.png",
+ "price": "354.08",
+ "priceChange24hPercent": "-5.92111",
+ "marketCap": "1398455741268",
+ "volume24h": "23021647442.719997",
+ "key": "stock:TSLA",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "特斯拉"
+ }
+ },
+ {
+ "symbol": "UBER",
+ "name": "优步",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/UBER.png",
+ "price": "75.76",
+ "priceChange24hPercent": "-0.25673",
+ "marketCap": "154216981225",
+ "volume24h": "1069346490.72",
+ "key": "stock:UBER",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "优步"
+ }
+ },
+ {
+ "symbol": "WMT",
+ "name": "沃尔玛",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/WMT.png",
+ "price": "107.14",
+ "priceChange24hPercent": "-1.18059",
+ "marketCap": "852628691200",
+ "volume24h": "2200706170.08",
+ "key": "stock:WMT",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "沃尔玛"
+ }
+ }
+ ],
+ "market__tab__ai_tech": [
+ {
+ "symbol": "ADI",
+ "name": "亚德诺",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/ADI.png",
+ "price": "362.25",
+ "priceChange24hPercent": "1.6129",
+ "marketCap": "176447265750",
+ "volume24h": "1289821554",
+ "key": "stock:ADI",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "亚德诺"
+ }
+ },
+ {
+ "symbol": "AMAT",
+ "name": "应用材料",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/AMAT.png",
+ "price": "454.71",
+ "priceChange24hPercent": "4.31282",
+ "marketCap": "361021096890",
+ "volume24h": "2735913224.0099998",
+ "key": "stock:AMAT",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "应用材料"
+ }
+ },
+ {
+ "symbol": "AMD",
+ "name": "超威半导体",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/AMD.png",
+ "price": "477.57",
+ "priceChange24hPercent": "4.69353",
+ "marketCap": "778725642000",
+ "volume24h": "9397976816.94",
+ "key": "stock:AMD",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "超威半导体"
+ }
+ },
+ {
+ "symbol": "ANET",
+ "name": "阿里斯塔网络",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/ANET.png",
+ "price": "193.78",
+ "priceChange24hPercent": "1.22232",
+ "marketCap": "244001853696",
+ "volume24h": "812084116.34",
+ "key": "stock:ANET",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "阿里斯塔网络"
+ }
+ },
+ {
+ "symbol": "ARM",
+ "name": "安谋",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/ARM.png",
+ "price": "252.09",
+ "priceChange24hPercent": "3.91607",
+ "marketCap": "269231759259",
+ "volume24h": "1041739741.08",
+ "key": "stock:ARM",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "安谋"
+ }
+ },
+ {
+ "symbol": "ASML",
+ "name": "阿斯麦",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/ASML.png",
+ "price": "1714.88",
+ "priceChange24hPercent": "4.17267",
+ "marketCap": "660945604406",
+ "volume24h": "2211546975.36",
+ "key": "stock:ASML",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "阿斯麦"
+ }
+ },
+ {
+ "symbol": "AVGO",
+ "name": "博通",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/AVGO.png",
+ "price": "357.895",
+ "priceChange24hPercent": "0.20579",
+ "marketCap": "1702714094100",
+ "volume24h": "11761598227.175",
+ "key": "stock:AVGO",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "博通"
+ }
+ },
+ {
+ "symbol": "COHR",
+ "name": "Coherent",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/COHR.png",
+ "price": "281.86",
+ "priceChange24hPercent": "6.5996",
+ "marketCap": "55142899017",
+ "volume24h": "1409072257.1200001",
+ "key": "stock:COHR",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Coherent"
+ }
+ },
+ {
+ "symbol": "IBM",
+ "name": "国际商业机器",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/IBM.png",
+ "price": "234.89",
+ "priceChange24hPercent": "0.07669038",
+ "marketCap": "221297855260",
+ "volume24h": "717698173.8499999",
+ "key": "stock:IBM",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "国际商业机器"
+ }
+ },
+ {
+ "symbol": "INTC",
+ "name": "英特尔",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/INTC.png",
+ "price": "95.8",
+ "priceChange24hPercent": "4.50529",
+ "marketCap": "483215175763",
+ "volume24h": "9355284335",
+ "key": "stock:INTC",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "英特尔"
+ }
+ },
+ {
+ "symbol": "KLAC",
+ "name": "科磊",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/KLAC.png",
+ "price": "185.6",
+ "priceChange24hPercent": "7.32046",
+ "marketCap": "242445568000",
+ "volume24h": "2361877856",
+ "key": "stock:KLAC",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "科磊"
+ }
+ },
+ {
+ "symbol": "LITE",
+ "name": "Lumentum Holdings Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/LITE.png",
+ "price": "881.255",
+ "priceChange24hPercent": "3.99884",
+ "marketCap": "68561639000",
+ "volume24h": "3140271998.295",
+ "key": "stock:LITE",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Lumentum Holdings Inc."
+ }
+ },
+ {
+ "symbol": "LRCX",
+ "name": "泛林集团",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/LRCX.png",
+ "price": "307.65",
+ "priceChange24hPercent": "5.12198",
+ "marketCap": "384737860500",
+ "volume24h": "2571760488.1499996",
+ "key": "stock:LRCX",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "泛林集团"
+ }
+ },
+ {
+ "symbol": "MRVL",
+ "name": "迈威尔科技",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/MRVL.png",
+ "price": "223.55",
+ "priceChange24hPercent": "7.04879",
+ "marketCap": "195777489300",
+ "volume24h": "4743302231.1",
+ "key": "stock:MRVL",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "迈威尔科技"
+ }
+ },
+ {
+ "symbol": "MU",
+ "name": "美光科技",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/MU.png",
+ "price": "1016.59",
+ "priceChange24hPercent": "6.09815",
+ "marketCap": "1148126580100",
+ "volume24h": "35834308520.21",
+ "key": "stock:MU",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "美光科技"
+ }
+ },
+ {
+ "symbol": "NVDA",
+ "name": "英伟达",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/NVDA.png",
+ "price": "230.36",
+ "priceChange24hPercent": "0.83607",
+ "marketCap": "5579549560000",
+ "volume24h": "31179783471.2",
+ "key": "stock:NVDA",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "英伟达"
+ }
+ },
+ {
+ "symbol": "ON",
+ "name": "安森美",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/ON.png",
+ "price": "74.38",
+ "priceChange24hPercent": "0.99117",
+ "marketCap": "28957026560",
+ "volume24h": "767660508.9599999",
+ "key": "stock:ON",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "安森美"
+ }
+ },
+ {
+ "symbol": "QCOM",
+ "name": "高通",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/QCOM.png",
+ "price": "168.74",
+ "priceChange24hPercent": "0.10085",
+ "marketCap": "177177000000",
+ "volume24h": "1440555484.94",
+ "key": "stock:QCOM",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "高通"
+ }
+ },
+ {
+ "symbol": "SMCI",
+ "name": "超微电脑",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/SMCI.png",
+ "price": "39.59",
+ "priceChange24hPercent": "4.54185",
+ "marketCap": "25609702070",
+ "volume24h": "2123337279.4800003",
+ "key": "stock:SMCI",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "超微电脑"
+ }
+ },
+ {
+ "symbol": "SNDK",
+ "name": "闪迪",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/SNDK.png",
+ "price": "1740",
+ "priceChange24hPercent": "11.89783",
+ "marketCap": "257676165000",
+ "volume24h": "28809122580",
+ "key": "stock:SNDK",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "闪迪"
+ }
+ },
+ {
+ "symbol": "TSM",
+ "name": "台积电",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/TSM.png",
+ "price": "428.91",
+ "priceChange24hPercent": "2.85365",
+ "marketCap": "2224533136800",
+ "volume24h": "5261764083.780001",
+ "key": "stock:TSM",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "台积电"
+ }
+ },
+ {
+ "symbol": "WDC",
+ "name": "西部数据",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/WDC.png",
+ "price": "467.46",
+ "priceChange24hPercent": "5.86317",
+ "marketCap": "161125047720",
+ "volume24h": "2717005136.58",
+ "key": "stock:WDC",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "西部数据"
+ }
+ }
+ ],
+ "market__tab__etfs": [
+ {
+ "symbol": "BINC",
+ "name": "灵活收益ETF",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/BINC.png",
+ "price": "51.68",
+ "priceChange24hPercent": "0.06777036",
+ "marketCap": "16189176954",
+ "volume24h": "83860154.08",
+ "key": "stock:BINC",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "灵活收益ETF"
+ }
+ },
+ {
+ "symbol": "DAX",
+ "name": "Global X - DAX Germany ETF",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/DAX.png",
+ "price": "46.8688",
+ "priceChange24hPercent": "-0.0886797",
+ "marketCap": "245299113",
+ "volume24h": "1810635.4816",
+ "key": "stock:DAX",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Global X - DAX Germany ETF"
+ }
+ },
+ {
+ "symbol": "DGRW",
+ "name": "股息增长ETF",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/DGRW.png",
+ "price": "99.77",
+ "priceChange24hPercent": "-0.31971",
+ "marketCap": "17178307111",
+ "volume24h": "31749507.79",
+ "key": "stock:DGRW",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "股息增长ETF"
+ }
+ },
+ {
+ "symbol": "EEM",
+ "name": "新兴市场ETF",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/EEM.png",
+ "price": "68.7",
+ "priceChange24hPercent": "1.82303",
+ "marketCap": "32146260773",
+ "volume24h": "1506651730.8",
+ "key": "stock:EEM",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "新兴市场ETF"
+ }
+ },
+ {
+ "symbol": "EWG",
+ "name": "iShares MSCI Germany ETF",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/EWG.png",
+ "price": "43.89",
+ "priceChange24hPercent": "-0.06830601",
+ "marketCap": "1598313382",
+ "volume24h": "16363069.8",
+ "key": "stock:EWG",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "iShares MSCI Germany ETF"
+ }
+ },
+ {
+ "symbol": "EWQ",
+ "name": "iShares MSCI France ETF",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/EWQ.png",
+ "price": "45.69",
+ "priceChange24hPercent": "-0.10931",
+ "marketCap": "371446359",
+ "volume24h": "6726847.319999999",
+ "key": "stock:EWQ",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "iShares MSCI France ETF"
+ }
+ },
+ {
+ "symbol": "EWU",
+ "name": "iShares MSCI United Kingdom ETF",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/EWU.png",
+ "price": "48.59",
+ "priceChange24hPercent": "-0.18488",
+ "marketCap": "3697821884",
+ "volume24h": "17036139.900000002",
+ "key": "stock:EWU",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "iShares MSCI United Kingdom ETF"
+ }
+ },
+ {
+ "symbol": "EWY",
+ "name": "iShares MSCI韩国ETF",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/EWY.png",
+ "price": "188.87",
+ "priceChange24hPercent": "4.60524",
+ "marketCap": "14278571056",
+ "volume24h": "3455448231.73",
+ "key": "stock:EWY",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "iShares MSCI韩国ETF"
+ }
+ },
+ {
+ "symbol": "FEZ",
+ "name": "State Street SPDR EURO STOXX 50 ETF",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/FEZ.png",
+ "price": "70.65",
+ "priceChange24hPercent": "0.08499788",
+ "marketCap": "4472758171",
+ "volume24h": "27157577.400000002",
+ "key": "stock:FEZ",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "State Street SPDR EURO STOXX 50 ETF"
+ }
+ },
+ {
+ "symbol": "FLQM",
+ "name": "Franklin U.S. Mid Cap Multifactor Index ETF",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/FLQM.png",
+ "price": "60.78",
+ "priceChange24hPercent": "-0.52373",
+ "marketCap": "1554644516",
+ "volume24h": "11471313.3",
+ "key": "stock:FLQM",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Franklin U.S. Mid Cap Multifactor Index ETF"
+ }
+ },
+ {
+ "symbol": "IEMG",
+ "name": "核心新兴市场ETF",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/IEMG.png",
+ "price": "83.65",
+ "priceChange24hPercent": "1.65269",
+ "marketCap": "171167801924",
+ "volume24h": "577001471.9000001",
+ "key": "stock:IEMG",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "核心新兴市场ETF"
+ }
+ },
+ {
+ "symbol": "IJR",
+ "name": "iShares标普小盘ETF",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/IJR.png",
+ "price": "145.34",
+ "priceChange24hPercent": "0.37293",
+ "marketCap": "109416868998",
+ "volume24h": "354844557.86",
+ "key": "stock:IJR",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "iShares标普小盘ETF"
+ }
+ },
+ {
+ "symbol": "ITOT",
+ "name": "美股全市场ETF",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/ITOT.png",
+ "price": "168.64",
+ "priceChange24hPercent": "-0.31329",
+ "marketCap": "95625104840",
+ "volume24h": "169106458.23999998",
+ "key": "stock:ITOT",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "美股全市场ETF"
+ }
+ },
+ {
+ "symbol": "IWM",
+ "name": "罗素2000 ETF",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/IWM.png",
+ "price": "296.01",
+ "priceChange24hPercent": "0.27779",
+ "marketCap": "81417408119",
+ "volume24h": "4113713428.1099997",
+ "key": "stock:IWM",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "罗素2000 ETF"
+ }
+ },
+ {
+ "symbol": "JAAA",
+ "name": "AAA级CLO ETF",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/JAAA.png",
+ "price": "50.58",
+ "priceChange24hPercent": "0.07914523",
+ "marketCap": "28463213839",
+ "volume24h": "301561905.24",
+ "key": "stock:JAAA",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "AAA级CLO ETF"
+ }
+ },
+ {
+ "symbol": "JPST",
+ "name": "JPMorgan Ultra-Short Income ETF",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/JPST.png",
+ "price": "50.39",
+ "priceChange24hPercent": "0.00992359",
+ "marketCap": "40380399789",
+ "volume24h": "286613331.39",
+ "key": "stock:JPST",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "JPMorgan Ultra-Short Income ETF"
+ }
+ },
+ {
+ "symbol": "QQQ",
+ "name": "纳指ETF",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/QQQ.png",
+ "price": "718.96",
+ "priceChange24hPercent": "0.17975",
+ "marketCap": "512284401576",
+ "volume24h": "23632988800.960003",
+ "key": "stock:QQQ",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "纳指ETF"
+ }
+ },
+ {
+ "symbol": "SCHF",
+ "name": "Schwab International Equity ETF",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/SCHF.png",
+ "price": "28.58",
+ "priceChange24hPercent": "0.422",
+ "marketCap": "68568735709",
+ "volume24h": "199559078.33999997",
+ "key": "stock:SCHF",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Schwab International Equity ETF"
+ }
+ },
+ {
+ "symbol": "SGOV",
+ "name": "iShares 0-3个月国债ETF",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/SGOV.png",
+ "price": "100.47",
+ "priceChange24hPercent": "0.04480956",
+ "marketCap": "95942590920",
+ "volume24h": "2053722039.09",
+ "key": "stock:SGOV",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "iShares 0-3个月国债ETF"
+ }
+ },
+ {
+ "symbol": "SPY",
+ "name": "标普500 ETF",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/SPY.png",
+ "price": "770.19",
+ "priceChange24hPercent": "-0.38543",
+ "marketCap": "820435829283",
+ "volume24h": "25385765084.670002",
+ "key": "stock:SPY",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "标普500 ETF"
+ }
+ },
+ {
+ "symbol": "SQQQ",
+ "name": "三倍做空纳指ETF",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/SQQQ.png",
+ "price": "38.18",
+ "priceChange24hPercent": "-0.41732",
+ "marketCap": "1732347440",
+ "volume24h": "1358956699.24",
+ "key": "stock:SQQQ",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "三倍做空纳指ETF"
+ }
+ },
+ {
+ "symbol": "TBLL",
+ "name": "美国3个月国债ETF",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/TBLL.png",
+ "price": "105.71",
+ "priceChange24hPercent": "0.0378537",
+ "marketCap": "2593839674",
+ "volume24h": "6053588.859999999",
+ "key": "stock:TBLL",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "美国3个月国债ETF"
+ }
+ },
+ {
+ "symbol": "TLT",
+ "name": "20年国债ETF",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/TLT.png",
+ "price": "82.21",
+ "priceChange24hPercent": "0.17059",
+ "marketCap": "41558996997",
+ "volume24h": "1364023798.4499998",
+ "key": "stock:TLT",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "20年国债ETF"
+ }
+ },
+ {
+ "symbol": "TQQQ",
+ "name": "三倍做多纳指ETF",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/TQQQ.png",
+ "price": "72.37",
+ "priceChange24hPercent": "0.47203",
+ "marketCap": "44436706139",
+ "volume24h": "3426881608.8",
+ "key": "stock:TQQQ",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "三倍做多纳指ETF"
+ }
+ },
+ {
+ "symbol": "USFR",
+ "name": "浮动利率国债ETF",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/USFR.png",
+ "price": "50.39",
+ "priceChange24hPercent": "0.01984612",
+ "marketCap": "17761132358",
+ "volume24h": "300470329.44",
+ "key": "stock:USFR",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "浮动利率国债ETF"
+ }
+ },
+ {
+ "symbol": "USPX",
+ "name": "Franklin U.S. Equity Index ETF",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/USPX.png",
+ "price": "67.34",
+ "priceChange24hPercent": "-0.3631",
+ "marketCap": "2065644130",
+ "volume24h": "1979391.9600000002",
+ "key": "stock:USPX",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Franklin U.S. Equity Index ETF"
+ }
+ },
+ {
+ "symbol": "VGK",
+ "name": "先锋富时欧洲ETF",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/VGK.png",
+ "price": "91.74",
+ "priceChange24hPercent": "0",
+ "marketCap": "38343259588",
+ "volume24h": "99296715.53999999",
+ "key": "stock:VGK",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "先锋富时欧洲ETF"
+ }
+ },
+ {
+ "symbol": "VOO",
+ "name": "先锋标普500",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/VOO.png",
+ "price": "708.01",
+ "priceChange24hPercent": "-0.3813",
+ "marketCap": "1723888520272",
+ "volume24h": "4804414966.01",
+ "key": "stock:VOO",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "先锋标普500"
+ }
+ },
+ {
+ "symbol": "VT",
+ "name": "先锋全球股票ETF",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/VT.png",
+ "price": "161.73",
+ "priceChange24hPercent": "-0.01854599",
+ "marketCap": "100361027010",
+ "volume24h": "246654099.54",
+ "key": "stock:VT",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "先锋全球股票ETF"
+ }
+ },
+ {
+ "symbol": "VTI",
+ "name": "美股全市场ETF",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/VTI.png",
+ "price": "379.73",
+ "priceChange24hPercent": "-0.31502",
+ "marketCap": "2294441087421",
+ "volume24h": "997141740.7900001",
+ "key": "stock:VTI",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "美股全市场ETF"
+ }
+ },
+ {
+ "symbol": "VUG",
+ "name": "先锋成长ETF",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/VUG.png",
+ "price": "88.45",
+ "priceChange24hPercent": "-0.4838",
+ "marketCap": "393718496514",
+ "volume24h": "308953373.40000004",
+ "key": "stock:VUG",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "先锋成长ETF"
+ }
+ },
+ {
+ "symbol": "VXUS",
+ "name": "Vanguard Total International Stock ETF",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/VXUS.png",
+ "price": "88.41",
+ "priceChange24hPercent": "0.50017",
+ "marketCap": "679525446932",
+ "volume24h": "582092766.15",
+ "key": "stock:VXUS",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Vanguard Total International Stock ETF"
+ }
+ }
+ ],
+ "market__tab__crypto": [
+ {
+ "symbol": "APLD",
+ "name": "Applied Digital",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/APLD.png",
+ "price": "26.37",
+ "priceChange24hPercent": "1.77538",
+ "marketCap": "7591490611",
+ "volume24h": "355150527.12",
+ "key": "stock:APLD",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Applied Digital"
+ }
+ },
+ {
+ "symbol": "BMNR",
+ "name": "BitMine",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/BMNR.png",
+ "price": "24.97",
+ "priceChange24hPercent": "-5.59546",
+ "marketCap": "14222332846",
+ "volume24h": "1155029873.9099998",
+ "key": "stock:BMNR",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "BitMine"
+ }
+ },
+ {
+ "symbol": "CLSK",
+ "name": "CleanSpark, Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/CLSK.png",
+ "price": "12.69",
+ "priceChange24hPercent": "0.8744",
+ "marketCap": "3256363210",
+ "volume24h": "201040969.67999998",
+ "key": "stock:CLSK",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "CleanSpark, Inc."
+ }
+ },
+ {
+ "symbol": "COIN",
+ "name": "Coinbase",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/COIN.png",
+ "price": "184.64",
+ "priceChange24hPercent": "-4.18267",
+ "marketCap": "48714333394",
+ "volume24h": "1509934590.08",
+ "key": "stock:COIN",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Coinbase"
+ }
+ },
+ {
+ "symbol": "CRCL",
+ "name": "Circle Internet Group",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/CRCL.png",
+ "price": "102.05",
+ "priceChange24hPercent": "-1.14308",
+ "marketCap": "27277014302",
+ "volume24h": "1440248998.5",
+ "key": "stock:CRCL",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Circle Internet Group"
+ }
+ },
+ {
+ "symbol": "GLXY",
+ "name": "银河数码",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/GLXY.png",
+ "price": "26.33",
+ "priceChange24hPercent": "-0.64151",
+ "marketCap": "8733320000",
+ "volume24h": "96240784.08",
+ "key": "stock:GLXY",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "银河数码"
+ }
+ },
+ {
+ "symbol": "HOOD",
+ "name": "罗宾汉",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/HOOD.png",
+ "price": "122.11",
+ "priceChange24hPercent": "-2.09269",
+ "marketCap": "109786941485",
+ "volume24h": "2897993280.95",
+ "key": "stock:HOOD",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "罗宾汉"
+ }
+ },
+ {
+ "symbol": "HUT",
+ "name": "Hut 8 Corp.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/HUT.png",
+ "price": "93.545",
+ "priceChange24hPercent": "6.19253",
+ "marketCap": "10532615926",
+ "volume24h": "536360182.58500004",
+ "key": "stock:HUT",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Hut 8 Corp."
+ }
+ },
+ {
+ "symbol": "IREN",
+ "name": "IREN",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/IREN.png",
+ "price": "44.68",
+ "priceChange24hPercent": "7.27491",
+ "marketCap": "15944391045",
+ "volume24h": "1620373503.24",
+ "key": "stock:IREN",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "IREN"
+ }
+ },
+ {
+ "symbol": "MARA",
+ "name": "马拉松数字",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/MARA.png",
+ "price": "11.31",
+ "priceChange24hPercent": "-2.5",
+ "marketCap": "4312169389",
+ "volume24h": "425197504.68",
+ "key": "stock:MARA",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "马拉松数字"
+ }
+ },
+ {
+ "symbol": "MSTR",
+ "name": "微策略",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/MSTR.png",
+ "price": "142.8",
+ "priceChange24hPercent": "-1.39483",
+ "marketCap": "47239382400",
+ "volume24h": "3878826420.0000005",
+ "key": "stock:MSTR",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "微策略"
+ }
+ },
+ {
+ "symbol": "PLTR",
+ "name": "帕兰提尔",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/PLTR.png",
+ "price": "174.33",
+ "priceChange24hPercent": "-4.49241",
+ "marketCap": "400273883100",
+ "volume24h": "4874798157.84",
+ "key": "stock:PLTR",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "帕兰提尔"
+ }
+ },
+ {
+ "symbol": "RIOT",
+ "name": "Riot平台",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/RIOT.png",
+ "price": "21.8",
+ "priceChange24hPercent": "3.12204",
+ "marketCap": "8243696814",
+ "volume24h": "335036003.2",
+ "key": "stock:RIOT",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Riot平台"
+ }
+ },
+ {
+ "symbol": "WULF",
+ "name": "TeraWulf",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/WULF.png",
+ "price": "16.51",
+ "priceChange24hPercent": "1.7252",
+ "marketCap": "8181243969",
+ "volume24h": "338104195.52000004",
+ "key": "stock:WULF",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "TeraWulf"
+ }
+ }
+ ],
+ "market__tab__healthcare": [
+ {
+ "symbol": "ABBV",
+ "name": "艾伯维",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/ABBV.png",
+ "price": "256.34",
+ "priceChange24hPercent": "-1.48726",
+ "marketCap": "452899671735",
+ "volume24h": "1197819912.52",
+ "key": "stock:ABBV",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "艾伯维"
+ }
+ },
+ {
+ "symbol": "ABT",
+ "name": "雅培",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/ABT.png",
+ "price": "108.32",
+ "priceChange24hPercent": "-0.43203",
+ "marketCap": "187435126855",
+ "volume24h": "744744194.56",
+ "key": "stock:ABT",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "雅培"
+ }
+ },
+ {
+ "symbol": "AMGN",
+ "name": "安进",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/AMGN.png",
+ "price": "437.23",
+ "priceChange24hPercent": "-1.55138",
+ "marketCap": "235976528840",
+ "volume24h": "724091793.47",
+ "key": "stock:AMGN",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "安进"
+ }
+ },
+ {
+ "symbol": "HIMS",
+ "name": "Hims & Hers",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/HIMS.png",
+ "price": "27.71",
+ "priceChange24hPercent": "-0.3954",
+ "marketCap": "6181546800",
+ "volume24h": "182854493.73000002",
+ "key": "stock:HIMS",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Hims & Hers"
+ }
+ },
+ {
+ "symbol": "ISRG",
+ "name": "直觉外科",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/ISRG.png",
+ "price": "366.7",
+ "priceChange24hPercent": "-0.84633",
+ "marketCap": "129547042600",
+ "volume24h": "763389826.1",
+ "key": "stock:ISRG",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "直觉外科"
+ }
+ },
+ {
+ "symbol": "JNJ",
+ "name": "强生",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/JNJ.png",
+ "price": "275.23",
+ "priceChange24hPercent": "-1.1493",
+ "marketCap": "663276341036",
+ "volume24h": "1067610839.71",
+ "key": "stock:JNJ",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "强生"
+ }
+ },
+ {
+ "symbol": "LLY",
+ "name": "礼来",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/LLY.png",
+ "price": "1148.2",
+ "priceChange24hPercent": "-0.9831",
+ "marketCap": "1081307016200",
+ "volume24h": "2468999720.4",
+ "key": "stock:LLY",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "礼来"
+ }
+ },
+ {
+ "symbol": "MRK",
+ "name": "默克",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/MRK.png",
+ "price": "150.34",
+ "priceChange24hPercent": "-1.31285",
+ "marketCap": "371312738800",
+ "volume24h": "626458360.96",
+ "key": "stock:MRK",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "默克"
+ }
+ },
+ {
+ "symbol": "MRNA",
+ "name": "莫德纳",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/MRNA.png",
+ "price": "145.55",
+ "priceChange24hPercent": "-2.23013",
+ "marketCap": "57752202300",
+ "volume24h": "2178380915.8500004",
+ "key": "stock:MRNA",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "莫德纳"
+ }
+ },
+ {
+ "symbol": "PFE",
+ "name": "辉瑞",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/PFE.png",
+ "price": "28.45",
+ "priceChange24hPercent": "-1.24957",
+ "marketCap": "162149068000",
+ "volume24h": "669415327.65",
+ "key": "stock:PFE",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "辉瑞"
+ }
+ },
+ {
+ "symbol": "REGN",
+ "name": "再生元制药",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/REGN.png",
+ "price": "827.72",
+ "priceChange24hPercent": "-1.86729",
+ "marketCap": "85273369840",
+ "volume24h": "464491632.40000004",
+ "key": "stock:REGN",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "再生元制药"
+ }
+ },
+ {
+ "symbol": "TMO",
+ "name": "赛默飞",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/TMO.png",
+ "price": "613.78",
+ "priceChange24hPercent": "-0.7519",
+ "marketCap": "228093537380",
+ "volume24h": "746494580.5",
+ "key": "stock:TMO",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "赛默飞"
+ }
+ },
+ {
+ "symbol": "UNH",
+ "name": "联合健康",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/UNH.png",
+ "price": "397.14",
+ "priceChange24hPercent": "-0.94777",
+ "marketCap": "360660468605",
+ "volume24h": "1916737036.1399999",
+ "key": "stock:UNH",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "联合健康"
+ }
+ },
+ {
+ "symbol": "VRTX",
+ "name": "福泰制药",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/VRTX.png",
+ "price": "546.12",
+ "priceChange24hPercent": "-2.12202",
+ "marketCap": "138607986600",
+ "volume24h": "438820526.88",
+ "key": "stock:VRTX",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "福泰制药"
+ }
+ }
+ ],
+ "market__tab__energy": [
+ {
+ "symbol": "CEG",
+ "name": "星座能源",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/CEG.png",
+ "price": "298.96",
+ "priceChange24hPercent": "4.87985",
+ "marketCap": "107357139899",
+ "volume24h": "866527189.1199999",
+ "key": "stock:CEG",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "星座能源"
+ }
+ },
+ {
+ "symbol": "COP",
+ "name": "康菲石油",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/COP.png",
+ "price": "134.26",
+ "priceChange24hPercent": "-1.07574",
+ "marketCap": "163568153380",
+ "volume24h": "696228456.9799999",
+ "key": "stock:COP",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "康菲石油"
+ }
+ },
+ {
+ "symbol": "CVX",
+ "name": "雪佛龙",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/CVX.png",
+ "price": "208.53",
+ "priceChange24hPercent": "-1.32027",
+ "marketCap": "415308348000",
+ "volume24h": "1122138299.52",
+ "key": "stock:CVX",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "雪佛龙"
+ }
+ },
+ {
+ "symbol": "DNN",
+ "name": "Denison铀矿",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/DNN.png",
+ "price": "3.42",
+ "priceChange24hPercent": "0.44053",
+ "marketCap": "3095158010",
+ "volume24h": "71310779.1",
+ "key": "stock:DNN",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Denison铀矿"
+ }
+ },
+ {
+ "symbol": "ENPH",
+ "name": "Enphase Energy",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/ENPH.png",
+ "price": "36.37",
+ "priceChange24hPercent": "0.16524",
+ "marketCap": "4806100848",
+ "volume24h": "96012944.77999999",
+ "key": "stock:ENPH",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Enphase Energy"
+ }
+ },
+ {
+ "symbol": "GEV",
+ "name": "GE Vernova",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/GEV.png",
+ "price": "941.95",
+ "priceChange24hPercent": "0.01167927",
+ "marketCap": "250872934520",
+ "volume24h": "1162161896.8500001",
+ "key": "stock:GEV",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "GE Vernova"
+ }
+ },
+ {
+ "symbol": "LNG",
+ "name": "Cheniere Energy, Inc.",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/LNG.png",
+ "price": "292",
+ "priceChange24hPercent": "0.39539",
+ "marketCap": "61189184000",
+ "volume24h": "833596344",
+ "key": "stock:LNG",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Cheniere Energy, Inc."
+ }
+ },
+ {
+ "symbol": "NLR",
+ "name": "VanEck Uranium and Nuclear ETF",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/NLR.png",
+ "price": "119.95",
+ "priceChange24hPercent": "0.63764",
+ "marketCap": "2872010110",
+ "volume24h": "31718138.6",
+ "key": "stock:NLR",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "VanEck Uranium and Nuclear ETF"
+ }
+ },
+ {
+ "symbol": "OKLO",
+ "name": "Oklo",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/OKLO.png",
+ "price": "41.27",
+ "priceChange24hPercent": "3.58936",
+ "marketCap": "7180608033",
+ "volume24h": "333578889.34000003",
+ "key": "stock:OKLO",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Oklo"
+ }
+ },
+ {
+ "symbol": "OXY",
+ "name": "西方石油",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/OXY.png",
+ "price": "60.04",
+ "priceChange24hPercent": "-0.93227",
+ "marketCap": "59717867448",
+ "volume24h": "400488654.56",
+ "key": "stock:OXY",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "西方石油"
+ }
+ },
+ {
+ "symbol": "PBR",
+ "name": "巴西石油",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/PBR.png",
+ "price": "20.12",
+ "priceChange24hPercent": "-1.87759",
+ "marketCap": "129660646415",
+ "volume24h": "377829496.24",
+ "key": "stock:PBR",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "巴西石油"
+ }
+ },
+ {
+ "symbol": "SMR",
+ "name": "NuScale Power Corporation",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/SMR.png",
+ "price": "9.695",
+ "priceChange24hPercent": "-0.61507",
+ "marketCap": "2890835109",
+ "volume24h": "180709729.51500002",
+ "key": "stock:SMR",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "NuScale Power Corporation"
+ }
+ },
+ {
+ "symbol": "TLN",
+ "name": "Talen Energy Corporation",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/TLN.png",
+ "price": "317",
+ "priceChange24hPercent": "3.75753",
+ "marketCap": "14390217536",
+ "volume24h": "183146750",
+ "key": "stock:TLN",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Talen Energy Corporation"
+ }
+ },
+ {
+ "symbol": "UEC",
+ "name": "铀能源",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/UEC.png",
+ "price": "11.54",
+ "priceChange24hPercent": "0.26064",
+ "marketCap": "5710822880",
+ "volume24h": "57592724.16",
+ "key": "stock:UEC",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "铀能源"
+ }
+ },
+ {
+ "symbol": "UUUU",
+ "name": "能源燃料",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/UUUU.png",
+ "price": "14.47",
+ "priceChange24hPercent": "0.87138",
+ "marketCap": "3616329956",
+ "volume24h": "69504778.37",
+ "key": "stock:UUUU",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "能源燃料"
+ }
+ },
+ {
+ "symbol": "VST",
+ "name": "Vistra",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/VST.png",
+ "price": "149.3",
+ "priceChange24hPercent": "3.5224",
+ "marketCap": "50341342472",
+ "volume24h": "684515119",
+ "key": "stock:VST",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Vistra"
+ }
+ },
+ {
+ "symbol": "XOM",
+ "name": "埃克森美孚",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/XOM.png",
+ "price": "159.46",
+ "priceChange24hPercent": "-1.69533",
+ "marketCap": "660875591600",
+ "volume24h": "2537206808.78",
+ "key": "stock:XOM",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "埃克森美孚"
+ }
+ }
+ ],
+ "market__tab__china_tech": [
+ {
+ "symbol": "BABA",
+ "name": "阿里巴巴",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/BABA.png",
+ "price": "113.24",
+ "priceChange24hPercent": "1.27896",
+ "marketCap": "271421798529",
+ "volume24h": "810668853.4399999",
+ "key": "stock:BABA",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "阿里巴巴"
+ }
+ },
+ {
+ "symbol": "BIDU",
+ "name": "百度",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/BIDU.png",
+ "price": "99.47",
+ "priceChange24hPercent": "4.06989",
+ "marketCap": "33832211369",
+ "volume24h": "256503090.06",
+ "key": "stock:BIDU",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "百度"
+ }
+ },
+ {
+ "symbol": "BILI",
+ "name": "哔哩哔哩",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/BILI.png",
+ "price": "15.23",
+ "priceChange24hPercent": "-1.74194",
+ "marketCap": "6388386156",
+ "volume24h": "162714548.14000002",
+ "key": "stock:BILI",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "哔哩哔哩"
+ }
+ },
+ {
+ "symbol": "BZ",
+ "name": "Kanzhun Limited",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/BZ.png",
+ "price": "16.92",
+ "priceChange24hPercent": "0.47506",
+ "marketCap": "7742644418",
+ "volume24h": "77034018.96000001",
+ "key": "stock:BZ",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Kanzhun Limited"
+ }
+ },
+ {
+ "symbol": "JD",
+ "name": "京东",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/JD.png",
+ "price": "28.26",
+ "priceChange24hPercent": "1.87455",
+ "marketCap": "39672796818",
+ "volume24h": "138237124.68",
+ "key": "stock:JD",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "京东"
+ }
+ },
+ {
+ "symbol": "LI",
+ "name": "理想汽车",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/LI.png",
+ "price": "12.37",
+ "priceChange24hPercent": "2.57048",
+ "marketCap": "12493209567",
+ "volume24h": "33822957.01",
+ "key": "stock:LI",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "理想汽车"
+ }
+ },
+ {
+ "symbol": "NIO",
+ "name": "蔚来",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/NIO.png",
+ "price": "3.8",
+ "priceChange24hPercent": "-1.42672",
+ "marketCap": "9428221682",
+ "volume24h": "198012725.6",
+ "key": "stock:NIO",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "蔚来"
+ }
+ },
+ {
+ "symbol": "NTES",
+ "name": "网易",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/NTES.png",
+ "price": "119.29",
+ "priceChange24hPercent": "1.91371",
+ "marketCap": "76157280933",
+ "volume24h": "87598822.15",
+ "key": "stock:NTES",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "网易"
+ }
+ },
+ {
+ "symbol": "PDD",
+ "name": "拼多多",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/PDD.png",
+ "price": "82.21",
+ "priceChange24hPercent": "0.71052",
+ "marketCap": "117017422072",
+ "volume24h": "382935002.09999996",
+ "key": "stock:PDD",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "拼多多"
+ }
+ },
+ {
+ "symbol": "TCOM",
+ "name": "携程",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/TCOM.png",
+ "price": "41.03",
+ "priceChange24hPercent": "-0.89372",
+ "marketCap": "26652408420",
+ "volume24h": "130346032.41",
+ "key": "stock:TCOM",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "携程"
+ }
+ }
+ ],
+ "market__tab__commodities": [
+ {
+ "symbol": "BTG",
+ "name": "B2Gold",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/BTG.png",
+ "price": "5.61",
+ "priceChange24hPercent": "-1.40598",
+ "marketCap": "7474876200",
+ "volume24h": "122764847.37",
+ "key": "stock:BTG",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "B2Gold"
+ }
+ },
+ {
+ "symbol": "DBC",
+ "name": "大宗商品ETF",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/DBC.png",
+ "price": "31.9",
+ "priceChange24hPercent": "-0.18773",
+ "marketCap": "2250209253",
+ "volume24h": "26635351.599999998",
+ "key": "stock:DBC",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "大宗商品ETF"
+ }
+ },
+ {
+ "symbol": "FCX",
+ "name": "自由港麦克莫兰",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/FCX.png",
+ "price": "72.72",
+ "priceChange24hPercent": "0.22741",
+ "marketCap": "104539363200",
+ "volume24h": "527756673.59999996",
+ "key": "stock:FCX",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "自由港麦克莫兰"
+ }
+ },
+ {
+ "symbol": "GLD",
+ "name": "黄金ETF",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/GLD.png",
+ "price": "406.77",
+ "priceChange24hPercent": "-0.84101",
+ "marketCap": "143506616993",
+ "volume24h": "3943071366.7799997",
+ "key": "stock:GLD",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "黄金ETF"
+ }
+ },
+ {
+ "symbol": "IAU",
+ "name": "iShares黄金ETF",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/IAU.png",
+ "price": "83.39",
+ "priceChange24hPercent": "-0.84423",
+ "marketCap": "65795429989",
+ "volume24h": "415966081.39",
+ "key": "stock:IAU",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "iShares黄金ETF"
+ }
+ },
+ {
+ "symbol": "MP",
+ "name": "MP材料",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/MP.png",
+ "price": "54.53",
+ "priceChange24hPercent": "1.39457",
+ "marketCap": "9707539660",
+ "volume24h": "382925201.05",
+ "key": "stock:MP",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "MP材料"
+ }
+ },
+ {
+ "symbol": "NEM",
+ "name": "纽蒙特",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/NEM.png",
+ "price": "128.09",
+ "priceChange24hPercent": "-1.79407",
+ "marketCap": "134967442992",
+ "volume24h": "721700689.25",
+ "key": "stock:NEM",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "纽蒙特"
+ }
+ },
+ {
+ "symbol": "PALL",
+ "name": "钯金ETF",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/PALL.png",
+ "price": "25.31",
+ "priceChange24hPercent": "-1.86119",
+ "marketCap": "662462421",
+ "volume24h": "18618111.93",
+ "key": "stock:PALL",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "钯金ETF"
+ }
+ },
+ {
+ "symbol": "PPLT",
+ "name": "abrdn Physical Platinum Shares ETF",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/PPLT.png",
+ "price": "16.5",
+ "priceChange24hPercent": "0.06063911",
+ "marketCap": "2630758713",
+ "volume24h": "23657997",
+ "key": "stock:PPLT",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "abrdn Physical Platinum Shares ETF"
+ }
+ },
+ {
+ "symbol": "SCCO",
+ "name": "南方铜业",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/SCCO.png",
+ "price": "198.76",
+ "priceChange24hPercent": "-0.38591",
+ "marketCap": "165831769885",
+ "volume24h": "156565040.84",
+ "key": "stock:SCCO",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "南方铜业"
+ }
+ },
+ {
+ "symbol": "SLV",
+ "name": "白银ETF",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/SLV.png",
+ "price": "59.82",
+ "priceChange24hPercent": "-1.19746",
+ "marketCap": "32192820451",
+ "volume24h": "751852335.96",
+ "key": "stock:SLV",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "白银ETF"
+ }
+ }
+ ],
+ "market__tab__aerospace": [
+ {
+ "symbol": "ACHR",
+ "name": "Archer航空",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/ACHR.png",
+ "price": "5.71",
+ "priceChange24hPercent": "-0.86806",
+ "marketCap": "4337304580",
+ "volume24h": "88472532.94",
+ "key": "stock:ACHR",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "Archer航空"
+ }
+ },
+ {
+ "symbol": "BA",
+ "name": "波音",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/BA.png",
+ "price": "212.25",
+ "priceChange24hPercent": "0.82656",
+ "marketCap": "167756032500",
+ "volume24h": "971355969.75",
+ "key": "stock:BA",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "波音"
+ }
+ },
+ {
+ "symbol": "LMT",
+ "name": "洛克希德马丁",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/LMT.png",
+ "price": "525.28",
+ "priceChange24hPercent": "-1.43916",
+ "marketCap": "121229896480",
+ "volume24h": "495034902.88",
+ "key": "stock:LMT",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "洛克希德马丁"
+ }
+ },
+ {
+ "symbol": "NOC",
+ "name": "诺斯罗普·格鲁曼",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/NOC.png",
+ "price": "514.98",
+ "priceChange24hPercent": "-2.51022",
+ "marketCap": "73159603740",
+ "volume24h": "382014223.92",
+ "key": "stock:NOC",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "诺斯罗普·格鲁曼"
+ }
+ },
+ {
+ "symbol": "RTX",
+ "name": "雷神技术",
+ "logoUrl": "https://uni.onekey-asset.com/static/stock/RTX.png",
+ "price": "200.79",
+ "priceChange24hPercent": "-0.66294",
+ "marketCap": "270616349100",
+ "volume24h": "560053507.5",
+ "key": "stock:RTX",
+ "kind": "stock",
+ "sourceCategory": "stocks",
+ "stock": {
+ "subtitle": "雷神技术"
+ }
+ }
+ ]
+ }
+};
diff --git a/example/react-native/pages/marketNativePagerTypes.ts b/example/react-native/pages/marketNativePagerTypes.ts
new file mode 100644
index 000000000..1e15323e7
--- /dev/null
+++ b/example/react-native/pages/marketNativePagerTypes.ts
@@ -0,0 +1,123 @@
+export type MarketDataMode = 'replay' | 'live';
+
+export type MarketScenario = 'long' | 'short' | 'empty' | 'error';
+
+export type MarketTimeRange = '5m' | '1h' | '4h' | '24h';
+
+export type MarketPageKind = 'watchlist' | 'spot' | 'topCoins' | 'perps';
+
+export type MarketCategory = Readonly<{
+ id: string;
+ name: string;
+}>;
+
+export type MarketNetwork = Readonly<{
+ networkId: string;
+ name: string;
+ logoUrl: string;
+}>;
+
+export type MarketStockMetadata = Readonly<{
+ title?: string;
+ subtitle?: string;
+ source?: string;
+ sourceLogoUri?: string;
+ isOpen?: boolean;
+ isPaused?: boolean;
+ description?: string;
+}>;
+
+export type MarketAsset = Readonly<{
+ key: string;
+ kind: 'token' | 'stock' | 'perp';
+ sourceCategory: string;
+ networkId?: string;
+ networkName?: string;
+ networkLogoUrl?: string;
+ address?: string;
+ isNative?: boolean;
+ name: string;
+ symbol: string;
+ logoUrl?: string;
+ logoUrls?: readonly string[];
+ price?: string;
+ priceChange24hPercent?: string;
+ volume24h?: string;
+ marketCap?: string;
+ communityRecognized?: boolean;
+ stock?: MarketStockMetadata;
+ maxLeverage?: number;
+ dexLabel?: string;
+ subtitle?: string;
+}>;
+
+export type MarketBanner = Readonly<{
+ id: string;
+ type?: 'ticker' | 'perps';
+ title: string;
+ backgroundColor: string;
+ description?: Readonly<{
+ text: string;
+ fontColor: string;
+ }>;
+ tokenLogos: readonly string[];
+ tokenListId: string;
+}>;
+
+export type MarketConfig = Readonly<{
+ recommendTokens?: readonly MarketAsset[];
+ spotCategories: readonly MarketCategory[];
+ stockCategories: readonly MarketCategory[];
+ perpsCategories: readonly MarketCategory[];
+ networks: readonly MarketNetwork[];
+ minLiquidity: number;
+}>;
+
+export type MarketPageDescriptor = Readonly<{
+ key: string;
+ kind: MarketPageKind;
+ name: string;
+ categoryId: string;
+}>;
+
+export type MarketReplaySnapshot = Readonly<{
+ schemaVersion: 1;
+ fetchedAt: string;
+ source: Readonly<{
+ baseUrl: string;
+ testBaseUrl?: string;
+ testFetchedAt?: string;
+ requestVersion: string;
+ requestPlatform: string;
+ requiredHeaders: readonly string[];
+ notes: readonly string[];
+ }>;
+ config: MarketConfig;
+ banners: readonly MarketBanner[];
+ locales?: Readonly<
+ Record<
+ string,
+ Readonly<{
+ config: MarketConfig;
+ banners: readonly MarketBanner[];
+ stockMetadata?: Readonly>;
+ }>
+ >
+ >;
+ /** Exact public response for category|network|time range|stock category. */
+ spotQueries?: Readonly>;
+ spot: Readonly>;
+ stocks?: Readonly>;
+ perps: Readonly>;
+}>;
+
+export type MarketPageResult = Readonly<{
+ items: readonly MarketAsset[];
+ total: number;
+ page: number;
+ canLoadMore: boolean;
+ fetchedAt: string;
+ sourceUrl: string;
+ note?: string;
+ nextCursor?: string;
+}>;
diff --git a/example/react-native/route.tsx b/example/react-native/route.tsx
index 361ba6fca..3c7ba20c4 100644
--- a/example/react-native/route.tsx
+++ b/example/react-native/route.tsx
@@ -29,6 +29,7 @@ import { NativeListAccountSelectorPage } from './pages/NativeListAccountSelector
import type { AccountSelectorInitialTargetInput } from './pages/nativeListAccountSelectorData';
import { NativeListNetworkSelectorPage } from './pages/NativeListNetworkSelectorPage';
import { NativeListTokenSelectorPage } from './pages/NativeListTokenSelectorPage';
+import type { MarketSearchParams } from './pages/MarketNativePagerExamplePage';
import {
NativeListExamplePage,
type NativeListExampleKey,
@@ -84,6 +85,8 @@ export type RootStackParamList = {
NativeListAccountSelector: AccountSelectorInitialTargetInput | undefined;
NativeListNetworkSelector: undefined;
NativeListTokenSelector: undefined;
+ MarketNativePager: undefined;
+ MarketSearch: MarketSearchParams;
OtaPipeline: undefined;
ApkOtaPipeline: undefined;
ChartWebView: undefined;
@@ -242,6 +245,13 @@ const modules: {
description: 'SDWebImage/Glide image view with native loading states',
icon: '🖼️',
},
+ {
+ screen: 'MarketNativePager',
+ name: 'Market Native Pager',
+ description:
+ 'Production Market replay/live data with native collapsible pager and Market rows',
+ icon: '📉',
+ },
{
screen: 'NativeList',
name: 'Native List',
@@ -614,6 +624,21 @@ export function AppNavigator() {
component={OneKeyImageTestPage}
options={{ title: 'OneKey Image' }}
/>
+
+ require('./pages/MarketNativePagerExamplePage').MarketNativeSearchPage
+ }
+ options={{ headerShown: false, presentation: 'fullScreenModal' }}
+ />
+
+ require('./pages/MarketNativePagerExamplePage')
+ .MarketNativePagerExamplePage
+ }
+ options={{ headerShown: false }}
+ />
{
+ const marketModule = await import('../pages/MarketNativePagerExamplePage');
+ return { default: marketModule.MarketNativePagerExamplePage };
+});
+
+const marketLoadingFallback = (
+
+
+
+);
+
const rootElement = document.getElementById('root');
if (!rootElement) throw new Error('Missing #root element');
@@ -20,12 +31,19 @@ const initialTarget = {
walletNumber: readTargetNumber('wallet'),
accountNumber: readTargetNumber('account'),
};
+const page = searchParams.get('page');
createRoot(rootElement).render(
-
+ {page === 'market' ? (
+
+
+
+ ) : (
+
+ )}
,
diff --git a/example/react-native/web/rspack.config.js b/example/react-native/web/rspack.config.js
index ca50b82b3..43869b519 100644
--- a/example/react-native/web/rspack.config.js
+++ b/example/react-native/web/rspack.config.js
@@ -16,6 +16,39 @@ module.exports = {
port: 8090,
historyApiFallback: true,
hot: true,
+ proxy: [
+ {
+ context: ['/onekey-market-api'],
+ target: 'https://utility.onekeycn.com',
+ router: req => req.url.startsWith('/onekey-market-api/swap/')
+ ? 'https://swap.onekeycn.com'
+ : /^\/onekey-market-api\/utility\/v1\/(stocks|market\/asset\/list)(\?|$)/.test(req.url)
+ ? 'https://utility.onekeytest.com' : 'https://utility.onekeycn.com',
+ changeOrigin: true,
+ pathRewrite: (requestPath, req) => {
+ const url = new URL(requestPath, 'http://localhost');
+ req.marketLocale = url.searchParams.get('locale');
+ url.searchParams.delete('locale');
+ return url.pathname.replace(/^\/onekey-market-api/, '') + url.search;
+ },
+ on: {
+ proxyReq: (proxyReq, req) => {
+ proxyReq.setHeader(
+ 'X-Onekey-Request-Locale',
+ req.marketLocale === 'en-US' ? 'en-US' : 'zh-CN',
+ );
+ },
+ },
+ headers: {
+ Accept: 'application/json',
+ 'User-Agent': 'OneKeyWallet/6.15.0',
+ 'X-Onekey-Request-Version': '6.15.0',
+ 'X-Onekey-Request-Platform': 'web',
+ 'X-Onekey-Request-Locale': 'zh-cn',
+ 'X-Onekey-Request-Currency': 'usd',
+ },
+ },
+ ],
},
resolve: {
alias: {
@@ -23,6 +56,10 @@ module.exports = {
__dirname,
'../../../native-views/react-native-native-list/src',
),
+ '@onekeyfe/react-native-pager-view$': path.resolve(
+ __dirname,
+ '../../../native-views/react-native-pager-view/src',
+ ),
'react-native$': 'react-native-web',
},
extensions: [
@@ -61,7 +98,7 @@ module.exports = {
type: 'css',
},
{
- test: /\.ttf$/,
+ test: /\.(ttf|svg)$/,
type: 'asset/resource',
generator: { filename: 'assets/[name].[contenthash:8][ext]' },
},
@@ -69,7 +106,7 @@ module.exports = {
},
plugins: [
new HtmlRspackPlugin({
- title: 'NativeList Account Selector',
+ title: 'OneKey Native Examples',
templateContent:
'',
meta: {
diff --git a/example/react-native/web/styles.css b/example/react-native/web/styles.css
index f9f6807d4..0f249001d 100644
--- a/example/react-native/web/styles.css
+++ b/example/react-native/web/styles.css
@@ -7,6 +7,24 @@
font-display: swap;
}
+@font-face {
+ font-family: 'Roobert';
+ src: url('../../../native-views/react-native-native-list/common/fonts/Roobert-Medium.ttf')
+ format('truetype');
+ font-style: normal;
+ font-weight: 500;
+ font-display: swap;
+}
+
+@font-face {
+ font-family: 'Roobert';
+ src: url('../../../native-views/react-native-native-list/common/fonts/Roobert-SemiBold.ttf')
+ format('truetype');
+ font-style: normal;
+ font-weight: 600;
+ font-display: swap;
+}
+
@font-face {
font-family: 'Roobert-Regular';
src: url('../../../native-views/react-native-native-list/common/fonts/Roobert-Regular.ttf')
@@ -61,3 +79,27 @@ input {
* {
box-sizing: border-box;
}
+
+.market-loading {
+ align-items: center;
+ background: #080808;
+ display: flex;
+ height: 100%;
+ justify-content: center;
+ width: 100%;
+}
+
+.market-loading-indicator {
+ animation: market-loading-spin 800ms linear infinite;
+ border: 2px solid rgb(255 255 255 / 24%);
+ border-radius: 50%;
+ border-top-color: #fff;
+ height: 28px;
+ width: 28px;
+}
+
+@keyframes market-loading-spin {
+ to {
+ transform: rotate(360deg);
+ }
+}
diff --git a/native-modules/native-logger/package.json b/native-modules/native-logger/package.json
index b2ec4e839..c604875a1 100644
--- a/native-modules/native-logger/package.json
+++ b/native-modules/native-logger/package.json
@@ -1,6 +1,6 @@
{
"name": "@onekeyfe/react-native-native-logger",
- "version": "3.0.114",
+ "version": "3.0.118",
"description": "react-native-native-logger",
"main": "./lib/module/index.js",
"types": "./lib/typescript/src/index.d.ts",
diff --git a/native-modules/react-native-aes-crypto/package.json b/native-modules/react-native-aes-crypto/package.json
index bd03602bd..757f731ab 100644
--- a/native-modules/react-native-aes-crypto/package.json
+++ b/native-modules/react-native-aes-crypto/package.json
@@ -1,6 +1,6 @@
{
"name": "@onekeyfe/react-native-aes-crypto",
- "version": "3.0.114",
+ "version": "3.0.118",
"description": "react-native-aes-crypto",
"main": "./lib/module/index.js",
"types": "./lib/typescript/src/index.d.ts",
diff --git a/native-modules/react-native-app-update/package.json b/native-modules/react-native-app-update/package.json
index b5f8bc26b..db0937263 100644
--- a/native-modules/react-native-app-update/package.json
+++ b/native-modules/react-native-app-update/package.json
@@ -1,6 +1,6 @@
{
"name": "@onekeyfe/react-native-app-update",
- "version": "3.0.114",
+ "version": "3.0.118",
"description": "react-native-app-update",
"main": "./lib/module/index.js",
"types": "./lib/typescript/src/index.d.ts",
diff --git a/native-modules/react-native-async-storage/package.json b/native-modules/react-native-async-storage/package.json
index a916f5679..fd4957b38 100644
--- a/native-modules/react-native-async-storage/package.json
+++ b/native-modules/react-native-async-storage/package.json
@@ -1,6 +1,6 @@
{
"name": "@onekeyfe/react-native-async-storage",
- "version": "3.0.114",
+ "version": "3.0.118",
"description": "react-native-async-storage",
"main": "./lib/module/index.js",
"types": "./lib/typescript/src/index.d.ts",
diff --git a/native-modules/react-native-background-thread/package.json b/native-modules/react-native-background-thread/package.json
index 6f37ecd7c..b04c7026f 100644
--- a/native-modules/react-native-background-thread/package.json
+++ b/native-modules/react-native-background-thread/package.json
@@ -1,6 +1,6 @@
{
"name": "@onekeyfe/react-native-background-thread",
- "version": "3.0.114",
+ "version": "3.0.118",
"description": "react-native-background-thread",
"main": "./lib/module/index.js",
"types": "./lib/typescript/src/index.d.ts",
diff --git a/native-modules/react-native-bundle-crypto/package.json b/native-modules/react-native-bundle-crypto/package.json
index 594d30f13..7e6fff181 100644
--- a/native-modules/react-native-bundle-crypto/package.json
+++ b/native-modules/react-native-bundle-crypto/package.json
@@ -1,6 +1,6 @@
{
"name": "@onekeyfe/react-native-bundle-crypto",
- "version": "3.0.114",
+ "version": "3.0.118",
"description": "react-native-bundle-crypto",
"main": "./lib/module/index.js",
"types": "./lib/typescript/src/index.d.ts",
diff --git a/native-modules/react-native-bundle-update/package.json b/native-modules/react-native-bundle-update/package.json
index 2e50ecfb2..affda41d8 100644
--- a/native-modules/react-native-bundle-update/package.json
+++ b/native-modules/react-native-bundle-update/package.json
@@ -1,6 +1,6 @@
{
"name": "@onekeyfe/react-native-bundle-update",
- "version": "3.0.114",
+ "version": "3.0.118",
"description": "react-native-bundle-update",
"main": "./lib/module/index.js",
"types": "./lib/typescript/src/index.d.ts",
diff --git a/native-modules/react-native-check-biometric-auth-changed/package.json b/native-modules/react-native-check-biometric-auth-changed/package.json
index 7ad2ebff4..727997837 100644
--- a/native-modules/react-native-check-biometric-auth-changed/package.json
+++ b/native-modules/react-native-check-biometric-auth-changed/package.json
@@ -1,6 +1,6 @@
{
"name": "@onekeyfe/react-native-check-biometric-auth-changed",
- "version": "3.0.114",
+ "version": "3.0.118",
"description": "react-native-check-biometric-auth-changed",
"main": "./lib/module/index.js",
"types": "./lib/typescript/src/index.d.ts",
diff --git a/native-modules/react-native-cloud-fs/package.json b/native-modules/react-native-cloud-fs/package.json
index b6a04d8e0..3ecc88464 100644
--- a/native-modules/react-native-cloud-fs/package.json
+++ b/native-modules/react-native-cloud-fs/package.json
@@ -1,6 +1,6 @@
{
"name": "@onekeyfe/react-native-cloud-fs",
- "version": "3.0.114",
+ "version": "3.0.118",
"description": "react-native-cloud-fs TurboModule for OneKey",
"main": "./lib/module/index.js",
"types": "./lib/typescript/src/index.d.ts",
diff --git a/native-modules/react-native-cloud-kit-module/package.json b/native-modules/react-native-cloud-kit-module/package.json
index 9f2bb3f67..986209166 100644
--- a/native-modules/react-native-cloud-kit-module/package.json
+++ b/native-modules/react-native-cloud-kit-module/package.json
@@ -1,6 +1,6 @@
{
"name": "@onekeyfe/react-native-cloud-kit-module",
- "version": "3.0.114",
+ "version": "3.0.118",
"description": "react-native-cloud-kit-module",
"main": "./lib/module/index.js",
"types": "./lib/typescript/src/index.d.ts",
diff --git a/native-modules/react-native-device-utils/package.json b/native-modules/react-native-device-utils/package.json
index 81d7022f5..d325bd99c 100644
--- a/native-modules/react-native-device-utils/package.json
+++ b/native-modules/react-native-device-utils/package.json
@@ -1,6 +1,6 @@
{
"name": "@onekeyfe/react-native-device-utils",
- "version": "3.0.114",
+ "version": "3.0.118",
"description": "react-native-device-utils",
"main": "./lib/module/index.js",
"types": "./lib/typescript/src/index.d.ts",
diff --git a/native-modules/react-native-dns-lookup/package.json b/native-modules/react-native-dns-lookup/package.json
index c90453f6a..43280a416 100644
--- a/native-modules/react-native-dns-lookup/package.json
+++ b/native-modules/react-native-dns-lookup/package.json
@@ -1,6 +1,6 @@
{
"name": "@onekeyfe/react-native-dns-lookup",
- "version": "3.0.114",
+ "version": "3.0.118",
"description": "react-native-dns-lookup",
"main": "./lib/module/index.js",
"types": "./lib/typescript/src/index.d.ts",
diff --git a/native-modules/react-native-get-random-values/package.json b/native-modules/react-native-get-random-values/package.json
index 229d35170..4ab27f05b 100644
--- a/native-modules/react-native-get-random-values/package.json
+++ b/native-modules/react-native-get-random-values/package.json
@@ -1,6 +1,6 @@
{
"name": "@onekeyfe/react-native-get-random-values",
- "version": "3.0.114",
+ "version": "3.0.118",
"description": "react-native-get-random-values",
"main": "./lib/module/index.js",
"types": "./lib/typescript/src/index.d.ts",
diff --git a/native-modules/react-native-keychain-module/package.json b/native-modules/react-native-keychain-module/package.json
index fd5fb9738..d5939b7e3 100644
--- a/native-modules/react-native-keychain-module/package.json
+++ b/native-modules/react-native-keychain-module/package.json
@@ -1,6 +1,6 @@
{
"name": "@onekeyfe/react-native-keychain-module",
- "version": "3.0.114",
+ "version": "3.0.118",
"description": "react-native-keychain-module",
"main": "./lib/module/index.js",
"types": "./lib/typescript/src/index.d.ts",
diff --git a/native-modules/react-native-lite-card/package.json b/native-modules/react-native-lite-card/package.json
index eaf639749..8e2844fd8 100644
--- a/native-modules/react-native-lite-card/package.json
+++ b/native-modules/react-native-lite-card/package.json
@@ -1,6 +1,6 @@
{
"name": "@onekeyfe/react-native-lite-card",
- "version": "3.0.114",
+ "version": "3.0.118",
"description": "lite card",
"main": "./lib/module/index.js",
"types": "./lib/typescript/src/index.d.ts",
diff --git a/native-modules/react-native-network-info/package.json b/native-modules/react-native-network-info/package.json
index 0db4739fc..c333a0fe7 100644
--- a/native-modules/react-native-network-info/package.json
+++ b/native-modules/react-native-network-info/package.json
@@ -1,6 +1,6 @@
{
"name": "@onekeyfe/react-native-network-info",
- "version": "3.0.114",
+ "version": "3.0.118",
"description": "react-native-network-info",
"main": "./lib/module/index.js",
"types": "./lib/typescript/src/index.d.ts",
diff --git a/native-modules/react-native-network-throttle/package.json b/native-modules/react-native-network-throttle/package.json
index 60d1ac12e..1b9096421 100644
--- a/native-modules/react-native-network-throttle/package.json
+++ b/native-modules/react-native-network-throttle/package.json
@@ -1,6 +1,6 @@
{
"name": "@onekeyfe/react-native-network-throttle",
- "version": "3.0.114",
+ "version": "3.0.118",
"description": "react-native-network-throttle",
"main": "./lib/module/index.js",
"types": "./lib/typescript/src/index.d.ts",
diff --git a/native-modules/react-native-pbkdf2/package.json b/native-modules/react-native-pbkdf2/package.json
index dc78bb311..84f902b12 100644
--- a/native-modules/react-native-pbkdf2/package.json
+++ b/native-modules/react-native-pbkdf2/package.json
@@ -1,6 +1,6 @@
{
"name": "@onekeyfe/react-native-pbkdf2",
- "version": "3.0.114",
+ "version": "3.0.118",
"description": "react-native-pbkdf2",
"main": "./lib/module/index.js",
"types": "./lib/typescript/src/index.d.ts",
diff --git a/native-modules/react-native-perf-memory/package.json b/native-modules/react-native-perf-memory/package.json
index 5cc16ceee..de0de5ba8 100644
--- a/native-modules/react-native-perf-memory/package.json
+++ b/native-modules/react-native-perf-memory/package.json
@@ -1,6 +1,6 @@
{
"name": "@onekeyfe/react-native-perf-memory",
- "version": "3.0.114",
+ "version": "3.0.118",
"description": "react-native-perf-memory",
"main": "./lib/module/index.js",
"types": "./lib/typescript/src/index.d.ts",
diff --git a/native-modules/react-native-perf-stats/package.json b/native-modules/react-native-perf-stats/package.json
index d9a94f662..09668cffb 100644
--- a/native-modules/react-native-perf-stats/package.json
+++ b/native-modules/react-native-perf-stats/package.json
@@ -1,6 +1,6 @@
{
"name": "@onekeyfe/react-native-perf-stats",
- "version": "3.0.114",
+ "version": "3.0.118",
"description": "react-native-perf-stats",
"main": "./lib/module/index.js",
"types": "./lib/typescript/src/index.d.ts",
diff --git a/native-modules/react-native-ping/package.json b/native-modules/react-native-ping/package.json
index d1a895ea1..9b7dc18d1 100644
--- a/native-modules/react-native-ping/package.json
+++ b/native-modules/react-native-ping/package.json
@@ -1,6 +1,6 @@
{
"name": "@onekeyfe/react-native-ping",
- "version": "3.0.114",
+ "version": "3.0.118",
"description": "react-native-ping TurboModule for OneKey",
"main": "./lib/module/index.js",
"types": "./lib/typescript/src/index.d.ts",
diff --git a/native-modules/react-native-range-downloader/package.json b/native-modules/react-native-range-downloader/package.json
index 366e32223..14a9f2d53 100644
--- a/native-modules/react-native-range-downloader/package.json
+++ b/native-modules/react-native-range-downloader/package.json
@@ -1,6 +1,6 @@
{
"name": "@onekeyfe/react-native-range-downloader",
- "version": "3.0.114",
+ "version": "3.0.118",
"description": "react-native-range-downloader",
"main": "./lib/module/index.js",
"types": "./lib/typescript/src/index.d.ts",
diff --git a/native-modules/react-native-sni-connect/package.json b/native-modules/react-native-sni-connect/package.json
index 68ccaa260..305177e8d 100644
--- a/native-modules/react-native-sni-connect/package.json
+++ b/native-modules/react-native-sni-connect/package.json
@@ -1,6 +1,6 @@
{
"name": "@onekeyfe/react-native-sni-connect",
- "version": "3.0.114",
+ "version": "3.0.118",
"description": "A React Native library for SNI-based HTTP requests with DNS caching and request management",
"main": "./lib/module/index.js",
"types": "./lib/typescript/src/index.d.ts",
diff --git a/native-modules/react-native-splash-screen/package.json b/native-modules/react-native-splash-screen/package.json
index fe3f14714..668b98ecd 100644
--- a/native-modules/react-native-splash-screen/package.json
+++ b/native-modules/react-native-splash-screen/package.json
@@ -1,6 +1,6 @@
{
"name": "@onekeyfe/react-native-splash-screen",
- "version": "3.0.114",
+ "version": "3.0.118",
"description": "react-native-splash-screen",
"main": "./lib/module/index.js",
"types": "./lib/typescript/src/index.d.ts",
diff --git a/native-modules/react-native-split-bundle-loader/package.json b/native-modules/react-native-split-bundle-loader/package.json
index 98daa2083..6584ab81f 100644
--- a/native-modules/react-native-split-bundle-loader/package.json
+++ b/native-modules/react-native-split-bundle-loader/package.json
@@ -1,6 +1,6 @@
{
"name": "@onekeyfe/react-native-split-bundle-loader",
- "version": "3.0.114",
+ "version": "3.0.118",
"description": "react-native-split-bundle-loader",
"main": "./lib/module/index.js",
"types": "./lib/typescript/src/index.d.ts",
diff --git a/native-modules/react-native-tcp-socket/package.json b/native-modules/react-native-tcp-socket/package.json
index cb85ab75a..231e5e138 100644
--- a/native-modules/react-native-tcp-socket/package.json
+++ b/native-modules/react-native-tcp-socket/package.json
@@ -1,6 +1,6 @@
{
"name": "@onekeyfe/react-native-tcp-socket",
- "version": "3.0.114",
+ "version": "3.0.118",
"description": "react-native-tcp-socket",
"main": "./lib/module/index.js",
"types": "./lib/typescript/src/index.d.ts",
diff --git a/native-modules/react-native-zip-archive/package.json b/native-modules/react-native-zip-archive/package.json
index eddcb9e4f..6fd945a78 100644
--- a/native-modules/react-native-zip-archive/package.json
+++ b/native-modules/react-native-zip-archive/package.json
@@ -1,6 +1,6 @@
{
"name": "@onekeyfe/react-native-zip-archive",
- "version": "3.0.114",
+ "version": "3.0.118",
"description": "react-native-zip-archive Nitro HybridObject for OneKey",
"main": "./lib/module/index.js",
"types": "./lib/typescript/src/index.d.ts",
diff --git a/native-views/react-native-auto-size-input/package.json b/native-views/react-native-auto-size-input/package.json
index d73e121da..18a12a690 100644
--- a/native-views/react-native-auto-size-input/package.json
+++ b/native-views/react-native-auto-size-input/package.json
@@ -1,6 +1,6 @@
{
"name": "@onekeyfe/react-native-auto-size-input",
- "version": "3.0.114",
+ "version": "3.0.118",
"description": "Auto-sizing text input with font scaling, prefix and suffix support",
"main": "./lib/module/index.js",
"types": "./lib/typescript/src/index.d.ts",
diff --git a/native-views/react-native-chart-webview/package.json b/native-views/react-native-chart-webview/package.json
index ace62eef7..616d995ff 100644
--- a/native-views/react-native-chart-webview/package.json
+++ b/native-views/react-native-chart-webview/package.json
@@ -1,6 +1,6 @@
{
"name": "@onekeyfe/react-native-chart-webview",
- "version": "3.0.114",
+ "version": "3.0.118",
"description": "react-native-chart-webview",
"main": "./lib/module/index.js",
"types": "./lib/typescript/src/index.d.ts",
diff --git a/native-views/react-native-image/android/src/main/java/com/margelo/nitro/onekeyimage/OneKeyImage.kt b/native-views/react-native-image/android/src/main/java/com/margelo/nitro/onekeyimage/OneKeyImage.kt
index 0f60f74d1..3efb5f55d 100644
--- a/native-views/react-native-image/android/src/main/java/com/margelo/nitro/onekeyimage/OneKeyImage.kt
+++ b/native-views/react-native-image/android/src/main/java/com/margelo/nitro/onekeyimage/OneKeyImage.kt
@@ -1,14 +1,20 @@
package com.margelo.nitro.onekeyimage
+import android.animation.ValueAnimator
import android.app.Activity
import android.content.Context
import android.content.ContextWrapper
+import android.content.res.Configuration
import android.graphics.Canvas
import android.graphics.Color
import android.graphics.Paint
import android.graphics.drawable.Animatable
import android.graphics.drawable.Drawable
+import android.os.Build
+import android.os.SystemClock
+import android.provider.Settings
import android.view.View
+import android.view.animation.DecelerateInterpolator
import android.widget.ImageView
import com.bumptech.glide.Glide
import com.bumptech.glide.load.DataSource
@@ -88,8 +94,16 @@ private class OneKeyImageHostView(context: ThemedReactContext) : ImageView(conte
syncPlayback()
}
- fun updateSkeletonStyle() {
- skeleton.updateStyle(null, 3.0)
+ fun updateSkeletonStyle(baseColor: Int) {
+ val average = (Color.red(baseColor) + Color.green(baseColor) + Color.blue(baseColor)) / 3
+ val delta = if (average < 128) 18 else -12
+ val highlightColor = Color.argb(
+ Color.alpha(baseColor),
+ (Color.red(baseColor) + delta).coerceIn(0, 255),
+ (Color.green(baseColor) + delta).coerceIn(0, 255),
+ (Color.blue(baseColor) + delta).coerceIn(0, 255),
+ )
+ skeleton.updateStyle(intArrayOf(baseColor, highlightColor), 3.0)
skeleton.updateBounds(width, height)
}
@@ -137,6 +151,10 @@ internal fun oneKeyImageRequestSignature(
class HybridOneKeyImage(private val context: ThemedReactContext) :
HybridOneKeyImageSpec(), RecyclableView {
private enum class DisplayState { LOADING, IMAGE, ERROR, FALLBACK }
+ private companion object {
+ const val FADE_DELAY_THRESHOLD_MS = 100L
+ const val FADE_DURATION_MS = 140L
+ }
private val hostView = OneKeyImageHostView(context)
// The Activity outlives ScreenStack Fragments but still provides bounded
@@ -156,6 +174,7 @@ class HybridOneKeyImage(private val context: ThemedReactContext) :
private var displayRunnable: Runnable? = null
private var pendingDisplayGeneration: Long? = null
private var fallbackRunnable: Runnable? = null
+ private var requestStartedAtMs: Long? = null
/**
* Native reusable containers own their request cleanup explicitly, so their
@@ -236,6 +255,11 @@ class HybridOneKeyImage(private val context: ThemedReactContext) :
field = value
if (!suppressPropEffects) applyVariant()
}
+ override var placeholderColor: String? = null
+ set(value) {
+ field = value
+ if (!suppressPropEffects) applyVariant()
+ }
override var onLoadStart: (() -> Unit)? = null
override var onLoad: ((width: Double, height: Double, cacheType: OneKeyImageCacheType) -> Unit)? = null
override var onDisplay: (() -> Unit)? = null
@@ -244,7 +268,6 @@ class HybridOneKeyImage(private val context: ThemedReactContext) :
init {
OneKeyImageGlideRegistry.ensureRegistered(context)
- hostView.updateSkeletonStyle()
hostView.onReadyForRequest = { scheduleLoad() }
hostView.onAttachmentChanged = { attached ->
if (attached) {
@@ -317,6 +340,7 @@ class HybridOneKeyImage(private val context: ThemedReactContext) :
resizeWidth = null
overscan = 1.1
loadingStrategy = OneKeyImageLoadingStrategy.STATIC
+ placeholderColor = null
onLoadStart = null
onLoad = null
onDisplay = null
@@ -375,6 +399,7 @@ class HybridOneKeyImage(private val context: ThemedReactContext) :
cancelCurrent(invalidateGeneration = true)
val requestGeneration = generation
+ requestStartedAtMs = SystemClock.uptimeMillis()
onLoadStart?.invoke()
val customIdentity = OneKeyImageModel.headers(sourceHeadersJson).isNotEmpty()
@@ -430,6 +455,7 @@ class HybridOneKeyImage(private val context: ThemedReactContext) :
hostView.drawStateSymbol = false
hostView.setBackgroundColor(Color.TRANSPARENT)
hostView.setImageDrawable(resource)
+ applyLoadedImageTransition(resolvedCacheType)
applyAutoplay()
val loadCallback = onLoad
val loadEndCallback = onLoadEnd
@@ -563,6 +589,8 @@ class HybridOneKeyImage(private val context: ThemedReactContext) :
clearCurrentTarget()
requestActive = false
hostView.skeletonRequested = false
+ requestStartedAtMs = null
+ resetImageTransition()
if (invalidateGeneration) generation++
}
@@ -605,6 +633,7 @@ class HybridOneKeyImage(private val context: ThemedReactContext) :
private fun showLoading(requestIsActive: Boolean) {
displayState = DisplayState.LOADING
requestActive = requestIsActive
+ resetImageTransition()
hostView.setImageDrawable(null)
hostView.drawStateSymbol = false
applyLoadingAppearance()
@@ -621,11 +650,15 @@ class HybridOneKeyImage(private val context: ThemedReactContext) :
private fun showTerminalState(state: DisplayState) {
displayState = state
requestActive = false
+ resetImageTransition()
hostView.setImageDrawable(null)
hostView.skeletonRequested = false
- hostView.drawStateSymbol = true
+ val hidesTerminalState = loadingStrategy == OneKeyImageLoadingStrategy.NONE
+ hostView.drawStateSymbol = !hidesTerminalState
hostView.stateSymbol = stateSymbol()
- hostView.setBackgroundColor(placeholderColor())
+ hostView.setBackgroundColor(
+ if (hidesTerminalState) Color.TRANSPARENT else resolvedPlaceholderColor(),
+ )
hostView.invalidate()
}
@@ -634,7 +667,11 @@ class HybridOneKeyImage(private val context: ThemedReactContext) :
DisplayState.IMAGE -> Unit
DisplayState.LOADING -> applyLoadingAppearance()
DisplayState.ERROR, DisplayState.FALLBACK -> {
- hostView.setBackgroundColor(placeholderColor())
+ val hidesTerminalState = loadingStrategy == OneKeyImageLoadingStrategy.NONE
+ hostView.setBackgroundColor(
+ if (hidesTerminalState) Color.TRANSPARENT else resolvedPlaceholderColor(),
+ )
+ hostView.drawStateSymbol = !hidesTerminalState
hostView.stateSymbol = stateSymbol()
hostView.invalidate()
}
@@ -643,11 +680,13 @@ class HybridOneKeyImage(private val context: ThemedReactContext) :
private fun applyLoadingAppearance() {
val strategy = loadingStrategy ?: OneKeyImageLoadingStrategy.STATIC
+ val placeholder = resolvedPlaceholderColor()
hostView.setBackgroundColor(
- if (strategy == OneKeyImageLoadingStrategy.NONE) Color.TRANSPARENT else placeholderColor(),
+ if (strategy == OneKeyImageLoadingStrategy.NONE) Color.TRANSPARENT else placeholder,
)
+ hostView.updateSkeletonStyle(placeholder)
hostView.skeletonRequested =
- requestActive && strategy == OneKeyImageLoadingStrategy.SKELETON
+ requestActive && strategy == OneKeyImageLoadingStrategy.SKELETON && animationsEnabled()
hostView.invalidate()
}
@@ -658,11 +697,66 @@ class HybridOneKeyImage(private val context: ThemedReactContext) :
OneKeyImageVariant.AVATAR -> "●"
}
- private fun placeholderColor(): Int = when (variant ?: OneKeyImageVariant.GENERIC) {
- OneKeyImageVariant.GENERIC -> Color.rgb(232, 232, 232)
- OneKeyImageVariant.TOKEN -> Color.rgb(232, 237, 249)
- OneKeyImageVariant.NETWORK -> Color.rgb(229, 240, 245)
- OneKeyImageVariant.AVATAR -> Color.rgb(234, 234, 240)
+ private fun applyLoadedImageTransition(cacheType: OneKeyImageCacheType) {
+ resetImageTransition()
+ val startedAt = requestStartedAtMs ?: return
+ if (
+ cacheType == OneKeyImageCacheType.MEMORY ||
+ SystemClock.uptimeMillis() - startedAt < FADE_DELAY_THRESHOLD_MS ||
+ !animationsEnabled()
+ ) {
+ return
+ }
+ hostView.alpha = 0f
+ hostView.animate()
+ .alpha(1f)
+ .setDuration(FADE_DURATION_MS)
+ .setInterpolator(DecelerateInterpolator())
+ .start()
+ }
+
+ private fun resetImageTransition() {
+ hostView.animate().cancel()
+ hostView.alpha = 1f
+ }
+
+ private fun animationsEnabled(): Boolean =
+ if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {
+ ValueAnimator.areAnimatorsEnabled()
+ } else {
+ Settings.Global.getFloat(
+ context.contentResolver,
+ Settings.Global.ANIMATOR_DURATION_SCALE,
+ 1f,
+ ) != 0f
+ }
+
+ private fun resolvedPlaceholderColor(): Int {
+ parseRgbaHex(placeholderColor)?.let { return it }
+ // OneKey patch: fall back to a dark-aware low-contrast fill instead of light-only RGB values.
+ // return when (variant ?: OneKeyImageVariant.GENERIC) {
+ // OneKeyImageVariant.GENERIC -> Color.rgb(232, 232, 232)
+ // OneKeyImageVariant.TOKEN -> Color.rgb(232, 237, 249)
+ // OneKeyImageVariant.NETWORK -> Color.rgb(229, 240, 245)
+ // OneKeyImageVariant.AVATAR -> Color.rgb(234, 234, 240)
+ // }
+ val nightMode = context.resources.configuration.uiMode and Configuration.UI_MODE_NIGHT_MASK
+ return if (nightMode == Configuration.UI_MODE_NIGHT_YES) {
+ Color.rgb(38, 38, 38)
+ } else {
+ Color.rgb(238, 238, 238)
+ }
+ }
+
+ private fun parseRgbaHex(value: String?): Int? {
+ val hex = value?.trim()?.removePrefix("#") ?: return null
+ if (hex.length != 6 && hex.length != 8) return null
+ val parsed = hex.toLongOrNull(16) ?: return null
+ val red = ((parsed shr (if (hex.length == 8) 24 else 16)) and 0xFF).toInt()
+ val green = ((parsed shr (if (hex.length == 8) 16 else 8)) and 0xFF).toInt()
+ val blue = ((parsed shr (if (hex.length == 8) 8 else 0)) and 0xFF).toInt()
+ val alpha = if (hex.length == 8) (parsed and 0xFF).toInt() else 0xFF
+ return Color.argb(alpha, red, green, blue)
}
private fun applyContentFit() {
diff --git a/native-views/react-native-image/android/src/main/java/com/margelo/nitro/onekeyimage/OneKeyImageReusableView.kt b/native-views/react-native-image/android/src/main/java/com/margelo/nitro/onekeyimage/OneKeyImageReusableView.kt
index 31206239c..0d49d90a2 100644
--- a/native-views/react-native-image/android/src/main/java/com/margelo/nitro/onekeyimage/OneKeyImageReusableView.kt
+++ b/native-views/react-native-image/android/src/main/java/com/margelo/nitro/onekeyimage/OneKeyImageReusableView.kt
@@ -28,6 +28,7 @@ class OneKeyImageReusableView(context: ThemedReactContext) : FrameLayout(context
optimizeTos: Boolean,
overscan: Double,
loadingStrategy: String,
+ placeholderColor: String,
onLoad: (() -> Unit)? = null,
onError: (() -> Unit)? = null,
) {
@@ -62,6 +63,7 @@ class OneKeyImageReusableView(context: ThemedReactContext) : FrameLayout(context
"none" -> OneKeyImageLoadingStrategy.NONE
else -> OneKeyImageLoadingStrategy.STATIC
}
+ image.placeholderColor = placeholderColor
image.sourceUri = sourceUri
image.afterUpdate()
}
diff --git a/native-views/react-native-image/ios/OneKeyAvatarImageLoader.swift b/native-views/react-native-image/ios/OneKeyAvatarImageLoader.swift
index f4588c66a..2354db357 100644
--- a/native-views/react-native-image/ios/OneKeyAvatarImageLoader.swift
+++ b/native-views/react-native-image/ios/OneKeyAvatarImageLoader.swift
@@ -11,7 +11,9 @@ final class OneKeyAvatarImageLoader: NSObject, SDImageLoader {
config.maxDiskAge = 30 * 24 * 60 * 60
config.maxDiskSize = 32 * 1024 * 1024
config.maxMemoryCost = 8 * 1024 * 1024
- config.maxMemoryCount = 128
+ // OneKey patch: Keep several large-account wallets resident while the byte
+ // budget remains the hard memory bound.
+ config.maxMemoryCount = 512
return SDImageCache(namespace: "onekey-avatar-blockie-v1", diskCacheDirectory: nil, config: config)
}()
diff --git a/native-views/react-native-image/ios/OneKeyImage.swift b/native-views/react-native-image/ios/OneKeyImage.swift
index 6d83c770c..77eace8ba 100644
--- a/native-views/react-native-image/ios/OneKeyImage.swift
+++ b/native-views/react-native-image/ios/OneKeyImage.swift
@@ -22,6 +22,7 @@ private final class OneKeyImageHostView: SDAnimatedImageView {
private final class OneKeyImageSkeletonView: UIView {
private lazy var renderer = OneKeySkeletonRenderer(hostLayer: layer)
private var requestedRunning = false
+ private var colors: [UIColor]?
override init(frame: CGRect) {
super.init(frame: frame)
@@ -36,7 +37,7 @@ private final class OneKeyImageSkeletonView: UIView {
override func layoutSubviews() {
super.layoutSubviews()
- renderer.update(width: bounds.width, height: bounds.height)
+ renderer.update(width: bounds.width, height: bounds.height, colors: colors)
}
override func didMoveToWindow() {
@@ -50,9 +51,14 @@ private final class OneKeyImageSkeletonView: UIView {
syncRenderer()
}
+ func updateColors(_ colors: [UIColor]) {
+ self.colors = colors
+ renderer.update(width: bounds.width, height: bounds.height, colors: colors)
+ }
+
private func syncRenderer() {
if requestedRunning, window != nil, !bounds.isEmpty {
- renderer.update(width: bounds.width, height: bounds.height)
+ renderer.update(width: bounds.width, height: bounds.height, colors: colors)
renderer.start()
} else {
renderer.stop()
@@ -66,7 +72,7 @@ private final class OneKeyImageSkeletonIndicator: NSObject, SDWebImageIndicator
var indicatorView: UIView { skeletonView }
func startAnimatingIndicator() {
- skeletonView.setRunning(true)
+ skeletonView.setRunning(!UIAccessibility.isReduceMotionEnabled)
}
func stopAnimatingIndicator() {
@@ -76,10 +82,16 @@ private final class OneKeyImageSkeletonIndicator: NSObject, SDWebImageIndicator
func updateFrame(_ frame: CGRect) {
skeletonView.frame = frame
}
+
+ func updateColors(_ colors: [UIColor]) {
+ skeletonView.updateColors(colors)
+ }
}
final class HybridOneKeyImage: HybridOneKeyImageSpec, RecyclableView {
private enum DisplayState { case loading, image, error, fallback }
+ private static let fadeDelayThreshold: CFTimeInterval = 0.1
+ private static let fadeDuration: TimeInterval = 0.14
private let hostView = OneKeyImageHostView()
private let skeletonIndicator = OneKeyImageSkeletonIndicator()
@@ -95,6 +107,7 @@ final class HybridOneKeyImage: HybridOneKeyImageSpec, RecyclableView {
private var requestActive = false
private var isResetting = false
private var displayState = DisplayState.loading
+ private var requestStartedAt: CFTimeInterval?
var view: UIView { hostView }
@@ -132,6 +145,7 @@ final class HybridOneKeyImage: HybridOneKeyImageSpec, RecyclableView {
}
}
var loadingStrategy: OneKeyImageLoadingStrategy? = .static { didSet { applyVariant() } }
+ var placeholderColor: String? { didSet { applyVariant() } }
var onLoadStart: (() -> Void)?
var onLoad: ((_ width: Double, _ height: Double, _ cacheType: OneKeyImageCacheType) -> Void)?
var onDisplay: (() -> Void)?
@@ -215,7 +229,9 @@ final class HybridOneKeyImage: HybridOneKeyImageSpec, RecyclableView {
self.cancelCurrentRequest(invalidateGeneration: true)
self.lastRequestSignature = nil
if let source = self.sourceUri, !source.isEmpty {
- self.showLoading(requestIsActive: false, letLibraryStartIndicator: false)
+ if !self.showMemoryCachedImageIfAvailable(requestIsActive: false) {
+ self.showLoading(requestIsActive: false, letLibraryStartIndicator: false)
+ }
} else {
self.showFallback()
}
@@ -258,9 +274,11 @@ final class HybridOneKeyImage: HybridOneKeyImageSpec, RecyclableView {
cancelCurrentRequest(invalidateGeneration: true)
let generation = requestGeneration
- showLoading(requestIsActive: true, letLibraryStartIndicator: true)
+ requestStartedAt = CACurrentMediaTime()
onLoadStart?()
guard Self.isCurrentRequestGeneration(generation, current: requestGeneration) else { return }
+ if showMemoryCachedImageIfAvailable(requestIsActive: true) { return }
+ showLoading(requestIsActive: true, letLibraryStartIndicator: true)
if let violation = OneKeyImageSafetyPolicy.preflight(source: rawString) {
finishWithError(violation, generation: generation)
@@ -372,6 +390,8 @@ final class HybridOneKeyImage: HybridOneKeyImageSpec, RecyclableView {
self.skeletonIndicator.stopAnimatingIndicator()
self.fallbackLayer.isHidden = true
self.hostView.backgroundColor = .clear
+ let resolvedCacheType = Self.cacheType(cacheType)
+ self.applyLoadedImageTransition(cacheType: resolvedCacheType)
self.applyAutoplay()
let onLoad = self.onLoad
let onLoadEnd = self.onLoadEnd
@@ -380,7 +400,7 @@ final class HybridOneKeyImage: HybridOneKeyImageSpec, RecyclableView {
onLoad?(
Double(image?.size.width ?? 0),
Double(image?.size.height ?? 0),
- Self.cacheType(cacheType)
+ resolvedCacheType
)
},
onLoadEnd: { onLoadEnd?() }
@@ -428,6 +448,8 @@ final class HybridOneKeyImage: HybridOneKeyImageSpec, RecyclableView {
activeSafetyHandle = nil
requestActive = false
skeletonIndicator.stopAnimatingIndicator()
+ requestStartedAt = nil
+ resetImageTransition()
if invalidateGeneration { requestGeneration &+= 1 }
}
@@ -474,6 +496,7 @@ final class HybridOneKeyImage: HybridOneKeyImageSpec, RecyclableView {
resizeWidth = nil
overscan = 1.1
loadingStrategy = .static
+ placeholderColor = nil
onLoadStart = nil
onLoad = nil
onDisplay = nil
@@ -498,11 +521,86 @@ final class HybridOneKeyImage: HybridOneKeyImageSpec, RecyclableView {
) {
displayState = .loading
requestActive = requestIsActive
+ resetImageTransition()
hostView.image = nil
fallbackLayer.isHidden = true
applyLoadingAppearance(letLibraryStartIndicator: letLibraryStartIndicator)
}
+ private func showMemoryCachedImageIfAvailable(requestIsActive: Bool) -> Bool {
+ guard cachePolicy == .memory || cachePolicy == .memoryDisk,
+ let sourceUri,
+ let rawURL = URL(string: sourceUri) else {
+ return false
+ }
+ let rawScreenScale: CGFloat = hostView.window?.screen.scale ?? UIScreen.main.scale
+ let screenScale = min(max(rawScreenScale, 1), 3)
+ let hasCustomIdentity = OneKeyImageRequestContext.headers(from: sourceHeadersJson) != nil
+ let displaySize = resizeWidth.flatMap { $0.isFinite && $0 > 0 ? CGFloat($0) : nil }
+ ?? max(hostView.bounds.width, hostView.bounds.height)
+ let requestURL =
+ (optimizeTos ?? true)
+ ? OneKeyTosURL.optimized(
+ rawURL: rawURL,
+ displaySize: displaySize,
+ scale: screenScale,
+ overscan: overscan ?? 1.1,
+ hasCustomIdentity: hasCustomIdentity
+ )
+ : rawURL
+ let thumbnailPixelSize = OneKeyImageDecodeSizing.thumbnailPixelSize(
+ viewSize: hostView.bounds.size,
+ scale: screenScale,
+ contentFit: contentFit ?? .cover
+ )
+ func memoryCachedImage(for url: URL) -> UIImage? {
+ let context = OneKeyImageRequestContext.make(
+ headersJson: sourceHeadersJson,
+ cachePolicy: cachePolicy ?? .memoryDisk,
+ thumbnailPixelSize: thumbnailPixelSize,
+ safetyTracker: nil,
+ manager: OneKeyImagePipeline.manager,
+ url: url
+ )
+ let cache = context[.imageCache] as? SDImageCache ?? SDImageCache.shared
+ guard let key = OneKeyImagePipeline.manager.cacheKey(for: url, context: context) else {
+ return nil
+ }
+ return cache.imageFromMemoryCache(forKey: key)
+ }
+ guard let image = memoryCachedImage(for: requestURL)
+ ?? (requestURL == rawURL ? nil : memoryCachedImage(for: rawURL)) else {
+ return false
+ }
+ let generation = requestGeneration
+ if requestIsActive, !claimTerminal(generation) { return true }
+ displayState = .image
+ requestActive = false
+ skeletonIndicator.stopAnimatingIndicator()
+ fallbackLayer.isHidden = true
+ resetImageTransition()
+ hostView.image = image
+ hostView.backgroundColor = .clear
+ if requestIsActive {
+ applyLoadedImageTransition(cacheType: .memory)
+ }
+ applyAutoplay()
+ if requestIsActive {
+ let onLoad = onLoad
+ let onLoadEnd = onLoadEnd
+ Self.deliverTerminalCallbacks(
+ primary: {
+ onLoad?(Double(image.size.width), Double(image.size.height), .memory)
+ },
+ onLoadEnd: { onLoadEnd?() }
+ )
+ guard requestGeneration == generation else { return true }
+ pendingDisplayGeneration = generation
+ schedulePendingDisplayIfNeeded()
+ }
+ return true
+ }
+
private func showError() {
showTerminalState(.error)
}
@@ -515,13 +613,15 @@ final class HybridOneKeyImage: HybridOneKeyImageSpec, RecyclableView {
displayState = state
requestActive = false
skeletonIndicator.stopAnimatingIndicator()
+ resetImageTransition()
hostView.image = nil
- hostView.backgroundColor = placeholderColor
+ let hidesTerminalState = loadingStrategy == .none
+ hostView.backgroundColor = hidesTerminalState ? .clear : resolvedPlaceholderColor
fallbackLayer.string = stateSymbol
fallbackLayer.fontSize = min(hostView.bounds.width, hostView.bounds.height) * 0.35
layoutFallbackLayer()
fallbackLayer.foregroundColor = UIColor.secondaryLabel.cgColor
- fallbackLayer.isHidden = false
+ fallbackLayer.isHidden = hidesTerminalState
}
private func applyVariant() {
@@ -531,22 +631,27 @@ final class HybridOneKeyImage: HybridOneKeyImageSpec, RecyclableView {
case .loading:
applyLoadingAppearance(letLibraryStartIndicator: false)
case .error, .fallback:
- hostView.backgroundColor = placeholderColor
+ let hidesTerminalState = loadingStrategy == .none
+ hostView.backgroundColor = hidesTerminalState ? .clear : resolvedPlaceholderColor
fallbackLayer.string = stateSymbol
+ fallbackLayer.isHidden = hidesTerminalState
}
}
private func applyLoadingAppearance(letLibraryStartIndicator: Bool) {
let strategy = loadingStrategy ?? .static
- hostView.backgroundColor = strategy == .none ? .clear : placeholderColor
+ hostView.backgroundColor = strategy == .none ? .clear : resolvedPlaceholderColor
if strategy == .skeleton {
+ skeletonIndicator.updateColors(skeletonGradientColors)
if hostView.sd_imageIndicator !== skeletonIndicator {
hostView.sd_imageIndicator = skeletonIndicator
}
skeletonIndicator.updateFrame(hostView.bounds)
- if requestActive, !letLibraryStartIndicator {
+ if requestActive, !letLibraryStartIndicator, !UIAccessibility.isReduceMotionEnabled {
skeletonIndicator.startAnimatingIndicator()
+ } else if UIAccessibility.isReduceMotionEnabled {
+ skeletonIndicator.stopAnimatingIndicator()
}
} else {
skeletonIndicator.stopAnimatingIndicator()
@@ -566,13 +671,77 @@ final class HybridOneKeyImage: HybridOneKeyImageSpec, RecyclableView {
)
}
- private var placeholderColor: UIColor {
- switch variant ?? .generic {
- case .generic: return UIColor(white: 0.91, alpha: 1)
- case .token: return UIColor(red: 0.91, green: 0.93, blue: 0.98, alpha: 1)
- case .network: return UIColor(red: 0.90, green: 0.94, blue: 0.96, alpha: 1)
- case .avatar: return UIColor(red: 0.92, green: 0.92, blue: 0.94, alpha: 1)
+ private var resolvedPlaceholderColor: UIColor {
+ if let color = Self.color(from: placeholderColor) { return color }
+ // OneKey patch: fall back to a semantic system fill instead of a light-only color.
+ // switch variant ?? .generic {
+ // case .generic: return UIColor(white: 0.91, alpha: 1)
+ // case .token: return UIColor(red: 0.91, green: 0.93, blue: 0.98, alpha: 1)
+ // case .network: return UIColor(red: 0.90, green: 0.94, blue: 0.96, alpha: 1)
+ // case .avatar: return UIColor(red: 0.92, green: 0.92, blue: 0.94, alpha: 1)
+ // }
+ return .secondarySystemFill
+ }
+
+ private var skeletonGradientColors: [UIColor] {
+ let base = resolvedPlaceholderColor
+ let resolvedBase = base.resolvedColor(with: hostView.traitCollection)
+ var red: CGFloat = 0
+ var green: CGFloat = 0
+ var blue: CGFloat = 0
+ var alpha: CGFloat = 0
+ guard resolvedBase.getRed(&red, green: &green, blue: &blue, alpha: &alpha) else {
+ return [base, base]
+ }
+ let average = (red + green + blue) / 3
+ let delta: CGFloat = average < 0.5 ? 18.0 / 255.0 : -12.0 / 255.0
+ let highlight = UIColor(
+ red: min(max(red + delta, 0), 1),
+ green: min(max(green + delta, 0), 1),
+ blue: min(max(blue + delta, 0), 1),
+ alpha: alpha
+ )
+ return [base, highlight]
+ }
+
+ private func applyLoadedImageTransition(cacheType: OneKeyImageCacheType) {
+ resetImageTransition()
+ guard cacheType != .memory,
+ let requestStartedAt,
+ CACurrentMediaTime() - requestStartedAt >= Self.fadeDelayThreshold,
+ !UIAccessibility.isReduceMotionEnabled else {
+ return
+ }
+ hostView.alpha = 0
+ UIView.animate(
+ withDuration: Self.fadeDuration,
+ delay: 0,
+ options: [.allowUserInteraction, .beginFromCurrentState, .curveEaseOut]
+ ) {
+ self.hostView.alpha = 1
+ }
+ }
+
+ private func resetImageTransition() {
+ hostView.layer.removeAllAnimations()
+ hostView.alpha = 1
+ }
+
+ private static func color(from value: String?) -> UIColor? {
+ guard var hex = value?.trimmingCharacters(in: .whitespacesAndNewlines),
+ hex.hasPrefix("#") else {
+ return nil
+ }
+ hex.removeFirst()
+ guard hex.count == 6 || hex.count == 8,
+ let parsed = UInt64(hex, radix: 16) else {
+ return nil
}
+ let red = CGFloat((parsed >> (hex.count == 8 ? 24 : 16)) & 0xFF) / 255
+ let green = CGFloat((parsed >> (hex.count == 8 ? 16 : 8)) & 0xFF) / 255
+ let blue = CGFloat((parsed >> (hex.count == 8 ? 8 : 0)) & 0xFF) / 255
+ let alpha = hex.count == 8 ? CGFloat(parsed & 0xFF) / 255 : 1
+ return UIColor(red: red, green: green, blue: blue, alpha: alpha)
}
private var stateSymbol: String {
diff --git a/native-views/react-native-image/ios/OneKeyImageReusableView.swift b/native-views/react-native-image/ios/OneKeyImageReusableView.swift
index f15571df9..9bd8b07cb 100644
--- a/native-views/react-native-image/ios/OneKeyImageReusableView.swift
+++ b/native-views/react-native-image/ios/OneKeyImageReusableView.swift
@@ -28,6 +28,7 @@ public final class OneKeyImageReusableView: UIView {
optimizeTos: Bool,
overscan: Double,
loadingStrategy: String,
+ placeholderColor: String,
onLoad: (() -> Void)? = nil,
onError: (() -> Void)? = nil
) {
@@ -43,6 +44,7 @@ public final class OneKeyImageReusableView: UIView {
image.optimizeTos = optimizeTos
image.overscan = overscan
image.loadingStrategy = OneKeyImageLoadingStrategy(fromString: loadingStrategy) ?? .static
+ image.placeholderColor = placeholderColor
image.sourceUri = sourceUri
image.afterUpdate()
}
diff --git a/native-views/react-native-image/nitrogen/generated/android/c++/JHybridOneKeyImageSpec.cpp b/native-views/react-native-image/nitrogen/generated/android/c++/JHybridOneKeyImageSpec.cpp
index ee5bfa133..92847e870 100644
--- a/native-views/react-native-image/nitrogen/generated/android/c++/JHybridOneKeyImageSpec.cpp
+++ b/native-views/react-native-image/nitrogen/generated/android/c++/JHybridOneKeyImageSpec.cpp
@@ -165,6 +165,15 @@ namespace margelo::nitro::onekeyimage {
static const auto method = _javaPart->javaClassStatic()->getMethod /* loadingStrategy */)>("setLoadingStrategy");
method(_javaPart, loadingStrategy.has_value() ? JOneKeyImageLoadingStrategy::fromCpp(loadingStrategy.value()) : nullptr);
}
+ std::optional JHybridOneKeyImageSpec::getPlaceholderColor() {
+ static const auto method = _javaPart->javaClassStatic()->getMethod()>("getPlaceholderColor");
+ auto __result = method(_javaPart);
+ return __result != nullptr ? std::make_optional(__result->toStdString()) : std::nullopt;
+ }
+ void JHybridOneKeyImageSpec::setPlaceholderColor(const std::optional& placeholderColor) {
+ static const auto method = _javaPart->javaClassStatic()->getMethod /* placeholderColor */)>("setPlaceholderColor");
+ method(_javaPart, placeholderColor.has_value() ? jni::make_jstring(placeholderColor.value()) : nullptr);
+ }
std::optional> JHybridOneKeyImageSpec::getOnLoadStart() {
static const auto method = _javaPart->javaClassStatic()->getMethod()>("getOnLoadStart_cxx");
auto __result = method(_javaPart);
diff --git a/native-views/react-native-image/nitrogen/generated/android/c++/JHybridOneKeyImageSpec.hpp b/native-views/react-native-image/nitrogen/generated/android/c++/JHybridOneKeyImageSpec.hpp
index 0f5bf04eb..2c4c04591 100644
--- a/native-views/react-native-image/nitrogen/generated/android/c++/JHybridOneKeyImageSpec.hpp
+++ b/native-views/react-native-image/nitrogen/generated/android/c++/JHybridOneKeyImageSpec.hpp
@@ -72,6 +72,8 @@ namespace margelo::nitro::onekeyimage {
void setOverscan(std::optional overscan) override;
std::optional getLoadingStrategy() override;
void setLoadingStrategy(std::optional loadingStrategy) override;
+ std::optional getPlaceholderColor() override;
+ void setPlaceholderColor(const std::optional& placeholderColor) override;
std::optional> getOnLoadStart() override;
void setOnLoadStart(const std::optional>& onLoadStart) override;
std::optional> getOnLoad() override;
diff --git a/native-views/react-native-image/nitrogen/generated/android/c++/views/JHybridOneKeyImageStateUpdater.cpp b/native-views/react-native-image/nitrogen/generated/android/c++/views/JHybridOneKeyImageStateUpdater.cpp
index ae2faacad..d07f176ad 100644
--- a/native-views/react-native-image/nitrogen/generated/android/c++/views/JHybridOneKeyImageStateUpdater.cpp
+++ b/native-views/react-native-image/nitrogen/generated/android/c++/views/JHybridOneKeyImageStateUpdater.cpp
@@ -108,6 +108,11 @@ void JHybridOneKeyImageStateUpdater::updateViewProps(jni::alias_ref
: !newProps->loadingStrategy.hasSameValue(oldProps->loadingStrategy)) {
hybridView->setLoadingStrategy(newProps->loadingStrategy.get());
}
+ if (oldProps == nullptr
+ ? newProps->placeholderColor.isProvided()
+ : !newProps->placeholderColor.hasSameValue(oldProps->placeholderColor)) {
+ hybridView->setPlaceholderColor(newProps->placeholderColor.get());
+ }
if (oldProps == nullptr
? newProps->onLoadStart.isProvided()
: !newProps->onLoadStart.hasSameValue(oldProps->onLoadStart)) {
diff --git a/native-views/react-native-image/nitrogen/generated/android/kotlin/com/margelo/nitro/onekeyimage/HybridOneKeyImageSpec.kt b/native-views/react-native-image/nitrogen/generated/android/kotlin/com/margelo/nitro/onekeyimage/HybridOneKeyImageSpec.kt
index 8c364d362..ff812cf18 100644
--- a/native-views/react-native-image/nitrogen/generated/android/kotlin/com/margelo/nitro/onekeyimage/HybridOneKeyImageSpec.kt
+++ b/native-views/react-native-image/nitrogen/generated/android/kotlin/com/margelo/nitro/onekeyimage/HybridOneKeyImageSpec.kt
@@ -93,6 +93,12 @@ abstract class HybridOneKeyImageSpec: HybridView() {
@set:Keep
abstract var loadingStrategy: OneKeyImageLoadingStrategy?
+ @get:DoNotStrip
+ @get:Keep
+ @set:DoNotStrip
+ @set:Keep
+ abstract var placeholderColor: String?
+
abstract var onLoadStart: (() -> Unit)?
private var onLoadStart_cxx: Func_void?
diff --git a/native-views/react-native-image/nitrogen/generated/ios/c++/HybridOneKeyImageSpecSwift.hpp b/native-views/react-native-image/nitrogen/generated/ios/c++/HybridOneKeyImageSpecSwift.hpp
index 0cc668557..a5b66baa0 100644
--- a/native-views/react-native-image/nitrogen/generated/ios/c++/HybridOneKeyImageSpecSwift.hpp
+++ b/native-views/react-native-image/nitrogen/generated/ios/c++/HybridOneKeyImageSpecSwift.hpp
@@ -155,6 +155,13 @@ namespace margelo::nitro::onekeyimage {
inline void setLoadingStrategy(std::optional loadingStrategy) noexcept override {
_swiftPart.setLoadingStrategy(loadingStrategy);
}
+ inline std::optional getPlaceholderColor() noexcept override {
+ auto __result = _swiftPart.getPlaceholderColor();
+ return __result;
+ }
+ inline void setPlaceholderColor(const std::optional& placeholderColor) noexcept override {
+ _swiftPart.setPlaceholderColor(placeholderColor);
+ }
inline std::optional> getOnLoadStart() noexcept override {
auto __result = _swiftPart.getOnLoadStart();
return __result;
diff --git a/native-views/react-native-image/nitrogen/generated/ios/c++/views/HybridOneKeyImageComponent.mm b/native-views/react-native-image/nitrogen/generated/ios/c++/views/HybridOneKeyImageComponent.mm
index 46b90f5cf..6d5e8e069 100644
--- a/native-views/react-native-image/nitrogen/generated/ios/c++/views/HybridOneKeyImageComponent.mm
+++ b/native-views/react-native-image/nitrogen/generated/ios/c++/views/HybridOneKeyImageComponent.mm
@@ -164,6 +164,12 @@ - (void) updateProps:(const std::shared_ptr&)props
: !newViewProps.loadingStrategy.hasSameValue(oldViewProps->loadingStrategy)) {
swiftPart.setLoadingStrategy(newViewProps.loadingStrategy.get());
}
+ // placeholderColor: optional
+ if (oldViewProps == nullptr
+ ? newViewProps.placeholderColor.isProvided()
+ : !newViewProps.placeholderColor.hasSameValue(oldViewProps->placeholderColor)) {
+ swiftPart.setPlaceholderColor(newViewProps.placeholderColor.get());
+ }
// onLoadStart: optional
if (oldViewProps == nullptr
? newViewProps.onLoadStart.isProvided()
diff --git a/native-views/react-native-image/nitrogen/generated/ios/swift/HybridOneKeyImageSpec.swift b/native-views/react-native-image/nitrogen/generated/ios/swift/HybridOneKeyImageSpec.swift
index e3eeb05b1..77215d562 100644
--- a/native-views/react-native-image/nitrogen/generated/ios/swift/HybridOneKeyImageSpec.swift
+++ b/native-views/react-native-image/nitrogen/generated/ios/swift/HybridOneKeyImageSpec.swift
@@ -21,6 +21,7 @@ public protocol HybridOneKeyImageSpec_protocol: HybridObject, HybridView {
var resizeWidth: Double? { get set }
var overscan: Double? { get set }
var loadingStrategy: OneKeyImageLoadingStrategy? { get set }
+ var placeholderColor: String? { get set }
var onLoadStart: (() -> Void)? { get set }
var onLoad: ((_ width: Double, _ height: Double, _ cacheType: OneKeyImageCacheType) -> Void)? { get set }
var onDisplay: (() -> Void)? { get set }
diff --git a/native-views/react-native-image/nitrogen/generated/ios/swift/HybridOneKeyImageSpec_cxx.swift b/native-views/react-native-image/nitrogen/generated/ios/swift/HybridOneKeyImageSpec_cxx.swift
index 949d26b93..1db2be20e 100644
--- a/native-views/react-native-image/nitrogen/generated/ios/swift/HybridOneKeyImageSpec_cxx.swift
+++ b/native-views/react-native-image/nitrogen/generated/ios/swift/HybridOneKeyImageSpec_cxx.swift
@@ -357,6 +357,30 @@ open class HybridOneKeyImageSpec_cxx {
}
}
+ public final var placeholderColor: bridge.std__optional_std__string_ {
+ @inline(__always)
+ get {
+ return { () -> bridge.std__optional_std__string_ in
+ if let __unwrappedValue = self.__implementation.placeholderColor {
+ return bridge.create_std__optional_std__string_(std.string(__unwrappedValue))
+ } else {
+ return .init()
+ }
+ }()
+ }
+ @inline(__always)
+ set {
+ self.__implementation.placeholderColor = { () -> String? in
+ if bridge.has_value_std__optional_std__string_(newValue) {
+ let __unwrapped = bridge.get_std__optional_std__string_(newValue)
+ return String(__unwrapped)
+ } else {
+ return nil
+ }
+ }()
+ }
+ }
+
public final var onLoadStart: bridge.std__optional_std__function_void____ {
@inline(__always)
get {
diff --git a/native-views/react-native-image/nitrogen/generated/shared/c++/HybridOneKeyImageSpec.cpp b/native-views/react-native-image/nitrogen/generated/shared/c++/HybridOneKeyImageSpec.cpp
index 84b8bc46c..b8cab8b32 100644
--- a/native-views/react-native-image/nitrogen/generated/shared/c++/HybridOneKeyImageSpec.cpp
+++ b/native-views/react-native-image/nitrogen/generated/shared/c++/HybridOneKeyImageSpec.cpp
@@ -36,6 +36,8 @@ namespace margelo::nitro::onekeyimage {
prototype.registerHybridSetter("overscan", &HybridOneKeyImageSpec::setOverscan);
prototype.registerHybridGetter("loadingStrategy", &HybridOneKeyImageSpec::getLoadingStrategy);
prototype.registerHybridSetter("loadingStrategy", &HybridOneKeyImageSpec::setLoadingStrategy);
+ prototype.registerHybridGetter("placeholderColor", &HybridOneKeyImageSpec::getPlaceholderColor);
+ prototype.registerHybridSetter("placeholderColor", &HybridOneKeyImageSpec::setPlaceholderColor);
prototype.registerHybridGetter("onLoadStart", &HybridOneKeyImageSpec::getOnLoadStart);
prototype.registerHybridSetter("onLoadStart", &HybridOneKeyImageSpec::setOnLoadStart);
prototype.registerHybridGetter("onLoad", &HybridOneKeyImageSpec::getOnLoad);
diff --git a/native-views/react-native-image/nitrogen/generated/shared/c++/HybridOneKeyImageSpec.hpp b/native-views/react-native-image/nitrogen/generated/shared/c++/HybridOneKeyImageSpec.hpp
index a3b37edf7..6ce723116 100644
--- a/native-views/react-native-image/nitrogen/generated/shared/c++/HybridOneKeyImageSpec.hpp
+++ b/native-views/react-native-image/nitrogen/generated/shared/c++/HybridOneKeyImageSpec.hpp
@@ -82,6 +82,8 @@ namespace margelo::nitro::onekeyimage {
virtual void setOverscan(std::optional overscan) = 0;
virtual std::optional getLoadingStrategy() = 0;
virtual void setLoadingStrategy(std::optional loadingStrategy) = 0;
+ virtual std::optional getPlaceholderColor() = 0;
+ virtual void setPlaceholderColor(const std::optional& placeholderColor) = 0;
virtual std::optional> getOnLoadStart() = 0;
virtual void setOnLoadStart(const std::optional>& onLoadStart) = 0;
virtual std::optional> getOnLoad() = 0;
diff --git a/native-views/react-native-image/nitrogen/generated/shared/c++/views/HybridOneKeyImageComponent.cpp b/native-views/react-native-image/nitrogen/generated/shared/c++/views/HybridOneKeyImageComponent.cpp
index 990bf4123..246f23c87 100644
--- a/native-views/react-native-image/nitrogen/generated/shared/c++/views/HybridOneKeyImageComponent.cpp
+++ b/native-views/react-native-image/nitrogen/generated/shared/c++/views/HybridOneKeyImageComponent.cpp
@@ -31,6 +31,7 @@ namespace margelo::nitro::onekeyimage::views {
resizeWidth(nitro::ReactProp>::fromRawValue("OneKeyImage", "resizeWidth", rawProps, sourceProps.resizeWidth)),
overscan(nitro::ReactProp>::fromRawValue("OneKeyImage", "overscan", rawProps, sourceProps.overscan)),
loadingStrategy(nitro::ReactProp>::fromRawValue("OneKeyImage", "loadingStrategy", rawProps, sourceProps.loadingStrategy)),
+ placeholderColor(nitro::ReactProp>::fromRawValue("OneKeyImage", "placeholderColor", rawProps, sourceProps.placeholderColor)),
onLoadStart(nitro::ReactProp>>::fromRawValue("OneKeyImage", "onLoadStart", rawProps, sourceProps.onLoadStart)),
onLoad(nitro::ReactProp>>::fromRawValue("OneKeyImage", "onLoad", rawProps, sourceProps.onLoad)),
onDisplay(nitro::ReactProp>>::fromRawValue("OneKeyImage", "onDisplay", rawProps, sourceProps.onDisplay)),
@@ -51,6 +52,7 @@ namespace margelo::nitro::onekeyimage::views {
case hashString("resizeWidth"): return true;
case hashString("overscan"): return true;
case hashString("loadingStrategy"): return true;
+ case hashString("placeholderColor"): return true;
case hashString("onLoadStart"): return true;
case hashString("onLoad"): return true;
case hashString("onDisplay"): return true;
diff --git a/native-views/react-native-image/nitrogen/generated/shared/c++/views/HybridOneKeyImageComponent.hpp b/native-views/react-native-image/nitrogen/generated/shared/c++/views/HybridOneKeyImageComponent.hpp
index cb2c6d1bc..109c239b8 100644
--- a/native-views/react-native-image/nitrogen/generated/shared/c++/views/HybridOneKeyImageComponent.hpp
+++ b/native-views/react-native-image/nitrogen/generated/shared/c++/views/HybridOneKeyImageComponent.hpp
@@ -59,6 +59,7 @@ namespace margelo::nitro::onekeyimage::views {
nitro::ReactProp> resizeWidth;
nitro::ReactProp> overscan;
nitro::ReactProp> loadingStrategy;
+ nitro::ReactProp> placeholderColor;
nitro::ReactProp>> onLoadStart;
nitro::ReactProp>> onLoad;
nitro::ReactProp>> onDisplay;
@@ -79,6 +80,7 @@ namespace margelo::nitro::onekeyimage::views {
resizeWidth.hasSameValue(other.resizeWidth) &&
overscan.hasSameValue(other.overscan) &&
loadingStrategy.hasSameValue(other.loadingStrategy) &&
+ placeholderColor.hasSameValue(other.placeholderColor) &&
onLoadStart.hasSameValue(other.onLoadStart) &&
onLoad.hasSameValue(other.onLoad) &&
onDisplay.hasSameValue(other.onDisplay) &&
@@ -100,6 +102,7 @@ namespace margelo::nitro::onekeyimage::views {
resizeWidth.isProvided() ||
overscan.isProvided() ||
loadingStrategy.isProvided() ||
+ placeholderColor.isProvided() ||
onLoadStart.isProvided() ||
onLoad.isProvided() ||
onDisplay.isProvided() ||
diff --git a/native-views/react-native-image/nitrogen/generated/shared/json/OneKeyImageConfig.json b/native-views/react-native-image/nitrogen/generated/shared/json/OneKeyImageConfig.json
index d56c364ba..978703ce7 100644
--- a/native-views/react-native-image/nitrogen/generated/shared/json/OneKeyImageConfig.json
+++ b/native-views/react-native-image/nitrogen/generated/shared/json/OneKeyImageConfig.json
@@ -15,6 +15,7 @@
"resizeWidth": true,
"overscan": true,
"loadingStrategy": true,
+ "placeholderColor": true,
"onLoadStart": true,
"onLoad": true,
"onDisplay": true,
diff --git a/native-views/react-native-image/package.json b/native-views/react-native-image/package.json
index 8e4062c7d..ce631d591 100644
--- a/native-views/react-native-image/package.json
+++ b/native-views/react-native-image/package.json
@@ -1,6 +1,6 @@
{
"name": "@onekeyfe/react-native-image",
- "version": "3.0.114",
+ "version": "3.0.118",
"description": "High-performance native image view for OneKey",
"main": "./lib/module/index.js",
"types": "./lib/typescript/src/index.d.ts",
@@ -81,7 +81,7 @@
"typescript": "^5.9.2"
},
"peerDependencies": {
- "@onekeyfe/react-native-skeleton": "3.0.114",
+ "@onekeyfe/react-native-skeleton": "3.0.118",
"react": "*",
"react-native": "*",
"react-native-nitro-modules": "0.37.0"
diff --git a/native-views/react-native-image/src/OneKeyImage.nitro.ts b/native-views/react-native-image/src/OneKeyImage.nitro.ts
index 86117279e..8866ada72 100644
--- a/native-views/react-native-image/src/OneKeyImage.nitro.ts
+++ b/native-views/react-native-image/src/OneKeyImage.nitro.ts
@@ -47,6 +47,8 @@ export interface OneKeyImageNativeProps extends HybridViewProps {
resizeWidth?: number;
overscan?: number;
loadingStrategy?: OneKeyImageLoadingStrategy;
+ /** Theme-aware color used by static loading, error, and fallback states. */
+ placeholderColor?: string;
onLoadStart?: () => void;
onLoad?: (
width: number,
diff --git a/native-views/react-native-image/src/__tests__/index.test.tsx b/native-views/react-native-image/src/__tests__/index.test.tsx
index 544e9f88d..ab1ad0f32 100644
--- a/native-views/react-native-image/src/__tests__/index.test.tsx
+++ b/native-views/react-native-image/src/__tests__/index.test.tsx
@@ -391,7 +391,7 @@ describe('OneKeyImage wrapper', () => {
const native = renderer!.root.findByType('NativeOneKeyImage' as never);
const tree = JSON.stringify(renderer!.toJSON());
- expect(native.props.sourceUri).toBeUndefined();
+ expect(native.props.sourceUri).toBe('');
expect(tree).toContain('unavailable-image');
expect(tree).not.toContain('"children":["loading"]');
expect(onError).not.toHaveBeenCalled();
diff --git a/native-views/react-native-image/src/index.tsx b/native-views/react-native-image/src/index.tsx
index be71e2e3f..03c32a497 100644
--- a/native-views/react-native-image/src/index.tsx
+++ b/native-views/react-native-image/src/index.tsx
@@ -156,6 +156,7 @@ export function OneKeyImage({
resizeWidth,
overscan = 1.1,
loadingStrategy = OneKeyImageLoadingStrategy.STATIC,
+ placeholderColor,
hybridRef,
onLoadStart,
onLoad,
@@ -329,7 +330,7 @@ export function OneKeyImage({
...viewProps,
...nativeCallbacks,
style: shouldWrapNative ? StyleSheet.absoluteFill : style,
- sourceUri: normalized?.uri,
+ sourceUri: normalized?.uri ?? '',
sourceHeadersJson: normalized?.headers
? JSON.stringify(normalized.headers)
: undefined,
@@ -343,6 +344,7 @@ export function OneKeyImage({
overscan,
loadingStrategy:
placeholder == null ? loadingStrategy : OneKeyImageLoadingStrategy.NONE,
+ placeholderColor,
});
if (!shouldWrapNative) return native;
diff --git a/native-views/react-native-native-list/README.md b/native-views/react-native-native-list/README.md
index 6e7d81c77..90fb3b15d 100644
--- a/native-views/react-native-native-list/README.md
+++ b/native-views/react-native-native-list/README.md
@@ -112,9 +112,10 @@ second delta.
| `activity` | Transaction/activity with amounts and up to three actions |
| `message` | Notification/message with bounded body lines and thumbnail |
| `dataRow` | Two to four fixed table columns, optional index/checkbox |
+| `market` | Recycled token, stock, or perpetual quote row |
| `mediaTile` | Gallery or browser-preview tile |
-| `metricCard` | KPI or fixed Activity/Performance portfolio card |
-| `sectionHeader` | Sticky/group, tri-state, or fixed list-summary header |
+| `metricCard` | KPI or fixed Activity/Performance portfolio card |
+| `sectionHeader` | Sticky/group, tri-state, or fixed list-summary header |
| `action` | Fixed action row or fixed footer |
| `system` | Loading, retry, end marker, or bounded spacer |
@@ -162,6 +163,59 @@ Bold faces and use them before the platform-font fallback. Their semantic
icons and checkbox marks are the same vector paths as the OneKey component
library, rendered by Core Graphics/UIKit on iOS and Canvas on Android.
+### Market rows
+
+`market` is a fixed native/DOM template, not a React `renderItem`. Its default
+token/perpetual geometry uses a 32-point leading image with a 16-point network
+corner; stock uses a 40-point image. The trailing change block is 80×32 with an
+8-point radius. All displayed values are already formatted strings; compact
+zero runs can use `priceSegments`, `subtitleSegments`, or
+`change.textSegments` with `{ style: 'subscript' }`.
+
+```ts
+const btc = {
+ type: 'market',
+ key: 'btc',
+ variant: 'token',
+ leading: { kind: 'token', image: btcImage, networkImage: bitcoinImage },
+ title: 'BTC',
+ subtitle: '$1.23B',
+ price: '$64,230.00',
+ change: { text: '+2.40%', tone: 'positive' },
+ badges: [
+ {
+ key: 'community',
+ iconName: 'verified',
+ tone: 'success',
+ actionKey: 'market.communityInfo',
+ accessibilityLabel: 'Community recognized',
+ },
+ ],
+ pressInActionKey: 'market.prewarm',
+ pressActionKey: 'market.open',
+ longPressActionKey: 'market.menu',
+ diagnostics: { imageBindActionKey: 'market.imageBind' },
+} satisfies MarketRow;
+```
+
+Badges accept localized text, a bounded remote image, or the single built-in
+`iconName: 'verified'` glyph. A badge `actionKey` emits independently with an
+anchor whose source is `marketBadge`. Market long press fires after 800 ms and
+is cancelled when the pointer moves more than 10 logical pixels or the list
+scrolls. The optional diagnostic action fires when a row binds an image; quote-
+only patches (`price`, `priceSegments`, `change`, `accessibilityLabel`, and
+`revision`) update visible labels without rebinding that image.
+
+`style` is deliberately finite: row padding/gaps, image width/height/shape/
+corner radius/content fit, title/subtitle/price/change font size, weight,
+color, line height, one-or-two-line truncation and alignment, plus change-block
+width/height/radius. Omitting it preserves the defaults. Loading, empty, retry,
+and pagination states use the existing `system` rows with
+`presentation: 'market'`. Loading rows accept `loadingStyle: 'skeleton'` for
+the 56-point token skeleton or `'spinner'` for the centered 52-point pagination
+indicator. Use `accessibilityLabel` for loading announcements. Omitting
+`loadingStyle` preserves each platform's existing loading rendering.
+
For native reorder, set `capabilities.reorderable` and mark eligible rail rows
with `draggable: true`, or add a `drag` trailing accessory to an identity row.
Reordering never crosses a `sectionKey` boundary.
@@ -307,7 +361,7 @@ by the iOS wallet list's 120 Hz tail behavior.
| Activity rows | `components/TxHistoryListView/TxHistoryListItem.tsx` |
| Message rows | `Notifications/components/NotificationListView.tsx` |
| Data rows | `Perp/components/TokenSelector/PerpTokenSelectorRow.tsx` |
-| Media tile rows | `Home/components/NFTListView/NFTListItem.tsx` |
+| Media tile rows | `Home/components/NFTListView/NFTListItem.tsx` |
| Metric card rows | `Perp/components/Portfolio/PerpPortfolioContent.tsx` |
| Section header rows | `AllNetworksManager/NetworksSectionList.tsx`, `TxHistoryListView/TxHistorySectionHeader.tsx` |
| Action rows | `TokenManager/TokenManagerList.tsx`, `Discovery/pages/BookmarkListModal/index.tsx` |
diff --git a/native-views/react-native-native-list/android/build.gradle b/native-views/react-native-native-list/android/build.gradle
index a4796fa02..070622a19 100644
--- a/native-views/react-native-native-list/android/build.gradle
+++ b/native-views/react-native-native-list/android/build.gradle
@@ -101,5 +101,6 @@ dependencies {
implementation "androidx.recyclerview:recyclerview:1.4.0"
implementation "androidx.swiperefreshlayout:swiperefreshlayout:1.1.0"
implementation project(":react-native-nitro-modules")
+ implementation project(":onekeyfe_react-native-native-logger")
implementation project(":onekeyfe_react-native-image")
}
diff --git a/native-views/react-native-native-list/android/src/main/java/com/onekey/nativelist/NativeListAdapter.kt b/native-views/react-native-native-list/android/src/main/java/com/onekey/nativelist/NativeListAdapter.kt
index ba2be0804..41a5b5344 100644
--- a/native-views/react-native-native-list/android/src/main/java/com/onekey/nativelist/NativeListAdapter.kt
+++ b/native-views/react-native-native-list/android/src/main/java/com/onekey/nativelist/NativeListAdapter.kt
@@ -10,6 +10,8 @@ import com.facebook.react.uimanager.ThemedReactContext
import org.json.JSONObject
import java.util.Collections
import java.util.WeakHashMap
+import kotlin.math.ceil
+import kotlin.math.roundToInt
internal class NativeListAdapter(
private val context: ThemedReactContext,
@@ -39,6 +41,8 @@ internal class NativeListAdapter(
)
val currentList: List
get() = differ.currentList
+ private var marketSourceItems: List? = null
+ private var marketSourceEdges = DoubleArray(0)
private val createdRows = Collections.newSetFromMap(
WeakHashMap(),
)
@@ -92,6 +96,10 @@ internal class NativeListAdapter(
position: Int,
payloads: MutableList,
) {
+ if (payloads.isNotEmpty() && payloads.all { it == MARKET_QUOTE_PAYLOAD }) {
+ itemAt(position)?.let { holder.rowView.bindMarketQuote(it, theme) }
+ return
+ }
// OneKey patch: an unknown payload must retain full binding; validated echoes keep images alive.
// if (payloads.contains(SELECTION_PAYLOAD)) {
if (payloads.isNotEmpty() && payloads.all { it == SELECTION_PAYLOAD || it == SELECTION_ECHO_PAYLOAD }) {
@@ -118,6 +126,30 @@ internal class NativeListAdapter(
fun itemAt(position: Int): NativeListItem? =
reorderItems?.getOrNull(position) ?: differ.currentList.getOrNull(position)
+ // OneKey patch: Yoga rounds badge dimensions from unrounded cumulative row edges.
+ fun marketSourceEdgePx(position: Int): Double {
+ val items = reorderItems ?: differ.currentList
+ if (marketSourceItems !== items) {
+ val density = context.resources.displayMetrics.density.toDouble()
+ val edges = DoubleArray(items.size + 1)
+ items.forEachIndexed { index, item ->
+ val style = item.json.optJSONObject("style")
+ val height = item.json.optDouble("height", 0.0)
+ val sourceHeight = if (item.type == "market" && style != null) {
+ val titleHeight = ceil((style.optJSONObject("title")?.optDouble("lineHeight", 24.0) ?: 24.0) * density) / density
+ val subtitleHeight = if (item.json.optString("subtitle").isNotEmpty() || item.json.optJSONObject("subtitlePrefix") != null) {
+ ceil((style.optJSONObject("subtitle")?.optDouble("lineHeight", 20.0) ?: 20.0) * density) / density + style.optDouble("lineGap", 0.0)
+ } else 0.0
+ maxOf(height.roundToInt().toDouble(), titleHeight + subtitleHeight + style.optDouble("verticalPadding", 12.0) * 2).toFloat().toDouble()
+ } else height
+ edges[index + 1] = edges[index] + sourceHeight * density
+ }
+ marketSourceItems = items
+ marketSourceEdges = edges
+ }
+ return marketSourceEdges.getOrElse(position) { 0.0 }
+ }
+
fun positionOfKey(key: String): Int =
(reorderItems ?: differ.currentList).indexOfFirst { it.key == key }
@@ -165,6 +197,8 @@ internal class NativeListAdapter(
}
fun dispose() {
+ marketSourceItems = null
+ marketSourceEdges = DoubleArray(0)
reorderItems = null
suppressDifferUpdates = false
createdRows.forEach(NativeListRowView::dispose)
@@ -183,7 +217,18 @@ internal class NativeListAdapter(
override fun getChangePayload(oldItem: NativeListItem, newItem: NativeListItem): Any? =
if (oldItem.key == newItem.key && oldItem.type == newItem.type &&
newItem.selectionUpdateFromContent == oldItem.content
- ) SELECTION_ECHO_PAYLOAD else null
+ ) SELECTION_ECHO_PAYLOAD else if (isMarketQuoteUpdate(oldItem, newItem)) MARKET_QUOTE_PAYLOAD else null
+
+ private fun isMarketQuoteUpdate(oldItem: NativeListItem, newItem: NativeListItem): Boolean {
+ if (oldItem.type != "market" || newItem.type != "market") return false
+ fun stableContent(item: NativeListItem): String {
+ val value = JSONObject(item.json.toString())
+ listOf("revision", "price", "priceSegments", "change", "accessibilityLabel")
+ .forEach(value::remove)
+ return value.toString()
+ }
+ return stableContent(oldItem) == stableContent(newItem)
+ }
}
}
}
@@ -191,3 +236,4 @@ internal class NativeListAdapter(
internal const val SELECTION_PAYLOAD = "selection"
// OneKey patch: internal payload, never exposed through the serialized row contract.
internal const val SELECTION_ECHO_PAYLOAD = "selectionEcho"
+internal const val MARKET_QUOTE_PAYLOAD = "marketQuote"
diff --git a/native-views/react-native-native-list/android/src/main/java/com/onekey/nativelist/NativeListRowView.kt b/native-views/react-native-native-list/android/src/main/java/com/onekey/nativelist/NativeListRowView.kt
index 7821793d1..ea8d316ec 100644
--- a/native-views/react-native-native-list/android/src/main/java/com/onekey/nativelist/NativeListRowView.kt
+++ b/native-views/react-native-native-list/android/src/main/java/com/onekey/nativelist/NativeListRowView.kt
@@ -6,12 +6,18 @@ import android.animation.TimeInterpolator
import android.animation.ValueAnimator
import android.graphics.Color
import android.graphics.Canvas
+import android.graphics.LinearGradient
+import android.graphics.Matrix
import android.graphics.Outline
import android.graphics.Paint
import android.graphics.Path
+import android.graphics.RectF
+import android.graphics.Shader
import android.graphics.Typeface
import android.graphics.drawable.Drawable
import android.graphics.drawable.GradientDrawable
+import android.os.Handler
+import android.os.Looper
import android.text.Spannable
import android.text.SpannableStringBuilder
import android.text.TextUtils
@@ -24,6 +30,7 @@ import android.view.MotionEvent
import android.view.View
import android.view.ViewGroup
import android.view.ViewOutlineProvider
+import android.view.animation.LinearInterpolator
import android.widget.FrameLayout
import android.widget.LinearLayout
import android.widget.ProgressBar
@@ -38,10 +45,74 @@ import com.facebook.react.uimanager.style.LogicalEdge
import com.margelo.nitro.onekeyimage.OneKeyImageReusableView
import androidx.core.graphics.PathParser
import androidx.core.widget.TextViewCompat
+import androidx.recyclerview.widget.RecyclerView
import org.json.JSONArray
import org.json.JSONObject
import kotlin.math.roundToInt
+// Market/TokenListSkeleton: source geometry and the native Skeleton's 3s shimmer.
+private class NativeListMarketSkeleton(context: android.content.Context, backgroundColor: Int) : View(context) {
+ private val marks = Array(5) { RectF() }
+ private val paint = Paint(Paint.ANTI_ALIAS_FLAG)
+ private val matrix = Matrix()
+ private val shaders = arrayOfNulls(5)
+ private val dark = Color.red(backgroundColor) * 0.299 + Color.green(backgroundColor) * 0.587 + Color.blue(backgroundColor) * 0.114 < 128
+ private val colors = intArrayOf(
+ Color.parseColor(if (dark) "#111111" else "#FAFAFA"),
+ Color.parseColor(if (dark) "#333333" else "#CDCDCD"),
+ Color.parseColor(if (dark) "#111111" else "#FAFAFA"),
+ )
+ private var phase = 0f
+ private val animator = ValueAnimator.ofFloat(0f, 1f).apply {
+ duration = 3000
+ repeatCount = ValueAnimator.INFINITE
+ interpolator = LinearInterpolator()
+ addUpdateListener { phase = it.animatedValue as Float; invalidate() }
+ }
+
+ private fun dp(value: Float) = NativeListScale.dp(resources, value)
+
+ override fun onSizeChanged(w: Int, h: Int, oldw: Int, oldh: Int) {
+ super.onSizeChanged(w, h, oldw, oldh)
+ marks[0].set(0f, 0f, dp(32f), dp(32f))
+ marks[1].set(dp(44f), 0f, dp(124f), dp(16f))
+ marks[2].set(dp(44f), dp(20f), dp(104f), dp(32f))
+ marks[3].set(w - dp(168f), dp(7f), w - dp(88f), dp(25f))
+ marks[4].set(w - dp(80f), dp(7f), w.toFloat(), dp(25f))
+ marks.forEachIndexed { index, mark ->
+ shaders[index] = LinearGradient(0f, 0f, mark.width(), 0f, colors, floatArrayOf(0f, 0.5f, 1f), Shader.TileMode.CLAMP)
+ }
+ }
+
+ override fun onDraw(canvas: Canvas) {
+ super.onDraw(canvas)
+ marks.forEachIndexed { index, mark ->
+ matrix.setTranslate(mark.left - mark.width() + phase * mark.width() * 3f, 0f)
+ shaders[index]?.setLocalMatrix(matrix)
+ paint.shader = shaders[index]
+ val radius = dp(if (index == 0) 16f else 8f)
+ canvas.drawRoundRect(mark, radius, radius, paint)
+ }
+ }
+
+ override fun onAttachedToWindow() {
+ super.onAttachedToWindow()
+ if (windowVisibility == VISIBLE) animator.start()
+ }
+
+ override fun onDetachedFromWindow() {
+ animator.cancel()
+ super.onDetachedFromWindow()
+ }
+
+ override fun onWindowVisibilityChanged(visibility: Int) {
+ super.onWindowVisibilityChanged(visibility)
+ if (visibility == VISIBLE && isAttachedToWindow) {
+ if (!animator.isStarted) animator.start()
+ } else animator.cancel()
+ }
+}
+
internal data class NativeListActionOrigin(
val sourceView: View,
val ownerRowView: NativeListRowView,
@@ -49,6 +120,7 @@ internal data class NativeListActionOrigin(
val source: String,
val slot: Int? = null,
val anchorInsetPixels: Int = 0,
+ val windowPointPixels: android.graphics.PointF? = null,
)
/** React Native color strings use CSS #RRGGBBAA ordering; Android expects #AARRGGBB. */
@@ -139,6 +211,8 @@ private class DottedUnderlineTextView(context: android.content.Context) : TextVi
private class PackedTitleLineLayout(context: android.content.Context) : LinearLayout(context) {
var packsChildrenAtStart = false
+ // OneKey patch: optional cap for the Market subtitle's localized name.
+ var leadingTextMaxWidth = Int.MAX_VALUE
override fun onMeasure(widthMeasureSpec: Int, heightMeasureSpec: Int) {
if (!packsChildrenAtStart || childCount < 2) {
@@ -147,27 +221,26 @@ private class PackedTitleLineLayout(context: android.content.Context) : LinearLa
}
val title = getChildAt(0)
- val badge = getChildAt(1)
val widthMode = MeasureSpec.getMode(widthMeasureSpec)
val widthSize = MeasureSpec.getSize(widthMeasureSpec)
- if (badge.visibility != GONE) {
+ var accessoryWidth = 0
+ for (index in 1 until childCount) {
+ val child = getChildAt(index)
+ if (child.visibility == GONE) continue
measureChildWithMargins(
- badge,
+ child,
widthMeasureSpec,
- paddingLeft + paddingRight,
+ paddingLeft + paddingRight + accessoryWidth,
heightMeasureSpec,
paddingTop + paddingBottom,
)
- }
-
- val badgeMargins = badge.layoutParams as MarginLayoutParams
- val badgeWidth = if (badge.visibility == GONE) 0 else {
- badge.measuredWidth + badgeMargins.leftMargin + badgeMargins.rightMargin
+ val margins = child.layoutParams as MarginLayoutParams
+ accessoryWidth += child.measuredWidth + margins.leftMargin + margins.rightMargin
}
val titleMargins = title.layoutParams as MarginLayoutParams
if (widthMode != MeasureSpec.UNSPECIFIED) {
- (title as TextView).maxWidth = (widthSize - paddingLeft - paddingRight - badgeWidth -
- titleMargins.leftMargin - titleMargins.rightMargin).coerceAtLeast(0)
+ (title as TextView).maxWidth = (widthSize - paddingLeft - paddingRight - accessoryWidth -
+ titleMargins.leftMargin - titleMargins.rightMargin).coerceAtLeast(0).coerceAtMost(leadingTextMaxWidth)
}
(title.layoutParams as LayoutParams).apply {
width = LayoutParams.WRAP_CONTENT
@@ -324,7 +397,16 @@ private class NativeListTableColumnView(context: android.content.Context) : Line
internal class NativeListRowView(
private val reactContext: ThemedReactContext,
) : LinearLayout(reactContext) {
- private val leadingFrame = FrameLayout(context)
+ private var marketLeadingUsesSourceClip = false
+ private val leadingFrame = object : FrameLayout(context) {
+ override fun drawChild(canvas: Canvas, child: View, drawingTime: Long): Boolean {
+ if (!marketLeadingUsesSourceClip || child !== leadingImages[0]) return super.drawChild(canvas, child, drawingTime)
+ // OneKey patch: clip only the Market avatar to the source border's padding box.
+ val saved = canvas.save()
+ BackgroundStyleApplicator.clipToPaddingBox(this, canvas)
+ return try { super.drawChild(canvas, child, drawingTime) } finally { canvas.restoreToCount(saved) }
+ }
+ }
// OneKey patch: reset selector fragments and corner decorations on every bind.
private val selectorViews = mutableListOf()
private var selectorUsesSourceScale = false
@@ -336,6 +418,7 @@ internal class NativeListRowView(
}
private val selectorOriginalFontFeatures = mutableMapOf()
private val selectorOriginalPaintFlags = mutableMapOf()
+ private val marketOriginalPaintFlags = mutableMapOf()
private val selectorLineHeights = mutableMapOf()
private val selectorFontSizes = mutableMapOf()
private val selectorImages = mutableListOf()
@@ -358,10 +441,16 @@ internal class NativeListRowView(
private val titleLine = PackedTitleLineLayout(context)
private val title = DottedUnderlineTextView(context)
private val subtitle = TextView(context)
+ // OneKey patch: the first text shrinks while the volume retains its width.
+ private val marketSubtitleLine = PackedTitleLineLayout(context)
private val tertiary = TextView(context)
private val status = TextView(context)
private val metricSubtitle = TextView(context)
private val badgeLine = TextView(context)
+ private val marketBadgeViews = List(3) { LinearLayout(context) }
+ private val marketBadgeLabels = List(3) { TextView(context) }
+ private val marketBadgeImages = List(3) { OneKeyImageReusableView(reactContext) }
+ private val marketBadgeGlyphs = List(3) { OneKeyIconView(context) }
private val activityContentRow = LinearLayout(context)
private val actionLine = LinearLayout(context)
private val actionViews = List(3) { TextView(context) }
@@ -402,6 +491,13 @@ internal class NativeListRowView(
private var pressedRowBackground: Drawable? = null
// OneKey patch: preserve a held row independently from RecyclerView snapshot rebinding.
private var touchPressed = false
+ private val marketLongPressHandler = Handler(Looper.getMainLooper())
+ private var marketLongPressRunnable: Runnable? = null
+ private var marketTouchStartX = 0f
+ private var marketTouchStartY = 0f
+ private var marketTouchX = 0f
+ private var marketTouchY = 0f
+ private var marketLongPressFired = false
private var reorderActive = false
private var checkboxCheckedColor = Color.rgb(32, 32, 32)
private var checkboxUncheckedColor = Color.rgb(252, 252, 252)
@@ -410,6 +506,7 @@ internal class NativeListRowView(
private var checkboxUsesSelectorStyle = false
private var iconSubduedColor = Color.rgb(141, 141, 141)
private var visualBackdropColor = Color.WHITE
+ private var imagePlaceholderColor = "#0000000F"
private val circleOutlineProvider = object : ViewOutlineProvider() {
override fun getOutline(view: View, outline: Outline) {
outline.setOval(0, 0, view.width, view.height)
@@ -466,6 +563,23 @@ internal class NativeListRowView(
titleLine.gravity = Gravity.CENTER_VERTICAL
titleLine.addView(title, LayoutParams(0, LayoutParams.WRAP_CONTENT, 1f))
titleLine.addView(badgeLine, wrap())
+ marketBadgeViews.forEachIndexed { index, badge ->
+ badge.orientation = HORIZONTAL
+ badge.gravity = Gravity.CENTER_VERTICAL
+ badge.isClickable = true
+ marketBadgeGlyphs[index].visibility = GONE
+ marketBadgeImages[index].visibility = GONE
+ marketBadgeLabels[index].apply {
+ includeFontPadding = false
+ maxLines = 1
+ ellipsize = TextUtils.TruncateAt.END
+ textSize = sp(11f)
+ typeface = NativeListFonts.medium(context)
+ }
+ badge.addView(marketBadgeGlyphs[index], LayoutParams(dp(16), dp(16)))
+ badge.addView(marketBadgeImages[index], LayoutParams(dp(14), dp(14)))
+ badge.addView(marketBadgeLabels[index], wrap())
+ }
mainColumn.addView(titleLine)
mainColumn.addView(subtitle)
mainColumn.addView(tertiary)
@@ -510,19 +624,55 @@ internal class NativeListRowView(
when (event.actionMasked) {
MotionEvent.ACTION_DOWN -> if (isEnabled) {
touchPressed = true
+ marketLongPressFired = false
+ val item = tag as? NativeListItem
+ if (item?.type == "market") {
+ marketTouchStartX = event.x
+ marketTouchStartY = event.y
+ marketTouchX = event.x
+ marketTouchY = event.y
+ item.json.optString("pressInActionKey").takeIf(String::isNotEmpty)?.let { actionKey ->
+ emitAction(item, actionKey, null, this, "row")
+ }
+ item.json.optString("longPressActionKey").takeIf(String::isNotEmpty)?.let { actionKey ->
+ val expectedKey = item.key
+ val runnable = Runnable {
+ val current = tag as? NativeListItem
+ if (touchPressed && current?.key == expectedKey && current.type == "market") {
+ marketLongPressRunnable = null
+ marketLongPressFired = true
+ val location = IntArray(2)
+ getLocationInWindow(location)
+ onAction?.invoke(current, actionKey, null, actionOrigin(this, "row").copy(
+ windowPointPixels = android.graphics.PointF(location[0] + marketTouchX, location[1] + marketTouchY),
+ ))
+ }
+ }
+ marketLongPressRunnable = runnable
+ marketLongPressHandler.postDelayed(runnable, 800L)
+ }
+ }
if ((tag as? NativeListItem)?.type == "mediaTile") {
leadingFrame.alpha = 0.8f
} else {
background = pressedRowBackground
}
}
- MotionEvent.ACTION_MOVE -> if (
- event.x < 0 || event.y < 0 || event.x >= width || event.y >= height
- ) {
- touchPressed = false
- restoreRestingBackground()
+ MotionEvent.ACTION_MOVE -> {
+ marketTouchX = event.x
+ marketTouchY = event.y
+ val outside = event.x < 0 || event.y < 0 || event.x >= width || event.y >= height
+ val movedMarket = (tag as? NativeListItem)?.type == "market" &&
+ (kotlin.math.abs(event.x - marketTouchStartX) > dp(10) ||
+ kotlin.math.abs(event.y - marketTouchStartY) > dp(10))
+ if (outside || movedMarket) {
+ cancelMarketLongPress()
+ touchPressed = false
+ restoreRestingBackground()
+ }
}
MotionEvent.ACTION_UP, MotionEvent.ACTION_CANCEL -> {
+ cancelMarketLongPress()
touchPressed = false
restoreRestingBackground()
}
@@ -531,6 +681,10 @@ internal class NativeListRowView(
}
setOnClickListener { view ->
(view.tag as? NativeListItem)?.let { item ->
+ if (item.type == "market" && marketLongPressFired) {
+ marketLongPressFired = false
+ return@let
+ }
// OneKey patch: allow create-address accessories when whole-row press is gated.
if (!item.json.optBoolean("pressDisabled", false)) onRowPress?.invoke(item, actionOrigin(view, "row"))
}
@@ -586,6 +740,22 @@ internal class NativeListRowView(
}
override fun onMeasure(widthMeasureSpec: Int, heightMeasureSpec: Int) {
+ val marketItem = (tag as? NativeListItem)?.takeIf { it.type == "market" }
+ val marketStyle = marketItem?.json?.optJSONObject("style")
+ if (marketStyle?.has("horizontalPadding") == true) {
+ // OneKey patch: Yoga rounds the two absolute edges, not both padding values.
+ val sourcePadding = marketStyle.optDouble("horizontalPadding") * resources.displayMetrics.density
+ val width = MeasureSpec.getSize(widthMeasureSpec)
+ val rowHeight = selectorHeight
+ val sourceVerticalPadding = marketStyle.takeIf { it.has("verticalPadding") && rowHeight != null }
+ ?.optDouble("verticalPadding")?.times(resources.displayMetrics.density)
+ setPadding(
+ sourcePadding.roundToInt(),
+ sourceVerticalPadding?.roundToInt() ?: paddingTop,
+ width - (width - sourcePadding).roundToInt(),
+ if (sourceVerticalPadding != null && rowHeight != null) rowHeight - (rowHeight - sourceVerticalPadding).roundToInt() else paddingBottom,
+ )
+ }
if (isMediaTile) {
val availableWidth = (MeasureSpec.getSize(widthMeasureSpec) - paddingLeft - paddingRight)
.coerceAtLeast(0)
@@ -610,6 +780,63 @@ internal class NativeListRowView(
override fun onLayout(changed: Boolean, left: Int, top: Int, right: Int, bottom: Int) {
super.onLayout(changed, left, top, right, bottom)
val item = tag as? NativeListItem ?: return
+ if (item.type == "market" && item.json.optJSONObject("style") != null) {
+ // OneKey patch: preserve Yoga's half-pixel centering for Market columns and badges.
+ for (column in listOf(leadingFrame, mainColumn, trailingColumn)) {
+ if (column.parent === this && column.visibility != GONE) {
+ column.offsetTopAndBottom((height - column.height + 1) / 2 - column.top)
+ }
+ }
+ // OneKey patch: token avatars stay centered in the row when text rounding adds a pixel.
+ if (item.json.optString("variant") != "token" && leadingFrame.parent === this && mainColumn.parent === this) {
+ leadingFrame.offsetTopAndBottom(mainColumn.top + (mainColumn.height - leadingFrame.height + 1) / 2 - leadingFrame.top)
+ }
+ // OneKey patch: preserve Yoga's absolute-edge rounding for the Market network badge.
+ if (leadingOverlayBackground.visibility == VISIBLE && item.json.optString("variant") == "token") {
+ val recycler = parent as? RecyclerView
+ val adapter = recycler?.adapter as? NativeListAdapter
+ val position = recycler?.getChildAdapterPosition(this) ?: RecyclerView.NO_POSITION
+ if (recycler != null && adapter != null && position != RecyclerView.NO_POSITION && adapter.itemAt(position)?.key == item.key) {
+ val density = resources.displayMetrics.density.toDouble()
+ val rowTop = adapter.marketSourceEdgePx(position)
+ val rowHeight = adapter.marketSourceEdgePx(position + 1) - rowTop
+ val imageHeight = item.json.optJSONObject("style")?.optJSONObject("image")?.optDouble("height", 32.0) ?: 32.0
+ val contentTop = (recycler.paddingTop / density).roundToInt() * density
+ val badgeTop = contentTop + rowTop + (rowHeight - imageHeight * density) / 2 + (imageHeight - 16) * density
+ val badgeHeight = (badgeTop + 20 * density).roundToInt() - badgeTop.roundToInt()
+ val top = ((imageHeight - 16) * density).roundToInt()
+ leadingOverlayBackground.layout(leadingOverlayBackground.left, top, leadingOverlayBackground.right, top + badgeHeight)
+ }
+ }
+ for (badge in marketBadgeViews) {
+ if (badge.parent === titleLine && badge.visibility != GONE) {
+ badge.offsetTopAndBottom((titleLine.height - badge.height + 1) / 2 - badge.top)
+ }
+ }
+ // OneKey patch: preserve fractional text advances and gaps until the final edge.
+ val style = item.json.optJSONObject("style")
+ for ((line, gap) in listOf(
+ titleLine to style.optDouble("titleBadgeGap", 4.0),
+ marketSubtitleLine to (item.json.optJSONObject("subtitlePrefix")?.optDouble("gap", 4.0) ?: 0.0),
+ )) {
+ var cursor = 0f
+ var hasPrevious = false
+ for (index in 0 until line.childCount) {
+ val child = line.getChildAt(index)
+ if (child.visibility == GONE) continue
+ if (hasPrevious) {
+ cursor += (gap * resources.displayMetrics.density).toFloat()
+ child.offsetLeftAndRight(cursor.roundToInt() - child.left)
+ }
+ val advance = if (index == 0 && child is TextView) {
+ val textWidth = if (line === titleLine) child.paint.measureText(child.text.toString()) else child.layout?.getLineWidth(0)
+ textWidth?.coerceAtMost(child.width.toFloat()) ?: child.width.toFloat()
+ } else child.width.toFloat()
+ cursor = if (hasPrevious) cursor + advance else child.left + advance
+ hasPrevious = true
+ }
+ }
+ }
val accessory = item.json.optJSONArray("trailing")?.optJSONObject(0)
if (item.type == "identity" && item.json.has("height") && item.json.optString("presentation") == "accountSelector" && accessory?.optString("kind") == "icon" && accessory.optString("name") == "PlusSmallOutline") {
// OneKey patch: the borderless Plus retains the source's fixed top18/negative7 slot.
@@ -650,13 +877,15 @@ internal class NativeListRowView(
useSourceScale: Boolean = false,
) {
val shouldRestorePressed = touchPressed && boundKey == item.key
+ cancelMarketLongPress()
+ marketLongPressFired = false
invalidateCurrentBinding()
bindingEpoch += 1
boundKey = item.key
touchPressed = shouldRestorePressed
currentLayout = layout
tag = item
- selectorUsesSourceScale = item.usesSelectorSourceScale || useSourceScale
+ selectorUsesSourceScale = item.type == "market" || item.type == "system" && item.json.optString("presentation") == "market" && item.json.optString("variant") == "retry" || item.usesSelectorSourceScale || useSourceScale
reorderActive = false
leadingImages.forEach(OneKeyImageReusableView::prepareForReuse)
secondaryImage.prepareForReuse()
@@ -686,6 +915,8 @@ internal class NativeListRowView(
}
iconSubduedColor = color(theme, "iconSubdued", "#00000072")
visualBackdropColor = color(theme, "rowBackground", "#FFFFFF")
+ imagePlaceholderColor = theme?.optString("strongBackground", "#0000000F")
+ ?.takeIf(String::isNotEmpty) ?: "#0000000F"
unreadDot.background = roundedFill(
parseNativeListColor("#E5484D"),
4f,
@@ -742,6 +973,7 @@ internal class NativeListRowView(
"activity" -> bindActivity(item, theme)
"message" -> bindMessage(item, theme)
"dataRow" -> bindDataRow(item, theme, checkboxState)
+ "market" -> bindMarket(item, theme)
"mediaTile" -> bindMediaTile(item, theme)
"metricCard" -> bindMetricCard(item, theme)
"sectionHeader" -> bindSectionHeader(item, theme, checkboxState)
@@ -776,6 +1008,8 @@ internal class NativeListRowView(
}
fun recycle() {
+ cancelMarketLongPress()
+ marketLongPressFired = false
touchPressed = false
restoreRestingBackground()
invalidateCurrentBinding()
@@ -866,6 +1100,7 @@ internal class NativeListRowView(
}
fun dispose() {
+ cancelMarketLongPress()
invalidateCurrentBinding()
restoreRestingBackground()
selectorImages.forEach(OneKeyImageReusableView::dispose)
@@ -874,6 +1109,7 @@ internal class NativeListRowView(
secondaryImage.dispose()
mediaNetworkImage.dispose()
metricVisualImages.forEach(OneKeyImageReusableView::dispose)
+ marketBadgeImages.forEach(OneKeyImageReusableView::dispose)
walletGroupRows.forEach(NativeListRowView::dispose)
}
@@ -945,6 +1181,8 @@ internal class NativeListRowView(
selectorOriginalFontFeatures.clear()
selectorOriginalPaintFlags.forEach { (view, flags) -> view.paintFlags = flags }
selectorOriginalPaintFlags.clear()
+ marketOriginalPaintFlags.forEach { (view, flags) -> view.paintFlags = flags }
+ marketOriginalPaintFlags.clear()
selectorLineHeights.clear()
selectorFontSizes.clear()
// OneKey patch: selector-only views cannot survive a recycled binding.
@@ -953,6 +1191,35 @@ internal class NativeListRowView(
selectorImages.forEach(OneKeyImageReusableView::dispose)
selectorImages.clear()
selectorHeight = null
+ marketBadgeViews.forEachIndexed { index, badge ->
+ (badge.parent as? ViewGroup)?.removeView(badge)
+ badge.visibility = GONE
+ badge.background = null
+ badge.setPadding(0, 0, 0, 0)
+ badge.setOnClickListener(null)
+ badge.contentDescription = null
+ marketBadgeLabels[index].apply {
+ // OneKey patch: restore every optional Market badge typography property on reuse.
+ text = ""
+ layoutParams = wrap()
+ fontFeatureSettings = null
+ textSize = sp(11f)
+ typeface = NativeListFonts.medium(context)
+ setLineSpacing(0f, 1f)
+ includeFontPadding = false
+ maxLines = 1
+ ellipsize = TextUtils.TruncateAt.END
+ gravity = Gravity.START or Gravity.CENTER_VERTICAL
+ setTextColor(color(null, "secondaryText", "#0000009B"))
+ }
+ marketBadgeImages[index].prepareForReuse()
+ marketBadgeImages[index].visibility = GONE
+ marketBadgeGlyphs[index].apply {
+ visibility = GONE
+ iconName = ""
+ tintColor = color(null, "secondaryText", "#0000009B")
+ }
+ }
title.setOnClickListener(null)
title.isClickable = false
walletGroupRows.forEach { it.invalidateCurrentBinding() }
@@ -987,6 +1254,9 @@ internal class NativeListRowView(
boundCheckboxData = null
mainColumn.orientation = VERTICAL
mainColumn.gravity = Gravity.CENTER_VERTICAL
+ // OneKey patch: remove the Market group before restoring shared labels.
+ marketSubtitleLine.removeAllViews()
+ mainColumn.removeView(marketSubtitleLine)
mediaMetadataRow.removeView(subtitle)
mediaMetadataRow.removeView(mediaNetworkImage)
mainColumn.removeView(mediaMetadataRow)
@@ -1012,6 +1282,10 @@ internal class NativeListRowView(
badgeLine.text = ""
title.setLineSpacing(0f, 1f)
subtitle.setLineSpacing(0f, 1f)
+ tertiary.setLineSpacing(0f, 1f)
+ tertiary.maxWidth = Int.MAX_VALUE
+ tertiary.ellipsize = TextUtils.TruncateAt.END
+ tertiary.layoutParams = LayoutParams(LayoutParams.MATCH_PARENT, LayoutParams.WRAP_CONTENT)
title.letterSpacing = 0f
title.showsDottedUnderline = false
title.setPadding(0, 0, 0, 0)
@@ -1065,6 +1339,7 @@ internal class NativeListRowView(
spinner.visibility = GONE
spinner.layoutParams = LayoutParams(dp(20), dp(20)).apply { gravity = Gravity.END }
spinner.alpha = 1f
+ marketLeadingUsesSourceClip = false
leadingFrame.visibility = GONE
leadingFrame.background = null
leadingFrame.clipChildren = false
@@ -1095,6 +1370,8 @@ internal class NativeListRowView(
leadingActionIcon.iconName = ""
leadingActionIcon.glyphSizeDp = 24
leadingActionIcon.setOnClickListener(null)
+ leadingActionIcon.setTag(com.facebook.react.R.id.react_test_id, null)
+ leadingActionIcon.contentDescription = null
mainColumn.visibility = VISIBLE
dataContainer.visibility = GONE
dataColumns.forEach { it.visibility = GONE }
@@ -1121,12 +1398,21 @@ internal class NativeListRowView(
mainColumn.removeView(skeletonSecondary)
setOnClickListener { view ->
(view.tag as? NativeListItem)?.let { item ->
+ if (item.type == "market" && marketLongPressFired) {
+ marketLongPressFired = false
+ return@let
+ }
// OneKey patch: allow create-address accessories when whole-row press is gated.
if (!item.json.optBoolean("pressDisabled", false)) onRowPress?.invoke(item, actionOrigin(view, "row"))
}
}
}
+ private fun cancelMarketLongPress() {
+ marketLongPressRunnable?.let(marketLongPressHandler::removeCallbacks)
+ marketLongPressRunnable = null
+ }
+
private fun restoreRestingBackground() {
background = if (reorderActive) pressedRowBackground else restingRowBackground
leadingFrame.alpha = 1f
@@ -1733,6 +2019,381 @@ internal class NativeListRowView(
addView(dataContainer, weighted())
}
+ private fun marketTypeface(weight: String, fallback: String): Typeface = when (
+ weight.ifEmpty { fallback }
+ ) {
+ "regular" -> NativeListFonts.regular(context)
+ "semibold" -> NativeListFonts.semibold(context)
+ "bold" -> NativeListFonts.bold(context)
+ else -> NativeListFonts.medium(context)
+ }
+
+ private fun applyMarketTextStyle(
+ view: TextView,
+ style: JSONObject?,
+ defaultSize: Float,
+ defaultLineHeight: Int,
+ defaultWeight: String,
+ defaultColor: Int,
+ defaultAlignment: String,
+ ) {
+ view.includeFontPadding = false
+ view.fontFeatureSettings = "tnum"
+ view.textSize = sp(style?.optDouble("fontSize", defaultSize.toDouble())?.toFloat() ?: defaultSize)
+ view.typeface = marketTypeface(style?.optString("fontWeight").orEmpty(), defaultWeight)
+ view.setTextColor(safeColor(style?.optString("color"), defaultColor))
+ val alignment = style?.optString("alignment", defaultAlignment) ?: defaultAlignment
+ view.gravity = Gravity.CENTER_VERTICAL or when (alignment) {
+ "center" -> Gravity.CENTER_HORIZONTAL
+ "end" -> Gravity.END
+ else -> Gravity.START
+ }
+ view.maxLines = style?.optInt("lines", 1)?.coerceIn(1, 2) ?: 1
+ view.ellipsize = TextUtils.TruncateAt.END
+ TextViewCompat.setLineHeight(
+ view,
+ dp(style?.optDouble("lineHeight", defaultLineHeight.toDouble())?.roundToInt() ?: defaultLineHeight),
+ )
+ }
+
+ // OneKey patch: opt-in Market text uses the same pixel rounding and line box as RN.
+ private fun applyMarketTextMetrics(view: TextView, style: JSONObject?) {
+ if (style == null || view.visibility != VISIBLE || view.text.isEmpty()) return
+ marketOriginalPaintFlags.putIfAbsent(view, view.paintFlags)
+ view.paintFlags = view.paintFlags or Paint.SUBPIXEL_TEXT_FLAG or Paint.LINEAR_TEXT_FLAG
+ if (style.has("fontSize")) {
+ val sourceSize = sp(style.optDouble("fontSize").toFloat()) * resources.displayMetrics.density
+ view.setTextSize(TypedValue.COMPLEX_UNIT_PX, kotlin.math.ceil(sourceSize.toDouble()).toFloat())
+ }
+ val text = SpannableStringBuilder(view.text)
+ text.getSpans(0, text.length, SelectorLineHeightSpan::class.java).forEach(text::removeSpan)
+ if (style.has("lineHeight")) {
+ val lineHeight = kotlin.math.ceil(style.optDouble("lineHeight") * (if (selectorUsesSourceScale) 1f else NativeListScale.factor(resources)) * resources.displayMetrics.density).toInt()
+ text.setSpan(SelectorLineHeightSpan(lineHeight), 0, text.length, Spannable.SPAN_EXCLUSIVE_EXCLUSIVE)
+ view.setLineSpacing(0f, 1f)
+ }
+ view.text = text
+ }
+
+ private fun marketText(value: String, segments: JSONArray?, fontSize: Float): CharSequence {
+ if (segments == null || segments.length() == 0) return value
+ val result = SpannableStringBuilder()
+ for (index in 0 until segments.length()) {
+ val segment = segments.getJSONObject(index)
+ val start = result.length
+ result.append(segment.optString("text"))
+ if (segment.optString("style") == "subscript") {
+ result.setSpan(
+ AbsoluteSizeSpan(sp(kotlin.math.ceil(fontSize * 0.6f)).roundToInt(), true),
+ start,
+ result.length,
+ Spannable.SPAN_EXCLUSIVE_EXCLUSIVE,
+ )
+ }
+ }
+ return result
+ }
+
+ private fun bindMarket(item: NativeListItem, theme: JSONObject?) {
+ // Network badges extend beyond the leading image's frame.
+ clipChildren = false
+ val variant = item.json.optString("variant")
+ val style = item.json.optJSONObject("style")
+ val imageStyle = style?.optJSONObject("image")
+ val imageWidth = imageStyle?.optDouble("width", if (variant == "stock") 40.0 else 32.0)?.roundToInt()
+ ?: if (variant == "stock") 40 else 32
+ val imageHeight = imageStyle?.optDouble("height", if (variant == "stock") 40.0 else 32.0)?.roundToInt()
+ ?: if (variant == "stock") 40 else 32
+ val horizontalPadding = style?.optDouble("horizontalPadding", if (variant == "perp") 16.0 else 20.0)?.roundToInt()
+ ?: if (variant == "perp") 16 else 20
+ val verticalPadding = style?.optDouble("verticalPadding", 12.0)?.roundToInt() ?: 12
+ val leadingGap = style?.optDouble("leadingGap", if (variant == "perp") 8.0 else 14.0)?.roundToInt()
+ ?: if (variant == "perp") 8 else 14
+ setPadding(dp(horizontalPadding), dp(verticalPadding), dp(horizontalPadding), dp(verticalPadding))
+
+ item.json.optJSONObject("leadingAction")?.let { action ->
+ leadingActionIcon.visibility = VISIBLE
+ leadingActionIcon.iconName = action.optString("name")
+ leadingActionIcon.glyphSizeDp = 24
+ leadingActionIcon.tintColor = safeColor(
+ action.optString("tintColor"),
+ color(theme, "icon", "#0000009B"),
+ )
+ leadingActionIcon.isEnabled = !action.optBoolean("disabled", false)
+ leadingActionIcon.alpha = if (leadingActionIcon.isEnabled) 1f else 0.4f
+ leadingActionIcon.setTag(
+ com.facebook.react.R.id.react_test_id,
+ action.optString("testID").takeIf(String::isNotEmpty),
+ )
+ leadingActionIcon.contentDescription = action.optString("accessibilityLabel")
+ leadingActionIcon.setOnClickListener {
+ emitAction(
+ item,
+ action.optString("actionKey"),
+ null,
+ leadingActionIcon,
+ "leadingAction",
+ )
+ }
+ addView(leadingActionIcon, LayoutParams(dp(36), dp(36)).apply { marginEnd = dp(5) })
+ }
+
+ val leading = JSONObject(item.json.getJSONObject("leading").toString())
+ imageStyle?.optString("shape")?.takeIf(String::isNotEmpty)?.let { leading.put("shape", it) }
+ imageStyle?.optString("contentFit")?.takeIf(String::isNotEmpty)?.let { contentFit ->
+ leading.optJSONObject("image")?.put("contentFit", contentFit)
+ }
+ val shape = imageStyle?.optString("shape", leading.optString("shape", "circle"))
+ ?: leading.optString("shape", "circle")
+ val cornerRadius = imageStyle?.takeIf { it.has("cornerRadius") }?.optDouble("cornerRadius")?.toFloat()
+ ?: when (shape) {
+ "square" -> 0f
+ "rounded" -> 8f
+ else -> minOf(imageWidth, imageHeight) / 2f
+ }
+ addLeading(
+ leading,
+ sizeDp = imageWidth,
+ spacingDp = leadingGap,
+ heightDp = imageHeight,
+ cornerRadiusDp = cornerRadius,
+ )
+
+ // OneKey patch: retain the source gap without changing other templates.
+ // addView(mainColumn, weighted())
+ addView(mainColumn, weighted().apply {
+ marginEnd = dp(style?.optDouble("contentTrailingGap", 0.0)?.roundToInt() ?: 0)
+ })
+ titleLine.packsChildrenAtStart = true
+ showText(title, item.json.optString("title"), style?.optJSONObject("title")?.optInt("lines", 1) ?: 1)
+ applyMarketTextStyle(
+ title,
+ style?.optJSONObject("title"),
+ 16f,
+ 24,
+ "medium",
+ color(theme, "primaryText", "#202020"),
+ "start",
+ )
+ val badges = item.json.optJSONArray("badges")
+ val titleBadgeGap = style?.optDouble("titleBadgeGap", 4.0)?.roundToInt() ?: 4
+ if (badges != null) {
+ for (index in 0 until minOf(marketBadgeViews.size, badges.length())) {
+ val badge = badges.getJSONObject(index)
+ val badgeView = marketBadgeViews[index]
+ val badgeLabel = marketBadgeLabels[index]
+ val badgeStyle = badge.optJSONObject("style")
+ val hasGlyph = badge.optString("iconName") == "verified"
+ val remoteIcon = badge.optJSONObject("icon")
+ val hasIcon = hasGlyph || remoteIcon != null
+ val text = badge.optString("text")
+ val toneColor = when (badge.optString("tone")) {
+ "success" -> color(theme, "positive", "#218358")
+ "danger" -> color(theme, "negative", "#CE2C31")
+ "info" -> color(theme, "info", "#0D74CE")
+ "warning" -> color(theme, "primaryText", "#202020")
+ else -> color(theme, "secondaryText", "#646464")
+ }
+ val foreground = safeColor(badge.optString("textColor"), toneColor)
+ badgeView.visibility = VISIBLE
+ val iconOnly = hasIcon && text.isEmpty()
+ // OneKey patch: Market callers can request the original badge padding.
+ val padding = badgeStyle?.optDouble("horizontalPadding", 5.0)?.roundToInt() ?: 5
+ val leftPadding = if (badgeStyle?.has("horizontalPadding") == true) padding else if (hasIcon) 2 else 5
+ // badgeView.setPadding(dp(if (iconOnly) 0 else if (hasIcon) 2 else 5), 0, dp(if (iconOnly) 0 else 5), 0)
+ badgeView.setPadding(dp(if (iconOnly) 0 else leftPadding), 0, dp(if (iconOnly) 0 else padding), 0)
+ badgeView.background = roundedFill(
+ safeColor(
+ badge.optString("backgroundColor"),
+ if (hasIcon && text.isEmpty()) Color.TRANSPARENT else color(theme, "strongBackground", "#0000000F"),
+ ),
+ 4f,
+ ).apply {
+ if (badgeStyle != null) this.cornerRadius = 4f * resources.displayMetrics.density
+ }
+ badgeLabel.text = text
+ // OneKey patch: match SizableText's tabular numerals only for explicit Market metrics.
+ badgeLabel.fontFeatureSettings = if (badgeStyle != null) "tnum" else null
+ badgeLabel.textSize = sp(badgeStyle?.optDouble("fontSize", 11.0)?.toFloat() ?: 11f)
+ badgeLabel.typeface = marketTypeface(badgeStyle?.optString("fontWeight").orEmpty(), "medium")
+ if (badgeStyle?.has("lineHeight") == true) {
+ TextViewCompat.setLineHeight(badgeLabel, dp(badgeStyle.optDouble("lineHeight").roundToInt()))
+ }
+ badgeLabel.setTextColor(foreground)
+ badgeLabel.visibility = if (text.isEmpty()) GONE else VISIBLE
+ if (hasGlyph) {
+ marketBadgeGlyphs[index].apply {
+ iconName = "BadgeVerifiedSolid"
+ tintColor = foreground
+ visibility = VISIBLE
+ }
+ }
+ remoteIcon?.let { icon ->
+ marketBadgeImages[index].visibility = VISIBLE
+ marketBadgeImages[index].outlineProvider = circleOutlineProvider
+ marketBadgeImages[index].clipToOutline = true
+ bindImage(icon, marketBadgeImages[index], item.key, 20 + index, "generic")
+ }
+ val actionKey = badge.optString("actionKey")
+ badgeView.isClickable = actionKey.isNotEmpty()
+ if (actionKey.isNotEmpty()) {
+ badgeView.setOnClickListener {
+ emitAction(item, actionKey, null, badgeView, "marketBadge", index)
+ }
+ }
+ badgeView.contentDescription = badge.optString("accessibilityLabel", text)
+ titleLine.addView(
+ badgeView,
+ // OneKey patch: preserve 18dp unless the Market row opts into source metrics.
+ // LayoutParams(LayoutParams.WRAP_CONTENT, dp(18)).apply { marginStart = dp(titleBadgeGap) },
+ LayoutParams(LayoutParams.WRAP_CONTENT, dp(badgeStyle?.optDouble("height", 18.0)?.roundToInt() ?: 18)).apply { marginStart = dp(titleBadgeGap) },
+ )
+ }
+ }
+ subtitle.layoutParams = LayoutParams(LayoutParams.MATCH_PARENT, LayoutParams.WRAP_CONTENT).apply {
+ topMargin = dp(style?.optDouble("lineGap", 0.0)?.roundToInt() ?: 0)
+ }
+ val subtitleText = item.json.optString("subtitle")
+ val subtitleSegments = item.json.optJSONArray("subtitleSegments")
+ if (subtitleText.isNotEmpty() || (subtitleSegments?.length() ?: 0) > 0) {
+ subtitle.visibility = VISIBLE
+ applyMarketTextStyle(
+ subtitle,
+ style?.optJSONObject("subtitle"),
+ 14f,
+ 20,
+ "regular",
+ color(theme, "secondaryText", "#646464"),
+ "start",
+ )
+ subtitle.text = marketText(
+ subtitleText,
+ subtitleSegments,
+ style?.optJSONObject("subtitle")?.optDouble("fontSize", 14.0)?.toFloat() ?: 14f,
+ )
+ }
+ // OneKey patch: preserve independent name metrics, truncation, and volume.
+ val subtitlePrefix = item.json.optJSONObject("subtitlePrefix")
+ val subtitlePadding = style?.optDouble("subtitleTrailingPadding", 0.0)?.roundToInt() ?: 0
+ if (subtitlePrefix != null || subtitlePadding > 0) {
+ mainColumn.removeView(subtitle)
+ mainColumn.removeView(tertiary)
+ marketSubtitleLine.orientation = HORIZONTAL
+ marketSubtitleLine.gravity = Gravity.CENTER_VERTICAL
+ marketSubtitleLine.packsChildrenAtStart = true
+ marketSubtitleLine.leadingTextMaxWidth = subtitlePrefix?.takeIf { it.has("maxWidth") }
+ ?.optDouble("maxWidth")?.roundToInt()?.let(::dp) ?: Int.MAX_VALUE
+ marketSubtitleLine.setPadding(0, 0, dp(subtitlePadding), 0)
+ showText(tertiary, subtitlePrefix?.optString("text") ?: "", 1)
+ applyMarketTextStyle(tertiary, subtitlePrefix?.optJSONObject("style"), 12f, 16, "regular", color(theme, "secondaryText", "#646464"), "start")
+ marketSubtitleLine.addView(tertiary, wrap())
+ marketSubtitleLine.addView(subtitle, wrap().apply {
+ if (tertiary.visibility == VISIBLE && subtitle.visibility == VISIBLE) {
+ marginStart = dp(subtitlePrefix?.optDouble("gap", 4.0)?.roundToInt() ?: 4)
+ }
+ })
+ mainColumn.addView(marketSubtitleLine, 1, LayoutParams(LayoutParams.MATCH_PARENT, LayoutParams.WRAP_CONTENT).apply {
+ topMargin = dp(style?.optDouble("lineGap", 0.0)?.roundToInt() ?: 0)
+ })
+ marketSubtitleLine.visibility = if (tertiary.visibility == VISIBLE || subtitle.visibility == VISIBLE) VISIBLE else GONE
+ }
+ trailingColumn.orientation = HORIZONTAL
+ trailingColumn.gravity = Gravity.END or Gravity.CENTER_VERTICAL
+ addView(trailingColumn, wrap())
+ bindMarketQuote(item, theme)
+ item.json.optJSONObject("diagnostics")?.optString("imageBindActionKey")
+ ?.takeIf(String::isNotEmpty)
+ ?.takeIf { leading.optJSONObject("image") != null || leading.optJSONObject("networkImage") != null }
+ ?.let { actionKey -> onAction?.invoke(item, actionKey, null, null) }
+ }
+
+ fun bindMarketQuote(item: NativeListItem, theme: JSONObject?) {
+ if (boundKey != item.key || item.type != "market") return
+ tag = item
+ val style = item.json.optJSONObject("style")
+ val priceStyle = style?.optJSONObject("price")
+ val price = trailingViews[0]
+ price.isClickable = false
+ price.isLongClickable = false
+ price.visibility = VISIBLE
+ price.maxWidth = dp(112)
+ applyMarketTextStyle(
+ price,
+ priceStyle,
+ 16f,
+ 24,
+ "medium",
+ color(theme, "primaryText", "#202020"),
+ "end",
+ )
+ price.text = marketText(
+ item.json.optString("price"),
+ item.json.optJSONArray("priceSegments"),
+ priceStyle?.optDouble("fontSize", 16.0)?.toFloat() ?: 16f,
+ )
+ val trailingGap = style?.optDouble("trailingGap", 8.0)?.roundToInt() ?: 8
+ price.layoutParams = LayoutParams(LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT).apply {
+ marginEnd = dp(trailingGap)
+ }
+
+ val changeData = item.json.getJSONObject("change")
+ val changeStyle = style?.optJSONObject("change")
+ val change = trailingViews[1]
+ change.isClickable = false
+ change.isLongClickable = false
+ val toneColor = when (changeData.optString("tone")) {
+ "positive" -> color(theme, "positive", "#218358")
+ "negative" -> color(theme, "negative", "#CE2C31")
+ else -> color(theme, "secondaryText", "#8D8D8D")
+ }
+ val textColor = safeColor(
+ changeData.optString("textColor"),
+ color(theme, "inverseText", "#FFFFFF"),
+ )
+ change.visibility = VISIBLE
+ applyMarketTextStyle(change, changeStyle, 14f, 20, "medium", textColor, "center")
+ change.text = marketText(
+ changeData.optString("text"),
+ changeData.optJSONArray("textSegments"),
+ changeStyle?.optDouble("fontSize", 14.0)?.toFloat() ?: 14f,
+ )
+ change.background = roundedFill(
+ safeColor(changeData.optString("backgroundColor"), toneColor),
+ style?.optDouble("changeCornerRadius", 8.0)?.toFloat() ?: 8f,
+ )
+ change.layoutParams = LayoutParams(
+ dp(style?.optDouble("changeWidth", 80.0)?.roundToInt() ?: 80),
+ dp(style?.optDouble("changeHeight", 32.0)?.roundToInt() ?: 32),
+ )
+ applyMarketTextMetrics(title, style?.optJSONObject("title"))
+ applyMarketTextMetrics(subtitle, style?.optJSONObject("subtitle"))
+ applyMarketTextMetrics(tertiary, item.json.optJSONObject("subtitlePrefix")?.optJSONObject("style"))
+ applyMarketTextMetrics(price, priceStyle)
+ applyMarketTextMetrics(change, changeStyle)
+ val badges = item.json.optJSONArray("badges")
+ marketBadgeLabels.forEachIndexed { index, label ->
+ val badge = badges?.optJSONObject(index)
+ val badgeStyle = badge?.optJSONObject("style")
+ applyMarketTextMetrics(label, badgeStyle)
+ if (badge != null && label.visibility == VISIBLE && badgeStyle?.has("horizontalPadding") == true &&
+ badge.optJSONObject("icon") == null && badge.optString("iconName").isEmpty()) {
+ // OneKey patch: match RN's intrinsic text width and one rounded padding pair.
+ label.layoutParams = wrap().apply { width = label.paint.measureText(label.text.toString()).roundToInt() }
+ val padding = badgeStyle.optDouble("horizontalPadding") * resources.displayMetrics.density
+ marketBadgeViews[index].setPadding(kotlin.math.floor(padding).toInt(), 0, (padding * 2).roundToInt() - kotlin.math.floor(padding).toInt(), 0)
+ }
+ }
+ contentDescription = item.json.optString(
+ "accessibilityLabel",
+ listOf(
+ item.json.optString("title"),
+ item.json.optString("subtitle"),
+ item.json.optString("price"),
+ changeData.optString("text"),
+ ).filter(String::isNotEmpty).joinToString(", "),
+ )
+ }
+
private fun styledDataText(
column: JSONObject,
badges: JSONArray?,
@@ -1834,11 +2495,12 @@ internal class NativeListRowView(
mediaMetadataRow.gravity = Gravity.CENTER_VERTICAL
mediaMetadataRow.addView(subtitle, weighted().apply { marginEnd = dp(8) })
item.json.optJSONObject("networkImage")?.let { networkImage ->
- mediaNetworkImage.visibility = VISIBLE
+ // OneKey patch: Preserve badge layout without exposing a loading/error tile.
+ // mediaNetworkImage.visibility = VISIBLE
mediaNetworkImage.outlineProvider = circleOutlineProvider
mediaNetworkImage.clipToOutline = true
mediaMetadataRow.addView(mediaNetworkImage, LayoutParams(dp(14), dp(14)))
- bindImage(networkImage, mediaNetworkImage, item.key, 2, "network")
+ bindImage(networkImage, mediaNetworkImage, item.key, 2, "network", hideUntilLoaded = true)
}
mainColumn.addView(mediaMetadataRow, 0)
mainColumn.addView(titleLine, 1)
@@ -2367,6 +3029,65 @@ internal class NativeListRowView(
private fun bindSystem(item: NativeListItem, theme: JSONObject?) {
val variant = item.json.optString("variant")
+ val isMarket = item.json.optString("presentation") == "market"
+ if (isMarket) setPadding(dp(20), dp(12), dp(20), dp(12))
+ if (variant == "loading" && item.json.optString("loadingStyle") == "skeleton") {
+ setPadding(dp(20), dp(12), dp(20), dp(12))
+ addView(
+ NativeListMarketSkeleton(context, color(theme, "background", "#FFFFFF")),
+ LayoutParams(LayoutParams.MATCH_PARENT, dp(32)),
+ )
+ return
+ }
+ if (variant == "loading" && item.json.optString("loadingStyle") == "spinner") {
+ gravity = Gravity.CENTER
+ setPadding(0, dp(16), 0, dp(16))
+ addView(
+ ProgressBar(context, null, android.R.attr.progressBarStyleSmall).apply {
+ isIndeterminate = true
+ indeterminateTintList = android.content.res.ColorStateList.valueOf(color(theme, "icon", "#0000009B"))
+ },
+ LayoutParams(dp(20), dp(20)),
+ )
+ return
+ }
+ if (isMarket && variant == "retry") {
+ val message = item.json.optString("message")
+ orientation = VERTICAL
+ gravity = Gravity.CENTER
+ setPadding(dp(32), dp(if (message.isEmpty()) 11 else 32), dp(32), dp(if (message.isEmpty()) 11 else 27))
+ if (message.isNotEmpty()) {
+ showText(title, message, 2)
+ val style = JSONObject().put("fontSize", 16).put("lineHeight", 24)
+ applyMarketTextStyle(title, style, 16f, 24, "regular", color(theme, "secondaryText", "#0000009B"), "center")
+ applyMarketTextMetrics(title, style)
+ addView(mainColumn, wrap().apply { bottomMargin = kotlin.math.ceil(7.0 * resources.displayMetrics.density).toInt() })
+ }
+ showTrailing(0, item.json.optString("actionText", "Retry"), true, item.json.optString("actionKey"))
+ val button = trailingViews[0]
+ val style = JSONObject().put("fontSize", 14).put("lineHeight", 20)
+ applyMarketTextStyle(button, style, 14f, 20, "medium", color(theme, "secondaryText", "#0000009B"), "center")
+ applyMarketTextMetrics(button, style)
+ button.background = null
+ // Match Yoga's text rounding before adding the tertiary Button's border/padding.
+ val density = resources.displayMetrics.density
+ val buttonWidth = (kotlin.math.ceil(button.paint.measureText(button.text.toString()).toDouble()) + 18 * density).roundToInt()
+ val buttonHeight = kotlin.math.ceil(kotlin.math.ceil(20.0 * density) + 10 * density).toInt()
+ button.setPadding(0, 0, 0, 0)
+ button.layoutParams = LayoutParams(buttonWidth, buttonHeight)
+ addView(trailingColumn, wrap())
+ return
+ }
+ if (isMarket && variant == "noMatch") {
+ gravity = Gravity.CENTER
+ setPadding(dp(32), dp(32), dp(32), dp(32))
+ showText(title, item.json.optString("message"), 1)
+ val style = JSONObject().put("fontSize", 16).put("lineHeight", 24)
+ applyMarketTextStyle(title, style, 16f, 24, "regular", color(theme, "secondaryText", "#0000009B"), "center")
+ applyMarketTextMetrics(title, style)
+ addView(mainColumn, wrap())
+ return
+ }
// OneKey patch: warning title/description wrap inside the actual scroll content.
if (variant == "warning") {
setPadding(dp(12), dp(14), dp(12), dp(14))
@@ -2400,11 +3121,11 @@ internal class NativeListRowView(
}
gravity = Gravity.CENTER
if (variant == "loading") {
- addLeading(JSONObject().put("kind", "skeleton"), 40)
+ addLeading(JSONObject().put("kind", "skeleton"), if (isMarket) 32 else 40)
leadingFallback.text = ""
leadingFallback.background = roundedFill(
color(theme, "strongBackground", "#0000000F"),
- 20f,
+ if (isMarket) 16f else 20f,
)
addSkeleton(skeletonPrimary, 120, 12, theme, bottomMarginDp = 8)
addSkeleton(skeletonSecondary, 80, 12, theme)
@@ -2445,15 +3166,17 @@ internal class NativeListRowView(
sizeDp: Int = 40,
secondaryVisual: JSONObject? = null,
spacingDp: Int = 12,
+ heightDp: Int = sizeDp,
+ cornerRadiusDp: Float? = null,
) {
leadingFrame.visibility = VISIBLE
- leadingFrame.layoutParams = LayoutParams(dp(sizeDp), dp(sizeDp)).apply {
+ leadingFrame.layoutParams = LayoutParams(dp(sizeDp), dp(heightDp)).apply {
val item = tag as? NativeListItem
// OneKey patch: Yoga rounds cumulative selector edges, not each 12dp gap separately.
marginEnd = if (item?.json?.has("height") == true && item.json.optString("presentation") in setOf("accountSelector", "networkSelector")) dp(12 + sizeDp + spacingDp) - dp(12) - dp(sizeDp) else dp(spacingDp)
}
addView(leadingFrame)
- leadingFallback.layoutParams = FrameLayout.LayoutParams(dp(sizeDp), dp(sizeDp))
+ leadingFallback.layoutParams = FrameLayout.LayoutParams(dp(sizeDp), dp(heightDp))
if (visual == null) return
val kind = visual.optString("kind")
val shape = visual.optString(
@@ -2465,25 +3188,35 @@ internal class NativeListRowView(
val isIcon = kind == "icon"
val cornerIconData = visual.optJSONObject("cornerIcon")
val fallback = visual.optString("fallbackText").take(2)
- leadingFallback.text = fallback
+ val fallbackIconData = visual.optJSONObject("fallbackIcon")
+ val handlesSourceFallback =
+ !isIcon && sources.isNotEmpty() &&
+ (visual.has("fallbackText") || fallbackIconData != null)
+ leadingFallback.text = if (handlesSourceFallback) "" else fallback
leadingFallback.setTextColor(parseNativeListColor("#00000072"))
val visualBackground = safeColor(
visual.optString("backgroundColor"),
- parseNativeListColor(if (isIcon) "#0000000F" else "#E0E0E0"),
+ // OneKey patch: Visual loading and fallback use the active list theme.
+ // parseNativeListColor(if (isIcon) "#0000000F" else "#E0E0E0"),
+ parseNativeListColor(imagePlaceholderColor),
)
if (!isIcon && visual.optString("backgroundColor").isNotEmpty()) {
leadingFrame.background = roundedFill(
visualBackground,
- leadingCornerRadius(shape, sizeDp),
+ cornerRadiusDp ?: leadingCornerRadius(shape, minOf(sizeDp, heightDp)),
)
}
- leadingFallback.background = roundedFill(visualBackground, leadingCornerRadius(shape, sizeDp))
- leadingFallback.visibility = if (!isIcon && sources.isEmpty()) VISIBLE else GONE
+ leadingFallback.background = roundedFill(
+ if (handlesSourceFallback) parseNativeListColor(imagePlaceholderColor) else visualBackground,
+ cornerRadiusDp ?: leadingCornerRadius(shape, minOf(sizeDp, heightDp)),
+ )
+ leadingFallback.visibility =
+ if (!isIcon && (sources.isEmpty() || handlesSourceFallback)) VISIBLE else GONE
if (isIcon) {
leadingFrame.background = GradientDrawable().apply {
setColor(visualBackground)
setStroke(1, parseNativeListColor("#0000001F"))
- cornerRadius = scaledDp(leadingCornerRadius(shape, sizeDp))
+ cornerRadius = scaledDp(cornerRadiusDp ?: leadingCornerRadius(shape, minOf(sizeDp, heightDp)))
}
leadingIcon.iconName = visual.optString("name")
leadingIcon.tintColor = safeColor(
@@ -2491,6 +3224,14 @@ internal class NativeListRowView(
parseNativeListColor("#0000009B"),
)
leadingIcon.visibility = VISIBLE
+ } else if (sources.isEmpty() && fallbackIconData != null) {
+ leadingFallback.visibility = GONE
+ leadingIcon.iconName = fallbackIconData.optString("name")
+ leadingIcon.tintColor = safeColor(
+ fallbackIconData.optString("tintColor"),
+ parseNativeListColor("#0000009B"),
+ )
+ leadingIcon.visibility = VISIBLE
}
val visibleSources = sources.take(leadingImages.size)
val tokenPair = kind == "token" && visibleSources.size > 1
@@ -2505,12 +3246,19 @@ internal class NativeListRowView(
if (tokenPair) {
leadingOverlayBackground.visibility = VISIBLE
leadingOverlayBackground.background = roundedFill(visualBackdropColor, 10f)
+ val item = tag as? NativeListItem
+ val marketPadding = if (item?.type == "market") item.json.optJSONObject("style")?.optDouble("horizontalPadding", 20.0) ?: 20.0 else null
+ val density = resources.displayMetrics.density
+ // Yoga rounds the absolute horizontal edges, including the avatar's fractional origin.
+ val badgeRight = marketPadding?.let { ((it + sizeDp + 4) * density).roundToInt() }
+ val badgeLeft = marketPadding?.let { ((it + sizeDp - 16) * density).roundToInt() }
+ val avatarRight = marketPadding?.let { ((it + sizeDp) * density).roundToInt() }
leadingOverlayBackground.layoutParams = FrameLayout.LayoutParams(
- dp(20),
+ if (badgeRight != null && badgeLeft != null) badgeRight - badgeLeft else dp(20),
dp(20),
Gravity.END or Gravity.BOTTOM,
).apply {
- marginEnd = -dp(4)
+ marginEnd = if (badgeRight != null && avatarRight != null) avatarRight - badgeRight else -dp(4)
bottomMargin = -dp(4)
}
}
@@ -2536,33 +3284,72 @@ internal class NativeListRowView(
}
visibleSources.forEachIndexed { index, (source, variant) ->
val image = leadingImages[index]
- image.visibility = VISIBLE
+ // OneKey patch: Decorative badges and source-owned fallbacks stay hidden until loaded.
+ // image.visibility = VISIBLE
+ val ownsSourceFallback = index == 0 && handlesSourceFallback
+ image.visibility = if (index > 0 || ownsSourceFallback) INVISIBLE else VISIBLE
image.layoutParams = leadingImageLayout(
index = index,
count = visibleSources.size,
sizeDp = sizeDp,
+ heightDp = heightDp,
tokenPair = tokenPair,
)
image.outlineProvider = when {
tokenPair && index == 1 -> circleOutlineProvider
+ cornerRadiusDp != null -> roundedOutlineProvider(cornerRadiusDp)
else -> leadingOutlineProvider(shape)
}
image.clipToOutline = true
- val fallbackIcon = if (index == 0) visual.optJSONObject("fallbackIcon") else null
+ if ((tag as? NativeListItem)?.type == "market" && index == 0 && visual.optString("borderColor").isNotEmpty()) {
+ val inset = dp(1)
+ val density = resources.displayMetrics.density
+ val sourceRadius = cornerRadiusDp ?: leadingCornerRadius(shape, minOf(sizeDp, heightDp))
+ // OneKey patch: retain the source's fractional border and background rendering.
+ leadingFrame.background = null
+ BackgroundStyleApplicator.setBackgroundColor(leadingFrame, visualBackground)
+ // Match the source's physical edges: React Native rasterizes ALL as a different stroke path.
+ for (edge in arrayOf(LogicalEdge.LEFT, LogicalEdge.TOP, LogicalEdge.RIGHT, LogicalEdge.BOTTOM)) {
+ BackgroundStyleApplicator.setBorderWidth(leadingFrame, edge, 1f)
+ BackgroundStyleApplicator.setBorderColor(leadingFrame, edge, safeColor(visual.optString("borderColor"), Color.TRANSPARENT))
+ }
+ BackgroundStyleApplicator.setBorderRadius(leadingFrame, BorderRadiusProp.BORDER_RADIUS, LengthPercentage(sourceRadius, LengthPercentageType.POINT))
+ // OneKey patch: round the source image's absolute edges inside its border.
+ val sourceLeft = ((tag as? NativeListItem)?.json?.optJSONObject("style")?.optDouble("horizontalPadding", 20.0) ?: 20.0) * density
+ val imageWidth = (sourceLeft + (sizeDp - 1) * density).roundToInt() - (sourceLeft + density).roundToInt()
+ image.layoutParams = FrameLayout.LayoutParams(imageWidth, dp(heightDp - 2)).apply {
+ leftMargin = inset
+ topMargin = inset
+ }
+ marketLeadingUsesSourceClip = true
+ image.clipToOutline = false
+ }
+ val fallbackIcon = if (index == 0) fallbackIconData else null
val expectedEpoch = bindingEpoch
bindImage(source, image, boundKey ?: "", index, variant,
- onLoad = if (fallbackIcon == null) null else ({
- if (bindingEpoch == expectedEpoch) { image.visibility = VISIBLE; leadingIcon.visibility = GONE }
+ onLoad = if (!ownsSourceFallback) null else ({
+ if (bindingEpoch == expectedEpoch) {
+ image.visibility = VISIBLE
+ leadingFallback.visibility = GONE
+ leadingIcon.visibility = GONE
+ }
}),
- onError = if (fallbackIcon == null) null else ({
+ onError = if (!ownsSourceFallback) null else ({
if (bindingEpoch == expectedEpoch) {
image.visibility = GONE
- leadingFallback.visibility = GONE
- leadingIcon.iconName = fallbackIcon.optString("name")
- leadingIcon.tintColor = safeColor(fallbackIcon.optString("tintColor"), parseNativeListColor("#0000009B"))
- leadingIcon.visibility = VISIBLE
+ if (fallbackIcon != null) {
+ leadingFallback.visibility = GONE
+ leadingIcon.iconName = fallbackIcon.optString("name")
+ leadingIcon.tintColor = safeColor(fallbackIcon.optString("tintColor"), parseNativeListColor("#0000009B"))
+ leadingIcon.visibility = VISIBLE
+ } else {
+ leadingIcon.visibility = GONE
+ leadingFallback.text = fallback
+ leadingFallback.visibility = VISIBLE
+ }
}
}),
+ hideUntilLoaded = index > 0 || ownsSourceFallback,
)
}
// OneKey patch: wallet overlays retain source images, provider colors and QR text.
@@ -2585,7 +3372,7 @@ internal class NativeListRowView(
val image = overlay.optJSONObject("image")
val view = when {
image != null -> OneKeyImageReusableView(reactContext).also {
- bindImage(image, it, boundKey ?: "", 10 + index, "generic")
+ bindImage(image, it, boundKey ?: "", 10 + index, "generic", hideUntilLoaded = true)
selectorImages.add(it)
}
overlay.optString("text").isNotEmpty() -> TextView(context).apply {
@@ -2664,10 +3451,11 @@ internal class NativeListRowView(
index: Int,
count: Int,
sizeDp: Int,
+ heightDp: Int,
tokenPair: Boolean,
): FrameLayout.LayoutParams {
if (count == 1 || tokenPair && index == 0) {
- return FrameLayout.LayoutParams(dp(sizeDp), dp(sizeDp))
+ return FrameLayout.LayoutParams(dp(sizeDp), dp(heightDp))
}
if (tokenPair && index == 1) {
return FrameLayout.LayoutParams(dp(16), dp(16), Gravity.END or Gravity.BOTTOM).apply {
@@ -3009,6 +3797,32 @@ internal class NativeListRowView(
}
private fun applySize(item: NativeListItem) {
+ if (item.type == "system" && item.json.optString("presentation") == "market" &&
+ item.json.optString("variant") in setOf("retry", "noMatch")) {
+ val defaultHeight = if (item.json.optString("variant") == "noMatch") 88.0 else if (item.json.optString("message").isEmpty()) 52.0 else 120.0
+ minimumHeight = (item.json.optDouble("height", defaultHeight).toFloat() * resources.displayMetrics.density).roundToInt()
+ selectorHeight = if (item.json.has("height")) minimumHeight else null
+ return
+ }
+ if (item.type == "market") {
+ val style = item.json.optJSONObject("style")
+ val imageHeight = style?.optJSONObject("image")?.optDouble(
+ "height",
+ if (item.json.optString("variant") == "stock") 40.0 else 32.0,
+ ) ?: if (item.json.optString("variant") == "stock") 40.0 else 32.0
+ val verticalPadding = style?.optDouble("verticalPadding", 12.0) ?: 12.0
+ val defaultHeight = if (item.json.optString("variant") == "stock") 72.0 else 68.0
+ // OneKey patch: preserve fractional DP until the final physical pixel edge.
+ val rowHeight = item.json.optDouble(
+ "height",
+ maxOf(defaultHeight, imageHeight + verticalPadding * 2),
+ )
+ val sourceScale = if (selectorUsesSourceScale) 1f else NativeListScale.factor(resources)
+ minimumHeight = (rowHeight * sourceScale * resources.displayMetrics.density).roundToInt()
+ // OneKey patch: explicit Market row heights must not grow after child pixel rounding.
+ selectorHeight = if (item.json.has("height")) minimumHeight else null
+ return
+ }
val isWalletSidebar =
item.type == "identity" && item.json.optString("presentation") == "walletSidebar"
val isAccountSelectorIdentity =
@@ -3161,9 +3975,14 @@ internal class NativeListRowView(
else -> 36
}
"system" -> when (item.json.optString("variant")) {
+ "loading" -> when (item.json.optString("loadingStyle")) {
+ "skeleton" -> 56
+ "spinner" -> 52
+ else -> if (item.json.optString("presentation") == "market") 68 else 56
+ }
+ "noMatch", "retry" -> if (item.json.optString("presentation") == "market") 44 else if (item.json.optString("variant") == "noMatch") 36 else 44
"warning" -> 0
- "noMatch", "end" -> 36
- "retry" -> 44
+ "end" -> if (item.json.optString("presentation") == "market") 44 else 36
else -> 56
}
"action" -> when {
@@ -3269,6 +4088,12 @@ internal class NativeListRowView(
}
}
+ private fun roundedOutlineProvider(radiusDp: Float) = object : ViewOutlineProvider() {
+ override fun getOutline(view: View, outline: Outline) {
+ outline.setRoundRect(0, 0, view.width, view.height, scaledDp(radiusDp))
+ }
+ }
+
private fun JSONArray?.hasAccessory(kind: String): Boolean {
if (this == null) return false
return (0 until length()).any { optJSONObject(it)?.optString("kind") == kind }
@@ -3294,12 +4119,26 @@ internal class NativeListRowView(
variant: String,
onLoad: (() -> Unit)? = null,
onError: (() -> Unit)? = null,
+ hideUntilLoaded: Boolean = false,
retryAttempt: Int = 0,
) {
selectorImageRetries.remove(imageView)?.let(imageView::removeCallbacks)
val expectedEpoch = bindingEpoch
val retryLimit = source.optInt("retryTimes", 0).coerceAtLeast(0)
val uri = source.optString("uri").trim().takeIf(String::isNotEmpty)
+ if (hideUntilLoaded) imageView.visibility = INVISIBLE
+ val handleLoad: (() -> Unit)? = if (hideUntilLoaded) ({
+ if (bindingEpoch == expectedEpoch) {
+ imageView.visibility = VISIBLE
+ onLoad?.invoke()
+ }
+ }) else onLoad
+ val handleError: (() -> Unit)? = if (hideUntilLoaded) ({
+ if (bindingEpoch == expectedEpoch) {
+ imageView.visibility = INVISIBLE
+ onError?.invoke()
+ }
+ }) else onError
imageView.configure(
sourceUri = uri,
sourceHeadersJson = source.optJSONObject("headers")?.toString(),
@@ -3311,20 +4150,21 @@ internal class NativeListRowView(
optimizeTos = retryAttempt == 0 && source.optBoolean("optimizeTos", true),
overscan = source.optDouble("overscan", 1.1),
loadingStrategy = source.optString("loadingStrategy", "static"),
- onLoad = if (retryLimit == 0) onLoad else ({
+ placeholderColor = imagePlaceholderColor,
+ onLoad = if (retryLimit == 0) handleLoad else ({
if (bindingEpoch == expectedEpoch) {
selectorImageRetries.remove(imageView)?.let(imageView::removeCallbacks)
- onLoad?.invoke()
+ handleLoad?.invoke()
}
}),
- onError = if (retryLimit == 0) onError else ({
+ onError = if (retryLimit == 0) handleError else ({
if (bindingEpoch == expectedEpoch) {
- if (retryAttempt >= retryLimit) onError?.invoke()
+ if (retryAttempt >= retryLimit) handleError?.invoke()
else if (!selectorImageRetries.containsKey(imageView)) {
val retry = Runnable {
if (bindingEpoch == expectedEpoch) {
selectorImageRetries.remove(imageView)
- bindImage(source, imageView, token, slot, variant, onLoad, onError, retryAttempt + 1)
+ bindImage(source, imageView, token, slot, variant, onLoad, onError, hideUntilLoaded, retryAttempt + 1)
}
}
selectorImageRetries[imageView] = retry
@@ -3465,6 +4305,7 @@ private class OneKeyIconView(context: android.content.Context) : View(context) {
"CrossedSmallSolid" to listOf(Path.FillType.WINDING),
"AccountErrorCustom" to listOf(Path.FillType.WINDING, Path.FillType.EVEN_ODD),
"Circle" to listOf(Path.FillType.WINDING),
+ "BadgeVerifiedSolid" to listOf(Path.FillType.EVEN_ODD),
"ChevronRightSmallOutline" to listOf(Path.FillType.WINDING),
"MinusCircleOutline" to listOf(Path.FillType.WINDING, Path.FillType.EVEN_ODD),
"PlusCircleOutline" to listOf(Path.FillType.WINDING, Path.FillType.EVEN_ODD),
@@ -3492,6 +4333,7 @@ private class OneKeyIconView(context: android.content.Context) : View(context) {
"CrossedSmallSolid" to listOf("M17.87 8.25 14.12 12l3.75 3.75-2.12 2.121-3.75-3.75-3.75 3.75-2.121-2.121L9.879 12l-3.75-3.75 2.12-2.121L12 9.879l3.75-3.75 2.122 2.121Z"),
"AccountErrorCustom" to listOf("M12.5 12.75a1.25 1.25 0 1 0 0-2.5 1.25 1.25 0 0 0 0 2.5", "M0 3.5A3.5 3.5 0 0 1 3.5 0h8.088A2.41 2.41 0 0 1 14 2.412V5h1a3 3 0 0 1 3 3v7a3 3 0 0 1-3 3H4a4 4 0 0 1-4-4zm2 3.163V14a2 2 0 0 0 2 2h11a1 1 0 0 0 1-1V8a1 1 0 0 0-1-1H3.5c-.537 0-1.045-.12-1.5-.337M2 3.5A1.5 1.5 0 0 0 3.5 5H12V2.412A.41.41 0 0 0 11.588 2H3.5A1.5 1.5 0 0 0 2 3.5"),
"Circle" to listOf("M0 12a12 12 0 1 0 24 0a12 12 0 1 0 -24 0"),
+ "BadgeVerifiedSolid" to listOf("M9.483 11.458v3.5h-1v-3.5z M10.467 2.698a2.03 2.03 0 0 1 3.065 0l1.358 1.564a.03.03 0 0 0 .028.01l2.046-.325a2.03 2.03 0 0 1 2.347 1.971l.037 2.07q0 .016.014.026l1.776 1.066a2.03 2.03 0 0 1 .532 3.019l-1.304 1.609a.03.03 0 0 0-.005.03l.675 1.956a2.03 2.03 0 0 1-1.533 2.656l-2.033.394a.03.03 0 0 0-.023.019l-.741 1.933a2.03 2.03 0 0 1-2.88 1.05l-1.811-1.006a.03.03 0 0 0-.03 0l-1.811 1.005a2.03 2.03 0 0 1-2.88-1.049l-.742-1.933a.03.03 0 0 0-.023-.019l-2.033-.394a2.03 2.03 0 0 1-1.532-2.656l.675-1.957a.03.03 0 0 0-.005-.029l-1.304-1.61a2.03 2.03 0 0 1 .532-3.018l1.776-1.066a.03.03 0 0 0 .014-.026l.035-2.07a2.03 2.03 0 0 1 2.349-1.97l2.045.324a.03.03 0 0 0 .028-.01zm1.516 3.76a.5.5 0 0 0-.447.276l-1.861 3.724H8.483a1 1 0 0 0-1 1v3.5a1 1 0 0 0 1 1h6.692a2 2 0 0 0 1.981-1.73l.341-2.5a2 2 0 0 0-1.982-2.27h-1.939l.197-1.269a1.5 1.5 0 0 0-1.481-1.731z"),
"ArrowBottomOutline" to listOf("m13 17.586 5-5L19.414 14 12 21.414 4.586 14 6 12.586l5 5V3h2z"),
"ArrowTopOutline" to listOf("M19.414 10 18 11.414l-5-5V21h-2V6.414l-5 5L4.586 10 12 2.586z"),
"ChartTrendingUpOutline" to listOf("M22 13h-2V9.414l-7 7-4-4-6 6L1.586 17 9 9.586l4 4L18.586 8H15V6h7z"),
diff --git a/native-views/react-native-native-list/android/src/main/java/com/onekey/nativelist/NativeListView.kt b/native-views/react-native-native-list/android/src/main/java/com/onekey/nativelist/NativeListView.kt
index e19bff6ea..28d1df5d1 100644
--- a/native-views/react-native-native-list/android/src/main/java/com/onekey/nativelist/NativeListView.kt
+++ b/native-views/react-native-native-list/android/src/main/java/com/onekey/nativelist/NativeListView.kt
@@ -4,11 +4,14 @@ import android.animation.TimeInterpolator
import android.graphics.Canvas
import android.graphics.Color
import android.graphics.Paint
+import android.graphics.Path
import android.graphics.RectF
-import android.graphics.drawable.GradientDrawable
+import android.graphics.drawable.ShapeDrawable
+import android.graphics.drawable.shapes.PathShape
import android.os.Bundle
import android.os.Handler
import android.os.Looper
+import android.os.SystemClock
import android.view.HapticFeedbackConstants
import android.view.Choreographer
import android.view.Gravity
@@ -30,6 +33,7 @@ import androidx.recyclerview.widget.LinearSmoothScroller
import androidx.recyclerview.widget.RecyclerView
import androidx.swiperefreshlayout.widget.SwipeRefreshLayout
import com.facebook.react.uimanager.ThemedReactContext
+import com.margelo.nitro.nativelogger.OneKeyLog
import org.json.JSONArray
import org.json.JSONObject
import java.lang.ref.WeakReference
@@ -87,7 +91,11 @@ class NativeListView(
var onVisibleRangeChanged: ((String) -> Unit)? = null
private val density = resources.displayMetrics.density
private val recyclerView = RecyclerView(context)
+ private var configuredTopPaddingPx = 0
+ private var configuredBottomPaddingPx = 0
private val refreshLayout = SwipeRefreshLayout(context)
+ private val refreshIndicatorTravelPx = refreshLayout.progressViewEndOffset
+ private var refreshIndicatorOffsetPx = 0
private val contentContainer = FrameLayout(context)
private val adapter = NativeListAdapter(reactContext)
private val layoutManager = GridLayoutManager(context, 1)
@@ -148,6 +156,9 @@ class NativeListView(
private var dragFrom = RecyclerView.NO_POSITION
private var dragTo = RecyclerView.NO_POSITION
private var pendingReorder: List? = null
+ private var reorderRelayoutActive = false
+ private var reorderRelayoutScheduled = false
+ private var lastReorderRelayoutLogAtMs = 0L
private var sectionIndexEntries: List = emptyList()
private var sectionIndexScrubbing = false
private var sectionIndexProgrammaticScroll = false
@@ -196,27 +207,28 @@ class NativeListView(
contentContainer.addView(
sectionIndexView,
FrameLayout.LayoutParams(
- dp(SECTION_INDEX_RAIL_WIDTH_DP),
+ sectionIndexDp(SECTION_INDEX_RAIL_WIDTH_DP),
FrameLayout.LayoutParams.MATCH_PARENT,
Gravity.END,
),
)
sectionIndexPreview.apply {
gravity = Gravity.CENTER
- textSize = NativeListScale.font(resources, 22f)
- typeface = NativeListFonts.semibold(context)
- visibility = GONE
+ textSize = 30f
+ typeface = NativeListFonts.regular(context)
+ setPadding(0, 0, sectionIndexDp(10), 0)
+ visibility = INVISIBLE
alpha = 0f
importantForAccessibility = IMPORTANT_FOR_ACCESSIBILITY_NO
}
contentContainer.addView(
sectionIndexPreview,
FrameLayout.LayoutParams(
- dp(SECTION_INDEX_PREVIEW_SIZE_DP),
- dp(SECTION_INDEX_PREVIEW_SIZE_DP),
+ sectionIndexDp(SECTION_INDEX_PREVIEW_WIDTH_DP),
+ sectionIndexDp(SECTION_INDEX_PREVIEW_HEIGHT_DP),
Gravity.CENTER_VERTICAL or Gravity.END,
).apply {
- marginEnd = dp(SECTION_INDEX_PREVIEW_END_MARGIN_DP)
+ marginEnd = sectionIndexDp(SECTION_INDEX_PREVIEW_END_MARGIN_DP)
},
)
addView(contentContainer, LayoutParams(LayoutParams.MATCH_PARENT, 0, 1f))
@@ -241,6 +253,11 @@ class NativeListView(
JSONObject().put("actionKey", "nativeList.refresh"),
)
}
+ recyclerView.addOnLayoutChangeListener { _, _, _, _, _, _, _, _, _ ->
+ // OneKey patch: a collapsible pager owns the extra padding above the rows.
+ // Keep the refresh control below that header without moving ordinary lists.
+ updateRefreshIndicatorOffset((recyclerView.paddingTop - configuredTopPaddingPx).coerceAtLeast(0))
+ }
recyclerView.addOnScrollListener(object : RecyclerView.OnScrollListener() {
override fun onScrollStateChanged(recyclerView: RecyclerView, newState: Int) {
@@ -264,6 +281,12 @@ class NativeListView(
override fun onLayout(changed: Boolean, left: Int, top: Int, right: Int, bottom: Int) {
super.onLayout(changed, left, top, right, bottom)
+ val first = config?.items?.firstOrNull()
+ if (recyclerView.isLayoutRequested && (first?.type == "market" || first?.json?.optString("presentation") == "market")) {
+ // A retained Market page can keep cached parent measurements after its diff.
+ // Drain the child's pending layout so its committed rows replace the old cells.
+ relayoutRecyclerViewImmediately()
+ }
val nextWidth = right - left
val nextHeight = bottom - top
if (
@@ -278,6 +301,28 @@ class NativeListView(
performPendingScrollIfNeeded()
}
+ private fun updateRefreshIndicatorOffset(offset: Int) {
+ if (refreshIndicatorOffsetPx == offset) return
+ refreshIndicatorOffsetPx = offset
+ val refreshing = refreshLayout.isRefreshing
+ val start = offset - refreshLayout.progressCircleDiameter
+ refreshLayout.setProgressViewOffset(false, start, start + refreshIndicatorTravelPx)
+ refreshLayout.isRefreshing = refreshing
+ }
+
+ override fun onAttachedToWindow() {
+ super.onAttachedToWindow()
+ val first = config?.items?.firstOrNull()
+ if (recyclerView.isLayoutRequested && (first?.type == "market" || first?.json?.optString("presentation") == "market")) {
+ relayoutContents()
+ }
+ }
+
+ override fun onDetachedFromWindow() {
+ updateRefreshIndicatorOffset(0)
+ super.onDetachedFromWindow()
+ }
+
fun applySnapshot(snapshotJson: String) {
val next = try {
NativeListConfig.parse(snapshotJson)
@@ -318,6 +363,18 @@ class NativeListView(
}
return
}
+ // Keep the first Market row at its current pixel offset when it is
+ // reordered. RecyclerView otherwise follows the previous first key.
+ val marketStartOffset = if (
+ previous?.items?.firstOrNull()?.type == "market" &&
+ next.items.firstOrNull()?.type == "market" &&
+ previous.items.firstOrNull()?.key != next.items.firstOrNull()?.key &&
+ layoutManager.findFirstVisibleItemPosition() == 0
+ ) {
+ layoutManager.findViewByPosition(0)?.let {
+ layoutManager.getDecoratedTop(it) - recyclerView.paddingTop
+ }
+ } else null
config = next
usesSelectorSourceScale = next.items.any { it.usesSelectorSourceScale }
adapter.usesSelectorSourceScale = usesSelectorSourceScale
@@ -330,6 +387,9 @@ class NativeListView(
configureSectionIndex(next)
updateLayout(next)
adapter.submitList(next.items) {
+ if (marketStartOffset != null) {
+ layoutManager.scrollToPositionWithOffset(0, marketStartOffset)
+ }
relayoutContents()
performPendingScrollIfNeeded()
syncSectionIndexToVisibleRows()
@@ -500,9 +560,13 @@ class NativeListView(
}
val nextItems = current.items.toMutableList()
val selected = LinkedHashSet(current.selectedKeys)
+ var marketQuoteOnly = pending.isNotEmpty()
try {
pending.forEach { (index, changes) ->
val previous = nextItems[index]
+ marketQuoteOnly = marketQuoteOnly &&
+ previous.type == "market" &&
+ changes.keys().asSequence().all(MARKET_QUOTE_FIELDS::contains)
val merged = NativeListItem.parse(mergeRow(previous.json, changes))
nextItems[index] = merged
if (changes.has("selected")) {
@@ -512,7 +576,7 @@ class NativeListView(
} catch (_: Exception) {
return
}
- invalidateActionAnchor("snapshot")
+ if (!marketQuoteOnly) invalidateActionAnchor("snapshot")
val next = current.copy(items = nextItems, selectedKeys = selected)
config = next
usesSelectorSourceScale = next.items.any { it.usesSelectorSourceScale }
@@ -843,6 +907,7 @@ class NativeListView(
fun dispose() {
if (disposed) return
+ stopReorderRelayoutLoop()
invalidateActionAnchor("destroy")
actionAnchor = null
disposed = true
@@ -872,11 +937,17 @@ class NativeListView(
val bottomPadding = next.contentPaddingBottom ?: defaultPadding
// OneKey patch: the section index overlays rows and keeps only an accessory-safe inset.
val indexGutter = if (sectionIndexEntries.isEmpty()) 0 else SECTION_INDEX_CONTENT_INSET_DP
+ // A native scroll coordinator may add header insets to this RecyclerView.
+ // Content/theme snapshots must replace only the padding owned by NativeList.
+ val coordinatorTopPadding = (recyclerView.paddingTop - configuredTopPaddingPx).coerceAtLeast(0)
+ val coordinatorBottomPadding = (recyclerView.paddingBottom - configuredBottomPaddingPx).coerceAtLeast(0)
+ configuredTopPaddingPx = dp(topPadding)
+ configuredBottomPaddingPx = dp(bottomPadding)
recyclerView.setPaddingRelative(
dp(horizontalPadding),
- dp(topPadding),
+ configuredTopPaddingPx + coordinatorTopPadding,
dp(horizontalPadding + indexGutter),
- dp(bottomPadding),
+ configuredBottomPaddingPx + coordinatorBottomPadding,
)
recyclerView.clipToPadding = false
recyclerView.isVerticalScrollBarEnabled = sectionIndexEntries.isEmpty()
@@ -907,17 +978,14 @@ class NativeListView(
sectionIndexHapticsEnabled = next.sectionIndexHapticsEnabled
sectionIndexView.configure(
sectionIndexEntries.map { it.title },
- themeColor(next.theme, "secondaryText", "#646464"),
- themeColor(next.theme, "accent", "#108303"),
+ themeColor(next.theme, "disabledText", "#8D8D8D"),
+ themeColor(next.theme, "positive", "#218358"),
themeColor(next.theme, "inverseText", "#FCFCFC"),
next.sectionIndexCenteredInWindow,
)
sectionIndexView.visibility = if (sectionIndexEntries.isEmpty()) GONE else VISIBLE
- sectionIndexPreview.setTextColor(themeColor(next.theme, "inverseText", "#FCFCFC"))
- sectionIndexPreview.background = GradientDrawable().apply {
- setColor(themeColor(next.theme, "inverseBackground", "#202020"))
- cornerRadius = dp(14).toFloat()
- }
+ sectionIndexPreview.setTextColor(Color.WHITE)
+ sectionIndexPreview.background = sectionIndexPreviewBackground()
sectionIndexView.setActiveIndex(
previousKey?.let { key -> sectionIndexEntries.indexOfFirst { it.key == key }.takeIf { it >= 0 } },
)
@@ -938,6 +1006,7 @@ class NativeListView(
if (interacting) {
sectionIndexPreview.animate().cancel()
sectionIndexPreview.text = entry.title
+ positionSectionIndexPreview(index)
sectionIndexPreview.visibility = VISIBLE
sectionIndexPreview.alpha = 1f
if (changed && sectionIndexHapticsEnabled) {
@@ -953,16 +1022,41 @@ class NativeListView(
sectionIndexPreview.animate().cancel()
if (immediately) {
sectionIndexPreview.alpha = 0f
- sectionIndexPreview.visibility = GONE
+ sectionIndexPreview.visibility = INVISIBLE
} else {
sectionIndexPreview.animate()
.alpha(0f)
.setDuration(150)
- .withEndAction { sectionIndexPreview.visibility = GONE }
+ .withEndAction { sectionIndexPreview.visibility = INVISIBLE }
.start()
}
}
+ private fun positionSectionIndexPreview(index: Int) {
+ val halfHeight = sectionIndexDp(SECTION_INDEX_PREVIEW_HEIGHT_DP) / 2f
+ val maximumY = (contentContainer.height - halfHeight).coerceAtLeast(halfHeight)
+ val targetY = sectionIndexView.top + sectionIndexView.centerYForIndex(index)
+ val clampedY = targetY.coerceIn(halfHeight, maximumY)
+ sectionIndexPreview.translationY = clampedY - contentContainer.height / 2f
+ }
+
+ private fun sectionIndexPreviewBackground(): ShapeDrawable {
+ val path = Path().apply {
+ moveTo(25f, 0f)
+ cubicTo(11f, 0f, 0f, 11f, 0f, 25f)
+ cubicTo(0f, 39f, 11f, 50f, 25f, 50f)
+ cubicTo(36f, 50f, 43f, 44f, 46f, 37.5f)
+ lineTo(60f, 25f)
+ lineTo(46f, 12.5f)
+ cubicTo(43f, 6f, 36f, 0f, 25f, 0f)
+ close()
+ }
+ return ShapeDrawable(PathShape(path, 60f, 50f)).apply {
+ paint.color = Color.rgb(194, 194, 194)
+ paint.isAntiAlias = true
+ }
+ }
+
private fun syncSectionIndexToVisibleRows() {
if (sectionIndexScrubbing || sectionIndexProgrammaticScroll || sectionIndexEntries.isEmpty()) return
val firstVisible = layoutManager.findFirstVisibleItemPosition()
@@ -1004,6 +1098,7 @@ class NativeListView(
updateSelection(NativeSelectionTarget("row", item.key), item.key)
} else {
val actionKey = when {
+ item.type == "market" && item.json.optString("pressActionKey").isNotEmpty() -> item.json.optString("pressActionKey")
item.type == "action" -> item.json.optString("actionKey")
item.type == "system" && item.json.optString("variant") == "retry" -> item.json.optString("actionKey")
else -> "press"
@@ -1061,7 +1156,12 @@ class NativeListView(
.put("source", origin.source)
.put("generation", generation)
.put("layoutDirection", if (origin.sourceView.layoutDirection == LAYOUT_DIRECTION_RTL) "rtl" else "ltr")
- .also { anchor -> origin.slot?.let { anchor.put("slot", it) } }
+ .also { anchor ->
+ origin.slot?.let { anchor.put("slot", it) }
+ origin.windowPointPixels?.let { point ->
+ anchor.put("windowPoint", JSONObject().put("x", point.x / density).put("y", point.y / density))
+ }
+ }
}
private fun isOriginValid(origin: NativeListActionOrigin): Boolean =
@@ -1211,6 +1311,7 @@ class NativeListView(
}
private fun updateReordering(next: NativeListConfig) {
+ stopReorderRelayoutLoop()
reorderTouchHandler?.removeCallbacksAndMessages(null)
reorderTouchHandler = null
reorderTouchListener?.let(recyclerView::removeOnItemTouchListener)
@@ -1225,6 +1326,48 @@ class NativeListView(
) {
private var compactWalletGroupDrag = false
private var compactWalletGroupTop = Float.NaN
+ private var dragType: String? = null
+ private var dragStartedAtMs = 0L
+ private var lastAutoScrollLogAtMs = 0L
+ private var lastDragFrameLogAtMs = 0L
+ private var lastMoveAttemptLogAtMs = 0L
+ private var lastMoveAttemptSignature = ""
+ private var latestDragDx = 0f
+ private var latestDragDy = 0f
+
+ private fun logMoveAttempt(
+ recyclerView: RecyclerView,
+ from: Int,
+ to: Int,
+ fromItem: NativeListItem?,
+ toItem: NativeListItem?,
+ outcome: String,
+ targetTop: Int,
+ targetBottom: Int,
+ ) {
+ val now = SystemClock.uptimeMillis()
+ val signature = "$from:$to:$outcome"
+ if (
+ signature == lastMoveAttemptSignature &&
+ now - lastMoveAttemptLogAtMs < REORDER_MOVE_ATTEMPT_LOG_INTERVAL_MS
+ ) {
+ return
+ }
+ lastMoveAttemptSignature = signature
+ lastMoveAttemptLogAtMs = now
+ OneKeyLog.info(
+ REORDER_LOG_TAG,
+ "moveAttempt outcome=$outcome from=$from to=$to " +
+ "fromType=${fromItem?.type.orEmpty()} toType=${toItem?.type.orEmpty()} " +
+ "fromReorderable=${fromItem?.isReorderable} toReorderable=${toItem?.isReorderable} " +
+ "sameSection=${fromItem != null && toItem != null && fromItem.sectionKey == toItem.sectionKey} " +
+ "elapsedDragMs=${now - dragStartedAtMs} " +
+ "scrollOffset=${recyclerView.computeVerticalScrollOffset()} " +
+ "targetTop=$targetTop targetBottom=$targetBottom " +
+ "viewportTop=${recyclerView.paddingTop} " +
+ "viewportBottom=${recyclerView.height - recyclerView.paddingBottom}",
+ )
+ }
override fun isLongPressDragEnabled(): Boolean = false
@@ -1236,6 +1379,23 @@ class NativeListView(
reorderPlaceholderDecoration.position = position
reorderPlaceholderDecoration.color = reorderActiveBackground(next.theme)
compactWalletGroupDrag = item?.type == "walletGroup" && viewHolder != null
+ dragType = item?.type
+ dragStartedAtMs = SystemClock.uptimeMillis()
+ lastAutoScrollLogAtMs = 0L
+ lastDragFrameLogAtMs = 0L
+ lastMoveAttemptLogAtMs = 0L
+ lastMoveAttemptSignature = ""
+ latestDragDx = 0f
+ latestDragDy = 0f
+ startReorderRelayoutLoop()
+ OneKeyLog.info(
+ REORDER_LOG_TAG,
+ "start type=${dragType.orEmpty()} position=$position " +
+ "compact=$compactWalletGroupDrag itemHeight=${viewHolder?.itemView?.height ?: -1} " +
+ "viewport=${recyclerView.width}x${recyclerView.height} " +
+ "padding=${recyclerView.paddingLeft},${recyclerView.paddingTop}," +
+ "${recyclerView.paddingRight},${recyclerView.paddingBottom} density=$density",
+ )
recyclerView.invalidate()
(viewHolder as? NativeListViewHolder)?.rowView?.setReorderActive(true)
if (compactWalletGroupDrag && viewHolder != null) {
@@ -1263,22 +1423,63 @@ class NativeListView(
val from = source.bindingAdapterPosition
val to = target.bindingAdapterPosition
val base = pendingReorder ?: adapter.currentList
- val fromItem = base.getOrNull(from) ?: return false
- val toItem = base.getOrNull(to) ?: return false
- if (!fromItem.isReorderable || !toItem.isReorderable || fromItem.sectionKey != toItem.sectionKey) return false
+ val fromItem = base.getOrNull(from)
+ val toItem = base.getOrNull(to)
+ val targetTop = layoutManager.getDecoratedTop(target.itemView)
+ val targetBottom = layoutManager.getDecoratedBottom(target.itemView)
+ val targetClipped =
+ next.orientation != "horizontal" &&
+ from != RecyclerView.NO_POSITION &&
+ to != RecyclerView.NO_POSITION &&
+ when {
+ to > from -> targetBottom > recyclerView.height - recyclerView.paddingBottom
+ to < from -> targetTop < recyclerView.paddingTop
+ else -> false
+ }
+ val outcome = when {
+ fromItem == null -> "missingSource"
+ toItem == null -> "missingTarget"
+ !fromItem.isReorderable -> "sourceNotReorderable"
+ !toItem.isReorderable -> "targetNotReorderable"
+ fromItem.sectionKey != toItem.sectionKey -> "sectionMismatch"
+ targetClipped -> "targetClipped"
+ else -> "accepted"
+ }
+ logMoveAttempt(recyclerView, from, to, fromItem, toItem, outcome, targetTop, targetBottom)
+ if (outcome != "accepted" || fromItem == null || toItem == null) return false
val crossedPosition = dragTo != to
if (dragFrom == RecyclerView.NO_POSITION) dragFrom = from
dragTo = to
if (crossedPosition) {
recyclerView.performHapticFeedback(HapticFeedbackConstants.CLOCK_TICK)
+ OneKeyLog.info(
+ REORDER_LOG_TAG,
+ "move type=${dragType.orEmpty()} from=$from to=$to " +
+ "scrollOffset=${recyclerView.computeVerticalScrollOffset()} " +
+ "dragDx=$latestDragDx dragDy=$latestDragDy",
+ )
}
val displacedView = target.itemView
prepareDisplacedReorderAnimation(displacedView)
- val reordered = adapter.moveReordered(from, to) ?: return false
+ val reordered = adapter.moveReordered(from, to)
+ if (reordered == null) {
+ logMoveAttempt(
+ recyclerView,
+ from,
+ to,
+ fromItem,
+ toItem,
+ "adapterRejected",
+ targetTop,
+ targetBottom,
+ )
+ return false
+ }
pendingReorder = reordered
reorderPlaceholderDecoration.position = to
recyclerView.invalidate()
- recyclerView.postOnAnimation(::relayoutRecyclerViewImmediately)
+ // OneKey patch: the drag-scoped loop handles deferred nested RecyclerView layouts.
+ // recyclerView.postOnAnimation(::relayoutRecyclerViewImmediately)
return true
}
@@ -1294,11 +1495,40 @@ class NativeListView(
isCurrentlyActive: Boolean,
) {
if (actionState == ItemTouchHelper.ACTION_STATE_DRAG) {
+ latestDragDx = dX
+ latestDragDy = dY
if (compactWalletGroupDrag) {
compactWalletGroupTop = viewHolder.itemView.top + dY
}
}
super.onChildDraw(canvas, recyclerView, viewHolder, dX, dY, actionState, isCurrentlyActive)
+ if (actionState == ItemTouchHelper.ACTION_STATE_DRAG) {
+ val now = SystemClock.uptimeMillis()
+ if (
+ lastDragFrameLogAtMs == 0L ||
+ now - lastDragFrameLogAtMs >= REORDER_DRAG_FRAME_LOG_INTERVAL_MS
+ ) {
+ lastDragFrameLogAtMs = now
+ val itemView = viewHolder.itemView
+ val visualTop = itemView.top + dY
+ val visualBottom = itemView.bottom + dY
+ OneKeyLog.info(
+ REORDER_LOG_TAG,
+ "frame position=${viewHolder.bindingAdapterPosition} active=$isCurrentlyActive " +
+ "dragDx=$dX dragDy=$dY itemTop=${itemView.top} itemBottom=${itemView.bottom} " +
+ "translationY=${itemView.translationY} visualTop=$visualTop visualBottom=$visualBottom " +
+ "viewportTop=${recyclerView.paddingTop} " +
+ "viewportBottom=${recyclerView.height - recyclerView.paddingBottom} " +
+ "firstVisible=${layoutManager.findFirstVisibleItemPosition()} " +
+ "lastVisible=${layoutManager.findLastVisibleItemPosition()} " +
+ "canScrollUp=${recyclerView.canScrollVertically(-1)} " +
+ "canScrollDown=${recyclerView.canScrollVertically(1)} " +
+ "scrollOffset=${recyclerView.computeVerticalScrollOffset()} " +
+ "layoutRequested=${recyclerView.isLayoutRequested} " +
+ "computingLayout=${recyclerView.isComputingLayout}",
+ )
+ }
+ }
}
override fun interpolateOutOfBoundsScroll(
@@ -1308,35 +1538,60 @@ class NativeListView(
totalSize: Int,
msSinceStartScroll: Long,
): Int {
- if (!compactWalletGroupDrag) {
- return super.interpolateOutOfBoundsScroll(
- recyclerView,
- viewSize,
- viewSizeOutOfBounds,
- totalSize,
- msSinceStartScroll,
- )
- }
- if (compactWalletGroupTop.isNaN()) return 0
- val compactHeight = dp(68)
- val compactTop = compactWalletGroupTop.roundToInt()
- val compactOutOfBounds = when {
- compactTop < recyclerView.paddingTop -> compactTop - recyclerView.paddingTop
- compactTop + compactHeight > recyclerView.height - recyclerView.paddingBottom ->
- compactTop + compactHeight - (recyclerView.height - recyclerView.paddingBottom)
- else -> 0
+ val effectiveViewSize: Int
+ val effectiveOutOfBounds: Int
+ if (compactWalletGroupDrag) {
+ if (compactWalletGroupTop.isNaN()) return 0
+ effectiveViewSize = dp(68)
+ val compactTop = compactWalletGroupTop.roundToInt()
+ effectiveOutOfBounds = when {
+ compactTop < recyclerView.paddingTop -> compactTop - recyclerView.paddingTop
+ compactTop + effectiveViewSize > recyclerView.height - recyclerView.paddingBottom ->
+ compactTop + effectiveViewSize - (recyclerView.height - recyclerView.paddingBottom)
+ else -> 0
+ }
+ if (effectiveOutOfBounds == 0) return 0
+ } else {
+ effectiveViewSize = viewSize
+ effectiveOutOfBounds = viewSizeOutOfBounds
}
- if (compactOutOfBounds == 0) return 0
- return super.interpolateOutOfBoundsScroll(
+ // OneKey patch: warm-start AndroidX's two-second quintic edge-scroll ramp.
+ val acceleratedElapsedOutMs =
+ msSinceStartScroll + REORDER_AUTOSCROLL_ACCELERATION_OFFSET_MS
+ val result = super.interpolateOutOfBoundsScroll(
recyclerView,
- compactHeight,
- compactOutOfBounds,
+ effectiveViewSize,
+ effectiveOutOfBounds,
totalSize,
- msSinceStartScroll,
+ // msSinceStartScroll,
+ acceleratedElapsedOutMs,
)
+ val now = SystemClock.uptimeMillis()
+ if (
+ lastAutoScrollLogAtMs == 0L ||
+ now - lastAutoScrollLogAtMs >= REORDER_AUTOSCROLL_LOG_INTERVAL_MS
+ ) {
+ lastAutoScrollLogAtMs = now
+ OneKeyLog.info(
+ REORDER_LOG_TAG,
+ "autoScroll type=${dragType.orEmpty()} " +
+ "compact=$compactWalletGroupDrag rawViewSize=$viewSize " +
+ "effectiveViewSize=$effectiveViewSize rawOut=$viewSizeOutOfBounds " +
+ "effectiveOut=$effectiveOutOfBounds totalSize=$totalSize " +
+ "elapsedOutMs=$msSinceStartScroll " +
+ "acceleratedElapsedOutMs=$acceleratedElapsedOutMs " +
+ "elapsedDragMs=${now - dragStartedAtMs} " +
+ "resultPx=$result scrollOffset=${recyclerView.computeVerticalScrollOffset()} " +
+ "canScrollUp=${recyclerView.canScrollVertically(-1)} " +
+ "canScrollDown=${recyclerView.canScrollVertically(1)} " +
+ "dragDx=$latestDragDx dragDy=$latestDragDy compactTop=$compactWalletGroupTop",
+ )
+ }
+ return result
}
override fun clearView(recyclerView: RecyclerView, viewHolder: RecyclerView.ViewHolder) {
+ stopReorderRelayoutLoop()
val rowView = (viewHolder as? NativeListViewHolder)?.rowView
val draggedGroupKey = (rowView?.tag as? NativeListItem)?.key
super.clearView(recyclerView, viewHolder)
@@ -1349,6 +1604,18 @@ class NativeListView(
val from = dragFrom
val to = dragTo
val reordered = pendingReorder
+ OneKeyLog.info(
+ REORDER_LOG_TAG,
+ "end type=${dragType.orEmpty()} from=$from to=$to " +
+ "compact=$wasCompactWalletGroupDrag elapsedDragMs=" +
+ "${SystemClock.uptimeMillis() - dragStartedAtMs} " +
+ "scrollOffset=${recyclerView.computeVerticalScrollOffset()} " +
+ "dragDx=$latestDragDx dragDy=$latestDragDy " +
+ "firstVisible=${layoutManager.findFirstVisibleItemPosition()} " +
+ "lastVisible=${layoutManager.findLastVisibleItemPosition()} " +
+ "canScrollUp=${recyclerView.canScrollVertically(-1)} " +
+ "canScrollDown=${recyclerView.canScrollVertically(1)}",
+ )
var reorderPayload: JSONObject? = null
val destinationPosition = if (to != RecyclerView.NO_POSITION) {
to
@@ -1404,6 +1671,7 @@ class NativeListView(
dragFrom = RecyclerView.NO_POSITION
dragTo = RecyclerView.NO_POSITION
pendingReorder = null
+ dragType = null
// The gesture is committed now; a later snapshot may supersede its async diff.
reorderPayload?.let { emit(REORDER, it) }
}
@@ -1600,6 +1868,53 @@ class NativeListView(
}
}
+ private fun startReorderRelayoutLoop() {
+ reorderRelayoutActive = true
+ lastReorderRelayoutLogAtMs = 0L
+ scheduleReorderRelayout()
+ }
+
+ private fun stopReorderRelayoutLoop() {
+ reorderRelayoutActive = false
+ }
+
+ private fun scheduleReorderRelayout() {
+ if (!reorderRelayoutActive || reorderRelayoutScheduled) return
+ reorderRelayoutScheduled = true
+ recyclerView.postOnAnimation {
+ reorderRelayoutScheduled = false
+ if (
+ !reorderRelayoutActive ||
+ disposed ||
+ recyclerView.width <= 0 ||
+ recyclerView.height <= 0
+ ) {
+ return@postOnAnimation
+ }
+ val requestedBefore = recyclerView.isLayoutRequested
+ val computingBefore = recyclerView.isComputingLayout
+ if (requestedBefore && !computingBefore) {
+ relayoutRecyclerViewImmediately()
+ }
+ val requestedAfter = recyclerView.isLayoutRequested
+ val now = SystemClock.uptimeMillis()
+ if (
+ (requestedBefore || computingBefore || requestedAfter) &&
+ (lastReorderRelayoutLogAtMs == 0L ||
+ now - lastReorderRelayoutLogAtMs >= REORDER_RELAYOUT_LOG_INTERVAL_MS)
+ ) {
+ lastReorderRelayoutLogAtMs = now
+ OneKeyLog.info(
+ REORDER_LOG_TAG,
+ "relayout requestedBefore=$requestedBefore computingBefore=$computingBefore " +
+ "requestedAfter=$requestedAfter computingAfter=${recyclerView.isComputingLayout} " +
+ "scrollOffset=${recyclerView.computeVerticalScrollOffset()}",
+ )
+ }
+ scheduleReorderRelayout()
+ }
+ }
+
private fun relayoutRecyclerViewImmediately() {
if (disposed || recyclerView.isComputingLayout || recyclerView.width <= 0 || recyclerView.height <= 0) {
return
@@ -1619,10 +1934,20 @@ class NativeListView(
private fun dp(value: Int): Int = if (usesSelectorSourceScale) (value * resources.displayMetrics.density).roundToInt() else NativeListScale.dp(resources, value)
+ private fun sectionIndexDp(value: Int): Int = (value * density).roundToInt()
+
companion object {
+ private val MARKET_QUOTE_FIELDS = setOf(
+ "revision",
+ "price",
+ "priceSegments",
+ "change",
+ "accessibilityLabel",
+ )
private const val SECTION_INDEX_CONTENT_INSET_DP = 16
private const val SECTION_INDEX_RAIL_WIDTH_DP = 32
- private const val SECTION_INDEX_PREVIEW_SIZE_DP = 48
+ private const val SECTION_INDEX_PREVIEW_WIDTH_DP = 60
+ private const val SECTION_INDEX_PREVIEW_HEIGHT_DP = 50
private const val SECTION_INDEX_PREVIEW_END_MARGIN_DP = 40
private const val REORDER_LONG_PRESS_MS = 200L
private const val REORDER_ALLOWABLE_MOVEMENT_DP = 10
@@ -1632,6 +1957,12 @@ class NativeListView(
private const val REORDER_SPRING_STIFFNESS = 400.0
private const val REORDER_SPRING_MASS = 0.4
private const val REORDER_SPRING_DURATION_MS = 300L
+ private const val REORDER_AUTOSCROLL_ACCELERATION_OFFSET_MS = 1_500L
+ private const val REORDER_AUTOSCROLL_LOG_INTERVAL_MS = 100L
+ private const val REORDER_DRAG_FRAME_LOG_INTERVAL_MS = 100L
+ private const val REORDER_MOVE_ATTEMPT_LOG_INTERVAL_MS = 250L
+ private const val REORDER_RELAYOUT_LOG_INTERVAL_MS = 100L
+ private const val REORDER_LOG_TAG = "NativeListReorder"
private const val ROW_ACTION = "rowAction"
private const val ACTION_ANCHOR_INVALIDATED = "actionAnchorInvalidated"
private const val SELECTION_DELTA = "selectionDelta"
@@ -1715,11 +2046,11 @@ private class NativeListSectionIndexView(
private val activeBackgroundPaint = Paint(Paint.ANTI_ALIAS_FLAG)
private val normalPaint = Paint(Paint.ANTI_ALIAS_FLAG).apply {
textAlign = Paint.Align.CENTER
- typeface = NativeListFonts.medium(context)
+ typeface = NativeListFonts.regular(context)
}
private val activePaint = Paint(Paint.ANTI_ALIAS_FLAG).apply {
textAlign = Paint.Align.CENTER
- typeface = NativeListFonts.semibold(context)
+ typeface = NativeListFonts.medium(context)
}
init {
@@ -1756,40 +2087,27 @@ private class NativeListSectionIndexView(
override fun onDraw(canvas: Canvas) {
super.onDraw(canvas)
if (titles.isEmpty()) return
- val cellHeight = cellHeight()
- val originY = indexOriginY(cellHeight, titles.size)
- val textSize = NativeListScale.font(resources, 10f) * resources.displayMetrics.scaledDensity
+ val metrics = indexMetrics()
+ val visibleIndices = visibleLabelIndices(metrics.trackHeight)
+ val textSize = 10f * resources.displayMetrics.scaledDensity
+ val centerX = width - dp(10f)
+ val badgeRadius = dp(7f)
normalPaint.color = normalColor
normalPaint.textSize = textSize
activePaint.color = activeColor
activePaint.textSize = textSize
- titles.forEachIndexed { index, title ->
+ visibleIndices.forEachIndexed { visibleIndex, index ->
+ val title = titles[index]
val active = index == activeIndex
val paint = if (active) activePaint else normalPaint
- val centerY = originY + cellHeight * (index + 0.5f)
- if (active && cellHeight >= NativeListScale.dp(resources, 12f)) {
- val badgeWidth = NativeListScale.dp(resources, 20f)
- val badgeHeight = minOf(cellHeight, NativeListScale.dp(resources, 16f))
+ val centerY = visibleLabelCenterY(visibleIndex, visibleIndices.size, metrics)
+ if (active) {
activeBackgroundPaint.color = activeColor
- canvas.drawRoundRect(
- width / 2f - badgeWidth / 2f,
- centerY - badgeHeight / 2f,
- width / 2f + badgeWidth / 2f,
- centerY + badgeHeight / 2f,
- badgeHeight / 2f,
- badgeHeight / 2f,
- activeBackgroundPaint,
- )
- }
- paint.color = if (active && cellHeight >= NativeListScale.dp(resources, 12f)) {
- activeTextColor
- } else if (active) {
- activeColor
- } else {
- normalColor
+ canvas.drawCircle(centerX, centerY, badgeRadius, activeBackgroundPaint)
}
+ paint.color = if (active) activeTextColor else normalColor
val baseline = centerY - (paint.descent() + paint.ascent()) / 2f
- canvas.drawText(title, width / 2f, baseline, paint)
+ canvas.drawText(title, centerX, baseline, paint)
}
}
@@ -1864,9 +2182,14 @@ private class NativeListSectionIndexView(
}
private fun selectAt(y: Float, interacting: Boolean) {
- val cellHeight = cellHeight()
- val originY = indexOriginY(cellHeight, titles.size)
- val index = ((y - originY) / cellHeight).toInt().coerceIn(0, titles.lastIndex)
+ val metrics = indexMetrics()
+ if (metrics.trackHeight <= 0f) return
+ val visibleIndices = visibleLabelIndices(metrics.trackHeight).sorted()
+ val visibleTrackHeight = minOf(metrics.trackHeight, dp(16f) * visibleIndices.size)
+ val visibleOriginY = metrics.originY + (metrics.trackHeight - visibleTrackHeight) / 2f
+ val progress = ((y - visibleOriginY) / visibleTrackHeight).coerceIn(0f, 1f)
+ val slot = (progress * visibleIndices.size).toInt().coerceIn(0, visibleIndices.lastIndex)
+ val index = visibleIndices[slot]
if (interacting && lastTouchIndex == index) return
lastTouchIndex = index.takeIf { interacting }
select(index, interacting)
@@ -1877,29 +2200,60 @@ private class NativeListSectionIndexView(
setActiveIndex(index)
}
- private fun cellHeight(): Float =
- (height.toFloat() / titles.size.coerceAtLeast(1))
- .coerceAtMost(NativeListScale.dp(resources, 16f))
- .coerceAtLeast(1f)
+ fun centerYForIndex(index: Int): Float = entryCenterY(index, indexMetrics())
+
+ private data class Metrics(val originY: Float, val trackHeight: Float)
- private fun indexOriginY(cellHeight: Float, count: Int): Float {
- val totalHeight = cellHeight * count
- val centeredOriginY = (height - totalHeight) / 2f
- if (!centeredInWindow || !isAttachedToWindow) return centeredOriginY
+ private fun indexMetrics(): Metrics {
+ if (titles.isEmpty()) return Metrics(height / 2f, 0f)
+ val edgePadding = dp(8f)
+ val labelSpacing = dp(16f)
+ val availableHeight = (height - edgePadding * 2f).coerceAtLeast(0f)
+ val trackHeight = minOf(availableHeight, labelSpacing * titles.size)
+ val centeredOriginY = (height - trackHeight) / 2f
+ if (!centeredInWindow || !isAttachedToWindow) {
+ return Metrics(centeredOriginY, trackHeight)
+ }
val systemBarInsets = ViewCompat.getRootWindowInsets(rootView)
?.getInsetsIgnoringVisibility(
WindowInsetsCompat.Type.systemBars() or WindowInsetsCompat.Type.displayCutout(),
- ) ?: return centeredOriginY
+ ) ?: return Metrics(centeredOriginY, trackHeight)
rootView.getLocationOnScreen(rootLocationOnScreen)
getLocationOnScreen(locationOnScreen)
val safeTop = rootLocationOnScreen[1] + systemBarInsets.top
val safeBottom = rootLocationOnScreen[1] + rootView.height - systemBarInsets.bottom
- if (safeBottom <= safeTop) return centeredOriginY
+ if (safeBottom <= safeTop) return Metrics(centeredOriginY, trackHeight)
val localCenterY = (safeTop + safeBottom) / 2f - locationOnScreen[1]
- return (localCenterY - totalHeight / 2f)
- .coerceIn(0f, (height - totalHeight).coerceAtLeast(0f))
+ val maximumOrigin = (height - edgePadding - trackHeight).coerceAtLeast(edgePadding)
+ return Metrics(
+ (localCenterY - trackHeight / 2f).coerceIn(edgePadding, maximumOrigin),
+ trackHeight,
+ )
+ }
+
+ private fun entryCenterY(index: Int, metrics: Metrics): Float {
+ if (titles.isEmpty()) return height / 2f
+ return metrics.originY + metrics.trackHeight * (index + 0.5f) / titles.size
+ }
+
+ private fun visibleLabelCenterY(visibleIndex: Int, visibleCount: Int, metrics: Metrics): Float {
+ val visibleTrackHeight = minOf(metrics.trackHeight, dp(16f) * visibleCount)
+ val visibleOriginY = metrics.originY + (metrics.trackHeight - visibleTrackHeight) / 2f
+ return visibleOriginY + visibleTrackHeight * (visibleIndex + 0.5f) / visibleCount.coerceAtLeast(1)
}
+ private fun visibleLabelIndices(trackHeight: Float): Set {
+ if (titles.isEmpty()) return emptySet()
+ val maxVisible = max(1, (trackHeight / dp(16f)).toInt())
+ if (titles.size <= maxVisible) return titles.indices.toSet()
+ if (maxVisible == 1) return setOf(0)
+ return (0 until maxVisible).mapTo(mutableSetOf()) { slot ->
+ (slot.toFloat() * titles.lastIndex / (maxVisible - 1)).roundToInt()
+ }
+ }
+
+ private fun dp(value: Float): Float = value * resources.displayMetrics.density
+
private fun updateContentDescription() {
contentDescription = activeIndex?.let { titles.getOrNull(it) }
?.let { "$ACCESSIBILITY_LABEL, $it" }
diff --git a/native-views/react-native-native-list/ios/NativeListCell.swift b/native-views/react-native-native-list/ios/NativeListCell.swift
index 81836fa7e..de1274d71 100644
--- a/native-views/react-native-native-list/ios/NativeListCell.swift
+++ b/native-views/react-native-native-list/ios/NativeListCell.swift
@@ -4,6 +4,73 @@ import CoreText
import OneKeyImage
import UIKit
+// Market/TokenListSkeleton: source geometry and the native Skeleton's 3s shimmer.
+private final class NativeListMarketSkeleton: UIView {
+ private let marks = (0..<5).map { _ in UIView() }
+ private let gradients = (0..<5).map { _ in CAGradientLayer() }
+
+ init(background: UIColor) {
+ super.init(frame: .zero)
+ var white: CGFloat = 1
+ background.getWhite(&white, alpha: nil)
+ let base = UIColor(nativeListHex: white < 0.5 ? "#111111" : "#FAFAFA", fallback: .white)
+ let highlight = UIColor(nativeListHex: white < 0.5 ? "#333333" : "#CDCDCD", fallback: .lightGray)
+ for (index, mark) in marks.enumerated() {
+ mark.backgroundColor = base
+ mark.clipsToBounds = true
+ mark.layer.cornerRadius = index == 0 ? 16 : 8
+ let gradient = gradients[index]
+ gradient.cornerRadius = mark.layer.cornerRadius
+ gradient.colors = [base.cgColor, highlight.cgColor, base.cgColor]
+ gradient.locations = [0, 0.5, 1]
+ gradient.startPoint = CGPoint(x: 0, y: 0.5)
+ gradient.endPoint = CGPoint(x: 1, y: 0.5)
+ mark.layer.addSublayer(gradient)
+ addSubview(mark)
+ }
+ }
+
+ required init?(coder: NSCoder) { fatalError("init(coder:) has not been implemented") }
+
+ override func layoutSubviews() {
+ super.layoutSubviews()
+ let frames = [
+ CGRect(x: 0, y: 0, width: 32, height: 32),
+ CGRect(x: 44, y: 0, width: 80, height: 16),
+ CGRect(x: 44, y: 20, width: 60, height: 12),
+ CGRect(x: bounds.width - 168, y: 7, width: 80, height: 18),
+ CGRect(x: bounds.width - 80, y: 7, width: 80, height: 18),
+ ]
+ CATransaction.begin()
+ CATransaction.setDisableActions(true)
+ for (index, frame) in frames.enumerated() {
+ marks[index].frame = frame
+ gradients[index].frame = marks[index].bounds
+ }
+ CATransaction.commit()
+ updateAnimation()
+ }
+
+ override func didMoveToWindow() {
+ super.didMoveToWindow()
+ updateAnimation()
+ }
+
+ private func updateAnimation() {
+ for gradient in gradients {
+ guard window != nil else { gradient.removeAllAnimations(); continue }
+ guard gradient.bounds.width > 0, gradient.animation(forKey: "shimmer") == nil else { continue }
+ let animation = CABasicAnimation(keyPath: "transform.translation.x")
+ animation.fromValue = -gradient.bounds.width
+ animation.toValue = gradient.bounds.width
+ animation.duration = 3
+ animation.repeatCount = .infinity
+ animation.timingFunction = CAMediaTimingFunction(name: .linear)
+ gradient.add(animation, forKey: "shimmer")
+ }
+ }
+}
+
final class NativeListActionOrigin {
weak var sourceView: UIView?
weak var ownerCell: NativeListCell?
@@ -12,6 +79,7 @@ final class NativeListActionOrigin {
let slot: Int?
// OneKey patch: expose the layout slot while preserving the larger hit target.
let anchorInset: CGFloat
+ var windowPoint: CGPoint?
init(
sourceView: UIView,
@@ -36,13 +104,17 @@ private final class NativeListAccessoryButton: UIButton {
didSet { invalidateIntrinsicContentSize(); setNeedsLayout() }
}
+ var marketLineHeight: CGFloat? {
+ didSet { invalidateIntrinsicContentSize(); setNeedsLayout() }
+ }
+
private var sourcePixelScale: CGFloat {
max(1, window?.screen.scale ?? traitCollection.displayScale)
}
override var intrinsicContentSize: CGSize {
var size = super.intrinsicContentSize
- guard selectorSummaryLineHeight != nil, let title = attributedTitle(for: .normal) else { return size }
+ guard selectorSummaryLineHeight != nil || marketLineHeight != nil, let title = attributedTitle(for: .normal) else { return size }
let width = title.boundingRect(
with: CGSize(width: CGFloat.greatestFiniteMagnitude, height: CGFloat.greatestFiniteMagnitude),
options: [.usesLineFragmentOrigin, .usesFontLeading],
@@ -54,6 +126,21 @@ private final class NativeListAccessoryButton: UIButton {
override func layoutSubviews() {
super.layoutSubviews()
+ if let lineHeight = marketLineHeight, let titleLabel, let title = attributedTitle(for: .normal) {
+ let measured = title.boundingRect(
+ with: CGSize(width: CGFloat.greatestFiniteMagnitude, height: CGFloat.greatestFiniteMagnitude),
+ options: [.usesLineFragmentOrigin, .usesFontLeading], context: nil
+ ).width
+ let width = min(bounds.width, ceil(measured * sourcePixelScale) / sourcePixelScale)
+ let x = contentHorizontalAlignment == .trailing ? bounds.width - width
+ : contentHorizontalAlignment == .leading ? 0 : (bounds.width - width) / 2
+ titleLabel.frame = CGRect(
+ x: floor(x * sourcePixelScale) / sourcePixelScale,
+ y: (bounds.height - lineHeight) / 2,
+ width: width, height: lineHeight
+ )
+ return
+ }
guard let lineHeight = selectorSummaryLineHeight, let titleLabel else { return }
// OneKey patch: position the final source line box after UIKit has measured the button.
let top = ceil((bounds.height - lineHeight) / 2 * sourcePixelScale) / sourcePixelScale
@@ -357,11 +444,18 @@ final class NativeListCell: UICollectionViewCell {
private let titleRowStack = UIStackView()
private let titleLabel = NativeListDottedUnderlineLabel()
private let subtitleLabel = UILabel()
+ // OneKey patch: keep Market name and volume in independent line boxes.
+ private let marketSubtitleStack = UIStackView()
+ private let marketSubtitleSpacer = UIView()
private let tertiaryLabel = UILabel()
private let statusLabel = NativeListInsetLabel()
private let metricSubtitleLabel = UILabel()
private let metricCompositeStack = UIStackView()
private let badgeLabel = NativeListInsetLabel()
+ // OneKey patch: reuse the existing explicit line-box layout for styled Market badges.
+ // private let marketBadgeButtons = (0..<3).map { _ in UIButton(type: .system) }
+ private let marketBadgeButtons = (0..<3).map { _ in NativeListAccessoryButton(type: .system) }
+ private let marketBadgeImages = (0..<3).map { _ in OneKeyImageReusableView(frame: .zero) }
private let actionStack = UIStackView()
private let actionButtons = (0..<3).map { _ in UIButton(type: .system) }
private let trailingStack = UIStackView()
@@ -412,6 +506,7 @@ final class NativeListCell: UICollectionViewCell {
private var boundCheckboxData: [String: Any]?
private var boundCheckboxTarget: NativeSelectionTarget?
private var leadingActionKey: String?
+ private var marketBadgeActionKeys: [String?] = []
private var restingBackgroundColor: UIColor = .clear
private var pressedBackgroundColor = UIColor(
nativeListHex: "#E8E8E8",
@@ -612,6 +707,23 @@ final class NativeListCell: UICollectionViewCell {
titleRowStack.setContentCompressionResistancePriority(.defaultHigh, for: .horizontal)
titleRowStack.addArrangedSubview(titleLabel)
titleRowStack.addArrangedSubview(badgeLabel)
+ marketBadgeButtons.enumerated().forEach { index, button in
+ button.tag = index
+ button.addTarget(self, action: #selector(marketBadgePressed(_:)), for: .touchUpInside)
+ button.titleLabel?.font = nativeListFont(ofSize: 11, weight: .medium)
+ button.layer.cornerRadius = 4
+ button.clipsToBounds = true
+ let image = marketBadgeImages[index]
+ image.isUserInteractionEnabled = false
+ image.translatesAutoresizingMaskIntoConstraints = false
+ button.addSubview(image)
+ NSLayoutConstraint.activate([
+ image.centerYAnchor.constraint(equalTo: button.centerYAnchor),
+ image.widthAnchor.constraint(equalToConstant: 14),
+ image.heightAnchor.constraint(equalToConstant: 14),
+ ])
+ titleRowStack.addArrangedSubview(button)
+ }
titleLabel.setContentHuggingPriority(.defaultLow, for: .horizontal)
titleLabel.setContentCompressionResistancePriority(.required, for: .horizontal)
badgeLabel.setContentHuggingPriority(.required, for: .horizontal)
@@ -691,6 +803,19 @@ final class NativeListCell: UICollectionViewCell {
override func layoutSubviews() {
super.layoutSubviews()
+ if let item = currentItem, item.type == "system", item.data.string("presentation") == "market",
+ ["noMatch", "retry"].contains(item.data.string("variant")), !titleLabel.isHidden {
+ // The cell content view owns the root constraints and must settle before reading descendants.
+ contentView.layoutIfNeeded()
+ // React Native floors text origins to physical pixels after centering the line box.
+ titleLabel.transform = .identity
+ let scale = max(1, window?.screen.scale ?? traitCollection.displayScale)
+ let origin = titleLabel.convert(titleLabel.bounds, to: contentView).origin
+ let x = floor((contentView.bounds.width - titleLabel.bounds.width) / 2 * scale) / scale
+ let contentHeight: CGFloat = item.data.string("variant") == "retry" ? 56 : 24
+ let y = floor(max(32, (contentView.bounds.height - contentHeight) / 2) * scale) / scale
+ titleLabel.transform = CGAffineTransform(translationX: x - origin.x, y: y - origin.y)
+ }
// OneKey patch: extend only the background across the section list outer inset.
if currentItem?.data.bool("backgroundFullWidth") == true {
selectorFullWidthBackground.frame = CGRect(x: -frame.minX, y: 0, width: superview?.bounds.width ?? bounds.width, height: bounds.height)
@@ -843,6 +968,7 @@ final class NativeListCell: UICollectionViewCell {
case "activity": bindActivity(item, theme: theme)
case "message": bindMessage(item, theme: theme)
case "dataRow": bindDataRow(item, theme: theme, checkboxState)
+ case "market": bindMarket(item, theme: theme)
case "mediaTile": bindMediaTile(item, theme: theme)
case "metricCard": bindMetricCard(item, theme: theme)
case "sectionHeader": bindSectionHeader(item, theme: theme, layout: layout, checkboxState)
@@ -1033,6 +1159,7 @@ final class NativeListCell: UICollectionViewCell {
}
private func reset() {
+ titleLabel.transform = .identity
restoreSelectorTypography()
// OneKey patch: remove selector decorations before rebinding recycled cells.
selectorViews.forEach { $0.removeFromSuperview() }
@@ -1041,6 +1168,7 @@ final class NativeListCell: UICollectionViewCell {
selectorConstraints.removeAll()
selectorImages.forEach { $0.prepareForReuse() }
selectorImages.removeAll()
+ marketBadgeImages.forEach { $0.prepareForReuse(); $0.isHidden = true }
selectorFullWidthBackground.removeFromSuperlayer()
selectorBorder?.removeFromSuperlayer()
selectorBorder = nil
@@ -1094,6 +1222,15 @@ final class NativeListCell: UICollectionViewCell {
headerValueIconImageView.removeFromSuperview()
headerValueIconImageView.image = nil
headerValueIconImageView.isHidden = true
+ // OneKey patch: restore the shared labels before any recycled row binds.
+ marketSubtitleStack.arrangedSubviews.forEach {
+ marketSubtitleStack.removeArrangedSubview($0)
+ $0.removeFromSuperview()
+ }
+ mainStack.removeArrangedSubview(marketSubtitleStack)
+ marketSubtitleStack.removeFromSuperview()
+ mainStack.removeArrangedSubview(tertiaryLabel)
+ tertiaryLabel.removeFromSuperview()
mediaMetadataStack.removeArrangedSubview(subtitleLabel)
mediaMetadataStack.removeArrangedSubview(mediaNetworkImage)
mediaMetadataStack.removeFromSuperview()
@@ -1103,6 +1240,7 @@ final class NativeListCell: UICollectionViewCell {
subtitleLabel.removeFromSuperview()
mainStack.insertArrangedSubview(titleRowStack, at: 0)
mainStack.insertArrangedSubview(subtitleLabel, at: 1)
+ mainStack.insertArrangedSubview(tertiaryLabel, at: 2)
leadingWidth.constant = 40
leadingHeight.constant = 40
leadingIconWidth.constant = 18
@@ -1123,6 +1261,7 @@ final class NativeListCell: UICollectionViewCell {
$0.isHidden = true
$0.alpha = 1
$0.layer.cornerRadius = 0
+ $0.layer.mask = nil
}
leadingContainer.clipsToBounds = true
leadingContainer.layer.borderWidth = 0
@@ -1137,6 +1276,8 @@ final class NativeListCell: UICollectionViewCell {
leadingActionButton.isHidden = true
leadingActionButton.setImage(nil, for: .normal)
leadingActionButton.setImage(nil, for: .disabled)
+ leadingActionButton.accessibilityIdentifier = nil
+ leadingActionButton.accessibilityLabel = nil
unreadDot.isHidden = true
mediaBadgeLabel.isHidden = true
mediaBadgeLabel.text = nil
@@ -1156,6 +1297,13 @@ final class NativeListCell: UICollectionViewCell {
titleLabel.textAlignment = .natural
subtitleLabel.text = nil
subtitleLabel.lineBreakMode = .byTruncatingTail
+ subtitleLabel.attributedText = nil
+ subtitleLabel.setContentHuggingPriority(.defaultLow, for: .horizontal)
+ subtitleLabel.setContentCompressionResistancePriority(.defaultHigh, for: .horizontal)
+ tertiaryLabel.attributedText = nil
+ tertiaryLabel.lineBreakMode = .byTruncatingTail
+ tertiaryLabel.setContentHuggingPriority(.defaultLow, for: .horizontal)
+ tertiaryLabel.setContentCompressionResistancePriority(.defaultHigh, for: .horizontal)
tertiaryLabel.text = nil
statusLabel.text = nil
statusLabel.topInset = 0
@@ -1178,6 +1326,28 @@ final class NativeListCell: UICollectionViewCell {
badgeLabel.backgroundColor = .clear
badgeLabel.layer.cornerRadius = 0
badgeLabel.clipsToBounds = false
+ marketBadgeButtons.forEach {
+ $0.isHidden = true
+ $0.isEnabled = true
+ $0.isUserInteractionEnabled = false
+ // OneKey patch: a recycled badge must not retain an attributed title or font.
+ $0.setAttributedTitle(nil, for: .normal)
+ $0.marketLineHeight = nil
+ $0.selectorSummaryLineHeight = nil
+ $0.titleLabel?.font = nativeListFont(ofSize: 11, weight: .medium)
+ $0.titleLabel?.numberOfLines = 1
+ $0.contentHorizontalAlignment = .center
+ $0.accessibilityLabel = nil
+ $0.accessibilityTraits = .staticText
+ $0.setTitle(nil, for: .normal)
+ $0.setImage(nil, for: .normal)
+ $0.setTitleColor(nil, for: .normal)
+ $0.tintColor = nil
+ $0.backgroundColor = .clear
+ $0.contentEdgeInsets = .zero
+ $0.imageEdgeInsets = .zero
+ $0.titleEdgeInsets = .zero
+ }
[titleLabel, subtitleLabel, tertiaryLabel, statusLabel, metricSubtitleLabel, badgeLabel, actionStack]
.forEach { $0.isHidden = true }
separatorView.isHidden = true
@@ -1188,7 +1358,9 @@ final class NativeListCell: UICollectionViewCell {
$0.backgroundColor = .clear
}
accessoryButtons.enumerated().forEach { index, button in
+ button.isUserInteractionEnabled = true
button.selectorSummaryLineHeight = nil
+ button.marketLineHeight = nil
button.titleLabel?.font = nativeListFont(
ofSize: index == 0 ? 16 : 14,
weight: index == 0 ? .medium : .regular
@@ -1233,6 +1405,7 @@ final class NativeListCell: UICollectionViewCell {
boundCheckboxData = nil
boundCheckboxTarget = nil
leadingActionKey = nil
+ marketBadgeActionKeys = []
layer.maskedCorners = []
layer.cornerRadius = 0
layer.cornerCurve = .circular
@@ -1662,7 +1835,13 @@ final class NativeListCell: UICollectionViewCell {
let label = UILabel()
label.font = nativeListFont(ofSize: 14)
label.lineBreakMode = .byTruncatingTail
- label.setContentCompressionResistancePriority(.defaultLow, for: .horizontal)
+ // Match V1: the balance may shrink, but keep the shortened address intact.
+ label.setContentCompressionResistancePriority(
+ item.data.string("presentation") == "accountSelector" && segment.bool("separatorBefore")
+ ? .defaultHigh
+ : .defaultLow,
+ for: .horizontal
+ )
label.textColor = dataTextColor(segment.string("tone", default: "secondary"), theme: theme)
setLineHeight(label, text: segment.string("text"), lineHeight: 20)
let runs = segment.dictionaries("textSegments")
@@ -2014,6 +2193,369 @@ final class NativeListCell: UICollectionViewCell {
}
}
+ private func marketFontWeight(_ value: String, fallback: NativeListFontWeight) -> NativeListFontWeight {
+ switch value {
+ case "regular": return .regular
+ case "semibold": return .semibold
+ case "bold": return .bold
+ case "medium": return .medium
+ default: return fallback
+ }
+ }
+
+ private func marketTextAlignment(_ value: String) -> NSTextAlignment {
+ switch value {
+ case "center": return .center
+ case "start": return effectiveUserInterfaceLayoutDirection == .rightToLeft ? .right : .left
+ case "end": return effectiveUserInterfaceLayoutDirection == .rightToLeft ? .left : .right
+ default: return .natural
+ }
+ }
+
+ private func applyMarketTextStyle(
+ _ label: UILabel,
+ data: [String: Any]?,
+ theme: [String: Any]?,
+ defaultSize: CGFloat,
+ defaultLineHeight: CGFloat,
+ defaultWeight: NativeListFontWeight,
+ defaultColor: UIColor,
+ defaultAlignment: NSTextAlignment = .natural
+ ) {
+ let size = CGFloat(data?.double("fontSize", default: Double(defaultSize)) ?? Double(defaultSize))
+ let lineHeight = CGFloat(data?.double("lineHeight", default: Double(defaultLineHeight)) ?? Double(defaultLineHeight))
+ label.font = nativeListTabularFont(ofSize: size, weight: marketFontWeight(data?.string("fontWeight") ?? "", fallback: defaultWeight))
+ label.textColor = data?["color"].flatMap { $0 as? String }.map { UIColor(nativeListHex: $0, fallback: defaultColor) } ?? defaultColor
+ label.textAlignment = data?["alignment"] == nil
+ ? defaultAlignment
+ : marketTextAlignment(data?.string("alignment") ?? "")
+ label.numberOfLines = min(2, max(1, data?.int("lines", default: 1) ?? 1))
+ setLineHeight(label, text: label.text ?? "", lineHeight: lineHeight)
+ }
+
+ private func applyMarketButtonStyle(
+ _ button: UIButton,
+ data: [String: Any]?,
+ defaultSize: CGFloat,
+ defaultLineHeight: CGFloat,
+ defaultWeight: NativeListFontWeight,
+ color: UIColor,
+ defaultAlignment: UIControl.ContentHorizontalAlignment
+ ) {
+ let size = CGFloat(data?.double("fontSize", default: Double(defaultSize)) ?? Double(defaultSize))
+ let lineHeight = CGFloat(data?.double("lineHeight", default: Double(defaultLineHeight)) ?? Double(defaultLineHeight))
+ setButtonLine(
+ button,
+ text: button.title(for: .normal) ?? "",
+ font: nativeListTabularFont(ofSize: size, weight: marketFontWeight(data?.string("fontWeight") ?? "", fallback: defaultWeight)),
+ color: data?["color"].flatMap { $0 as? String }.map { UIColor(nativeListHex: $0, fallback: color) } ?? color,
+ lineHeight: lineHeight
+ )
+ if data?["alignment"] == nil {
+ button.contentHorizontalAlignment = defaultAlignment
+ } else {
+ button.contentHorizontalAlignment = data?.string("alignment") == "start"
+ ? .leading
+ : data?.string("alignment") == "end" ? .trailing : .center
+ }
+ button.titleLabel?.numberOfLines = min(2, max(1, data?.int("lines", default: 1) ?? 1))
+ }
+
+ private func marketAttributedText(
+ _ text: String,
+ segments: [[String: Any]],
+ style: [String: Any]?,
+ defaultSize: CGFloat,
+ defaultLineHeight: CGFloat,
+ defaultWeight: NativeListFontWeight,
+ color: UIColor,
+ defaultAlignment: NSTextAlignment
+ ) -> NSAttributedString {
+ let size = CGFloat(style?.double("fontSize", default: Double(defaultSize)) ?? Double(defaultSize))
+ let lineHeight = CGFloat(style?.double("lineHeight", default: Double(defaultLineHeight)) ?? Double(defaultLineHeight))
+ let paragraph = NSMutableParagraphStyle()
+ paragraph.minimumLineHeight = lineHeight
+ paragraph.maximumLineHeight = lineHeight
+ paragraph.alignment = style?["alignment"] == nil
+ ? defaultAlignment
+ : marketTextAlignment(style?.string("alignment") ?? "")
+ let weight = marketFontWeight(style?.string("fontWeight") ?? "", fallback: defaultWeight)
+ let resolvedColor = style?["color"].flatMap { $0 as? String }.map { UIColor(nativeListHex: $0, fallback: color) } ?? color
+ let result = NSMutableAttributedString(string: "")
+ let source = segments.isEmpty ? [["text": text]] : segments
+ for segment in source {
+ let segmentSize = segment.string("style") == "subscript" ? ceil(size * 0.6) : size
+ result.append(NSAttributedString(string: segment.string("text"), attributes: [
+ .font: nativeListTabularFont(ofSize: segmentSize, weight: weight),
+ .foregroundColor: resolvedColor,
+ .kern: 0,
+ .paragraphStyle: paragraph,
+ .baselineOffset: max(0, (lineHeight - nativeListTabularFont(ofSize: size, weight: weight).lineHeight) / 2),
+ ]))
+ }
+ return result
+ }
+
+ private func marketLeading(_ item: NativeListItem, style: [String: Any]?) -> [String: Any]? {
+ guard var visual = item.data.dictionary("leading") else { return nil }
+ guard let imageStyle = style?.dictionary("image") else { return visual }
+ if let shape = imageStyle["shape"] as? String { visual["shape"] = shape }
+ if let contentFit = imageStyle["contentFit"] as? String, var image = visual.dictionary("image") {
+ image["contentFit"] = contentFit
+ visual["image"] = image
+ }
+ return visual
+ }
+
+ private func bindMarket(_ item: NativeListItem, theme: [String: Any]?) {
+ let variant = item.data.string("variant")
+ let style = item.data.dictionary("style")
+ let imageStyle = style?.dictionary("image")
+ let imageWidth = CGFloat(imageStyle?.double("width", default: variant == "stock" ? 40 : 32) ?? (variant == "stock" ? 40 : 32))
+ let imageHeight = CGFloat(imageStyle?.double("height", default: variant == "stock" ? 40 : 32) ?? (variant == "stock" ? 40 : 32))
+ let horizontalPadding = CGFloat(style?.double("horizontalPadding", default: variant == "perp" ? 16 : 20) ?? (variant == "perp" ? 16 : 20))
+ let verticalPadding = CGFloat(style?.double("verticalPadding", default: 12) ?? 12)
+ rootLeadingConstraint.constant = horizontalPadding
+ rootTrailingConstraint.constant = -horizontalPadding
+ rootTopConstraint.constant = verticalPadding
+ rootBottomConstraint.constant = -verticalPadding
+ rootStack.spacing = CGFloat(style?.double("leadingGap", default: variant == "perp" ? 8 : 14) ?? (variant == "perp" ? 8 : 14))
+ if let leadingAction = item.data.dictionary("leadingAction") {
+ leadingActionButton.isHidden = false
+ let tintColor = UIColor(
+ nativeListHex: leadingAction.string("tintColor", default: "#646464"),
+ fallback: .darkGray
+ )
+ leadingActionButton.tintColor = tintColor
+ if let image = nativeListIcon(named: leadingAction.string("name")) {
+ leadingActionButton.setImage(image, for: .normal)
+ leadingActionButton.setImage(
+ image.withTintColor(tintColor, renderingMode: .alwaysOriginal),
+ for: .disabled
+ )
+ }
+ leadingActionButton.isEnabled = !leadingAction.bool("disabled")
+ leadingActionButton.alpha = leadingActionButton.isEnabled ? 1 : 0.4
+ leadingActionButton.accessibilityIdentifier = leadingAction["testID"] as? String
+ leadingActionButton.accessibilityLabel = leadingAction["accessibilityLabel"] as? String
+ leadingActionKey = leadingAction.string("actionKey")
+ rootStack.addArrangedSubview(leadingActionButton)
+ rootStack.setCustomSpacing(5, after: leadingActionButton)
+ }
+ leadingWidth.constant = imageWidth
+ leadingHeight.constant = imageHeight
+ if let visual = marketLeading(item, style: style) {
+ addLeading(visual, key: item.key)
+ let radius = CGFloat(imageStyle?.double("cornerRadius", default: imageStyle?.string("shape") == "square" ? 0 : imageStyle?.string("shape") == "rounded" ? 8 : Double(min(imageWidth, imageHeight) / 2)) ?? Double(min(imageWidth, imageHeight) / 2))
+ leadingContainer.layer.cornerRadius = radius
+ leadingImages.first?.layer.cornerRadius = radius
+ if let image = leadingImages.first, !visual.string("borderColor").isEmpty {
+ // Match Token's border box: the bitmap occupies the one-point inset.
+ leadingContainer.layer.borderWidth = 1
+ leadingContainer.layer.borderColor = UIColor(nativeListHex: visual.string("borderColor"), fallback: .clear).cgColor
+ for constraint in leadingSlotConstraints where constraint.firstItem === image {
+ switch constraint.firstAttribute {
+ case .leading, .top: constraint.constant = 1
+ case .trailing, .bottom: constraint.constant = -1
+ default: break
+ }
+ }
+ image.layer.cornerRadius = 0
+ let mask = CAShapeLayer()
+ mask.path = UIBezierPath(roundedRect: CGRect(x: -1, y: -1, width: imageWidth, height: imageHeight), cornerRadius: radius).cgPath
+ image.layer.mask = mask
+ }
+ if let diagnostic = item.data.dictionary("diagnostics")?.string("imageBindActionKey"), !diagnostic.isEmpty,
+ visual.dictionary("image") != nil || visual.dictionary("networkImage") != nil {
+ onAction?(item, diagnostic, nil, nil)
+ }
+ }
+ rootStack.addArrangedSubview(mainStack)
+ // OneKey patch: opt in to the source Market row's content gap.
+ // rootStack.setCustomSpacing(0, after: mainStack)
+ rootStack.setCustomSpacing(CGFloat(style?.double("contentTrailingGap", default: 0) ?? 0), after: mainStack)
+ mainStack.spacing = CGFloat(style?.double("lineGap", default: 0) ?? 0)
+ titleRowStack.spacing = CGFloat(style?.double("titleBadgeGap", default: 4) ?? 4)
+ // OneKey patch: opt in without changing the other row templates' filled layout.
+ if style?.string("titleBadgeLayout") == "inline" {
+ mainStack.alignment = .leading
+ titleRowStack.setContentHuggingPriority(.required, for: .horizontal)
+ }
+ show(titleLabel, item.data.string("title"), lines: style?.dictionary("title")?.int("lines", default: 1) ?? 1)
+ applyMarketTextStyle(titleLabel, data: style?.dictionary("title"), theme: theme, defaultSize: 16, defaultLineHeight: 24, defaultWeight: .medium, defaultColor: nativeListColor(theme, "primaryText", "#202020"))
+ let badges = Array(item.data.dictionaries("badges").prefix(marketBadgeButtons.count))
+ marketBadgeActionKeys = badges.map { $0["actionKey"] as? String }
+ for (index, badge) in badges.enumerated() {
+ let button = marketBadgeButtons[index]
+ let badgeStyle = badge.dictionary("style")
+ let badgeFontSize = CGFloat(badgeStyle?.double("fontSize", default: 11) ?? 11)
+ let badgeFontWeight = marketFontWeight(badgeStyle?.string("fontWeight") ?? "", fallback: .medium)
+ // OneKey patch: SizableText supplies tabular numerals for explicit Market metrics.
+ let badgeFont = badgeStyle == nil
+ ? nativeListFont(ofSize: badgeFontSize, weight: badgeFontWeight)
+ : nativeListTabularFont(ofSize: badgeFontSize, weight: badgeFontWeight)
+ let hasBuiltInIcon = badge.string("iconName") == "verified"
+ let hasRemoteIcon = badge.dictionary("icon") != nil
+ let hasIcon = hasBuiltInIcon || hasRemoteIcon
+ let text = badge.string("text")
+ let toneColor: UIColor
+ switch badge.string("tone") {
+ case "success": toneColor = nativeListColor(theme, "positive", "#218358")
+ case "danger": toneColor = nativeListColor(theme, "negative", "#CE2C31")
+ case "info": toneColor = nativeListColor(theme, "info", "#0D74CE")
+ case "warning": toneColor = nativeListColor(theme, "primaryText", "#202020")
+ default: toneColor = nativeListColor(theme, "secondaryText", "#646464")
+ }
+ let foreground = UIColor(
+ nativeListHex: badge.string("textColor", default: ""),
+ fallback: toneColor
+ )
+ button.isHidden = false
+ button.isEnabled = true
+ button.isUserInteractionEnabled = !badge.string("actionKey").isEmpty
+ button.accessibilityTraits = button.isUserInteractionEnabled ? .button : .staticText
+ button.setTitle(text, for: .normal)
+ button.setTitleColor(foreground, for: .normal)
+ button.titleLabel?.font = badgeFont
+ if let lineHeight = badgeStyle?["lineHeight"] as? Double {
+ setButtonLine(button, text: text, font: badgeFont, color: foreground, lineHeight: CGFloat(lineHeight))
+ // The explicit text-only line box must not cover an adjacent icon.
+ if hasIcon { button.marketLineHeight = nil }
+ }
+ button.tintColor = foreground
+ button.backgroundColor = UIColor(
+ nativeListHex: badge.string("backgroundColor", default: ""),
+ fallback: hasIcon && text.isEmpty
+ ? .clear
+ : nativeListColor(theme, "strongBackground", "#0000000F")
+ )
+ let iconOnly = hasIcon && text.isEmpty
+ let iconSize: CGFloat = hasBuiltInIcon ? 16 : 14
+ // OneKey patch: preserve the native defaults unless the caller supplies padding.
+ let padding = CGFloat(badgeStyle?.double("horizontalPadding", default: 5) ?? 5)
+ let hasCustomPadding = badgeStyle?["horizontalPadding"] != nil
+ let leftPadding = hasCustomPadding ? padding + (hasRemoteIcon ? iconSize + 2 : 0) : hasRemoteIcon ? 20 : hasIcon ? 3 : 5
+ // button.contentEdgeInsets = UIEdgeInsets(top: 0, left: iconOnly ? 0 : hasRemoteIcon ? 20 : hasIcon ? 3 : 5, bottom: 0, right: iconOnly ? 0 : 5)
+ button.contentEdgeInsets = UIEdgeInsets(top: 0, left: iconOnly ? 0 : leftPadding, bottom: 0, right: iconOnly ? 0 : padding)
+ button.imageEdgeInsets = UIEdgeInsets(top: 0, left: 0, bottom: 0, right: text.isEmpty ? 0 : 3)
+ button.titleEdgeInsets = .zero
+ button.imageView?.contentMode = .scaleAspectFit
+ if hasBuiltInIcon {
+ button.setImage(
+ nativeListIcon(named: "BadgeVerifiedSolid", size: CGSize(width: iconSize, height: iconSize)),
+ for: .normal
+ )
+ }
+ // OneKey patch: match source badge metrics at physical-pixel precision.
+ // let height = button.heightAnchor.constraint(equalToConstant: 18)
+ let height = button.heightAnchor.constraint(equalToConstant: CGFloat(badgeStyle?.double("height", default: 18) ?? 18))
+ let textWidth = (text as NSString).size(withAttributes: [.font: badgeFont]).width
+ let scale = max(1, traitCollection.displayScale)
+ let roundedTextWidth = badgeStyle == nil ? ceil(textWidth) : ceil(textWidth * scale) / scale
+ let extraWidth = hasCustomPadding ? padding * 2 + (hasIcon ? iconSize + 2 : 0) : hasIcon ? iconSize + 11 : 10
+ // let width = button.widthAnchor.constraint(equalToConstant: iconOnly ? iconSize : ceil(textWidth) + (hasIcon ? iconSize + 11 : 10))
+ let width = button.widthAnchor.constraint(equalToConstant: iconOnly ? iconSize : roundedTextWidth + extraWidth)
+ NSLayoutConstraint.activate([width, height])
+ selectorConstraints.append(contentsOf: [width, height])
+ if let icon = badge.dictionary("icon") {
+ marketBadgeImages[index].isHidden = false
+ marketBadgeImages[index].layer.cornerRadius = 7
+ marketBadgeImages[index].clipsToBounds = true
+ let imageLeading = marketBadgeImages[index].leadingAnchor.constraint(equalTo: button.leadingAnchor, constant: text.isEmpty ? 0 : 4)
+ imageLeading.isActive = true
+ selectorConstraints.append(imageLeading)
+ bindImage(icon, into: marketBadgeImages[index], token: item.key, slot: 20 + index, variant: "generic")
+ }
+ button.accessibilityLabel = badge.string("accessibilityLabel", default: badge.string("text"))
+ }
+ if !item.data.string("subtitle").isEmpty || !item.data.dictionaries("subtitleSegments").isEmpty {
+ show(subtitleLabel, item.data.string("subtitle"), lines: style?.dictionary("subtitle")?.int("lines", default: 1) ?? 1)
+ applyMarketTextStyle(subtitleLabel, data: style?.dictionary("subtitle"), theme: theme, defaultSize: 14, defaultLineHeight: 20, defaultWeight: .regular, defaultColor: nativeListColor(theme, "secondaryText", "#646464"))
+ if !item.data.dictionaries("subtitleSegments").isEmpty {
+ subtitleLabel.attributedText = marketAttributedText(item.data.string("subtitle"), segments: item.data.dictionaries("subtitleSegments"), style: style?.dictionary("subtitle"), defaultSize: 14, defaultLineHeight: 20, defaultWeight: .regular, color: nativeListColor(theme, "secondaryText", "#646464"), defaultAlignment: .natural)
+ }
+ }
+ // OneKey patch: preserve volume width while the localized name truncates.
+ let subtitlePrefix = item.data.dictionary("subtitlePrefix")
+ let subtitlePadding = CGFloat(style?.double("subtitleTrailingPadding", default: 0) ?? 0)
+ if subtitlePrefix != nil || subtitlePadding > 0 {
+ mainStack.removeArrangedSubview(subtitleLabel)
+ subtitleLabel.removeFromSuperview()
+ mainStack.removeArrangedSubview(tertiaryLabel)
+ tertiaryLabel.removeFromSuperview()
+ marketSubtitleStack.axis = .horizontal
+ marketSubtitleStack.alignment = .center
+ marketSubtitleStack.spacing = 0
+ marketSubtitleStack.clipsToBounds = true
+ show(tertiaryLabel, subtitlePrefix?.string("text") ?? "", lines: 1)
+ applyMarketTextStyle(tertiaryLabel, data: subtitlePrefix?.dictionary("style"), theme: theme, defaultSize: 12, defaultLineHeight: 16, defaultWeight: .regular, defaultColor: nativeListColor(theme, "secondaryText", "#646464"))
+ tertiaryLabel.setContentHuggingPriority(.required, for: .horizontal)
+ tertiaryLabel.setContentCompressionResistancePriority(.defaultLow, for: .horizontal)
+ subtitleLabel.setContentHuggingPriority(.required, for: .horizontal)
+ subtitleLabel.setContentCompressionResistancePriority(.required, for: .horizontal)
+ marketSubtitleStack.addArrangedSubview(tertiaryLabel)
+ marketSubtitleStack.addArrangedSubview(subtitleLabel)
+ marketSubtitleStack.addArrangedSubview(marketSubtitleSpacer)
+ if !tertiaryLabel.isHidden && !subtitleLabel.isHidden {
+ marketSubtitleStack.setCustomSpacing(CGFloat(subtitlePrefix?.double("gap", default: 4) ?? 4), after: tertiaryLabel)
+ }
+ mainStack.insertArrangedSubview(marketSubtitleStack, at: 1)
+ let width = marketSubtitleStack.widthAnchor.constraint(equalTo: mainStack.widthAnchor, constant: -subtitlePadding)
+ width.isActive = true
+ selectorConstraints.append(width)
+ if let maxWidth = subtitlePrefix?["maxWidth"] as? Double {
+ let limit = tertiaryLabel.widthAnchor.constraint(lessThanOrEqualToConstant: CGFloat(maxWidth))
+ limit.isActive = true
+ selectorConstraints.append(limit)
+ }
+ marketSubtitleStack.isHidden = tertiaryLabel.isHidden && subtitleLabel.isHidden
+ }
+ rootStack.addArrangedSubview(trailingStack)
+ trailingStack.axis = .horizontal
+ trailingStack.alignment = .center
+ trailingStack.spacing = CGFloat(style?.double("trailingGap", default: 8) ?? 8)
+ updateMarketQuote(item, theme: theme)
+ }
+
+ func updateMarketQuote(_ item: NativeListItem, theme: [String: Any]?) {
+ guard currentItem?.key == item.key, item.type == "market" else { return }
+ currentItem = item
+ NSLayoutConstraint.deactivate(accessorySizeConstraints)
+ accessorySizeConstraints.removeAll()
+ let style = item.data.dictionary("style")
+ let price = accessoryButtons[0]
+ price.isUserInteractionEnabled = false
+ price.isHidden = false
+ price.setAttributedTitle(nil, for: .normal)
+ price.setTitle(item.data.string("price"), for: .normal)
+ applyMarketButtonStyle(price, data: style?.dictionary("price"), defaultSize: 16, defaultLineHeight: 24, defaultWeight: .medium, color: nativeListColor(theme, "primaryText", "#202020"), defaultAlignment: .trailing)
+ if !item.data.dictionaries("priceSegments").isEmpty {
+ price.setAttributedTitle(marketAttributedText(item.data.string("price"), segments: item.data.dictionaries("priceSegments"), style: style?.dictionary("price"), defaultSize: 16, defaultLineHeight: 24, defaultWeight: .medium, color: nativeListColor(theme, "primaryText", "#202020"), defaultAlignment: marketTextAlignment("end")), for: .normal)
+ }
+ let changeData = item.data.dictionary("change") ?? [:]
+ let change = accessoryButtons[1]
+ change.isUserInteractionEnabled = false
+ change.isHidden = false
+ change.setAttributedTitle(nil, for: .normal)
+ change.setTitle(changeData.string("text"), for: .normal)
+ let defaultChangeColor = nativeListColor(theme, "inverseText", "#FFFFFF")
+ applyMarketButtonStyle(change, data: style?.dictionary("change"), defaultSize: 14, defaultLineHeight: 20, defaultWeight: .medium, color: UIColor(nativeListHex: changeData.string("textColor", default: "#FFFFFF"), fallback: defaultChangeColor), defaultAlignment: .center)
+ if !changeData.dictionaries("textSegments").isEmpty {
+ let changeTextColor = UIColor(nativeListHex: changeData.string("textColor", default: ""), fallback: defaultChangeColor)
+ change.setAttributedTitle(marketAttributedText(changeData.string("text"), segments: changeData.dictionaries("textSegments"), style: style?.dictionary("change"), defaultSize: 14, defaultLineHeight: 20, defaultWeight: .medium, color: changeTextColor, defaultAlignment: .center), for: .normal)
+ }
+ let toneKey = changeData.string("tone") == "positive" ? "positive" : changeData.string("tone") == "negative" ? "negative" : "secondaryText"
+ change.backgroundColor = UIColor(nativeListHex: changeData.string("backgroundColor", default: ""), fallback: nativeListColor(theme, toneKey, changeData.string("tone") == "positive" ? "#218358" : changeData.string("tone") == "negative" ? "#CE2C31" : "#8D8D8D"))
+ change.layer.cornerRadius = CGFloat(style?.double("changeCornerRadius", default: 8) ?? 8)
+ change.clipsToBounds = true
+ let width = change.widthAnchor.constraint(equalToConstant: CGFloat(style?.double("changeWidth", default: 80) ?? 80))
+ let height = change.heightAnchor.constraint(equalToConstant: CGFloat(style?.double("changeHeight", default: 32) ?? 32))
+ width.isActive = true
+ height.isActive = true
+ accessorySizeConstraints.append(contentsOf: [width, height])
+ accessibilityLabel = item.data.string("accessibilityLabel", default: [item.data.string("title"), item.data.string("subtitle"), item.data.string("price"), changeData.string("text")].filter { !$0.isEmpty }.joined(separator: ", "))
+ }
+
private func bindMediaTile(_ item: NativeListItem, theme: [String: Any]?) {
rootStack.axis = .vertical
rootStack.alignment = .fill
@@ -2055,13 +2597,15 @@ final class NativeListCell: UICollectionViewCell {
subtitleLabel.setContentCompressionResistancePriority(.defaultLow, for: .horizontal)
if let networkImage = item.data.dictionary("networkImage") {
mediaMetadataStack.addArrangedSubview(mediaNetworkImage)
- mediaNetworkImage.isHidden = false
+ // OneKey patch: Preserve badge layout without exposing a loading/error tile.
+ // mediaNetworkImage.isHidden = false
bindImage(
networkImage,
into: mediaNetworkImage,
token: item.key,
slot: 2,
- variant: "network"
+ variant: "network",
+ hideUntilLoaded: true
)
}
mainStack.insertArrangedSubview(mediaMetadataStack, at: 0)
@@ -2630,6 +3174,114 @@ final class NativeListCell: UICollectionViewCell {
rootStack.alignment = .center
rootStack.distribution = .fill
let variant = item.data.string("variant")
+ let isMarket = item.data.string("presentation") == "market"
+ if isMarket {
+ rootLeadingConstraint.constant = 20
+ rootTrailingConstraint.constant = -20
+ rootTopConstraint.constant = 12
+ rootBottomConstraint.constant = -12
+ }
+ if isMarket && variant == "retry" {
+ let message = item.data.string("message")
+ let text = item.data.string("actionText", default: "Retry")
+ rootStack.axis = .vertical
+ // The source tertiary Button has -5 vertical margins around its 30pt frame.
+ rootStack.spacing = 7
+ rootLeadingConstraint.constant = 32
+ rootTrailingConstraint.constant = -32
+ let height = CGFloat(item.data.double("height", default: message.isEmpty ? 52 : 120))
+ let top = message.isEmpty ? 11 : max(32, (height - 56) / 2)
+ rootTopConstraint.constant = top
+ rootBottomConstraint.constant = -(height - top - (message.isEmpty ? 30 : 61))
+ if !message.isEmpty {
+ show(titleLabel, message, lines: 2)
+ titleLabel.font = nativeListTabularFont(ofSize: 16)
+ titleLabel.textColor = nativeListColor(theme, "secondaryText", "#646464")
+ titleLabel.textAlignment = .center
+ setLineHeight(titleLabel, text: message, lineHeight: 24)
+ rootStack.addArrangedSubview(mainStack)
+ }
+ showAccessory(0, text, action: (item.data.string("actionKey"), nil))
+ let button = accessoryButtons[0]
+ button.backgroundColor = .clear
+ button.layer.cornerRadius = 15
+ setButtonLine(button, text: text, font: nativeListTabularFont(ofSize: 14, weight: .medium),
+ color: nativeListColor(theme, "secondaryText", "#646464"), lineHeight: 20)
+ let textWidth = button.intrinsicContentSize.width
+ selectorConstraints.append(contentsOf: [
+ button.widthAnchor.constraint(equalToConstant: textWidth + 18),
+ button.heightAnchor.constraint(equalToConstant: 30),
+ ])
+ NSLayoutConstraint.activate(selectorConstraints)
+ rootStack.addArrangedSubview(trailingStack)
+ return
+ }
+ if variant == "loading" && item.data.string("loadingStyle") == "skeleton" {
+ rootLeadingConstraint.constant = 20
+ rootTrailingConstraint.constant = -20
+ rootTopConstraint.constant = 12
+ rootBottomConstraint.constant = -12
+ let skeleton = NativeListMarketSkeleton(background: nativeListColor(theme, "background", "#FFFFFF"))
+ skeleton.translatesAutoresizingMaskIntoConstraints = false
+ skeleton.heightAnchor.constraint(equalToConstant: 32).isActive = true
+ rootStack.addArrangedSubview(skeleton)
+ selectorViews.append(skeleton)
+ return
+ }
+ if variant == "loading" && item.data.string("loadingStyle") == "spinner" {
+ rootTopConstraint.constant = 16
+ rootBottomConstraint.constant = -16
+ rootStack.addArrangedSubview(mainStack)
+ mainStack.alignment = .center
+ mainStack.setContentHuggingPriority(.defaultLow, for: .horizontal)
+ let indicator = UIActivityIndicatorView(style: .medium)
+ indicator.color = nativeListColor(theme, "icon", "#0000009B")
+ indicator.startAnimating()
+ mainStack.addArrangedSubview(indicator)
+ selectorViews.append(indicator)
+ return
+ }
+ if isMarket && variant == "noMatch" {
+ let padding = max(32, (CGFloat(item.data.double("height", default: 88)) - 24) / 2)
+ rootTopConstraint.constant = padding
+ rootBottomConstraint.constant = -padding
+ rootStack.addArrangedSubview(mainStack)
+ mainStack.alignment = .center
+ mainStack.setContentHuggingPriority(.defaultLow, for: .horizontal)
+ titleLabel.font = nativeListTabularFont(ofSize: 16)
+ titleLabel.textColor = nativeListColor(theme, "secondaryText", "#646464")
+ titleLabel.textAlignment = .center
+ show(titleLabel, item.data.string("message"), lines: 1)
+ setLineHeight(titleLabel, text: item.data.string("message"), lineHeight: 24)
+ return
+ }
+ if isMarket && variant == "end" {
+ rootTopConstraint.constant = 16
+ rootBottomConstraint.constant = -16
+ // OneKey patch: an empty title stack must not consume the dot's line height.
+ titleRowStack.isHidden = true
+ rootStack.addArrangedSubview(mainStack)
+ mainStack.alignment = .center
+ mainStack.setContentHuggingPriority(.defaultLow, for: .horizontal)
+ let indicator = UIStackView()
+ indicator.axis = .horizontal
+ indicator.alignment = .center
+ indicator.spacing = 8
+ for width in [CGFloat(80), 4, 80] {
+ let mark = UIView()
+ mark.translatesAutoresizingMaskIntoConstraints = false
+ mark.backgroundColor = nativeListColor(theme, "separator", "#0000001F")
+ mark.layer.cornerRadius = width == 4 ? 2 : 0
+ NSLayoutConstraint.activate([
+ mark.widthAnchor.constraint(equalToConstant: width),
+ mark.heightAnchor.constraint(equalToConstant: width == 4 ? 4 : 1),
+ ])
+ indicator.addArrangedSubview(mark)
+ }
+ mainStack.addArrangedSubview(indicator)
+ selectorViews.append(indicator)
+ return
+ }
// OneKey patch: deprecated-wallet warnings stay inside the scrolling list.
if variant == "warning" {
rootStack.addArrangedSubview(mainStack)
@@ -2661,10 +3313,10 @@ final class NativeListCell: UICollectionViewCell {
return
}
if variant == "loading" {
- leadingWidth.constant = 40
- leadingHeight.constant = 40
+ leadingWidth.constant = isMarket ? 32 : 40
+ leadingHeight.constant = isMarket ? 32 : 40
leadingContainer.backgroundColor = nativeListColor(theme, "strongBackground", "#F0F0F0")
- leadingContainer.layer.cornerRadius = 20
+ leadingContainer.layer.cornerRadius = isMarket ? 16 : 20
rootStack.addArrangedSubview(leadingContainer)
configureSkeleton(skeletonPrimary, width: 120, height: 12, theme: theme)
configureSkeleton(skeletonSecondary, width: 80, height: 12, theme: theme)
@@ -2723,14 +3375,23 @@ final class NativeListCell: UICollectionViewCell {
default: kind == "image" || mediaHeight.isActive ? "rounded" : "circle"
)
let cornerIcon = visual.dictionary("cornerIcon")
- fallbackLabel.text = String(visual.string("fallbackText").prefix(2))
+ let fallbackText = String(visual.string("fallbackText").prefix(2))
+ let fallbackIconData = visual.dictionary("fallbackIcon")
+ let handlesSourceFallback = !isIcon && !sources.isEmpty &&
+ (visual["fallbackText"] != nil || fallbackIconData != nil)
+ fallbackLabel.text = handlesSourceFallback ? nil : fallbackText
+ let sourceFallbackBackground = currentTheme?["strongBackground"] as? String ?? "#0000000F"
leadingContainer.backgroundColor = UIColor(
- nativeListHex: visual.string("backgroundColor", default: isIcon ? "#F0F0F0" : "#E0E0E0"),
+ // OneKey patch: Visual loading and fallback use the active list theme.
+ // nativeListHex: visual.string("backgroundColor", default: isIcon ? "#F0F0F0" : "#E0E0E0"),
+ nativeListHex: handlesSourceFallback
+ ? sourceFallbackBackground
+ : visual.string("backgroundColor", default: sourceFallbackBackground),
fallback: .gray
)
leadingContainer.layer.cornerRadius = leadingCornerRadius(shape: shape)
leadingContainer.clipsToBounds = true
- fallbackLabel.isHidden = isIcon || !sources.isEmpty
+ fallbackLabel.isHidden = isIcon || (!sources.isEmpty && !handlesSourceFallback)
if isIcon {
leadingContainer.layer.borderWidth = 1 / UIScreen.main.scale
leadingContainer.layer.borderColor = UIColor(
@@ -2744,6 +3405,15 @@ final class NativeListCell: UICollectionViewCell {
)
leadingIconImageView.image = nativeListIcon(named: visual.string("name"))
leadingIconImageView.contentMode = .scaleAspectFit
+ } else if sources.isEmpty, let fallbackIconData {
+ fallbackLabel.isHidden = true
+ leadingIconImageView.isHidden = false
+ leadingIconImageView.tintColor = UIColor(
+ nativeListHex: fallbackIconData.string("tintColor", default: "#646464"),
+ fallback: .darkGray
+ )
+ leadingIconImageView.image = nativeListIcon(named: fallbackIconData.string("name"))
+ leadingIconImageView.contentMode = .scaleAspectFit
}
let visibleSources = Array(sources.prefix(leadingImages.count))
let tokenPair = kind == "token" && visibleSources.count > 1
@@ -2778,7 +3448,10 @@ final class NativeListCell: UICollectionViewCell {
}
for (index, source) in visibleSources.enumerated() {
let imageView = leadingImages[index]
- imageView.isHidden = false
+ // OneKey patch: Decorative badges and source-owned fallbacks stay hidden until loaded.
+ // imageView.isHidden = false
+ let ownsSourceFallback = index == 0 && handlesSourceFallback
+ imageView.isHidden = index > 0 || ownsSourceFallback
imageView.clipsToBounds = true
leadingSlotConstraints.append(contentsOf: leadingConstraints(
imageView,
@@ -2792,22 +3465,30 @@ final class NativeListCell: UICollectionViewCell {
imageView.layer.cornerRadius = 0
imageView.clipsToBounds = false
}
- let fallbackIcon = index == 0 ? visual.dictionary("fallbackIcon") : nil
+ let fallbackIcon = index == 0 ? fallbackIconData : nil
let expectedEpoch = bindingEpoch
bindImage(source.data, into: imageView, token: key, slot: index, variant: source.variant,
- onLoad: fallbackIcon == nil ? nil : { [weak self, weak imageView] in
+ onLoad: !ownsSourceFallback ? nil : { [weak self, weak imageView] in
guard let self, self.bindingEpoch == expectedEpoch else { return }
imageView?.isHidden = false
+ self.fallbackLabel.isHidden = true
self.leadingIconImageView.isHidden = true
},
- onError: fallbackIcon == nil ? nil : { [weak self, weak imageView] in
- guard let self, self.bindingEpoch == expectedEpoch, let fallbackIcon else { return }
+ onError: !ownsSourceFallback ? nil : { [weak self, weak imageView] in
+ guard let self, self.bindingEpoch == expectedEpoch else { return }
imageView?.isHidden = true
- self.fallbackLabel.isHidden = true
- self.leadingIconImageView.image = nativeListIcon(named: fallbackIcon.string("name"))
- self.leadingIconImageView.tintColor = UIColor(nativeListHex: fallbackIcon.string("tintColor", default: "#646464"), fallback: .darkGray)
- self.leadingIconImageView.isHidden = false
- })
+ if let fallbackIcon {
+ self.fallbackLabel.isHidden = true
+ self.leadingIconImageView.image = nativeListIcon(named: fallbackIcon.string("name"))
+ self.leadingIconImageView.tintColor = UIColor(nativeListHex: fallbackIcon.string("tintColor", default: "#646464"), fallback: .darkGray)
+ self.leadingIconImageView.isHidden = false
+ } else {
+ self.leadingIconImageView.isHidden = true
+ self.fallbackLabel.text = fallbackText
+ self.fallbackLabel.isHidden = false
+ }
+ },
+ hideUntilLoaded: index > 0 || ownsSourceFallback)
}
// OneKey patch: source-derived wallet decorations may occupy both corners.
let overlays = visual.dictionaries("overlays")
@@ -2824,7 +3505,15 @@ final class NativeListCell: UICollectionViewCell {
let width = CGFloat(overlay.double("width", default: isWalletText ? Double(naturalTextWidth) : Double(size)))
let frame = UIView()
frame.translatesAutoresizingMaskIntoConstraints = false
- frame.backgroundColor = UIColor(nativeListHex: overlay.string("backgroundColor", default: "#FFFFFF"), fallback: .clear)
+ // OneKey patch: The row theme, not a light-only white, owns badge backing.
+ // frame.backgroundColor = UIColor(nativeListHex: overlay.string("backgroundColor", default: "#FFFFFF"), fallback: .clear)
+ frame.backgroundColor = UIColor(
+ nativeListHex: overlay.string(
+ "backgroundColor",
+ default: currentTheme?["rowBackground"] as? String ?? "#00000000"
+ ),
+ fallback: .clear
+ )
frame.layer.cornerRadius = min(width, height) / 2
frame.clipsToBounds = true
leadingContainer.addSubview(frame)
@@ -2839,7 +3528,14 @@ final class NativeListCell: UICollectionViewCell {
let content: UIView
if let image = overlay.dictionary("image") {
let imageView = OneKeyImageReusableView(frame: .zero)
- bindImage(image, into: imageView, token: key, slot: 10 + index, variant: "generic")
+ bindImage(
+ image,
+ into: imageView,
+ token: key,
+ slot: 10 + index,
+ variant: "generic",
+ hideUntilLoaded: true
+ )
selectorImages.append(imageView)
content = imageView
} else if !overlay.string("text").isEmpty {
@@ -3076,8 +3772,8 @@ final class NativeListCell: UICollectionViewCell {
let paragraphStyle = NSMutableParagraphStyle()
paragraphStyle.minimumLineHeight = lineHeight
paragraphStyle.maximumLineHeight = lineHeight
- if currentItem?.data.string("presentation") == "walletSidebar" {
- // OneKey patch: attributed paragraphs must preserve wallet name alignment and tail ellipsis.
+ if currentItem?.type == "market" || currentItem?.data.string("presentation") == "walletSidebar" {
+ // Attributed paragraphs must preserve the label alignment and tail ellipsis.
paragraphStyle.alignment = label.textAlignment
paragraphStyle.lineBreakMode = label.lineBreakMode
}
@@ -3086,15 +3782,15 @@ final class NativeListCell: UICollectionViewCell {
.foregroundColor: label.textColor as Any,
.paragraphStyle: paragraphStyle,
]
- if (currentItem?.data["height"] != nil && (["accountSelector", "walletSidebar"].contains(currentItem?.data.string("presentation") ?? "") || currentItem?.type == "sectionHeader" && currentItem?.data.string("presentation") == "networkSelector")) || currentItem?.type == "system" && currentItem?.data.string("variant") == "warning" {
+ if currentItem?.type == "market" || currentItem?.type == "system" && currentItem?.data.string("presentation") == "market" && currentItem?.data.string("variant") == "noMatch" || (currentItem?.data["height"] != nil && (["accountSelector", "walletSidebar"].contains(currentItem?.data.string("presentation") ?? "") || currentItem?.type == "sectionHeader" && currentItem?.data.string("presentation") == "networkSelector")) || currentItem?.type == "system" && currentItem?.data.string("variant") == "warning" {
// OneKey patch: React Native centers font metrics inside explicit line heights.
let baselineOffset = max(0, (lineHeight - label.font.lineHeight) / 2)
// OneKey patch: TextKit's 14/20 headings align their baseline to the upper physical pixel.
- let isSelectorHeading = currentItem?.type == "sectionHeader" && currentItem?.data.string("presentation") == "networkSelector" && lineHeight == 20
+ let isSelectorHeading = lineHeight == 20 && (currentItem?.type == "sectionHeader" && currentItem?.data.string("presentation") == "networkSelector" || currentItem?.type == "market" && label.font.pointSize == 14)
let scale = window?.screen.scale ?? traitCollection.displayScale
attributes[.baselineOffset] = isSelectorHeading && scale > 0 ? ceil(baselineOffset * scale) / scale : baselineOffset
}
- if letterSpacing != 0 { attributes[.kern] = letterSpacing }
+ if letterSpacing != 0 || currentItem?.type == "market" || currentItem?.data.string("presentation") == "market" { attributes[.kern] = letterSpacing }
label.attributedText = NSAttributedString(string: text, attributes: attributes)
}
@@ -3109,11 +3805,14 @@ final class NativeListCell: UICollectionViewCell {
let paragraphStyle = NSMutableParagraphStyle()
paragraphStyle.minimumLineHeight = lineHeight
paragraphStyle.maximumLineHeight = lineHeight
+ let isMarketText = currentItem?.type == "market" || currentItem?.type == "system" && currentItem?.data.string("presentation") == "market" && currentItem?.data.string("variant") == "retry"
let isSelectorValue = currentItem?.data.string("presentation") == "networkSelector" && currentItem?.data["height"] != nil && currentItem?.data.string("variant") != "summary"
let isSelectorSummary = currentItem?.type == "sectionHeader" && currentItem?.data.string("presentation") == "networkSelector" && currentItem?.data["height"] != nil && currentItem?.data.string("variant") == "summary"
(button as? NativeListAccessoryButton)?.selectorSummaryLineHeight = isSelectorSummary ? lineHeight : nil
+ (button as? NativeListAccessoryButton)?.marketLineHeight = isMarketText ? lineHeight : nil
// OneKey patch: summary text uses its source line box; currency retains trailing alignment.
- paragraphStyle.alignment = isSelectorValue ? .right : isSelectorSummary ? .natural : .center
+ // Market's line box already handles alignment; source text starts at its origin.
+ paragraphStyle.alignment = isSelectorValue ? .right : isSelectorSummary || isMarketText ? .natural : .center
if isSelectorSummary {
button.contentHorizontalAlignment = .leading
button.titleLabel?.textAlignment = .natural
@@ -3122,17 +3821,16 @@ final class NativeListCell: UICollectionViewCell {
button.contentHorizontalAlignment = .trailing
button.titleLabel?.textAlignment = .right
}
- let baselineOffset: CGFloat = currentItem?.type == "sectionHeader" && currentItem?.data.string("presentation") == "networkSelector" && currentItem?.data["height"] != nil ? max(0, (lineHeight - font.lineHeight) / 2) : 0
+ let baselineOffset: CGFloat = isMarketText || currentItem?.type == "sectionHeader" && currentItem?.data.string("presentation") == "networkSelector" && currentItem?.data["height"] != nil ? max(0, (lineHeight - font.lineHeight) / 2) : 0
+ var attributes: [NSAttributedString.Key: Any] = [
+ .font: font,
+ .foregroundColor: color,
+ .paragraphStyle: paragraphStyle,
+ .baselineOffset: isMarketText && lineHeight == 20 && font.pointSize == 14 ? ceil(baselineOffset * max(1, traitCollection.displayScale)) / max(1, traitCollection.displayScale) : baselineOffset,
+ ]
+ if isMarketText { attributes[.kern] = 0 }
button.setAttributedTitle(
- NSAttributedString(
- string: text,
- attributes: [
- .font: font,
- .foregroundColor: color,
- .paragraphStyle: paragraphStyle,
- .baselineOffset: baselineOffset,
- ]
- ),
+ NSAttributedString(string: text, attributes: attributes),
for: .normal
)
}
@@ -3297,6 +3995,7 @@ final class NativeListCell: UICollectionViewCell {
variant: String,
onLoad: (() -> Void)? = nil,
onError: (() -> Void)? = nil,
+ hideUntilLoaded: Bool = false,
retryAttempt: Int = 0
) {
let imageID = ObjectIdentifier(imageView)
@@ -3311,6 +4010,17 @@ final class NativeListCell: UICollectionViewCell {
} else {
headersJson = nil
}
+ if hideUntilLoaded { imageView.isHidden = true }
+ let handleLoad: (() -> Void)? = hideUntilLoaded ? { [weak self, weak imageView] in
+ guard let self, self.bindingEpoch == expectedEpoch else { return }
+ imageView?.isHidden = false
+ onLoad?()
+ } : onLoad
+ let handleError: (() -> Void)? = hideUntilLoaded ? { [weak self, weak imageView] in
+ guard let self, self.bindingEpoch == expectedEpoch else { return }
+ imageView?.isHidden = true
+ onError?()
+ } : onError
imageView.configure(
sourceUri: source.string("uri").trimmingCharacters(in: .whitespacesAndNewlines),
sourceHeadersJson: headersJson,
@@ -3322,19 +4032,20 @@ final class NativeListCell: UICollectionViewCell {
optimizeTos: retryAttempt == 0 && (source["optimizeTos"] == nil || source.bool("optimizeTos")),
overscan: source["overscan"] == nil ? 1.1 : source.double("overscan"),
loadingStrategy: source.string("loadingStrategy", default: "static"),
- onLoad: retryLimit == 0 ? onLoad : { [weak self] in
+ placeholderColor: currentTheme?["strongBackground"] as? String ?? "#0000000F",
+ onLoad: retryLimit == 0 ? handleLoad : { [weak self] in
guard let self, self.bindingEpoch == expectedEpoch else { return }
self.selectorImageRetries.removeValue(forKey: imageID)?.cancel()
- onLoad?()
+ handleLoad?()
},
- onError: retryLimit == 0 ? onError : { [weak self, weak imageView] in
+ onError: retryLimit == 0 ? handleError : { [weak self, weak imageView] in
guard let self, self.bindingEpoch == expectedEpoch, let imageView else { return }
- guard retryAttempt < retryLimit else { onError?(); return }
+ guard retryAttempt < retryLimit else { handleError?(); return }
guard self.selectorImageRetries[imageID] == nil else { return }
let retry = DispatchWorkItem { [weak self, weak imageView] in
guard let self, self.bindingEpoch == expectedEpoch, let imageView else { return }
self.selectorImageRetries.removeValue(forKey: imageID)
- self.bindImage(source, into: imageView, token: token, slot: slot, variant: variant, onLoad: onLoad, onError: onError, retryAttempt: retryAttempt + 1)
+ self.bindImage(source, into: imageView, token: token, slot: slot, variant: variant, onLoad: onLoad, onError: onError, hideUntilLoaded: hideUntilLoaded, retryAttempt: retryAttempt + 1)
}
self.selectorImageRetries[imageID] = retry
DispatchQueue.main.asyncAfter(deadline: .now() + Double(Int.random(in: 0...2)), execute: retry)
@@ -3394,6 +4105,19 @@ final class NativeListCell: UICollectionViewCell {
)
}
+ @objc private func marketBadgePressed(_ sender: UIButton) {
+ guard let item = currentItem,
+ marketBadgeActionKeys.indices.contains(sender.tag),
+ let actionKey = marketBadgeActionKeys[sender.tag],
+ !actionKey.isEmpty else { return }
+ onAction?(
+ item,
+ actionKey,
+ nil,
+ actionOrigin(sourceView: sender, source: "marketBadge", slot: sender.tag)
+ )
+ }
+
@objc private func footerActionPressed(_ sender: UIButton) {
guard let item = currentItem, footerActionKeys.indices.contains(sender.tag) else { return }
onAction?(
diff --git a/native-views/react-native-native-list/ios/NativeListDesignAssets.swift b/native-views/react-native-native-list/ios/NativeListDesignAssets.swift
index 3f3b90abb..845350014 100644
--- a/native-views/react-native-native-list/ios/NativeListDesignAssets.swift
+++ b/native-views/react-native-native-list/ios/NativeListDesignAssets.swift
@@ -118,6 +118,7 @@ func nativeListIcon(named name: String) -> UIImage? {
case "DragOutline": assetName = "onekey_drag"
case "StarOutline": assetName = "onekey_star"
case "StarSolid": assetName = "onekey_star_solid"
+ case "BadgeVerifiedSolid": assetName = "onekey_badge_verified_solid"
case "ChevronGrabberVerOutline": assetName = "onekey_chevron_grabber_ver"
case "ChevronBottomOutline": assetName = "onekey_chevron_bottom"
case "ChevronTopOutline": assetName = "onekey_chevron_top"
@@ -131,3 +132,10 @@ func nativeListIcon(named name: String) -> UIImage? {
return UIImage(named: assetName, in: NativeListResources.bundle, compatibleWith: nil)?
.withRenderingMode(["GoogleIllus", "BotIllus", "AccountErrorCustom"].contains(name) ? .alwaysOriginal : .alwaysTemplate)
}
+
+func nativeListIcon(named name: String, size: CGSize) -> UIImage? {
+ guard let image = nativeListIcon(named: name) else { return nil }
+ return UIGraphicsImageRenderer(size: size).image { _ in
+ image.draw(in: CGRect(origin: .zero, size: size))
+ }.withRenderingMode(.alwaysTemplate)
+}
diff --git a/native-views/react-native-native-list/ios/RNCNativeListView.swift b/native-views/react-native-native-list/ios/RNCNativeListView.swift
index a94be0961..741f298f0 100644
--- a/native-views/react-native-native-list/ios/RNCNativeListView.swift
+++ b/native-views/react-native-native-list/ios/RNCNativeListView.swift
@@ -64,7 +64,7 @@ final class NativeListView: UIView {
private let footerContainer = UIView()
private let footerCell = NativeListCell(frame: .zero)
private let sectionIndexView = NativeListSectionIndexView()
- private let sectionIndexPreview = UILabel()
+ private let sectionIndexPreview = NativeListSectionIndexPreviewView()
private var footerHeightConstraint: NSLayoutConstraint!
private var dataSource: UICollectionViewDiffableDataSource!
private var config: NativeListConfig?
@@ -83,6 +83,10 @@ final class NativeListView: UIView {
target: self,
action: #selector(reorderLongPressChanged(_:))
)
+ private lazy var marketLongPress = UILongPressGestureRecognizer(
+ target: self,
+ action: #selector(marketLongPressChanged(_:))
+ )
// OneKey patch: claim only vertical drags so held rows and ancestor pagers stay responsive.
private lazy var listBodyGestureGuard = UIPanGestureRecognizer(target: nil, action: nil)
private var interactiveReorderSource: (key: String, index: Int)?
@@ -102,7 +106,8 @@ final class NativeListView: UIView {
private static let sectionIndexContentInset: CGFloat = 16
private static let sectionIndexRailWidth: CGFloat = 32
- private static let sectionIndexPreviewSize: CGFloat = 48
+ private static let sectionIndexPreviewWidth: CGFloat = 60
+ private static let sectionIndexPreviewHeight: CGFloat = 50
private static let sectionIndexPreviewEndMargin: CGFloat = 40
override init(frame: CGRect) {
@@ -122,6 +127,10 @@ final class NativeListView: UIView {
reorderLongPress.allowableMovement = ReorderAnimation.allowableMovement
reorderLongPress.delegate = self
collectionView.addGestureRecognizer(reorderLongPress)
+ marketLongPress.minimumPressDuration = 0.8
+ marketLongPress.allowableMovement = 10
+ marketLongPress.delegate = self
+ collectionView.addGestureRecognizer(marketLongPress)
interactiveReorderPlaceholder.isHidden = true
interactiveReorderPlaceholder.isUserInteractionEnabled = false
interactiveReorderPlaceholder.layer.cornerRadius = ReorderAnimation.placeholderRadius
@@ -158,8 +167,8 @@ final class NativeListView: UIView {
constant: -Self.sectionIndexPreviewEndMargin
),
sectionIndexPreview.centerYAnchor.constraint(equalTo: collectionView.centerYAnchor),
- sectionIndexPreview.widthAnchor.constraint(equalToConstant: Self.sectionIndexPreviewSize),
- sectionIndexPreview.heightAnchor.constraint(equalToConstant: Self.sectionIndexPreviewSize),
+ sectionIndexPreview.widthAnchor.constraint(equalToConstant: Self.sectionIndexPreviewWidth),
+ sectionIndexPreview.heightAnchor.constraint(equalToConstant: Self.sectionIndexPreviewHeight),
])
sectionIndexView.isHidden = true
@@ -171,11 +180,6 @@ final class NativeListView: UIView {
}
sectionIndexPreview.isHidden = true
sectionIndexPreview.alpha = 0
- sectionIndexPreview.layer.cornerRadius = 14
- sectionIndexPreview.layer.masksToBounds = true
- sectionIndexPreview.textAlignment = .center
- sectionIndexPreview.adjustsFontForContentSizeCategory = true
- sectionIndexPreview.font = nativeListFont(ofSize: 22, weight: .semibold)
sectionIndexPreview.isAccessibilityElement = false
footerCell.onAction = { [weak self] item, action, target, origin in
@@ -244,12 +248,11 @@ final class NativeListView: UIView {
guard let next = try? NativeListConfig.parse(json: json) else { return }
invalidateActionAnchor(reason: "snapshot")
if let current = config, isControlledSelectionSnapshotUpdate(from: current, to: next) {
- let changedSummaryKeys = Set(zip(current.items, next.items).compactMap { old, new in
- old.content != new.content ? new.key : nil
- })
config = next
itemsByKey = Dictionary(uniqueKeysWithValues: next.items.map { ($0.key, $0) })
- refreshVisibleSelection(changedSummaryKeys: changedSummaryKeys)
+ // OneKey patch: A controlled selection echo is fully handled by the
+ // lightweight updater. Rebinding unchanged visuals clears cached images.
+ refreshVisibleSelection()
return
}
let oldItems = itemsByKey
@@ -298,8 +301,13 @@ final class NativeListView: UIView {
}
var changedKeys: [String] = []
+ var marketQuoteKeys = Set()
var sizeChanged = false
+ let marketQuoteFields: Set = [
+ "revision", "price", "priceSegments", "change", "accessibilityLabel",
+ ]
for (index, changes) in pending {
+ let previous = current.items[index]
var merged = current.items[index].data
changes.forEach { key, value in
if key != "key" && key != "type" { merged[key] = value }
@@ -307,14 +315,30 @@ final class NativeListView: UIView {
guard let item = try? NativeListItem(data: merged) else { return }
if rowHeight(current.items[index]) != rowHeight(item) { sizeChanged = true }
current.items[index] = item
- changedKeys.append(item.key)
+ if previous.type == "market", Set(changes.keys).isSubset(of: marketQuoteFields) {
+ marketQuoteKeys.insert(item.key)
+ } else {
+ changedKeys.append(item.key)
+ }
if let selected = changes["selected"] as? Bool {
if selected { current.selectedKeys.insert(item.key) } else { current.selectedKeys.remove(item.key) }
}
}
- invalidateActionAnchor(reason: "snapshot")
+ if !changedKeys.isEmpty { invalidateActionAnchor(reason: "snapshot") }
config = current
itemsByKey = Dictionary(uniqueKeysWithValues: current.items.map { ($0.key, $0) })
+ for indexPath in collectionView.indexPathsForVisibleItems {
+ guard let item = current.items[safe: indexPath.item],
+ marketQuoteKeys.contains(item.key),
+ let cell = collectionView.cellForItem(at: indexPath) as? NativeListCell else { continue }
+ cell.updateMarketQuote(item, theme: current.theme)
+ }
+ if changedKeys.isEmpty {
+ configureFooter(current)
+ emitVisibleRangeIfNeeded()
+ checkEndReached()
+ return
+ }
var snapshot = dataSource.snapshot()
snapshot.reconfigureItems(changedKeys.filter { snapshot.indexOfItem($0) != nil })
dataSource.apply(snapshot, animatingDifferences: false) { [weak self] in
@@ -871,18 +895,21 @@ final class NativeListView: UIView {
sectionIndexHapticsEnabled = config.sectionIndexHapticsEnabled
sectionIndexView.configure(
titles: sectionIndexEntries.map(\.title),
- textColor: nativeListColor(config.theme, "secondaryText", "#646464"),
- activeColor: nativeListColor(config.theme, "accent", "#108303"),
+ textColor: nativeListColor(config.theme, "disabledText", "#8D8D8D"),
+ activeColor: nativeListColor(config.theme, "positive", "#218358"),
activeTextColor: nativeListColor(config.theme, "inverseText", "#FCFCFC"),
centeredInWindow: config.sectionIndexCenteredInWindow
)
sectionIndexView.isHidden = sectionIndexEntries.isEmpty
- sectionIndexPreview.backgroundColor = nativeListColor(
- config.theme,
- "inverseBackground",
- "#202020"
+ sectionIndexPreview.configure(
+ fillColor: UIColor(
+ red: 202.0 / 255.0,
+ green: 202.0 / 255.0,
+ blue: 202.0 / 255.0,
+ alpha: 1
+ ),
+ textColor: .white
)
- sectionIndexPreview.textColor = nativeListColor(config.theme, "inverseText", "#FCFCFC")
if let previousKey,
let index = sectionIndexEntries.firstIndex(where: { $0.key == previousKey }) {
sectionIndexView.setActiveIndex(index)
@@ -901,6 +928,7 @@ final class NativeListView: UIView {
if interacting {
sectionIndexPreview.layer.removeAllAnimations()
sectionIndexPreview.text = entry.title
+ positionSectionIndexPreview(at: sectionIndexView.centerY(for: index))
sectionIndexPreview.isHidden = false
sectionIndexPreview.alpha = 1
if changed && sectionIndexHapticsEnabled {
@@ -929,6 +957,23 @@ final class NativeListView: UIView {
}
}
+ private func positionSectionIndexPreview(at sectionIndexY: CGFloat) {
+ layoutIfNeeded()
+ let targetY = sectionIndexView.convert(
+ CGPoint(x: sectionIndexView.bounds.midX, y: sectionIndexY),
+ to: self
+ ).y
+ let safeFrame = safeAreaLayoutGuide.layoutFrame
+ let halfHeight = Self.sectionIndexPreviewHeight / 2
+ let minimumY = safeFrame.minY + halfHeight
+ let maximumY = max(minimumY, safeFrame.maxY - halfHeight)
+ let clampedY = targetY.clamped(to: minimumY...maximumY)
+ sectionIndexPreview.transform = CGAffineTransform(
+ translationX: 0,
+ y: clampedY - sectionIndexPreview.center.y
+ )
+ }
+
private func syncSectionIndexToVisibleRows() {
guard !sectionIndexScrubbing, !sectionIndexEntries.isEmpty else { return }
let firstVisible = collectionView.indexPathsForVisibleItems.map(\.item).min() ?? 0
@@ -985,7 +1030,9 @@ final class NativeListView: UIView {
updateSelection(target: NativeSelectionTarget(scope: "row", key: item.key), sourceKey: item.key)
return
}
- if item.type == "action" {
+ if item.type == "market", !item.data.string("pressActionKey").isEmpty {
+ emit(onRowAction, rowActionPayload(item: item, actionKey: item.data.string("pressActionKey"), origin: origin))
+ } else if item.type == "action" {
emit(onRowAction, rowActionPayload(item: item, actionKey: item.data.string("actionKey"), origin: origin))
} else if item.type == "system", item.data.string("variant") == "retry" {
emit(onRowAction, rowActionPayload(item: item, actionKey: item.data.string("actionKey"), origin: origin))
@@ -994,6 +1041,20 @@ final class NativeListView: UIView {
}
}
+ @objc private func marketLongPressChanged(_ gesture: UILongPressGestureRecognizer) {
+ guard gesture.state == .began else { return }
+ let point = gesture.location(in: collectionView)
+ guard let indexPath = collectionView.indexPathForItem(at: point),
+ let item = config?.items[safe: indexPath.item],
+ item.type == "market",
+ !item.data.bool("disabled") else { return }
+ let actionKey = item.data.string("longPressActionKey")
+ guard !actionKey.isEmpty else { return }
+ let origin = (collectionView.cellForItem(at: indexPath) as? NativeListCell)?.rowActionOrigin()
+ origin?.windowPoint = gesture.location(in: window)
+ handleAction(item: item, actionKey: actionKey, target: nil, origin: origin)
+ }
+
private func handleAction(
item: NativeListItem,
actionKey: String,
@@ -1267,10 +1328,18 @@ final class NativeListView: UIView {
? 56
: config?.layout == "linear" ? 30 : 36
case "system":
- switch item.data.string("variant") {
- case "noMatch", "end": base = 36
- case "retry": base = 44
- default: base = 56
+ if item.data.string("variant") == "loading" && item.data.string("loadingStyle") == "skeleton" {
+ base = 56
+ } else if item.data.string("variant") == "loading" && item.data.string("loadingStyle") == "spinner" {
+ base = 52
+ } else if item.data.string("presentation") == "market" {
+ base = item.data.string("variant") == "loading" ? 68 : 44
+ } else {
+ switch item.data.string("variant") {
+ case "noMatch", "end": base = 36
+ case "retry": base = 44
+ default: base = 56
+ }
}
case "action":
base = item.data.string("presentation") == "accountSelector"
@@ -1280,6 +1349,14 @@ final class NativeListView: UIView {
base = item.data.dictionaries("columns").contains {
!$0.string("secondaryText").isEmpty
} ? 60 : 56
+ case "market":
+ let style = item.data.dictionary("style")
+ let imageHeight = CGFloat(style?.dictionary("image")?.double(
+ "height",
+ default: item.data.string("variant") == "stock" ? 40 : 32
+ ) ?? (item.data.string("variant") == "stock" ? 40 : 32))
+ let verticalPadding = CGFloat(style?.double("verticalPadding", default: 12) ?? 12)
+ base = max(item.data.string("variant") == "stock" ? 72 : 68, imageHeight + verticalPadding * 2)
default:
if item.type == "identity", !item.data.string("tertiary").isEmpty {
base = 72
@@ -1401,6 +1478,9 @@ final class NativeListView: UIView {
? "rtl"
: "ltr",
]
+ if let point = origin.windowPoint {
+ anchor["windowPoint"] = ["x": point.x, "y": point.y]
+ }
if let slot = origin.slot { anchor["slot"] = slot }
return anchor
}
@@ -1490,6 +1570,16 @@ final class NativeListView: UIView {
}
override func gestureRecognizerShouldBegin(_ gestureRecognizer: UIGestureRecognizer) -> Bool {
+ if gestureRecognizer === reorderLongPress || gestureRecognizer === marketLongPress {
+ let point = gestureRecognizer.location(in: collectionView)
+ guard let indexPath = collectionView.indexPathForItem(at: point),
+ let item = item(at: indexPath),
+ !item.data.bool("disabled") else { return false }
+ if gestureRecognizer === reorderLongPress {
+ return config?.reorderable == true && item.isReorderable
+ }
+ return item.type == "market" && !item.data.string("longPressActionKey").isEmpty
+ }
guard gestureRecognizer === listBodyGestureGuard,
let pan = gestureRecognizer as? UIPanGestureRecognizer else { return true }
let velocity = pan.velocity(in: collectionView)
@@ -1608,6 +1698,14 @@ extension NativeListView: UICollectionViewDelegateFlowLayout {
return !item.data.bool("disabled")
}
+ func collectionView(_ collectionView: UICollectionView, didHighlightItemAt indexPath: IndexPath) {
+ guard let item = config?.items[safe: indexPath.item], item.type == "market" else { return }
+ let actionKey = item.data.string("pressInActionKey")
+ guard !actionKey.isEmpty else { return }
+ let origin = (collectionView.cellForItem(at: indexPath) as? NativeListCell)?.rowActionOrigin()
+ handleAction(item: item, actionKey: actionKey, target: nil, origin: origin)
+ }
+
func collectionView(_ collectionView: UICollectionView, shouldSelectItemAt indexPath: IndexPath) -> Bool {
guard let item = config?.items[safe: indexPath.item] else { return false }
return !item.data.bool("disabled")
@@ -1748,9 +1846,81 @@ private struct NativeListSectionIndexEntry {
let position: Int
}
+private final class NativeListSectionIndexPreviewView: UIView {
+ private let shapeLayer = CAShapeLayer()
+ private let label = UILabel()
+
+ var text: String? {
+ get { label.text }
+ set { label.text = newValue }
+ }
+
+ override init(frame: CGRect) {
+ super.init(frame: frame)
+ isUserInteractionEnabled = false
+ backgroundColor = .clear
+ layer.addSublayer(shapeLayer)
+ label.textAlignment = .center
+ label.adjustsFontForContentSizeCategory = true
+ label.font = nativeListFont(ofSize: 30)
+ label.isAccessibilityElement = false
+ addSubview(label)
+ }
+
+ required init?(coder: NSCoder) {
+ fatalError("init(coder:) has not been implemented")
+ }
+
+ func configure(fillColor: UIColor, textColor: UIColor) {
+ shapeLayer.fillColor = fillColor.cgColor
+ label.textColor = textColor
+ }
+
+ override func layoutSubviews() {
+ super.layoutSubviews()
+ let height = bounds.height
+ let bodyWidth = min(height, max(0, bounds.width - 10))
+ let midY = height / 2
+ let bodyMidX = bodyWidth / 2
+ let shoulderX = bodyWidth * 0.92
+ let path = UIBezierPath()
+ path.move(to: CGPoint(x: bodyMidX, y: 0))
+ path.addCurve(
+ to: CGPoint(x: 0, y: midY),
+ controlPoint1: CGPoint(x: bodyWidth * 0.22, y: 0),
+ controlPoint2: CGPoint(x: 0, y: height * 0.22)
+ )
+ path.addCurve(
+ to: CGPoint(x: bodyMidX, y: height),
+ controlPoint1: CGPoint(x: 0, y: height * 0.78),
+ controlPoint2: CGPoint(x: bodyWidth * 0.22, y: height)
+ )
+ path.addCurve(
+ to: CGPoint(x: shoulderX, y: height * 0.75),
+ controlPoint1: CGPoint(x: bodyWidth * 0.72, y: height),
+ controlPoint2: CGPoint(x: bodyWidth * 0.86, y: height * 0.88)
+ )
+ path.addLine(to: CGPoint(x: bounds.width, y: midY))
+ path.addLine(to: CGPoint(x: shoulderX, y: height * 0.25))
+ path.addCurve(
+ to: CGPoint(x: bodyMidX, y: 0),
+ controlPoint1: CGPoint(x: bodyWidth * 0.86, y: height * 0.12),
+ controlPoint2: CGPoint(x: bodyWidth * 0.72, y: 0)
+ )
+ path.close()
+ shapeLayer.frame = bounds
+ shapeLayer.path = path.cgPath
+ label.frame = CGRect(x: 0, y: 0, width: bodyWidth, height: height)
+ }
+}
+
// OneKey patch: arbitrate index scrubbing against ancestor dismissal gestures.
// private final class NativeListSectionIndexView: UIControl {
private final class NativeListSectionIndexView: UIControl, UIGestureRecognizerDelegate {
+ private static let edgePadding: CGFloat = 8
+ private static let labelSize: CGFloat = 14
+ private static let labelSpacing: CGFloat = 16
+
var onSelect: ((Int, Bool) -> Void)?
var onInteractionEnded: (() -> Void)?
private var titles: [String] = []
@@ -1833,16 +2003,28 @@ private final class NativeListSectionIndexView: UIControl, UIGestureRecognizerDe
override func layoutSubviews() {
super.layoutSubviews()
guard !labels.isEmpty else { return }
- let height = min(16, max(8, bounds.height / CGFloat(labels.count)))
- let originY = indexOriginY(cellHeight: height, count: labels.count)
- for (index, label) in labels.enumerated() {
+ let metrics = indexMetrics(count: labels.count)
+ let visibleIndices = visibleLabelIndices(
+ count: labels.count,
+ trackHeight: metrics.trackHeight
+ )
+ labels.forEach { $0.isHidden = true }
+ for (visibleIndex, index) in visibleIndices.sorted().enumerated() {
+ let label = labels[index]
+ label.isHidden = false
+ let centerY = visibleLabelCenterY(
+ visibleIndex: visibleIndex,
+ visibleCount: visibleIndices.count,
+ metrics: metrics
+ )
label.frame = CGRect(
- x: 6,
- y: originY + CGFloat(index) * height,
- width: 20,
- height: height
+ x: bounds.width - Self.labelSize - 3,
+ y: centerY - Self.labelSize / 2,
+ width: Self.labelSize,
+ height: Self.labelSize
)
}
+ updateLabelStyles()
}
override func beginTracking(_ touch: UITouch, with event: UIEvent?) -> Bool {
@@ -1879,25 +2061,75 @@ private final class NativeListSectionIndexView: UIControl, UIGestureRecognizerDe
}
private func select(at y: CGFloat, interacting: Bool) {
- let height = min(16, max(8, bounds.height / CGFloat(titles.count)))
- let originY = indexOriginY(cellHeight: height, count: titles.count)
- let index = Int(floor((y - originY) / height)).clamped(to: 0...(titles.count - 1))
+ let metrics = indexMetrics(count: titles.count)
+ guard metrics.trackHeight > 0 else { return }
+ let visibleIndices = visibleLabelIndices(
+ count: titles.count,
+ trackHeight: metrics.trackHeight
+ ).sorted()
+ let visibleTrackHeight = min(
+ metrics.trackHeight,
+ Self.labelSpacing * CGFloat(visibleIndices.count)
+ )
+ let visibleOriginY = metrics.originY + (metrics.trackHeight - visibleTrackHeight) / 2
+ let progress = ((y - visibleOriginY) / visibleTrackHeight).clamped(to: 0...1)
+ let slot = Int(floor(progress * CGFloat(visibleIndices.count)))
+ .clamped(to: 0...(visibleIndices.count - 1))
+ let index = visibleIndices[slot]
if interacting && lastTouchIndex == index { return }
lastTouchIndex = interacting ? index : nil
select(index: index, interacting: interacting)
}
- private func indexOriginY(cellHeight: CGFloat, count: Int) -> CGFloat {
- let totalHeight = cellHeight * CGFloat(count)
- let centeredOriginY = (bounds.height - totalHeight) / 2
- guard centeredInWindow, let window else { return centeredOriginY }
+ func centerY(for index: Int) -> CGFloat {
+ entryCenterY(index: index, metrics: indexMetrics(count: titles.count))
+ }
+
+ private func indexMetrics(count: Int) -> (originY: CGFloat, trackHeight: CGFloat) {
+ guard count > 0 else { return (bounds.midY, 0) }
+ let availableHeight = max(0, bounds.height - Self.edgePadding * 2)
+ let trackHeight = min(availableHeight, Self.labelSpacing * CGFloat(count))
+ let centeredOriginY = (bounds.height - trackHeight) / 2
+ guard centeredInWindow, let window else { return (centeredOriginY, trackHeight) }
let windowCenterY = window.safeAreaLayoutGuide.layoutFrame.midY
let localCenterY = convert(CGPoint(x: 0, y: windowCenterY), from: window).y
- return (localCenterY - totalHeight / 2).clamped(
- to: 0...max(0, bounds.height - totalHeight)
+ return (
+ (localCenterY - trackHeight / 2).clamped(
+ to: Self.edgePadding...max(Self.edgePadding, bounds.height - Self.edgePadding - trackHeight)
+ ),
+ trackHeight
)
}
+ private func entryCenterY(
+ index: Int,
+ metrics: (originY: CGFloat, trackHeight: CGFloat)
+ ) -> CGFloat {
+ guard !titles.isEmpty else { return bounds.midY }
+ return metrics.originY + metrics.trackHeight * (CGFloat(index) + 0.5) / CGFloat(titles.count)
+ }
+
+ private func visibleLabelCenterY(
+ visibleIndex: Int,
+ visibleCount: Int,
+ metrics: (originY: CGFloat, trackHeight: CGFloat)
+ ) -> CGFloat {
+ let visibleTrackHeight = min(metrics.trackHeight, Self.labelSpacing * CGFloat(visibleCount))
+ let visibleOriginY = metrics.originY + (metrics.trackHeight - visibleTrackHeight) / 2
+ return visibleOriginY
+ + visibleTrackHeight * (CGFloat(visibleIndex) + 0.5) / CGFloat(max(visibleCount, 1))
+ }
+
+ private func visibleLabelIndices(count: Int, trackHeight: CGFloat) -> Set {
+ guard count > 0 else { return [] }
+ let maxVisible = max(1, Int(floor(trackHeight / Self.labelSpacing)))
+ guard count > maxVisible else { return Set(0.. 1 else { return [0] }
+ return Set((0..
diff --git a/native-views/react-native-native-list/package.json b/native-views/react-native-native-list/package.json
index 860924e69..1f0ae5aa8 100644
--- a/native-views/react-native-native-list/package.json
+++ b/native-views/react-native-native-list/package.json
@@ -1,6 +1,6 @@
{
"name": "@onekeyfe/react-native-native-list",
- "version": "3.0.114",
+ "version": "3.0.118",
"description": "Template-driven native RecyclerView and UICollectionView for React Native",
"source": "./src/index.ts",
"main": "./lib/module/index.js",
@@ -73,6 +73,7 @@
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.4",
"jest": "^29.7.0",
+ "jsdom": "26.1.0",
"nitrogen": "0.37.0",
"prettier": "^2.8.8",
"react": "19.2.3",
@@ -82,7 +83,8 @@
"typescript": "^5.9.2"
},
"peerDependencies": {
- "@onekeyfe/react-native-image": "3.0.114",
+ "@onekeyfe/react-native-image": "3.0.118",
+ "@onekeyfe/react-native-native-logger": "3.0.118",
"react": "*",
"react-native": "*",
"react-native-nitro-modules": "0.37.0"
diff --git a/native-views/react-native-native-list/src/NativeList.tsx b/native-views/react-native-native-list/src/NativeList.tsx
index 68d21cd08..0e0eaf8e7 100644
--- a/native-views/react-native-native-list/src/NativeList.tsx
+++ b/native-views/react-native-native-list/src/NativeList.tsx
@@ -20,6 +20,7 @@ import type {
} from './NativeList.nitro';
import type {
ActionAnchorInvalidatedEvent,
+ ImageSource,
RowActionEvent,
SelectionDeltaEvent,
ReorderEvent,
@@ -64,6 +65,27 @@ const NativeListHost = getHostComponent<
NativeListMethods
>('NativeList', () => NativeListConfig);
+export function preloadNativeListAvatarImages(
+ sources: readonly ImageSource[]
+): Promise {
+ return OneKeyImageCache.preload(
+ sources.map((source) => ({
+ uri: source.uri,
+ headers: source.headers,
+ resizeWidth: source.width,
+ resizeHeight: source.height,
+ optimizeTos: source.optimizeTos !== false,
+ overscan: source.overscan,
+ cachePolicy:
+ source.cachePolicy === 'memory'
+ ? OneKeyImageCachePolicy.MEMORY
+ : source.cachePolicy === 'disk'
+ ? OneKeyImageCachePolicy.DISK
+ : OneKeyImageCachePolicy.MEMORY_DISK,
+ }))
+ );
+}
+
function parsePayload(payloadJson: string): T {
return JSON.parse(payloadJson) as T;
}
@@ -151,21 +173,7 @@ export const NativeList = forwardRef(
useEffect(() => {
avatarLifecycle.current = 'mounted';
const queue = new NativeAvatarPrefetchQueue((source) =>
- OneKeyImageCache.preload([
- {
- uri: source.uri,
- headers: source.headers,
- resizeWidth: source.width,
- resizeHeight: source.height,
- optimizeTos: false,
- cachePolicy:
- source.cachePolicy === 'memory'
- ? OneKeyImageCachePolicy.MEMORY
- : source.cachePolicy === 'disk'
- ? OneKeyImageCachePolicy.DISK
- : OneKeyImageCachePolicy.MEMORY_DISK,
- },
- ])
+ preloadNativeListAvatarImages([source])
);
avatarQueueRef.current = queue;
updateAvatarPrefetchRef.current();
diff --git a/native-views/react-native-native-list/src/NativeList.web.tsx b/native-views/react-native-native-list/src/NativeList.web.tsx
index 5fd274c1b..2254d2df6 100644
--- a/native-views/react-native-native-list/src/NativeList.web.tsx
+++ b/native-views/react-native-native-list/src/NativeList.web.tsx
@@ -9,7 +9,7 @@ import React, {
} from 'react';
import { View } from 'react-native';
import type { NativeListProps, NativeListRef } from './NativeList.types';
-import type { NativeListSnapshot, RowPatch } from './models';
+import type { ImageSource, NativeListSnapshot, RowPatch } from './models';
import {
normalizeIndexScroll,
normalizeKeyScroll,
@@ -24,6 +24,10 @@ import {
NativeListWebEngine,
type NativeListWebCallbacks,
} from './web/NativeListWebEngine';
+import {
+ acquireNativeListAvatar,
+ canonicalNativeListAvatarUri,
+} from './web/NativeListWebAvatarCache';
export type { NativeListProps, NativeListRef } from './NativeList.types';
export type {
@@ -39,6 +43,39 @@ export type {
ScrollToOffsetParams,
} from './NativeList.types';
+export function preloadNativeListAvatarImages(
+ sources: readonly ImageSource[]
+): Promise {
+ if (typeof document === 'undefined') return Promise.resolve(false);
+ const uris = [
+ ...new Set(
+ sources
+ .map((source) => canonicalNativeListAvatarUri(source.uri))
+ .filter((uri): uri is string => uri !== undefined)
+ ),
+ ];
+ if (!uris.length) return Promise.resolve(false);
+ return Promise.all(
+ uris.map(
+ (uri) =>
+ new Promise((resolve) => {
+ let release: (() => void) | undefined;
+ const settle = (success: boolean) => {
+ resolve(success);
+ queueMicrotask(() => release?.());
+ };
+ release = acquireNativeListAvatar(
+ document,
+ uri,
+ () => settle(true),
+ () => settle(false),
+ 0
+ );
+ })
+ )
+ ).then((results) => results.every(Boolean));
+}
+
export const NativeList = forwardRef(
function NativeList(
{
diff --git a/native-views/react-native-native-list/src/__tests__/NativeList.ref.test.tsx b/native-views/react-native-native-list/src/__tests__/NativeList.ref.test.tsx
index 0d8e1d1af..dd93e30b3 100644
--- a/native-views/react-native-native-list/src/__tests__/NativeList.ref.test.tsx
+++ b/native-views/react-native-native-list/src/__tests__/NativeList.ref.test.tsx
@@ -38,6 +38,11 @@ jest.mock('../web/NativeListWebEngine', () => ({
NativeListWebEngine: jest.fn(() => mockWebEngine),
}));
+jest.mock('../web/NativeListWebAvatarCache', () => ({
+ acquireNativeListAvatar: jest.fn(() => jest.fn()),
+ canonicalNativeListAvatarUri: jest.fn((uri: string) => uri.trim()),
+}));
+
jest.mock('@onekeyfe/react-native-image', () => ({
OneKeyImageCache: { preload: jest.fn().mockResolvedValue(true) },
OneKeyImageCachePolicy: {
diff --git a/native-views/react-native-native-list/src/__tests__/NativeList.web.test.ts b/native-views/react-native-native-list/src/__tests__/NativeList.web.test.ts
index e8cde9186..eade7da2e 100644
--- a/native-views/react-native-native-list/src/__tests__/NativeList.web.test.ts
+++ b/native-views/react-native-native-list/src/__tests__/NativeList.web.test.ts
@@ -1,4 +1,9 @@
-import type { IdentityRow, NativeListSnapshot, RowModel } from '../models';
+import type {
+ IdentityRow,
+ MarketRow,
+ NativeListSnapshot,
+ RowModel,
+} from '../models';
import {
WEB_LIST_CSS,
WEB_REORDER_ANIMATION,
@@ -7,14 +12,20 @@ import {
estimateWebRowHeight,
hasExceededWebReorderMouseThreshold,
isWebRowReorderable,
+ isWebMarketQuotePatch,
moveWebReorderRow,
+ resolveWebMarketLayoutStyle,
+ resolveWebCollapsiblePagerRawOffset,
+ resolveWebCollapsiblePagerScrollMetrics,
visibleWebLayoutItems,
webReorderAutoScrollVelocity,
webReorderEventForRows,
webLayoutItemsForMount,
webActionAnchorPayload,
+ webMarketImageBindDeltaForPatches,
webRowRenderSignature,
webWalletGroupReorderBadge,
+ WEB_MARKET_VERIFIED_PATH,
} from '../web/NativeListWebEngine';
jest.mock('../web/NativeListWebAvatarCache', () => ({
@@ -28,6 +39,27 @@ const image = {
height: 40,
} as const;
+const market: MarketRow = {
+ type: 'market',
+ key: 'market-btc',
+ variant: 'token',
+ leading: {
+ kind: 'token',
+ image,
+ networkImage: { ...image, width: 16, height: 16 },
+ },
+ title: 'BTC',
+ leadingAction: {
+ kind: 'icon',
+ name: 'StarOutline',
+ actionKey: 'market.favorite',
+ },
+ subtitle: '$1.23B',
+ price: '$64,230.00',
+ change: { text: '+2.40%', tone: 'positive' },
+ badges: [{ key: 'community', iconName: 'verified', tone: 'success' }],
+};
+
const rows: readonly RowModel[] = [
{
type: 'sectionHeader',
@@ -145,6 +177,137 @@ function snapshot(
}
describe('NativeList pure DOM web layout', () => {
+ it('uses list-relative offsets inside a collapsible pager viewport', () => {
+ expect(resolveWebCollapsiblePagerScrollMetrics(134, 800, 134, 120)).toEqual({
+ offset: 0,
+ viewportLength: 680,
+ });
+ expect(resolveWebCollapsiblePagerScrollMetrics(734, 800, 134, 120)).toEqual({
+ offset: 600,
+ viewportLength: 680,
+ });
+ expect(resolveWebCollapsiblePagerRawOffset(600, 134)).toBe(734);
+ expect(resolveWebCollapsiblePagerScrollMetrics(-20, 80, -1, 120)).toEqual({
+ offset: 0,
+ viewportLength: 0,
+ });
+ });
+
+ it('distinguishes first-load skeleton and pagination without changing legacy loading height', () => {
+ const loading = {
+ type: 'system',
+ key: 'loading',
+ variant: 'loading',
+ presentation: 'market',
+ } as const;
+ const list = snapshot({ kind: 'linear' }, [loading]);
+ expect(estimateWebRowHeight(loading, list, 402)).toBe(68);
+ expect(
+ estimateWebRowHeight({ ...loading, loadingStyle: 'skeleton' }, list, 402)
+ ).toBe(56);
+ expect(
+ estimateWebRowHeight({ ...loading, loadingStyle: 'spinner' }, list, 402)
+ ).toBe(52);
+ });
+
+ it('keeps Market defaults, verified glyph, patch boundary, and style reset deterministic', () => {
+ const linear = snapshot({ kind: 'linear' }, [market]);
+ expect(estimateWebRowHeight(market, linear, 390)).toBe(68);
+ expect(
+ estimateWebRowHeight(
+ { ...market, key: 'stock', variant: 'stock' },
+ linear,
+ 390
+ )
+ ).toBe(72);
+ expect(WEB_LIST_CSS).toContain('width:80px;height:32px');
+ expect(WEB_MARKET_VERIFIED_PATH).toContain('M9.483 11.458v3.5h-1v-3.5z');
+ expect(
+ isWebMarketQuotePatch({
+ type: 'market',
+ key: market.key,
+ changes: {
+ revision: 2,
+ price: '$64,240.00',
+ change: { text: '+2.41%', tone: 'positive' },
+ },
+ })
+ ).toBe(true);
+ const quotePatches = [
+ {
+ type: 'market',
+ key: market.key,
+ changes: {
+ revision: 2,
+ price: '$64,240.00',
+ change: { text: '+2.41%', tone: 'positive' },
+ },
+ },
+ ] as const;
+ const imageBindCountBeforeQuote = 1;
+ expect(
+ imageBindCountBeforeQuote +
+ webMarketImageBindDeltaForPatches(quotePatches)
+ ).toBe(imageBindCountBeforeQuote);
+ expect(
+ isWebMarketQuotePatch({
+ type: 'market',
+ key: market.key,
+ changes: { style: { changeWidth: 88 } },
+ })
+ ).toBe(false);
+ expect(
+ webMarketImageBindDeltaForPatches([
+ {
+ type: 'market',
+ key: market.key,
+ changes: { style: { changeWidth: 88 } },
+ },
+ ])
+ ).toBe(1);
+ const styled = {
+ ...market,
+ style: {
+ horizontalPadding: 24,
+ image: { width: 36, height: 38, shape: 'rounded' },
+ changeWidth: 88,
+ changeHeight: 36,
+ changeCornerRadius: 12,
+ },
+ } as MarketRow;
+ expect(resolveWebMarketLayoutStyle(styled)).toMatchObject({
+ horizontalPadding: 24,
+ imageWidth: 36,
+ imageHeight: 38,
+ imageCornerRadius: 8,
+ changeWidth: 88,
+ changeHeight: 36,
+ changeCornerRadius: 12,
+ });
+ expect(resolveWebMarketLayoutStyle(market)).toEqual({
+ horizontalPadding: 20,
+ verticalPadding: 12,
+ leadingGap: 14,
+ titleBadgeGap: 4,
+ trailingGap: 8,
+ imageWidth: 32,
+ imageHeight: 32,
+ imageCornerRadius: 16,
+ changeWidth: 80,
+ changeHeight: 32,
+ changeCornerRadius: 8,
+ });
+ expect(webRowRenderSignature(styled)).not.toBe(
+ webRowRenderSignature(market)
+ );
+ expect(
+ webRowRenderSignature({
+ ...market,
+ leadingAction: { ...market.leadingAction!, name: 'StarSolid' },
+ })
+ ).not.toBe(webRowRenderSignature(market));
+ });
+
it('keeps the disabled section-index rail out of pointer hit testing', () => {
expect(WEB_LIST_CSS).toContain(
'.ok-native-list-index-rail[hidden]{display:none}'
diff --git a/native-views/react-native-native-list/src/__tests__/selector-parity.cjs b/native-views/react-native-native-list/src/__tests__/selector-parity.cjs
index 820bffdde..13531b312 100644
--- a/native-views/react-native-native-list/src/__tests__/selector-parity.cjs
+++ b/native-views/react-native-native-list/src/__tests__/selector-parity.cjs
@@ -18,6 +18,99 @@ const { validateSnapshot, serializePatches } = require('../validation.ts');
const { NativeListWebEngine, computeWebListLayout, estimateWebRowHeight } = require('../web/NativeListWebEngine.ts');
const identity = (key, fields = {}) => ({ type: 'identity', key, title: key, leading: { kind: 'network' }, ...fields });
const snapshot = (rows, fields = {}) => ({ schemaVersion: 1, generation: 1, layout: { kind: 'sectioned' }, rows, ...fields });
+
+test('compact native indexes lay out and select retained labels by visible order', () => {
+ const ios = fs.readFileSync(path.join(packageRoot, 'ios/RNCNativeListView.swift'), 'utf8');
+ const android = fs.readFileSync(path.join(packageRoot, 'android/src/main/java/com/onekey/nativelist/NativeListView.kt'), 'utf8');
+ assert.match(ios, /for \(visibleIndex, index\) in visibleIndices\.sorted\(\)\.enumerated\(\)/);
+ assert.match(ios, /visibleLabelCenterY\(\s*visibleIndex: visibleIndex,/);
+ assert.match(ios, /let index = visibleIndices\[slot\]/);
+ assert.match(android, /visibleIndices\.forEachIndexed \{ visibleIndex, index ->/);
+ assert.match(android, /val index = visibleIndices\[slot\]/);
+});
+
+test('native Market quote updates clear stale attributed text and preserve open anchors', () => {
+ const ios = fs.readFileSync(path.join(packageRoot, 'ios/NativeListCell.swift'), 'utf8');
+ const android = fs.readFileSync(path.join(packageRoot, 'android/src/main/java/com/onekey/nativelist/NativeListView.kt'), 'utf8');
+ assert.match(ios, /price\.setAttributedTitle\(nil, for: \.normal\)\s+price\.setTitle/);
+ assert.match(android, /if \(!marketQuoteOnly\) invalidateActionAnchor\("snapshot"\)/);
+});
+
+test('native Market patch parity retains layout, reuse, refresh, and action contracts', () => {
+ const adapter = fs.readFileSync(
+ path.join(
+ packageRoot,
+ 'android/src/main/java/com/onekey/nativelist/NativeListAdapter.kt'
+ ),
+ 'utf8'
+ );
+ const androidRow = fs.readFileSync(
+ path.join(
+ packageRoot,
+ 'android/src/main/java/com/onekey/nativelist/NativeListRowView.kt'
+ ),
+ 'utf8'
+ );
+ const androidList = fs.readFileSync(
+ path.join(
+ packageRoot,
+ 'android/src/main/java/com/onekey/nativelist/NativeListView.kt'
+ ),
+ 'utf8'
+ );
+ const iosCell = fs.readFileSync(
+ path.join(packageRoot, 'ios/NativeListCell.swift'),
+ 'utf8'
+ );
+ const iosList = fs.readFileSync(
+ path.join(packageRoot, 'ios/RNCNativeListView.swift'),
+ 'utf8'
+ );
+ const models = fs.readFileSync(
+ path.join(packageRoot, 'src/models.ts'),
+ 'utf8'
+ );
+ const validation = fs.readFileSync(
+ path.join(packageRoot, 'src/validation.ts'),
+ 'utf8'
+ );
+
+ assert.match(adapter, /fun marketSourceEdgePx\(position: Int\): Double/);
+ assert.match(androidRow, /windowPointPixels: android\.graphics\.PointF\?/);
+ assert.match(androidRow, /BackgroundStyleApplicator\.clipToPaddingBox/);
+ assert.match(androidRow, /private val marketSubtitleLine/);
+ assert.match(androidRow, /private fun applyMarketTextMetrics/);
+ assert.match(androidRow, /optString\("actionText", "Retry"\)/);
+ assert.match(androidList, /private val refreshIndicatorTravelPx/);
+ assert.match(androidList, /private fun updateRefreshIndicatorOffset/);
+ assert.match(androidList, /anchor\.put\("windowPoint"/);
+ assert.match(iosCell, /var windowPoint: CGPoint\?/);
+ assert.match(iosCell, /private let marketSubtitleStack/);
+ assert.match(iosCell, /NativeListAccessoryButton\(type: \.system\)/);
+ assert.match(iosCell, /string\("titleBadgeLayout"\) == "inline"/);
+ assert.match(iosCell, /string\("actionText", default: "Retry"\)/);
+ assert.match(iosList, /origin\?\.windowPoint = gesture\.location/);
+ for (const field of [
+ 'titleBadgeLayout',
+ 'contentTrailingGap',
+ 'subtitleTrailingPadding',
+ 'subtitlePrefix',
+ 'actionText',
+ ]) {
+ assert.match(models, new RegExp(field));
+ assert.match(validation, new RegExp(field));
+ }
+ assert.match(models, /windowPoint/);
+});
+
+test('Android NativeList declares its native logger project as a peer dependency', () => {
+ const manifest = require('../../package.json');
+ const loggerManifest = require('../../../../native-modules/native-logger/package.json');
+ const gradle = fs.readFileSync(path.join(packageRoot, 'android/build.gradle'), 'utf8');
+ assert.equal(manifest.peerDependencies['@onekeyfe/react-native-native-logger'], loggerManifest.version);
+ assert.match(gradle, /project\(":onekeyfe_react-native-native-logger"\)/);
+});
+
function mount(rows, props = {}) {
const dom = new JSDOM('', { pretendToBeVisual: true });
const view = dom.window;
@@ -112,13 +205,19 @@ test('compact web index keeps every section reachable without overflowing short
assert.equal(rail.dataset.compact, 'true');
assert(buttons.length < letters.length);
assert.equal(page.document.querySelector('[aria-label="Jump to H"]'), null);
+ assert.equal(
+ page.document.querySelector('.ok-native-list-index-preview'),
+ null,
+ );
assert.equal(page.engine.layout.items[0].width, 304);
+ const visibleTops = buttons.map(button => Number.parseFloat(button.style.top));
+ assert(
+ visibleTops.slice(1).every((top, index) => top - visibleTops[index] === 16),
+ );
const targetIndex = 7;
- const targetY = 20 + 8 + (targetIndex / (letters.length - 1)) * 144;
- const overlappingVisibleButton = rail.querySelector(
- '[data-section-entry-index="8"]',
- );
+ const targetY = 20 + 8 + ((targetIndex + 0.5) / letters.length) * 144;
+ const overlappingVisibleButton = buttons[0];
assert(overlappingVisibleButton);
overlappingVisibleButton.dispatchEvent(
new page.view.MouseEvent('pointerdown', {
@@ -134,9 +233,13 @@ test('compact web index keeps every section reachable without overflowing short
detail: 1,
}),
);
- assert.equal(
- page.document.querySelector('.ok-native-list-index-preview').textContent,
- 'H',
+ overlappingVisibleButton.dispatchEvent(
+ new page.view.MouseEvent('pointerup', {
+ bubbles: true,
+ buttons: 0,
+ clientX: 304,
+ clientY: targetY,
+ }),
);
assert.equal(viewport.scrollTop, targetIndex * 36);
@@ -184,6 +287,53 @@ test('search matches use info color and retain unhighlighted title text', () =>
assert.equal(page.document.querySelector('.ok-native-list-title').style.fontSize, '16px');
page.close();
});
+test('web Market rows render subtitle prefixes with independent metrics', () => {
+ const row = {
+ type: 'market',
+ key: 'btc',
+ variant: 'token',
+ leading: { kind: 'token' },
+ title: 'BTC',
+ subtitle: '$1.23B',
+ subtitlePrefix: {
+ text: 'Bitcoin',
+ gap: 6,
+ maxWidth: 96,
+ style: { fontSize: 11, lineHeight: 15, fontWeight: 'medium', color: '#123456' },
+ },
+ price: '$64,230.00',
+ change: { text: '+2.40%', tone: 'positive' },
+ };
+ const page = mount([row]);
+ try {
+ const line = page.document.querySelector('.ok-native-list-market-subtitle-line');
+ const prefix = line.querySelector('.ok-native-list-market-subtitle-prefix');
+ assert.equal(line.style.gap, '6px');
+ assert.equal(prefix.textContent, 'Bitcoin');
+ assert.equal(prefix.style.maxWidth, '96px');
+ assert.equal(prefix.style.fontSize, '11px');
+ assert.equal(prefix.style.lineHeight, '15px');
+ assert.equal(prefix.style.fontWeight, '500');
+ assert.equal(prefix.style.color, 'rgb(18, 52, 86)');
+ assert.equal(line.querySelector('.ok-native-list-market-subtitle').textContent, '$1.23B');
+ } finally {
+ page.close();
+ }
+
+ const prefixOnly = mount([{ ...row, key: 'eth', subtitle: undefined }]);
+ try {
+ assert.equal(
+ prefixOnly.document.querySelector('.ok-native-list-market-subtitle-prefix').textContent,
+ 'Bitcoin',
+ );
+ assert.equal(
+ prefixOnly.document.querySelector('.ok-native-list-market-subtitle'),
+ null,
+ );
+ } finally {
+ prefixOnly.close();
+ }
+});
test('subtitle supports a leading address separator and distinct caution tone', () => {
const page = mount([identity('x', { subtitleSegments: [{ text: 'Create address', tone: 'caution', separatorBefore: true }] })]);
assert.ok(page.document.querySelector('.ok-native-list-subtitle-segments').firstChild.classList.contains('ok-native-list-subtitle-dot'));
diff --git a/native-views/react-native-native-list/src/__tests__/validation.test.ts b/native-views/react-native-native-list/src/__tests__/validation.test.ts
index 888dbfd27..90d7b2297 100644
--- a/native-views/react-native-native-list/src/__tests__/validation.test.ts
+++ b/native-views/react-native-native-list/src/__tests__/validation.test.ts
@@ -1,6 +1,7 @@
import type {
ActionRow,
IdentityRow,
+ MarketRow,
MetricCardRow,
NativeListSnapshot,
NativeListTheme,
@@ -25,6 +26,61 @@ const row = (key: string): IdentityRow => ({
],
});
+const marketRow = (key = 'market-btc'): MarketRow => ({
+ type: 'market',
+ key,
+ variant: 'token',
+ leading: {
+ kind: 'token',
+ image: {
+ uri: 'https://example.com/btc.png',
+ width: 32,
+ height: 32,
+ },
+ networkImage: {
+ uri: 'https://example.com/bitcoin.png',
+ width: 16,
+ height: 16,
+ },
+ },
+ title: 'BTC',
+ leadingAction: {
+ kind: 'icon',
+ name: 'StarOutline',
+ actionKey: 'market.favorite',
+ accessibilityLabel: 'Add to favorites',
+ },
+ subtitle: '$1.23B',
+ subtitlePrefix: {
+ text: 'Bitcoin',
+ gap: 4,
+ maxWidth: 120,
+ style: { fontSize: 12, lineHeight: 16, fontWeight: 'regular' },
+ },
+ price: '$64,230.00',
+ change: { text: '+2.40%', tone: 'positive' },
+ badges: [
+ {
+ key: 'community',
+ iconName: 'verified',
+ tone: 'success',
+ actionKey: 'market.communityInfo',
+ accessibilityLabel: 'Community recognized',
+ style: {
+ fontSize: 10,
+ fontWeight: 'regular',
+ lineHeight: 16,
+ height: 16,
+ horizontalPadding: 4,
+ },
+ },
+ ],
+ pressActionKey: 'market.open',
+ pressInActionKey: 'market.prewarm',
+ longPressActionKey: 'market.menu',
+ diagnostics: { imageBindActionKey: 'market.imageBind' },
+});
+
const snapshot = (
rows: readonly RowModel[] = [row('btc'), row('eth')]
): NativeListSnapshot => ({
@@ -36,6 +92,164 @@ const snapshot = (
});
describe('NativeList model validation', () => {
+ it('accepts the bounded Market row, verified glyph, styles, and states', () => {
+ const styled: MarketRow = {
+ ...marketRow(),
+ style: {
+ horizontalPadding: 20,
+ verticalPadding: 12,
+ leadingGap: 14,
+ titleBadgeGap: 4,
+ titleBadgeLayout: 'inline',
+ trailingGap: 8,
+ contentTrailingGap: 12,
+ subtitleTrailingPadding: 8,
+ image: {
+ width: 32,
+ height: 32,
+ shape: 'circle',
+ contentFit: 'cover',
+ },
+ title: {
+ fontSize: 16,
+ fontWeight: 'medium',
+ lineHeight: 24,
+ lines: 1,
+ alignment: 'start',
+ },
+ change: { fontSize: 14, fontWeight: 'medium', lineHeight: 20 },
+ changeWidth: 80,
+ lineGap: 4,
+ changeHeight: 32,
+ changeCornerRadius: 8,
+ },
+ };
+ const states: RowModel[] = [
+ styled,
+ {
+ type: 'system',
+ key: 'loading',
+ variant: 'loading',
+ presentation: 'market',
+ },
+ {
+ type: 'system',
+ key: 'empty',
+ variant: 'noMatch',
+ presentation: 'market',
+ message: 'No assets',
+ },
+ {
+ type: 'system',
+ key: 'error',
+ variant: 'retry',
+ presentation: 'market',
+ message: 'Try again',
+ actionKey: 'market.retry',
+ actionText: 'Retry',
+ },
+ { type: 'system', key: 'end', variant: 'end', presentation: 'market' },
+ {
+ type: 'system',
+ key: 'skeleton',
+ variant: 'loading',
+ loadingStyle: 'skeleton',
+ },
+ {
+ type: 'system',
+ key: 'spinner',
+ variant: 'loading',
+ loadingStyle: 'spinner',
+ },
+ ];
+ expect(validateSnapshot(snapshot(states)).rows).toEqual(states);
+ expect(() =>
+ validateSnapshot(
+ snapshot([
+ {
+ type: 'system',
+ key: 'invalid',
+ variant: 'loading',
+ loadingStyle: 'unknown',
+ } as unknown as RowModel,
+ ])
+ )
+ ).toThrow('loadingStyle');
+ });
+
+ it('rejects arbitrary Market glyphs and out-of-range styles', () => {
+ expect(() =>
+ validateSnapshot(
+ snapshot([
+ {
+ ...marketRow(),
+ leadingAction: {
+ kind: 'icon',
+ name: 'StarOutline',
+ actionKey: '',
+ },
+ },
+ ])
+ )
+ ).toThrow('leadingAction');
+ expect(() =>
+ validateSnapshot(
+ snapshot([
+ {
+ ...marketRow(),
+ badges: [{ key: 'bad', iconName: 'star' }],
+ } as unknown as MarketRow,
+ ])
+ )
+ ).toThrow('iconName');
+ expect(() =>
+ validateSnapshot(
+ snapshot([{ ...marketRow(), style: { changeWidth: 240 } } as MarketRow])
+ )
+ ).toThrow('changeWidth');
+ expect(() =>
+ validateSnapshot(
+ snapshot([{ ...marketRow(), style: { lineGap: 17 } } as MarketRow])
+ )
+ ).toThrow('lineGap');
+ expect(() =>
+ validateSnapshot(
+ snapshot([
+ {
+ ...marketRow(),
+ style: { titleBadgeLayout: 'stacked' },
+ } as unknown as MarketRow,
+ ])
+ )
+ ).toThrow('titleBadgeLayout');
+ expect(() =>
+ validateSnapshot(
+ snapshot([
+ {
+ ...marketRow(),
+ subtitlePrefix: { text: 'Bitcoin', maxWidth: 321 },
+ },
+ ])
+ )
+ ).toThrow('subtitlePrefix.maxWidth');
+ expect(() =>
+ validateSnapshot(
+ snapshot([
+ {
+ ...marketRow(),
+ badges: [
+ {
+ key: 'oversized',
+ text: 'DEX',
+ style: { height: 65 },
+ },
+ ],
+ },
+ ])
+ )
+ ).toThrow('badges[0].style.height');
+ });
+
it('accepts amount plus checkbox on identity rows', () => {
expect(validateSnapshot(snapshot())).toBeDefined();
});
@@ -889,6 +1103,31 @@ describe('NativeList model validation', () => {
});
describe('NativeList patches', () => {
+ it('applies a Market quote patch without replacing its image descriptor', () => {
+ const initial = snapshot([marketRow()]);
+ const leading =
+ initial.rows[0]?.type === 'market' ? initial.rows[0].leading : undefined;
+ const next = applyRowPatches(initial, [
+ {
+ type: 'market',
+ key: 'market-btc',
+ changes: {
+ revision: 2,
+ price: '$64,240.00',
+ change: { text: '+2.41%', tone: 'positive' },
+ },
+ },
+ ]);
+ expect(next.rows[0]).toMatchObject({
+ revision: 2,
+ price: '$64,240.00',
+ change: { text: '+2.41%', tone: 'positive' },
+ });
+ expect(next.rows[0]?.type === 'market' && next.rows[0].leading).toBe(
+ leading
+ );
+ });
+
it('applies a keyed batch without changing row order or untouched identity', () => {
const initial = snapshot();
const patches: RowPatch[] = [
diff --git a/native-views/react-native-native-list/src/index.ts b/native-views/react-native-native-list/src/index.ts
index f81947514..9e615583d 100644
--- a/native-views/react-native-native-list/src/index.ts
+++ b/native-views/react-native-native-list/src/index.ts
@@ -1,4 +1,4 @@
-export { NativeList } from './NativeList';
+export { NativeList, preloadNativeListAvatarImages } from './NativeList';
export type {
ActionAnchorState,
NativeListProps,
diff --git a/native-views/react-native-native-list/src/models.ts b/native-views/react-native-native-list/src/models.ts
index 40c520971..723f9100c 100644
--- a/native-views/react-native-native-list/src/models.ts
+++ b/native-views/react-native-native-list/src/models.ts
@@ -33,6 +33,75 @@ export type BadgeModel = Readonly<{
tone?: 'neutral' | 'info' | 'success' | 'warning' | 'danger';
}>;
+export type MarketTextStyle = Readonly<{
+ fontSize?: number;
+ fontWeight?: 'regular' | 'medium' | 'semibold' | 'bold';
+ color?: string;
+ lineHeight?: number;
+ lines?: 1 | 2;
+ alignment?: 'start' | 'center' | 'end';
+}>;
+
+export type MarketImageStyle = Readonly<{
+ width?: number;
+ height?: number;
+ shape?: 'circle' | 'rounded' | 'square';
+ cornerRadius?: number;
+ contentFit?: ImageContentFit;
+}>;
+
+export type MarketRowStyle = Readonly<{
+ horizontalPadding?: number;
+ verticalPadding?: number;
+ leadingGap?: number;
+ /** Space between title and subtitle; 0 by default, bounded to 0..16. */
+ lineGap?: number;
+ titleBadgeGap?: number;
+ /** OneKey patch: keep badges next to the intrinsic title width. */
+ titleBadgeLayout?: 'inline';
+ trailingGap?: number;
+ /** OneKey patch: preserve separate Market content and subtitle insets. */
+ contentTrailingGap?: number;
+ subtitleTrailingPadding?: number;
+ image?: MarketImageStyle;
+ title?: MarketTextStyle;
+ subtitle?: MarketTextStyle;
+ price?: MarketTextStyle;
+ change?: MarketTextStyle;
+ changeWidth?: number;
+ changeHeight?: number;
+ changeCornerRadius?: number;
+}>;
+
+export type MarketBadgeModel = Readonly<{
+ key: string;
+ text?: string;
+ /** Finite native glyph set; currently only the community verified mark. */
+ iconName?: 'verified';
+ icon?: ImageSource;
+ tone?: 'neutral' | 'info' | 'success' | 'warning' | 'danger';
+ textColor?: string;
+ backgroundColor?: string;
+ actionKey?: string;
+ accessibilityLabel?: string;
+ /** OneKey patch: optional Market badge metrics; legacy native defaults remain unchanged. */
+ style?: Readonly<{
+ fontSize?: number;
+ fontWeight?: MarketTextStyle['fontWeight'];
+ lineHeight?: number;
+ height?: number;
+ horizontalPadding?: number;
+ }>;
+}>;
+
+export type MarketChangeModel = Readonly<{
+ text: string;
+ textSegments?: readonly ValueTextSegment[];
+ tone: 'positive' | 'negative' | 'neutral';
+ textColor?: string;
+ backgroundColor?: string;
+}>;
+
// OneKey patch: keep selector decoration and text data serializable.
export type SelectorTextSegment = Readonly<{
text: string;
@@ -272,6 +341,34 @@ export type DataRow = RowBase &
favoriteActive?: boolean;
}>;
+/** Native Market quote row. All values are already localized/formatted strings. */
+export type MarketRow = RowBase &
+ Readonly<{
+ type: 'market';
+ variant: 'token' | 'stock' | 'perp';
+ leadingAction?: Extract;
+ leading: LeadingVisual;
+ title: string;
+ subtitle?: string;
+ /** OneKey patch: localized name shrinks independently of the volume. */
+ subtitlePrefix?: Readonly<{
+ text: string;
+ gap?: number;
+ maxWidth?: number;
+ style?: MarketTextStyle;
+ }>;
+ subtitleSegments?: readonly ValueTextSegment[];
+ price: string;
+ priceSegments?: readonly ValueTextSegment[];
+ change: MarketChangeModel;
+ badges?: readonly MarketBadgeModel[];
+ pressActionKey?: string;
+ pressInActionKey?: string;
+ longPressActionKey?: string;
+ diagnostics?: Readonly<{ imageBindActionKey?: string }>;
+ style?: MarketRowStyle;
+ }>;
+
export type MediaTileRow = RowBase &
Readonly<{
type: 'mediaTile';
@@ -345,12 +442,20 @@ export type ActionRow = RowBase &
export type SystemRow = RowBase &
(
- | Readonly<{ type: 'system'; variant: 'loading'; message?: string }>
+ | Readonly<{
+ type: 'system';
+ variant: 'loading';
+ presentation?: 'market';
+ loadingStyle?: 'skeleton' | 'spinner';
+ message?: string;
+ }>
| Readonly<{
type: 'system';
variant: 'retry';
+ presentation?: 'market';
message: string;
actionKey: string;
+ actionText?: string;
}>
| Readonly<{
type: 'system';
@@ -359,8 +464,18 @@ export type SystemRow = RowBase &
message: string;
borderColor?: string;
}>
- | Readonly<{ type: 'system'; variant: 'noMatch'; message: string }>
- | Readonly<{ type: 'system'; variant: 'end'; message?: string }>
+ | Readonly<{
+ type: 'system';
+ variant: 'noMatch';
+ presentation?: 'market';
+ message: string;
+ }>
+ | Readonly<{
+ type: 'system';
+ variant: 'end';
+ presentation?: 'market';
+ message?: string;
+ }>
| Readonly<{ type: 'system'; variant: 'spacer'; height: number }>
);
@@ -371,6 +486,7 @@ export type RowModel =
| ActivityRow
| MessageRow
| DataRow
+ | MarketRow
| MediaTileRow
| MetricCardRow
| SectionHeaderRow
@@ -545,6 +661,30 @@ export type RowPatch =
>
>;
}>
+ | Readonly<{
+ type: 'market';
+ key: string;
+ changes: Partial<
+ Pick<
+ MarketRow,
+ | CommonPatchFields
+ | 'leadingAction'
+ | 'leading'
+ | 'title'
+ | 'subtitle'
+ | 'subtitleSegments'
+ | 'price'
+ | 'priceSegments'
+ | 'change'
+ | 'badges'
+ | 'pressActionKey'
+ | 'pressInActionKey'
+ | 'longPressActionKey'
+ | 'diagnostics'
+ | 'style'
+ >
+ >;
+ }>
| Readonly<{
type: 'mediaTile';
key: string;
@@ -629,6 +769,7 @@ export type RowPatch =
export type NativeListActionSource =
| 'row'
+ | 'marketBadge'
| 'leadingAction'
| 'trailingAccessory'
| 'footerAction'
@@ -646,6 +787,8 @@ export type NativeListActionAnchor = Readonly<{
token: string;
/** Window-relative logical units: CSS px on Web, points on iOS, dp on Android. */
windowRect: NativeListWindowRect;
+ /** Actual long-press point, in the same logical units as windowRect. */
+ windowPoint?: Readonly<{ x: number; y: number }>;
source: NativeListActionSource;
slot?: number;
generation: number;
diff --git a/native-views/react-native-native-list/src/validation.ts b/native-views/react-native-native-list/src/validation.ts
index 82b8c8cad..bd988bd37 100644
--- a/native-views/react-native-native-list/src/validation.ts
+++ b/native-views/react-native-native-list/src/validation.ts
@@ -3,6 +3,9 @@ import type {
IdentityRow,
ImageSource,
LeadingVisual,
+ MarketRow,
+ MarketRowStyle,
+ MarketTextStyle,
NativeListSnapshot,
RowModel,
RowPatch,
@@ -19,6 +22,7 @@ const MAX_IMAGE_HEADERS = 32;
const MAX_HEADER_LENGTH = 4096;
const MAX_SPACER_HEIGHT = 512;
const MAX_SECTION_INDEX_TITLE_LENGTH = 8;
+const MAX_MARKET_BADGES = 3;
function fail(path: string, message: string): never {
throw new Error(`NativeList ${path}: ${message}`);
@@ -109,6 +113,226 @@ function assertTextTone(tone: string | undefined, path: string): void {
}
}
+function assertBoundedStyleNumber(
+ value: number | undefined,
+ path: string,
+ min: number,
+ max: number
+): void {
+ if (
+ value !== undefined &&
+ (!Number.isFinite(value) || value < min || value > max)
+ ) {
+ fail(path, `must be within ${min}...${max}`);
+ }
+}
+
+function assertMarketTextStyle(
+ style: MarketTextStyle | undefined,
+ path: string
+): void {
+ if (!style) return;
+ assertBoundedStyleNumber(style.fontSize, `${path}.fontSize`, 8, 48);
+ assertBoundedStyleNumber(style.lineHeight, `${path}.lineHeight`, 8, 64);
+ if (
+ style.fontWeight !== undefined &&
+ !['regular', 'medium', 'semibold', 'bold'].includes(style.fontWeight)
+ ) {
+ fail(`${path}.fontWeight`, 'must be regular, medium, semibold, or bold');
+ }
+ if (
+ style.alignment !== undefined &&
+ !['start', 'center', 'end'].includes(style.alignment)
+ ) {
+ fail(`${path}.alignment`, 'must be start, center, or end');
+ }
+ if (style.lines !== undefined && ![1, 2].includes(style.lines)) {
+ fail(`${path}.lines`, 'must be 1 or 2');
+ }
+}
+
+function assertMarketStyle(
+ style: MarketRowStyle | undefined,
+ path: string
+): void {
+ if (!style) return;
+ for (const field of [
+ 'horizontalPadding',
+ 'verticalPadding',
+ 'leadingGap',
+ 'titleBadgeGap',
+ 'trailingGap',
+ 'contentTrailingGap',
+ 'subtitleTrailingPadding',
+ ] as const) {
+ assertBoundedStyleNumber(style[field], `${path}.${field}`, 0, 64);
+ }
+ // OneKey patch: validate the opt-in Market badge layout.
+ if (
+ style.titleBadgeLayout !== undefined &&
+ style.titleBadgeLayout !== 'inline'
+ ) {
+ fail(`${path}.titleBadgeLayout`, 'must be inline when provided');
+ }
+ assertBoundedStyleNumber(style.lineGap, `${path}.lineGap`, 0, 16);
+ assertBoundedStyleNumber(style.changeWidth, `${path}.changeWidth`, 1, 160);
+ assertBoundedStyleNumber(style.changeHeight, `${path}.changeHeight`, 1, 160);
+ assertBoundedStyleNumber(
+ style.changeCornerRadius,
+ `${path}.changeCornerRadius`,
+ 0,
+ 80
+ );
+ if (style.image) {
+ assertBoundedStyleNumber(style.image.width, `${path}.image.width`, 1, 160);
+ assertBoundedStyleNumber(
+ style.image.height,
+ `${path}.image.height`,
+ 1,
+ 160
+ );
+ assertBoundedStyleNumber(
+ style.image.cornerRadius,
+ `${path}.image.cornerRadius`,
+ 0,
+ 80
+ );
+ assertVisualShape(style.image.shape, `${path}.image.shape`);
+ if (
+ style.image.contentFit !== undefined &&
+ !['cover', 'contain', 'fill', 'center'].includes(style.image.contentFit)
+ ) {
+ fail(
+ `${path}.image.contentFit`,
+ 'must be cover, contain, fill, or center'
+ );
+ }
+ }
+ assertMarketTextStyle(style.title, `${path}.title`);
+ assertMarketTextStyle(style.subtitle, `${path}.subtitle`);
+ assertMarketTextStyle(style.price, `${path}.price`);
+ assertMarketTextStyle(style.change, `${path}.change`);
+}
+
+function assertMarketRow(row: MarketRow, path: string): void {
+ if (!['token', 'stock', 'perp'].includes(row.variant)) {
+ fail(`${path}.variant`, 'must be token, stock, or perp');
+ }
+ assertText(row.title, `${path}.title`);
+ assertText(row.subtitle, `${path}.subtitle`);
+ // OneKey patch: validate the independently laid out Market name.
+ if (row.subtitlePrefix) {
+ assertText(row.subtitlePrefix.text, `${path}.subtitlePrefix.text`);
+ assertBoundedStyleNumber(
+ row.subtitlePrefix.gap,
+ `${path}.subtitlePrefix.gap`,
+ 0,
+ 64
+ );
+ assertBoundedStyleNumber(
+ row.subtitlePrefix.maxWidth,
+ `${path}.subtitlePrefix.maxWidth`,
+ 1,
+ 320
+ );
+ assertMarketTextStyle(
+ row.subtitlePrefix.style,
+ `${path}.subtitlePrefix.style`
+ );
+ }
+ assertText(row.price, `${path}.price`);
+ assertText(row.change.text, `${path}.change.text`);
+ assertTrailingAccessories(
+ row.leadingAction ? [row.leadingAction] : undefined,
+ `${path}.leadingAction`
+ );
+ if (row.leadingAction) {
+ assertText(row.leadingAction.name, `${path}.leadingAction.name`);
+ if (row.leadingAction.actionKey !== undefined) {
+ assertKey(row.leadingAction.actionKey, `${path}.leadingAction.actionKey`);
+ }
+ }
+ assertLeadingVisual(row.leading, `${path}.leading`);
+ const assertSegments = (
+ segments: MarketRow['priceSegments'],
+ segmentPath: string
+ ) => {
+ segments?.forEach((segment, index) => {
+ assertText(segment.text, `${segmentPath}[${index}].text`);
+ if (segment.style !== undefined && segment.style !== 'subscript') {
+ fail(
+ `${segmentPath}[${index}].style`,
+ 'must be subscript when provided'
+ );
+ }
+ });
+ };
+ assertSegments(row.subtitleSegments, `${path}.subtitleSegments`);
+ assertSegments(row.priceSegments, `${path}.priceSegments`);
+ assertSegments(row.change.textSegments, `${path}.change.textSegments`);
+ if (!['positive', 'negative', 'neutral'].includes(row.change.tone)) {
+ fail(`${path}.change.tone`, 'must be positive, negative, or neutral');
+ }
+ if ((row.badges?.length ?? 0) > MAX_MARKET_BADGES) {
+ fail(`${path}.badges`, `supports at most ${MAX_MARKET_BADGES} badges`);
+ }
+ const badgeKeys = new Set();
+ row.badges?.forEach((badge, index) => {
+ const badgePath = `${path}.badges[${index}]`;
+ assertKey(badge.key, `${badgePath}.key`);
+ if (badgeKeys.has(badge.key)) {
+ fail(`${path}.badges`, `duplicate badge key "${badge.key}"`);
+ }
+ badgeKeys.add(badge.key);
+ assertText(badge.text, `${badgePath}.text`);
+ // OneKey patch: share typography bounds with Market text styles.
+ assertMarketTextStyle(badge.style, `${badgePath}.style`);
+ assertBoundedStyleNumber(
+ badge.style?.height,
+ `${badgePath}.style.height`,
+ 1,
+ 64
+ );
+ assertBoundedStyleNumber(
+ badge.style?.horizontalPadding,
+ `${badgePath}.style.horizontalPadding`,
+ 0,
+ 32
+ );
+ if (badge.iconName !== undefined && badge.iconName !== 'verified') {
+ fail(`${badgePath}.iconName`, 'must be verified when provided');
+ }
+ if (badge.iconName !== undefined && badge.icon !== undefined) {
+ fail(`${badgePath}.icon`, 'cannot be combined with iconName');
+ }
+ assertImage(badge.icon, `${badgePath}.icon`);
+ if (
+ badge.tone !== undefined &&
+ !['neutral', 'info', 'success', 'warning', 'danger'].includes(badge.tone)
+ ) {
+ fail(
+ `${badgePath}.tone`,
+ 'must be neutral, info, success, warning, or danger'
+ );
+ }
+ if (!badge.text && !badge.icon && !badge.iconName) {
+ fail(badgePath, 'requires text, icon, or iconName');
+ }
+ if (badge.actionKey !== undefined) {
+ assertKey(badge.actionKey, `${badgePath}.actionKey`);
+ }
+ });
+ for (const [key, value] of [
+ ['pressActionKey', row.pressActionKey],
+ ['pressInActionKey', row.pressInActionKey],
+ ['longPressActionKey', row.longPressActionKey],
+ ['diagnostics.imageBindActionKey', row.diagnostics?.imageBindActionKey],
+ ] as const) {
+ if (value !== undefined) assertKey(value, `${path}.${key}`);
+ }
+ assertMarketStyle(row.style, `${path}.style`);
+}
+
function assertSectionHeaderVariant(
variant: string | undefined,
path: string
@@ -295,6 +519,8 @@ function assertVisual(row: RowModel, path: string): void {
? [row.leading]
: row.type === 'dataRow'
? [row.leading]
+ : row.type === 'market'
+ ? [row.leading]
: row.type === 'metricCard'
? [row.visual]
: [];
@@ -488,6 +714,9 @@ function assertRow(
fail(`${path}.badges`, `supports at most ${MAX_BADGES} badges`);
}
break;
+ case 'market':
+ assertMarketRow(row, path);
+ break;
case 'mediaTile':
assertImage(row.image, `${path}.image`);
if (
@@ -583,6 +812,10 @@ function assertRow(
assertTrailingAccessories(row.trailing, `${path}.trailing`);
break;
case 'system':
+ const presentation = 'presentation' in row ? row.presentation : undefined;
+ if (presentation !== undefined && presentation !== 'market') {
+ fail(`${path}.presentation`, 'must be market when provided');
+ }
if (
// OneKey patch: deprecated-wallet warnings retain the original scrolling semantics.
!['loading', 'retry', 'noMatch', 'end', 'spacer', 'warning'].includes(
@@ -595,6 +828,17 @@ function assertRow(
);
}
if (row.variant === 'warning') assertText(row.title, `${path}.title`);
+ if (
+ row.variant === 'loading' &&
+ row.loadingStyle !== undefined &&
+ row.loadingStyle !== 'skeleton' &&
+ row.loadingStyle !== 'spinner'
+ ) {
+ fail(
+ `${path}.loadingStyle`,
+ 'must be skeleton or spinner when provided'
+ );
+ }
if (row.variant !== 'spacer') {
assertText(row.message, `${path}.message`);
}
@@ -606,6 +850,7 @@ function assertRow(
}
if (row.variant === 'retry') {
assertKey(row.actionKey, `${path}.actionKey`);
+ assertText(row.actionText, `${path}.actionText`);
}
break;
}
@@ -879,6 +1124,21 @@ function assertPatchChanges(patch: RowPatch, index: number): void {
fail(`${path}.badges`, `supports at most ${MAX_BADGES} badges`);
}
break;
+ case 'market':
+ assertMarketRow(
+ {
+ type: 'market',
+ key: patch.key,
+ variant: 'token',
+ leading: { kind: 'icon', name: 'placeholder' },
+ title: '',
+ price: '',
+ change: { text: '', tone: 'neutral' },
+ ...patch.changes,
+ } as MarketRow,
+ path
+ );
+ break;
case 'mediaTile':
assertImage(patch.changes.image, `${path}.image`);
if (
diff --git a/native-views/react-native-native-list/src/web/NativeListWebEngine.ts b/native-views/react-native-native-list/src/web/NativeListWebEngine.ts
index b9d3e138f..7215c1b0f 100644
--- a/native-views/react-native-native-list/src/web/NativeListWebEngine.ts
+++ b/native-views/react-native-native-list/src/web/NativeListWebEngine.ts
@@ -3,6 +3,8 @@ import type {
CheckboxState,
ImageSource,
LeadingVisual,
+ MarketRow,
+ MarketTextStyle,
NativeListSnapshot,
NativeListActionAnchor,
NativeListActionSource,
@@ -47,7 +49,7 @@ import {
const SECTION_INDEX_CONTENT_INSET = 16;
const SECTION_INDEX_RAIL_WIDTH = 32;
const SECTION_INDEX_EDGE_PADDING = 8;
-const SECTION_INDEX_MIN_LABEL_SPACING = 14;
+const SECTION_INDEX_LABEL_SPACING = 16;
const SECTION_INDEX_MIN_HEIGHT = 120;
const DEFAULT_VIEWPORT_WIDTH = 320;
const DEFAULT_VIEWPORT_HEIGHT = 640;
@@ -60,6 +62,10 @@ export const WEB_REORDER_ANIMATION = {
} as const;
const REORDER_TOUCH_LONG_PRESS_MS = 120;
+const MARKET_LONG_PRESS_MS = 800;
+const MARKET_MOVE_CANCEL_PX = 10;
+export const WEB_MARKET_VERIFIED_PATH =
+ 'M9.483 11.458v3.5h-1v-3.5z M10.467 2.698a2.03 2.03 0 0 1 3.065 0l1.358 1.564a.03.03 0 0 0 .028.01l2.046-.325a2.03 2.03 0 0 1 2.347 1.971l.037 2.07q0 .016.014.026l1.776 1.066a2.03 2.03 0 0 1 .532 3.019l-1.304 1.609a.03.03 0 0 0-.005.03l.675 1.956a2.03 2.03 0 0 1-1.533 2.656l-2.033.394a.03.03 0 0 0-.023.019l-.741 1.933a2.03 2.03 0 0 1-2.88 1.05l-1.811-1.006a.03.03 0 0 0-.03 0l-1.811 1.005a2.03 2.03 0 0 1-2.88-1.049l-.742-1.933a.03.03 0 0 0-.023-.019l-2.033-.394a2.03 2.03 0 0 1-1.532-2.656l.675-1.957a.03.03 0 0 0-.005-.029l-1.304-1.61a2.03 2.03 0 0 1 .532-3.018l1.776-1.066a.03.03 0 0 0 .014-.026l.035-2.07a2.03 2.03 0 0 1 2.349-1.97l2.045.324a.03.03 0 0 0 .028-.01zm1.516 3.76a.5.5 0 0 0-.447.276l-1.861 3.724H8.483a1 1 0 0 0-1 1v3.5a1 1 0 0 0 1 1h6.692a2 2 0 0 0 1.981-1.73l.341-2.5a2 2 0 0 0-1.982-2.27h-1.939l.197-1.269a1.5 1.5 0 0 0-1.481-1.731z';
const REORDER_MOUSE_MOVE_THRESHOLD_PX = 5;
const REORDER_EDGE_RATIO = 0.25;
const REORDER_MAX_SPEED_ZONE_RATIO = 0.05;
@@ -108,6 +114,50 @@ export type WebListLayout = Readonly<{
horizontal: boolean;
}>;
+export type WebMarketLayoutStyle = Readonly<{
+ horizontalPadding: number;
+ verticalPadding: number;
+ leadingGap: number;
+ titleBadgeGap: number;
+ trailingGap: number;
+ imageWidth: number;
+ imageHeight: number;
+ imageCornerRadius: number;
+ changeWidth: number;
+ changeHeight: number;
+ changeCornerRadius: number;
+}>;
+
+/** Resolves every reusable Market geometry field, including legacy defaults. */
+export function resolveWebMarketLayoutStyle(
+ row: MarketRow
+): WebMarketLayoutStyle {
+ const style = row.style;
+ const imageWidth = style?.image?.width ?? (row.variant === 'stock' ? 40 : 32);
+ const imageHeight =
+ style?.image?.height ?? (row.variant === 'stock' ? 40 : 32);
+ return {
+ horizontalPadding:
+ style?.horizontalPadding ?? (row.variant === 'perp' ? 16 : 20),
+ verticalPadding: style?.verticalPadding ?? 12,
+ leadingGap: style?.leadingGap ?? (row.variant === 'perp' ? 8 : 14),
+ titleBadgeGap: style?.titleBadgeGap ?? 4,
+ trailingGap: style?.trailingGap ?? 8,
+ imageWidth,
+ imageHeight,
+ imageCornerRadius:
+ style?.image?.cornerRadius ??
+ (style?.image?.shape === 'square'
+ ? 0
+ : style?.image?.shape === 'rounded'
+ ? 8
+ : Math.min(imageWidth, imageHeight) / 2),
+ changeWidth: style?.changeWidth ?? 80,
+ changeHeight: style?.changeHeight ?? 32,
+ changeCornerRadius: style?.changeCornerRadius ?? 8,
+ };
+}
+
export type NativeListWebCallbacks = Readonly<{
onRowAction?: (event: RowActionEvent) => void;
onActionAnchorInvalidated?: (event: ActionAnchorInvalidatedEvent) => void;
@@ -450,7 +500,15 @@ export function estimateWebRowHeight(
}
case 'system':
base =
- row.variant === 'noMatch' || row.variant === 'end'
+ row.variant === 'loading' && row.loadingStyle === 'skeleton'
+ ? 56
+ : row.variant === 'loading' && row.loadingStyle === 'spinner'
+ ? 52
+ : 'presentation' in row && row.presentation === 'market'
+ ? row.variant === 'loading'
+ ? 68
+ : 44
+ : row.variant === 'noMatch' || row.variant === 'end'
? 36
: row.variant === 'retry'
? 44
@@ -462,6 +520,14 @@ export function estimateWebRowHeight(
case 'dataRow':
base = row.columns.some((column) => column.secondaryText) ? 60 : 56;
break;
+ case 'market': {
+ const marketStyle = resolveWebMarketLayoutStyle(row);
+ base = Math.max(
+ row.variant === 'stock' ? 72 : 68,
+ marketStyle.imageHeight + marketStyle.verticalPadding * 2
+ );
+ break;
+ }
case 'identity':
base = row.tertiary ? 72 : row.subtitle ? 60 : 56;
break;
@@ -706,6 +772,32 @@ export function visibleWebLayoutItems(
return visible;
}
+export type WebCollapsiblePagerScrollMetrics = Readonly<{
+ offset: number;
+ viewportLength: number;
+}>;
+
+export function resolveWebCollapsiblePagerScrollMetrics(
+ rawOffset: number,
+ rawViewportLength: number,
+ headerInset: number,
+ stickyInset: number
+): WebCollapsiblePagerScrollMetrics {
+ const header = Math.max(0, headerInset);
+ const sticky = Math.max(0, stickyInset);
+ return {
+ offset: Math.max(0, rawOffset - header),
+ viewportLength: Math.max(0, rawViewportLength - sticky),
+ };
+}
+
+export function resolveWebCollapsiblePagerRawOffset(
+ logicalOffset: number,
+ headerInset: number
+): number {
+ return Math.max(0, logicalOffset) + Math.max(0, headerInset);
+}
+
export function webLayoutItemsForMount(
layout: WebListLayout,
offset: number,
@@ -742,6 +834,30 @@ export function webRowRenderSignature(row: RowModel): string {
return JSON.stringify(rowWithoutSelectionState(row));
}
+const MARKET_QUOTE_PATCH_FIELDS = new Set([
+ 'revision',
+ 'price',
+ 'priceSegments',
+ 'change',
+ 'accessibilityLabel',
+]);
+
+export function isWebMarketQuotePatch(patch: RowPatch): boolean {
+ return (
+ patch.type === 'market' &&
+ Object.keys(patch.changes).every((key) =>
+ MARKET_QUOTE_PATCH_FIELDS.has(key)
+ )
+ );
+}
+
+/** Number of Market image-binding passes caused by one Web patch transaction. */
+export function webMarketImageBindDeltaForPatches(
+ patches: readonly RowPatch[]
+): 0 | 1 {
+ return patches.length > 0 && patches.every(isWebMarketQuotePatch) ? 0 : 1;
+}
+
// OneKey patch: selector names must shrink before the sidebar clips their contents.
export const WEB_LIST_CSS = `
[data-native-list-selector="walletSidebar"] .ok-native-list-title{max-width:100%;min-width:0}
@@ -798,11 +914,19 @@ export const WEB_LIST_CSS = `
.ok-native-list-media{display:block;padding:0 5px;background:transparent;border-radius:16px}.ok-native-list-media-image{display:block;width:100%;aspect-ratio:1;border-radius:10px;background:var(--nl-strong);object-fit:cover}.ok-native-list-media-image[data-state="empty"]{background:transparent}.ok-native-list-media-image[data-state="error"]{display:flex;align-items:center;justify-content:center;color:var(--nl-icon-subdued);font-size:24px}.ok-native-list-media-meta{padding-top:7px}.ok-native-list-media-subtitle-row{display:flex;align-items:center;gap:6px}.ok-native-list-media-subtitle{flex:1;min-width:0;font-size:12px;color:var(--nl-secondary);white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.ok-native-list-media-network{width:14px;height:14px;border-radius:50%}.ok-native-list-media-title{font-size:16px;font-weight:500;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.ok-native-list-media-close{position:absolute;right:9px;top:4px;border:0;background:color-mix(in srgb,var(--nl-inverse) 72%,transparent);color:var(--nl-inverse-text);width:24px;height:24px;border-radius:50%;font:18px/20px inherit;cursor:pointer}
.ok-native-list-metric{display:flex;flex-direction:column;align-items:flex-start;padding:12px;border-radius:12px;gap:5px;background:var(--nl-row)}.ok-native-list-metric-value{font-size:22px;line-height:28px;font-weight:700}.ok-native-list-composite{display:flex;flex-direction:column;align-items:stretch;padding:14px;border-radius:12px;gap:12px;background:var(--nl-subdued)}.ok-native-list-composite-heading{font-size:14px;letter-spacing:1px;color:var(--nl-secondary)}.ok-native-list-composite-row{display:flex;gap:12px}.ok-native-list-composite-cell{flex:1;min-width:0}.ok-native-list-composite-cell[data-shaded="true"]{padding:10px;border-radius:10px;background:color-mix(in srgb,var(--nl-primary) 5%,transparent)}.ok-native-list-composite-value{font-size:18px;font-weight:600}.ok-native-list-divider{height:1px;background:var(--nl-separator)}.ok-native-list-progress{height:4px;border-radius:2px;overflow:hidden;background:var(--nl-negative)}.ok-native-list-progress>span{display:block;height:100%;border-radius:2px;background:var(--nl-positive)}
.ok-native-list-data{padding:6px 12px}.ok-native-list-index{flex:0 0 28px;color:var(--nl-secondary);font-size:13px}.ok-native-list-favorite{flex:0 0 24px;color:var(--nl-icon-subdued);font-size:22px}.ok-native-list-favorite[data-active="true"]{color:var(--nl-accent)}.ok-native-list-data-cell{display:flex;flex-direction:column;min-width:0}.ok-native-list-data-cell[data-align="center"]{align-items:center}.ok-native-list-data-cell[data-align="end"]{align-items:flex-end}.ok-native-list-data-primary{display:flex;align-items:center;gap:5px;max-width:100%;font-size:16px;font-weight:500;white-space:nowrap}.ok-native-list-unread{width:7px;height:7px;flex:0 0 7px;border-radius:50%;background:var(--nl-accent)}.ok-native-list-thumbnail{width:64px;height:64px;border-radius:10px;object-fit:cover}
+.ok-native-list-market{padding:12px 20px;gap:14px}.ok-native-list-market>.ok-native-list-visual{width:32px;height:32px;flex-basis:32px}.ok-native-list-market[data-variant="stock"]>.ok-native-list-visual{width:40px;height:40px;flex-basis:40px}.ok-native-list-market>.ok-native-list-visual>.ok-native-list-visual-main{width:100%;height:100%}.ok-native-list-market-main{display:flex;flex:1;min-width:0;flex-direction:column;justify-content:center}.ok-native-list-market-title-line{display:flex;align-items:center;min-width:0;gap:4px}.ok-native-list-market-title{min-width:0;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;color:var(--nl-primary);font-size:16px;line-height:24px;font-weight:500}.ok-native-list-market-subtitle{min-width:0;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;color:var(--nl-secondary);font-size:14px;line-height:20px;font-weight:400}.ok-native-list-market-badge{display:inline-flex;flex:0 0 auto;align-items:center;justify-content:center;box-sizing:border-box;max-width:72px;height:18px;padding:0 5px;border:0;border-radius:4px;background:var(--nl-strong);color:var(--nl-secondary);font:500 11px/18px inherit;overflow:hidden;white-space:nowrap}.ok-native-list-market-badge img{width:14px;height:14px;object-fit:contain}.ok-native-list-market-trailing{display:flex;flex:0 0 auto;align-items:center;gap:8px}.ok-native-list-market-price{max-width:112px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;text-align:right;color:var(--nl-primary);font-size:16px;line-height:24px;font-weight:500;font-variant-numeric:tabular-nums}.ok-native-list-market-change{display:flex;align-items:center;justify-content:center;box-sizing:border-box;width:80px;height:32px;border-radius:8px;color:#fff;background:#8d8d8d;font-size:14px;line-height:20px;font-weight:500;font-variant-numeric:tabular-nums;white-space:nowrap}.ok-native-list-market-change[data-tone="positive"]{background:var(--nl-positive)}.ok-native-list-market-change[data-tone="negative"]{background:var(--nl-negative)}
+.ok-native-list-market-badge>svg,.ok-native-list-market-badge>.ok-native-list-market-badge-icon>svg{display:block;width:16px;height:16px;flex:0 0 16px}.ok-native-list-system[data-native-list-presentation="market"]{box-sizing:border-box;padding:12px 20px}.ok-native-list-system[data-native-list-presentation="market"]>.ok-native-list-spinner{width:32px;height:32px}
.ok-native-list-footer{flex:0 0 auto;min-height:0}.ok-native-list-sticky{position:absolute;z-index:4;left:0;right:0;top:0;pointer-events:auto;box-shadow:0 1px 0 var(--nl-separator)}.ok-native-list-index-rail{position:absolute;z-index:6;top:0;right:0;bottom:0;width:${SECTION_INDEX_RAIL_WIDTH}px;touch-action:none;cursor:pointer}.ok-native-list-index-rail[hidden]{display:none}.ok-native-list-index-button{appearance:none;position:absolute;left:6px;display:flex;width:20px;height:16px;align-items:center;justify-content:center;padding:0;transform:translateY(-50%);border:0;border-radius:8px;background:transparent;color:var(--nl-secondary);font:600 10px/1 inherit;cursor:pointer}.ok-native-list-index-button[data-active="true"]{background:var(--nl-accent);color:var(--nl-inverse-text)}.ok-native-list-index-button:focus-visible{outline:2px solid var(--nl-accent);outline-offset:1px}.ok-native-list-index-preview{position:absolute;z-index:8;right:40px;top:50%;display:flex;width:48px;height:48px;align-items:center;justify-content:center;transform:translateY(-50%) scale(.92);border-radius:14px;background:var(--nl-inverse);color:var(--nl-inverse-text);font-size:22px;font-weight:600;opacity:0;pointer-events:none;transition:opacity .15s ease,transform .15s ease}.ok-native-list-index-preview[data-visible="true"]{opacity:1;transform:translateY(-50%) scale(1)}
.ok-native-list-refresh{position:absolute;z-index:7;left:50%;top:8px;display:flex;align-items:center;gap:6px;padding:6px 10px;border-radius:999px;background:var(--nl-inverse);color:var(--nl-inverse-text);font-size:12px;opacity:0;transform:translate(-50%,-16px);transition:opacity .15s ease,transform .15s ease;pointer-events:none}.ok-native-list-refresh[data-visible="true"]{opacity:1;transform:translate(-50%,0)}
.ok-native-list-warning{height:auto;display:flex;flex-direction:column;align-items:stretch;gap:4px;padding:14px 12px;border-top:1px solid;border-bottom:1px solid;box-sizing:border-box;cursor:default}.ok-native-list-warning-title,.ok-native-list-warning-message{font-size:14px;line-height:20px;white-space:normal;overflow-wrap:anywhere}.ok-native-list-warning-title{font-weight:500;color:var(--nl-primary)}.ok-native-list-warning-message{font-weight:400;color:var(--nl-secondary)}
.ok-native-list-subtitle-segments{display:flex;align-items:center;min-width:0;max-width:100%;height:20px}.ok-native-list-subtitle-segments>.ok-native-list-secondary{flex:0 1 auto;min-width:0}.ok-native-list-subtitle-dot{flex:0 0 4px;width:4px;height:4px;margin:0 6px;border-radius:50%;background:var(--nl-disabled)}.ok-native-list-wallet-row>.ok-native-list-flex{flex:0 1 auto;width:100%;align-items:center}.ok-native-list-wallet-badges{display:flex;gap:4px;justify-content:center;margin-top:4px;height:20px;max-width:100%}.ok-native-list-wallet-badges>.ok-native-list-badge{background:var(--nl-strong);color:var(--nl-secondary);font-size:12px;line-height:16px;height:20px;box-sizing:border-box;padding:2px 4px}.ok-native-list-visual-overlay{position:absolute;display:flex;align-items:center;justify-content:center;box-sizing:border-box;border-radius:50%;overflow:hidden;line-height:1;font-size:10px}.ok-native-list-visual-overlay img,.ok-native-list-visual-overlay svg{width:100%;height:100%;object-fit:contain}
-@media (prefers-reduced-motion:reduce){.ok-native-list-index-preview,.ok-native-list-refresh{transition:none}.ok-native-list-spinner{animation:none}}
+.ok-native-list-row.ok-native-list-market-skeleton{padding:12px 20px;gap:0}.ok-native-list-skeleton-left{display:flex;align-items:center;gap:12px;flex:1}.ok-native-list-skeleton-text{display:flex;flex-direction:column;gap:4px}.ok-native-list-skeleton-right{display:flex;align-items:center;gap:8px}.ok-native-list-skeleton-mark{display:block;flex-shrink:0;border-radius:8px;animation:ok-native-list-skeleton 1.5s linear infinite alternate}@keyframes ok-native-list-skeleton{from{background-color:var(--nl-skeleton-base)}to{background-color:var(--nl-skeleton-highlight)}}.ok-native-list-market-spinner{display:block;width:20px;height:20px;flex-shrink:0;color:var(--nl-icon);animation:ok-native-list-spin .75s linear infinite}
+@media (prefers-reduced-motion:reduce){.ok-native-list-index-preview,.ok-native-list-refresh{transition:none}.ok-native-list-spinner,.ok-native-list-market-spinner{animation:none}.ok-native-list-skeleton-mark{animation:none;background:var(--nl-skeleton-base)}}
+.ok-native-list-footer{flex:0 0 auto;min-height:0}.ok-native-list-sticky{position:absolute;z-index:4;left:0;right:0;top:0;pointer-events:auto;box-shadow:0 1px 0 var(--nl-separator)}.ok-native-list-viewport-frame:has(>.ok-native-list-index-rail:not([hidden]))>.ok-native-list-viewport{scrollbar-width:none}.ok-native-list-viewport-frame:has(>.ok-native-list-index-rail:not([hidden]))>.ok-native-list-viewport::-webkit-scrollbar{display:none}.ok-native-list-index-rail{position:absolute;z-index:6;top:0;right:0;bottom:0;width:${SECTION_INDEX_RAIL_WIDTH}px;touch-action:none;cursor:pointer}.ok-native-list-index-rail[hidden]{display:none}.ok-native-list-index-button{appearance:none;position:absolute;left:15px;display:flex;width:14px;height:14px;align-items:center;justify-content:center;padding:0;transform:translateY(-50%);border:0;border-radius:7px;background:transparent;color:var(--nl-disabled);font-family:inherit;font-size:10px;font-weight:400;line-height:1;cursor:pointer}.ok-native-list-index-button[data-active="true"]{background:var(--nl-positive);color:var(--nl-inverse-text);font-weight:500}.ok-native-list-index-button:focus-visible{outline:2px solid var(--nl-positive);outline-offset:1px}
+.ok-native-list-refresh{position:absolute;z-index:7;left:50%;top:8px;display:flex;align-items:center;gap:6px;padding:6px 10px;border-radius:999px;background:var(--nl-inverse);color:var(--nl-inverse-text);font-size:12px;opacity:0;transform:translate(-50%,-16px);transition:opacity .15s ease,transform .15s ease;pointer-events:none}.ok-native-list-refresh[data-visible="true"]{opacity:1;transform:translate(-50%,0)}
+.ok-native-list-warning{height:auto;display:flex;flex-direction:column;align-items:stretch;gap:4px;padding:14px 12px;border-top:1px solid;border-bottom:1px solid;box-sizing:border-box;cursor:default}.ok-native-list-warning-title,.ok-native-list-warning-message{font-size:14px;line-height:20px;white-space:normal;overflow-wrap:anywhere}.ok-native-list-warning-title{font-weight:500;color:var(--nl-primary)}.ok-native-list-warning-message{font-weight:400;color:var(--nl-secondary)}
+.ok-native-list-subtitle-segments{display:flex;align-items:center;min-width:0;max-width:100%;height:20px}.ok-native-list-subtitle-segments>.ok-native-list-secondary{flex:0 1 auto;min-width:0}.ok-native-list-subtitle-dot{flex:0 0 4px;width:4px;height:4px;margin:0 6px;border-radius:50%;background:var(--nl-disabled)}.ok-native-list-wallet-row>.ok-native-list-flex{flex:0 1 auto;width:100%;align-items:center}.ok-native-list-wallet-badges{display:flex;gap:4px;justify-content:center;margin-top:4px;height:20px;max-width:100%}.ok-native-list-wallet-badges>.ok-native-list-badge{background:var(--nl-strong);color:var(--nl-secondary);font-size:12px;line-height:16px;height:20px;box-sizing:border-box;padding:2px 4px}.ok-native-list-visual-overlay{position:absolute;display:flex;align-items:center;justify-content:center;box-sizing:border-box;border-radius:50%;overflow:hidden;line-height:1;font-size:10px}.ok-native-list-visual-overlay img,.ok-native-list-visual-overlay svg{width:100%;height:100%;object-fit:contain}
+@media (prefers-reduced-motion:reduce){.ok-native-list-refresh{transition:none}.ok-native-list-spinner{animation:none}}
/* OneKey patch: selector controls follow their original semantic colors and geometry. */
.ok-native-list-checkbox[data-selector="networkSelector"]{padding:0;border-radius:4px;border-color:var(--nl-checkbox-border,var(--nl-separator));background:var(--nl-checkbox-icon,var(--nl-inverse-text))}
.ok-native-list-checkbox[data-selector="networkSelector"]::after{display:none}
@@ -963,6 +1087,30 @@ function configureWebAvatar(
webAvatarCleanup.set(image, dispose);
}
+const WEB_IMAGE_FADE_DELAY_MS = 100;
+const WEB_IMAGE_FADE_DURATION_MS = 140;
+
+function webImageNow(image: HTMLImageElement): number {
+ return image.ownerDocument.defaultView?.performance.now() ?? Date.now();
+}
+
+function revealWebImage(element: HTMLElement, startedAt: number) {
+ element.getAnimations?.().forEach((animation) => animation.cancel());
+ element.style.opacity = '1';
+ const view = element.ownerDocument.defaultView;
+ if (
+ webImageNow(element as HTMLImageElement) - startedAt <
+ WEB_IMAGE_FADE_DELAY_MS ||
+ view?.matchMedia?.('(prefers-reduced-motion: reduce)').matches ||
+ typeof element.animate !== 'function'
+ )
+ return;
+ element.animate([{ opacity: 0 }, { opacity: 1 }], {
+ duration: WEB_IMAGE_FADE_DURATION_MS,
+ easing: 'ease-out',
+ });
+}
+
function createImage(
context: RenderContext,
source: ImageSource,
@@ -972,6 +1120,8 @@ function createImage(
const uri = avatarUri ?? safeImageUri(source.uri);
if (!uri) return undefined;
const image = context.document.createElement('img');
+ const startedAt = webImageNow(image);
+ image.style.opacity = '0';
if (className) image.className = className;
// OneKey patch: consume recoverable errors before the visual's final fallback listener.
if (avatarUri) {
@@ -986,6 +1136,14 @@ function createImage(
image.decoding = 'async';
image.style.objectFit =
source.contentFit === 'fill' ? 'fill' : source.contentFit ?? 'cover';
+ image.addEventListener('load', () => {
+ if (image.dataset.nativeListSelectorPaint !== 'true')
+ revealWebImage(image, startedAt);
+ });
+ image.addEventListener('error', () => {
+ image.style.opacity = '0';
+ });
+ image.dataset.nativeListImageStartedAt = String(startedAt);
return image;
}
@@ -1004,20 +1162,27 @@ function paintSelectorImageBackground(
paint.style.cssText =
'position:absolute;pointer-events:none;border-radius:inherit;background-position:center;background-repeat:no-repeat';
paint.style.inset = String(inset) + 'px';
+ paint.style.opacity = '0';
paint.style.backgroundSize =
image.style.objectFit === 'fill'
? '100% 100%'
: image.style.objectFit === 'center'
? 'auto'
: image.style.objectFit;
+ image.dataset.nativeListSelectorPaint = 'true';
image.style.opacity = '0';
const update = () => {
paint.style.backgroundImage =
'url(' + JSON.stringify(image.currentSrc || image.src) + ')';
+ revealWebImage(
+ paint,
+ Number(image.dataset.nativeListImageStartedAt) || webImageNow(image)
+ );
};
image.addEventListener('load', update);
image.addEventListener('error', () => {
paint.style.backgroundImage = 'none';
+ paint.style.opacity = '0';
});
frame.insertBefore(paint, image);
if (image.complete && image.naturalWidth > 0) update();
@@ -1280,6 +1445,17 @@ const selectorIcons: Readonly<
},
],
},
+ BadgeVerifiedSolid: {
+ viewBox: '0 0 24 24',
+ paths: [
+ {
+ d: WEB_MARKET_VERIFIED_PATH,
+ fill: 'currentColor',
+ fillRule: 'evenodd',
+ opacity: 1,
+ },
+ ],
+ },
};
function applySelectorIcon(element: HTMLElement, name: string) {
const icon = selectorIcons[name];
@@ -1335,6 +1511,7 @@ function visualFromRow(row: RowModel): LeadingVisual | undefined {
if (row.type === 'activity') return row.leading;
if (row.type === 'message') return row.leading;
if (row.type === 'dataRow') return row.leading;
+ if (row.type === 'market') return row.leading;
if (row.type === 'metricCard') return row.visual;
return undefined;
}
@@ -1380,9 +1557,19 @@ function createVisual(
return frame;
}
- if ('backgroundColor' in visual && visual.backgroundColor)
- frame.style.background = visual.backgroundColor;
+ // OneKey patch: Every image visual starts from the current theme backing.
+ // if ('backgroundColor' in visual && visual.backgroundColor)
+ // frame.style.background = visual.backgroundColor;
+ frame.style.background =
+ 'backgroundColor' in visual && visual.backgroundColor
+ ? visual.backgroundColor
+ : 'var(--nl-strong)';
const source = visual.kind === 'image' ? visual.image : visual.image;
+ const fallbackIcon =
+ 'fallbackIcon' in visual ? visual.fallbackIcon : undefined;
+ const handlesSourceFallback =
+ !!source && (fallbackIcon !== undefined || 'fallbackText' in visual);
+ if (handlesSourceFallback) frame.style.background = 'var(--nl-strong)';
const image = source ? createImage(context, source) : undefined;
if (image) {
image.className = 'ok-native-list-visual-main';
@@ -1420,8 +1607,8 @@ function createVisual(
frame.appendChild(corner);
}
// OneKey patch: image failure uses the same source-derived fallback as v1.
- if ('fallbackIcon' in visual && visual.fallbackIcon) {
- const icon = visual.fallbackIcon;
+ const hasFallbackText = 'fallbackText' in visual;
+ if (fallbackIcon || hasFallbackText) {
const showFallback = () => {
if (image) {
disposeWebImageRetries(image);
@@ -1435,10 +1622,18 @@ function createVisual(
const fallback = createElement(
context.document,
'span',
- 'ok-native-list-visual-fallback'
+ 'ok-native-list-visual-fallback',
+ fallbackIcon
+ ? undefined
+ : 'fallbackText' in visual
+ ? visual.fallbackText ?? ''
+ : ''
);
- applySelectorIcon(fallback, icon.name);
- if (icon.tintColor) fallback.style.color = icon.tintColor;
+ if (fallbackIcon) {
+ applySelectorIcon(fallback, fallbackIcon.name);
+ if (fallbackIcon.tintColor)
+ fallback.style.color = fallbackIcon.tintColor;
+ }
frame.prepend(fallback);
};
if (image) image.addEventListener('error', showFallback, { once: true });
@@ -2089,6 +2284,98 @@ function createSystemRow(
'ok-native-list-row ok-native-list-system'
);
setData(body, 'variant', row.variant);
+ if ('presentation' in row)
+ setData(body, 'nativeListPresentation', row.presentation);
+ if (row.variant === 'loading' && row.loadingStyle === 'skeleton') {
+ body.classList.add('ok-native-list-market-skeleton');
+ const background = resolvedTheme(context.snapshot).background;
+ const rgb = Number.parseInt(background.slice(1, 7), 16);
+ const dark =
+ ((rgb >> 16) & 255) * 0.299 +
+ ((rgb >> 8) & 255) * 0.587 +
+ (rgb & 255) * 0.114 <
+ 128;
+ body.style.setProperty('--nl-skeleton-base', dark ? '#111111' : '#fafafa');
+ body.style.setProperty(
+ '--nl-skeleton-highlight',
+ dark ? '#333333' : '#cdcdcd'
+ );
+ const left = createElement(
+ context.document,
+ 'div',
+ 'ok-native-list-skeleton-left'
+ );
+ const mark = (width: number, height: number, circle = false) => {
+ const element = createElement(
+ context.document,
+ 'span',
+ 'ok-native-list-skeleton-mark'
+ );
+ element.style.width = `${width}px`;
+ element.style.height = `${height}px`;
+ if (circle) element.style.borderRadius = '50%';
+ return element;
+ };
+ left.appendChild(mark(32, 32, true));
+ const text = createElement(
+ context.document,
+ 'div',
+ 'ok-native-list-skeleton-text'
+ );
+ text.appendChild(mark(80, 16));
+ text.appendChild(mark(60, 12));
+ left.appendChild(text);
+ body.appendChild(left);
+ const right = createElement(
+ context.document,
+ 'div',
+ 'ok-native-list-skeleton-right'
+ );
+ right.appendChild(mark(80, 18));
+ right.appendChild(mark(80, 18));
+ body.appendChild(right);
+ return body;
+ }
+ if (row.variant === 'loading' && row.loadingStyle === 'spinner') {
+ body.style.justifyContent = 'center';
+ body.style.padding = '16px';
+ const spinner = createElement(
+ context.document,
+ 'span',
+ 'ok-native-list-market-spinner'
+ );
+ spinner.setAttribute('role', 'progressbar');
+ // Same 20px SVG and 750ms rotation as react-native-web ActivityIndicator.
+ spinner.innerHTML =
+ '';
+ body.appendChild(spinner);
+ return body;
+ }
+ if ('presentation' in row && row.presentation === 'market') {
+ if (row.variant === 'noMatch') {
+ body.style.justifyContent = 'center';
+ body.style.padding = '32px';
+ const message = createElement(context.document, 'span', '', row.message);
+ message.style.fontSize = '16px';
+ message.style.lineHeight = '24px';
+ body.appendChild(message);
+ return body;
+ }
+ if (row.variant === 'end') {
+ body.style.justifyContent = 'center';
+ body.style.padding = '16px';
+ body.style.gap = '8px';
+ for (const width of [80, 4, 80]) {
+ const mark = createElement(context.document, 'span', '');
+ mark.style.width = String(width) + 'px';
+ mark.style.height = width === 4 ? '4px' : '1px';
+ mark.style.borderRadius = width === 4 ? '2px' : '0';
+ mark.style.background = 'var(--nl-separator)';
+ body.appendChild(mark);
+ }
+ return body;
+ }
+ }
if (row.variant === 'warning') {
body.classList.add('ok-native-list-warning');
body.style.borderColor = row.borderColor ?? 'var(--nl-separator)';
@@ -2784,6 +3071,326 @@ function createWalletGroupRow(
return body;
}
+function marketFontWeight(
+ value: MarketTextStyle['fontWeight'] | undefined,
+ fallback: number
+): number {
+ if (value === 'bold') return 700;
+ if (value === 'semibold') return 600;
+ if (value === 'medium') return 500;
+ if (value === 'regular') return 400;
+ return fallback;
+}
+
+function applyMarketTextStyle(
+ element: HTMLElement,
+ style: MarketTextStyle | undefined,
+ defaults: Readonly<{
+ fontSize: number;
+ lineHeight: number;
+ weight: number;
+ alignment: 'start' | 'center' | 'end';
+ }>
+) {
+ element.style.fontSize = String(style?.fontSize ?? defaults.fontSize) + 'px';
+ element.style.lineHeight =
+ String(style?.lineHeight ?? defaults.lineHeight) + 'px';
+ element.style.fontWeight = String(
+ marketFontWeight(style?.fontWeight, defaults.weight)
+ );
+ element.style.color = style?.color ?? '';
+ element.style.textAlign = style?.alignment ?? defaults.alignment;
+ element.style.whiteSpace = style?.lines === 2 ? 'normal' : 'nowrap';
+ element.style.display = '';
+ element.style.removeProperty('-webkit-line-clamp');
+ element.style.removeProperty('-webkit-box-orient');
+ if (style?.lines === 2) {
+ element.style.display = '-webkit-box';
+ element.style.setProperty('-webkit-line-clamp', '2');
+ element.style.setProperty('-webkit-box-orient', 'vertical');
+ }
+}
+
+function setMarketQuoteContent(element: HTMLElement, row: MarketRow) {
+ const style = row.style;
+ const layoutStyle = resolveWebMarketLayoutStyle(row);
+ const price = element.querySelector(
+ '.ok-native-list-market-price'
+ );
+ if (price) {
+ price.textContent = row.price;
+ applyMarketTextStyle(price, style?.price, {
+ fontSize: 16,
+ lineHeight: 24,
+ weight: 500,
+ alignment: 'end',
+ });
+ applyValueSegments(
+ price,
+ row.priceSegments,
+ style?.price?.fontSize ?? 16,
+ style?.price?.lineHeight ?? 24,
+ marketFontWeight(style?.price?.fontWeight, 500)
+ );
+ }
+ const change = element.querySelector(
+ '.ok-native-list-market-change'
+ );
+ if (change) {
+ change.textContent = row.change.text;
+ setData(change, 'tone', row.change.tone);
+ applyMarketTextStyle(change, style?.change, {
+ fontSize: 14,
+ lineHeight: 20,
+ weight: 500,
+ alignment: 'center',
+ });
+ applyValueSegments(
+ change,
+ row.change.textSegments,
+ style?.change?.fontSize ?? 14,
+ style?.change?.lineHeight ?? 20,
+ marketFontWeight(style?.change?.fontWeight, 500)
+ );
+ change.style.width = String(layoutStyle.changeWidth) + 'px';
+ change.style.height = String(layoutStyle.changeHeight) + 'px';
+ change.style.borderRadius = String(layoutStyle.changeCornerRadius) + 'px';
+ change.style.color = row.change.textColor ?? style?.change?.color ?? '';
+ change.style.background = row.change.backgroundColor ?? '';
+ }
+ element.setAttribute(
+ 'aria-label',
+ row.accessibilityLabel ??
+ [row.title, row.subtitle, row.price, row.change.text]
+ .filter(Boolean)
+ .join(', ')
+ );
+}
+
+function createMarketRow(context: RenderContext, row: MarketRow): HTMLElement {
+ const body = createElement(
+ context.document,
+ 'div',
+ 'ok-native-list-row ok-native-list-market'
+ );
+ setData(body, 'variant', row.variant);
+ const style = row.style;
+ const layoutStyle = resolveWebMarketLayoutStyle(row);
+ body.style.padding =
+ String(layoutStyle.verticalPadding) +
+ 'px ' +
+ String(layoutStyle.horizontalPadding) +
+ 'px';
+ body.style.gap = '0px';
+ if (row.leadingAction) {
+ const action = createIconAction(
+ context,
+ row.leadingAction.name,
+ row.leadingAction.actionKey,
+ row.leadingAction.disabled,
+ row.leadingAction.tintColor
+ );
+ action.style.flex = '0 0 36px';
+ action.style.width = '36px';
+ action.style.height = '36px';
+ action.style.marginRight = '5px';
+ setData(action, 'testid', row.leadingAction.testID);
+ if (row.leadingAction.accessibilityLabel)
+ action.setAttribute('aria-label', row.leadingAction.accessibilityLabel);
+ markActionAnchorSource(action, 'leadingAction');
+ body.appendChild(action);
+ }
+ const visual = createVisual(context, row.leading);
+ if (visual) {
+ const width = layoutStyle.imageWidth;
+ const height = layoutStyle.imageHeight;
+ visual.style.width = String(width) + 'px';
+ visual.style.height = String(height) + 'px';
+ visual.style.flexBasis = String(width) + 'px';
+ visual.style.borderRadius = String(layoutStyle.imageCornerRadius) + 'px';
+ const borderColor =
+ 'borderColor' in row.leading ? row.leading.borderColor : undefined;
+ if (borderColor) {
+ visual.style.border = '1px solid ' + borderColor;
+ visual.style.boxSizing = 'border-box';
+ }
+ visual.querySelectorAll('img').forEach((image) => {
+ if (!image.classList.contains('ok-native-list-visual-corner')) {
+ image.style.width = '100%';
+ image.style.height = '100%';
+ if (borderColor) {
+ image.style.borderRadius = '0';
+ image.style.clipPath =
+ 'inset(-1px round ' + String(layoutStyle.imageCornerRadius) + 'px)';
+ }
+ image.style.objectFit =
+ style?.image?.contentFit ?? image.style.objectFit;
+ } else {
+ image.style.width = '20px';
+ image.style.height = '20px';
+ if (borderColor) {
+ image.style.right = '-5px';
+ image.style.bottom = '-5px';
+ }
+ }
+ });
+ visual.style.marginRight = String(layoutStyle.leadingGap) + 'px';
+ body.appendChild(visual);
+ }
+ const main = createElement(
+ context.document,
+ 'span',
+ 'ok-native-list-market-main'
+ );
+ main.style.gap = String(style?.lineGap ?? 0) + 'px';
+ const titleLine = createElement(
+ context.document,
+ 'span',
+ 'ok-native-list-market-title-line'
+ );
+ titleLine.style.gap = String(layoutStyle.titleBadgeGap) + 'px';
+ const title = createElement(
+ context.document,
+ 'span',
+ 'ok-native-list-market-title',
+ row.title
+ );
+ applyMarketTextStyle(title, style?.title, {
+ fontSize: 16,
+ lineHeight: 24,
+ weight: 500,
+ alignment: 'start',
+ });
+ titleLine.appendChild(title);
+ row.badges?.forEach((badge, slot) => {
+ const element = createElement(
+ context.document,
+ badge.actionKey ? 'button' : 'span',
+ 'ok-native-list-market-badge',
+ badge.text
+ );
+ if (badge.actionKey) {
+ element.setAttribute('type', 'button');
+ setData(element, 'nativeListAction', badge.actionKey);
+ markActionAnchorSource(element, 'marketBadge', slot);
+ }
+ setData(element, 'tone', badge.tone);
+ element.style.color =
+ badge.textColor ??
+ (badge.tone === 'success'
+ ? 'var(--nl-positive)'
+ : badge.tone === 'danger'
+ ? 'var(--nl-negative)'
+ : badge.tone === 'info'
+ ? 'var(--nl-info)'
+ : badge.tone === 'warning'
+ ? 'var(--nl-primary)'
+ : '');
+ element.style.background =
+ badge.backgroundColor ??
+ ((badge.icon || badge.iconName) && !badge.text ? 'transparent' : '');
+ if ((badge.icon || badge.iconName) && !badge.text) {
+ element.style.padding = '0';
+ }
+ if (badge.accessibilityLabel)
+ element.setAttribute('aria-label', badge.accessibilityLabel);
+ if (badge.icon) {
+ const icon = createImage(context, badge.icon);
+ if (icon) {
+ icon.style.borderRadius = '50%';
+ element.prepend(icon);
+ }
+ }
+ if (badge.iconName === 'verified') {
+ const icon = createElement(
+ context.document,
+ 'span',
+ 'ok-native-list-market-badge-icon'
+ );
+ applySelectorIcon(icon, 'BadgeVerifiedSolid');
+ element.prepend(icon);
+ }
+ titleLine.appendChild(element);
+ });
+ main.appendChild(titleLine);
+ if (row.subtitlePrefix || row.subtitle || row.subtitleSegments?.length) {
+ const subtitleLine = createElement(
+ context.document,
+ 'span',
+ 'ok-native-list-market-subtitle-line'
+ );
+ subtitleLine.style.display = 'flex';
+ subtitleLine.style.alignItems = 'center';
+ subtitleLine.style.minWidth = '0';
+ subtitleLine.style.overflow = 'hidden';
+ subtitleLine.style.gap =
+ String(row.subtitlePrefix ? row.subtitlePrefix.gap ?? 4 : 0) + 'px';
+ if (row.subtitlePrefix) {
+ const prefix = createElement(
+ context.document,
+ 'span',
+ 'ok-native-list-market-subtitle-prefix',
+ row.subtitlePrefix.text
+ );
+ applyMarketTextStyle(prefix, row.subtitlePrefix.style, {
+ fontSize: 12,
+ lineHeight: 16,
+ weight: 400,
+ alignment: 'start',
+ });
+ prefix.style.display = 'block';
+ prefix.style.flex = '1 1 auto';
+ prefix.style.minWidth = '0';
+ prefix.style.overflow = 'hidden';
+ prefix.style.textOverflow = 'ellipsis';
+ prefix.style.color =
+ row.subtitlePrefix.style?.color ?? 'var(--nl-secondary)';
+ if (row.subtitlePrefix.maxWidth !== undefined) {
+ prefix.style.maxWidth = String(row.subtitlePrefix.maxWidth) + 'px';
+ }
+ subtitleLine.appendChild(prefix);
+ }
+ if (row.subtitle || row.subtitleSegments?.length) {
+ const subtitle = createElement(
+ context.document,
+ 'span',
+ 'ok-native-list-market-subtitle',
+ row.subtitle
+ );
+ applyMarketTextStyle(subtitle, style?.subtitle, {
+ fontSize: 14,
+ lineHeight: 20,
+ weight: 400,
+ alignment: 'start',
+ });
+ applyValueSegments(
+ subtitle,
+ row.subtitleSegments,
+ style?.subtitle?.fontSize ?? 14,
+ style?.subtitle?.lineHeight ?? 20,
+ marketFontWeight(style?.subtitle?.fontWeight, 400)
+ );
+ subtitle.style.flex = row.subtitlePrefix ? '0 0 auto' : '1 1 auto';
+ subtitleLine.appendChild(subtitle);
+ }
+ main.appendChild(subtitleLine);
+ }
+ body.appendChild(main);
+ const trailing = createElement(
+ context.document,
+ 'span',
+ 'ok-native-list-market-trailing'
+ );
+ trailing.style.gap = String(layoutStyle.trailingGap) + 'px';
+ trailing.append(
+ createElement(context.document, 'span', 'ok-native-list-market-price'),
+ createElement(context.document, 'span', 'ok-native-list-market-change')
+ );
+ body.appendChild(trailing);
+ setMarketQuoteContent(body, row);
+ return body;
+}
+
function createRowBody(context: RenderContext, row: RowModel): HTMLElement {
switch (row.type) {
case 'walletGroup':
@@ -2802,6 +3409,8 @@ function createRowBody(context: RenderContext, row: RowModel): HTMLElement {
return createMetricRow(context, row);
case 'dataRow':
return createDataRow(context, row);
+ case 'market':
+ return createMarketRow(context, row);
case 'identity':
case 'activity':
case 'message':
@@ -2818,7 +3427,6 @@ export class NativeListWebEngine {
private readonly footer: HTMLElement;
private readonly sticky: HTMLElement;
private readonly indexRail: HTMLElement;
- private readonly indexPreview: HTMLElement;
private readonly refreshIndicator: HTMLElement;
private readonly reorderPreview: HTMLElement;
private readonly previousHostPosition: string;
@@ -2844,7 +3452,6 @@ export class NativeListWebEngine {
private avatarDirection = 1;
private reachedGeneration: number | undefined;
private stickyKey: string | undefined;
- private previewTimer: number | undefined;
private sectionIndexEntries: readonly Readonly<{
key: string;
title: string;
@@ -2869,6 +3476,16 @@ export class NativeListWebEngine {
);
private actionAnchorCounter = 0;
private bindingEpochCounter = 0;
+ private marketPointer:
+ | Readonly<{
+ pointerId: number;
+ rowKey: string;
+ startX: number;
+ startY: number;
+ timer: number;
+ }>
+ | undefined;
+ private marketLongPressFired = false;
private lastViewportWidth = -1;
private lastViewportHeight = -1;
private destroyed = false;
@@ -2923,12 +3540,6 @@ export class NativeListWebEngine {
this.indexRail.setAttribute('role', 'navigation');
this.indexRail.setAttribute('aria-label', 'Section index');
this.indexRail.hidden = true;
- this.indexPreview = createElement(
- this.document,
- 'div',
- 'ok-native-list-index-preview'
- );
- this.indexPreview.setAttribute('aria-live', 'polite');
this.refreshIndicator = createElement(
this.document,
'div',
@@ -2949,7 +3560,6 @@ export class NativeListWebEngine {
this.viewport,
this.sticky,
this.indexRail,
- this.indexPreview,
this.refreshIndicator
);
this.root.append(style, this.viewportFrame, this.footer);
@@ -2958,7 +3568,15 @@ export class NativeListWebEngine {
this.viewport.addEventListener('scroll', this.handleScroll, {
passive: true,
});
+ this.viewport.addEventListener(
+ 'ok-collapsible-pager-insets-changed',
+ this.handleCollapsiblePagerInsetsChanged
+ );
this.root.addEventListener('click', this.handleClick);
+ this.root.addEventListener('pointerdown', this.handleMarketPointerDown);
+ this.root.addEventListener('pointermove', this.handleMarketPointerMove);
+ this.root.addEventListener('pointerup', this.handleMarketPointerEnd);
+ this.root.addEventListener('pointercancel', this.handleMarketPointerEnd);
// OneKey patch: preserve web tooltip hover for section titles.
this.root.addEventListener('pointerover', this.handleTitlePointerOver);
this.root.addEventListener('pointerout', this.handleTitlePointerOut);
@@ -2990,6 +3608,11 @@ export class NativeListWebEngine {
);
this.indexRail.addEventListener('pointerdown', this.handleIndexPointer);
this.indexRail.addEventListener('pointermove', this.handleIndexPointer);
+ this.indexRail.addEventListener('pointerup', this.handleIndexPointerEnd);
+ this.indexRail.addEventListener(
+ 'pointercancel',
+ this.handleIndexPointerEnd
+ );
this.indexRail.addEventListener('click', this.handleIndexClick);
this.viewport.addEventListener('pointerdown', this.handlePullStart, {
passive: true,
@@ -3034,7 +3657,6 @@ export class NativeListWebEngine {
applyPatches(patches: readonly RowPatch[]) {
if (patches.length === 0) return;
const next = applyRowPatches(this.snapshot, patches);
- this.invalidateActionAnchor('snapshot');
const selection = new Set(this.selectedKeys);
patches.forEach((patch) => {
const selected =
@@ -3042,6 +3664,29 @@ export class NativeListWebEngine {
if (selected === true) selection.add(patch.key);
else if (selected === false) selection.delete(patch.key);
});
+ if (webMarketImageBindDeltaForPatches(patches) === 0) {
+ this.snapshot = next;
+ this.rows = effectiveRows(next);
+ this.selectedKeys = selection;
+ patches.forEach((patch) => {
+ const index = this.rows.findIndex((row) => row.key === patch.key);
+ const row = this.rows[index];
+ const element = this.mounted.get(index);
+ if (row?.type === 'market' && element) {
+ setMarketQuoteContent(element, row);
+ element.dataset.renderSignature = webRowRenderSignature(row);
+ }
+ if (
+ row?.type === 'market' &&
+ this.sticky.dataset.nativeListRowKey === row.key
+ ) {
+ setMarketQuoteContent(this.sticky, row);
+ this.sticky.dataset.renderSignature = webRowRenderSignature(row);
+ }
+ });
+ return;
+ }
+ this.invalidateActionAnchor('snapshot');
this.setSnapshot(next, selection);
}
@@ -3169,8 +3814,6 @@ export class NativeListWebEngine {
this.invalidateActionAnchor('destroy');
this.destroyed = true;
if (this.frameHandle !== undefined) this.cancelFrame(this.frameHandle);
- if (this.previewTimer !== undefined)
- this.document.defaultView?.clearTimeout(this.previewTimer);
if (this.reorderMovementTimer !== undefined)
this.document.defaultView?.clearTimeout(this.reorderMovementTimer);
this.resizeObserver?.disconnect();
@@ -3179,7 +3822,16 @@ export class NativeListWebEngine {
this.handleWindowResize
);
this.viewport.removeEventListener('scroll', this.handleScroll);
+ this.viewport.removeEventListener(
+ 'ok-collapsible-pager-insets-changed',
+ this.handleCollapsiblePagerInsetsChanged
+ );
this.root.removeEventListener('click', this.handleClick);
+ this.cancelMarketPointer();
+ this.root.removeEventListener('pointerdown', this.handleMarketPointerDown);
+ this.root.removeEventListener('pointermove', this.handleMarketPointerMove);
+ this.root.removeEventListener('pointerup', this.handleMarketPointerEnd);
+ this.root.removeEventListener('pointercancel', this.handleMarketPointerEnd);
this.root.removeEventListener('pointerover', this.handleTitlePointerOver);
this.root.removeEventListener('pointerout', this.handleTitlePointerOut);
this.root.removeEventListener('keydown', this.handleKeyDown);
@@ -3208,6 +3860,11 @@ export class NativeListWebEngine {
);
this.indexRail.removeEventListener('pointerdown', this.handleIndexPointer);
this.indexRail.removeEventListener('pointermove', this.handleIndexPointer);
+ this.indexRail.removeEventListener('pointerup', this.handleIndexPointerEnd);
+ this.indexRail.removeEventListener(
+ 'pointercancel',
+ this.handleIndexPointerEnd
+ );
this.indexRail.removeEventListener('click', this.handleIndexClick);
this.viewport.removeEventListener('pointerdown', this.handlePullStart);
this.viewport.removeEventListener('pointermove', this.handlePullMove);
@@ -3230,6 +3887,7 @@ export class NativeListWebEngine {
snapshot: NativeListSnapshot,
selectedKeys?: ReadonlySet
) {
+ this.cancelMarketPointer();
this.measuredWarningHeights.clear();
this.snapshot = snapshot;
this.rows = effectiveRows(snapshot);
@@ -3281,7 +3939,20 @@ export class NativeListWebEngine {
private recomputeLayout = () => {
if (this.destroyed) return;
const viewportWidth = this.viewport.clientWidth;
- const viewportHeight = this.viewport.clientHeight;
+ const viewportHeight =
+ this.snapshot.layout.orientation === 'horizontal'
+ ? this.viewport.clientHeight
+ : this.verticalScrollMetrics().viewportLength;
+ if (this.snapshot.layout.orientation !== 'horizontal') {
+ const stickyInset = this.collapsiblePagerInsets().sticky;
+ this.sticky.style.top = String(stickyInset) + 'px';
+ this.indexRail.style.top = String(stickyInset) + 'px';
+ this.refreshIndicator.style.top = String(stickyInset + 8) + 'px';
+ } else {
+ this.sticky.style.top = '0px';
+ this.indexRail.style.top = '0px';
+ this.refreshIndicator.style.top = '8px';
+ }
if (
this.lastViewportWidth >= 0 &&
(viewportWidth !== this.lastViewportWidth ||
@@ -3312,7 +3983,11 @@ export class NativeListWebEngine {
);
this.content.style.width = String(this.layout.contentWidth) + 'px';
this.content.style.height = String(this.layout.contentHeight) + 'px';
- this.renderSectionIndex(viewportHeight || DEFAULT_VIEWPORT_HEIGHT);
+ this.renderSectionIndex(
+ this.viewport.clientHeight <= 0
+ ? DEFAULT_VIEWPORT_HEIGHT
+ : Math.max(1, viewportHeight)
+ );
if (previousHorizontal !== this.layout.horizontal) {
this.viewport.scrollLeft = 0;
this.viewport.scrollTop = 0;
@@ -3580,6 +4255,17 @@ export class NativeListWebEngine {
}
}
element.replaceChildren(body);
+ if (
+ row.type === 'market' &&
+ row.diagnostics?.imageBindActionKey &&
+ body.querySelector('img')
+ ) {
+ this.callbacks.onRowAction?.({
+ rowKey: row.key,
+ actionKey: row.diagnostics.imageBindActionKey,
+ sectionKey: row.sectionKey,
+ });
+ }
}
private renderFooter() {
@@ -3609,17 +4295,15 @@ export class NativeListWebEngine {
): readonly number[] {
const entryCount = this.sectionIndexEntries.length;
if (entryCount <= 1) return entryCount ? [0] : [];
- const availableHeight = Math.max(
- 0,
- viewportHeight - SECTION_INDEX_EDGE_PADDING * 2
- );
+ const { trackHeight } = this.sectionIndexMetrics(viewportHeight);
const maxVisible = Math.max(
- 2,
- Math.floor(availableHeight / SECTION_INDEX_MIN_LABEL_SPACING) + 1
+ 1,
+ Math.floor(trackHeight / SECTION_INDEX_LABEL_SPACING)
);
if (entryCount <= maxVisible) {
return Array.from({ length: entryCount }, (_, index) => index);
}
+ if (maxVisible === 1) return [0];
const result = new Set();
for (let slot = 0; slot < maxVisible; slot += 1) {
result.add(Math.round((slot * (entryCount - 1)) / (maxVisible - 1)));
@@ -3627,6 +4311,21 @@ export class NativeListWebEngine {
return [...result].sort((left, right) => left - right);
}
+ private sectionIndexMetrics(viewportHeight: number) {
+ const availableHeight = Math.max(
+ 0,
+ viewportHeight - SECTION_INDEX_EDGE_PADDING * 2
+ );
+ const trackHeight = Math.min(
+ availableHeight,
+ SECTION_INDEX_LABEL_SPACING * this.sectionIndexEntries.length
+ );
+ return {
+ originY: (viewportHeight - trackHeight) / 2,
+ trackHeight,
+ };
+ }
+
private renderSectionIndex(viewportHeight: number) {
this.indexRail.replaceChildren();
if (!sectionIndexEnabled(this.snapshot)) {
@@ -3653,8 +4352,15 @@ export class NativeListWebEngine {
'compact',
visibleEntryIndices.length < this.sectionIndexEntries.length
);
+ const metrics = this.sectionIndexMetrics(viewportHeight);
+ const visibleTrackHeight = Math.min(
+ metrics.trackHeight,
+ SECTION_INDEX_LABEL_SPACING * visibleEntryIndices.length
+ );
+ const visibleOriginY =
+ metrics.originY + (metrics.trackHeight - visibleTrackHeight) / 2;
const fragment = this.document.createDocumentFragment();
- visibleEntryIndices.forEach((entryIndex) => {
+ visibleEntryIndices.forEach((entryIndex, visibleIndex) => {
const entry = this.sectionIndexEntries[entryIndex];
if (!entry) return;
const button = createElement(
@@ -3668,14 +4374,11 @@ export class NativeListWebEngine {
setData(button, 'sectionEntryIndex', entryIndex);
setData(button, 'sectionPosition', entry.position);
setData(button, 'sectionKey', entry.key);
- const progress =
- this.sectionIndexEntries.length === 1
- ? 0.5
- : entryIndex / (this.sectionIndexEntries.length - 1);
button.style.top =
String(
- SECTION_INDEX_EDGE_PADDING +
- progress * (viewportHeight - SECTION_INDEX_EDGE_PADDING * 2)
+ visibleOriginY +
+ (visibleTrackHeight * (visibleIndex + 0.5)) /
+ visibleEntryIndices.length
) + 'px';
fragment.appendChild(button);
});
@@ -3811,7 +4514,7 @@ export class NativeListWebEngine {
}
const next = this.layout.items[nextIndex];
const translate = next
- ? Math.min(0, next.y - this.viewport.scrollTop - item.height)
+ ? Math.min(0, next.y - this.currentOffset() - item.height)
: 0;
this.sticky.style.transform =
'translate3d(0,' + String(translate) + 'px,0)';
@@ -3887,9 +4590,11 @@ export class NativeListWebEngine {
}
private viewportLength(): number {
- return this.layout.horizontal
- ? this.viewport.clientWidth || DEFAULT_VIEWPORT_WIDTH
- : this.viewport.clientHeight || DEFAULT_VIEWPORT_HEIGHT;
+ if (this.layout.horizontal) {
+ return this.viewport.clientWidth || DEFAULT_VIEWPORT_WIDTH;
+ }
+ if (this.viewport.clientHeight <= 0) return DEFAULT_VIEWPORT_HEIGHT;
+ return Math.max(1, this.verticalScrollMetrics().viewportLength);
}
private contentLength(): number {
@@ -3901,18 +4606,54 @@ export class NativeListWebEngine {
private currentOffset(): number {
return this.layout.horizontal
? this.viewport.scrollLeft
- : this.viewport.scrollTop;
+ : this.verticalScrollMetrics().offset;
}
+ private collapsiblePagerInsets(): Readonly<{
+ header: number;
+ sticky: number;
+ }> {
+ const readInset = (name: string) => {
+ const parsed = Number.parseFloat(
+ this.viewport.style.getPropertyValue(name)
+ );
+ return Number.isFinite(parsed) ? Math.max(0, parsed) : 0;
+ };
+ return {
+ header: readInset('--ok-collapsible-pager-header-inset'),
+ sticky: readInset('--ok-collapsible-pager-sticky-inset'),
+ };
+ }
+
+ private verticalScrollMetrics(): WebCollapsiblePagerScrollMetrics {
+ const insets = this.collapsiblePagerInsets();
+ return resolveWebCollapsiblePagerScrollMetrics(
+ this.viewport.scrollTop,
+ this.viewport.clientHeight,
+ insets.header,
+ insets.sticky
+ );
+ }
+
+ private handleCollapsiblePagerInsetsChanged = () => {
+ this.recomputeLayout();
+ };
+
private scrollToAbsoluteOffset(offset: number, animated: boolean) {
const resolved = Math.min(
Math.max(0, offset),
Math.max(0, this.contentLength() - this.viewportLength())
);
+ const rawOffset = this.layout.horizontal
+ ? resolved
+ : resolveWebCollapsiblePagerRawOffset(
+ resolved,
+ this.collapsiblePagerInsets().header
+ );
this.viewport.scrollTo(
this.layout.horizontal
- ? { left: resolved, top: 0, behavior: animated ? 'smooth' : 'auto' }
- : { left: 0, top: resolved, behavior: animated ? 'smooth' : 'auto' }
+ ? { left: rawOffset, top: 0, behavior: animated ? 'smooth' : 'auto' }
+ : { left: 0, top: rawOffset, behavior: animated ? 'smooth' : 'auto' }
);
this.scheduleFrame();
}
@@ -4102,6 +4843,8 @@ export class NativeListWebEngine {
? row.actionKey
: row.type === 'system' && row.variant === 'retry'
? row.actionKey
+ : row.type === 'market' && row.pressActionKey
+ ? row.pressActionKey
: 'press';
if (rowElement && sourceElement) {
const anchor = this.createActionAnchor(sourceElement, rowElement, 'row');
@@ -4116,6 +4859,64 @@ export class NativeListWebEngine {
}
}
+ private cancelMarketPointer() {
+ const state = this.marketPointer;
+ if (!state) return;
+ this.document.defaultView?.clearTimeout(state.timer);
+ this.marketPointer = undefined;
+ }
+
+ private handleMarketPointerDown = (event: PointerEvent) => {
+ if (event.button !== 0 || !(event.target instanceof Element)) return;
+ this.marketLongPressFired = false;
+ if (event.target.closest('[data-native-list-action]')) return;
+ const rowElement = event.target.closest(
+ '[data-native-list-row-key]'
+ );
+ const row = this.rowAtElement(rowElement);
+ if (row?.type !== 'market' || row.disabled) return;
+ this.cancelMarketPointer();
+ if (row.pressInActionKey)
+ this.emitRowAction(
+ row,
+ row.pressInActionKey,
+ rowElement ?? undefined,
+ rowElement ?? undefined
+ );
+ if (!row.longPressActionKey || !rowElement) return;
+ markActionAnchorSource(rowElement, 'row');
+ const timer = this.document.defaultView?.setTimeout(() => {
+ const current = this.marketPointer;
+ if (!current || current.pointerId !== event.pointerId) return;
+ this.marketPointer = undefined;
+ this.marketLongPressFired = true;
+ this.emitRowAction(row, row.longPressActionKey!, rowElement, rowElement);
+ }, MARKET_LONG_PRESS_MS);
+ if (timer === undefined) return;
+ this.marketPointer = {
+ pointerId: event.pointerId,
+ rowKey: row.key,
+ startX: event.clientX,
+ startY: event.clientY,
+ timer,
+ };
+ };
+
+ private handleMarketPointerMove = (event: PointerEvent) => {
+ const state = this.marketPointer;
+ if (!state || state.pointerId !== event.pointerId) return;
+ if (
+ Math.abs(event.clientX - state.startX) > MARKET_MOVE_CANCEL_PX ||
+ Math.abs(event.clientY - state.startY) > MARKET_MOVE_CANCEL_PX
+ )
+ this.cancelMarketPointer();
+ };
+
+ private handleMarketPointerEnd = (event: PointerEvent) => {
+ if (this.marketPointer?.pointerId === event.pointerId)
+ this.cancelMarketPointer();
+ };
+
// OneKey patch: hover opens the same anchored help action as native taps.
private handleTitlePointerOver = (event: PointerEvent) => {
const target = event.target;
@@ -4167,7 +4968,8 @@ export class NativeListWebEngine {
};
private handleClick = (event: Event) => {
- if (Date.now() < this.suppressClickUntil) {
+ if (this.marketLongPressFired || Date.now() < this.suppressClickUntil) {
+ this.marketLongPressFired = false;
event.preventDefault();
event.stopPropagation();
return;
@@ -4340,6 +5142,7 @@ export class NativeListWebEngine {
}
private handleScroll = () => {
+ this.cancelMarketPointer();
this.invalidateActionAnchor('scroll');
this.scheduleFrame();
};
@@ -4375,78 +5178,62 @@ export class NativeListWebEngine {
else view?.clearTimeout(handle);
}
- private selectIndexPosition(
- position: number,
- title: string,
- previewClientY?: number
- ) {
+ private selectIndexPosition(position: number) {
+ const activeKey = this.sectionIndexEntries.find(
+ (entry) => entry.position === position
+ )?.key;
+ this.indexRail
+ .querySelectorAll('[data-section-key]')
+ .forEach((button) =>
+ setData(button, 'active', button.dataset.sectionKey === activeKey)
+ );
this.scrollToIndex(position, {
animated: false,
alignment: 'start',
viewPosition: 0,
viewOffset: 0,
});
- const frame = this.viewportFrame.getBoundingClientRect();
- if (previewClientY !== undefined && frame.height > 0) {
- const previewY = Math.min(
- frame.height - 24,
- Math.max(24, previewClientY - frame.top)
- );
- this.indexPreview.style.top = String(previewY) + 'px';
- } else {
- this.indexPreview.style.top = '50%';
- }
- this.indexPreview.textContent = title;
- setData(this.indexPreview, 'visible', true);
- if (this.previewTimer !== undefined)
- this.document.defaultView?.clearTimeout(this.previewTimer);
- this.previewTimer = this.document.defaultView?.setTimeout(() => {
- setData(this.indexPreview, 'visible', false);
- }, 180);
}
- private sectionIndexEntryAtEvent(event: PointerEvent):
- | Readonly<{
- entry: NativeListWebEngine['sectionIndexEntries'][number];
- previewClientY: number;
- }>
- | undefined {
+ private sectionIndexEntryAtEvent(
+ event: PointerEvent
+ ): NativeListWebEngine['sectionIndexEntries'][number] | undefined {
const rail = this.indexRail.getBoundingClientRect();
if (this.sectionIndexEntries.length === 0 || rail.height <= 0) {
return undefined;
}
- const availableHeight = Math.max(
- 1,
- rail.height - SECTION_INDEX_EDGE_PADDING * 2
- );
+ const metrics = this.sectionIndexMetrics(rail.height);
+ if (metrics.trackHeight <= 0) return undefined;
const progress = Math.min(
1,
Math.max(
0,
- (event.clientY - rail.top - SECTION_INDEX_EDGE_PADDING) /
- availableHeight
+ (event.clientY - rail.top - metrics.originY) / metrics.trackHeight
)
);
- const entryIndex = Math.round(
- progress * (this.sectionIndexEntries.length - 1)
+ const entryIndex = Math.min(
+ this.sectionIndexEntries.length - 1,
+ Math.floor(progress * this.sectionIndexEntries.length)
);
- const entry = this.sectionIndexEntries[entryIndex];
- return entry ? { entry, previewClientY: event.clientY } : undefined;
+ return this.sectionIndexEntries[entryIndex];
}
private handleIndexPointer = (event: PointerEvent) => {
if (event.type === 'pointermove' && event.buttons === 0) return;
- const selection = this.sectionIndexEntryAtEvent(event);
- if (!selection) return;
+ const entry = this.sectionIndexEntryAtEvent(event);
+ if (!entry) return;
event.preventDefault();
if (event.type === 'pointerdown') {
this.indexRail.setPointerCapture?.(event.pointerId);
}
- this.selectIndexPosition(
- selection.entry.position,
- selection.entry.title,
- selection.previewClientY
- );
+ this.selectIndexPosition(entry.position);
+ };
+
+ private handleIndexPointerEnd = (event: PointerEvent) => {
+ if (event.type === 'pointerup') {
+ const entry = this.sectionIndexEntryAtEvent(event);
+ if (entry) this.selectIndexPosition(entry.position);
+ }
};
private handleIndexClick = (event: Event) => {
@@ -4463,12 +5250,7 @@ export class NativeListWebEngine {
const entry =
this.sectionIndexEntries[Number(button.dataset.sectionEntryIndex)];
if (!entry) return;
- const rect = button.getBoundingClientRect();
- this.selectIndexPosition(
- entry.position,
- entry.title,
- rect.top + rect.height / 2
- );
+ this.selectIndexPosition(entry.position);
};
private handlePullStart = (event: PointerEvent) => {
@@ -4671,7 +5453,12 @@ export class NativeListWebEngine {
const maximum = Math.max(0, this.contentLength() - this.viewportLength());
const next = Math.max(0, Math.min(maximum, offset));
if (this.layout.horizontal) this.viewport.scrollLeft = next;
- else this.viewport.scrollTop = next;
+ else {
+ this.viewport.scrollTop = resolveWebCollapsiblePagerRawOffset(
+ next,
+ this.collapsiblePagerInsets().header
+ );
+ }
this.scheduleFrame();
}
@@ -4753,10 +5540,15 @@ export class NativeListWebEngine {
}
this.reorderSettlingKey = state.sourceKey;
const viewportRect = this.viewport.getBoundingClientRect();
+ const insets = this.collapsiblePagerInsets();
const left =
viewportRect.left + destinationLayout.x - this.viewport.scrollLeft;
const top =
- viewportRect.top + destinationLayout.y - this.viewport.scrollTop;
+ viewportRect.top +
+ destinationLayout.y +
+ insets.header +
+ insets.sticky -
+ this.viewport.scrollTop;
this.reorderPreview.getBoundingClientRect();
this.reorderPreview.style.transition =
'transform ' +
diff --git a/native-views/react-native-pager-view/README.md b/native-views/react-native-pager-view/README.md
index a5e326271..851091bbe 100644
--- a/native-views/react-native-pager-view/README.md
+++ b/native-views/react-native-pager-view/README.md
@@ -27,5 +27,45 @@ development and delivery stable.
- If you are looking for original behavior and full documentation, please refer
to the upstream repository.
+## Collapsible pager
+
+`CollapsiblePagerView` is an opt-in container. The default `PagerView` export
+keeps its existing page lifetime and native implementation.
+
+```tsx
+}
+ stickyHeader={}
+ headerHeight={measuredHeaderHeight}
+ stickyHeaderHeight={measuredTabsHeight}
+ pageRetentionDistance={1}
+ onMountedPagesChanged={({ mountedPages }) => {
+ // Selected page plus one neighbour on each side by default.
+ }}
+ onCollapsibleStateChanged={({ nativeEvent }) => {
+ // Settled diagnostics: headerOffset, native/attached page counts, etc.
+ }}
+>
+ {pages.map((page) => (
+ {page.content}
+ ))}
+
+```
+
+Page keys must remain stable. The selected page and configured neighbours stay
+mounted for preheating; distant page slots remain in the pager while their
+React/native heavy subtrees are unmounted. iOS and Android retain a per-key
+scroll offset and preserve the shared header collapse when pages change. A
+NativeList can additionally restore its own stable item-key anchor when it is
+remounted; the pager does not replace that list-level anchor protocol or its
+cell reuse.
+
+On iOS the component observes the current `UIScrollView` content offset without
+replacing its delegate. Android coordinates nested scroll with the active
+`RecyclerView`. Web uses the active NativeList viewport automatically; another
+Web scroll child can opt in by exposing a DOM element with
+`data-collapsible-pager-scroll`. CSS scroll timelines drive header/sticky
+movement, so React is not updated on each vertical scroll frame.
+
Thank you again to Callstack and everyone who contributes to
`react-native-pager-view` 💙
diff --git a/native-views/react-native-pager-view/android/src/main/java/com/reactnativepagerview/CollapsiblePagerHost.kt b/native-views/react-native-pager-view/android/src/main/java/com/reactnativepagerview/CollapsiblePagerHost.kt
new file mode 100644
index 000000000..0cc30267a
--- /dev/null
+++ b/native-views/react-native-pager-view/android/src/main/java/com/reactnativepagerview/CollapsiblePagerHost.kt
@@ -0,0 +1,630 @@
+package com.reactnativepagerview
+
+import android.content.Context
+import android.graphics.Rect
+import android.view.View
+import android.view.ViewGroup
+import android.view.ViewTreeObserver
+// OneKey patch: FrameLayout is inherited through NestedScrollableHost.
+// import android.widget.FrameLayout
+import androidx.core.view.NestedScrollingParent3
+import androidx.core.view.NestedScrollingParentHelper
+import androidx.core.view.ViewCompat
+import androidx.recyclerview.widget.LinearLayoutManager
+import androidx.recyclerview.widget.RecyclerView
+import androidx.viewpager2.widget.ViewPager2
+import java.util.WeakHashMap
+import kotlin.math.max
+import kotlin.math.min
+import kotlin.math.roundToInt
+
+internal class CollapsiblePagerAdapter : RecyclerView.Adapter() {
+ private val pages = ArrayList()
+
+ override fun onCreateViewHolder(parent: ViewGroup, viewType: Int) =
+ ViewPagerViewHolder.create(parent)
+
+ override fun onBindViewHolder(holder: ViewPagerViewHolder, position: Int) {
+ val page = pages[position]
+ val container = holder.container
+ container.removeAllViews()
+ (page.parent as? ViewGroup)?.removeView(page)
+ container.addView(page)
+ }
+
+ override fun onViewRecycled(holder: ViewPagerViewHolder) {
+ holder.container.removeAllViews()
+ super.onViewRecycled(holder)
+ }
+
+ override fun getItemCount() = pages.size
+
+ fun addPage(page: View, index: Int) {
+ val safeIndex = index.coerceIn(0, pages.size)
+ pages.add(safeIndex, page)
+ notifyItemInserted(safeIndex)
+ }
+
+ fun removePage(page: View) {
+ val index = pages.indexOf(page)
+ if (index >= 0) {
+ pages.removeAt(index)
+ notifyItemRemoved(index)
+ }
+ }
+
+ fun pageAt(index: Int) = pages[index]
+
+ fun clear() {
+ val count = pages.size
+ pages.forEach { page -> (page.parent as? ViewGroup)?.removeView(page) }
+ pages.clear()
+ if (count > 0) notifyItemRangeRemoved(0, count)
+ }
+}
+
+/**
+ * Native vertical coordinator for the optional collapsible PagerView variant.
+ * It consumes only the header part of vertical nested scroll. The active page's
+ * vertical scroll view remains the content scroll source and horizontal gestures
+ * remain owned by ViewPager2.
+ */
+// OneKey patch: Match the standard pager's nested horizontal gesture host.
+// Original: class CollapsiblePagerHost(context: Context) : FrameLayout(context), NestedScrollingParent3 {
+class CollapsiblePagerHost(context: Context) : NestedScrollableHost(context), NestedScrollingParent3 {
+ private data class RecyclerPadding(
+ var left: Int,
+ var top: Int,
+ var right: Int,
+ var bottom: Int,
+ var clipToPadding: Boolean,
+ var appliedTopInset: Int = 0,
+ )
+
+ val pager = ViewPager2(context)
+ internal val adapter = CollapsiblePagerAdapter()
+ private val logicalChildren = ArrayList()
+ private val nestedScrollingParentHelper = NestedScrollingParentHelper(this)
+ private val originalRecyclerPadding = WeakHashMap()
+ private val restoredRecyclerKeys = WeakHashMap()
+ private val pageOffsets = HashMap()
+ private var observedRecyclerView: RecyclerView? = null
+ private var observedScrollListener: RecyclerView.OnScrollListener? = null
+ private var attachmentGeneration = 0
+ private var headerView: View? = null
+ private var stickyHeaderView: View? = null
+ private val pageContentLayoutListener = ViewTreeObserver.OnPreDrawListener {
+ if (width > 0 && height > 0 && isShown) layoutPagerIfRequested()
+ // Fabric can mount a retained list without another Android layout pass.
+ // Apply its header insets before that list first draws.
+ prepareAdjacentPages()
+ attachRecyclerObserver()
+ // OneKey patch: a filtered short page can reduce the existing collapse range.
+ setHeaderOffset(headerOffsetPx)
+ true
+ }
+
+ var selectedPage = 0
+ private set
+ var pendingInitialPage = 0
+ private var hasAppliedInitialPage = false
+ var headerHeightPx = 0
+ set(value) {
+ if (field == value) return
+ field = max(0, value)
+ headerOffsetPx = min(headerOffsetPx, field)
+ reapplyRecyclerInsets()
+ updateHeaderLayout()
+ }
+ var stickyHeaderHeightPx = 0
+ set(value) {
+ if (field == value) return
+ field = max(0, value)
+ reapplyRecyclerInsets()
+ updateHeaderLayout()
+ }
+ var headerOffsetPx = 0
+ private set
+ var pageKeys: List = emptyList()
+ var retainedPages: String = "[]"
+ var onHeaderOffsetChanged: (() -> Unit)? = null
+
+ init {
+ isSaveEnabled = false
+ clipChildren = true
+ pager.id = View.generateViewId()
+ pager.adapter = adapter
+ pager.isSaveEnabled = false
+ super.addView(
+ pager,
+ LayoutParams(LayoutParams.MATCH_PARENT, LayoutParams.MATCH_PARENT),
+ )
+ }
+
+ fun addReactChild(child: View, index: Int) {
+ val safeIndex = index.coerceIn(0, logicalChildren.size)
+ logicalChildren.add(safeIndex, child)
+ when (safeIndex) {
+ 0 -> {
+ headerView = child
+ (child.parent as? ViewGroup)?.removeView(child)
+ super.addView(child)
+ }
+ 1 -> {
+ stickyHeaderView = child
+ (child.parent as? ViewGroup)?.removeView(child)
+ super.addView(child)
+ }
+ else -> adapter.addPage(child, safeIndex - PAGE_SLOT_OFFSET)
+ }
+ applyPendingInitialPage()
+ headerView?.bringToFront()
+ stickyHeaderView?.bringToFront()
+ requestLayout()
+ }
+
+ fun removeReactChild(child: View) {
+ val index = logicalChildren.indexOf(child)
+ if (index < 0) return
+ logicalChildren.removeAt(index)
+ when (index) {
+ 0 -> {
+ super.removeView(child)
+ headerView = null
+ }
+ 1 -> {
+ super.removeView(child)
+ stickyHeaderView = null
+ }
+ else -> {
+ findVerticalRecyclerView(child)?.let(::restoreRecyclerInsets)
+ adapter.removePage(child)
+ }
+ }
+ }
+
+ fun removeAllReactChildren() {
+ detachRecyclerObserver()
+ for (recycler in originalRecyclerPadding.keys.toList()) {
+ restoreRecyclerInsets(recycler)
+ }
+ headerView?.let { view -> super.removeView(view) }
+ stickyHeaderView?.let { view -> super.removeView(view) }
+ headerView = null
+ stickyHeaderView = null
+ logicalChildren.clear()
+ adapter.clear()
+ hasAppliedInitialPage = false
+ }
+
+ fun reactChildCount() = logicalChildren.size
+
+ fun reactChildAt(index: Int) = logicalChildren[index]
+
+ fun selectPage(position: Int) {
+ if (adapter.itemCount == 0) return
+ detachRecyclerObserver()
+ selectedPage = position.coerceIn(0, adapter.itemCount - 1)
+ val savedOffset = pageOffsets[currentPageKey()]
+ ?: recyclerViewForPage(selectedPage)?.computeVerticalScrollOffset()
+ ?: 0
+ if (savedOffset > 0) setHeaderOffset(headerHeightPx)
+ postForCurrentAttachment {
+ prepareAdjacentPages()
+ attachRecyclerObserver()
+ }
+ }
+
+ private fun postForCurrentAttachment(block: () -> Unit) {
+ val generation = attachmentGeneration
+ post {
+ if (isAttachedToWindow && generation == attachmentGeneration) block()
+ }
+ }
+
+ fun applyPendingInitialPage() {
+ // OneKey patch: Fabric can resend initialPage while retained pages change.
+ // Reapplying it interrupts the current gesture and can leave ViewPager2 settling.
+ if (hasAppliedInitialPage) return
+ if (pendingInitialPage !in 0 until adapter.itemCount) return
+ hasAppliedInitialPage = true
+ if (pager.currentItem != pendingInitialPage) {
+ pager.setCurrentItem(pendingInitialPage, false)
+ }
+ selectPage(pendingInitialPage)
+ }
+
+ fun attachedPageCount(): Int = (pager.getChildAt(0) as? RecyclerView)?.childCount ?: 0
+
+ fun observedScrollableCount(): Int = originalRecyclerPadding.size
+
+ private fun layoutPagerIfRequested() {
+ val recycler = pager.getChildAt(0) as? RecyclerView ?: return
+ if (!recycler.isLayoutRequested || recycler.isComputingLayout || recycler.width <= 0 || recycler.height <= 0) return
+ // OneKey patch: a non-animated page command queues RecyclerView layout, but RN
+ // can stop that request after navigation. Drain it before showing the page.
+ recycler.measure(
+ MeasureSpec.makeMeasureSpec(recycler.width, MeasureSpec.EXACTLY),
+ MeasureSpec.makeMeasureSpec(recycler.height, MeasureSpec.EXACTLY),
+ )
+ recycler.layout(recycler.left, recycler.top, recycler.right, recycler.bottom)
+ }
+
+ private fun updateHeaderLayout() {
+ requestLayout()
+ if (width <= 0 || height <= 0) return
+ // OneKey patch: React Native ancestors can stop requestLayout after header props change.
+ // Commit the custom native slots at their existing bounds before the next draw.
+ forceLayout()
+ measure(
+ MeasureSpec.makeMeasureSpec(width, MeasureSpec.EXACTLY),
+ MeasureSpec.makeMeasureSpec(height, MeasureSpec.EXACTLY),
+ )
+ layout(left, top, right, bottom)
+ }
+
+ override fun onMeasure(widthMeasureSpec: Int, heightMeasureSpec: Int) {
+ val width = MeasureSpec.getSize(widthMeasureSpec)
+ val height = MeasureSpec.getSize(heightMeasureSpec)
+ // OneKey patch: a detached Fabric page has a zero viewport. Measuring ViewPager2
+ // at width zero spuriously selects page zero and replaces the retained JS pages.
+ if (width <= 0 || height <= 0) {
+ setMeasuredDimension(width, height)
+ return
+ }
+ val pagerHeight = height + headerHeightPx
+ pager.measure(
+ MeasureSpec.makeMeasureSpec(width, MeasureSpec.EXACTLY),
+ MeasureSpec.makeMeasureSpec(pagerHeight, MeasureSpec.EXACTLY),
+ )
+ headerView?.measure(
+ MeasureSpec.makeMeasureSpec(width, MeasureSpec.EXACTLY),
+ MeasureSpec.makeMeasureSpec(headerHeightPx, MeasureSpec.EXACTLY),
+ )
+ stickyHeaderView?.measure(
+ MeasureSpec.makeMeasureSpec(width, MeasureSpec.EXACTLY),
+ MeasureSpec.makeMeasureSpec(stickyHeaderHeightPx, MeasureSpec.EXACTLY),
+ )
+ setMeasuredDimension(width, height)
+ }
+
+ override fun onLayout(changed: Boolean, left: Int, top: Int, right: Int, bottom: Int) {
+ val width = right - left
+ val height = bottom - top
+ // RN ancestors allow overflow; keep translated header content inside this viewport.
+ clipBounds = Rect(0, 0, width, height)
+ if (width <= 0 || height <= 0) return
+ pager.layout(0, 0, width, height + headerHeightPx)
+ headerView?.layout(0, 0, width, headerHeightPx)
+ stickyHeaderView?.layout(
+ 0,
+ headerHeightPx,
+ width,
+ headerHeightPx + stickyHeaderHeightPx,
+ )
+ applyHeaderOffset()
+ postForCurrentAttachment {
+ prepareAdjacentPages()
+ attachRecyclerObserver()
+ }
+ }
+
+ private fun maximumHeaderOffset(): Int {
+ val recycler = observedRecyclerView ?: return headerHeightPx
+ if (recycler.childCount == 0 || recycler.canScrollVertically(-1) || recycler.canScrollVertically(1)) {
+ return headerHeightPx
+ }
+ // OneKey patch: short pages use the original rounded-DIP minimum content height.
+ val density = resources.displayMetrics.density
+ val contentHeight = ((height / density).roundToInt() + (headerHeightPx / density).roundToInt()) * density
+ return (contentHeight.roundToInt() - height).coerceIn(0, headerHeightPx)
+ }
+
+ private fun setHeaderOffset(offset: Int) {
+ // val next = offset.coerceIn(0, headerHeightPx)
+ val next = offset.coerceIn(0, maximumHeaderOffset())
+ if (headerOffsetPx == next) return
+ headerOffsetPx = next
+ applyHeaderOffset()
+ }
+
+ private fun applyHeaderOffset() {
+ val offset = headerOffsetPx.toFloat()
+ pager.translationY = -offset
+ headerView?.translationY = -offset
+ stickyHeaderView?.translationY = -offset
+ }
+
+ private fun pageKey(index: Int): String = pageKeys.getOrNull(index) ?: "page-$index"
+
+ private fun currentPageKey(): String = pageKey(selectedPage)
+
+ private fun isDescendant(view: View, ancestor: View): Boolean {
+ var current: View? = view
+ while (current != null) {
+ if (current === ancestor) return true
+ current = current.parent as? View
+ }
+ return false
+ }
+
+ private fun findVerticalRecyclerView(view: View): RecyclerView? {
+ if (view is RecyclerView) {
+ val manager = view.layoutManager
+ if (manager !is LinearLayoutManager || manager.orientation == RecyclerView.VERTICAL) {
+ return view
+ }
+ }
+ if (view is ViewGroup) {
+ for (index in 0 until view.childCount) {
+ findVerticalRecyclerView(view.getChildAt(index))?.let { return it }
+ }
+ }
+ return null
+ }
+
+ private fun recyclerViewForPage(index: Int): RecyclerView? {
+ if (index !in 0 until adapter.itemCount) return null
+ return findVerticalRecyclerView(adapter.pageAt(index))
+ }
+
+ private fun prepareAdjacentPages() {
+ val first = max(0, selectedPage - 1)
+ val last = min(adapter.itemCount - 1, selectedPage + 1)
+ for (index in first..last) {
+ recyclerViewForPage(index)?.let { recycler ->
+ applyRecyclerInsets(recycler, index)
+ }
+ }
+ }
+
+ private fun attachRecyclerObserver() {
+ if (selectedPage !in 0 until adapter.itemCount) return
+ val previous = observedRecyclerView
+ if (previous != null && !isDescendant(previous, adapter.pageAt(selectedPage))) {
+ detachRecyclerObserver()
+ // A replacement list starts at its first row, retaining only header collapse.
+ pageOffsets[currentPageKey()] = 0
+ }
+ val recycler = recyclerViewForPage(selectedPage) ?: return
+ if (observedRecyclerView === recycler) {
+ applyRecyclerInsets(recycler, selectedPage)
+ return
+ }
+
+ detachRecyclerObserver()
+ observedRecyclerView = recycler
+ applyRecyclerInsets(recycler, selectedPage)
+ val listener = object : RecyclerView.OnScrollListener() {
+ override fun onScrolled(recyclerView: RecyclerView, dx: Int, dy: Int) {
+ val contentOffset = recyclerView.computeVerticalScrollOffset()
+ pageOffsets[currentPageKey()] = contentOffset
+ // Nested touch scrolling moves list content only after the header has
+ // collapsed. Programmatic list jumps bypass those parent callbacks.
+ if (contentOffset > 0 && headerOffsetPx < headerHeightPx) {
+ setHeaderOffset(headerHeightPx)
+ }
+ }
+ }
+ observedScrollListener = listener
+ recycler.addOnScrollListener(listener)
+
+ }
+
+ private fun detachRecyclerObserver() {
+ storeObservedPageOffset()
+ val recycler = observedRecyclerView
+ val listener = observedScrollListener
+ if (recycler != null && listener != null) recycler.removeOnScrollListener(listener)
+ observedRecyclerView = null
+ observedScrollListener = null
+ }
+
+ private fun storeObservedPageOffset() {
+ observedRecyclerView?.let { recycler ->
+ pageOffsets[currentPageKey()] = recycler.computeVerticalScrollOffset()
+ }
+ }
+
+ private fun applyRecyclerInsets(recycler: RecyclerView, pageIndex: Int) {
+ val original = originalRecyclerPadding.getOrPut(recycler) {
+ RecyclerPadding(
+ recycler.paddingLeft,
+ recycler.paddingTop,
+ recycler.paddingRight,
+ recycler.paddingBottom,
+ recycler.clipToPadding,
+ )
+ }
+ updateRecyclerPaddingOwnership(recycler, original)
+ val topInset = headerHeightPx + stickyHeaderHeightPx
+ recycler.clipToPadding = false
+ val top = original.top + topInset
+ // The taller pager already accounts for the translated header. Adding it
+ // again leaves a full header-sized blank footer at the end of long lists.
+ val bottom = original.bottom
+ if (recycler.paddingLeft != original.left || recycler.paddingTop != top ||
+ recycler.paddingRight != original.right || recycler.paddingBottom != bottom) {
+ // OneKey patch: LinearLayoutManager otherwise anchors children at their old
+ // screen coordinates when a page changes the sticky header height.
+ val manager = recycler.layoutManager as? LinearLayoutManager
+ val first = manager?.takeIf { it.orientation == RecyclerView.VERTICAL }
+ ?.findFirstVisibleItemPosition() ?: RecyclerView.NO_POSITION
+ val anchorOffset = if (first != RecyclerView.NO_POSITION) {
+ manager?.findViewByPosition(first)?.let { manager.getDecoratedTop(it) - recycler.paddingTop }
+ } else null
+ recycler.setPadding(original.left, top, original.right, bottom)
+ if (anchorOffset != null) manager?.scrollToPositionWithOffset(first, anchorOffset)
+ // React Native can stop this nested requestLayout at its React-owned parent.
+ // Commit the changed inset before drawing instead of waiting for a data update.
+ if (recycler.width > 0 && recycler.height > 0 && !recycler.isComputingLayout) {
+ recycler.forceLayout()
+ recycler.measure(
+ MeasureSpec.makeMeasureSpec(recycler.width, MeasureSpec.EXACTLY),
+ MeasureSpec.makeMeasureSpec(recycler.height, MeasureSpec.EXACTLY),
+ )
+ recycler.layout(recycler.left, recycler.top, recycler.right, recycler.bottom)
+ }
+ }
+ original.appliedTopInset = topInset
+ val key = pageKey(pageIndex)
+ if (restoredRecyclerKeys[recycler] != key) {
+ restoredRecyclerKeys[recycler] = key
+ val generation = attachmentGeneration
+ recycler.post {
+ if (!isAttachedToWindow || generation != attachmentGeneration ||
+ restoredRecyclerKeys[recycler] != key ||
+ originalRecyclerPadding[recycler] !== original) {
+ if (restoredRecyclerKeys[recycler] == key) restoredRecyclerKeys.remove(recycler)
+ return@post
+ }
+ val saved = pageOffsets[key] ?: 0
+ val current = recycler.computeVerticalScrollOffset()
+ if (saved != current) recycler.scrollBy(0, saved - current)
+ }
+ }
+ }
+
+ private fun updateRecyclerPaddingOwnership(
+ recycler: RecyclerView,
+ original: RecyclerPadding,
+ ) {
+ val expectedTop = original.top + original.appliedTopInset
+ if (recycler.paddingLeft != original.left) original.left = recycler.paddingLeft
+ if (recycler.paddingTop != expectedTop) {
+ // A React-owned list can replace its content padding while it remains
+ // attached. Remove our inset before retaining that value as the new base.
+ original.top = (recycler.paddingTop - original.appliedTopInset).coerceAtLeast(0)
+ }
+ if (recycler.paddingRight != original.right) original.right = recycler.paddingRight
+ if (recycler.paddingBottom != original.bottom) original.bottom = recycler.paddingBottom
+ if (recycler.clipToPadding) original.clipToPadding = true
+ }
+
+ private fun reapplyRecyclerInsets() {
+ prepareAdjacentPages()
+ }
+
+ private fun restoreRecyclerInsets(recycler: RecyclerView) {
+ val original = originalRecyclerPadding.remove(recycler) ?: return
+ updateRecyclerPaddingOwnership(recycler, original)
+ restoredRecyclerKeys.remove(recycler)
+ recycler.clipToPadding = original.clipToPadding
+ recycler.setPadding(original.left, original.top, original.right, original.bottom)
+ }
+
+ private fun isCurrentPageTarget(target: View): Boolean {
+ if (selectedPage !in 0 until adapter.itemCount) return false
+ return isDescendant(target, adapter.pageAt(selectedPage))
+ }
+
+ // RN ScrollView uses the platform nested-scroll callbacks; RecyclerView
+ // uses the AndroidX variants with an explicit input type.
+ override fun onStartNestedScroll(child: View, target: View, axes: Int): Boolean =
+ onStartNestedScroll(child, target, axes, ViewCompat.TYPE_TOUCH)
+
+ override fun onNestedScrollAccepted(child: View, target: View, axes: Int) =
+ onNestedScrollAccepted(child, target, axes, ViewCompat.TYPE_TOUCH)
+
+ override fun onStopNestedScroll(target: View) =
+ onStopNestedScroll(target, ViewCompat.TYPE_TOUCH)
+
+ override fun onNestedPreScroll(target: View, dx: Int, dy: Int, consumed: IntArray) =
+ onNestedPreScroll(target, dx, dy, consumed, ViewCompat.TYPE_TOUCH)
+
+ override fun onNestedScroll(
+ target: View,
+ dxConsumed: Int,
+ dyConsumed: Int,
+ dxUnconsumed: Int,
+ dyUnconsumed: Int,
+ ) = onNestedScroll(
+ target, dxConsumed, dyConsumed, dxUnconsumed, dyUnconsumed, ViewCompat.TYPE_TOUCH,
+ )
+
+ override fun onStartNestedScroll(child: View, target: View, axes: Int, type: Int): Boolean =
+ axes and ViewCompat.SCROLL_AXIS_VERTICAL != 0 && isCurrentPageTarget(target)
+
+ override fun onNestedScrollAccepted(child: View, target: View, axes: Int, type: Int) {
+ nestedScrollingParentHelper.onNestedScrollAccepted(child, target, axes, type)
+ }
+
+ override fun onStopNestedScroll(target: View, type: Int) {
+ nestedScrollingParentHelper.onStopNestedScroll(target, type)
+ onHeaderOffsetChanged?.invoke()
+ }
+
+ override fun onNestedPreScroll(target: View, dx: Int, dy: Int, consumed: IntArray, type: Int) {
+ if (!isCurrentPageTarget(target)) return
+ // OneKey patch: consume only the distance the short-page header can actually move.
+ val maximumOffset = maximumHeaderOffset()
+ // if (dy > 0 && headerOffsetPx < headerHeightPx) {
+ // val used = min(dy, headerHeightPx - headerOffsetPx)
+ if (dy > 0 && headerOffsetPx < maximumOffset) {
+ val used = min(dy, maximumOffset - headerOffsetPx)
+ setHeaderOffset(headerOffsetPx + used)
+ consumed[1] += used
+ } else if (dy < 0 && headerOffsetPx > 0 && !target.canScrollVertically(-1)) {
+ val used = max(dy, -headerOffsetPx)
+ setHeaderOffset(headerOffsetPx + used)
+ consumed[1] += used
+ }
+ }
+
+ override fun onNestedScroll(
+ target: View,
+ dxConsumed: Int,
+ dyConsumed: Int,
+ dxUnconsumed: Int,
+ dyUnconsumed: Int,
+ type: Int,
+ consumed: IntArray,
+ ) {
+ if (!isCurrentPageTarget(target) || dyUnconsumed >= 0 || headerOffsetPx <= 0) return
+ val used = max(dyUnconsumed, -headerOffsetPx)
+ setHeaderOffset(headerOffsetPx + used)
+ consumed[1] += used
+ }
+
+ override fun onNestedScroll(
+ target: View,
+ dxConsumed: Int,
+ dyConsumed: Int,
+ dxUnconsumed: Int,
+ dyUnconsumed: Int,
+ type: Int,
+ ) {
+ onNestedScroll(
+ target,
+ dxConsumed,
+ dyConsumed,
+ dxUnconsumed,
+ dyUnconsumed,
+ type,
+ IntArray(2),
+ )
+ }
+
+ override fun getNestedScrollAxes() = nestedScrollingParentHelper.nestedScrollAxes
+
+ override fun onAttachedToWindow() {
+ super.onAttachedToWindow()
+ attachmentGeneration += 1
+ restoredRecyclerKeys.clear()
+ viewTreeObserver.addOnPreDrawListener(pageContentLayoutListener)
+ }
+
+ override fun onDetachedFromWindow() {
+ attachmentGeneration += 1
+ viewTreeObserver.removeOnPreDrawListener(pageContentLayoutListener)
+ detachRecyclerObserver()
+ for (recycler in originalRecyclerPadding.keys.toList()) {
+ restoreRecyclerInsets(recycler)
+ }
+ super.onDetachedFromWindow()
+ }
+
+ companion object {
+ const val PAGE_SLOT_OFFSET = 2
+ }
+}
diff --git a/native-views/react-native-pager-view/android/src/main/java/com/reactnativepagerview/CollapsiblePagerViewManager.kt b/native-views/react-native-pager-view/android/src/main/java/com/reactnativepagerview/CollapsiblePagerViewManager.kt
new file mode 100644
index 000000000..2cc11f0af
--- /dev/null
+++ b/native-views/react-native-pager-view/android/src/main/java/com/reactnativepagerview/CollapsiblePagerViewManager.kt
@@ -0,0 +1,222 @@
+package com.reactnativepagerview
+
+import android.view.View
+import android.view.ViewGroup
+import androidx.viewpager2.widget.ViewPager2
+import com.facebook.react.bridge.ReadableArray
+import com.facebook.react.common.MapBuilder
+import com.facebook.react.module.annotations.ReactModule
+import com.facebook.react.uimanager.PixelUtil
+import com.facebook.react.uimanager.ThemedReactContext
+import com.facebook.react.uimanager.UIManagerHelper
+import com.facebook.react.uimanager.ViewGroupManager
+import com.facebook.react.uimanager.ViewManagerDelegate
+import com.facebook.react.uimanager.annotations.ReactProp
+import com.facebook.react.viewmanagers.RNCCollapsiblePagerViewManagerDelegate
+import com.facebook.react.viewmanagers.RNCCollapsiblePagerViewManagerInterface
+import com.reactnativepagerview.event.CollapsibleStateChangedEvent
+import com.reactnativepagerview.event.PageScrollEvent
+import com.reactnativepagerview.event.PageScrollStateChangedEvent
+import com.reactnativepagerview.event.PageSelectedEvent
+import org.json.JSONArray
+import kotlin.math.roundToInt
+
+@ReactModule(name = CollapsiblePagerViewManager.NAME)
+class CollapsiblePagerViewManager : ViewGroupManager(),
+ RNCCollapsiblePagerViewManagerInterface {
+
+ private val delegate: ViewManagerDelegate =
+ RNCCollapsiblePagerViewManagerDelegate(this)
+
+ override fun getDelegate() = delegate
+
+ override fun getName() = NAME
+
+ override fun createViewInstance(reactContext: ThemedReactContext): CollapsiblePagerHost {
+ val host = CollapsiblePagerHost(reactContext)
+ host.id = View.generateViewId()
+ host.layoutParams = ViewGroup.LayoutParams(
+ ViewGroup.LayoutParams.MATCH_PARENT,
+ ViewGroup.LayoutParams.MATCH_PARENT,
+ )
+ host.pager.registerOnPageChangeCallback(object : ViewPager2.OnPageChangeCallback() {
+ override fun onPageScrolled(position: Int, offset: Float, offsetPixels: Int) {
+ dispatch(reactContext, host, PageScrollEvent(host.id, position, offset))
+ }
+
+ override fun onPageSelected(position: Int) {
+ host.selectPage(position)
+ dispatch(reactContext, host, PageSelectedEvent(host.id, position))
+ dispatchDiagnostics(reactContext, host, "page-selected")
+ }
+
+ override fun onPageScrollStateChanged(state: Int) {
+ val value = when (state) {
+ ViewPager2.SCROLL_STATE_IDLE -> "idle"
+ ViewPager2.SCROLL_STATE_DRAGGING -> "dragging"
+ ViewPager2.SCROLL_STATE_SETTLING -> "settling"
+ else -> return
+ }
+ dispatch(reactContext, host, PageScrollStateChangedEvent(host.id, value))
+ if (state == ViewPager2.SCROLL_STATE_IDLE) {
+ dispatchDiagnostics(reactContext, host, "pager-idle")
+ }
+ }
+ })
+ host.onHeaderOffsetChanged = {
+ if (!host.pager.isFakeDragging && host.pager.scrollState == ViewPager2.SCROLL_STATE_IDLE) {
+ dispatchDiagnostics(reactContext, host, "vertical-idle")
+ }
+ }
+ host.post {
+ dispatch(reactContext, host, PageSelectedEvent(host.id, host.pager.currentItem))
+ dispatchDiagnostics(reactContext, host, "mounted")
+ }
+ return host
+ }
+
+ private fun dispatch(reactContext: ThemedReactContext, host: CollapsiblePagerHost, event: com.facebook.react.uimanager.events.Event<*>) {
+ UIManagerHelper.getEventDispatcherForReactTag(reactContext, host.id)?.dispatchEvent(event)
+ }
+
+ private fun dispatchDiagnostics(
+ reactContext: ThemedReactContext,
+ host: CollapsiblePagerHost,
+ reason: String,
+ ) {
+ dispatch(
+ reactContext,
+ host,
+ CollapsibleStateChangedEvent(
+ host.id,
+ host.selectedPage,
+ PixelUtil.toDIPFromPixel(host.headerOffsetPx.toFloat()).toDouble(),
+ host.adapter.itemCount,
+ host.attachedPageCount(),
+ host.observedScrollableCount(),
+ host.retainedPages,
+ reason,
+ ),
+ )
+ }
+
+ override fun addView(parent: CollapsiblePagerHost, child: View, index: Int) =
+ parent.addReactChild(child, index)
+
+ override fun getChildCount(parent: CollapsiblePagerHost) = parent.reactChildCount()
+
+ override fun getChildAt(parent: CollapsiblePagerHost, index: Int) = parent.reactChildAt(index)
+
+ override fun removeView(parent: CollapsiblePagerHost, view: View) = parent.removeReactChild(view)
+
+ override fun removeViewAt(parent: CollapsiblePagerHost, index: Int) =
+ parent.removeReactChild(parent.reactChildAt(index))
+
+ override fun removeAllViews(parent: CollapsiblePagerHost) = parent.removeAllReactChildren()
+
+ override fun needsCustomLayoutForChildren() = true
+
+ @ReactProp(name = "scrollEnabled", defaultBoolean = true)
+ override fun setScrollEnabled(view: CollapsiblePagerHost?, value: Boolean) {
+ view?.pager?.isUserInputEnabled = value
+ }
+
+ @ReactProp(name = "layoutDirection")
+ override fun setLayoutDirection(view: CollapsiblePagerHost?, value: String?) {
+ view?.pager?.layoutDirection = if (value == "rtl") {
+ View.LAYOUT_DIRECTION_RTL
+ } else {
+ View.LAYOUT_DIRECTION_LTR
+ }
+ }
+
+ @ReactProp(name = "initialPage", defaultInt = 0)
+ override fun setInitialPage(view: CollapsiblePagerHost?, value: Int) {
+ view ?: return
+ view.pendingInitialPage = value
+ view.applyPendingInitialPage()
+ }
+
+ @ReactProp(name = "offscreenPageLimit", defaultInt = ViewPager2.OFFSCREEN_PAGE_LIMIT_DEFAULT)
+ override fun setOffscreenPageLimit(view: CollapsiblePagerHost?, value: Int) {
+ view?.pager?.offscreenPageLimit = if (value == ViewPager2.OFFSCREEN_PAGE_LIMIT_DEFAULT) {
+ value
+ } else {
+ value.coerceAtLeast(1)
+ }
+ }
+
+ @ReactProp(name = "nestedScrollEnabled", defaultBoolean = false)
+ override fun setNestedScrollEnabled(view: CollapsiblePagerHost?, value: Boolean) {
+ // OneKey patch: CollapsiblePagerHost always coordinates nested pagers on Android.
+ }
+
+ // OneKey patch: round Yoga header dimensions to the nearest physical pixel.
+ @ReactProp(name = "headerHeight", defaultInt = 0)
+ override fun setHeaderHeight(view: CollapsiblePagerHost?, value: Int) {
+ view?.headerHeightPx = PixelUtil.toPixelFromDIP(value.toDouble()).roundToInt()
+ }
+
+ @ReactProp(name = "stickyHeaderHeight", defaultInt = 0)
+ override fun setStickyHeaderHeight(view: CollapsiblePagerHost?, value: Int) {
+ view?.stickyHeaderHeightPx = PixelUtil.toPixelFromDIP(value.toDouble()).roundToInt()
+ }
+
+ @ReactProp(name = "pageKeys")
+ override fun setPageKeys(view: CollapsiblePagerHost?, value: String?) {
+ view ?: return
+ view.pageKeys = parseStringArray(value)
+ }
+
+ @ReactProp(name = "retainedPages")
+ override fun setRetainedPages(view: CollapsiblePagerHost?, value: String?) {
+ view?.retainedPages = value ?: "[]"
+ }
+
+ private fun parseStringArray(value: String?): List {
+ if (value.isNullOrEmpty()) return emptyList()
+ return runCatching {
+ val json = JSONArray(value)
+ List(json.length()) { index -> json.optString(index, "page-$index") }
+ }.getOrDefault(emptyList())
+ }
+
+ override fun receiveCommand(root: CollapsiblePagerHost, commandId: String, args: ReadableArray?) {
+ delegate.receiveCommand(root, commandId, args)
+ }
+
+ override fun setPage(view: CollapsiblePagerHost?, selectedPage: Int) {
+ if (view != null && selectedPage in 0 until view.adapter.itemCount) {
+ view.pager.setCurrentItem(selectedPage, true)
+ }
+ }
+
+ override fun setPageWithoutAnimation(view: CollapsiblePagerHost?, selectedPage: Int) {
+ if (view != null && selectedPage in 0 until view.adapter.itemCount) {
+ view.pager.setCurrentItem(selectedPage, false)
+ }
+ }
+
+ override fun setScrollEnabledImperatively(view: CollapsiblePagerHost?, scrollEnabled: Boolean) {
+ view?.pager?.isUserInputEnabled = scrollEnabled
+ }
+
+ override fun getExportedCustomDirectEventTypeConstants(): MutableMap> =
+ MapBuilder.builder>()
+ .put(PageScrollEvent.EVENT_NAME, MapBuilder.of("registrationName", "onPageScroll"))
+ .put(PageSelectedEvent.EVENT_NAME, MapBuilder.of("registrationName", "onPageSelected"))
+ .put(
+ PageScrollStateChangedEvent.EVENT_NAME,
+ MapBuilder.of("registrationName", "onPageScrollStateChanged"),
+ )
+ .put(
+ CollapsibleStateChangedEvent.EVENT_NAME,
+ MapBuilder.of("registrationName", "onCollapsibleStateChanged"),
+ )
+ .build()
+ .toMutableMap()
+
+ companion object {
+ const val NAME = "RNCCollapsiblePagerView"
+ }
+}
diff --git a/native-views/react-native-pager-view/android/src/main/java/com/reactnativepagerview/NestedScrollableHost.kt b/native-views/react-native-pager-view/android/src/main/java/com/reactnativepagerview/NestedScrollableHost.kt
index 259404ebe..996767ff4 100644
--- a/native-views/react-native-pager-view/android/src/main/java/com/reactnativepagerview/NestedScrollableHost.kt
+++ b/native-views/react-native-pager-view/android/src/main/java/com/reactnativepagerview/NestedScrollableHost.kt
@@ -21,7 +21,9 @@ import kotlin.math.sign
* Supports multiple levels of nested PagerViews by re-asserting
* requestDisallowInterceptTouchEvent after child dispatch.
*/
-class NestedScrollableHost : FrameLayout {
+// OneKey patch: Let the collapsible pager reuse same-direction nested pager coordination.
+// Original: class NestedScrollableHost : FrameLayout {
+open class NestedScrollableHost : FrameLayout {
constructor(context: Context) : super(context)
constructor(context: Context, attrs: AttributeSet?) : super(context, attrs)
public var initialIndex: Int? = null
diff --git a/native-views/react-native-pager-view/android/src/main/java/com/reactnativepagerview/PagerViewViewPackage.kt b/native-views/react-native-pager-view/android/src/main/java/com/reactnativepagerview/PagerViewViewPackage.kt
index 194bf0aa0..614e598ae 100644
--- a/native-views/react-native-pager-view/android/src/main/java/com/reactnativepagerview/PagerViewViewPackage.kt
+++ b/native-views/react-native-pager-view/android/src/main/java/com/reactnativepagerview/PagerViewViewPackage.kt
@@ -12,6 +12,6 @@ class PagerViewPackage : ReactPackage {
}
override fun createViewManagers(reactContext: ReactApplicationContext): List> {
- return listOf(PagerViewViewManager())
+ return listOf(PagerViewViewManager(), CollapsiblePagerViewManager())
}
}
diff --git a/native-views/react-native-pager-view/android/src/main/java/com/reactnativepagerview/event/CollapsibleStateChangedEvent.kt b/native-views/react-native-pager-view/android/src/main/java/com/reactnativepagerview/event/CollapsibleStateChangedEvent.kt
new file mode 100644
index 000000000..70ce3d004
--- /dev/null
+++ b/native-views/react-native-pager-view/android/src/main/java/com/reactnativepagerview/event/CollapsibleStateChangedEvent.kt
@@ -0,0 +1,39 @@
+package com.reactnativepagerview.event
+
+import com.facebook.react.bridge.Arguments
+import com.facebook.react.bridge.WritableMap
+import com.facebook.react.uimanager.events.Event
+import com.facebook.react.uimanager.events.RCTEventEmitter
+
+class CollapsibleStateChangedEvent(
+ viewTag: Int,
+ private val position: Int,
+ private val headerOffset: Double,
+ private val nativePageCount: Int,
+ private val attachedPageCount: Int,
+ private val observedScrollableCount: Int,
+ private val retainedPages: String,
+ private val reason: String,
+) : Event(viewTag) {
+ override fun getEventName() = EVENT_NAME
+
+ override fun canCoalesce() = false
+
+ override fun dispatch(rctEventEmitter: RCTEventEmitter) {
+ rctEventEmitter.receiveEvent(viewTag, eventName, serializeEventData())
+ }
+
+ private fun serializeEventData(): WritableMap = Arguments.createMap().apply {
+ putInt("position", position)
+ putDouble("headerOffset", headerOffset)
+ putInt("nativePageCount", nativePageCount)
+ putInt("attachedPageCount", attachedPageCount)
+ putInt("observedScrollableCount", observedScrollableCount)
+ putString("retainedPages", retainedPages)
+ putString("reason", reason)
+ }
+
+ companion object {
+ const val EVENT_NAME = "topCollapsibleStateChanged"
+ }
+}
diff --git a/native-views/react-native-pager-view/ios/RNCCollapsiblePagerViewComponentView.h b/native-views/react-native-pager-view/ios/RNCCollapsiblePagerViewComponentView.h
new file mode 100644
index 000000000..b835bfefa
--- /dev/null
+++ b/native-views/react-native-pager-view/ios/RNCCollapsiblePagerViewComponentView.h
@@ -0,0 +1,9 @@
+#import
+
+NS_ASSUME_NONNULL_BEGIN
+
+@interface RNCCollapsiblePagerViewComponentView : RCTViewComponentView
+
+@end
+
+NS_ASSUME_NONNULL_END
diff --git a/native-views/react-native-pager-view/ios/RNCCollapsiblePagerViewComponentView.mm b/native-views/react-native-pager-view/ios/RNCCollapsiblePagerViewComponentView.mm
new file mode 100644
index 000000000..135b7173b
--- /dev/null
+++ b/native-views/react-native-pager-view/ios/RNCCollapsiblePagerViewComponentView.mm
@@ -0,0 +1,991 @@
+#import "RNCCollapsiblePagerViewComponentView.h"
+
+#import
+#import
+#import
+#import
+
+#import "React/RCTConversions.h"
+
+using namespace facebook::react;
+
+static void *RNCCollapsiblePagerContentOffsetContext = &RNCCollapsiblePagerContentOffsetContext;
+
+@interface RNCCollapsiblePagerViewComponentView () <
+ RCTRNCCollapsiblePagerViewViewProtocol,
+ UIPageViewControllerDataSource,
+ UIPageViewControllerDelegate,
+ UIScrollViewDelegate,
+ UIGestureRecognizerDelegate
+>
+- (void)finishPagerScrollEmittingSelection:(BOOL)emitSelection;
+@end
+
+@implementation RNCCollapsiblePagerViewComponentView {
+ UIView *_containerView;
+ UIPageViewController *_pageViewController;
+ UIScrollView *_pagerScrollView;
+ NSMutableArray *> *_logicalChildren;
+ NSMutableArray *_pageControllers;
+ UIView *_headerView;
+ UIView *_stickyHeaderView;
+ NSInteger _currentIndex;
+ NSInteger _destinationIndex;
+ NSInteger _pendingInitialPage;
+ NSInteger _headerHeight;
+ NSInteger _stickyHeaderHeight;
+ CGFloat _headerOffset;
+ BOOL _scrollEnabled;
+ // OneKey patch: Coordinate this inner pager with an outer horizontal pager.
+ BOOL _nestedScrollEnabled;
+ UIPanGestureRecognizer *_blockerGesture;
+ BOOL _transitioning;
+ BOOL _isPagerDragging;
+ BOOL _hasReceivedPageCommand;
+ NSUInteger _transitionId;
+ // OneKey patch: Retain the latest tab tap while an animation is in flight.
+ NSInteger _pendingGoToIndex;
+ BOOL _hasAppliedInitialPage;
+ BOOL _needsPropsReapply;
+ NSString *_layoutDirection;
+ NSArray *_pageKeys;
+ NSString *_retainedPages;
+ NSMutableDictionary *_pageOffsets;
+ NSMapTable *_originalInsets;
+ NSMapTable *_appliedTopInsets;
+ NSMapTable *_originalIndicatorInsets;
+ NSMapTable *_originalAlwaysBounceVertical;
+ NSMapTable *_originalInsetAdjustmentBehavior;
+ __weak UIScrollView *_observedScrollView;
+ BOOL _observingContentOffset;
+ BOOL _isBeingRecycled;
+ NSUInteger _generation;
+}
+
++ (void)load
+{
+ [super load];
+}
+
+- (instancetype)initWithFrame:(CGRect)frame
+{
+ if (self = [super initWithFrame:frame]) {
+ static const auto defaultProps = std::make_shared();
+ _props = defaultProps;
+ _logicalChildren = [NSMutableArray new];
+ _pageControllers = [NSMutableArray new];
+ _pageOffsets = [NSMutableDictionary new];
+ _originalInsets = [NSMapTable weakToStrongObjectsMapTable];
+ _appliedTopInsets = [NSMapTable weakToStrongObjectsMapTable];
+ _originalIndicatorInsets = [NSMapTable weakToStrongObjectsMapTable];
+ _originalAlwaysBounceVertical = [NSMapTable weakToStrongObjectsMapTable];
+ _originalInsetAdjustmentBehavior = [NSMapTable weakToStrongObjectsMapTable];
+ _pageKeys = @[];
+ _retainedPages = @"[]";
+ _currentIndex = 0;
+ _destinationIndex = 0;
+ _pendingInitialPage = 0;
+ _scrollEnabled = YES;
+ _nestedScrollEnabled = NO;
+ _pendingGoToIndex = -1;
+ _hasAppliedInitialPage = NO;
+ _needsPropsReapply = YES;
+ _layoutDirection = @"ltr";
+
+ _containerView = [UIView new];
+ _containerView.clipsToBounds = YES;
+ self.contentView = _containerView;
+
+ [self initializePageViewController];
+ }
+ return self;
+}
+
+- (void)willMoveToSuperview:(UIView *)newSuperview
+{
+ [super willMoveToSuperview:newSuperview];
+ if (newSuperview != nil && _pageViewController == nil) {
+ self.contentView = _containerView;
+ [self initializePageViewController];
+ }
+}
+
+- (void)didMoveToWindow
+{
+ [super didMoveToWindow];
+ // OneKey patch: removing a decelerating page from its window can suppress
+ // UIKit's final scroll callback. Restore the last acknowledged page on reattach.
+ if (self.window != nil && _isPagerDragging &&
+ !_pagerScrollView.dragging && !_pagerScrollView.decelerating) {
+ [self finishPagerScrollEmittingSelection:NO];
+ }
+}
+
+- (void)initializePageViewController
+{
+ _pageViewController = [[UIPageViewController alloc]
+ initWithTransitionStyle:UIPageViewControllerTransitionStyleScroll
+ navigationOrientation:UIPageViewControllerNavigationOrientationHorizontal
+ options:nil];
+ _pageViewController.dataSource = self;
+ _pageViewController.delegate = self;
+ // Fabric may mount header slots before a recycled pager reattaches.
+ // Keep the recreated page container below those existing headers.
+ [_containerView insertSubview:_pageViewController.view atIndex:0];
+
+ for (UIView *subview in _pageViewController.view.subviews) {
+ if ([subview isKindOfClass:UIScrollView.class]) {
+ _pagerScrollView = (UIScrollView *)subview;
+ _pagerScrollView.delegate = self;
+ _pagerScrollView.delaysContentTouches = NO;
+ _pagerScrollView.scrollEnabled = _scrollEnabled;
+ break;
+ }
+ }
+ [self applyNestedScrollBlocker];
+}
+
+#pragma mark - React mounting
+
+- (void)mountChildComponentView:(UIView *)childComponentView
+ index:(NSInteger)index
+{
+ if (_isBeingRecycled) return;
+ NSInteger safeIndex = MIN(MAX(index, 0), _logicalChildren.count);
+ [_logicalChildren insertObject:childComponentView atIndex:safeIndex];
+ [self rebuildSlots];
+}
+
+- (void)unmountChildComponentView:(UIView *)childComponentView
+ index:(NSInteger)index
+{
+ if (_isBeingRecycled) return;
+ NSUInteger existingIndex = [_logicalChildren indexOfObjectIdenticalTo:childComponentView];
+ if (existingIndex == NSNotFound) return;
+ [childComponentView removeFromSuperview];
+ [_logicalChildren removeObjectAtIndex:existingIndex];
+ [self rebuildSlots];
+}
+
+- (void)rebuildSlots
+{
+ [self detachScrollObserver];
+ // OneKey patch: Fabric reuses these views without resetting transforms
+ // written by a native parent. Release our collapse translation with the slot.
+ _headerView.transform = CGAffineTransformIdentity;
+ _stickyHeaderView.transform = CGAffineTransformIdentity;
+ [_headerView removeFromSuperview];
+ [_stickyHeaderView removeFromSuperview];
+ _headerView = nil;
+ _stickyHeaderView = nil;
+ [_pageControllers removeAllObjects];
+
+ if (_logicalChildren.count > 0) {
+ _headerView = _logicalChildren[0];
+ [_containerView addSubview:_headerView];
+ }
+ if (_logicalChildren.count > 1) {
+ _stickyHeaderView = _logicalChildren[1];
+ [_containerView addSubview:_stickyHeaderView];
+ }
+ for (NSInteger index = 2; index < _logicalChildren.count; index++) {
+ UIView *page = _logicalChildren[index];
+ UIViewController *controller = [UIViewController new];
+ [controller.view addSubview:page];
+ [_pageControllers addObject:controller];
+ }
+
+ if (_pageControllers.count > 0) {
+ if (!_hasAppliedInitialPage &&
+ _pendingInitialPage >= 0 &&
+ _pendingInitialPage < _pageControllers.count) {
+ _currentIndex = _pendingInitialPage;
+ // A recycled host may receive slots before its page controller exists.
+ _hasAppliedInitialPage = _pageViewController != nil;
+ } else {
+ _currentIndex = MIN(MAX(_currentIndex, 0), _pageControllers.count - 1);
+ }
+ UIViewController *controller = _pageControllers[_currentIndex];
+ [_pageViewController setViewControllers:@[controller]
+ direction:UIPageViewControllerNavigationDirectionForward
+ animated:NO
+ completion:nil];
+ }
+ if (_headerView != nil) [_containerView bringSubviewToFront:_headerView];
+ if (_stickyHeaderView != nil) [_containerView bringSubviewToFront:_stickyHeaderView];
+ [self setNeedsLayout];
+ dispatch_async(dispatch_get_main_queue(), ^{
+ if (!self->_isBeingRecycled) {
+ [self prepareAdjacentPageInsets];
+ [self attachScrollObserverForCurrentPage];
+ }
+ });
+}
+
+- (void)layoutSubviews
+{
+ [super layoutSubviews];
+ _containerView.frame = self.bounds;
+ _pageViewController.view.frame = _containerView.bounds;
+ // OneKey patch: Fabric may mount page slots before applying the host props.
+ // Commit the pending initial page once both props and page controllers exist.
+ if (!_hasAppliedInitialPage && _pageViewController != nil &&
+ _pendingInitialPage >= 0 && _pendingInitialPage < _pageControllers.count) {
+ [self detachScrollObserver];
+ _currentIndex = _pendingInitialPage;
+ _destinationIndex = _currentIndex;
+ _hasAppliedInitialPage = YES;
+ [_pageViewController setViewControllers:@[_pageControllers[_currentIndex]]
+ direction:UIPageViewControllerNavigationDirectionForward
+ animated:NO
+ completion:nil];
+ }
+ // UIKit frame assignment is undefined while a view has a non-identity transform.
+ // Lay out the original slots, then restore the shared collapse translation.
+ _headerView.transform = CGAffineTransformIdentity;
+ _stickyHeaderView.transform = CGAffineTransformIdentity;
+ _headerView.frame = CGRectMake(0, 0, self.bounds.size.width, _headerHeight);
+ _stickyHeaderView.frame = CGRectMake(
+ 0,
+ _headerHeight,
+ self.bounds.size.width,
+ _stickyHeaderHeight
+ );
+ // Settle UIKit page containers before sizing their autoresizing child views.
+ [_pageViewController.view layoutIfNeeded];
+ for (UIViewController *controller in _pageControllers) {
+ controller.view.frame = _pageViewController.view.bounds;
+ controller.view.subviews.firstObject.frame = controller.view.bounds;
+ }
+ [self applyHeaderOffset];
+ dispatch_async(dispatch_get_main_queue(), ^{
+ if (!self->_isBeingRecycled) {
+ [self prepareAdjacentPageInsets];
+ [self attachScrollObserverForCurrentPage];
+ }
+ });
+}
+
+- (void)prepareForRecycle
+{
+ _isBeingRecycled = YES;
+ _generation++;
+ [self detachScrollObserver];
+ for (UIScrollView *scrollView in _originalInsets.keyEnumerator) {
+ NSValue *value = [_originalInsets objectForKey:scrollView];
+ if (value != nil) {
+ UIEdgeInsets original = value.UIEdgeInsetsValue;
+ NSNumber *appliedTop = [_appliedTopInsets objectForKey:scrollView];
+ if (appliedTop != nil && scrollView.refreshControl != nil) {
+ original.top += MAX(0, scrollView.contentInset.top - appliedTop.doubleValue);
+ }
+ scrollView.contentInset = original;
+ }
+ NSValue *indicatorValue = [_originalIndicatorInsets objectForKey:scrollView];
+ if (indicatorValue != nil) {
+ scrollView.verticalScrollIndicatorInsets = indicatorValue.UIEdgeInsetsValue;
+ }
+ NSNumber *alwaysBounce = [_originalAlwaysBounceVertical objectForKey:scrollView];
+ if (alwaysBounce != nil) scrollView.alwaysBounceVertical = alwaysBounce.boolValue;
+ NSNumber *adjustment = [_originalInsetAdjustmentBehavior objectForKey:scrollView];
+ if (adjustment != nil) {
+ scrollView.contentInsetAdjustmentBehavior = (UIScrollViewContentInsetAdjustmentBehavior)adjustment.integerValue;
+ }
+ }
+ [_originalInsets removeAllObjects];
+ [_appliedTopInsets removeAllObjects];
+ [_originalIndicatorInsets removeAllObjects];
+ [_originalAlwaysBounceVertical removeAllObjects];
+ [_originalInsetAdjustmentBehavior removeAllObjects];
+ // OneKey patch: Fabric reuses these views without resetting transforms
+ // written by a native parent. Release our collapse translation with the slot.
+ _headerView.transform = CGAffineTransformIdentity;
+ _stickyHeaderView.transform = CGAffineTransformIdentity;
+ [_headerView removeFromSuperview];
+ [_stickyHeaderView removeFromSuperview];
+ [_logicalChildren removeAllObjects];
+ [_pageControllers removeAllObjects];
+ _headerView = nil;
+ _stickyHeaderView = nil;
+ _pageViewController.dataSource = nil;
+ _pageViewController.delegate = nil;
+ _pagerScrollView.delegate = nil;
+ if (_blockerGesture != nil) {
+ [self removeGestureRecognizer:_blockerGesture];
+ _blockerGesture = nil;
+ }
+ [_pageViewController.view removeFromSuperview];
+ _pageViewController = nil;
+ _pagerScrollView = nil;
+ [super prepareForRecycle];
+ [_pageOffsets removeAllObjects];
+ _pageKeys = @[];
+ _retainedPages = @"[]";
+ _currentIndex = 0;
+ _destinationIndex = 0;
+ _pendingInitialPage = 0;
+ _headerHeight = 0;
+ _stickyHeaderHeight = 0;
+ _headerOffset = 0;
+ _scrollEnabled = YES;
+ _nestedScrollEnabled = NO;
+ _transitioning = NO;
+ _isPagerDragging = NO;
+ _hasReceivedPageCommand = NO;
+ _pendingGoToIndex = -1;
+ _hasAppliedInitialPage = NO;
+ // OneKey patch: Fabric retains old props when recycling this view.
+ _needsPropsReapply = YES;
+ _layoutDirection = @"ltr";
+ _isBeingRecycled = NO;
+}
+
+#pragma mark - Props
+
+- (void)updateProps:(const Props::Shared &)props oldProps:(const Props::Shared &)oldProps
+{
+ const auto &oldViewProps = *std::static_pointer_cast(_props);
+ const auto &newViewProps = *std::static_pointer_cast(props);
+
+ if (_needsPropsReapply || oldViewProps.initialPage != newViewProps.initialPage) {
+ _pendingInitialPage = MAX(0, newViewProps.initialPage);
+ // Focus commands can arrive before the recycled host receives its props.
+ _hasAppliedInitialPage = _hasReceivedPageCommand;
+ // OneKey patch: Prop updates can arrive after the last slot was mounted.
+ [self setNeedsLayout];
+ }
+ if (_needsPropsReapply || oldViewProps.scrollEnabled != newViewProps.scrollEnabled) {
+ _scrollEnabled = newViewProps.scrollEnabled;
+ _pagerScrollView.scrollEnabled = _scrollEnabled;
+ }
+ if (_needsPropsReapply || oldViewProps.nestedScrollEnabled != newViewProps.nestedScrollEnabled) {
+ _nestedScrollEnabled = newViewProps.nestedScrollEnabled;
+ [self applyNestedScrollBlocker];
+ }
+ if (_needsPropsReapply || oldViewProps.layoutDirection != newViewProps.layoutDirection) {
+ _layoutDirection = RCTNSStringFromString(toString(newViewProps.layoutDirection));
+ }
+ BOOL insetsChanged = NO;
+ if (_needsPropsReapply || oldViewProps.headerHeight != newViewProps.headerHeight) {
+ _headerHeight = MAX(0, newViewProps.headerHeight);
+ _headerOffset = MIN(_headerOffset, _headerHeight);
+ insetsChanged = YES;
+ }
+ if (_needsPropsReapply || oldViewProps.stickyHeaderHeight != newViewProps.stickyHeaderHeight) {
+ _stickyHeaderHeight = MAX(0, newViewProps.stickyHeaderHeight);
+ insetsChanged = YES;
+ }
+ if (_needsPropsReapply || oldViewProps.pageKeys != newViewProps.pageKeys) {
+ NSString *json = RCTNSStringFromString(newViewProps.pageKeys);
+ NSData *data = [json dataUsingEncoding:NSUTF8StringEncoding];
+ id parsed = data == nil ? nil : [NSJSONSerialization JSONObjectWithData:data options:0 error:nil];
+ _pageKeys = [parsed isKindOfClass:NSArray.class] ? parsed : @[];
+ }
+ if (_needsPropsReapply || oldViewProps.retainedPages != newViewProps.retainedPages) {
+ _retainedPages = RCTNSStringFromString(newViewProps.retainedPages);
+ [self setNeedsLayout];
+ }
+
+ _needsPropsReapply = NO;
+ [super updateProps:props oldProps:oldProps];
+ if (insetsChanged) {
+ [self reapplyInsetsToObservedScrollView];
+ [self setNeedsLayout];
+ }
+}
+
+#pragma mark - Collapsible scroll coordination
+
+- (NSString *)currentPageKey
+{
+ return [self pageKeyForIndex:_currentIndex];
+}
+
+- (NSString *)pageKeyForIndex:(NSInteger)index
+{
+ if (index >= 0 && index < _pageKeys.count) return _pageKeys[index];
+ return [NSString stringWithFormat:@"page-%ld", (long)index];
+}
+
+- (UIScrollView *)findVerticalScrollViewInView:(UIView *)view
+{
+ if ([view isKindOfClass:UICollectionView.class]) {
+ UICollectionView *collectionView = (UICollectionView *)view;
+ UICollectionViewLayout *layout = collectionView.collectionViewLayout;
+ if (![layout isKindOfClass:UICollectionViewFlowLayout.class] ||
+ ((UICollectionViewFlowLayout *)layout).scrollDirection == UICollectionViewScrollDirectionVertical) {
+ return collectionView;
+ }
+ }
+ // Empty pages may use an RN ScrollView instead of a native row list.
+ if ([view isKindOfClass:UIScrollView.class] &&
+ ![view isKindOfClass:UICollectionView.class]) {
+ UIScrollView *scrollView = (UIScrollView *)view;
+ if (!scrollView.alwaysBounceHorizontal &&
+ scrollView.contentSize.width <= scrollView.bounds.size.width + 1) {
+ return scrollView;
+ }
+ }
+ for (UIView *subview in view.subviews) {
+ UIScrollView *candidate = [self findVerticalScrollViewInView:subview];
+ if (candidate != nil) return candidate;
+ }
+ return nil;
+}
+
+- (void)attachScrollObserverForCurrentPage
+{
+ [self restoreDetachedScrollInsets];
+ if (_currentIndex < 0 || _currentIndex >= _pageControllers.count) return;
+ UIScrollView *candidate = [self findVerticalScrollViewInView:_pageControllers[_currentIndex].view];
+ if (candidate == nil) return;
+ // A decelerating list can otherwise claim a new horizontal touch immediately.
+ if (_pagerScrollView != nil) {
+ [candidate.panGestureRecognizer requireGestureRecognizerToFail:_pagerScrollView.panGestureRecognizer];
+ }
+ if (candidate == _observedScrollView) return;
+
+ BOOL replacingCurrentScrollView = _observingContentOffset;
+ [self detachScrollObserver];
+ if (replacingCurrentScrollView) {
+ // A list replaced by an empty RN view keeps collapse, not the old row offset.
+ _pageOffsets[self.currentPageKey] = @(_headerOffset);
+ }
+ _observedScrollView = candidate;
+ [self applyInsetsToScrollView:candidate pageIndex:_currentIndex restore:YES];
+ [candidate addObserver:self
+ forKeyPath:@"contentOffset"
+ options:NSKeyValueObservingOptionNew
+ context:RNCCollapsiblePagerContentOffsetContext];
+ [candidate addObserver:self
+ forKeyPath:@"contentSize"
+ options:NSKeyValueObservingOptionOld | NSKeyValueObservingOptionNew
+ context:RNCCollapsiblePagerContentOffsetContext];
+ _observingContentOffset = YES;
+}
+
+- (void)detachScrollObserver
+{
+ UIScrollView *scrollView = _observedScrollView;
+ if (scrollView != nil) {
+ _pageOffsets[self.currentPageKey] = @(scrollView.contentOffset.y + scrollView.contentInset.top);
+ if (_observingContentOffset) {
+ [scrollView removeObserver:self
+ forKeyPath:@"contentOffset"
+ context:RNCCollapsiblePagerContentOffsetContext];
+ [scrollView removeObserver:self
+ forKeyPath:@"contentSize"
+ context:RNCCollapsiblePagerContentOffsetContext];
+ }
+ }
+ _observingContentOffset = NO;
+ _observedScrollView = nil;
+}
+
+- (void)restoreDetachedScrollInsets
+{
+ for (UIScrollView *scrollView in _originalInsets.keyEnumerator.allObjects) {
+ BOOL belongsToPage = NO;
+ for (UIViewController *controller in _pageControllers) {
+ if ([scrollView isDescendantOfView:controller.view]) {
+ belongsToPage = YES;
+ break;
+ }
+ }
+ if (belongsToPage) continue;
+ if (scrollView == _observedScrollView) {
+ [self detachScrollObserver];
+ _pageOffsets[self.currentPageKey] = @(_headerOffset);
+ }
+ // Fabric can reuse an empty RN ScrollView in another screen. Release all
+ // pager-owned insets before that view is used as a search or dialog list.
+ CGFloat logicalOffset = scrollView.contentOffset.y + scrollView.contentInset.top;
+ UIEdgeInsets original = [_originalInsets objectForKey:scrollView].UIEdgeInsetsValue;
+ NSNumber *appliedTop = [_appliedTopInsets objectForKey:scrollView];
+ if (appliedTop != nil && scrollView.refreshControl != nil) {
+ original.top += MAX(0, scrollView.contentInset.top - appliedTop.doubleValue);
+ }
+ scrollView.contentInset = original;
+ scrollView.verticalScrollIndicatorInsets =
+ [_originalIndicatorInsets objectForKey:scrollView].UIEdgeInsetsValue;
+ scrollView.alwaysBounceVertical =
+ [_originalAlwaysBounceVertical objectForKey:scrollView].boolValue;
+ scrollView.contentInsetAdjustmentBehavior = (UIScrollViewContentInsetAdjustmentBehavior)
+ [_originalInsetAdjustmentBehavior objectForKey:scrollView].integerValue;
+ [scrollView setContentOffset:CGPointMake(scrollView.contentOffset.x, logicalOffset - original.top)
+ animated:NO];
+ [_originalInsets removeObjectForKey:scrollView];
+ [_appliedTopInsets removeObjectForKey:scrollView];
+ [_originalIndicatorInsets removeObjectForKey:scrollView];
+ [_originalAlwaysBounceVertical removeObjectForKey:scrollView];
+ [_originalInsetAdjustmentBehavior removeObjectForKey:scrollView];
+ }
+}
+
+- (void)applyInsetsToScrollView:(UIScrollView *)scrollView
+ pageIndex:(NSInteger)pageIndex
+ restore:(BOOL)restore
+{
+ NSValue *storedOriginal = [_originalInsets objectForKey:scrollView];
+ UIEdgeInsets original = storedOriginal == nil
+ ? scrollView.contentInset
+ : storedOriginal.UIEdgeInsetsValue;
+ if (storedOriginal == nil) {
+ [_originalInsets setObject:[NSValue valueWithUIEdgeInsets:original] forKey:scrollView];
+ [_originalIndicatorInsets
+ setObject:[NSValue valueWithUIEdgeInsets:scrollView.verticalScrollIndicatorInsets]
+ forKey:scrollView];
+ [_originalAlwaysBounceVertical setObject:@(scrollView.alwaysBounceVertical) forKey:scrollView];
+ [_originalInsetAdjustmentBehavior setObject:@(scrollView.contentInsetAdjustmentBehavior) forKey:scrollView];
+ }
+
+ // This host already includes the fixed header and safe area in its frame.
+ // UIKit automatic adjustment would add them a second time to short pages.
+ scrollView.contentInsetAdjustmentBehavior = UIScrollViewContentInsetAdjustmentNever;
+ CGFloat previousTopInset = scrollView.contentInset.top;
+ CGFloat previousLogicalOffset = scrollView.contentOffset.y + previousTopInset;
+ NSNumber *appliedTop = [_appliedTopInsets objectForKey:scrollView];
+ // UIRefreshControl owns its temporary top inset, including while ending.
+ CGFloat refreshInset = appliedTop != nil && scrollView.refreshControl != nil
+ ? MAX(0, previousTopInset - appliedTop.doubleValue) : 0;
+ UIEdgeInsets next = original;
+ next.top += _headerHeight + _stickyHeaderHeight;
+ CGFloat pagerTopInset = next.top;
+ next.top += refreshInset;
+ [_appliedTopInsets setObject:@(pagerTopInset) forKey:scrollView];
+ // Short pages still need enough range to collapse the header; long pages
+ // must end at the last row rather than leave a header-sized blank footer.
+ next.bottom += MAX(0, scrollView.bounds.size.height - _stickyHeaderHeight
+ - original.top - original.bottom - scrollView.contentSize.height);
+ if (UIEdgeInsetsEqualToEdgeInsets(scrollView.contentInset, next) && !restore) {
+ // UICollectionView may report contentSize during a bounce without changing
+ // the required insets. Re-setting contentOffset here interrupts that bounce.
+ if (pageIndex == _currentIndex) [self updateHeaderForScrollView:scrollView];
+ return;
+ }
+ scrollView.contentInset = next;
+ UIEdgeInsets indicatorInsets = scrollView.verticalScrollIndicatorInsets;
+ indicatorInsets.top = pagerTopInset;
+ scrollView.verticalScrollIndicatorInsets = indicatorInsets;
+ scrollView.alwaysBounceVertical = YES;
+
+ CGFloat targetOffset = previousLogicalOffset - next.top;
+ if (restore) {
+ NSNumber *saved = _pageOffsets[[self pageKeyForIndex:pageIndex]];
+ // The sticky slot can change height between pages. Cache offsets relative
+ // to content start so a round trip does not add that height difference.
+ targetOffset = (saved == nil ? _headerOffset : saved.doubleValue) - next.top;
+ targetOffset = MAX(targetOffset, -next.top + _headerOffset);
+ }
+ // A bottom-inset change must not cancel UIKit's refresh or bounce settlement.
+ if (restore || previousTopInset != next.top) {
+ [scrollView setContentOffset:CGPointMake(scrollView.contentOffset.x, targetOffset) animated:NO];
+ }
+ if (pageIndex == _currentIndex) [self updateHeaderForScrollView:scrollView];
+}
+
+- (void)reapplyInsetsToObservedScrollView
+{
+ [self restoreDetachedScrollInsets];
+ UIScrollView *scrollView = _observedScrollView;
+ if (scrollView != nil) {
+ [self applyInsetsToScrollView:scrollView pageIndex:_currentIndex restore:NO];
+ }
+ [self prepareAdjacentPageInsets];
+}
+
+- (void)prepareAdjacentPageInsets
+{
+ [self restoreDetachedScrollInsets];
+ NSInteger first = MAX(0, _currentIndex - 1);
+ NSInteger last = MIN((NSInteger)_pageControllers.count - 1, _currentIndex + 1);
+ if (last < first) return;
+ for (NSInteger index = first; index <= last; index++) {
+ UIScrollView *scrollView = [self findVerticalScrollViewInView:_pageControllers[index].view];
+ if (scrollView != nil && scrollView != _observedScrollView) {
+ [self applyInsetsToScrollView:scrollView pageIndex:index restore:YES];
+ }
+ }
+}
+
+- (void)observeValueForKeyPath:(NSString *)keyPath
+ ofObject:(id)object
+ change:(NSDictionary *)change
+ context:(void *)context
+{
+ if (context == RNCCollapsiblePagerContentOffsetContext && object == _observedScrollView) {
+ if ([keyPath isEqualToString:@"contentSize"]) {
+ NSValue *oldSize = change[NSKeyValueChangeOldKey];
+ NSValue *newSize = change[NSKeyValueChangeNewKey];
+ if (![oldSize isEqual:newSize]) {
+ [self applyInsetsToScrollView:_observedScrollView pageIndex:_currentIndex restore:NO];
+ }
+ return;
+ }
+ UIScrollView *scrollView = (UIScrollView *)object;
+ _pageOffsets[self.currentPageKey] = @(scrollView.contentOffset.y + scrollView.contentInset.top);
+ [self updateHeaderForScrollView:scrollView];
+ return;
+ }
+ [super observeValueForKeyPath:keyPath ofObject:object change:change context:context];
+}
+
+- (void)updateHeaderForScrollView:(UIScrollView *)scrollView
+{
+ CGFloat logicalOffset = scrollView.contentOffset.y + scrollView.contentInset.top;
+ _headerOffset = MIN(MAX(logicalOffset, 0), _headerHeight);
+ [self applyHeaderOffset];
+}
+
+- (void)applyHeaderOffset
+{
+ CGAffineTransform transform = CGAffineTransformMakeTranslation(0, -_headerOffset);
+ _headerView.transform = transform;
+ _stickyHeaderView.transform = transform;
+}
+
+#pragma mark - Pager navigation
+
+- (BOOL)isLtrLayout
+{
+ return [_layoutDirection isEqualToString:@"ltr"];
+}
+
+- (void)goTo:(NSInteger)index animated:(BOOL)animated
+{
+ if (_isBeingRecycled || index < 0 || index >= _pageControllers.count) return;
+ _hasReceivedPageCommand = YES;
+ _hasAppliedInitialPage = YES;
+ if (_transitioning && animated) {
+ _pendingGoToIndex = index;
+ return;
+ }
+
+ _pendingGoToIndex = -1;
+
+ // Re-selecting the displayed controller removes its view briefly and cancels
+ // an in-flight list touch. Focus synchronization must be idempotent.
+ if (!_transitioning && index == _currentIndex &&
+ _pageViewController.viewControllers.firstObject == _pageControllers[index]) {
+ [self attachScrollObserverForCurrentPage];
+ [self emitPageSelected:index];
+ [self emitDiagnostics:@"page-selected"];
+ return;
+ }
+
+ [self detachScrollObserver];
+ _destinationIndex = index;
+ BOOL forward = (index > _currentIndex && self.isLtrLayout) ||
+ (index < _currentIndex && !self.isLtrLayout);
+ UIPageViewControllerNavigationDirection direction = forward
+ ? UIPageViewControllerNavigationDirectionForward
+ : UIPageViewControllerNavigationDirectionReverse;
+ _transitioning = YES;
+ _isPagerDragging = NO;
+ NSUInteger capturedTransition = ++_transitionId;
+ NSUInteger capturedGeneration = _generation;
+ __weak __typeof__(self) weakSelf = self;
+ [_pageViewController setViewControllers:@[_pageControllers[index]]
+ direction:direction
+ animated:animated && index != _currentIndex
+ completion:^(BOOL finished) {
+ __strong __typeof__(weakSelf) self = weakSelf;
+ if (self == nil || self->_generation != capturedGeneration ||
+ self->_transitionId != capturedTransition || self->_isBeingRecycled) return;
+ if (finished) {
+ self->_currentIndex = index;
+ [self attachScrollObserverForCurrentPage];
+ [self emitPageSelected:index];
+ [self emitDiagnostics:@"page-selected"];
+ }
+ // UIKit is still unwinding its transition when this completion runs.
+ // Start a queued animation only after that callback has returned.
+ dispatch_async(dispatch_get_main_queue(), ^{
+ if (self->_generation != capturedGeneration ||
+ self->_transitionId != capturedTransition || self->_isBeingRecycled) return;
+ self->_transitioning = NO;
+ [self drainPendingGoTo];
+ });
+ }];
+}
+
+- (UIViewController *)adjacentController:(UIViewController *)controller delta:(NSInteger)delta
+{
+ NSInteger index = [_pageControllers indexOfObjectIdenticalTo:controller];
+ if (index == NSNotFound) return nil;
+ NSInteger target = index + delta;
+ if (target < 0 || target >= _pageControllers.count) return nil;
+ UIScrollView *scrollView = [self findVerticalScrollViewInView:_pageControllers[target].view];
+ if (scrollView != nil) {
+ [self applyInsetsToScrollView:scrollView pageIndex:target restore:YES];
+ }
+ return _pageControllers[target];
+}
+
+- (UIViewController *)pageViewController:(UIPageViewController *)pageViewController
+ viewControllerAfterViewController:(UIViewController *)viewController
+{
+ return [self adjacentController:viewController delta:self.isLtrLayout ? 1 : -1];
+}
+
+- (UIViewController *)pageViewController:(UIPageViewController *)pageViewController
+ viewControllerBeforeViewController:(UIViewController *)viewController
+{
+ return [self adjacentController:viewController delta:self.isLtrLayout ? -1 : 1];
+}
+
+- (void)drainPendingGoTo
+{
+ NSInteger pending = _pendingGoToIndex;
+ _pendingGoToIndex = -1;
+ if (pending >= 0 && pending != _currentIndex) {
+ [self goTo:pending animated:YES];
+ }
+}
+
+#pragma mark - Pager UIScrollViewDelegate
+
+- (void)scrollViewWillBeginDragging:(UIScrollView *)scrollView
+{
+ // A user drag owns the result even if UIKit later completes the old animation.
+ ++_transitionId;
+ _isPagerDragging = YES;
+ _transitioning = YES;
+ const auto emitter = [self eventEmitter];
+ if (emitter) {
+ emitter->onPageScrollStateChanged({
+ .pageScrollState = RNCCollapsiblePagerViewEventEmitter::OnPageScrollStateChangedPageScrollState::Dragging
+ });
+ }
+}
+
+- (void)scrollViewWillEndDragging:(UIScrollView *)scrollView
+ withVelocity:(CGPoint)velocity
+ targetContentOffset:(inout CGPoint *)targetContentOffset
+{
+ const auto emitter = [self eventEmitter];
+ if (emitter) {
+ emitter->onPageScrollStateChanged({
+ .pageScrollState = RNCCollapsiblePagerViewEventEmitter::OnPageScrollStateChangedPageScrollState::Settling
+ });
+ }
+}
+
+- (void)scrollViewDidEndDragging:(UIScrollView *)scrollView
+ willDecelerate:(BOOL)decelerate
+{
+ if (!decelerate) [self scrollViewDidEndDecelerating:scrollView];
+}
+
+- (void)finishPagerScrollEmittingSelection:(BOOL)emitSelection
+{
+ if (_isPagerDragging) {
+ UIViewController *controller = nil;
+ if (!emitSelection && _currentIndex >= 0 && _currentIndex < _pageControllers.count) {
+ // Detaching can make UIKit settle on a neighbouring controller without a
+ // completion callback. Keep the last page acknowledged by JavaScript.
+ controller = _pageControllers[_currentIndex];
+ } else {
+ controller = _pageViewController.viewControllers.firstObject;
+ // An interrupted programmatic animation can report its target while a
+ // different controller is centered. Read the settled UIKit viewport.
+ for (UIViewController *candidate in _pageControllers) {
+ if (candidate.view.window == nil) continue;
+ CGRect frame = [candidate.view convertRect:candidate.view.bounds toView:_containerView];
+ if (fabs(frame.origin.x) < 1 &&
+ fabs(frame.size.width - _containerView.bounds.size.width) < 1) {
+ controller = candidate;
+ break;
+ }
+ }
+ }
+ NSInteger index = [_pageControllers indexOfObjectIdenticalTo:controller];
+ if (index != NSNotFound) {
+ if (_pageViewController.viewControllers.firstObject != controller) {
+ // Correct UIKit only after its animation completion has returned.
+ [_pageViewController setViewControllers:@[controller]
+ direction:UIPageViewControllerNavigationDirectionForward
+ animated:NO
+ completion:nil];
+ }
+ [self detachScrollObserver];
+ _currentIndex = index;
+ _destinationIndex = index;
+ [self attachScrollObserverForCurrentPage];
+ // A newer tab tap remains authoritative while its queued command runs.
+ if (emitSelection &&
+ (_pendingGoToIndex < 0 || _pendingGoToIndex == index)) {
+ [self emitPageSelected:index];
+ [self emitDiagnostics:@"page-selected"];
+ }
+ }
+ _isPagerDragging = NO;
+ _transitioning = NO;
+ }
+ const auto emitter = [self eventEmitter];
+ if (emitter) {
+ emitter->onPageScrollStateChanged({
+ .pageScrollState = RNCCollapsiblePagerViewEventEmitter::OnPageScrollStateChangedPageScrollState::Idle
+ });
+ }
+ [self emitDiagnostics:@"pager-idle"];
+ [self drainPendingGoTo];
+}
+
+- (void)scrollViewDidEndDecelerating:(UIScrollView *)scrollView
+{
+ [self finishPagerScrollEmittingSelection:YES];
+}
+
+- (void)scrollViewDidScroll:(UIScrollView *)scrollView
+{
+ CGFloat width = scrollView.bounds.size.width;
+ if (width <= 0) return;
+ CGFloat rawOffset = (scrollView.contentOffset.x - width) / width;
+ BOOL backwards = self.isLtrLayout ? rawOffset < 0 : rawOffset > 0;
+ NSInteger position = backwards ? _currentIndex - 1 : _currentIndex;
+ CGFloat offset = backwards ? 1 - fabs(rawOffset) : fabs(rawOffset);
+ position = MAX(0, MIN(position, (NSInteger)_pageControllers.count - 1));
+ const auto emitter = [self eventEmitter];
+ if (emitter) {
+ emitter->onPageScroll({.position = (double)position, .offset = (double)offset});
+ }
+}
+
+#pragma mark - Events and commands
+
+- (std::shared_ptr)eventEmitter
+{
+ if (!_eventEmitter) return nullptr;
+ return std::static_pointer_cast(_eventEmitter);
+}
+
+- (void)emitPageSelected:(NSInteger)position
+{
+ const auto emitter = [self eventEmitter];
+ if (emitter) emitter->onPageSelected({.position = (double)position});
+}
+
+- (void)emitDiagnostics:(NSString *)reason
+{
+ const auto emitter = [self eventEmitter];
+ if (!emitter) return;
+ NSInteger attached = 0;
+ for (UIViewController *controller in _pageControllers) {
+ if (controller.view.superview != nil) attached++;
+ }
+ emitter->onCollapsibleStateChanged({
+ .position = (int)_currentIndex,
+ .headerOffset = (double)_headerOffset,
+ .nativePageCount = (int)_pageControllers.count,
+ .attachedPageCount = (int)attached,
+ .observedScrollableCount = (int)_originalInsets.count,
+ .retainedPages = std::string(_retainedPages.UTF8String ?: "[]"),
+ .reason = std::string(reason.UTF8String ?: "unknown")
+ });
+}
+
+- (void)handleCommand:(const NSString *)commandName args:(const NSArray *)args
+{
+ RCTRNCCollapsiblePagerViewHandleCommand(self, commandName, args);
+}
+
+- (void)setPage:(NSInteger)index
+{
+ [self goTo:index animated:YES];
+}
+
+- (void)setPageWithoutAnimation:(NSInteger)index
+{
+ [self goTo:index animated:NO];
+}
+
+- (void)setScrollEnabledImperatively:(BOOL)scrollEnabled
+{
+ _scrollEnabled = scrollEnabled;
+ _pagerScrollView.scrollEnabled = scrollEnabled;
+}
+
+#pragma mark - Nested pager gesture coordination
+
+- (void)applyNestedScrollBlocker
+{
+ if (_pagerScrollView == nil) return;
+
+ if (_nestedScrollEnabled && _blockerGesture == nil) {
+ _blockerGesture = [[UIPanGestureRecognizer alloc]
+ initWithTarget:self
+ action:@selector(blockerGestureFired:)];
+ _blockerGesture.delegate = self;
+ _blockerGesture.cancelsTouchesInView = NO;
+ _blockerGesture.delaysTouchesBegan = NO;
+ [self addGestureRecognizer:_blockerGesture];
+ [_pagerScrollView.panGestureRecognizer requireGestureRecognizerToFail:_blockerGesture];
+ } else if (!_nestedScrollEnabled && _blockerGesture != nil) {
+ [self removeGestureRecognizer:_blockerGesture];
+ _blockerGesture = nil;
+ }
+}
+
+- (void)blockerGestureFired:(UIPanGestureRecognizer *)recognizer
+{
+ // Reset through the public enabled API. UIGestureRecognizer.state is
+ // read-only for clients; only recognizer subclasses may assign it.
+ if (recognizer.state == UIGestureRecognizerStateBegan) {
+ recognizer.enabled = NO;
+ recognizer.enabled = YES;
+ }
+}
+
+- (BOOL)gestureRecognizerShouldBegin:(UIGestureRecognizer *)gestureRecognizer
+{
+ if (gestureRecognizer != _blockerGesture) return YES;
+ if (!_nestedScrollEnabled) return NO;
+ if (![gestureRecognizer isKindOfClass:[UIPanGestureRecognizer class]]) return NO;
+
+ UIPanGestureRecognizer *pan = (UIPanGestureRecognizer *)gestureRecognizer;
+ CGPoint velocity = [pan velocityInView:self];
+ NSInteger pageCount = _pageControllers.count;
+ if (pageCount == 0 || _currentIndex < 0 || _currentIndex >= pageCount) return NO;
+
+ CGFloat absVelocityX = fabs(velocity.x);
+ CGFloat absVelocityY = fabs(velocity.y);
+ if (absVelocityX <= absVelocityY || absVelocityX < 1.0f) return NO;
+
+ BOOL isLtr = self.isLtrLayout;
+ NSInteger firstPageIndex = isLtr ? 0 : pageCount - 1;
+ NSInteger lastPageIndex = isLtr ? pageCount - 1 : 0;
+ if (_currentIndex == firstPageIndex && velocity.x > 0) return YES;
+ if (_currentIndex == lastPageIndex && velocity.x < 0) return YES;
+ return NO;
+}
+
+- (BOOL)gestureRecognizer:(UIGestureRecognizer *)gestureRecognizer shouldReceiveTouch:(UITouch *)touch
+{
+ // OneKey patch: a new touch can cancel UIKit's animation before its first
+ // frame without starting a drag or completing the animation. Finish the
+ // commanded page before handing that touch to the nested scroll views.
+ if (gestureRecognizer == _blockerGesture && _transitioning && !_isPagerDragging &&
+ [touch.view isDescendantOfView:_pagerScrollView]) {
+ [self goTo:_destinationIndex animated:NO];
+ }
+ return YES;
+}
+
+- (BOOL)gestureRecognizer:(UIGestureRecognizer *)gestureRecognizer
+ shouldRecognizeSimultaneouslyWithGestureRecognizer:(UIGestureRecognizer *)otherGestureRecognizer
+{
+ return gestureRecognizer == _blockerGesture;
+}
+
++ (ComponentDescriptorProvider)componentDescriptorProvider
+{
+ return concreteComponentDescriptorProvider();
+}
+
+@end
+
+Class RNCCollapsiblePagerViewCls(void)
+{
+ return RNCCollapsiblePagerViewComponentView.class;
+}
diff --git a/native-views/react-native-pager-view/ios/RNCPagerViewComponentView.mm b/native-views/react-native-pager-view/ios/RNCPagerViewComponentView.mm
index c9e3c6d93..b5ae13849 100644
--- a/native-views/react-native-pager-view/ios/RNCPagerViewComponentView.mm
+++ b/native-views/react-native-pager-view/ios/RNCPagerViewComponentView.mm
@@ -593,9 +593,11 @@ - (void)applyNestedScrollBlocker {
// The blocker gesture never actually does anything — it only serves as a gate
- (void)blockerGestureFired:(UIPanGestureRecognizer *)recognizer {
- // Immediately cancel so it doesn't interfere with other gestures
+ // Reset through the public enabled API. UIGestureRecognizer.state is
+ // read-only for clients; only recognizer subclasses may assign it.
if (recognizer.state == UIGestureRecognizerStateBegan) {
- recognizer.state = UIGestureRecognizerStateCancelled;
+ recognizer.enabled = NO;
+ recognizer.enabled = YES;
}
}
diff --git a/native-views/react-native-pager-view/package.json b/native-views/react-native-pager-view/package.json
index c416a79c0..fc91b8bbd 100644
--- a/native-views/react-native-pager-view/package.json
+++ b/native-views/react-native-pager-view/package.json
@@ -1,15 +1,17 @@
{
"name": "@onekeyfe/react-native-pager-view",
- "version": "3.0.114",
+ "version": "3.0.118",
"description": "React Native wrapper for Android and iOS ViewPager",
"source": "./src/index.tsx",
"main": "./lib/module/index.js",
+ "browser": "./lib/module/index.web.js",
"types": "./lib/typescript/src/index.d.ts",
"sideEffects": false,
"exports": {
".": {
"source": "./src/index.tsx",
"types": "./lib/typescript/src/index.d.ts",
+ "browser": "./lib/module/index.web.js",
"default": "./lib/module/index.js"
},
"./package.json": "./package.json"
@@ -95,7 +97,8 @@
},
"ios": {
"componentProvider": {
- "RNCViewPager": "RNCPagerViewComponentView"
+ "RNCViewPager": "RNCPagerViewComponentView",
+ "RNCCollapsiblePagerView": "RNCCollapsiblePagerViewComponentView"
}
}
}
diff --git a/native-views/react-native-pager-view/src/CollapsiblePagerView.tsx b/native-views/react-native-pager-view/src/CollapsiblePagerView.tsx
new file mode 100644
index 000000000..031237bd1
--- /dev/null
+++ b/native-views/react-native-pager-view/src/CollapsiblePagerView.tsx
@@ -0,0 +1,298 @@
+import React from "react";
+import { I18nManager, Platform, StyleSheet, View } from "react-native";
+import type * as ReactNative from "react-native";
+
+import CollapsiblePagerViewNativeComponent, {
+ Commands as CollapsiblePagerViewNativeCommands,
+ type NativeProps,
+ type OnCollapsibleStateChangedEventData,
+} from "./CollapsiblePagerViewNativeComponent";
+import type {
+ OnPageScrollEventData,
+ OnPageScrollStateChangedEventData,
+ OnPageSelectedEventData,
+} from "./PagerViewNativeComponent";
+
+export type CollapsiblePagerDiagnostics =
+ ReactNative.NativeSyntheticEvent;
+
+export type CollapsiblePagerMountState = Readonly<{
+ position: number;
+ mountedPages: readonly number[];
+ pageKeys: readonly string[];
+}>;
+
+export interface CollapsiblePagerViewProps
+ extends Omit<
+ NativeProps,
+ | "children"
+ | "headerHeight"
+ | "stickyHeaderHeight"
+ | "pageKeys"
+ | "retainedPages"
+ | "layoutDirection"
+ > {
+ /** Collapsible content rendered above the sticky bar. */
+ header: React.ReactNode;
+ /** Bar which remains pinned after the header has collapsed. */
+ stickyHeader: React.ReactNode;
+ /** Measured header height. It may be updated after an onLayout measurement. */
+ headerHeight: number;
+ /** Measured sticky bar height. */
+ stickyHeaderHeight: number;
+ /**
+ * Number of pages retained on either side of the selected page. Page slots
+ * remain stable, while distant React/native list subtrees are really
+ * unmounted. Defaults to one adjacent page.
+ */
+ pageRetentionDistance?: number;
+ layoutDirection?: "ltr" | "rtl" | "locale";
+ children?: React.ReactNode;
+ onMountedPagesChanged?: (state: CollapsiblePagerMountState) => void;
+}
+
+type State = {
+ selectedPage: number;
+};
+
+const pageIndex = (value: number) => {
+ const index = Math.trunc(value);
+ return Number.isFinite(index) ? index : null;
+};
+
+const clampedPageIndex = (value: number, pageCount: number) =>
+ Math.min(
+ Math.max(0, pageIndex(value) ?? 0),
+ Math.max(0, pageCount - 1)
+ );
+
+const pageKey = (child: React.ReactNode, index: number) => {
+ if (React.isValidElement(child) && child.key != null) {
+ return String(child.key);
+ }
+ return `page-${index}`;
+};
+
+/**
+ * Pager variant whose vertical header coordination is performed by the native
+ * scrolling containers. React participates only at settled page boundaries to
+ * retain the selected/adjacent heavy page subtrees.
+ */
+export class CollapsiblePagerView extends React.PureComponent<
+ CollapsiblePagerViewProps,
+ State
+> {
+ state: State = {
+ selectedPage: clampedPageIndex(
+ this.props.initialPage ?? 0,
+ React.Children.toArray(this.props.children).length
+ ),
+ };
+
+ private nativeRef: React.ElementRef<
+ typeof CollapsiblePagerViewNativeComponent
+ > | null = null;
+
+ private lastMountSignature: string | null = null;
+
+ componentDidMount() {
+ this.notifyMountedPagesChanged();
+ }
+
+ componentDidUpdate() {
+ const pageCount = this.pages().length;
+ const selectedPage = clampedPageIndex(this.state.selectedPage, pageCount);
+ if (selectedPage !== this.state.selectedPage) {
+ this.setState({ selectedPage });
+ return;
+ }
+ this.notifyMountedPagesChanged();
+ }
+
+ public setPage = (selectedPage: number) => {
+ const position = pageIndex(selectedPage);
+ if (
+ this.nativeRef &&
+ position !== null &&
+ position >= 0 &&
+ position < this.pages().length
+ ) {
+ CollapsiblePagerViewNativeCommands.setPage(this.nativeRef, position);
+ }
+ };
+
+ public setPageWithoutAnimation = (selectedPage: number) => {
+ const position = pageIndex(selectedPage);
+ if (
+ this.nativeRef &&
+ position !== null &&
+ position >= 0 &&
+ position < this.pages().length
+ ) {
+ CollapsiblePagerViewNativeCommands.setPageWithoutAnimation(
+ this.nativeRef,
+ position
+ );
+ }
+ };
+
+ public setScrollEnabled = (scrollEnabled: boolean) => {
+ if (this.nativeRef) {
+ CollapsiblePagerViewNativeCommands.setScrollEnabledImperatively(
+ this.nativeRef,
+ scrollEnabled
+ );
+ }
+ };
+
+ private pages() {
+ return React.Children.toArray(this.props.children);
+ }
+
+ private retentionDistance() {
+ return Math.max(0, Math.floor(this.props.pageRetentionDistance ?? 1));
+ }
+
+ private mountedPages(pageCount = this.pages().length) {
+ const distance = this.retentionDistance();
+ const selected = Math.min(
+ Math.max(0, this.state.selectedPage),
+ Math.max(0, pageCount - 1)
+ );
+ const mounted: number[] = [];
+ for (let index = 0; index < pageCount; index += 1) {
+ if (Math.abs(index - selected) <= distance) {
+ mounted.push(index);
+ }
+ }
+ return mounted;
+ }
+
+ private notifyMountedPagesChanged = () => {
+ if (!this.props.onMountedPagesChanged) {
+ return;
+ }
+ const pages = this.pages();
+ const state = {
+ position: this.state.selectedPage,
+ mountedPages: this.mountedPages(pages.length),
+ pageKeys: pages.map(pageKey),
+ };
+ const signature = JSON.stringify(state);
+ if (signature === this.lastMountSignature) {
+ return;
+ }
+ this.lastMountSignature = signature;
+ this.props.onMountedPagesChanged(state);
+ };
+
+ private onPageSelected = (
+ event: ReactNative.NativeSyntheticEvent
+ ) => {
+ const position = clampedPageIndex(
+ event.nativeEvent.position,
+ this.pages().length
+ );
+ if (position !== this.state.selectedPage) {
+ this.setState({ selectedPage: position }, this.notifyMountedPagesChanged);
+ }
+ this.props.onPageSelected?.(event);
+ };
+
+ render() {
+ const {
+ children: _children,
+ header,
+ stickyHeader,
+ headerHeight,
+ stickyHeaderHeight,
+ pageRetentionDistance: _pageRetentionDistance,
+ onMountedPagesChanged: _onMountedPagesChanged,
+ onPageSelected: _onPageSelected,
+ layoutDirection,
+ initialPage: _initialPage,
+ offscreenPageLimit,
+ ...nativeProps
+ } = this.props;
+ const pages = this.pages();
+ const pageKeys = pages.map(pageKey);
+ const retained = new Set(this.mountedPages(pages.length));
+ const deducedLayoutDirection =
+ !layoutDirection || layoutDirection === "locale"
+ ? I18nManager.isRTL
+ ? "rtl"
+ : "ltr"
+ : layoutDirection;
+
+ return (
+ {
+ this.nativeRef = ref;
+ }}
+ layoutDirection={deducedLayoutDirection}
+ initialPage={clampedPageIndex(
+ this.props.initialPage ?? 0,
+ pages.length
+ )}
+ offscreenPageLimit={Math.max(1, offscreenPageLimit ?? 1)}
+ headerHeight={Math.max(0, Math.round(headerHeight))}
+ stickyHeaderHeight={Math.max(0, Math.round(stickyHeaderHeight))}
+ pageKeys={JSON.stringify(pageKeys)}
+ retainedPages={JSON.stringify([...retained])}
+ onPageSelected={this.onPageSelected}
+ >
+
+ {header}
+
+
+ {stickyHeader}
+
+ {pages.map((page, index) => (
+
+ {retained.has(index) ? page : null}
+
+ ))}
+
+ );
+ }
+}
+
+const styles = {
+ slot: StyleSheet.absoluteFill,
+};
+
+export type CollapsiblePagerViewOnPageScrollEvent =
+ ReactNative.NativeSyntheticEvent;
+export type CollapsiblePagerViewOnPageSelectedEvent =
+ ReactNative.NativeSyntheticEvent;
+export type CollapsiblePagerViewOnPageScrollStateChangedEvent =
+ ReactNative.NativeSyntheticEvent;
diff --git a/native-views/react-native-pager-view/src/CollapsiblePagerView.web.tsx b/native-views/react-native-pager-view/src/CollapsiblePagerView.web.tsx
new file mode 100644
index 000000000..38e4b8678
--- /dev/null
+++ b/native-views/react-native-pager-view/src/CollapsiblePagerView.web.tsx
@@ -0,0 +1,710 @@
+import React from "react";
+import { I18nManager, StyleSheet, View } from "react-native";
+import type * as ReactNative from "react-native";
+
+export type OnPageScrollEventData = Readonly<{
+ position: number;
+ offset: number;
+}>;
+
+export type OnPageSelectedEventData = Readonly<{
+ position: number;
+}>;
+
+export type OnPageScrollStateChangedEventData = Readonly<{
+ pageScrollState: "idle" | "dragging" | "settling";
+}>;
+
+export type OnCollapsibleStateChangedEventData = Readonly<{
+ position: number;
+ headerOffset: number;
+ nativePageCount: number;
+ attachedPageCount: number;
+ observedScrollableCount: number;
+ retainedPages: string;
+ reason: string;
+}>;
+
+interface WebCollapsiblePagerNativeProps extends ReactNative.ViewProps {
+ scrollEnabled?: boolean;
+ initialPage?: number;
+ offscreenPageLimit?: number;
+ onPageScroll?: (
+ event: ReactNative.NativeSyntheticEvent
+ ) => void;
+ onPageSelected?: (
+ event: ReactNative.NativeSyntheticEvent
+ ) => void;
+ onPageScrollStateChanged?: (
+ event: ReactNative.NativeSyntheticEvent
+ ) => void;
+ onCollapsibleStateChanged?: (
+ event: ReactNative.NativeSyntheticEvent
+ ) => void;
+}
+
+export type CollapsiblePagerDiagnostics =
+ ReactNative.NativeSyntheticEvent;
+
+export type CollapsiblePagerMountState = Readonly<{
+ position: number;
+ mountedPages: readonly number[];
+ pageKeys: readonly string[];
+}>;
+
+export interface CollapsiblePagerViewProps
+ extends Omit<
+ WebCollapsiblePagerNativeProps,
+ | "children"
+ | "headerHeight"
+ | "stickyHeaderHeight"
+ | "pageKeys"
+ | "retainedPages"
+ | "layoutDirection"
+ > {
+ header: React.ReactNode;
+ stickyHeader: React.ReactNode;
+ headerHeight: number;
+ stickyHeaderHeight: number;
+ pageRetentionDistance?: number;
+ layoutDirection?: "ltr" | "rtl" | "locale";
+ children?: React.ReactNode;
+ onMountedPagesChanged?: (state: CollapsiblePagerMountState) => void;
+}
+
+type State = {
+ selectedPage: number;
+ animateTransition: boolean;
+};
+
+type ConfiguredScrollElement = Readonly<{
+ element: HTMLElement;
+ paddingTop: string;
+ basePaddingTop: string;
+ boxSizing: string;
+ scrollTimelineName: string;
+ scrollTimelineAxis: string;
+ pagerHeaderInset: string;
+ pagerStickyInset: string;
+}>;
+
+const COLLAPSE_ANIMATION_NAME = "ok-collapsible-pager-collapse";
+const COLLAPSE_STYLE_ID = "ok-collapsible-pager-styles";
+const PAGER_HEADER_INSET = "--ok-collapsible-pager-header-inset";
+const PAGER_STICKY_INSET = "--ok-collapsible-pager-sticky-inset";
+let collapsiblePagerWebInstance = 0;
+
+const pageIndex = (value: number) => {
+ const index = Math.trunc(value);
+ return Number.isFinite(index) ? index : null;
+};
+
+const clampedPageIndex = (value: number, pageCount: number) =>
+ Math.min(
+ Math.max(0, pageIndex(value) ?? 0),
+ Math.max(0, pageCount - 1)
+ );
+
+const webElement = (node: unknown) => {
+ const element = node as HTMLElement | null;
+ return element &&
+ typeof element.querySelector === "function" &&
+ typeof element.addEventListener === "function"
+ ? element
+ : null;
+};
+
+const timelineStyle = (element: HTMLElement) =>
+ element.style as CSSStyleDeclaration & {
+ scrollTimelineName: string;
+ scrollTimelineAxis: string;
+ };
+
+function ensureCollapseAnimation(document: Document) {
+ if (document.getElementById(COLLAPSE_STYLE_ID)) return;
+ const style = document.createElement("style");
+ style.id = COLLAPSE_STYLE_ID;
+ style.textContent = `@keyframes ${COLLAPSE_ANIMATION_NAME}{from{transform:translateY(0)}to{transform:translateY(calc(-1 * var(--ok-collapsible-header-height)))}}`;
+ document.head.appendChild(style);
+}
+
+const pageKey = (child: React.ReactNode, index: number) => {
+ if (React.isValidElement(child) && child.key != null)
+ return String(child.key);
+ return `page-${index}`;
+};
+
+/** Web counterpart of the native collapsible pager contract. */
+export class CollapsiblePagerView extends React.PureComponent<
+ CollapsiblePagerViewProps,
+ State
+> {
+ state: State = {
+ selectedPage: clampedPageIndex(
+ this.props.initialPage ?? 0,
+ React.Children.toArray(this.props.children).length
+ ),
+ animateTransition: true,
+ };
+
+ private root: HTMLElement | null = null;
+ private track: HTMLElement | null = null;
+ private touchStartX: number | null = null;
+ private touchStartY: number | null = null;
+ private horizontalTouch = false;
+ private pageOffsets = new Map();
+ private pageHosts = new Map();
+ private sharedHeaderOffset = 0;
+ private scrollEnabled = this.props.scrollEnabled ?? true;
+ private lastMountSignature: string | null = null;
+ private configureFrame: number | null = null;
+ private transitionTimer: ReturnType | null = null;
+ private pageScrollState: OnPageScrollStateChangedEventData["pageScrollState"] =
+ "idle";
+ private configuredScrollElement: ConfiguredScrollElement | null = null;
+ private readonly timelineName = `--ok-collapsible-pager-${++collapsiblePagerWebInstance}`;
+
+ componentDidMount() {
+ if (this.root) ensureCollapseAnimation(this.root.ownerDocument);
+ this.scheduleScrollConfiguration();
+ this.notifyMountedPagesChanged();
+ this.emitDiagnostics("mounted");
+ }
+
+ componentDidUpdate(previousProps: CollapsiblePagerViewProps) {
+ if (previousProps.scrollEnabled !== this.props.scrollEnabled) {
+ this.scrollEnabled = this.props.scrollEnabled ?? true;
+ if (!this.scrollEnabled) {
+ this.touchStartX = null;
+ this.touchStartY = null;
+ this.horizontalTouch = false;
+ this.finishPageTransition();
+ }
+ }
+ const pageCount = this.pages().length;
+ const selectedPage = clampedPageIndex(this.state.selectedPage, pageCount);
+ if (selectedPage !== this.state.selectedPage) {
+ this.finishPageTransition();
+ this.setState({
+ selectedPage,
+ animateTransition: false,
+ });
+ return;
+ }
+ this.scheduleScrollConfiguration();
+ this.notifyMountedPagesChanged();
+ }
+
+ componentWillUnmount() {
+ this.savePageOffset(this.state.selectedPage);
+ if (this.configureFrame !== null) {
+ cancelAnimationFrame(this.configureFrame);
+ this.configureFrame = null;
+ }
+ if (this.transitionTimer !== null) {
+ clearTimeout(this.transitionTimer);
+ this.transitionTimer = null;
+ }
+ this.setTrack(null);
+ this.restoreConfiguredScrollElement();
+ }
+
+ public setPage = (selectedPage: number) => {
+ this.selectPage(selectedPage, true);
+ };
+
+ public setPageWithoutAnimation = (selectedPage: number) => {
+ this.selectPage(selectedPage, false);
+ };
+
+ public setScrollEnabled = (scrollEnabled: boolean) => {
+ this.scrollEnabled = scrollEnabled;
+ };
+
+ private pages() {
+ return React.Children.toArray(this.props.children);
+ }
+
+ private retentionDistance() {
+ return Math.max(0, Math.floor(this.props.pageRetentionDistance ?? 1));
+ }
+
+ private mountedPages(
+ pageCount = this.pages().length,
+ selected = this.state.selectedPage
+ ) {
+ const mounted: number[] = [];
+ const distance = this.retentionDistance();
+ for (let index = 0; index < pageCount; index += 1) {
+ if (Math.abs(index - selected) <= distance) mounted.push(index);
+ }
+ return mounted;
+ }
+
+ private nativeEvent(nativeEvent: T) {
+ return { nativeEvent } as ReactNative.NativeSyntheticEvent;
+ }
+
+ private emitPageScrollState(
+ pageScrollState: OnPageScrollStateChangedEventData["pageScrollState"]
+ ) {
+ if (pageScrollState === this.pageScrollState) return;
+ this.pageScrollState = pageScrollState;
+ this.props.onPageScrollStateChanged?.(
+ this.nativeEvent({ pageScrollState })
+ );
+ }
+
+ private finishPageTransition = () => {
+ if (this.transitionTimer !== null) {
+ clearTimeout(this.transitionTimer);
+ this.transitionTimer = null;
+ }
+ this.emitPageScrollState("idle");
+ };
+
+ private beginPageTransition() {
+ if (this.transitionTimer !== null) clearTimeout(this.transitionTimer);
+ this.emitPageScrollState("settling");
+ this.transitionTimer = setTimeout(this.finishPageTransition, 320);
+ }
+
+ private onTrackTransitionEnd = (event: TransitionEvent) => {
+ if (event.target === this.track && event.propertyName === "transform") {
+ this.finishPageTransition();
+ }
+ };
+
+ private setTrack = (node: unknown) => {
+ const track = webElement(node);
+ if (track === this.track) return;
+ this.track?.removeEventListener(
+ "transitionend",
+ this.onTrackTransitionEnd
+ );
+ this.track = track;
+ this.track?.addEventListener("transitionend", this.onTrackTransitionEnd);
+ };
+
+ private pageScrollElement(index: number) {
+ const pageHost = this.pageHosts.get(index);
+ return (
+ pageHost?.querySelector(
+ ".ok-native-list-viewport, [data-collapsible-pager-scroll]"
+ ) ?? pageHost
+ );
+ }
+
+ private notifyInsetsChanged(element: HTMLElement) {
+ const EventConstructor = element.ownerDocument.defaultView?.Event;
+ if (EventConstructor) {
+ element.dispatchEvent(
+ new EventConstructor("ok-collapsible-pager-insets-changed")
+ );
+ }
+ }
+
+ private restoreConfiguredScrollElement() {
+ const configured = this.configuredScrollElement;
+ if (!configured) return;
+ configured.element.removeEventListener(
+ "scrollend",
+ this.onVerticalScrollSettled
+ );
+ const style = timelineStyle(configured.element);
+ style.paddingTop = configured.paddingTop;
+ style.boxSizing = configured.boxSizing;
+ style.scrollTimelineName = configured.scrollTimelineName;
+ style.scrollTimelineAxis = configured.scrollTimelineAxis;
+ style.setProperty(PAGER_HEADER_INSET, configured.pagerHeaderInset);
+ style.setProperty(PAGER_STICKY_INSET, configured.pagerStickyInset);
+ configured.element.removeAttribute("data-collapsible-pager-active");
+ this.notifyInsetsChanged(configured.element);
+ this.configuredScrollElement = null;
+ }
+
+ private configureActiveScrollElement = () => {
+ this.configureFrame = null;
+ const element = this.pageScrollElement(this.state.selectedPage);
+ if (!element) return;
+ if (this.configuredScrollElement?.element !== element) {
+ this.restoreConfiguredScrollElement();
+ const style = timelineStyle(element);
+ const computedPaddingTop =
+ element.ownerDocument.defaultView?.getComputedStyle(element)
+ .paddingTop || style.paddingTop || "0px";
+ this.configuredScrollElement = {
+ element,
+ paddingTop: style.paddingTop,
+ basePaddingTop: computedPaddingTop,
+ boxSizing: style.boxSizing,
+ scrollTimelineName: style.scrollTimelineName,
+ scrollTimelineAxis: style.scrollTimelineAxis,
+ pagerHeaderInset: style.getPropertyValue(PAGER_HEADER_INSET),
+ pagerStickyInset: style.getPropertyValue(PAGER_STICKY_INSET),
+ };
+ element.addEventListener("scrollend", this.onVerticalScrollSettled);
+ }
+
+ const style = timelineStyle(element);
+ const headerInset = Math.max(0, this.props.headerHeight);
+ const stickyInset = Math.max(0, this.props.stickyHeaderHeight);
+ const basePaddingTop = this.configuredScrollElement?.basePaddingTop ?? "0px";
+ const paddingTop = `calc(${basePaddingTop} + ${headerInset + stickyInset}px)`;
+ const headerInsetValue = `${headerInset}px`;
+ const stickyInsetValue = `${stickyInset}px`;
+ const insetsChanged =
+ style.paddingTop !== paddingTop ||
+ style.getPropertyValue(PAGER_HEADER_INSET) !== headerInsetValue ||
+ style.getPropertyValue(PAGER_STICKY_INSET) !== stickyInsetValue;
+ style.paddingTop = paddingTop;
+ style.boxSizing = "border-box";
+ style.scrollTimelineName = this.timelineName;
+ style.scrollTimelineAxis = "block";
+ style.setProperty(PAGER_HEADER_INSET, headerInsetValue);
+ style.setProperty(PAGER_STICKY_INSET, stickyInsetValue);
+ element.setAttribute("data-collapsible-pager-active", "true");
+ if (insetsChanged) this.notifyInsetsChanged(element);
+ };
+
+ private scheduleScrollConfiguration() {
+ if (this.configureFrame !== null) return;
+ if (typeof requestAnimationFrame === "function") {
+ this.configureFrame = requestAnimationFrame(
+ this.configureActiveScrollElement
+ );
+ } else {
+ this.configureActiveScrollElement();
+ }
+ }
+
+ private onVerticalScrollSettled = () => {
+ this.savePageOffset(this.state.selectedPage);
+ this.emitDiagnostics("scroll-settled");
+ };
+
+ private savePageOffset(index: number) {
+ const key = this.pages().map(pageKey)[index];
+ const scrollElement = this.pageScrollElement(index);
+ if (key && scrollElement) {
+ this.pageOffsets.set(key, scrollElement.scrollTop);
+ this.sharedHeaderOffset = Math.min(
+ Math.max(scrollElement.scrollTop, 0),
+ Math.max(0, this.props.headerHeight)
+ );
+ }
+ }
+
+ private restorePageOffset(index: number) {
+ const key = this.pages().map(pageKey)[index];
+ const scrollElement = this.pageScrollElement(index);
+ if (!key || !scrollElement) return;
+ scrollElement.scrollTop = Math.max(
+ this.pageOffsets.get(key) ?? this.sharedHeaderOffset,
+ this.sharedHeaderOffset
+ );
+ }
+
+ private selectPage(selectedPage: number, animated: boolean) {
+ const pages = this.pages();
+ const position = pageIndex(selectedPage);
+ if (
+ position === null ||
+ position < 0 ||
+ position >= pages.length ||
+ position === this.state.selectedPage
+ ) {
+ return;
+ }
+ this.savePageOffset(this.state.selectedPage);
+
+ if (animated) this.beginPageTransition();
+ else this.finishPageTransition();
+ this.setState({ selectedPage: position, animateTransition: animated }, () => {
+ this.scheduleScrollConfiguration();
+ const restore = () => {
+ this.configureActiveScrollElement();
+ this.restorePageOffset(position);
+ };
+ if (typeof requestAnimationFrame === "function") {
+ requestAnimationFrame(restore);
+ } else {
+ setTimeout(restore, 0);
+ }
+ this.props.onPageSelected?.(
+ this.nativeEvent({ position })
+ );
+ this.props.onPageScroll?.(
+ this.nativeEvent({
+ position,
+ offset: 0,
+ })
+ );
+ this.notifyMountedPagesChanged();
+ this.emitDiagnostics("page-selected");
+ });
+ }
+
+ private notifyMountedPagesChanged = () => {
+ if (!this.props.onMountedPagesChanged) return;
+ const pages = this.pages();
+ const state = {
+ position: this.state.selectedPage,
+ mountedPages: this.mountedPages(pages.length),
+ pageKeys: pages.map(pageKey),
+ };
+ const signature = JSON.stringify(state);
+ if (signature === this.lastMountSignature) return;
+ this.lastMountSignature = signature;
+ this.props.onMountedPagesChanged(state);
+ };
+
+ private emitDiagnostics(reason: string) {
+ const pages = this.pages();
+ const retainedPages = this.mountedPages(pages.length);
+ this.props.onCollapsibleStateChanged?.(
+ this.nativeEvent({
+ position: this.state.selectedPage,
+ headerOffset: Math.min(
+ Math.max(
+ this.pageScrollElement(this.state.selectedPage)?.scrollTop ?? 0,
+ 0
+ ),
+ Math.max(0, this.props.headerHeight)
+ ),
+ nativePageCount: pages.length,
+ attachedPageCount: retainedPages.length,
+ observedScrollableCount: retainedPages.reduce(
+ (count, index) => count + (this.pageScrollElement(index) ? 1 : 0),
+ 0
+ ),
+ retainedPages: JSON.stringify(retainedPages),
+ reason,
+ })
+ );
+ }
+
+ private onTouchStart = (event: ReactNative.GestureResponderEvent) => {
+ if (!this.scrollEnabled) return;
+ const touch = event.nativeEvent.touches[0];
+ if (!touch) return;
+ this.touchStartX = touch.pageX;
+ this.touchStartY = touch.pageY;
+ this.horizontalTouch = false;
+ };
+
+ private onTouchMove = (event: ReactNative.GestureResponderEvent) => {
+ if (this.touchStartX == null || !this.scrollEnabled || this.horizontalTouch)
+ return;
+ const touch = event.nativeEvent.touches[0];
+ if (!touch) return;
+ const deltaX = touch.pageX - this.touchStartX;
+ const deltaY = touch.pageY - (this.touchStartY ?? touch.pageY);
+ if (Math.abs(deltaX) >= 8 && Math.abs(deltaX) > Math.abs(deltaY)) {
+ this.horizontalTouch = true;
+ this.emitPageScrollState("dragging");
+ }
+ };
+
+ private onTouchEnd = (event: ReactNative.GestureResponderEvent) => {
+ if (this.touchStartX == null || !this.scrollEnabled) return;
+ const touch = event.nativeEvent.changedTouches[0];
+ if (!touch) {
+ this.onTouchCancel();
+ return;
+ }
+ const delta = touch.pageX - this.touchStartX;
+ const verticalDelta = touch.pageY - (this.touchStartY ?? touch.pageY);
+ this.touchStartX = null;
+ this.touchStartY = null;
+ const rtl =
+ this.props.layoutDirection === "rtl" ||
+ ((!this.props.layoutDirection ||
+ this.props.layoutDirection === "locale") &&
+ I18nManager.isRTL);
+ const direction = Math.abs(delta) >= 40 && Math.abs(delta) > Math.abs(verticalDelta)
+ ? (delta < 0 ? 1 : -1)
+ : 0;
+ const next = this.state.selectedPage + (rtl ? -direction : direction);
+ if (direction === 0 || next < 0 || next >= this.pages().length) {
+ const wasHorizontal = this.horizontalTouch;
+ this.horizontalTouch = false;
+ if (wasHorizontal) this.finishPageTransition();
+ return;
+ }
+ this.horizontalTouch = false;
+ this.selectPage(next, true);
+ };
+
+ private onTouchCancel = () => {
+ const wasHorizontal = this.horizontalTouch;
+ this.touchStartX = null;
+ this.touchStartY = null;
+ this.horizontalTouch = false;
+ if (wasHorizontal) this.finishPageTransition();
+ };
+
+ render() {
+ const {
+ children: _children,
+ header,
+ stickyHeader,
+ headerHeight: _headerHeight,
+ stickyHeaderHeight: _stickyHeaderHeight,
+ pageRetentionDistance: _pageRetentionDistance,
+ layoutDirection: _layoutDirection,
+ scrollEnabled: _scrollEnabled,
+ initialPage: _initialPage,
+ offscreenPageLimit: _offscreenPageLimit,
+ onPageScroll: _onPageScroll,
+ onPageSelected: _onPageSelected,
+ onPageScrollStateChanged: _onPageScrollStateChanged,
+ onCollapsibleStateChanged: _onCollapsibleStateChanged,
+ onMountedPagesChanged: _onMountedPagesChanged,
+ style,
+ ...viewProps
+ } = this.props;
+ const pages = this.pages();
+ const keys = pages.map(pageKey);
+ const retained = new Set(this.mountedPages(pages.length));
+ const pageWidth = pages.length > 0 ? `${100 / pages.length}%` : "100%";
+ const collapseAnimation = {
+ "--ok-collapsible-header-height": `${Math.max(
+ 0,
+ this.props.headerHeight
+ )}px`,
+ animationName: COLLAPSE_ANIMATION_NAME,
+ animationDuration: "auto",
+ animationFillMode: "both",
+ animationTimingFunction: "linear",
+ animationTimeline: this.timelineName,
+ animationRange: `0px ${Math.max(1, this.props.headerHeight)}px`,
+ } as never;
+ const trackStyle = [
+ styles.track,
+ {
+ width: `${Math.max(1, pages.length) * 100}%`,
+ transform: [
+ {
+ translateX: `${
+ (-this.state.selectedPage * 100) / Math.max(1, pages.length)
+ }%`,
+ },
+ ],
+ transitionProperty: "transform",
+ transitionDuration: this.state.animateTransition ? "240ms" : "0ms",
+ },
+ ] as never;
+
+ return (
+ {
+ this.root = webElement(node);
+ }}
+ style={[
+ styles.root,
+ { timelineScope: this.timelineName } as never,
+ style,
+ ]}
+ >
+
+ {header}
+
+
+ {stickyHeader}
+
+
+ {pages.map((page, index) => (
+ {
+ const host = webElement(node);
+ if (host) {
+ host.inert = index !== this.state.selectedPage;
+ this.pageHosts.set(index, host);
+ } else {
+ this.pageHosts.delete(index);
+ }
+ }}
+ style={[styles.page, { width: pageWidth }]}
+ aria-hidden={index !== this.state.selectedPage}
+ >
+ {retained.has(index) ? page : null}
+
+ ))}
+
+
+ );
+ }
+}
+
+const styles = StyleSheet.create({
+ root: {
+ flex: 1,
+ overflow: "hidden",
+ position: "relative",
+ } as never,
+ header: {
+ position: "absolute",
+ left: 0,
+ right: 0,
+ top: 0,
+ zIndex: 3,
+ overflow: "hidden",
+ } as never,
+ sticky: {
+ position: "absolute",
+ left: 0,
+ right: 0,
+ zIndex: 4,
+ overflow: "hidden",
+ } as never,
+ track: {
+ position: "absolute",
+ inset: 0,
+ display: "flex",
+ flexDirection: "row",
+ alignItems: "stretch",
+ touchAction: "pan-y",
+ } as never,
+ page: {
+ flexShrink: 0,
+ minWidth: 0,
+ minHeight: 0,
+ height: "100%",
+ display: "flex",
+ position: "relative",
+ overflowY: "auto",
+ overflowX: "hidden",
+ } as never,
+});
+
+export type CollapsiblePagerViewOnPageScrollEvent =
+ ReactNative.NativeSyntheticEvent;
+export type CollapsiblePagerViewOnPageSelectedEvent =
+ ReactNative.NativeSyntheticEvent;
+export type CollapsiblePagerViewOnPageScrollStateChangedEvent =
+ ReactNative.NativeSyntheticEvent;
diff --git a/native-views/react-native-pager-view/src/CollapsiblePagerViewNativeComponent.ts b/native-views/react-native-pager-view/src/CollapsiblePagerViewNativeComponent.ts
new file mode 100644
index 000000000..6dbf075ed
--- /dev/null
+++ b/native-views/react-native-pager-view/src/CollapsiblePagerViewNativeComponent.ts
@@ -0,0 +1,87 @@
+import type * as React from "react";
+import {
+ codegenNativeCommands,
+ codegenNativeComponent,
+ type HostComponent,
+ type ViewProps,
+} from "react-native";
+
+import type {
+ DirectEventHandler,
+ Double,
+ Int32,
+ WithDefault,
+} from "react-native/Libraries/Types/CodegenTypes";
+
+export type OnPageScrollEventData = Readonly<{
+ position: Double;
+ offset: Double;
+}>;
+
+export type OnPageSelectedEventData = Readonly<{
+ position: Double;
+}>;
+
+export type OnPageScrollStateChangedEventData = Readonly<{
+ pageScrollState: "idle" | "dragging" | "settling";
+}>;
+
+export type OnCollapsibleStateChangedEventData = Readonly<{
+ position: Int32;
+ headerOffset: Double;
+ nativePageCount: Int32;
+ attachedPageCount: Int32;
+ observedScrollableCount: Int32;
+ retainedPages: string;
+ reason: string;
+}>;
+
+/**
+ * Internal native props. Consumers should use CollapsiblePagerViewProps from
+ * CollapsiblePagerView instead of mounting this host component directly.
+ */
+export interface NativeProps extends ViewProps {
+ scrollEnabled?: WithDefault;
+ layoutDirection?: WithDefault<"ltr" | "rtl", "ltr">;
+ initialPage?: Int32;
+ offscreenPageLimit?: Int32;
+ // OneKey patch: Preserve nested pager gesture coordination for collapsible pages.
+ nestedScrollEnabled?: WithDefault;
+ headerHeight?: Int32;
+ stickyHeaderHeight?: Int32;
+ pageKeys?: string;
+ retainedPages?: string;
+ onPageScroll?: DirectEventHandler;
+ onPageSelected?: DirectEventHandler;
+ onPageScrollStateChanged?: DirectEventHandler;
+ onCollapsibleStateChanged?: DirectEventHandler;
+}
+
+type CollapsiblePagerViewNativeType = HostComponent;
+
+export interface NativeCommands {
+ setPage: (
+ viewRef: React.ElementRef,
+ selectedPage: Int32
+ ) => void;
+ setPageWithoutAnimation: (
+ viewRef: React.ElementRef,
+ selectedPage: Int32
+ ) => void;
+ setScrollEnabledImperatively: (
+ viewRef: React.ElementRef,
+ scrollEnabled: boolean
+ ) => void;
+}
+
+export const Commands: NativeCommands = codegenNativeCommands({
+ supportedCommands: [
+ "setPage",
+ "setPageWithoutAnimation",
+ "setScrollEnabledImperatively",
+ ],
+});
+
+export default codegenNativeComponent(
+ "RNCCollapsiblePagerView"
+) as HostComponent;
diff --git a/native-views/react-native-pager-view/src/PagerView.web.tsx b/native-views/react-native-pager-view/src/PagerView.web.tsx
new file mode 100644
index 000000000..d7a8a6ba5
--- /dev/null
+++ b/native-views/react-native-pager-view/src/PagerView.web.tsx
@@ -0,0 +1,299 @@
+import React from "react";
+import { I18nManager, Keyboard, StyleSheet, View } from "react-native";
+import type * as ReactNative from "react-native";
+
+export type PagerViewOnPageScrollEventData = Readonly<{
+ position: number;
+ offset: number;
+}>;
+
+export type PagerViewOnPageSelectedEventData = Readonly<{
+ position: number;
+}>;
+
+export type PageScrollStateChangedNativeEventData = Readonly<{
+ pageScrollState: "idle" | "dragging" | "settling";
+}>;
+
+export interface PagerViewProps extends ReactNative.ViewProps {
+ scrollEnabled?: boolean;
+ layoutDirection?: "ltr" | "rtl" | "locale";
+ initialPage?: number;
+ orientation?: "horizontal" | "vertical";
+ offscreenPageLimit?: number;
+ pageMargin?: number;
+ overScrollMode?: "auto" | "always" | "never";
+ overdrag?: boolean;
+ keyboardDismissMode?: "none" | "on-drag";
+ scrollSensitivity?: number;
+ nestedScrollEnabled?: boolean;
+ onPageScroll?: (
+ event: ReactNative.NativeSyntheticEvent
+ ) => void;
+ onPageSelected?: (
+ event: ReactNative.NativeSyntheticEvent
+ ) => void;
+ onPageScrollStateChanged?: (
+ event: ReactNative.NativeSyntheticEvent
+ ) => void;
+}
+
+type State = Readonly<{
+ selectedPage: number;
+ animateTransition: boolean;
+}>;
+
+const pageIndex = (value: number) => {
+ const index = Math.trunc(value);
+ return Number.isFinite(index) ? index : null;
+};
+
+const clampedPageIndex = (value: number, pageCount: number) =>
+ Math.min(
+ Math.max(0, pageIndex(value) ?? 0),
+ Math.max(0, pageCount - 1)
+ );
+
+/**
+ * Web fallback for the ordinary PagerView API. All pages stay mounted, matching
+ * the package's pre-existing PagerView lifetime contract.
+ */
+export class PagerView extends React.Component {
+ state: State = {
+ selectedPage: clampedPageIndex(
+ this.props.initialPage ?? 0,
+ React.Children.toArray(this.props.children).length
+ ),
+ animateTransition: true,
+ };
+
+ private pointerStart: Readonly<{ x: number; y: number }> | null = null;
+ private scrollEnabled = this.props.scrollEnabled ?? true;
+
+ componentDidUpdate(previousProps: PagerViewProps) {
+ if (previousProps.scrollEnabled !== this.props.scrollEnabled) {
+ this.scrollEnabled = this.props.scrollEnabled ?? true;
+ }
+
+ const pageCount = this.pages().length;
+ if (pageCount > 0 && this.state.selectedPage >= pageCount) {
+ this.setState({
+ selectedPage: pageCount - 1,
+ animateTransition: false,
+ });
+ }
+ }
+
+ public setPage = (selectedPage: number) => {
+ this.selectPage(selectedPage, true);
+ };
+
+ public setPageWithoutAnimation = (selectedPage: number) => {
+ this.selectPage(selectedPage, false);
+ };
+
+ public setScrollEnabled = (scrollEnabled: boolean) => {
+ this.scrollEnabled = scrollEnabled;
+ };
+
+ private nativeEvent(nativeEvent: T) {
+ return { nativeEvent } as ReactNative.NativeSyntheticEvent;
+ }
+
+ private pages() {
+ return React.Children.toArray(this.props.children);
+ }
+
+ private selectPage(selectedPage: number, animated: boolean) {
+ const pageCount = this.pages().length;
+ const position = pageIndex(selectedPage);
+ if (
+ position === null ||
+ position < 0 ||
+ position >= pageCount ||
+ position === this.state.selectedPage
+ ) {
+ return;
+ }
+
+ this.props.onPageScrollStateChanged?.(
+ this.nativeEvent({
+ pageScrollState: animated ? "settling" : "idle",
+ })
+ );
+ this.setState(
+ { selectedPage: position, animateTransition: animated },
+ () => {
+ this.props.onPageScroll?.(
+ this.nativeEvent({
+ position,
+ offset: 0,
+ })
+ );
+ this.props.onPageSelected?.(
+ this.nativeEvent({ position })
+ );
+ if (animated) {
+ this.props.onPageScrollStateChanged?.(
+ this.nativeEvent({
+ pageScrollState: "idle",
+ })
+ );
+ }
+ }
+ );
+ }
+
+ private onTouchStart = (event: ReactNative.GestureResponderEvent) => {
+ if (!this.scrollEnabled) return;
+ this.pointerStart = {
+ x: event.nativeEvent.pageX,
+ y: event.nativeEvent.pageY,
+ };
+ if (this.props.keyboardDismissMode === "on-drag") Keyboard.dismiss();
+ this.props.onPageScrollStateChanged?.(
+ this.nativeEvent({
+ pageScrollState: "dragging",
+ })
+ );
+ };
+
+ private onTouchEnd = (event: ReactNative.GestureResponderEvent) => {
+ const start = this.pointerStart;
+ this.pointerStart = null;
+ if (!start || !this.scrollEnabled) return;
+
+ const vertical = this.props.orientation === "vertical";
+ const delta = vertical
+ ? event.nativeEvent.pageY - start.y
+ : event.nativeEvent.pageX - start.x;
+ const isRTL =
+ !vertical &&
+ (this.props.layoutDirection === "rtl" ||
+ ((!this.props.layoutDirection ||
+ this.props.layoutDirection === "locale") &&
+ I18nManager.isRTL));
+ const direction = Math.abs(delta) >= 40 ? (delta < 0 ? 1 : -1) : 0;
+ const next = this.state.selectedPage + (isRTL ? -direction : direction);
+ if (
+ direction === 0 ||
+ next < 0 ||
+ next >= this.pages().length
+ ) {
+ this.props.onPageScrollStateChanged?.(
+ this.nativeEvent({
+ pageScrollState: "idle",
+ })
+ );
+ return;
+ }
+ this.selectPage(next, true);
+ };
+
+ render() {
+ const {
+ children: _children,
+ style,
+ orientation = "horizontal",
+ pageMargin = 0,
+ scrollEnabled: _scrollEnabled,
+ initialPage: _initialPage,
+ layoutDirection: _layoutDirection,
+ offscreenPageLimit: _offscreenPageLimit,
+ overScrollMode: _overScrollMode,
+ overdrag: _overdrag,
+ keyboardDismissMode: _keyboardDismissMode,
+ scrollSensitivity: _scrollSensitivity,
+ nestedScrollEnabled: _nestedScrollEnabled,
+ onPageScroll: _onPageScroll,
+ onPageSelected: _onPageSelected,
+ onPageScrollStateChanged: _onPageScrollStateChanged,
+ ...viewProps
+ } = this.props;
+ const pages = this.pages();
+ const vertical = orientation === "vertical";
+ const pageExtent = pages.length > 0 ? `${100 / pages.length}%` : "100%";
+ const transform = vertical
+ ? [
+ {
+ translateY: `${
+ (-this.state.selectedPage * 100) / Math.max(1, pages.length)
+ }%`,
+ },
+ ]
+ : [
+ {
+ translateX: `${
+ (-this.state.selectedPage * 100) / Math.max(1, pages.length)
+ }%`,
+ },
+ ];
+
+ return (
+
+
+ {pages.map((page, index) => (
+
+ {page}
+
+ ))}
+
+
+ );
+ }
+}
+
+const styles = StyleSheet.create({
+ root: {
+ overflow: "hidden",
+ },
+ track: {
+ flex: 1,
+ },
+ horizontalTrack: {
+ flexDirection: "row",
+ height: "100%",
+ },
+ verticalTrack: {
+ flexDirection: "column",
+ width: "100%",
+ },
+ page: {
+ flexShrink: 0,
+ minWidth: 0,
+ minHeight: 0,
+ overflow: "hidden",
+ },
+});
+
+export type PagerViewOnPageScrollEvent =
+ ReactNative.NativeSyntheticEvent;
+export type PagerViewOnPageSelectedEvent =
+ ReactNative.NativeSyntheticEvent;
+export type PageScrollStateChangedNativeEvent =
+ ReactNative.NativeSyntheticEvent;
diff --git a/native-views/react-native-pager-view/src/index.tsx b/native-views/react-native-pager-view/src/index.tsx
index c31afa190..392732494 100644
--- a/native-views/react-native-pager-view/src/index.tsx
+++ b/native-views/react-native-pager-view/src/index.tsx
@@ -2,6 +2,7 @@ import type * as ReactNative from 'react-native';
import { PagerView } from './PagerView';
export default PagerView;
export * from './usePagerView';
+export * from './CollapsiblePagerView';
import type {
OnPageScrollEventData as PagerViewOnPageScrollEventData,
diff --git a/native-views/react-native-pager-view/src/index.web.tsx b/native-views/react-native-pager-view/src/index.web.tsx
new file mode 100644
index 000000000..301290ecb
--- /dev/null
+++ b/native-views/react-native-pager-view/src/index.web.tsx
@@ -0,0 +1,12 @@
+export { PagerView as default, PagerView } from "./PagerView.web";
+export type {
+ PagerViewProps,
+ PagerViewOnPageScrollEvent,
+ PagerViewOnPageScrollEventData,
+ PagerViewOnPageSelectedEvent,
+ PagerViewOnPageSelectedEventData,
+ PageScrollStateChangedNativeEvent,
+ PageScrollStateChangedNativeEventData,
+} from "./PagerView.web";
+export * from "./usePagerView";
+export * from "./CollapsiblePagerView.web";
diff --git a/native-views/react-native-perp-depth-bar/package.json b/native-views/react-native-perp-depth-bar/package.json
index e59d5777b..cd648b598 100644
--- a/native-views/react-native-perp-depth-bar/package.json
+++ b/native-views/react-native-perp-depth-bar/package.json
@@ -1,6 +1,6 @@
{
"name": "@onekeyfe/react-native-perp-depth-bar",
- "version": "3.0.114",
+ "version": "3.0.118",
"description": "react-native-perp-depth-bar",
"main": "./lib/module/index.js",
"types": "./lib/typescript/src/index.d.ts",
diff --git a/native-views/react-native-scroll-guard/package.json b/native-views/react-native-scroll-guard/package.json
index ae273c2ca..b603f801c 100644
--- a/native-views/react-native-scroll-guard/package.json
+++ b/native-views/react-native-scroll-guard/package.json
@@ -1,6 +1,6 @@
{
"name": "@onekeyfe/react-native-scroll-guard",
- "version": "3.0.114",
+ "version": "3.0.118",
"description": "A native view wrapper that prevents parent scrollable containers (PagerView/ViewPager2) from intercepting child scroll gestures",
"main": "./lib/module/index.js",
"types": "./lib/typescript/src/index.d.ts",
diff --git a/native-views/react-native-segment-slider/package.json b/native-views/react-native-segment-slider/package.json
index dec129c1a..d6462cdc8 100644
--- a/native-views/react-native-segment-slider/package.json
+++ b/native-views/react-native-segment-slider/package.json
@@ -1,6 +1,6 @@
{
"name": "@onekeyfe/react-native-segment-slider",
- "version": "3.0.114",
+ "version": "3.0.118",
"description": "react-native-segment-slider",
"main": "./lib/module/index.js",
"types": "./lib/typescript/src/index.d.ts",
diff --git a/native-views/react-native-skeleton/package.json b/native-views/react-native-skeleton/package.json
index 29812dc06..3c2f1306d 100644
--- a/native-views/react-native-skeleton/package.json
+++ b/native-views/react-native-skeleton/package.json
@@ -1,6 +1,6 @@
{
"name": "@onekeyfe/react-native-skeleton",
- "version": "3.0.114",
+ "version": "3.0.118",
"description": "react-native-skeleton",
"main": "./lib/module/index.js",
"types": "./lib/typescript/src/index.d.ts",
diff --git a/native-views/react-native-tab-view/package.json b/native-views/react-native-tab-view/package.json
index 548ec07b1..1531281d2 100644
--- a/native-views/react-native-tab-view/package.json
+++ b/native-views/react-native-tab-view/package.json
@@ -1,6 +1,6 @@
{
"name": "@onekeyfe/react-native-tab-view",
- "version": "3.0.114",
+ "version": "3.0.118",
"description": "Native Bottom Tabs for React Native (UIKit implementation)",
"source": "./src/index.tsx",
"main": "./lib/module/index.js",
diff --git a/native-views/react-native-text-input/package.json b/native-views/react-native-text-input/package.json
index 7db8067ec..85e8c168f 100644
--- a/native-views/react-native-text-input/package.json
+++ b/native-views/react-native-text-input/package.json
@@ -1,6 +1,6 @@
{
"name": "@onekeyfe/react-native-text-input",
- "version": "3.0.114",
+ "version": "3.0.118",
"description": "React Native TextInput with native paste events",
"source": "./src/index.tsx",
"main": "./lib/module/index.js",
diff --git a/native-views/react-native-text/package.json b/native-views/react-native-text/package.json
index a5b4f5dff..1761b720d 100644
--- a/native-views/react-native-text/package.json
+++ b/native-views/react-native-text/package.json
@@ -1,6 +1,6 @@
{
"name": "@onekeyfe/react-native-text",
- "version": "3.0.114",
+ "version": "3.0.118",
"description": "Opt-in native text rendering for React Native",
"source": "./src/index.ts",
"main": "./lib/module/index.js",
diff --git a/yarn.lock b/yarn.lock
index 57caaa1c6..bb013184c 100644
--- a/yarn.lock
+++ b/yarn.lock
@@ -21,6 +21,19 @@ __metadata:
languageName: node
linkType: hard
+"@asamuzakjp/css-color@npm:^3.2.0":
+ version: 3.2.0
+ resolution: "@asamuzakjp/css-color@npm:3.2.0"
+ dependencies:
+ "@csstools/css-calc": "npm:^2.1.3"
+ "@csstools/css-color-parser": "npm:^3.0.9"
+ "@csstools/css-parser-algorithms": "npm:^3.0.4"
+ "@csstools/css-tokenizer": "npm:^3.0.3"
+ lru-cache: "npm:^10.4.3"
+ checksum: 10/870f661460173174fef8bfebea0799ba26566f3aa7b307e5adabb7aae84fed2da68e40080104ed0c83b43c5be632ee409e65396af13bfe948a3ef4c2c729ecd9
+ languageName: node
+ linkType: hard
+
"@babel/code-frame@npm:^7.0.0, @babel/code-frame@npm:^7.12.13, @babel/code-frame@npm:^7.27.1":
version: 7.27.1
resolution: "@babel/code-frame@npm:7.27.1"
@@ -1832,6 +1845,52 @@ __metadata:
languageName: node
linkType: hard
+"@csstools/color-helpers@npm:^5.1.0":
+ version: 5.1.0
+ resolution: "@csstools/color-helpers@npm:5.1.0"
+ checksum: 10/0138b3d5ccbe77aeccf6721fd008a53523c70e932f0c82dca24a1277ca780447e1d8357da47512ebf96358476f8764de57002f3e491920d67e69202f5a74c383
+ languageName: node
+ linkType: hard
+
+"@csstools/css-calc@npm:^2.1.3, @csstools/css-calc@npm:^2.1.4":
+ version: 2.1.4
+ resolution: "@csstools/css-calc@npm:2.1.4"
+ peerDependencies:
+ "@csstools/css-parser-algorithms": ^3.0.5
+ "@csstools/css-tokenizer": ^3.0.4
+ checksum: 10/06975b650c0f44c60eeb7afdb3fd236f2dd607b2c622e0bc908d3f54de39eb84e0692833320d03dac04bd6c1ab0154aa3fa0dd442bd9e5f917cf14d8e2ba8d74
+ languageName: node
+ linkType: hard
+
+"@csstools/css-color-parser@npm:^3.0.9":
+ version: 3.1.0
+ resolution: "@csstools/css-color-parser@npm:3.1.0"
+ dependencies:
+ "@csstools/color-helpers": "npm:^5.1.0"
+ "@csstools/css-calc": "npm:^2.1.4"
+ peerDependencies:
+ "@csstools/css-parser-algorithms": ^3.0.5
+ "@csstools/css-tokenizer": ^3.0.4
+ checksum: 10/4741095fdc4501e8e7ada4ed14fbf9dbbe6fea9b989818790ebca15657c29c62defbebacf18592cde2aa638a1d098bbe86d742d2c84ba932fbc00fac51cb8805
+ languageName: node
+ linkType: hard
+
+"@csstools/css-parser-algorithms@npm:^3.0.4":
+ version: 3.0.5
+ resolution: "@csstools/css-parser-algorithms@npm:3.0.5"
+ peerDependencies:
+ "@csstools/css-tokenizer": ^3.0.4
+ checksum: 10/e93083b5cb36a3c1e7a47ce10cf62961d05bd1e4c608bb3ee50186ff740157ab0ec16a3956f7b86251efd10703034d849693201eea858ae904848c68d2d46ada
+ languageName: node
+ linkType: hard
+
+"@csstools/css-tokenizer@npm:^3.0.3":
+ version: 3.0.4
+ resolution: "@csstools/css-tokenizer@npm:3.0.4"
+ checksum: 10/eb6c84c086312f6bb8758dfe2c85addd7475b0927333c5e39a4d59fb210b9810f8c346972046f95e60a721329cffe98895abe451e51de753ad1ca7a8c24ec65f
+ languageName: node
+ linkType: hard
+
"@emnapi/core@npm:1.11.1":
version: 1.11.1
resolution: "@emnapi/core@npm:1.11.1"
@@ -3491,7 +3550,7 @@ __metadata:
react-test-renderer: "npm:19.2.3"
typescript: "npm:^5.9.2"
peerDependencies:
- "@onekeyfe/react-native-skeleton": 3.0.114
+ "@onekeyfe/react-native-skeleton": 3.0.118
react: "*"
react-native: "*"
react-native-nitro-modules: 0.37.0
@@ -3583,6 +3642,7 @@ __metadata:
eslint-config-prettier: "npm:^10.1.8"
eslint-plugin-prettier: "npm:^5.5.4"
jest: "npm:^29.7.0"
+ jsdom: "npm:26.1.0"
nitrogen: "npm:0.37.0"
prettier: "npm:^2.8.8"
react: "npm:19.2.3"
@@ -3591,7 +3651,8 @@ __metadata:
react-native-nitro-modules: "npm:0.37.0"
typescript: "npm:^5.9.2"
peerDependencies:
- "@onekeyfe/react-native-image": 3.0.114
+ "@onekeyfe/react-native-image": 3.0.118
+ "@onekeyfe/react-native-native-logger": 3.0.118
react: "*"
react-native: "*"
react-native-nitro-modules: 0.37.0
@@ -6830,6 +6891,16 @@ __metadata:
languageName: node
linkType: hard
+"cssstyle@npm:^4.2.1":
+ version: 4.6.0
+ resolution: "cssstyle@npm:4.6.0"
+ dependencies:
+ "@asamuzakjp/css-color": "npm:^3.2.0"
+ rrweb-cssom: "npm:^0.8.0"
+ checksum: 10/1cb25c9d66b87adb165f978b75cdeb6f225d7e31ba30a8934666046a0be037e4e7200d359bfa79d4f1a4aef1083ea09633b81bcdb36a2f2ac888e8c73ea3a289
+ languageName: node
+ linkType: hard
+
"csstype@npm:^3.2.2":
version: 3.2.3
resolution: "csstype@npm:3.2.3"
@@ -6851,6 +6922,16 @@ __metadata:
languageName: node
linkType: hard
+"data-urls@npm:^5.0.0":
+ version: 5.0.0
+ resolution: "data-urls@npm:5.0.0"
+ dependencies:
+ whatwg-mimetype: "npm:^4.0.0"
+ whatwg-url: "npm:^14.0.0"
+ checksum: 10/5c40568c31b02641a70204ff233bc4e42d33717485d074244a98661e5f2a1e80e38fe05a5755dfaf2ee549f2ab509d6a3af2a85f4b2ad2c984e5d176695eaf46
+ languageName: node
+ linkType: hard
+
"data-view-buffer@npm:^1.0.2":
version: 1.0.2
resolution: "data-view-buffer@npm:1.0.2"
@@ -6919,6 +7000,13 @@ __metadata:
languageName: node
linkType: hard
+"decimal.js@npm:^10.5.0":
+ version: 10.6.0
+ resolution: "decimal.js@npm:10.6.0"
+ checksum: 10/c0d45842d47c311d11b38ce7ccc911121953d4df3ebb1465d92b31970eb4f6738a065426a06094af59bee4b0d64e42e7c8984abd57b6767c64ea90cf90bb4a69
+ languageName: node
+ linkType: hard
+
"decode-uri-component@npm:^0.2.2":
version: 0.2.2
resolution: "decode-uri-component@npm:0.2.2"
@@ -7246,6 +7334,13 @@ __metadata:
languageName: node
linkType: hard
+"entities@npm:^6.0.0":
+ version: 6.0.1
+ resolution: "entities@npm:6.0.1"
+ checksum: 10/62af1307202884349d2867f0aac5c60d8b57102ea0b0e768b16246099512c28e239254ad772d6834e7e14cb1b6f153fc3d0c031934e3183b086c86d3838d874a
+ languageName: node
+ linkType: hard
+
"env-paths@npm:^2.2.0, env-paths@npm:^2.2.1":
version: 2.2.1
resolution: "env-paths@npm:2.2.1"
@@ -8792,6 +8887,15 @@ __metadata:
languageName: node
linkType: hard
+"html-encoding-sniffer@npm:^4.0.0":
+ version: 4.0.0
+ resolution: "html-encoding-sniffer@npm:4.0.0"
+ dependencies:
+ whatwg-encoding: "npm:^3.1.1"
+ checksum: 10/e86efd493293a5671b8239bd099d42128433bb3c7b0fdc7819282ef8e118a21f5dead0ad6f358e024a4e5c84f17ebb7a9b36075220fac0a6222b207248bede6f
+ languageName: node
+ linkType: hard
+
"html-escaper@npm:^2.0.0":
version: 2.0.2
resolution: "html-escaper@npm:2.0.2"
@@ -8819,7 +8923,7 @@ __metadata:
languageName: node
linkType: hard
-"http-proxy-agent@npm:^7.0.0, http-proxy-agent@npm:^7.0.1":
+"http-proxy-agent@npm:^7.0.0, http-proxy-agent@npm:^7.0.1, http-proxy-agent@npm:^7.0.2":
version: 7.0.2
resolution: "http-proxy-agent@npm:7.0.2"
dependencies:
@@ -8867,7 +8971,7 @@ __metadata:
languageName: node
linkType: hard
-"iconv-lite@npm:^0.6.2":
+"iconv-lite@npm:0.6.3, iconv-lite@npm:^0.6.2":
version: 0.6.3
resolution: "iconv-lite@npm:0.6.3"
dependencies:
@@ -9337,6 +9441,13 @@ __metadata:
languageName: node
linkType: hard
+"is-potential-custom-element-name@npm:^1.0.1":
+ version: 1.0.1
+ resolution: "is-potential-custom-element-name@npm:1.0.1"
+ checksum: 10/ced7bbbb6433a5b684af581872afe0e1767e2d1146b2207ca0068a648fb5cab9d898495d1ac0583524faaf24ca98176a7d9876363097c2d14fee6dd324f3a1ab
+ languageName: node
+ linkType: hard
+
"is-regex@npm:^1.2.1":
version: 1.2.1
resolution: "is-regex@npm:1.2.1"
@@ -10141,6 +10252,39 @@ __metadata:
languageName: node
linkType: hard
+"jsdom@npm:26.1.0":
+ version: 26.1.0
+ resolution: "jsdom@npm:26.1.0"
+ dependencies:
+ cssstyle: "npm:^4.2.1"
+ data-urls: "npm:^5.0.0"
+ decimal.js: "npm:^10.5.0"
+ html-encoding-sniffer: "npm:^4.0.0"
+ http-proxy-agent: "npm:^7.0.2"
+ https-proxy-agent: "npm:^7.0.6"
+ is-potential-custom-element-name: "npm:^1.0.1"
+ nwsapi: "npm:^2.2.16"
+ parse5: "npm:^7.2.1"
+ rrweb-cssom: "npm:^0.8.0"
+ saxes: "npm:^6.0.0"
+ symbol-tree: "npm:^3.2.4"
+ tough-cookie: "npm:^5.1.1"
+ w3c-xmlserializer: "npm:^5.0.0"
+ webidl-conversions: "npm:^7.0.0"
+ whatwg-encoding: "npm:^3.1.1"
+ whatwg-mimetype: "npm:^4.0.0"
+ whatwg-url: "npm:^14.1.1"
+ ws: "npm:^8.18.0"
+ xml-name-validator: "npm:^5.0.0"
+ peerDependencies:
+ canvas: ^3.0.0
+ peerDependenciesMeta:
+ canvas:
+ optional: true
+ checksum: 10/39d78c4889cac20826393400dce1faed1666e9244fe0c8342a8f08c315375878e6be7fcfe339a33d6ff1a083bfe9e71b16d56ecf4d9a87db2da8c795925ea8c1
+ languageName: node
+ linkType: hard
+
"jsesc@npm:^3.0.2, jsesc@npm:~3.1.0":
version: 3.1.0
resolution: "jsesc@npm:3.1.0"
@@ -10599,7 +10743,7 @@ __metadata:
languageName: node
linkType: hard
-"lru-cache@npm:^10.0.1, lru-cache@npm:^10.2.0":
+"lru-cache@npm:^10.0.1, lru-cache@npm:^10.2.0, lru-cache@npm:^10.4.3":
version: 10.4.3
resolution: "lru-cache@npm:10.4.3"
checksum: 10/e6e90267360476720fa8e83cc168aa2bf0311f3f2eea20a6ba78b90a885ae72071d9db132f40fda4129c803e7dcec3a6b6a6fbb44ca90b081630b810b5d6a41a
@@ -11396,6 +11540,13 @@ __metadata:
languageName: node
linkType: hard
+"nwsapi@npm:^2.2.16":
+ version: 2.2.27
+ resolution: "nwsapi@npm:2.2.27"
+ checksum: 10/d4b9e77402ee91b9ca2ef280832c5b39f0835deb83ff186268d9b039a610f00405754a8f291347cd871ea3b09f46b5def91c4200c241979acb8383557b3b4e19
+ languageName: node
+ linkType: hard
+
"nypm@npm:^0.6.0":
version: 0.6.2
resolution: "nypm@npm:0.6.2"
@@ -11809,6 +11960,15 @@ __metadata:
languageName: node
linkType: hard
+"parse5@npm:^7.2.1":
+ version: 7.3.0
+ resolution: "parse5@npm:7.3.0"
+ dependencies:
+ entities: "npm:^6.0.0"
+ checksum: 10/b0e48be20b820c655b138b86fa6fb3a790de6c891aa2aba536524f8027b4dca4fe538f11a0e5cf2f6f847d120dbb9e4822dcaeb933ff1e10850a2ef0154d1d88
+ languageName: node
+ linkType: hard
+
"parseurl@npm:~1.3.3":
version: 1.3.3
resolution: "parseurl@npm:1.3.3"
@@ -12114,7 +12274,7 @@ __metadata:
languageName: node
linkType: hard
-"punycode@npm:^2.1.0":
+"punycode@npm:^2.1.0, punycode@npm:^2.3.1":
version: 2.3.1
resolution: "punycode@npm:2.3.1"
checksum: 10/febdc4362bead22f9e2608ff0171713230b57aff9dddc1c273aa2a651fbd366f94b7d6a71d78342a7c0819906750351ca7f2edd26ea41b626d87d6a13d1bd059
@@ -12767,6 +12927,13 @@ __metadata:
languageName: node
linkType: hard
+"rrweb-cssom@npm:^0.8.0":
+ version: 0.8.0
+ resolution: "rrweb-cssom@npm:0.8.0"
+ checksum: 10/07521ee36fb6569c17906afad1ac7ff8f099d49ade9249e190693ac36cdf27f88d9acf0cc66978935d5d0a23fca105643d7e9125b9a9d91ed9db9e02d31d7d80
+ languageName: node
+ linkType: hard
+
"run-applescript@npm:^7.0.0":
version: 7.1.0
resolution: "run-applescript@npm:7.1.0"
@@ -12847,6 +13014,15 @@ __metadata:
languageName: node
linkType: hard
+"saxes@npm:^6.0.0":
+ version: 6.0.0
+ resolution: "saxes@npm:6.0.0"
+ dependencies:
+ xmlchars: "npm:^2.2.0"
+ checksum: 10/97b50daf6ca3a153e89842efa18a862e446248296622b7473c169c84c823ee8a16e4a43bac2f73f11fc8cb9168c73fbb0d73340f26552bac17970e9052367aa9
+ languageName: node
+ linkType: hard
+
"scheduler@npm:0.27.0, scheduler@npm:^0.27.0":
version: 0.27.0
resolution: "scheduler@npm:0.27.0"
@@ -13533,6 +13709,13 @@ __metadata:
languageName: node
linkType: hard
+"symbol-tree@npm:^3.2.4":
+ version: 3.2.4
+ resolution: "symbol-tree@npm:3.2.4"
+ checksum: 10/c09a00aadf279d47d0c5c46ca3b6b2fbaeb45f0a184976d599637d412d3a70bbdc043ff33effe1206dea0e36e0ad226cb957112e7ce9a4bf2daedf7fa4f85c53
+ languageName: node
+ linkType: hard
+
"synckit@npm:^0.11.7":
version: 0.11.11
resolution: "synckit@npm:0.11.11"
@@ -13625,6 +13808,24 @@ __metadata:
languageName: node
linkType: hard
+"tldts-core@npm:^6.1.86":
+ version: 6.1.86
+ resolution: "tldts-core@npm:6.1.86"
+ checksum: 10/cb5dff9cc15661ac773a2099e98c99a5cb3cebc35909c23cc4261ff7992032c7501995ae995de3574dbbf3431e59c47496534d52f5e96abcb231f0e72144c020
+ languageName: node
+ linkType: hard
+
+"tldts@npm:^6.1.32":
+ version: 6.1.86
+ resolution: "tldts@npm:6.1.86"
+ dependencies:
+ tldts-core: "npm:^6.1.86"
+ bin:
+ tldts: bin/cli.js
+ checksum: 10/f7e66824e44479ccdda55ea556af14ce61c4d27708be403e3f90631defde49f82a580e1ca07187cc7e3b349e257a30c2808a22903f3a0548e136ebb609ccc109
+ languageName: node
+ linkType: hard
+
"tmpl@npm:1.0.5":
version: 1.0.5
resolution: "tmpl@npm:1.0.5"
@@ -13648,6 +13849,24 @@ __metadata:
languageName: node
linkType: hard
+"tough-cookie@npm:^5.1.1":
+ version: 5.1.2
+ resolution: "tough-cookie@npm:5.1.2"
+ dependencies:
+ tldts: "npm:^6.1.32"
+ checksum: 10/de430e6e6d34b794137e05b8ac2aa6b74ebbe6cdceb4126f168cf1e76101162a4b2e0e7587c3b70e728bd8654fc39958b2035be7619ee6f08e7257610ba4cd04
+ languageName: node
+ linkType: hard
+
+"tr46@npm:^5.1.0":
+ version: 5.1.1
+ resolution: "tr46@npm:5.1.1"
+ dependencies:
+ punycode: "npm:^2.3.1"
+ checksum: 10/833a0e1044574da5790148fd17866d4ddaea89e022de50279967bcd6b28b4ce0d30d59eb3acf9702b60918975b3bad481400337e3a2e6326cffa5c77b874753d
+ languageName: node
+ linkType: hard
+
"tr46@npm:~0.0.3":
version: 0.0.3
resolution: "tr46@npm:0.0.3"
@@ -14132,6 +14351,15 @@ __metadata:
languageName: node
linkType: hard
+"w3c-xmlserializer@npm:^5.0.0":
+ version: 5.0.0
+ resolution: "w3c-xmlserializer@npm:5.0.0"
+ dependencies:
+ xml-name-validator: "npm:^5.0.0"
+ checksum: 10/d78f59e6b4f924aa53b6dfc56949959229cae7fe05ea9374eb38d11edcec01398b7f5d7a12576bd5acc57ff446abb5c9115cd83b9d882555015437cf858d42f0
+ languageName: node
+ linkType: hard
+
"walk-up-path@npm:^4.0.0":
version: 4.0.0
resolution: "walk-up-path@npm:4.0.0"
@@ -14171,6 +14399,22 @@ __metadata:
languageName: node
linkType: hard
+"webidl-conversions@npm:^7.0.0":
+ version: 7.0.0
+ resolution: "webidl-conversions@npm:7.0.0"
+ checksum: 10/4c4f65472c010eddbe648c11b977d048dd96956a625f7f8b9d64e1b30c3c1f23ea1acfd654648426ce5c743c2108a5a757c0592f02902cf7367adb7d14e67721
+ languageName: node
+ linkType: hard
+
+"whatwg-encoding@npm:^3.1.1":
+ version: 3.1.1
+ resolution: "whatwg-encoding@npm:3.1.1"
+ dependencies:
+ iconv-lite: "npm:0.6.3"
+ checksum: 10/bbef815eb67f91487c7f2ef96329743f5fd8357d7d62b1119237d25d41c7e452dff8197235b2d3c031365a17f61d3bb73ca49d0ed1582475aa4a670815e79534
+ languageName: node
+ linkType: hard
+
"whatwg-fetch@npm:^3.0.0":
version: 3.6.20
resolution: "whatwg-fetch@npm:3.6.20"
@@ -14178,6 +14422,23 @@ __metadata:
languageName: node
linkType: hard
+"whatwg-mimetype@npm:^4.0.0":
+ version: 4.0.0
+ resolution: "whatwg-mimetype@npm:4.0.0"
+ checksum: 10/894a618e2d90bf444b6f309f3ceb6e58cf21b2beaa00c8b333696958c4076f0c7b30b9d33413c9ffff7c5832a0a0c8569e5bb347ef44beded72aeefd0acd62e8
+ languageName: node
+ linkType: hard
+
+"whatwg-url@npm:^14.0.0, whatwg-url@npm:^14.1.1":
+ version: 14.2.0
+ resolution: "whatwg-url@npm:14.2.0"
+ dependencies:
+ tr46: "npm:^5.1.0"
+ webidl-conversions: "npm:^7.0.0"
+ checksum: 10/f0a95b0601c64f417c471536a2d828b4c16fe37c13662483a32f02f183ed0f441616609b0663fb791e524e8cd56d9a86dd7366b1fc5356048ccb09b576495e7c
+ languageName: node
+ linkType: hard
+
"whatwg-url@npm:^5.0.0":
version: 5.0.0
resolution: "whatwg-url@npm:5.0.0"
@@ -14393,6 +14654,21 @@ __metadata:
languageName: node
linkType: hard
+"ws@npm:^8.18.0":
+ version: 8.21.3
+ resolution: "ws@npm:8.21.3"
+ peerDependencies:
+ bufferutil: ^4.0.1
+ utf-8-validate: ">=5.0.2"
+ peerDependenciesMeta:
+ bufferutil:
+ optional: true
+ utf-8-validate:
+ optional: true
+ checksum: 10/8856922c26fd2d106931c16310d9a0bc2d6d37ed8771352bfa0d2a36df0ab5cb1f6528c6db8213f3333cf4ce93925e56f13604df0454cb0d4289fef922bebcdd
+ languageName: node
+ linkType: hard
+
"wsl-utils@npm:^0.1.0":
version: 0.1.0
resolution: "wsl-utils@npm:0.1.0"
@@ -14402,6 +14678,20 @@ __metadata:
languageName: node
linkType: hard
+"xml-name-validator@npm:^5.0.0":
+ version: 5.0.0
+ resolution: "xml-name-validator@npm:5.0.0"
+ checksum: 10/43f30f3f6786e406dd665acf08cd742d5f8a46486bd72517edb04b27d1bcd1599664c2a4a99fc3f1e56a3194bff588b12f178b7972bc45c8047bdc4c3ac8d4a1
+ languageName: node
+ linkType: hard
+
+"xmlchars@npm:^2.2.0":
+ version: 2.2.0
+ resolution: "xmlchars@npm:2.2.0"
+ checksum: 10/4ad5924974efd004a47cce6acf5c0269aee0e62f9a805a426db3337af7bcbd331099df174b024ace4fb18971b8a56de386d2e73a1c4b020e3abd63a4a9b917f1
+ languageName: node
+ linkType: hard
+
"y18n@npm:^4.0.0":
version: 4.0.3
resolution: "y18n@npm:4.0.3"