Base Launches 'Human Verification', Is the Airdrop on the Agenda?

marsbit2026-07-29 tarihinde yayınlandı2026-07-29 tarihinde güncellendi

Özet

Base has launched "Base Verify Onchain," a new verification mechanism aimed at solving the problem of Sybil attacks and duplicate participation in on-chain activities like airdrops, rewards, voting, or minting. While blockchains can track wallet addresses, they cannot determine if multiple wallets belong to the same person. The system works by connecting off-chain identity verification with on-chain smart contract rules. Developers can set specific eligibility criteria in their contracts (e.g., requiring a verified X account or a Coinbase One membership). Users connect their wallet and sign a message, which is sent to Base Verify's off-chain service. This service checks if the user meets the pre-set conditions against verified credentials. If they do, it issues a short-lived cryptographic proof containing an identityHash. The application then submits this proof to the smart contract. The contract verifies the proof's validity, checks expiration, and crucially, uses the identityHash to ensure the same verified identity cannot participate more than once, even if using a different wallet address. This identityHash is unique per application contract, preventing cross-application tracking. Base Verify Onchain is positioned as a tool for reliably enforcing participation rules ("who" and "how many times") in specific on-chain scenarios. It is not a general identity system or KYC solution. Its announcement has sparked speculation about a potential future Base token airdrop, for wh...

Blockchain can record the activity of every wallet, but cannot determine just from an address: are ten wallets held by ten different people, or all by the same person.

This isn't an issue in regular transactions, but becomes a challenge during airdrops, reward claims, or community votes: the rule states 'once per person', but what smart contracts can actually identify is only 'once per address'. By constantly switching wallets, the same person could participate repeatedly.

On the evening of July 28th, Base's developer official account Base Build announced the launch of Base Verify Onchain. This feature attempts to solve the aforementioned problem: applications can write rules like 'only one participation per verified identity' and 'only users meeting specific conditions can participate' into their smart contracts. Currently, Base Verify Onchain is operational on the Base Sepolia testnet.

What is Base Verify Onchain?

Simply put, Base Verify Onchain is a verification mechanism that connects off-chain identity qualifications with on-chain contract rules.

It does not allow smart contracts to directly access a user's X, Instagram, TikTok, or Coinbase accounts. Instead, Base Verify's off-chain service first checks if the user meets the conditions, then issues a short-term valid verification result; the smart contract subsequently verifies this result on-chain and decides whether to allow the user to claim, deposit, mint, or vote.

The complete process can be divided into four steps.

Step one, developers pre-define the qualification rules in the smart contract, namely a credential provider and one or more conditions. For example, an application could require users to have a verified X account, an X follower count reaching a certain threshold, or a valid Coinbase One membership.

Step two, the user connects their wallet and signs an SIWE (Sign-In with Ethereum) message pointing to the application's contract. The application sends this message along with the wallet signature to the Base Verify API.

Step three, Base Verify's off-chain service first verifies the user-signed SIWE message and recovers the signing wallet address from the signature. It then reads the provider and conditions pre-set by the contract the message points to, and compares these conditions against the verified credentials this wallet has stored with Base Verify. Only when the user satisfies all conditions will Base Verify issue a short-term valid EIP-712 verification, returning a hash value (identityHash), expiration time, and verification signature to the application. This hash is a one-way hash used to identify and deduplicate the same verified identity.

Finally, the application submits these three pieces of data to the smart contract. The contract checks if the signature is from a trusted signer, if the verification has expired, and if the verification matches the current chain, contract, and qualification rules. Upon passing these checks, the application contract then queries whether the identityHash has already been used: if the same verified identity has participated before, even if using a different wallet this time, it will generate the same identityHash and thus be rejected by the contract.

Two distinct stages must be clarified here: whether the user meets the qualification conditions is judged by Base Verify's off-chain service; whether the signature is valid, expired, corresponds to the current contract rules, and whether the identity has already participated, is checked by the on-chain contract. The user's social media username, follower data, or membership information is not directly written on-chain as a result.

identityHash is also not a unified identity number that can track a user across all applications. It depends simultaneously on the verified identity and the application contract: the same identity using different wallets with the same contract will generate a consistent hash; when interacting with another contract, the hash will change. Therefore, different applications cannot directly correlate the same user solely based on identityHash.

It Solves Eligibility Enforcement, Not a Universal Identity System

The core problem Base Verify Onchain solves is: how can smart contracts reliably enforce 'who can participate' and 'how many times can the same identity participate?'

It is suitable for on-chain scenarios with clear rules, such as airdrops where one person can only claim once, reward events limited to specific users, and voting, minting, deposit, or claim processes that need to reduce interference from multiple wallets. The official test page currently shows two examples: users can complete verification via 'a valid Coinbase One membership' or 'a verified X account', and claim a test airdrop once on Base Sepolia.

It's important to note that Base Verify Onchain is not a general-purpose identity system capable of proving a user's name, nationality, or other legal identity, nor is it KYC. Successful verification only indicates that a certain verified identity meets the conditions pre-set by the contract. The contract will not thereby know specifically who the user is, nor should it infer the user's personal details based on this.

Is the Base Airdrop on the Agenda?

The announcement of Base Verify Onchain naturally leads to thoughts of a Base token and a potential airdrop. If distributing on-chain rewards to real users becomes necessary in the future, it could indeed provide a technical tool to prevent duplicate claims across multiple wallets.

Meanwhile, Base had already confirmed at BaseCamp in September 2025 that it had begun researching the possibility of issuing a network token. However, the official statement at the time clearly indicated that related work was still in early exploratory stages, with no release timeline, token design, or governance arrangements announced.

Currently, Base Verify Onchain appears more like Base filling a gap in its identity verification and anti-duplicate-claim infrastructure, rather than starting an airdrop countdown. If Base issues a network token in the future and chooses to distribute it to users, this toolset could indeed be used to screen eligible participants and limit duplicate claims by the same identity.

İlgili Sorular

QWhat is the core problem that Base Verify Onchain aims to solve?

ABase Verify Onchain aims to solve the problem of enforcing eligibility rules like 'one person, one participation' and ensuring only users meeting specific conditions can participate in on-chain activities such as airdrops, rewards, or community voting, where smart contracts can typically only identify 'one address, one participation' rather than the actual person behind multiple wallets.

QHow does the Base Verify Onchain process work in simple terms?

AThe process involves four main steps: 1) Developers write eligibility rules into a smart contract. 2) Users connect a wallet and sign an SIWE message. 3) Base Verify's off-chain service checks if the user meets the contract's rules and issues a short-lived verification if they do. 4) The app submits this verification to the smart contract, which checks its validity, expiry, and whether the verified identity (via an identityHash) has already participated, preventing duplicate participation even with different wallets.

QWhat is the purpose of the identityHash in the Base Verify Onchain system?

AThe identityHash is a one-way hash used to identify and deduplicate the same verified identity. It ensures that even if the same person uses a different wallet, they generate the same identityHash for a specific contract, preventing them from participating multiple times. However, this hash is specific to each application contract and cannot be used to track the same user across different applications.

QWhat types of on-chain activities is Base Verify Onchain suitable for, and what is it NOT?

ABase Verify Onchain is suitable for on-chain scenarios with clear rules like one-time airdrop claims, reward campaigns for specific users, and activities requiring reduced multi-wallet interference (e.g., voting, minting). It is NOT a general-purpose identity system for proving legal identity (like name or nationality), nor is it a KYC solution. It only proves that a verified identity meets the contract's predefined conditions.

QDoes the announcement of Base Verify Onchain confirm that a Base token airdrop is imminent?

ANo, the announcement does not confirm an imminent Base token airdrop. While the technology could be used to facilitate a fair airdrop in the future, the article clarifies that work on a potential network token is still in early exploration stages. Base Verify Onchain is presented as infrastructure for identity verification and anti-duplicate claims, not as a direct countdown to an airdrop.

İlgili Okumalar

Bitcoin Panicking? Mythos Cracks Post-Quantum Cryptography Algorithm in 60 Hours

Claude Mythos Preview, a new AI system from Anthropic, has made significant breakthroughs in fundamental cryptanalysis, targeting the mathematics underlying algorithms rather than just implementation bugs. Its first target was HAWK, a candidate in the NIST post-quantum signature standardization process. Mythos identified a previously unexploited symmetry (a nontrivial automorphism) in the lattice structure of HAWK, effectively halving its effective key strength. It achieved this feat in just 60 hours, a task that had eluded two years of human expert review. Crucially, the human operator was not a lattice cryptography expert, primarily managing the project while AI agents debated and discovered the attack path. Its second, more dramatic achievement was against a simplified 7-round version of AES-128, the world's most widely used symmetric encryption algorithm. Initially reluctant, stating the task was "impossible," Mythos was prompted to "try novel ideas." It then autonomously rewrote its own agent framework and proceeded to discover a novel attack method it named "Möbius Bridge." This technique bypasses a critical 256-guess step in previous "meet-in-the-middle" attacks, resulting in a speedup of 200-800 times. Both findings are currently "harmless"—HAWK is not deployed, and full AES-128 remains secure. However, the process reveals a profound shift. Mythos completed the AES discovery in about a week, while human researchers spent nearly a month verifying its correctness. This highlights a new bottleneck: the rate of AI-driven discovery may soon outpace human capacity for verification. The research concludes with a pressing, unanswered question: what happens when such an AI finds a critical flaw in a widely deployed, real-world cryptosystem?

marsbit4 dk önce

Bitcoin Panicking? Mythos Cracks Post-Quantum Cryptography Algorithm in 60 Hours

marsbit4 dk önce

From Computing to Storage: The Two-Dimensional Semiconductor Industry Chain is Taking Shape

The article "From Computing to Storage: The 2D Semiconductor Industry Chain is Taking Shape" discusses the rise of two-dimensional (2D) semiconductors as a pivotal material in the post-Moore era. As silicon-based chips approach physical limits, 2D semiconductors like molybdenum disulfide (MoS2), offer atomic-layer thinness and superior electrical properties, making them a promising non-silicon alternative for advanced nodes beyond 1nm. Globally, industry leaders like TSMC, Intel, and Samsung, along with research institutes like IMEC, are actively investing in this field. Domestically in China, significant progress is being made across the entire supply chain, from material production and equipment R&D to chip integration and ecosystem development. **Key highlights include:** * **Material & Equipment Breakthroughs:** Chinese research teams and companies like Jimo Xin Technology have achieved mass production of 6-inch and 8-inch 2D semiconductor single-crystal wafers using domestically developed equipment like Oxy-MOCVD. This addresses the critical challenge of large-area, high-quality material growth. Breakthroughs have also been made in p-type 2D materials (e.g., MoSi2N4) and wafer-scale ferroelectric thin films, essential for building complementary circuits and low-power transistors. * **Engineering Ecosystem Formation:** A landmark 8-inch 2D semiconductor pilot line in Pudong has become fully operational, bridging the gap between lab research and industrial manufacturing. The release of a Process Design Kit (PDK) compatible with mainstream EDA tools further connects design and fabrication, supporting wafer-level manufacturing of complex circuits. * **Expanding Application Landscape:** Applications are expanding from logic computing to memory. Chinese researchers have developed pioneering 2D semiconductor-based microprocessors, including a 32-bit RISC-V CPU and a higher-density multi-bit parallel processor. In memory, 2D materials' ultra-low leakage current enables DRAM with exceptionally long data retention and advances toward single-electron non-volatile storage. 2D semiconductors also show unique potential in RF circuits, radiation-hardened communications, flexible electronics, and quantum computing. In conclusion, the 2D semiconductor industry in China is rapidly advancing from laboratory research into the engineering validation and small-batch production phase. A complete industrial chain covering materials, equipment, manufacturing, design, and application is初步 forming, positioning the sector as a new competitive dimension in the global semiconductor landscape.

marsbit9 dk önce

From Computing to Storage: The Two-Dimensional Semiconductor Industry Chain is Taking Shape

marsbit9 dk önce

Coinbase and Robinhood Vie for the Next Phase of Cryptocurrency Market Evolution Ahead of Earnings Reports

Coinbase and Robinhood are set to report their Q2 2026 financial results this week, with the outcomes serving as key indicators for the future direction of the crypto market. While both companies have grown from their 2021 IPOs—Coinbase as a dedicated crypto exchange and Robinhood as a commission-free brokerage that expanded into crypto—their paths are now converging in competition. Analysts project Robinhood to report a profit of about $0.40 per share on ~$1.25B revenue, while Coinbase is expected to post a loss of ~$0.36 per share on ~$1.3B revenue. Despite similar revenue figures, investors value Robinhood more highly, viewing it as a diversified fintech firm rather than a pure-play crypto company. This perception has been reinforced as Robinhood gained retail trading market share, with its quarterly trading volume growing from ~$261B in early 2024 to over $704B in Q1 2026, outpacing Coinbase's growth to ~$517B. Both companies are investing heavily in blockchain-based financial infrastructure, such as tokenized stocks and stablecoins, to build more sustainable revenue streams beyond transaction fees. Coinbase has successfully reduced its reliance on trading fees, with subscription/service revenue and stablecoin revenue seeing significant growth. However, over half of its subscription revenue is tied to USDC, exposing it to new competition from banks and payment processors launching rival stablecoins. Robinhood is pursuing a global expansion strategy, recently launching its own layer-2 blockchain (Robinhood Chain) and offering tokenized U.S. stocks in over 120 countries. Its revenue is more diversified, with crypto assets making up only about 12% of its total, which helps explain its premium valuation compared to Coinbase. The upcoming reports will reveal which company's strategy is gaining more traction in shaping the next phase of crypto market evolution.

cryptonews.ru14 dk önce

Coinbase and Robinhood Vie for the Next Phase of Cryptocurrency Market Evolution Ahead of Earnings Reports

cryptonews.ru14 dk önce

İşlemler

Spot
活动图片