Connect with us

Press Release

Decentralized And Fully Open-Source Project PlatON Aims To Construct New Generation Financial Infrastructure

Published

on

In recent years, with rapid development of 5G, Internet of Things, cloud computing and other technologies, the whole society has been evolving and upgrading on the road of informationization, digitization and intelligentization, and the data has become the key factor in the production process. As the value of data resources is gradually recognized, the demand for data circulation and sharing is increasing.

Although entities such as platform enterprises can set up algorithm analysis teams, use crawlers and terminal equipment and other technologies to obtain external data and process the same, provide relevant data to the outside world or provide data services, and overcome their own development problems in a centralized processing mode, from the perspective of the whole society, the data that can be acquired and processed by the centralized processing mode is still limited. The current digital infrastructure cannot meet the urgent needs for data transaction and sharing. Moreover, the inherent protection policy of trade secrets in the industry and the concerns of government departments on security interests restrict the maximum use of data value.

The emergence of blockchain and privacy computing technology provides guarantee and incentive for protecting data privacy and promoting data sharing transactions, and is gradually disrupting the traditional centralized governance model, creating the possibility for building a “decentralized” digital infrastructure.

“Decentralization” Reform And Development Trend In The Financial Field

The financial industry depends on big data, and its essence is in effective allocation of resources on the basis of mutual trust. As the traditional financial system is based on the centralized mode, it is highly dependent on intermediaries such as banks and arbitrators such as courts, which makes the market transaction cost high and the system efficiency low. It requires a lot of paperwork and it is difficult to manage vouchers. Introducing blockchain technology into the financial industry will break through the traditional centralized capital transaction mode and build a scattered and decentralized financial service system, which is called distributed finance (Defi).

Defi is not bound by central financial intermediaries such as banks, exchanges and brokerage companies, and uses blockchain intelligent contracts, which can specify in advance how to deal with all possible disputes and eliminate the necessity of third-party arbitrators, thereby reducing the provision and use of intermediary services and reducing transaction costs within the system. Compared with the traditional financial system, Defi transactions are smoother, and the financial services it provides will not be affected by a single point of failure.

Although Defi has many advantages in technology and business model, its development still faces many challenges. Security, as the first element of financial infrastructure, is also an unavoidable topic in Defi development. Within the financial system, the underlying network carries the transaction flow and payment settlement, while the vast amount of data flowing on nodes is related to customer privacy and trade secrets. In addition to that, whether it is institutional coordination and financial supervision in the short term or profit sharing in the future financial scenario, it is necessary to make a trade-off between data sharing and protection. All these cannot be separated from the escort of private computing technology.

Exploration Of PlatON In Constructing Financial Infrastructure

As a global leader in blockchain + privacy computing, PlatON will provide public infrastructure services under the open-source architecture for global AI and distributed application developers, data providers and various communities, institutions and individuals with computing needs through a new generation of private computing architecture consisting of verifiable computing, secure multi-party computing, zero-knowledge proof and homomorphic encryption.

At present, PlatON technology application scenarios have been extended to credit reporting, payment and clearing, key management and other fields. Facing the future all-digital era, one of PlatON’s core strategies is to explore possible paths for building a new generation of financial infrastructure by relying on privacy computing and its technical endowment, so as to promote large-scale transaction services and liquidity governance of data assets. To this end, PlatON officially launched the meta-network Alaya in October 2020. As the prototype network and “business sandbox” of PlatON’s new generation financial infrastructure, Alaya is committed to becoming the “pioneering demonstration area” of the next generation privacy computing and data asset computing infrastructure in the world.

PlatON is also a decentralized and fully open-source project, and anyone who is willing to support its development can contribute and get rewards. Recently, PlatON launched Hackathon activity on DoraHacks developer platform Hackerlink and set up a bonus pool of 170,000 US dollars, aiming at encouraging developers to emerge new inspiration and create new value, and further enriching the ecological application of PlatON and its meta-network Alaya around the private AI computing network. This activity was officially launched on July 21st and is expected to last until the end of September. The idea is tested on the Alaya development and test network or main network to continuously verify the completeness of the basic functions of the network. PlatON welcomes developers from all over the world to submit blockchain projects based on Alaya network to build a secure and credible digital infrastructure.

About Author

Disclaimer: The views, suggestions, and opinions expressed here are the sole responsibility of the experts. No Digi Observer journalist was involved in the writing and production of this article.

Continue Reading

Press Release

Qoder Launches Qoder Security, Putting Three Layers of Security Into the AI Coding Session

Published

on

The built-in capability shifts code security from after-the-fact scanning to proactive, in-session protection, improving vulnerability detection by about 60 percent and cutting false-positive alerts by about 80 percent compared with traditional solutions

Singapore, July 23, 2026 — Qoder, the agentic coding platform with more than 5 million registered users, today announced Qoder Security, a built-in capability that embeds security review directly into the AI coding session. As code is written, Qoder Security runs three progressive layers of protection and fixes the issues it finds in the same session, before the code is committed.

The launch targets a widening gap between how fast Agent writes code and how slowly that code gets checked. Agent now assists in generating a large share of new code, and a July 2026 academic study that applied multi-tier verification to nearly 9,000 C++ programs found that AI-generated code triggers confirmed runtime violations at roughly twice the rate of human-written code, even after controlling for code length and test pass rates. Most security tooling, however, still runs after the fact, in CI pipelines or pre-release audits, when the developer’s context is gone and fixes are slowest and most expensive.

“The speed of agentic coding has quietly become the speed at which vulnerabilities enter the repository,” said Ding Yu, Head of Product at Qoder. “We believe security cannot depend on a model’s good behavior. It has to be built into the product architecture. Qoder Security gives every developer the equivalent of a dedicated security engineer, one that reviews, verifies and fixes issues while the code is being written, not weeks later in a report.”

From Static Scanning to Proactive Security

Traditional code security relies on rules and pattern matching. That approach catches hardcoded secrets and known dangerous calls, but it cannot reason about logic flaws such as authorization bypasses or exploitable data flows. Qoder Security, built on Qoder’s proprietary security LLM, takes an approach the company calls proactive security. The system understands code context and taint propagation paths, verifies that a detected issue is actually reachable before reporting it, and then drives the fix itself.

The architecture separates the agent that writes code from the agent that reviews it, avoiding what engineers call reviewing its own work. On the review side, scanning and verification are split between two cooperating agents to improve accuracy. Once a fix lands, the next scan re-verifies it, closing the loop so no security debt is left behind.

Three Layers, Escalating Depth

Running a frontier-scale model over every line of code would be too slow and too expensive. Qoder Security instead assigns a distinct job to each of three layers:

  • Static Check. Pattern-based screening at generation time. Dangerous function calls and other known high-risk patterns are caught and fixed the moment they appear, with no latency and no model cost.

  • Lightweight Scan. After a coding task wraps up, the system suggests a semantic review of the incremental changes. This layer reasons about what the code is trying to do, catching risks such as SQL injection, remote command execution and sensitive data exposure, and verifies reachability before reporting.

  • Deep Scan. Before code is pushed, the system offers a cross-file, cross-function analysis that traces complete data flows from taint source to dangerous sink, surfacing chained vulnerabilities invisible from any single file.

None of the layers interrupts the developer. The first runs silently; the other two appear as suggestions at natural break points in the workflow and run only when the developer says yes. A scan can also be triggered at any time with the /security-scan command or a plain-language request.

Reported Results

According to company data, Qoder Security improves vulnerability detection rates by about 60 percent and reduces false-positive alerts by about 80 percent compared with traditional solutions, shrinking the time from discovery to fix from days to minutes. In internal testing ahead of launch, the system surfaced more than 600 security issues across production-grade open-source projects and AI infrastructure components, many of them widely used and actively maintained. Within Qoder’s own engineering organization, security-related comments in code review have dropped by roughly 35 to 45 percent since adoption.

Qoder Security improves vulnerability detection rates by about 60 percent and reduces false-positive alerts by about 80 percent compared with traditional solutions

The broader industry is converging on the same conclusion. Leading AI labs have begun building security review into their coding tools, some at the repository level, others inside the coding session. Qoder Security productizes the in-session approach end to end, with three layers of protection, same-session remediation and closed-loop re-verification available out of the box.

Qoder Security is designed to complement existing security programs rather than replace them. CI-stage scanning and human review remain the right tools for compliance and organizational control; Qoder Security shifts detection and remediation left, to the moment the code is born. Findings may still include false positives, and developers always decide whether to accept a fix.

Availability

Qoder Security is available now in Qoder Desktop and in Qoder CLI. It requires no plugins and no configuration files: open Settings > Security in Qoder Desktop, or run /security-settings in the CLI, and switch it on. Static Check is free; Lightweight Scan and Deep Scan consume credits.

About Qoder

Qoder is an agentic coding platform serving more than 5 million registered developers worldwide through Qoder Desktop, Qoder CLI and JetBrains plugin. Launched in 2025, Qoder pairs autonomous coding agents to help developers ship reliable software faster. Learn more at qoder.com.

Media Contact

Organization: Qoder

Contact Person: Nathan Steel

Website: https://qoder.com

Email:
contact@qoder.com

City: Singapore

Country:Singapore

Release id:47400

The post Qoder Launches Qoder Security, Putting Three Layers of Security Into the AI Coding Session appeared first on King Newswire. This content is provided by a third-party source.. King Newswire makes no warranties or representations in connection with it. King Newswire is a press release distribution agency and does not endorse or verify the claims made in this release. If you have any complaints or copyright concerns related to this article, please contact the company listed in the ‘Media Contact’ section

file

About Author

Disclaimer: The views, suggestions, and opinions expressed here are the sole responsibility of the experts. No Digi Observer journalist was involved in the writing and production of this article.

Continue Reading

Press Release

Adam Weitsman Backs Unserious in their Acquisition of Creepz and Psychrome homecoming

Published

on

Miami, United States, July 22nd, 2026, Chainwire

Unserious today announced the acquisition of Creepz, one of the most recognizable NFT collections of the 2021-22 cycle. Backed by entrepreneur and investor Adam Weitsman, and with the support of the original founders, the deal places the lizard cult brand under a powerhouse new team.

Most importantly, the acquisition marks a homecoming for Psychrome – the original mastermind and creative genius behind the Creepz lore. Returning to lead IP development, he also brings a resume as a globally exhibited artist whose commercial collaborations span Nike, Salomon, Sneaker Con, Staple, Disney, Warner Bros., and Rovio.

Beyond this foundational creative leadership, the Unserious team brings deep operating experience with a track record spanning consumer brands, entertainment, and enterprise tech, alongside crypto’s largest token launches – including the historic ApeCoin.

Unserious also took the opportunity to formally deny the existence of lizard people, their alleged evil activities, and any plans for $CREEPZ world domination.

About Unserious

Unserious is reimagining the future of decentralized brands.

Contact

Acquirer
Unserious
Unserious
contact@unserious.inc

About Author

Disclaimer: The views, suggestions, and opinions expressed here are the sole responsibility of the experts. No Digi Observer journalist was involved in the writing and production of this article.

Continue Reading

Press Release

Mandela Digital Announces $5 Million Investment From Datavault AI

Published

on

Laramie, Wyoming, July 22nd, 2026, FinanceWire

Mandela Digital today announced a $5 million investment from Datavault AI and the launch of its official digital website at www.mandela.digital.

Datavault AI Commits $5 Million and Technology Platform to Support Mandela Dollar

Datavault AI Inc. has committed and begun deploying $5 million in funding to Mandela Digital. The investment will accelerate the development and launch of the Mandela Dollar (MUSD), a 1:1 USD-backed stablecoin designed to promote financial inclusion, remittances, and digital payments across the Global South and beyond.

Mandela Digital combines institutional-grade financial infrastructure with the moral authority of the Mandela name to address the needs of the billions of people globally who remain unbanked or underbanked.

Under the agreement, Datavault AI’s investment will support stablecoin infrastructure, regulatory compliance, exchange integrations, liquidity, and go-to-market initiatives. As the primary technology partner, Datavault AI will also provide its patented AI platforms, blockchain tokenization expertise, SanQtum quantum-resilient encryption, and real-world asset (RWA) frameworks to power MUSD’s issuance, redemption, compliance, and on-chain transparency.

Key Highlights

  • $5 million investment by Datavault AI Inc. (NASDAQ: DVLT) into Mandela Digital.
  • Full deployment of Datavault AI’s technology stack, including AI-driven platforms, tokenization patents, quantum-secure encryption, and RWA infrastructure.
  • Launch of the Application Stage of the Early Access Programme, which will remain open for a symbolic 67-day window starting on Nelson Mandela International Day 2026, honoring the 67 years Nelson Mandela spent fighting for human rights, equality and social justice. 
  • Official website www.mandela.digital now live as the central global hub for the initiative.

Mandela Digital Launches Official Digital Home

www.mandela.digital

The new website at www.mandela.digital serves as the venture’s primary global hub, offering stakeholders transparent information, official updates, and resources. It follows the recent opening of applications for the Mandela Dollar Early Access Programme on Nelson Mandela International Day.

Key sections of the website will be updated periodically to include details on the MUSD framework, reserves and audits, governance, the Early Access Programme for financial institutions and intergovernmental organizations, partnership information, and educational resources aligned with Nelson Mandela’s values of economic empowerment.

Quotes

Mustaq Patel, Chairman, Mandela Digital: “I conceived the Mandela Dollar to solve what the industry has long failed to deliver: a stablecoin that combines institutional architecture with genuine moral authority. Technology without trust is a commodity; trust without infrastructure is insufficient. Datavault AI’s $5 million investment and full technology deployment under a signed legal agreement mark the transition from vision to construction. www.mandela.digital represents our commitment to transparency and accessibility as we build serious financial infrastructure for the Global South and beyond.”

Zaziwe Dlamini-Manaway, Director, Mandela Digital “My grandfather measured progress by its impact on people’s daily lives — whether families could thrive, young people could build futures, and workers could preserve the value of their labor. Mandela Digital, brought to us by Mustaq Patel and now supported by Datavault AI’s capital and technology under formal agreement, carries that vision forward with clarity and seriousness of purpose. The Mandela name stands for what endures, and we are confident this initiative is built to last.”

About Mandela Digital

Mandela Digital is the U.S.-headquartered Joint Venture developing the Mandela Dollar (MUSD), a 1:1 USD-backed stablecoin engineered to institutional standards. The initiative aims to expand reliable U.S. Dollar-denominated financial access across Africa, Southeast Asia, Latin America, and beyond.

Caution Regarding Unauthorized Tokens

The Mandela Dollar (MUSD) is currently in development and not yet live on any blockchain or exchange. Mandela Digital has not authorized any token sale, pre-sale, ICO, IEO, or similar offering. The public is advised to exercise extreme caution against any unauthorized tokens, websites, or individuals claiming to represent MUSD or Mandela Digital. Suspected fraudulent activity should be reported to legal@mandela.digital. All verified information is available exclusively at www.mandela.digital.

Forward-Looking Statements

This press release contains forward-looking statements within the meaning of U.S. federal securities laws. These statements are based on current expectations and are subject to risks and uncertainties, including regulatory developments, technology timelines, market conditions, and other factors that may cause actual results to differ materially. Neither Datavault AI nor Mandela Digital undertakes any obligation to update forward-looking statements except as required by law.

Nothing in this release constitutes an offer to sell or solicitation to buy any security or digital asset.

Contact

Chairman
Mustaq Patel
Mandela Digital
PR@mandela.digital

About Author

Disclaimer: The views, suggestions, and opinions expressed here are the sole responsibility of the experts. No Digi Observer journalist was involved in the writing and production of this article.

Continue Reading

LATEST POST