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

marsbitPublicado em 2026-07-29Última atualização em 2026-07-29

Resumo

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.

Perguntas relacionadas

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.

Leituras Relacionadas

Only 153 Venture Capital Firms Invested in July: Is the Crypto VC Industry Experiencing a 'Mass Extinction'?

In July 2026, only 153 unique venture capital firms participated in disclosed crypto funding rounds, marking the lowest monthly count since November 2020. This figure represents an 87% decline from the peak of 1,177 firms in 2022. Overall, the first seven months of 2026 saw crypto projects raise approximately $11.78 billion across 481 rounds. This crypto VC contraction contrasts sharply with the broader venture capital landscape, where global VC investment reached a record $560.4 billion in H1 2026, heavily fueled by major AI company financings. This shift in capital allocation has drawn funds away from the crypto sector. Within crypto, funding is highly concentrated. Trading platforms, prediction markets, and payment sectors absorbed 53% of the total capital. While early-stage deals remain frequent, the largest sums flow to a few late-stage rounds and mergers & acquisitions, which surged to $7.23 billion in Q2 2026. The market is consolidating around top funds like a16z crypto and Dragonfly, which successfully raised new multi-billion dollar funds, while many smaller firms have retreated. Analysts describe this as a "great extinction" for crypto VCs, where capital is becoming more selective, favoring proven business models and assets over early-stage speculation. This raises the bar for project quality, funding efficiency, and viable exit paths.

marsbitHá 19m

Only 153 Venture Capital Firms Invested in July: Is the Crypto VC Industry Experiencing a 'Mass Extinction'?

marsbitHá 19m

Strategy's Loss in the Second Quarter Reaches $8.22 Billion Amid Bitcoin Decline

Strategy, the largest corporate holder of Bitcoin, reported a net loss of $8.22 billion for the second quarter. This loss was primarily driven by an $8.32 billion unrealized loss on its Bitcoin holdings due to a decline in the asset's price during the period. Despite these paper losses, the company increased its Bitcoin holdings to 843,775 BTC, a 25% growth since the start of the year. As part of a new monetization strategy, Strategy sold approximately $218.4 million worth of Bitcoin, mainly to fund dividends for preferred shareholders, with $216 million of that sold after Q2 ended. The company also built a $3.75 billion cash reserve, which it claims is sufficient to cover over two years of dividend and interest payments, aiming to insulate itself from Bitcoin's volatility while meeting obligations. Following the earnings release, Strategy's stock (MSTR) rose 4.7% in regular trading but corrected slightly after-hours. This pattern reflects how the company's accounting results are heavily tied to Bitcoin's price swings, even as its long-term strategy remains unchanged. The report indicates that Strategy is maintaining its core strategy of accumulating Bitcoin while building a financial buffer. This quarterly loss follows a recognizable pattern, with the company posting significant unrealized losses in previous quarters (e.g., $12.4 billion in Q4 2025 and ~$12.5 billion in Q1 2026) due to fair-value accounting. A key technical shift is its new monetization program, which introduces periodic selling pressure on the market, transitioning Strategy from a pure accumulator to a participant that occasionally adds supply. A critical question remains: how long can the cash reserve cover dividend obligations if a Bitcoin price downturn persists beyond two years?

cryptonews.ruHá 38m

Strategy's Loss in the Second Quarter Reaches $8.22 Billion Amid Bitcoin Decline

cryptonews.ruHá 38m

Will Terrorist Durov Ban Russian Officials?

Telegram founder Pavel Durov publicly reacted to being labeled a "terrorist" by Russian authorities, stating the designation came after he refused demands for mass surveillance and censorship on the platform. In a Telegram post, he highlighted that this status formally bans him from "publishing information online." Durov concluded with a statement widely circulated: Russian officials "clearly don't understand who can ban whom on the internet." This remark suggests Durov could potentially restrict official Russian government and officials' channels on Telegram, which continue to operate on the platform despite its formal blocking in Russia. The situation parallels previous, slow-moving state directives, like switching officials to domestic cars, contrasted with the current push to migrate all government communication to the Russian-made messenger MAX by 2030. However, reports indicate many officials still use Telegram via workarounds, fearing surveillance on MAX, while alternatives like BiP and KakaoTalk recently became inaccessible in Russia without a VPN. Durov has not specified any immediate actions against state channels. His statement is an initial response, with further developments depending on the authorities' reaction. The dynamic differs from 2020 when Russian regulators lifted a block on Telegram; now, Durov implies control from within the platform itself over the official accounts that persisted through that earlier blockade.

cryptonews.ruHá 39m

Will Terrorist Durov Ban Russian Officials?

cryptonews.ruHá 39m

DeepSeek V4 Official Version Arrives, New Capabilities Emerge, Value-for-Money King Enters the Fray

On July 31st, DeepSeek officially launched the public API beta for its DeepSeek-V4-Flash model. A key highlight is its performance on multiple Agent benchmark tests, reportedly nearing or even surpassing the level of the V4-Pro preview version from three months ago. Notably, the Flash model achieves this with significantly smaller scale (130B active parameters vs. Pro's 490B), suggesting that post-training optimization and data quality may be as crucial as raw model size. DeepSeek emphasized that the V4-Flash-0731 uses the same model architecture and size as its preview version, with improvements attributed solely to "re-trained post-training." The update also marks the official debut of DeepSeek's self-developed Agent framework, "Harness." The move signals DeepSeek's strategic push to position its cost-effective Flash model as a competitive base for Agent applications—scenarios requiring autonomous planning, tool usage, and complex task execution—where inference speed and cost are critical. By natively supporting OpenAI's Responses API format and adapting for code-generation scenarios, DeepSeek aims not just to be a cheaper alternative but to establish its own ecosystem in the Agent era. This release follows DeepSeek's record-breaking ~$50 billion fundraising round roughly two months prior, underscoring market confidence in its technology and commercialization prospects. The company is reportedly preparing for another funding round at a valuation of approximately $71 billion. The Flash model's advancement represents a step in fulfilling the high expectations that come with this valuation, setting the stage for the impending release of the V4-Pro official version and intensifying competition in the global Agent landscape.

marsbitHá 43m

DeepSeek V4 Official Version Arrives, New Capabilities Emerge, Value-for-Money King Enters the Fray

marsbitHá 43m

Trading

Spot
活动图片