Home Blog Page 694

Crypto Markets Slide as Fed Leaves Rates Unchanged

0

Bitcoin slips 5% as rising U.S. wholesale inflation and ongoing geopolitical tensions weigh on investor sentiment.

Crypto markets erased most of their weekly gains on Wednesday after the Bureau of Labor Statistics reported that U.S. wholesale prices rose sharply in February and the Federal Reserve left interest rates unchanged.

Bitcoin (BTC) is trading at around $71,300, down nearly 5% over the past 24 hours. ETH and SOL fell 6% to $2,190 and $90, respectively.

Meanwhile, Ripple (XRP) dropped by 5%, and BNB by 4%.

BTC Chart

The overall crypto market capitalization slipped 4% to $2.52 trillion, according to Coingecko.

PPI Report

February PPI rose 0.7% month-over-month, more than double the 0.3% economists had forecast. Core PPI (ex-food and energy) gained 0.5%, also above the 0.3% consensus. On an annualized basis, headline PPI hit 3.4%, the highest in a year.

Energy prices climbed 2.3% in February, rising in anticipation of a Middle East conflict, and the ongoing US-Israel war with Iran threatens to keep inflation elevated well into the year.

Fed Decision

The central bank held the federal funds rate target range at 3.5% to 3.75%, citing elevated inflation, solid economic growth, and elevated uncertainty over the economic outlook.

The statement specifically flagged that “the implications of developments in the Middle East for the U.S. economy are uncertain.”

Officials indicated they still expect to cut rates once in 2026.

Big Movers

Nearly all of the Top 100 digital assets posted losses over the last 24 hours.

Today’s top gainers are Kaspa (KAS) and Hyperliquid (HYPE).

ASTER and Zcash (ZEC) are the biggest losers, down around 10%.

Around 131,000 leveraged traders were liquidated for $420 million in the past 24 hours, according to CoinGlass. Bitcoin accounted for $136 million, while ETH made up $139 million.

Bitcoin exchange-traded funds (ETFs) recorded inflows of $199 million on Tuesday, marking a seventh straight day of gains.

How a Nonprofit Transforms Data with Cloudera and AI

0

When Brian Martin co-founded Rare Hope NFP, a nonprofit focused on giving the public access to hypotheses for rare disease treatment, the organization needed a way to fulfill its purpose despite lacking the millions of dollars and resources of big pharmaceutical companies.

“For any nonprofit to be able to do this type of thing is generally an unreasonable proposition,” Martin said in an interview at the Gartner Data & Analytics Summit in Orlando last week. He noted that the well-known nonprofit Every Cure, which seeks to use FDA-approved medicines to treat rare diseases, has raised about $76 million in funding, underscoring the significant capital needed for organizations with a similar mission.

However, with Martin already having experience with the hybrid data and AI vendor Cloudera, he felt the vendor might be able to help Rare Hope execute on its mission without the high costs that big pharmaceutical companies incur when releasing such hypotheses on rare diseases to the public. Martin did not disclose the amount Rare Hopes spends on using the Cloudera platform.

Related:Nvidia Aims to Bolster HPC With Acquisition

“It’s an opportunity to do something and to put that type of content in patients’ and doctors’ hands that we couldn’t ever do without millions and millions of dollars,” Martin said.

The Cloudera Effect

One way Cloudera was instrumental in helping Washington, D.C.-based Rare Hope fulfill its mission is that the nonprofit used the data and AI platform to gain insight from diverse types of data.

With the platform, Rare Hope was able to extract knowledge from research papers, medical images, and other documentation, identifying correlations and patterns that would have taken years to discover, Martin said. 

Using Cloudera, Rare Hope created data pipelines that processed unstructured data, such as scientific papers, and transformed it into structured data. Using a tool in Cloudera called PySpark (for building data engineering and machine learning pipelines), Rare Hopes can extract knowledge from scientific data, transform that information from unstructured to structured, and then use the transformed data in tools and platforms outside Cloudera or run analysis and find correlations between concepts such as a disease and a drug. Rare Hopes brings the hypothesis back into the Cloudera platform and continues to conduct further studies. In that case, Rare Hopes uses a large language model (LLM) to generate an analysis or hypothesis that the organization will present to the public.

“That data information knowledge, insight, wisdom and impact chain, that’s a pretty well-established hierarchy,” Martin said. “We use Cloudera to automate that base part, that human axis, that wisdom link, to deliver the impact.”

Related:In AI Play, IBM Acquires Data Streaming Provider Confluent

Cloudera and Models

As for generative AI models, Rare Hopes is not committed to any specific model.

For its part, Cloudera does not require its customers to use a specific model. However, the vendor has integrated Nvidia NIM microservices into its infrastructure, enabling it to deploy and manage LLMs. Nvidia NIM microservices is a suite of prebuilt, packaged containers that include an AI model, inference engines, standard APIs, and other tools enterprises need to deploy AI models.

“Cloudera doesn’t make a model and sell it to you,” said David Dichmann, vice president of product marketing and evangelism at Cloudera. “Choose your model, choose your model well, and we recognize you want freedom of choice. Use the right model for the right use case. Do not try to fit everything into one kind of model.”

Rare Hope also recognizes that because different models work better for different tasks and applications, it is important to have access to a range of models. Model choice in Cloudera is an added benefit to the nonprofit, Martin said. The nonprofit does not have to build the infrastructure to access the models, provide them with data, and then bring the results back into the Cloudera platform. 

“The Nvidia NIM infrastructure gives us the ability to run some of that stuff directly natively,” Martin said.

While Cloudera already helps Rare Hope save a significant amount of time by helping deliver different hypotheses on various diseases to the public by publishing its research and white paper findings, the nonprofit is now looking at how to monitor changes to the data when a new research paper is published.

“How do we handle different change events within those pipelines to know what the different downstream effects are?” Martin said. “Those types of things save an immense amount of time because instead of rerunning the entire process over again every time there’s new data, we can run incremental processes to analyze the changes and the differences.”

Your Node Vs. The Digital Wilderness

0

Over 50 years after the first inter-networked message, peer-to-peer networks remain rare beasts in the jungle of the Internet. Bitcoin’s ability to provide an open monetary system depends on its peer-to-peer architecture, and across its attack surface it is the networking layer–how peers discover and connect to each other–that is the most vulnerable. There are two main places problems can occur: Bitcoin’s own peering protocol, and the Internet protocols that Bitcoin’s protocol depends on. In this light Core has a dual mandate to prevent Denial of Service (DOS) vectors that can be abused between nodes, and enable nodes to communicate safely in the wider adversarial environment that is the Internet.

P2P

“Governments are good at cutting off the heads of a centrally controlled networks like Napster, but pure P2P networks like Gnutella and Tor seem to be holding their own.”

– Satoshi, Nov 7, 2008 [1]

The P2P protocol encompasses how nodes exchange messages about transactions, blocks, and other peers. This exchange of information is required before any transaction or consensus validation can occur, and is therefore a primary concern.

There have been several bugs in this area over the years. In 2017, for example, a malicious SOCKS server vulnerability was patched and disclosed [2]. This “buffer overflow” vulnerability could theoretically lead to many different attacks: crash the node, inject malicious payloads, or modify data on the node. In 2020, a high severity vulnerability was reported and patched where a remote peer could get addresses banned, growing the banlist quadratically, and is therefore a DOS on the node [3]. The vulnerability was not disclosed until 2024. This bug is correctly marked as “high severity” since the attack is simple to execute, its effect results in a loss of function for the node, and it has few preconditions required to make it work. These are the kind of bugs that keep Core developers up at night, and why it is highly encouraged to update your node to a still maintained version (older versions of Core are not actively maintained/updated).

This distributed network we call Bitcoin remains relatively small: the clearnet node count hovers around 20k nodes, and even assuming a generous 100k TOR nodes, we still have a small, easily surveillable network. Recently, Daniela Brozzoni and naiyoma showed [4] that if a node runs with both clearnet and Tor, it is trivial to map a node’s IPv4 and Tor addresses. It is very likely that this is already done by intelligence agencies and chainalysis companies. It then becomes easy to notice which nodes publish which transactions first, deducing the transaction’s original IP, and therefore location. While this is not a bug per se, since the node does not crash or misbehave, it can be considered a vulnerability, since it presents a method for tying a given IP address to a transaction. 

How to prevent this effectively is currently an open question.

The Badlands of the Web

“We build our computers like we build our cities. Over time, without a plan, on top of ruins.” – Ellen Ullman [5]

Bitcoin runs on the Internet, and its ability to remain a distributed and decentralized system depends on the properties of the Internet itself. Unfortunately, the Internet’s architecture as we know it today remains woefully insecure, with known attacks employed routinely. Most of these attacks are conducted undetected until damage has been done, and this is not to mention the surveillance regimes that permeate the Internet today.

The most well known and practical vector of attack to be concerned with is called an eclipse attack, where a victim node’s peers are all malicious, and feed a specific view of the chain or network to the victim node. This class of attack is fundamental in distributed systems, if you control a node’s peers, you control its awareness of the network. Ethan Heilman and collaborators presented one of the first practical eclipse attacks on Bitcoin at USENIX 2015 [6], and in 2018, the Erebus attack paper described a “stealthy” eclipse attack via a malicious Autonomous System (AS) [7]. 

These attacks largely leverage weaknesses in the way the Internet’s networks communicate amongst themselves, such as ASs routing topology or via a protocol called the Border Gateway Protocol (BGP). While there are ongoing initiatives to secure the BGP protocol–BGPsec, RPKI–they both have limitations that are well understood, and leave the Internet’s stewards pining for stronger solutions. Until then, the Internet will remain the wild west. 

A recent analysis by cedarctic at Chaincode Labs found that Bitcoin nodes are homed within just 4551 ASs, a fairly small subsection of the constituent networks that make up the Internet. They describe a set of attacks that can lead to eclipse attacks by compromising the upstream AS that nodes operate in [8]. The small distribution of nodes amongst ASs and the specific relationships among these ASs creates a unique attack vector. While there are remediations, it is unclear whether this attack vector was well understood beforehand by bitcoiners or their adversaries.

Any attack that relies on compromising one or several ASs requires resources, coordination, and skills to achieve. Although no successful attack of this type has been reported on a Bitcoin node, such attacks have been successfully mounted against miners [9], wallets [10], swap platforms [11], and bridges [12]. While we’re not going to fix the Internet, we can arm nodes with the tools to operate in this adversarial environment.

Network Armory

Below are some features and functionalities that Bitcoin Core has developed or integrated support for in order to arm users against network level attacks:

TOR (the Onion Router) is the oldest privacy-focused overlay network incorporated in Bitcoin Core. It creates hops between a random network of peers to obfuscate traffic. 

v2transport [13] encrypts connections between peers, hiding the traffic from snoops and censors. The aim is to thwart passive network observers from snooping on the contents of your communications with other nodes.

I2P (the Invisible Internet Project [14]) is an optional feature of Core which enables an additional, private, encrypted layer to one’s connections. It is a Tor-like anonymity network which relies on peers to obfuscate traffic between clients and servers.

ASmap [15] is another optional feature of Core which implements a mitigation for the Erebus attack that the authors already outlined in the paper, and applies to all AS-based attacks. By making Bitcoin’s peering mechanism aware of the AS that peers are coming from to ensure diversity amongst peers, an eclipse becomes exponentially more difficult, as an attacker would have to compromise many ASs, which is highly unlikely and almost impossible without being detected. Bitcoin Core supports taking a map of IP networks to their AS (an AS-map) since Core 20.0, and the Kartograf project enables any user to generate such an ASmap easily.

Given that the Internet is likely to continue being vulnerable to many attacks, one of the things we can do is observe our peers’ behavior to attempt to detect malicious behavior. This is the impetus behind the peer-observer project by 0xb10c [16]. It provides a full eBPF tracepoint-based logging system (a way to observe the tiniest actions in a program running on an operating system) to observe a node’s activity, including peer behavior. It also gives you everything you need to build your own logging systems.

Bitcoin Must Be Robust

Securing the ability to connect to peers and exchange messages is a keystone component of what makes Bitcoin tick.

Bitcoin operates in a multi-dimensional adversarial environment, in which many of the threats are created by limitations of the internet’s architecture itself. If Bitcoin is to survive and thrive, its developers and users must learn to navigate these strange waters.

The price of open networks is eternal vigilance.

Get your copy of The Core Issue today!

Don’t miss your chance to own The Core Issue — featuring articles written by many Core Developers explaining the projects they work on themselves!

This piece is the Letter from the Editor featured in the latest Print edition of Bitcoin Magazine, The Core Issue. We’re sharing it here as an early look at the ideas explored throughout the full issue.

[0] https://web.mit.edu/gtmarx/www/connect.html

[1] https://satoshi.nakamotoinstitute.org/emails/cryptography/4/

[2] https://bitcoincore.org/en/2019/11/08/CVE-2017-18350/

[3] https://bitcoincore.org/en/2024/07/03/disclose-unbounded-banlist/

[4] https://delvingbitcoin.org/t/fingerprinting-nodes-via-addr-requests/1786/

[5] https://en.wikiquote.org/wiki/Ellen_Ullman

[6] https://www.usenix.org/system/files/conference/usenixsecurity15/sec15-paper-heilman.pdf

[7] https://ihchoi12.github.io/assets/tran2020stealthier.pdf

[8] https://delvingbitcoin.org/t/eclipsing-bitcoin-nodes-with-bgp-interception-attacks/1965

[9] https://www.theregister.com/2014/08/07/bgp_bitcoin_mining_heist/

[10] https://www.theverge.com/2018/4/24/17275982/myetherwallet-hack-bgp-dns-hijacking-stolen-ethereum

[11] https://medium.com/s2wblog/post-mortem-of-klayswap-incident-through-bgp-hijacking-en-3ed7e33de600

[12] www.coinbase.com/blog/celer-bridge-incident-analysis

[13] https://bitcoinops.org/en/topics/v2-p2p-transport/

[14] https://geti2p.net/en/

[15] https://asmap.org

[16] https://peer.observer

[13] https://github.com/asmap/kartograf

SEC approves tokenized securities to trade alongside traditional stocks

0

The US Securities and Exchange Commission has approved a Nasdaq rule change that enables the trading of securities in tokenized form, marking a major step in integrating blockchain-based assets into traditional market infrastructure.

The approval allows eligible securities, including stocks from the Russell 1000 and ETFs tracking major indices such as the S&P 500, to be represented and traded as tokenized assets on Nasdaq. These tokenized versions will trade on the same order book as traditional shares, with identical execution priority, pricing, and market data treatment.

Under the framework, tokenized securities must remain fully fungible with their traditional counterparts, sharing the same ticker, CUSIP, and shareholder rights. Investors in tokenized shares will retain standard protections, including voting rights, dividend access, and claims on residual assets, ensuring consistency with existing securities laws.

The system operates through a pilot program led by the Depository Trust Company, which will handle post-trade settlement and tokenization processes. Market participants can opt to settle trades in tokenized form by selecting a designated instruction at order entry, while trades that cannot meet tokenization requirements default to traditional settlement.

Nasdaq’s core trading infrastructure remains unchanged. All order types, routing strategies, and trading sessions will support tokenized securities, and surveillance systems will monitor both tokenized and traditional shares using the same data. Settlement will continue on a T+1 basis, aligning tokenized trading with current market standards.

The SEC said the proposal meets regulatory requirements designed to protect investors and maintain fair and orderly markets, addressing concerns around market integrity, shareholder rights, and price consistency between tokenized and traditional securities.

The approval reflects growing momentum around tokenization within regulated financial markets, as exchanges and infrastructure providers explore blockchain-based representations of traditional assets without departing from existing regulatory frameworks.

Disclosure: This article was edited by Estefano Gomez. For more information on how we create and review content, see our Editorial Policy.

Polymarket snaps up Brahma as prediction market competition heats up

0

Prediction markets platform Polymarket announced Wednesday the acquisition of Brahma, a financial infrastructure company that built real-time execution and settlement systems for high-volume digital asset and fintech transactions.

“[Brahma has] quickly become an industry leader in building and developing programmable systems across blockchain systems, trading execution, and payments,” said Polymarket in a press release sent via email.

“Building reliable infrastructure across blockchain networks and traditional financial rails is hard — there are no shortcuts,” said Shayne Coplan, Polymarket CEO and founder.

“The Brahma team has shown they can design, operate, and scale complex products for sophisticated users,” he added. “As Polymarket grows, we’re intentionally adding teams that have already solved difficult problems and can execute at a very high level.”

A Polymarket spokesperson told CoinDesk the terms of the agreement are not being disclosed.

Brahma also released a statement Wednesday saying Polymarket acquired its DeFi infrastructure to bring its team and technology into the prediction market company as it seeks to scale its infrastructure suite.

“With this acquisition, our team and our technology live on, to help scale Polymarket and its ecosystem,” the Brahma team said in a post on X. “Our mission to build at the core of crypto continues.”

The acquisition brings Brahma’s team and technology into Polymarket, where they will focus on expanding the platform’s infrastructure and product suite. It also appears aimed at improving

Earlier this month, reports emerged that Polymarket was discussing potential fundraising rounds that could double 2025 valuation to about $20 billion. The discussions remain early and may not lead to finalized investments.

Prediction markets allow users to trade contracts tied to real-world events, including sports, politics and elections. Traders buy and sell contracts based on expected outcomes. The sector has grown significantly, with companies including Coinbase and Robinhood entering the space.

Brahma said it has processed more than $1 billion in transaction volume and over $100 million in total value locked. The company also said that all of its products, including Brahma Accounts, Agents and Swype.fun, will be phased out within 30 days. Users have been instructed to migrate funds and positions via its website and community channels.

BTC adds to losses following Fed pause, Powell press conference

0

Bitcoin slipped below $71,000 on Wednesday as Federal Reserve Chair Jerome Powell flagged rising oil prices amid the war in Iran as a new inflation risk.

The Fed held interest rates steady as expected, but during his post-meeting press conference, Powell acknowledged that the recent surge in energy prices is already feeding into the central bank’s outlook.

“The oil shock for sure shows up” in higher inflation projections, he said, while cautioning that “nobody knows” yet how persistent the impact will be.

Policymakers raised their 2026 inflation forecast to 2.7% from 2.4%, underscoring concerns that price pressures could remain elevated longer than anticipated.

Despite that, Powell dismissed comparisons to a 1970s-style stagflation, even as the central bank faces growing tension between slowing growth and sticky inflation.

“That’s not the case right now,” he said, noting that unemployment remains near long-run norms while inflation is only modestly above target. “I would reserve the term stagflation for a much more serious set of circumstances.”

“What we have is some tension between the goals, and we’re trying to manage our way through it,” he added.

Cautious markets

Already under pressure prior to the Fed news on poor February inflation data and no sign the war in Iran is letting up, markets fell further late in the session.

Bitcoin (BTC) price on Wednesday after FOMC (CoinDesk)

Bitcoin late Wednesday afternoon had pulled all the way back to $70,900, down almost 5% over the past 24 hours. Ether (ETH) was sporting a 6.5% decline.

The S&P 500 and Nasdaq closed at the day’s lows, down 1.4% and 1.5%, respectively. Gold extended its decline below $4,850 an ounce, now 3.1% lower on the day at its weakest price in more than a month.

Digital asset-related stocks remained sharply lower, following crypto prices. Strategy (MSTR), the largest corporate BTC holder, and Bitmine (BMNR), the leading Ethereum treasury firm, were 5%-6% lower. Investment firm Galaxy (GLXY) declined almost 7%, while crypto exchange Gemini (GEMI) tumbled 15% to about its lowest level since it went public last year.

SEC Approves Nasdaq Rule To Trade Tokenized Securities, Paving Way For Blockchain Integration

0

The U.S. Securities and Exchange Commission (SEC) has approved a Nasdaq rule change that allows certain securities to be traded in tokenized form, a move that integrates blockchain technology into traditional stock market infrastructure.

The approval, issued Wednesday, is part of a broader effort to explore digital representations of regulated assets while maintaining investor protections and market stability.

Under the new framework, eligible securities — including stocks in the Russell 1000 Index and exchange-traded funds (ETFs) tracking major benchmarks such as the S&P 500  — can be represented and traded as tokenized assets on Nasdaq. 

These tokenized versions are fully interchangeable with traditional shares, sharing the same ticker symbols, CUSIP numbers, and shareholder rights. 

Investors holding tokenized securities retain standard protections, including voting rights, dividend access, and claims on residual assets, ensuring consistency with existing securities laws.

The system operates as a pilot program through the Depository Trust Company (DTC), which handles post-trade settlement and tokenization. Market participants can choose to settle trades in tokenized form via a designated instruction at order entry. 

Earlier this month, Nasdaq partnered with Payward, Kraken’s parent company, to enable the trading of tokenized stocks between traditional markets and blockchain networks using Payward’s xStocks platform. 

A nod to Bitcoin

This move won’t directly affect Bitcoin’s price or network, but it’s a nod to a growing regulatory comfort with blockchain-based assets, which could indirectly boost institutional interest in digital currencies. 

By integrating tokenized securities into mainstream markets, it may pave the way for broader adoption of crypto infrastructure and financial products that interact with Bitcoin.

If tokenization requirements are not met, trades default to traditional settlement. Nasdaq confirmed that its core trading infrastructure — including order types, routing strategies, trading sessions, and market data feeds — remains unchanged, ensuring tokenized securities are fully integrated into existing systems. 

Settlement continues on a T+1 basis, aligning tokenized trading with current standards.

Nasdaq emphasized that a tokenized share and its traditional counterpart will trade on the same order book, with identical execution priority and market data treatment. Surveillance systems will monitor both forms of the security using the same underlying data, accessible to both Nasdaq and FINRA. 

The exchange will issue alerts identifying which securities are eligible for tokenized trading and will notify members at least 30 days before launching any tokenized instruments.

The SEC, in its approval, said the proposal meets regulatory requirements designed to protect investors and maintain fair and orderly markets. 

The Commission specifically cited Section 6(b)(5) of the Securities Exchange Act, which requires exchange rules to prevent fraud, promote equitable trading principles, and remove impediments to a free and open market.

According to the document, tokenized securities must mirror traditional shares in rights and privileges, limiting the risk of divergence in value or investor protections.

The DTC pilot provides a controlled framework for blockchain-based trading without introducing new market risks.

The approval reflects growing momentum toward tokenization in regulated markets. Exchanges and infrastructure providers are increasingly exploring blockchain representations of conventional assets while remaining within the bounds of existing law. 

Nasdaq has indicated that alternative tokenization methods are under discussion and would require separate filings with the SEC.

Fairshake’s $10 million Illinois misfire marks first big hitch in crypto political surge

0

Losing a race is unusual for the crypto industry’s political action committee, Fairshake, which has recorded a dominant record in the past two congressional elections. But the Illinois primaries this week saw its biggest-ever setback, likely to conclude with a new member of the Senate next year being somebody the PAC spent more than $10 million trying to defeat.

Illinois Lt. Gov. Juliana Stratton won her Democratic primary, and her state’s Democrat lean means she’s likely to be its next senator after the November general election. One of Fairshake’s affiliates had devoted millions to purchase opposition advertising in that race and to support two of her opponents — representing more than 5% of the funds it’s said it had on-hand this year to devote to the congressional contests.

Not only did that money fail to win the outcome the group aimed for, but Stratton may eventually be a member of the 100-member Senate in which a single lawmaker can have a very potent influence, and she’ll be well aware of the industry’s efforts to oppose her. Crypto advocacy group Stand With Crypto, which evaluates politicians and political candidates, graded Stratton with an “F” on digital assets issues, even though she doesn’t have a significant personal record on crypto policy apart from the state’s industry-opposed regulatory regime signed by her boss last year.

“If you support pro-crypto policies, we will show up big,” Fairshake spokesman Geoff Vetter said in a statement. “If you oppose crypto and American innovation, we will show up big. That message is now clear at both the state level and federal level.”

The industry had mixed results in Illinois, supporting three pro-crypto candidates who won their primaries, and one other who didn’t. A person familiar with the PAC’s strategies said that it saw the loss as a one-off and that it was unlikely that other candidates it opposes down the road will have similar campaign resources they can tap.

Starting with the 2024 elections, Fairshake — primarily backed by Coinbase, a16z and Ripple — has targeted multiple Senate races in which it spent more than $10 million trying to influence the outcome. In its biggest spend in the last cycle, it devoted a towering $40 million to oppose former Senator Sherrod Brown, the Ohio Democrat who as ex-chairman of the Senate Banking Committee stood in the way of crypto legislation. (Brown is trying for a comeback this year, though Fairshake hasn’t yet announced its plan for Brown’s challenge of Senator Jon Husted.)

La Shawn Ford, who won his Illinois 7th District congressional primary to potentially join the House of Representatives next year, was another of Fairshake’s targets in a race in which the PAC spent almost $2.5 million. He accused the PAC of pumping out misleading and defamatory accusations in its ads. While he may represent a future political opponent for the sector, Fairshake celebrated wins for Donna Miller, Melissa Bean and incumbent Representative Nikki Budzinski in other House races in that state.

In 2024, Fairshake and its affiliates supported 53 candidates who ended up in Congress, losing in just five races, though many of the favored candidates were clear frontrunners. The super PAC was widely seen as establishing an industry model for a campaign-finance strategy in which more than $100 million devoted to congressional races (often primaries in districts in which one party has a dominant position) can influence the outcomes for dozens of seats. Fairshake purposefully didn’t craft its political ads to reference its own main aim to foster crypto, but it instead made ads based on whatever was the biggest political vulnerability it saw in opponents or positive points it noted in allies.

Fairshake has been very public about the $193 million war chest it started the campaign season with. The funds aren’t just an election tool. Crypto lobbyists and insiders have acknowledged that it also acts as a caution to sitting lawmakers weighing crypto legislation now moving through Congress. Members know that their decisions on crypto bills could bring either millions of dollars in support or opposition in their campaigns, often far exceeding the amount of money that congressional campaigns can raise from direct donors.

Fairshake doesn’t expect to win everything, but it does expect to win most of the races they get involved with, the person said, and it’ll make the point that opposing crypto innovation will be expensive for politicians.

Some candidates that Fairshake opposed in the past did go on to support crypto initiatives, but Stratton criticized the “MAGA-backed crypto bros” that opposed her. Her crypto intentions in the Senate, if she gets there, remain to be seen.

Read More: Crypto campaign PAC Fairshake marks first wins in 2026 U.S. congressional primaries

The Best NYC Matchmakers of 2026

0

New York City has the largest population of singles and the highest percentage of wealthy individuals in the country. High-earning professionals here face consistent challenges: limited time, privacy concerns, and a dating pool that rarely delivers quality matches. This drives many successful individuals to turn to matchmakers who can provide carefully selected introductions with full privacy.

Between October 2025 and January 2026, a research team conducted an in-depth study of professional matchmaking services operating in the New York City metropolitan area. The study analyzed 10 services using a weighted scoring system designed to identify the matchmakers who consistently deliver results for successful professionals seeking serious, long-term relationships.

7 Comparison Factors:

  • Reputation & Track Record (20%)
  • Personalized Screening & Vetting (15%)
  • Matchmaker Expertise & Attention (20%)
  • Confidentiality & Privacy Standards (10%)
  • Match Quality vs. Quantity (15%)
  • Compatibility Methodology (10%)

The firms were rank-ordered based on this scoring system, with particular weight given to reputation, verifiable credentials, and the level of personal attention clients receive.

The Best NYC Matchmakers of 2026 

In the table below, the top-performing NYC matchmakers are broken down across seven key factors that distinguish exceptional service from standard offerings.

Rank Matchmaking Service Reputation & Track Record Screening & Vetting Matchmaker Expertise Privacy Standards Quality vs. Quantity Compatibility Method Post-Match Support
1 Amy Laurent Elite Matchmaking 20+ yrs; 88-90% in 3 mos; Oprah-endorsed; Featured on The Today Show Extensive in-person interviews; exclusive network Amy personally handles every client Strict confidentiality; discreet boutique model Selective introductions; quality-focused Research-based; personality + values alignment Ongoing coaching & date feedback
2 Kelleher International 35+ yrs; 89% success rate, no timeline given; Forbes featured Multi-step vetting Team-based; founders available for VIP NDA protocols; secure systems Database access + active recruitment Proprietary assessment tools Coaching + KI Social Club events
3 VIDA Select 16 yrs; 82% in 90 days; CNN, Forbes, NYT Profile verification; active recruitment Team of matchmakers; no single lead Standard confidentiality agreements Efficiency-focused; 5-7 quality dates Data-driven matching algorithm Continuous refinement; date logistics
4 Agape Match 15 yrs; 83% in 6 months 360° assessment; personality testing Maria Avgitidis (founder) leads process Discretion emphasized; boutique firm Selective NYC network; quality-focused Psychology-based compatibility Group coaching programs available
5 Tawkify 13 yrs; 80% success rate; 4.6/5 Trustpilot (7,000+ reviews) Video screening; criminal background checks Rotating team matchmakers; no personal founder involvement Standard online privacy policies 6.5x more likely than apps; curated matches Values-based Automated feedback forms; optional paid coaching add-ons
6 New York City Matchmaker 20+ yrs; rate undisclosed; minimal info Initial consultation; mutual evaluation Team-based; no personal founder involvement 100% confidential introduction; selective information sharing Regional database approach Active outreach and networking Post-match support for VIP only
7 Met By Nick ~5 yrs; up to 90% success rate Free membership raises vetting questions Nick personally involved Standard practices Volume unclear; free network model 30-min compatibility profiling Regular post-date feedback sessions

Amy Laurent Elite Matchmaking stands at the pinnacle of professional matchmaking in New York City, distinguished by an Oprah Winfrey endorsement that no other NYC matchmaker has earned. With over two decades of experience (founded in 2005), the firm has built a reputation for refined, deeply personal connections for accomplished professionals. Amy Laurent has been featured on NBC’s The Today Show, Good Morning America, CBS, Fox News, and in The New York Times. Her bestselling book, Eight Weeks to Everlasting, established her as a thought leader in modern relationships.

The boutique service model features Amy personally conducting every consultation, candidate search, and introduction. The personalized screening process includes in-depth in-person interviews and psychological compatibility testing. The network consists exclusively of relationship-minded women who are not on dating apps. The firm maintains an impressive 88-90% success rate in locating serious relationships for clients within the first three months. The firm serves high-net-worth professionals across New York, Miami, Los Angeles, and other elite markets nationwide.

Basic Info

  • Location: NYC, LA, Miami (+ nationwide)
  • Year Founded: 2005
  • Average Review Score: 4.8/5.0 (based on client testimonials)
  • Services Offered: Elite matchmaking, relationship coaching, date concierge

Summary of Online Reviews

Clients praise Amy as “genuine and truly invested” with one private equity partner noting she “challenged me to be ready for the relationship I wanted”; a tech founder emphasized “other matchmakers were pushy and impersonal—Amy actually listened and delivered”; third-party analysis notes Amy “seems to know what she’s doing…something you frankly can’t say about many of her competitors” with minimal negative reviews despite 20+ years in business.

2. Kelleher International, for Global Reach

Kelleher International operates offices spanning San Francisco, Los Angeles, New York City, Miami, and London. Founded by Jill Kelleher and now co-led by her daughter Amber Kelleher-Andrews, the firm employs a team-based approach with founders personally available for select VIP-tier clients. Media features in Forbes and The European have solidified its reputation among high-net-worth individuals seeking international connections. The multi-step screening process is backed by proprietary assessment tools and a large international database.

Basic Info

  • Location: Multi-city US + international
  • Year Founded: 1989
  • Average Review Score: 4.5/5.0 (based on client testimonials)
  • Services Offered: Elite matchmaking, international network access, VIP events, relationship coaching

Summary of Online Reviews

Clients describe the team as feeling “like sisters across the country helping out their brother” with “warm and gracious staff”; a venture capitalist called it the “best decision I ever made”; some note the service can feel “more corporate” due to franchise structure and team-based handling rather than direct founder involvement throughout the process.

3. VIDA Select, for Data-Driven Efficiency

VIDA Select brings 16 years of matchmaking experience with a data-driven approach that has facilitated over 11,000 relationships. The firm reports an 82% success rate within 90 days and maintains a 4.1-star rating from 424 Trustpilot reviews. The service operates with a team of matchmakers employing profile verification and active recruitment. VIDA Select emphasizes 5-7 carefully screened dates, handling all logistics to simplify the client experience. Priced lower than traditional boutique services, VIDA Select appeals to professionals seeking organized efficiency with clear timelines.

Basic Info

  • Location: Nationwide
  • Year Founded: 2009
  • Average Review Score: 4.1/5.0 (424 Trustpilot reviews)
  • Services Offered: Data-driven matchmaking, date logistics, continuous match refinement

Summary of Online Reviews

Trustpilot reviewers (4.1 stars, 424 reviews) praise the “effortless” process with one noting “all I had to do was show up to dates”; one client “met someone special in less than a month—on my second date”; some note a “slow start” and the service working better for clients “over 30” as younger demographics face more app-culture flakiness.

4. Agape Match, for Award-Winning Methodology

Agape Match has earned recognition as TimeOut’s Best Matchmaker and honors at the US Dating Awards. Led by Maria Avgitidis, a Certified Matchmaker, the firm uses a distinctive 360° approach based on psychology-driven compatibility testing. Featured in The New York Times, Financial Times, and Harper’s Bazaar, Agape Match maintains 4.8-5.0 star ratings across third-party review platforms. The 360° process includes in-depth consultations, personality testing, and access to a selective NYC network of relationship-minded singles.

Basic Info

  • Location: NYC only
  • Year Founded: 2010
  • Average Review Score: 4.8/5.0 (third-party platforms)
  • Services Offered: 360° matchmaking, personality testing, group coaching, Dating Refresh service

Summary of Online Reviews

Clients call Maria an “amazing matchmaker” providing “true five-star service” who can “calmly and confidently guide” clients; third-party platforms show 4.8-5.0 star ratings; clients appreciate her “no-nonsense yet compassionate” approach helping them “date smarter”; some mention additional coaching programs are valuable but come at extra cost beyond core fees.

5. Tawkify, for Tech-Enabled Mass Market Matching

Tawkify operates as a tech-enabled platform with a 13-year track record and claims an 80% success rate within 6-12 matches. The platform operates nationwide with an online-first model supported by a database of over 1 million members. With a 4.6/5 Trustpilot score from 7,000+ reviews and lower price points than traditional boutique services, Tawkify targets budget-conscious professionals. The hybrid model relies on a technology platform with rotating teams of matchmakers rather than a single dedicated expert.

Basic Info

  • Location: Nationwide (online platform)
  • Year Founded: 2012
  • Average Review Score: 4.6/5.0 (7,000+ Trustpilot reviews)
  • Services Offered: Online matchmaking, video screening, automated date planning, optional coaching

Summary of Online Reviews

Trustpilot shows a 4.6/5 rating from 7,000+ reviews with clients noting the process was “effortless” and one stating they “met someone special in less than a month—on my second date”; some feedback on Sitejabber (2.2 stars) and BBB indicates concerns about match quality and the volume-based online model lacking the personal attention and in-person vetting found in boutique services.

6. New York City Matchmaker, for Regional Service

Established in 2004, New York City Matchmaker has operated for over 20 years as a regional matchmaking service led by Alexandra Freeman. The firm positions itself as a “bespoke” service where each matchmaker works with only a handful of clients at a time. The company maintains both a free “Passive Member” database and a paid VIP membership tier. The process includes initial consultations, video criteria calls, and custom proposals before building comprehensive client profiles.

Basic Info

  • Location: NYC
  • Year Founded: 2004
  • Average Review Score: Not available
  • Services Offered: Bespoke matchmaking, VIP membership, free passive membership, profile marketing

Summary of Online Reviews

Public reviews are sparse, and the firm’s website does not feature detailed client testimonials, success stories, or case studies; without third-party validation, transparent success data, or clear differentiation, clients seeking confidence may prefer services with more robust social proof and documented outcomes.

7. Met By Nick, for Free-to-Join Model

Met By Nick operates on a relatively new model (approximately 5 years in business) built around free-to-join network membership. Nick personally conducts 30-minute compatibility profiling sessions, positioning the service as a budget-friendly alternative to premium matchmaking. The free-to-join model raises questions about screening rigor and network exclusivity.

Basic Info

  • Location: New York (multi-city)
  • Year Founded: ~2020
  • Average Review Score: 1.0/5.0 (1 Yelp review)
  • Services Offered: Free network membership, 30-minute compatibility profiling, budget-friendly matchmaking

Summary of Online Reviews

Client feedback is severely limited, with only one available Yelp review (1 star) noting Nick is “a very nice person” but expressing disappointment with match quality; without substantial third-party reviews, proven results, or rigorous screening documentation, prospective clients seeking a highly curated, exclusive network will likely find better alignment with premium boutique services.

The Top NYC Matchmakers by Specialty

These firms have the strongest track records with public success rates, extensive media coverage, and verified client outcomes:

  1. Amy Laurent Elite Matchmaking
  2. VIDA Select
  3. Kelleher International
  4. Agape Match
  5. Tawkify

The Top NYC Matchmakers for Personalized, Founder-Led Service

These matchmakers offer direct involvement from the founder or lead matchmaker, ensuring the highest level of personal attention and customization:

  1. Agape Match
  2. Amy Laurent Elite Matchmaking
  3. Met By Nick
  4. Kelleher International
  5. Tawkify

The Top NYC Matchmakers for Quality Over Quantity

These firms emphasize curated, selective matching over high-volume approaches, with rigorous screening and compatibility-focused methods:

  1. Agape Match
  2. Amy Laurent Elite Matchmaking
  3. Kelleher International
  4. VIDA Select
  5. Tawkify

Choosing the Right NYC Matchmaker

Choosing the right matchmaker in New York City requires evaluating what matters most across seven key factors: reputation, screening process, matchmaker expertise, privacy standards, quality focus, compatibility approach, and post-match support.

Amy Laurent Elite Matchmaking consistently ranks #1 across multiple categories. With an 88-90% success rate within three months, the Oprah endorsement, and Amy’s personal involvement in every client relationship, the service delivers boutique attention with proven results. The exclusive network of relationship-minded women who aren’t on dating apps, combined with two decades of matchmaking expertise, offers a level of quality and discretion that stands apart from team-based or volume-focused services.

Schedule Your Private Consultation with Amy Laurent Today

Sources







Kalshi CEO Fires Back against Arizona Criminal Charges as ‘Total Overstep‘

0

The prediction markets co-founder said that the company would “abide by court decisions“ but signaled that the charges were based partly on political bias and media attention.

Tarek Mansour, co-founder and CEO of prediction markets platform Kalshi, has pushed back against criminal charges filed by Arizona authorities this week, claiming that they were a “total overstep” and “not about gambling.”

On Tuesday, Arizona Attorney General Kris Mayes announced charges against the companies behind Kalshi, alleging that the company operated an “illegal gambling business in Arizona without a license” and offered illegal election wagering. Mansour said in a Wednesday Bloomberg interview that Mayes was attempting to “subvert the judicial process” by filing charges without a court decision in Kalshi’s own lawsuit against Arizona authorities last week. 

“We see this as a total overstep and we look forward to fighting it in court,” said Mansour.