Crypto May Be Loud Online, But Only 4% Of Voters Care: Poll

bitcoinistPublicado a 2026-05-14Actualizado a 2026-05-14

Resumen

A Politico survey reveals a stark disconnect between crypto industry lobbying and U.S. voter priorities. While crypto groups have spent over $130 million on the 2024 elections, only 4% of voters say a candidate's position on crypto would influence their vote. Affordable housing, consumer fraud protection, and lower bank fees rank as far more important issues for voters. The poll also shows public ambivalence toward digital assets. Only 27% support government efforts to make crypto mainstream, while 31% oppose it. Over half of respondents have never traded crypto and don't plan to. Among those who have traded, 7% say a candidate's stance would sway their vote. Furthermore, 45% view crypto investing as a risk not worth taking. Despite low voter interest, Congress is advancing crypto regulation. The Senate Banking Committee is set to vote on a regulatory framework bill, a version of which already passed the House in June.

A separate poll released Friday by HarrisX found that 47% of registered voters said they would consider crossing party lines to support a candidate who backed crypto regulation legislation — a figure that stands in sharp contrast to new data showing crypto barely moves the needle for most Americans when they head to the polls.

The Lobbying Machine Behind The Legislation

The Politico survey, conducted by polling firm Public First and covering 2,035 US adults, found that only 4% of respondents would factor a candidate’s position on crypto into their voting decision.

Source: Politico

Affordable housing topped the list of issues voters want Congress to address, followed by consumer fraud protection and lower bank fees. Crypto regulation came in last.

That gap between voter priorities and industry muscle is hard to ignore. Crypto lobbies spent more than $130 million during the 2024 elections — more than any other industry — and have already committed $320 million to shape the upcoming November midterms, according to data compiled by researcher Molly White.

Survey results on public opinion regarding whether the US government should formally adopt crypto as a mainstream financial asset. Source: Politico.

In Illinois alone, crypto-aligned PACs have spent over $5.5 million opposing specific congressional candidates this year.

BTCUSD currently trading at $79,593. Chart: TradingView

Republican Representative Dusty Johnson acknowledged the disconnect. Most voters don’t think about digital assets, he told Politico, but those who do feel strongly about it. He described it as a high-intensity issue that is slowly growing in public awareness, even if the numbers remain small.

A Public Still Divided On Digital Assets

The survey also captured a broader wariness toward crypto among ordinary Americans. Only 27% said they support or strongly support the US government taking steps to make crypto a mainstream financial asset.

A slightly larger share — 31% — said they oppose or strongly oppose such a move. More than half of respondents said they had never traded crypto and had no plans to do so.

Image: Pexels

Among the 19% who had actually traded crypto, 7% said a candidate’s stance on the issue would influence their vote. The poll also found that 45% of respondents considered crypto investing a risk not worth taking, even with the promise of high returns. Only 25% disagreed.

Senate Moving On Crypto Regulation This Week

Meanwhile, Congress is pushing ahead. The Senate Banking Committee is set to vote on whether to advance a long-awaited bill that would establish a regulatory framework for the crypto industry.

A version of the bill — known as the Clarity Act — already cleared the House in June. Reports indicate the White House has been involved in negotiations between crypto interests and banking lobbies to shape the final version.

Featured image from Unsplash, chart from TradingView

Criptos en tendencia

Preguntas relacionadas

QAccording to the poll, what percentage of voters would factor a candidate's position on crypto into their voting decision?

AAccording to the Politico survey, only 4% of respondents would factor a candidate's position on crypto into their voting decision.

QWhat issue topped the list of voter priorities that they want Congress to address, as revealed in the article?

AAffordable housing topped the list of issues voters want Congress to address, according to the survey.

QHow much money did crypto lobbies spend during the 2024 elections, and how does this compare to other industries according to the data cited?

ACrypto lobbies spent more than $130 million during the 2024 elections, which was more than any other industry.

QWhat percentage of survey respondents support the US government taking steps to make crypto a mainstream financial asset?

AOnly 27% of survey respondents said they support or strongly support the US government taking steps to make crypto a mainstream financial asset.

QWhat legislative action is the Senate Banking Committee set to take regarding crypto, as mentioned in the article?

AThe Senate Banking Committee is set to vote on whether to advance a long-awaited bill, known as the Clarity Act, which would establish a regulatory framework for the crypto industry.

Lecturas Relacionadas

Rubin Ultra Makes Major Cuts, Even Nvidia Can't Handle Memory Price Hikes?

NVIDIA's Rubin Ultra, the top-tier variant of the newly announced Rubin AI accelerators, has reportedly seen significant specification downgrades, according to an industry report from SemiAnalysis. Initially designed with four compute dies (4-die), the Rubin Ultra is now said to be reduced to a 2-die design. Key changes highlighted in the report include: * **No increase in peak theoretical compute performance**, remaining at 35 PFLOPs like the standard Rubin. * **Severe reduction in memory capacity** to 192GB using 8-Hi HBM stacks, which is less than the standard Rubin's 288GB using 12-Hi stacks. * **Negligible memory bandwidth improvement** of only 1 TB/s. * **Slightly higher chip-level power consumption**. * The **primary upgrade is a massive increase in scale-up interconnect capacity**, supporting connections for up to 576 GPUs via NVLink, compared to 72 for the standard Rubin. The report suggests the redesign is primarily a cost-optimization move driven by the sharp rise in HBM (High-Bandwidth Memory) prices. By reducing the expensive HBM content and shifting investment towards enhanced system-scale networking, NVIDIA aims to maintain the platform's value for large-scale AI training clusters while managing soaring material costs. The news reportedly triggered a sell-off in South Korean memory stocks, with SK Hynix and Samsung shares falling around 8%, as markets grew concerned that NVIDIA—a major HBM buyer—might be reducing its reliance on high-capacity memory, potentially capping future pricing power for memory makers.

Odaily星球日报Hace 11 min(s)

Rubin Ultra Makes Major Cuts, Even Nvidia Can't Handle Memory Price Hikes?

Odaily星球日报Hace 11 min(s)

Can Generative Models Finally Be Trained End-to-End? The Core Is a For Loop

This article introduces a novel training paradigm for generative models called Explorative Modeling (XM), which enables true end-to-end training. Traditionally, powerful generative models like autoregressive and diffusion models are not trained end-to-end. They are trained to predict a single small step but require iterative multi-step sampling for inference. This "exposure bias" leads to error accumulation and limits performance. The core challenge XM addresses is "mode blurring." In generative tasks, a single input (e.g., "generate a dog") corresponds to many valid outputs (multiple modes). Standard training objectives like reconstruction loss force the model to average these modes, producing unrealistic, blurry outputs. To avoid this, existing models break generation into many small, almost deterministic steps, sacrificing end-to-end training. XM tackles this by restructuring the training loop itself. Its key insight is to amplify "generative expressivity." For each training input, instead of generating one sample, the model generates K candidate outputs. Only the candidate closest to the real data is used for computing the loss and updating the model via backpropagation. This simple "best-of-K" mechanism is implemented as a short for-loop. By exploring multiple possibilities, the model learns to distribute its guesses across different modes rather than collapsing to their uninformative average. The paper demonstrates that "exploration" acts as a new, powerful scaling axis. Gains from XM increase with model size, data scale, and compute. Experiments show improvements in FID scores for image generation and significant efficiency gains, sometimes outperforming larger models without exploration. When pushed to the limit, XM enables fully single-step, end-to-end generative models. In robotics tasks, an "Explorative Policy" matched the performance of a 100-step Diffusion Policy with a single forward pass, drastically improving inference speed. While the best-of-K concept is not entirely new, the authors' contribution lies in formally understanding it as a direct method to boost generative expressivity without fragmenting the generation process. This work suggests that as models scale, enhancing exploration during training may become crucial for overcoming fundamental performance bottlenecks.

marsbitHace 1 hora(s)

Can Generative Models Finally Be Trained End-to-End? The Core Is a For Loop

marsbitHace 1 hora(s)

Trading

Spot

Artículos destacados

Cómo comprar 4

¡Bienvenido a HTX.com! Hemos hecho que comprar 4 (4) sea simple y conveniente. Sigue nuestra guía paso a paso para iniciar tu viaje de criptos.Paso 1: crea tu cuenta HTXUtiliza tu correo electrónico o número de teléfono para registrarte y obtener una cuenta gratuita en HTX. Experimenta un proceso de registro sin complicaciones y desbloquea todas las funciones.Obtener mi cuentaPaso 2: ve a Comprar cripto y elige tu método de pagoTarjeta de crédito/débito: usa tu Visa o Mastercard para comprar 4 (4) al instante.Saldo: utiliza fondos del saldo de tu cuenta HTX para tradear sin problemas.Terceros: hemos agregado métodos de pago populares como Google Pay y Apple Pay para mejorar la comodidad.P2P: tradear directamente con otros usuarios en HTX.Over-the-Counter (OTC): ofrecemos servicios personalizados y tipos de cambio competitivos para los traders.Paso 3: guarda tu 4 (4)Después de comprar tu 4 (4), guárdalo en tu cuenta HTX. Alternativamente, puedes enviarlo a otro lugar mediante transferencia blockchain o utilizarlo para tradear otras criptomonedas.Paso 4: tradear 4 (4)Tradear fácilmente con 4 (4) en HTX's mercado spot. Simplemente accede a tu cuenta, selecciona tu par de trading, ejecuta tus trades y monitorea en tiempo real. Ofrecemos una experiencia fácil de usar tanto para principiantes como para traders experimentados.

854 Vistas totalesPublicado en 2025.10.20Actualizado en 2026.06.02

Cómo comprar 4

Discusiones

Bienvenido a la comunidad de HTX. Aquí puedes mantenerte informado sobre los últimos desarrollos de la plataforma y acceder a análisis profesionales del mercado. A continuación se presentan las opiniones de los usuarios sobre el precio de 4 (4).

活动图片