Crypto World
What is a multisig wallet? How crypto’s biggest treasuries get secured, and robbed
Multisignature wallets guard most of the serious money in crypto: DAO treasuries, exchange cold storage, protocol funds, and the savings of the security-conscious. They are also at the center of the industry’s biggest heists, from Bybit’s $1.5 billion to this year’s UXLINK breach, because attackers stopped picking locks and started fooling the people holding the keys. This guide explains how multisig actually works, the M-of-N design choices, how the famous multisig hacks really happened, and how to run one without becoming a case study.
Summary
- Multisig wallets protect crypto funds by requiring multiple approvals, reducing the risk of a single compromised key.
- Major breaches such as Bybit and Ronin exposed human error and interface attacks rather than weaknesses in multisig technology itself.
- Strong operational practices including independent verification and separate key management remain essential for multisig security.
Ask where crypto’s serious money lives, and the answer, overwhelmingly, is behind multiple signatures. A majority of institutional custodians run multisignature arrangements; DAO treasuries holding billions coordinate through them; exchanges guard cold storage with them; custody chains behind institutional products depend on them; and protocols park their upgrade keys and reserve funds inside them, most commonly in Safe, the contract system formerly known as Gnosis Safe, which alone secures values rivaling large banks. The idea is old, borrowed from bank vaults and nuclear launch protocols: no single person, key, or machine should be able to move what matters. Require M signatures out of N keys, 2-of-3, 3-of-5, and a thief must compromise several independent guardians instead of one.
And yet the largest theft in crypto’s history, Bybit’s $1.5 billion, walked out through a multisig. So did this year’s $11.3 million UXLINK breach, and the Ronin bridge’s $600 million before them. The pattern is the most instructive fact in modern crypto security: the multisig math has never been broken; the humans and interfaces around it are broken constantly. Multisig eliminates the single point of failure and replaces it with a subtler question, whether your several points of failure are actually independent, and the industry’s disaster record is a catalog of discovering they were not.
This guide covers the mechanism and its failure modes with equal seriousness: how multisignature schemes actually work on Bitcoin and on smart-contract chains, how to choose M and N and what each choice trades, the anatomy of the great multisig heists and the blind-signing problem at their core, multisig against its modern rivals, MPC and smart accounts, and the operational playbook that separates the treasuries that survive from the ones that headline.
The mechanism: M-of-N, on two architectures
A multisig wallet requires a threshold of signatures, M, from a set of authorized keys, N, before any transaction executes. A 2-of-3 personal setup might split keys across a hardware wallet at home, a second device in a bank box, and a trusted relative; a 4-of-7 DAO treasury spreads keys across council members on different continents. The threshold is the design’s dial: security against compromise rises with M, resilience against key loss rises with the gap between N and M, and operational friction rises with both.
Under the hood, two architectures implement the idea. On Bitcoin, multisig is native to the protocol’s scripting: an address encodes the M-of-N requirement itself, and spending requires the signatures to be presented and verified by the network. It is minimal, battle-tested, and rigid, changing signers means moving funds to a new address. On Ethereum and similar chains, multisig lives in smart contracts: a program, such as a Safe, holds the funds and enforces the policy, collecting signatures until the threshold is met and then executing. The contract approach is vastly more flexible, signers can be rotated, thresholds changed, daily limits and timelocks and module extensions added, and that flexibility is double-edged: the policy is code, code can have flaws, and, as the disaster section will show, the richness of what a contract wallet can execute is exactly what modern attackers exploit.
The transaction flow in both worlds follows the same rhythm. Someone proposes a transaction, recipient, amount, and, on contract wallets, arbitrary program calls. The proposal circulates to signers, each of whom reviews and cryptographically approves it with their own key, on their own device. When approvals reach the threshold, the transaction becomes executable and is broadcast. Every step is auditable: the chain records exactly which keys approved what, creating the accountability trail that makes multisig the governance tool of choice for DAO treasuries whose control is otherwise contested through token votes, for corporate funds requiring officer sign-off, and for escrow arrangements where a neutral third key arbitrates disputes, the human-governed cousin of the time-locked contracts that automate escrow on-chain.
Choosing M and N: the design space
The threshold choice is a risk allocation, and the standard configurations each answer a different question. 2-of-2 is a partnership with no tiebreaker and no recovery, one lost key strands the funds, and is mostly used with one key held by a service. 2-of-3 is the individual’s workhorse: it survives the loss of any one key, resists the compromise of any one key, and keeps signing friction tolerable; the classic personal build spreads three hardware keys across locations, and the classic collaborative-custody build gives one key to a professional service that can co-sign recovery but can never move funds alone. 3-of-5 and up is institutional territory, tolerating multiple losses and requiring multiple corruptions, at the price of coordination overhead that, in practice, tempts organizations into the worst sin of the genre: concentration, several keys held by one person, one office, one laptop, or one cloud account. A 3-of-5 whose keys live in three browsers and two drawers of the same office is a 1-of-1 with extra steps, and post-mortems of real losses find this shape constantly. The rule the design space reduces to: the security of a multisig is the security of its most correlated keys, and independence, of people, devices, software, and geography, is the entire point of the exercise.
Key-holder policy matters as much as the numbers. Every signer is a target the moment the arrangement is visible on-chain, and large treasuries are visible by definition, tracked by the same wallet-attribution lens that maps every whale. Serious operations therefore treat signers as an attack surface: hardware keys only, dedicated signing devices, no signer identities published unnecessarily, and procedures rehearsed before they are needed, because the day a treasury must move funds under pressure is the worst day to discover the third signer’s key is in a safe nobody can open.
How multisigs actually get robbed
The heist record is where this subject earns its place in a security curriculum, because the attacks share an anatomy and it is not the one intuition expects. No major multisig loss has come from breaking the cryptography. They come from making the right people sign the wrong thing.
The Bybit theft, $1.5 billion, the largest in industry history, is the canonical case. The exchange’s cold storage sat behind a multisig with executives as signers, exactly as best practice prescribes. Attackers, attributed to North Korea’s Lazarus Group, compromised the infrastructure of the wallet interface the signers used, so that when the executives performed a routine, scheduled transfer, their screens showed the legitimate transaction while their hardware keys signed a different payload, one that handed the attackers control of the wallet’s logic. Every signature was genuine. Every signer was diligent by the standard of what they could see. The vault held; the vault’s window lied. The Ronin bridge before it fell differently but rhymes: a 5-of-9 arrangement whose keys were insufficiently independent, with one organization controlling enough of them that compromising it, via a social-engineered employee, crossed the threshold, the key-compromise pattern behind the largest bridge disasters. And this year’s UXLINK breach showed the small-scale version: attackers who gain threshold control do not just drain, they use the wallet’s own administrative powers, adding themselves as signers, ejecting the owners, because on a contract multisig, governance of the wallet is itself just another transaction.
The common thread is blind signing. A hardware key protects the signature; it does not tell the signer, in honest human terms, what they are signing, and complex contract-wallet payloads are unreadable hashes on a tiny screen. Attackers therefore aim at the layer between intention and signature: the web interface, the signer’s laptop, the proposal pipeline, the human’s routine. The defenses that address this are specific and increasingly standard: independent verification of every payload on a second channel before signing, signing devices that decode and display transaction meaning, simulation tools that preview a transaction’s actual effects, timelocks that delay large movements long enough for review, and the simple institutional rule that no transaction is routine, because routine is precisely the state of mind the Bybit attackers were waiting for.
From Bitcoin script to Safe: how the standard was built
Multisig’s history is the history of crypto custody growing up, and its milestones explain today’s defaults. The capability is nearly as old as Bitcoin itself, formalized in the protocol’s early years through pay-to-script-hash addresses that let spending conditions, including M-of-N signature requirements, be encoded on-chain. The first institutional era was built directly on it: the early exchange and custody pioneers ran Bitcoin multisig vaults, and the first collaborative-custody businesses sold 2-of-3 arrangements to individuals a decade ago. The idea crossed to Ethereum as smart-contract wallets, where the flexibility of code produced both the triumphs and the scars: an infamous 2017 library bug in a widely used contract wallet froze hundreds of millions permanently, the formative lesson that flexible custody code is itself an attack surface, and the survivor of that era’s consolidation, Gnosis Safe, hardened through years of audits and adversarial value into the default it is now.
Today Safe-style contracts secure treasuries whose combined value rivals major banks, the DAO era having made the multisig council crypto’s standard governance executive, and Bitcoin’s own multisig lineage continues in parallel, favored for deep cold storage precisely because its rigid, minimal script surface offers so little to exploit.
The standardization has a consequence worth naming: concentration of a different kind. When one contract system secures the majority of on-chain treasuries, its code, its interface, and its upgrade process become systemic infrastructure, and the Bybit attack’s compromise of interface infrastructure was, among other things, a demonstration that the ecosystem’s eggs share more baskets than the M-of-N math suggests. The response, interface diversity, independent transaction verification services, signing-device decoding, is effectively the community rebuilding independence one layer up the stack, the same principle the wallets encode, applied to the tooling around them.
Setting one up: the individual’s path
For an individual reader, the practical on-ramp deserves concreteness. A personal 2-of-3 today is a weekend project: three hardware keys, ideally from two different vendors to avoid a shared firmware flaw; a contract wallet on an inexpensive network or a native Bitcoin multisig, depending on holdings; owner addresses triple-checked before deployment, because a mistyped owner is a permanent stranger with signing power; and the three keys distributed across genuinely separate locations, home, bank box, trusted party, with recovery instructions that someone other than you can follow.
The recurring costs are minor, deployment gas and slightly larger transaction fees, and the recurring disciplines are not: test the setup with small amounts first, rehearse a lost-key migration before losing one, keep a small gas balance where the contract needs it, and revisit the arrangement whenever a signer, device, or living situation changes. The friction is real, every transaction becomes a small ceremony, and the friction is the feature: a wallet that requires deliberation cannot be drained by one bad click, which, given that a single mistaken approval is how most individual losses now happen, is the entire value proposition in one sentence.
Multisig and its rivals: MPC and smart accounts
Two adjacent technologies answer the same single-point-of-failure problem, and choosing among them is a real decision, not branding.
Multi-party computation, MPC, splits one key into mathematical shares held by different parties, who jointly compute a signature without the full key ever existing anywhere. To the blockchain, the result looks like an ordinary single signature: cheaper, private, chain-agnostic, and revealing nothing about the policy behind it. The trade is opacity and dependence: the threshold logic lives in the providers’ off-chain software rather than in public code, there is no on-chain trail of who approved what, and the institutional MPC market is dominated by vendors whose systems must be trusted. Institutions increasingly use both, MPC for operational hot flows, multisig for deep cold governance.
Smart accounts, account abstraction, generalize the contract-wallet idea: programmable accounts with recovery guardians, spending policies, session keys, and multisig as merely one available policy among many. They are the likely long-term home of these ideas for individuals, folding multisig-grade protection into interfaces normal users can operate. For treasuries today, the audited, battle-hardened dedicated multisig remains the standard, precisely because its decade of scars, documented above, produced a decade of hardening.
Between the architectures sits a question every treasury eventually asks: how many signers is too many? The coordination cost of thresholds grows faster than linearly, five signers across five time zones can turn a routine payment into a week, and organizations respond with delegation structures that deserve scrutiny because they quietly re-centralize. Common patterns include a small operational multisig with spending limits for daily flows, governed by a larger cold council for everything above the limit; module systems that pre-authorize specific recurring actions; and role separation between proposers, who prepare transactions, and signers, who approve them, narrowing what any single compromised seat can initiate. Each pattern trades purity for function, and the honest evaluation standard is the same one the thresholds themselves answer to: enumerate what the compromise of each seat, device, and interface enables, and check that no enumeration ends in everything. Treasury security is not a product purchased once; it is that enumeration, repeated, forever, against adversaries who read the same post-mortems.
One misconception deserves explicit correction before the playbook: multisig does not protect against approving a bad idea unanimously. If all required signers are deceived by the same forged interface, the same fraudulent counterparty, or the same internal fraudster’s paperwork, the threshold is met and the mathematics executes the mistake faithfully. Signature independence protects against compromised keys; only verification independence, different signers checking the payload through different tooling and channels, protects against compromised information, and the great heists were failures of the second kind wearing the confidence of the first.
The operational playbook
Everything in this guide compresses into a practice list, and the list is the difference between the mechanism and its reputation. Choose thresholds for both compromise and loss: 2-of-3 personal, 3-of-5 or higher institutional. Make independence real: different people, devices, vendors, physical locations, and no key in a browser. Verify what you sign: second-channel confirmation of every payload, simulation before approval, and a standing suspicion of anything urgent. Add time as a defense: timelocks on large transfers turn a successful deception into a recoverable one. Rehearse recovery: a lost-key drill and a signer-rotation drill, run before either is needed. And treat the wallet’s own governance, adding or removing signers, changing thresholds, as the crown jewels, because the UXLINK lesson is that whoever can edit the signer set owns everything the signatures guard.
Multisig, honestly summarized, is the most successful security primitive crypto has deployed: it moved the industry’s treasuries from single hackable keys to arrangements that require conspiracies to rob, and the conspiracies, note, have had to grow to nation-state sophistication to succeed. Its failures are not refutations but curriculum, each one converting a blind spot into a checklist item, and the checklist is public. The vault works. Guard the window.
Two closing perspectives round out the subject. The first is the defender’s asymmetry, and it is encouraging: every major multisig loss has produced a specific, adoptable countermeasure, payload verification after Bybit, key-independence audits after Ronin, signer-set timelocks after the takeover breaches, and the countermeasures compound while the attacks must be reinvented. A treasury running the current playbook is not facing the same odds its predecessors did; it is facing adversaries who must now defeat every lesson previous victims paid for. Security in this domain is cumulative, and the cumulation is public.
The second is the philosophical point hiding in the mechanism, worth one paragraph because it explains multisig’s cultural weight in crypto. A multisignature arrangement is a constitution in miniature: a written rule about who may act, enforced by mathematics instead of courts, visible to everyone it governs. That is why the technology became the executive branch of the DAO era, why its failures feel like institutional scandals rather than mere thefts, and why its steady hardening matters beyond the funds it guards. Crypto’s founding claim was that agreements could be enforced without trusted enforcers, and the multisig, requiring humans to agree while preventing any of them from betraying the agreement, is the claim’s most widely deployed, most thoroughly attacked, and most durably successful embodiment. The vaults hold more than money.
For further orientation, the study list is mercifully practical: the post-mortems of the major incidents named above, each a free masterclass in one failure mode; the documentation of the dominant contract systems, whose security recommendations encode the industry’s accumulated scar tissue; the transaction-simulation and payload-decoding tools that address blind signing directly; and, for organizations, the published treasury-operations frameworks that DAOs and custodians have converged on. Multisig is the rare corner of crypto where the best practices are written down, battle-tested, and free, and where the distance between the average outcome and the best outcome is almost entirely a matter of reading them.
And if this guide leaves a single instinct behind, let it be this one: in multisig, the question is never whether the mathematics will hold, because it will. The question, every time, for every transaction, is whether the humans holding the keys know what they are signing, and every practice in the playbook above is, in the end, a different way of making sure the answer is yes.
Disclaimer: This article is for educational purposes only and does not constitute investment or security advice. Digital asset custody carries significant risk, and no arrangement eliminates it. Details are current as of July 9, 2026. Always do your own research.
Frequently asked questions
What is a multisig wallet in simple terms?
A multisig wallet is a crypto wallet that requires multiple private keys to approve any transaction, following an M-of-N rule such as 2-of-3 or 3-of-5. No single person or device can move the funds alone: a proposal must collect the threshold number of signatures, each from an independent key, before it executes. This removes the single point of failure that defines ordinary wallets.
How does a 2-of-3 multisig work?
Three keys are created and stored independently, for example on a hardware wallet at home, a second device in another location, and with a trusted party or service. Any two of the three must sign for a transaction to execute. One key being lost does not strand the funds, and one key being stolen does not endanger them, which is why 2-of-3 is the standard personal configuration.
Are multisig wallets actually safe if Bybit lost $1.5 billion through one?
The mathematics has never been broken; the famous losses came from deceiving the signers. In the Bybit case, attackers compromised the signing interface so executives approved a malicious payload their screens displayed as routine. The lesson is that multisig secures the signatures, while operational discipline, verifying payloads independently, using devices that decode transactions, adding timelocks, must secure what gets signed.
What happens if I lose one of my keys?
If your threshold still allows it, for example losing one key of a 2-of-3, the remaining keys can move the funds, and best practice is to migrate promptly to a fresh setup with a full key set. If losses exceed the tolerance, the funds are permanently inaccessible, which is why the gap between N and M exists and why recovery drills matter.
What is the difference between multisig and MPC?
Multisig uses several complete keys with the threshold enforced on-chain, visible and auditable. MPC splits a single key into shares that jointly produce one ordinary-looking signature, with the policy enforced in off-chain software. Multisig offers transparency and battle-tested public code; MPC offers privacy, lower fees, and chain flexibility at the cost of trusting provider infrastructure. Institutions commonly use MPC for hot operations and multisig for cold governance.
Who should use a multisig wallet?
Anyone holding more crypto than they could bear to lose to a single mistake: individuals with significant savings, and, essentially without exception, organizations, DAOs managing community treasuries, companies with crypto on the balance sheet, protocols holding upgrade keys, and groups needing escrow. For small everyday balances, the coordination friction usually outweighs the benefit.
What is blind signing and why is it dangerous?
Blind signing is approving a transaction whose true contents you cannot read, typically a complex smart-contract payload shown as an opaque hash. It is the vector behind the largest multisig heists: attackers compromise the interface so signers see a legitimate transaction while approving a malicious one. Defenses include devices that decode payloads, independent second-channel verification, and simulation tools that preview effects.
Can the signers of a multisig be changed?
On smart-contract multisigs, yes: adding or removing signers and changing the threshold are themselves transactions requiring threshold approval. That flexibility enables rotation and recovery, and it is also a target, since an attacker reaching the threshold can eject the rightful owners entirely, as recent breaches showed. Treat signer-set changes as the most sensitive operation the wallet performs.
Crypto World
Q2 2026 Digital Asset Review
This summary was created based on CoinDesk Research’s latest report; Digital Assets: Quarterly Review and Outlook, Featuring CoinDesk 5 and CoinDesk 20.
– Joshua de Vos, Research Lead, CoinDesk
Ask an Expert
Q: Is Asia advancing via tokenization and stablecoins rather than spot bitcoin ETFs?
Institutional adoption in Asia is shifting from exploratory pilots to targeted deployment, with tokenization of real-world asset and regulatory stablecoin acting as key entry points for bank and asset managers. Jurisdictions like Hong Kong have introduced comprehensive legislation such as the Stablecoins Ordinance. Requiring full reserve backing, redemption rights and risk controls to make tokenization activity compatible with existing prudential frameworks. Against that backdrop, pure bitcoin ETF plays a smaller strategic role than in North America and Europe.
Q: Are bitcoin ETFs adding income features like other non-traditional ETFs?
The growth of deep, liquid options markets on regulated bitcoin ETFs gives structured product issuers a reliable exchange-traded tool for income and hedging strategies. This is why covered call, buffered and other derivatives-based approaches are being used to generate income from bitcoin ETFs, which do not pay cash distributions or dividends.
Q: How much more capital could flow into bitcoin ETPs from institutions?
The more capital an asset can reasonably attract, the bigger its pool of potential buyers who follow fixed rules like pension plans, retirement accounts and institutional allocators. Right now, retirement systems are the largest pool of this kind of money that still has not meaningfully slowed into bitcoin ETFs. Just a 1% allocation from the $22 trillion US 401(k) and Defined Contribution system would generate $90-$130 billion of inflows, roughly matching the size of the current bitcoin ETF market size.
Crypto World
Hyperliquid highlights how on-chain perps may disrupt Wall St
Perpetual futures—derivatives that typically trade without fixed expiry dates—are increasingly being positioned as a next-generation instrument for markets that never sleep. In a Wednesday post on X, blockchain-focused asset manager Pantera Capital argued that decentralized venues built around onchain infrastructure could make 24/7 perpetual trading materially more competitive with traditional finance by improving continuity of trading and simplifying contract mechanics.
Pantera, which is an investor in the Hyperliquid ecosystem, highlighted Hyperliquid as a leading example of that shift. The firm also pointed to growing interest from established market operators, including NYSE parent Intercontinental Exchange (ICE), and cited data suggesting onchain perpetuals have taken a meaningful share of total perpetual volumes over the last year-plus.
Key takeaways
- Pantera says perpetual futures offer structural advantages—such as 24/7 trading and continuous price discovery—over many traditional derivative formats.
- Hyperliquid is presented as the clearest onchain case study, extending perpetuals from crypto to equities, commodities, and stock indices.
- Pantera claims decentralized exchange (DEX) perpetual volumes have risen to 14% of centralized exchange (CEX) perpetual volumes, up from less than 1% in early 2023.
- Pantera estimates Hyperliquid represents about 40% of onchain perpetual trading volume and generated $13.5 million in weekly fees over the past seven days, according to DefiLlama data.
- Traditional finance firms are moving toward onchain 24/7 markets, with ICE leadership urging regulators to avoid a “level playing field” disadvantage for onchain perps.
Why perpetuals are attracting attention beyond crypto
Perpetual futures have long been a staple in crypto markets, but Pantera’s argument is that their core mechanics translate well to broader financial products. According to the asset manager, onchain perpetual venues benefit from several “structural advantages” relative to conventional derivatives: trading can run continuously, positions don’t face the same kind of scheduled contract expiries, position management can be simpler, and prices can reflect ongoing demand through uninterrupted markets.
The point matters for investors and market participants because it reframes the debate away from whether derivatives can be moved to blockchain and toward how the product’s operational characteristics change trading behavior. If market hours and contract roll cycles are reduced, liquidity dynamics and execution practices may shift—particularly for strategies that rely on staying continuously exposed rather than rebalancing around expiry windows.
Hyperliquid’s expansion and the push toward “housing all of finance”
Pantera specifically singled out Hyperliquid as evidence that perpetuals can spread quickly when the venue’s design supports both trading continuity and a growing menu of assets. The firm said Hyperliquid has gone beyond cryptocurrencies and expanded perpetual futures into equities, commodities, and stock indices as part of founder Jeff Yan’s vision of “housing all of finance.”
That expansion is significant because it introduces a compatibility question that often holds back experimental derivatives: whether an onchain trading venue can support complex, non-crypto underlyings while maintaining the user experience traders expect. By framing Hyperliquid’s asset diversification as a key driver, Pantera is effectively arguing that the perpetual model—paired with always-on trading—can serve as a general-purpose derivatives interface.
Onchain perps gain share, but central venues are watching closely
Pantera’s post also emphasized measurable traction in onchain perpetuals. The firm said DEX perpetual volumes rose to 14% of CEX perpetual volume, up from less than 1% in early 2023, when Hyperliquid first launched. It further claimed Hyperliquid accounts for roughly 40% of onchain perpetual trading volume.
To ground the growth narrative in revenue generation, Pantera cited fees performance: Hyperliquid, it said, generated $13.5 million in weekly fees in the past seven days, using DefiLlama data. While trading volume and fee totals are not the same metric, the combination is useful for readers because it suggests demand is not purely speculative—there is sustained activity sufficient to support protocol revenue.
Still, the numbers also highlight a transition phase. Even at 14% of CEX perpetual volume, the majority of perpetual activity remains centralized. Pantera’s figures therefore portray an emerging competitive set of venues rather than a complete replacement of traditional exchanges.
Traditional finance steps toward 24/7, and ICE calls for regulatory parity
Pantera’s thesis about perpetual futures has drawn parallels with moves already happening in traditional finance. The asset manager pointed to attention from ICE, where CEO Jeffrey Sprecher urged regulators to create a “level playing field” for launching 24/7 onchain perpetual futures contracts.
The underlying tension is straightforward: onchain derivatives aim to bring trading closer to continuous market mechanics, but regulatory frameworks and supervisory expectations may still treat onchain offerings differently than traditional venues. Pantera’s mention of ICE leadership implies that the competitive stakes are large enough that major incumbents are advocating for consistent rules rather than waiting for markets to converge naturally.
Momentum appears across multiple related announcements involving 24/7 trading ambitions. Cointelegraph previously reported that OKX announced plans to launch perpetual futures linked to ICE’s Brent crude and West Texas Intermediate benchmarks, citing a partnership with the exchange operator. Earlier coverage also noted the NYSE’s collaboration with tokenization platform Securitize to develop blockchain-based stock trading infrastructure with 24/7 trading and settlement for Wall Street, as well as ICE’s plans for a tokenized securities venue aimed at 24/7 trading and instant settlement, with stablecoin-based funding and onchain settlement.
Taken together, these developments show that the “always-on” market concept is no longer confined to crypto infrastructure. Instead, it is becoming a reference point for how TradFi platforms consider liquidity access, settlement speed, and funding workflows.
For readers, the next thing to watch is whether regulatory clarity accelerates the move from pilots to scaled onchain perpetual launches across more traditional asset classes. Pantera’s data suggests onchain perps are already carving out measurable share, but the pace of expansion beyond current players will likely depend on how the “level playing field” debate resolves and whether incumbents can align product rollouts with regulator expectations.
Crypto World
PayPal’s PYUSD Stablecoin Arrives Natively on Polygon via Paxos Partnership
Key Takeaways
- PayPal USD arrives on Polygon natively via Paxos for streamlined business transactions.
- The Open Money Stack from Polygon now supports PYUSD alongside wallets and fiat conversion.
- Companies gain access to integrated settlement and cash-out capabilities in one platform.
- Polygon reports handling $2.6 trillion in stablecoin transaction volume.
- Paxos delivers regulated, dollar-backed PYUSD to Polygon’s payment ecosystem.
PayPal’s stablecoin has officially launched on Polygon via a Paxos partnership, marking a significant expansion in its payment capabilities. This development provides companies with native access to PYUSD through Polygon’s comprehensive payment framework. The integration combines regulated dollar-backed settlement with digital wallets, fiat on-ramps, and built-in compliance infrastructure.
Native PYUSD Integration with Polygon’s Payment Infrastructure
Paxos has introduced native PYUSD issuance on Polygon, eliminating the need for bridged token versions. Consequently, companies can now leverage the stablecoin across Polygon’s entire payment ecosystem. This framework enables deposits, transfers, settlements, and fiat conversions within a unified architecture.
The Open Money Stack from Polygon integrates digital wallets, fiat gateway services, regulatory compliance features, and stablecoin settlement capabilities. This unified approach allows companies to minimize the need for multiple payment provider integrations. The infrastructure accommodates various payment methods including card transactions, bank transfers, exchange operations, and stablecoin flows.
This integration specifically addresses the needs of organizations requiring accelerated cross-border transactions and simplified operational workflows. Payroll service providers, digital marketplaces, and money transfer services can leverage PYUSD for global payment processing. These companies can transfer value and convert to fiat without developing proprietary banking infrastructure.
Stablecoin Transaction Volume Highlights Polygon’s Payment Focus
According to Polygon, its blockchain has facilitated over $2.6 trillion in stablecoin transaction volume. This substantial figure demonstrates the network’s established foundation in payment-oriented stablecoin operations. It also illustrates why integrating PYUSD aligns with Polygon’s comprehensive settlement approach.
Major companies including Revolut and Stripe currently utilize Polygon for payment operations. Businesses already operating on Polygon can incorporate PYUSD without overhauling their existing technology stack. This compatibility reduces technical overhead and accelerates implementation timelines.
According to Polygon Labs, the Open Money Stack enables organizations to accept payments and facilitate cross-border fund movement. It also provides currency conversion to local denominations through a single integration point. This architecture creates a more direct connection between conventional financial systems and blockchain-based settlement.
Regulated Stablecoin Settlement Through Paxos
PYUSD is minted by Paxos and maintained through dollar-denominated reserve assets. Paxos states that the stablecoin functions under a national trust charter with OCC oversight. This regulatory framework positions PYUSD among the supervised dollar-backed stablecoins operating in the U.S. market.
The Polygon deployment provides PYUSD with access to another significant blockchain network for payment and settlement operations. This expansion reflects the broader trend of stablecoin integration by payment companies and financial technology providers. Earlier this year in June, Mastercard incorporated PYUSD into its settlement infrastructure across multiple blockchain platforms.
PayPal and MoonPay also unveiled PYUSDx this year for customized stablecoin applications. This platform enables developers to create stablecoins supported by PYUSD reserves without constructing payment infrastructure independently. Collectively, these initiatives demonstrate PYUSD’s strategic expansion into mainstream payment systems.
Crypto World
Bitcoin Needs a Daily Close Above $64,700 to Seal Its Latest Rebound, Says Trader
Bitcoin (BTC) saw intraday highs after Thursday’s Wall Street open as US stocks rebounded on fresh Iran peace hopes.
Key points:
- Bitcoin joins a risk-asset rebound as US President Donald Trump said that Iran “wants to make a deal” after the ceasefire breakdown.
- Crypto short liquidations near $100 million over 24 hours.
- Traders see important BTC price levels coming as soon as the daily close.
Crypto, stocks rise as Trump teases new Iran “deal”
Data from TradingView showed BTC/USD rising back above $63,000, up by nearly 1.5% on the day.

BTC/USD one-hour chart. Source: Cointelegraph/TradingView
US stocks were in the green across the board, helping to erase Wednesday’s downside as US President Donald Trump said that the Iran peace deal was “over.”
“They called a little while ago; they want to make a deal so badly,” Trump subsequently said in comments quoted by trading resource The Kobeissi Letter and others.
Crypto markets joined the sense of relief, helping push 24-hour short liquidations to nearly $100 million, per data from CoinGlass.

BTC/USD vs. crypto liquidations (screenshot). Source: CoinGlass
Commenting on the latest BTC price setup, trader Killa described their view as “not bearish at all.”
“In my view, we still have a few more months of choppy PA,” an X post stated, eyeing $68,000 for a potential short entry.

Source: Killa/X
Fellow trader Jelle saw ongoing strength from bulls, with a support reclaim still possible.
“Looks like bulls aren’t giving up on the reclaim just yet,” he told X followers.
“Get back above, and we likely push for 65-70k again. Reject, and sub-60k is back on the menu for $BTC.”

BTC/USD 12-hour chart. Source: Jelle/X
Bitcoin price needs a $64,700 daily close
Continuing, trader Daan Crypto Trades emphasized $64,700 for the daily close.
Related: Bitcoin ETFs end ‘most overwhelming’ $2.7B sell-off amid new $85M net outflow
“$BTC is ranging $61.3K-$64.7K range and spent this morning climbing back up after yesterday’s risk-off flush,” his latest X analysis read.
“A daily close above $64.7K flips the story and would make for a larger relief rally across the board. A close under $61.3K opens the road to the lows again and kills the momentum.”

BTC/USD one-hour chart. Source: Daan Crypto Trades/X
As Cointelegraph reported, opinions on the bear-market bottom being in continue to diverge.
This week, analysis described a “textbook” bottom formation now underway, while BTC price-cycle comparisons continued to demand a deeper macro floor.
Crypto World
Cipher, TeraWulf among AI infrastructure stocks trading below contract value, Compass Point argues
Using that approach, the firm said Applied Digital (APLD), TeraWulf (WULF) and Cipher Mining (CIFR) appear to offer the largest disconnect between their contracted business and current valuations. In each case, Compass Point argues the market is assigning little, if any, value to additional AI capacity that has yet to be leased, despite the potential for those projects to generate significant rental income once completed.
Core Scientific (CORZ) and Riot Platforms (RIOT) stand out for different reasons. Compass Point said Core Scientific’s existing contracts are already largely reflected in its valuation, meaning further upside will likely depend on signing new customers. Riot, meanwhile, is valued more on future potential than current lease income, with investors placing a premium on its Corsicana campus and broader AI development pipeline despite its relatively limited contracted capacity today.
The report argues the next two years will be a turning point for the sector as companies shift from announcing AI infrastructure deals to delivering them. As projects are completed, tenants move in and rent payments begin, investors will have a clearer picture of the recurring cash flow these facilities can generate. Companies that execute successfully could be rewarded with valuations more in line with other income-producing infrastructure assets.
Crypto World
Ripple (XRP) News Today: July 9
Ripple announced several deals and key partnerships over the past few days, further boosting the buzz surrounding the company.
However, the positive news has failed to trigger a major resurgence for XRP, yet certain analysts believe a big breakout could be on the horizon.
The Recent Developments
On July 4, the USA celebrated its 250th Independence Day, a historic milestone filled with nationwide special events. Ripple joined the festivities by partnering with a nonprofit that helps unemployed veterans find high-quality jobs after service. The ultimate goal is to secure jobs for 200,000 affected people by 2030, with Ripple matching donations up to $10,000.
Two days later, the company disclosed breaking news from the other side of the globe. It received full authorization as a Crypto Asset Service Provider (CASP) from Luxembourg’s Commission de Surveillance du Secteur Financier (CSSF), allowing the firm to offer its regulated payments platform throughout the European Economic Area (EEA).
Shortly after, Ripple shook hands with the Kansas Jayhawks, also known as KU (the athletic teams representing the University of Kansas). Per the partnership’s conditions, XRP’s logo will appear on all of their uniforms. Speaking on the matter was Ripple’s CEO, Brad Garlinghouse, who said:
“Rare moment where my professional and personal worlds collide: XRP is now the first crypto on the jersey of a major college athletics program, at my alma mater.”
Just recently, the X account BSCN revealed that the US supply chain firm Made in USA has selected the XRP Ledger to power its verification and product certification system. According to the entity, blockchain will provide immutable records that help verify the origin and authenticity of local products.
The ETF Front
Spot XRP ETFs saw significant capital inflows over the past few months, highlighting growing institutional appetite for the asset. The first company to issue such a fund (with 100% exposure to the token) is Canary Capital, followed by Bitwise, Franklin Templeton, 21Shares, and Grayscale. Since day 1, these investment vehicles have generated a cumulative total net inflow of almost $1.5 billion.
Spot XRP ETFs have had only four red days since April, with July 8 being one of them. This stands in sharp contrast to spot BTC ETFs, which have been bleeding heavily over the past few months.

XRP Price Outlook
As of press time, Ripple’s cross-border token trades at around $1.09, a minor 1.3% increase on a weekly scale. According to X user MikybullCrypto, the current price level represents a “lifetime opportunity entry,” as the analyst set a target of $5 and potentially even higher.
For their part, Crypto Coral spotted that XRP is compressing inside a triangle, with the valuation currently reacting from a key support zone. “Structures this large often lead to significant moves once resistance gives way,” they added.
The post Ripple (XRP) News Today: July 9 appeared first on CryptoPotato.
Crypto World
Hong Kong Regulator Mandates New Anti-Phishing Rules for Crypto Firms
The Hong Kong Securities and Futures Commission (SFC) has issued new rules aimed at reducing account takeovers on virtual asset trading platforms (VATPs) and online brokers. The regulator says platforms in the city must upgrade authentication controls to make logins more resilient to phishing and other social engineering tactics.
The SFC requires stronger phishing-resistant authentication methods and device binding, and it bans one-time passwords delivered via SMS, email, or app-based logins. Companies covered by the rules have 12 months to implement the changes, which the SFC frames as a key part of raising local cybersecurity standards as phishing activity intensifies globally.
Key takeaways
- The SFC’s new requirements apply to virtual asset trading platforms (VATPs) and online brokers operating in Hong Kong.
- One-time passwords through SMS, email, or app-based logins are prohibited for these platforms.
- Phishing-resistant authentication and device binding are required, with options such as passkeys and hardware security keys.
- Covered firms must complete implementation within 12 months from issuance.
- The SFC linked the update to rising phishing and social engineering losses in the broader crypto industry.
What the SFC is requiring for crypto login security
In a statement released Thursday, the Hong Kong regulator outlined specific expectations for authentication on VATPs and online brokers. The SFC’s document sets out requirements for phishing-resistant methods and device binding, aiming to prevent attackers from hijacking accounts through fraudulent login prompts or compromised credentials.
According to the SFC, the new standards disallow one-time passwords delivered by SMS, email, or via app-based logins. Instead, the commission points to stronger alternatives designed to reduce the effectiveness of phishing scams—for example, passkeys, registered devices with cryptographic verification, and hardware security keys.
The formal requirements are available through the SFC’s publication gateway: SFC requirements document.
Why Hong Kong is tightening rules now
The SFC’s move arrives at a moment when phishing and social engineering incidents continue to disrupt crypto users worldwide. The SFC said that in the first quarter of 2026, phishing-related tactics accounted for a significant portion of reported industry losses.
As reported by Cointelegraph earlier, industry losses totaled $482 million in the period, with $306 million attributed to phishing attacks and social engineering scams. The SFC also referenced a separate local data point: counterfeiting and fraud incidents represented 57% of security incidents reported to the Hong Kong Cyber Security Accident Coordination Center in 2025.
In remarks carried in the SFC materials, Dr. Ye Zhiheng, executive director of the Intermediaries Department of the China Securities Regulatory Commission, said that protecting customers from increasingly complex counterfeiting and fraud attacks requires comprehensive measures spanning prevention, detection, response, and education.
Real-world phishing losses underscore the risk
The SFC’s tightening reflects a pattern already visible in recent crypto incidents: attackers often use phishing to trick users into signing approvals or connecting wallets to fraudulent pages. These actions can grant attackers control over funds or enable unauthorized transfers.
Cointelegraph reported on Wednesday that a crypto investor lost nearly $1 million after signing a malicious phishing token approval transaction on Ethereum. Earlier coverage also described another case in which a wallet holder reportedly lost $1.65 million after connecting to a fake exchange and signing a malicious contract that gave attackers unlimited access to funds. Researcher Ryan Coleman made the assessment in a post shared on X: RyanColeXBT.
Additional examples cited in earlier reporting highlight the variety of phishing delivery methods. Cointelegraph noted that on May 25, on-chain analyst “b-block” warned scammers used Google to deploy malicious phishing ads impersonating decentralized exchange Uniswap, reportedly stealing more than $400,000 from victims. That earlier report is here: Cointelegraph on fake Uniswap ads.
Broader industry leaders have also called attention to wallet security weaknesses that phishing exploits. Cointelegraph previously connected such risks to discussions from Binance co-founder Changpeng Zhao after major investor losses, including a $50 million address poisoning incident in December 2025. Earlier coverage on that topic is here: Zhao’s remarks and related loss.
Device binding and passkeys: what changes for users and platforms
Although phishing attacks often start with a message that looks legitimate, the SFC’s approach targets the authentication layer that attackers rely on. By requiring phishing-resistant authentication and device binding, the rules are designed to reduce the chances that credentials or approvals obtained through a scam lead directly to account compromise.
For platforms, the practical implication is that they cannot treat multi-factor authentication as a checkbox. The SFC’s explicit ban on SMS/email one-time passwords is especially important because these methods can still be vulnerable to social engineering and interception—scenarios where attackers focus on tricking users into providing the second factor or luring them into fraudulent flows.
Instead, the SFC highlights methods that tie authentication to trusted hardware or cryptographic verification. Passkeys, cryptographic device registration, and hardware security keys all share a common theme: the login mechanism should be harder for attackers to replicate via fraudulent prompts, and stronger controls should ensure that only authorized devices can complete authentication.
For Hong Kong users, the change may eventually translate into a more consistent login experience with fewer fallback authentication options. For investors and traders, stronger login security is not just a compliance issue; it can be a direct determinant of whether account takeover attempts succeed—particularly when platforms integrate authentication with deposit, withdrawal, and trading permissions.
Still, one key uncertainty remains: how quickly different VATPs and online brokers will choose among the SFC’s allowed phishing-resistant alternatives, and how smooth the migration will be for end users. With a 12-month deadline, platform execution and user onboarding processes will likely be crucial in determining how effectively the new rules reduce real-world phishing losses.
With the SFC setting a clear timeline and banning weaker authentication methods, attention should now turn to how quickly Hong Kong platforms roll out passkeys or device-bound cryptographic authentication—and whether regulators will later expand requirements as phishing tactics evolve.
Crypto World
Gold Surges Past $4,100 as Middle East Tensions and Fed Policy Uncertainty Fuel Rally
Key Highlights
- Gold surged more than 1%, recovering above the $4,100 threshold following a three-session decline
- Fresh military confrontations between the United States and Iran sparked renewed safe-haven buying
- Federal Reserve meeting minutes revealed division among officials regarding future interest rate decisions
- Rising energy costs are intensifying inflation concerns, potentially prolonging elevated interest rates
- The resilient U.S. dollar and hawkish Federal Reserve tone continue to limit gold’s upward momentum
Precious metal prices staged an impressive recovery on Thursday, advancing more than 1% following three consecutive sessions of declines. Spot gold increased 1.14% to reach $4,123.91 per ounce, while futures contracts for gold rose 1.25% to settle at $4,132.95 per ounce.

The resurgence occurred as market participants returned to gold’s traditional safe-haven properties amid renewed military confrontations between Washington and Tehran.
Middle East Military Tensions Boost Precious Metal Appeal
The United States initiated additional military operations against Iran on Thursday, coming just hours after President Donald Trump announced the breakdown of ceasefire negotiations with Iranian leadership. The regional conflict has been intensifying since hostilities erupted in late February.
Tehran’s armed forces retaliated with strikes targeting what they identified as U.S. military installations in Kuwait and Bahrain. The Islamic Revolutionary Guards Corps issued warnings of additional attacks on American military assets throughout the Gulf region should Washington persist with its military operations.
This recent escalation has created turbulence across energy markets. Iranian assaults on vessels attempting to navigate through the Strait of Hormuz have driven crude oil prices upward, subsequently heightening concerns about energy-related inflationary pressures.
Higher oil prices complicate the Federal Reserve’s ability to implement interest rate reductions. This creates a challenging environment for gold, as declining rates typically support the non-interest-bearing asset while elevated rates diminish its attractiveness.
“Any surge in energy prices will strengthen market expectations that the Federal Reserve may maintain interest rates at elevated levels for an extended period to address persistent inflation,” noted analysts at ANZ in their research commentary.
Federal Reserve Meeting Minutes Reveal Policy Uncertainty
The release of Federal Reserve minutes from June’s policy meeting provided markets with additional considerations. Central bank officials demonstrated disagreement regarding the necessity of additional interest rate increases, offering some encouragement to gold investors.
The prospect that rate increases might be suspended later this year contributed to improved sentiment surrounding bullion. Reduced borrowing costs decrease the opportunity cost associated with holding gold, which generates no yield.
However, the same meeting minutes also indicated that Fed policymakers are becoming increasingly worried about entrenched inflation. U.S. inflationary pressures have consistently exceeded the central bank’s 2% objective since the onset of the Iran conflict.
“The minutes confirm that the possibility of a September interest rate increase remains firmly on the table,” stated Thomas Ryan from Capital Economics.
The U.S. dollar remained relatively unchanged at 100.98 on Thursday but continues hovering near 13-month peak levels achieved in June. A robust dollar typically increases gold’s cost for international buyers using alternative currencies, which generally constrains demand.
Gold had experienced downward pressure earlier in the week as the dollar gained strength on inflation anxieties connected to the regional conflict. Thursday’s rally lifted gold back above the $4,100 threshold after Wednesday’s downturn pushed it beneath that psychological level.
Crypto World
Wells Fargo loads up on Strategy while trimming BlackRock Bitcoin ETF
Wells Fargo has expanded its exposure to Strategy while reducing part of its BlackRock Bitcoin ETF position, according to its latest regulatory filing that also shows larger investments across Ethereum and Solana-linked products.
Summary
- Wells Fargo increased its Strategy stake by 125% while trimming its BlackRock Bitcoin ETF holding.
- The bank boosted Ethereum ETF exposure, added Solana funds, and expanded positions in Bitmine and Robinhood.
- SEC filings also show reduced stakes in Coinbase and Galaxy Digital despite broader crypto market exposure.
According to the bank’s latest filing with the U.S. Securities and Exchange Commission, the $2.5 trillion asset manager increased its holding in Michael Saylor’s Strategy (MSTR) by 125% to nearly 726,000 shares, adding roughly $41.5 million in exposure.
At the same time, the filing shows the bank reduced its position in BlackRock’s iShares Bitcoin Trust (IBIT) by 75,102 shares compared with the previous quarter, while also opening a new IBIT call position and increasing its put exposure during a period of heightened market uncertainty linked to the U.S.-Iran conflict.
Bitcoin ETF exposure has been rebalanced rather than cut outright
Although Wells Fargo trimmed its IBIT position, the filing indicates it did not reduce its Bitcoin exposure across the board. The bank also lowered its holdings in the Invesco Galaxy Bitcoin ETF (BTCO), the ARK 21Shares Bitcoin ETF, and the Fidelity Wise Origin Bitcoin Fund (FBTC).
However, it added to positions in the Grayscale Bitcoin Mini Trust, Grayscale Bitcoin Trust (GBTC), and Bitwise Bitcoin ETF (BITB), with its BITB stake rising 24% from the previous quarter.
Ethereum-linked investments moved in the opposite direction. Wells Fargo increased its holdings in BlackRock’s iShares Ethereum Trust (ETHA) by about 65%, taking its position to more than 1.10 million shares valued at approximately $17.56 million, according to the filing.
The bank also reported ownership of 257,157 shares of the Bitwise Ethereum ETF, 4,637 shares of the Grayscale Ethereum Staking ETF, and 623 shares of VanEck’s Ethereum ETF (ETHV).
The filing also disclosed the bank’s first reported positions in Solana investment products. Wells Fargo purchased 13,280 shares of Grayscale Solana Trust (GSOL) and 1,638 shares of the Fidelity Solana Fund (FSOL), adding Solana exposure alongside its existing Bitcoin and Ethereum allocations.
Crypto stock buying has favored treasury companies
Beyond exchange-traded funds, Wells Fargo increased investments in several crypto-related companies. Its position in Bitmine Immersion (BMNR) climbed from 2,323 shares to 21,547 shares, an increase of about 828%, lifting its exposure to the company’s Ethereum treasury strategy to roughly $426,000.
The filing also shows new positions in American Bitcoin Corp. (ABTC), the Trump family-backed Bitcoin treasury company, and Strive Asset Management’s treasury vehicle (ASST). At the same time, Wells Fargo expanded its Robinhood (HOOD) holding by 65% to about 2.56 million shares while opening put option positions valued at nearly $116,000.
Robinhood has recently attracted interest from other institutional investors as well. As crypto.news reported on June 27, Cathie Wood’s ARK Invest bought approximately $25.54 million worth of shares across Coinbase, SpaceX, Circle, Bullish, and Robinhood through several of its exchange-traded funds. Robinhood was one of the companies added during that round of purchases.
Not every crypto-linked stock received additional capital. Wells Fargo cut its stake in Galaxy Digital by roughly 97% and reduced its Coinbase (COIN) position by about 25%, according to the SEC filing, indicating the bank adjusted individual equity holdings while continuing to maintain exposure across Bitcoin, Ethereum, Solana, and crypto treasury companies.
Crypto World
Starbucks (SBUX) Develops Proprietary AI Platform to Slash $400M Software Budget
Key Highlights
- The coffee retailer is creating proprietary AI-driven solutions to eliminate dependency on IBM and Microsoft platforms
- Annual software expenditures currently total approximately $400 million, which the company aims to reduce substantially
- Internal platforms may launch by late next year following comprehensive testing phases
- The technology division expects to reduce spending by roughly $30 million in the current fiscal year
- IBM shares declined approximately 3%, ServiceNow dropped 3.5%, and Salesforce fell 4% during premarket hours following the announcement
The Seattle-based coffee giant is constructing proprietary AI-enabled platforms to substitute enterprise solutions currently purchased from major technology providers like IBM and Microsoft. This strategic shift caused enterprise software stocks to retreat during Thursday’s early trading session.
IBM experienced a decline of approximately 3% before market opening. ServiceNow tumbled nearly 3.5% while Salesforce retreated by about 4% in premarket activity. SBUX shares climbed almost 3% during trading, reaching $106.93.
The global coffee chain is engineering alternatives for a Microsoft inventory management platform and an IBM-powered maintenance operations tool. According to Bloomberg reporting on an internal corporate presentation, certain homegrown systems may be operational by the conclusion of next year, contingent on successful validation processes.
Chief Technology Officer Anand Varadarajan informed staff members earlier this year that the corporation allocates approximately $400 million per year toward software purchases. He emphasized that significant “clear opportunities to reduce the spend in software” exist within current operations.
The company is conducting a comprehensive examination of “every contract and service” throughout its technology infrastructure as component of a wider initiative to eliminate $2 billion in total operational expenses.
According to reports, AI-powered development methodologies have been instrumental in creating the platform intended to supplant IBM’s maintenance management solution. The corporation has simultaneously encouraged technology personnel to expand their utilization of AI capabilities — with artificial intelligence adoption now influencing performance bonus calculations.
Financial Optimization and Workforce Adjustments
The enterprise technology unit anticipates decreasing its yearly budget by approximately $30 million throughout the fiscal period concluding in late September. This reduction encompasses roughly $10 million in software cost savings and approximately $13 million from decreased utilization of external contractors.
Starbucks has additionally been developing an internal point-of-sale platform to supplant Oracle Simphony for multiple years, according to sources familiar with Bloomberg.
Beginning in February of the previous year, the organization has eliminated approximately 2,300 positions, with a substantial portion representing technology-focused roles.
Geographic Expansion Amid Restructuring
Despite workforce reductions, the coffee retailer is enlarging its technological footprint through establishing new operational centers in Nashville and India, while maintaining its corporate headquarters in Seattle.
The corporation allocates roughly $400 million annually toward software expenditures in total. The internal documentation examined by Bloomberg indicated the enterprise technology division remains on schedule to achieve its cost reduction objectives for the present fiscal year.
The company’s GF Score registers at 81 out of 100. Profitability metrics receive an 8 out of 10 rating, although financial strength registers at merely 4 out of 10. The equity trades at a P/E ratio of 78.87.
Insider transaction data covering the previous three months reveals $0.9 million in equity sales, with zero purchase transactions documented.
The Bloomberg analysis additionally highlighted that artificial intelligence adoption has evolved into a formal performance indicator influencing bonus compensation calculations for certain employees within the technology organization.
-
Fashion6 days agoWeekend Open Thread: High Hopes
-
NewsBeat5 days agoTaylor Swift and Travis Kelce wedding staffer hilariously struggles to keep her cool while checking in megastars
-
Crypto World6 days agoStandard Chartered Secures MiCA License as ESMA Adds 37 New Crypto Firms
-
Fashion3 days agoOpen Thread: What Great Books Have You Read Recently?
-
Politics6 days agoThe House | “Reframing the debate from a binary discussion of winners and losers”: Yuan Yang reviews ‘We Are Not Machines’
-
Fashion6 hours agoLoro Piana Fall 2026 Enters Houston’s Art Scene
-
News Videos3 days agoWhats Hidden Inside This Cash Register? #treasure #reselling #money
-
Tech2 days agoAnthropic’s new “J-lens” reveals a silent workspace inside Claude that mirrors a leading theory of consciousness
-
Crypto World6 days agoESMA Expands Crypto Register by 37 Firms Following MiCA Transition Period
-
Business3 days agoAXT Shares Jump Nearly 14% as Semiconductor Materials Maker Rebounds on AI-Linked Indium Phosphide Demand
-
Sports2 days agoJoshua Pacio ‘more complete’ ahead of ONE rematch vs Malachiev
-
Crypto World3 days agoSK hynix (000660.KS) Stock Dips as $28B Nasdaq ADR Offering Drives AI Memory Expansion
-
Crypto World4 days agoSouth Africa proposes crypto tax guidance under existing rules
-
News Videos3 days agoBest Time to Enter Small Caps Right Now? Another Bull Run? | Financially Free
-
Tech4 days agoLenovo laptops are now shipping with YMTC SSDs, a sign of Chinese NAND entering the mainstream
-
Business7 days agoWhat a 10 Percent Drop Means for Buyers, Sellers and Renters
-
Sports2 days ago
We have punished the disrespect
-
Crypto World7 days agoBinance Re-Enters Philippines As EU MiCA Rules Restrict Access
-
News Videos3 days agoAvoid entering in FOMO #bitcoin #cryptocurrency #trading #scalping
-
Crypto World6 days agoAlibaba bans Claude Code over alleged backdoor security concerns


You must be logged in to post a comment Login