Primitives / Smart Contracts
Execution Blockchain Primitive

Smart Contracts

Self-executing programs that run on blockchain networks

What are Smart Contracts?

Smart contracts represent a fundamental expansion of what blockchain networks can accomplish, transforming them from simple ledgers into programmable platforms capable of enforcing complex agreements automatically. A smart contract is essentially a computer program stored on a blockchain that executes predefined actions when specific conditions are met, without requiring human intervention or trusted intermediaries to enforce the terms.

The concept traces back to cryptographer Nick Szabo, who coined the term in 1994 to describe self-executing contractual agreements embedded in code. Szabo envisioned digital protocols that could enforce contract terms with greater reliability and lower cost than traditional legal systems. While his ideas preceded the technology needed to implement them securely, Ethereum’s launch in 2015 finally provided a robust platform for bringing smart contracts to practical reality.

When developers deploy a smart contract, its code becomes part of the blockchain’s permanent record. The program operates according to its encoded logic regardless of external pressures, executing whenever users submit transactions that trigger its functions. This combination of permanence, transparency, and automatic execution enables new forms of coordination that were previously impossible or prohibitively expensive.

Core Properties That Define Smart Contracts

Immutability stands as perhaps the most distinctive property of deployed smart contracts. Once code reaches the blockchain, it cannot be altered or deleted by anyone, including its original creators. This permanence ensures that users can trust the contract will behave exactly as its code specifies, now and indefinitely into the future. However, this same property means that bugs or security vulnerabilities become equally permanent, creating high stakes for proper development and auditing before deployment.

Deterministic execution ensures that smart contracts produce identical outputs given the same inputs, regardless of which node processes the transaction. This property is essential for maintaining consensus across a distributed network, as all validators must arrive at the same conclusion about the contract’s state changes. Achieving determinism requires careful design that excludes sources of randomness or external data that might vary between nodes.

Transparency makes smart contract code publicly visible and auditable on the blockchain. Anyone can examine exactly what a contract does before interacting with it, and can verify that it behaves as claimed. This openness enables community review and builds trust in ways that closed-source traditional software cannot match. Public transparency also means that vulnerabilities become visible to potential attackers, making security through obscurity impossible.

Autonomous operation allows smart contracts to function without ongoing human management. Once deployed, a contract responds automatically to incoming transactions, processing them according to its programmed logic. This removes the need to trust that administrators will honestly execute their duties and eliminates the possibility of human error or manipulation in routine operations.

How Smart Contracts Execute

The lifecycle of a smart contract begins when a developer writes code defining the contract’s storage variables, functions, and business logic. This high-level code is then compiled into low-level bytecode that blockchain virtual machines can interpret. Deployment involves submitting a special transaction containing this bytecode, which miners or validators include in a block, establishing the contract at a specific blockchain address.

Users interact with deployed contracts by sending transactions that specify which function to call and with what parameters. The network’s nodes receive these transactions and execute the contract code within their virtual machines, applying any state changes if the execution succeeds. Because all nodes run the same code with the same inputs, they arrive at identical results, enabling network-wide consensus on the contract’s updated state.

Contract execution consumes computational resources, which networks typically charge for through gas fees. This mechanism prevents denial-of-service attacks where malicious users submit computationally expensive operations to burden the network. It also creates incentives for developers to write efficient code and for users to structure their interactions economically.

State changes from successful execution become permanently recorded in the blockchain. The contract’s storage variables update to reflect new values, emitted events create searchable logs of what occurred, and any cryptocurrency or token transfers take effect. Failed executions typically revert all state changes, though they still consume gas up to the point of failure as compensation to validators who performed the computational work.

The Revolution in Financial Services

Decentralized finance represents smart contracts’ most transformative application domain to date, recreating traditional financial services without centralized intermediaries. Lending protocols like Aave and Compound allow users to deposit assets as collateral and borrow against them, with interest rates determined algorithmically based on supply and demand. Smart contracts handle collateral management, interest calculations, and liquidations entirely automatically.

Decentralized exchanges demonstrate another powerful use case, enabling trustless asset swaps between parties who never need to trust each other or a central operator. Automated market makers use mathematical formulas encoded in smart contracts to determine prices and facilitate trades, maintaining liquidity pools that anyone can contribute to or trade against. Billions of dollars in daily trading volume flow through these protocols.

Yield aggregation protocols illustrate how smart contracts can compose together, building complex strategies from simpler components. These systems automatically move user funds between different protocols to maximize returns, executing sophisticated strategies that would be impractical to manage manually. The composability enabled by shared standards and open-source code has sparked an explosion of financial innovation.

Beyond Finance: Expanding Applications

Non-fungible tokens emerged from smart contracts’ ability to represent unique digital ownership on-chain. NFT contracts track ownership of individual items, whether digital artwork, gaming assets, or representations of real-world property. The same infrastructure that enables NFT trading also enables more sophisticated applications like fractionalized ownership, royalty enforcement, and cross-platform interoperability.

Decentralized autonomous organizations use smart contracts to encode governance rules and treasury management for communities that operate without traditional corporate structures. Token holders can submit proposals, vote on decisions, and automatically execute approved actions, all through contract interactions. This model enables global coordination among participants who may never meet but share aligned incentives.

Supply chain applications leverage smart contracts’ transparency and automation to track goods from origin to destination. Recording each transfer of custody on-chain creates an immutable audit trail, while conditional payments can release funds automatically when delivery confirmations arrive. Insurance products can similarly automate claims processing, paying out immediately when oracle-verified conditions are met.

Development Languages and Ecosystems

Solidity dominates smart contract development for EVM-compatible chains, with a syntax influenced by JavaScript and C++. The language was specifically designed for blockchain development and includes features like inheritance, libraries, and complex user-defined types. Its maturity means extensive tooling, documentation, and developer resources exist to support learning and building.

Vyper offers an alternative for EVM development with a Python-inspired syntax and explicit focus on security through simplicity. The language deliberately omits features like modifiers, class inheritance, and inline assembly that can obscure contract behavior, aiming to make code more auditable and harder to accidentally make vulnerable. While less popular than Solidity, Vyper attracts developers prioritizing maximum code clarity.

Rust has become the standard for Solana development, offering memory safety guarantees and high performance suited to that network’s architecture. The language’s strictness catches many errors at compile time, though its learning curve is steeper than alternatives. Move, developed originally for Facebook’s Diem project and now used by Aptos and Sui, takes a resource-oriented approach that makes certain classes of bugs impossible by construction.

Security: The Paramount Concern

Smart contract security demands exceptional attention because the combination of immutability and financial value creates devastating consequences for vulnerabilities. The most infamous example, the 2016 DAO hack, exploited a reentrancy vulnerability to drain approximately $60 million worth of Ether. This single incident led to Ethereum’s controversial hard fork and demonstrated how quickly things can go wrong.

Reentrancy attacks occur when contracts make external calls before updating their own state, allowing the called contract to recursively call back in and exploit the incomplete state update. Integer overflow and underflow vulnerabilities arise when arithmetic operations produce results outside representable ranges, potentially turning large numbers into small ones or vice versa. Access control flaws can allow unauthorized parties to execute privileged functions.

Professional security audits have become standard practice for serious projects, with specialized firms examining code for known vulnerability patterns and logic errors. Bug bounty programs offer financial rewards to security researchers who responsibly disclose vulnerabilities rather than exploiting them. Formal verification techniques mathematically prove certain properties about contract behavior, though they remain expensive and limited in what they can guarantee.

Developers have adopted defensive practices including following established patterns like checks-effects-interactions, using well-tested library implementations rather than custom code, and deploying through upgradeable proxy patterns that allow fixing critical issues at the cost of some decentralization. Gradual rollout strategies limit exposure during initial deployment, often starting with caps on total deposits.

The Composability Advantage

Smart contracts on the same blockchain can interact freely with each other, reading state and calling functions across contract boundaries. This composability enables building complex applications by assembling existing components, much as software developers use libraries and APIs. A single transaction can trigger a cascade of interactions across multiple protocols, executing sophisticated strategies atomically.

Flash loans exemplify composability’s power, allowing users to borrow unlimited amounts without collateral provided they repay within the same transaction. Arbitrageurs use flash loans to exploit price differences across exchanges, borrowing assets, executing trades, and repaying the loan with profits in a single atomic transaction. This capability, impossible in traditional finance, emerged organically from smart contract properties.

The resulting ecosystem operates as a shared infrastructure where innovations in one protocol benefit all others that can compose with it. New yield sources become immediately available to aggregators, new collateral types can be adopted by lending protocols, and liquidity becomes fungible across applications. This network effect creates powerful incentives for building on existing platforms rather than starting from scratch.

Conclusion

Smart contracts have transformed blockchain technology from a mechanism for recording transfers into a foundation for programmable agreements and decentralized applications. Their unique properties of immutability, determinism, transparency, and autonomous operation enable new forms of coordination, commerce, and governance that were previously impractical or impossible.

The technology continues maturing as developers learn from past vulnerabilities, tooling improves, and new programming languages and verification techniques emerge. Understanding smart contracts is essential for participating in the blockchain ecosystem, whether as a developer building applications, a user interacting with protocols, or an investor evaluating projects. The implications extend far beyond finance to any domain where automated, trustworthy agreement execution creates value.

Related Primitives

Chains Using Smart Contracts

120 blockchains implement this primitive

1IN

1inch

1INCH

Leading DEX aggregator finding optimal swap routes across multiple exchanges

DeFi smart contractsdefi
AAV

Aave

AAVE

The leading decentralized lending protocol enabling borrowing and lending of crypto assets

DeFi smart contractsdefi +1
AI1

ai16z

AI16Z

AI agent framework and DAO enabling autonomous AI trading and interaction

AI smart contracts
AKT

Akash Network

AKT

Decentralized cloud computing marketplace for serverless compute resources

Infrastructure proof of stakesmart contracts
ALG

Algorand

ALGO

Pure proof-of-stake blockchain founded by Turing Award winner with focus on decentralization

Layer 1 proof of stakesmart contracts
APT

Aptos

APT

High-performance Layer 1 blockchain built by former Meta engineers using Move

Layer 1 proof of stakesmart contracts
ARB

Arbitrum

ARB

Leading Ethereum Layer 2 optimistic rollup with full EVM compatibility

Layer 2 optimistic rollupevm +2
AST

Astar

ASTR

Multi-VM smart contract hub for Polkadot supporting EVM and WebAssembly

Layer 1 proof of stakeevm +1
AVA

Avalanche

AVAX

Blazingly fast, eco-friendly blockchain platform with subnet architecture

Layer 1 proof of stakesmart contracts +3
AXS

Axie Infinity

AXS

Pioneer play-to-earn game with NFT creatures and dedicated Ronin blockchain

Gaming proof of stakesmart contracts
ETH

Base

ETH

Coinbase's Layer 2 bringing the next billion users to the blockchain

Layer 2 optimistic rollupevm +2
BEA

Beam

BEAM

Gaming-focused blockchain built as Avalanche subnet for web3 gaming

Gaming proof of stakeevm +1
TAO

Bittensor

TAO

Decentralized AI network incentivizing machine learning model development

AI proof of stakesmart contracts
BLU

Blur

BLUR

Professional NFT marketplace and aggregator focused on trader experience

NFT smart contracts
BNB

BNB Chain

BNB

Binance's high-performance blockchain ecosystem with EVM compatibility

Layer 1 proof of stakeevm +1
BON

Bonk

BONK

Solana's first major community-driven dog meme coin with wide distribution

Meme smart contracts
BSV

BSV Blockchain

BSV

A massively scalable blockchain designed for enterprise applications, data integrity, and unbounded on-chain capacity

Layer 1 proof of workutxo +1
CAN

Canto

CANTO

EVM-compatible Layer 1 focused on free public infrastructure for DeFi

Layer 1 proof of stakeevm +1
ADA

Cardano

ADA

Research-driven blockchain platform built on peer-reviewed academic research

Layer 1 proof of stakesmart contracts +3
CEL

Celo

CELO

Mobile-first blockchain focused on financial inclusion and stablecoin payments

Layer 1 proof of stakeevm +1
LIN

Chainlink

LINK

Decentralized oracle network connecting smart contracts with real-world data

Oracle oraclessmart contracts +1
COM

Compound

COMP

Pioneer DeFi lending protocol establishing the algorithmic money market model

DeFi smart contractsdefi +1
CFX

Conflux

CFX

Chinese-compliant blockchain using Tree-Graph consensus for high throughput

Layer 1 proof of workevm +1
ATO

Cosmos

ATOM

Ecosystem of interconnected sovereign blockchains communicating via IBC

Layer 0 proof of stakesmart contracts +3
CRO

Cronos

CRO

EVM-compatible blockchain built on Cosmos SDK powering Crypto.com ecosystem

Layer 1 proof of stakeevm +1
CRV

Curve Finance

CRV

Specialized AMM optimized for low-slippage stablecoin and pegged asset swaps

DeFi smart contractsautomated market maker +2
DAI

Dai

DAI

Decentralized, crypto-collateralized stablecoin maintained by MakerDAO

Stablecoin smart contractsevm
MAN

Decentraland

MANA

Decentralized virtual world platform with user-owned land and experiences

Metaverse smart contracts
WIF

dogwifhat

WIF

Solana-based memecoin featuring a Shiba Inu wearing a pink knitted hat

Memecoin smart contracts
DYD

dYdX

DYDX

Leading decentralized perpetuals exchange with dedicated Cosmos appchain

DeFi proof of stakesmart contracts
EOS

EOS

EOS

High-performance blockchain using Delegated Proof of Stake consensus

Layer 1 delegated proof of stakesmart contracts
ERG

Ergo

ERG

Research-driven Proof of Work blockchain with extended UTXO model and fair launch

Layer 1 proof of workutxo +1
ENA

Ethena

ENA

Synthetic dollar protocol using delta-hedging for yield-bearing stablecoin

DeFi smart contractsstablecoin
ETH

Ether.fi

ETHFI

Non-custodial liquid staking protocol with native restaking integration

DeFi proof of stakesmart contracts
ETH

Ethereum

ETH

The pioneering smart contract platform enabling decentralized applications and DeFi

Layer 1 proof of stakesmart contracts +3
ENS

Ethereum Name Service

ENS

Decentralized naming system mapping human-readable names to Ethereum addresses

Infrastructure smart contracts
FTM

Fantom

FTM

High-performance EVM-compatible blockchain using DAG-based consensus

Layer 1 proof of stakeevm +1
FET

Fetch.ai

FET

AI and machine learning platform enabling autonomous economic agents

Layer 1 proof of stakesmart contracts
FIL

Filecoin

FIL

Decentralized storage network incentivizing global storage providers

Storage proof of storagesmart contracts
FLR

Flare

FLR

EVM-compatible blockchain with native oracle services for cross-chain data

Layer 1 proof of stakeevm +1
FLO

FLOKI

FLOKI

Memecoin building utility ecosystem including gaming, DeFi, and NFTs

Memecoin smart contractsevm
FLO

Flow

FLOW

Consumer-focused blockchain built by Dapper Labs for mainstream applications

Layer 1 proof of stakesmart contracts
FLU

Flux

FLUX

Decentralized cloud computing infrastructure with global node network

Infrastructure proof of worksmart contracts
FXS

Frax Finance

FXS

Fractional-algorithmic stablecoin protocol with liquid staking and lending

DeFi smart contractsstablecoin
GAL

Gala Games

GALA

Blockchain gaming ecosystem with player-owned economies and node network

Gaming proof of stakesmart contracts
GMX

GMX

GMX

Decentralized perpetual exchange on Arbitrum and Avalanche with innovative liquidity model

DeFi smart contractsevm
GNO

Gnosis

GNO

Ethereum-aligned sidechain focused on payments, infrastructure, and decentralization

Layer 1 proof of stakeevm +1
ONE

Harmony

ONE

Sharded proof-of-stake blockchain focused on cross-chain interoperability

Layer 1 proof of stakeevm +1
HBA

Hedera

HBAR

Enterprise-grade public network using hashgraph consensus technology

Layer 1 hashgraphsmart contracts
HYP

Hyperliquid

HYPE

High-performance Layer 1 blockchain built for decentralized perpetual trading

Layer 1 proof of stakesmart contracts
ILV

Illuvium

ILV

AAA-quality open-world RPG and auto-battler built on Immutable X

Gaming smart contracts
IMX

Immutable

IMX

Gaming-focused blockchain infrastructure with zkEVM and NFT capabilities

Gaming zk rollupevm +1
INJ

Injective

INJ

Blockchain optimized for DeFi applications with built-in financial primitives

Layer 1 proof of stakesmart contracts
ICP

Internet Computer

ICP

Blockchain designed to host smart contracts and full web applications at web speed

Layer 1 consensus protocolsmart contracts
IOT

IOTA

IOTA

Feeless distributed ledger designed for machine-to-machine transactions

Infrastructure dagsmart contracts
JAS

JasmyCoin

JASMY

Japanese data democracy platform enabling user control over personal information

Infrastructure smart contracts
JUP

Jupiter

JUP

Leading DEX aggregator and DeFi hub on Solana with perpetuals and launchpad

DeFi smart contractsdefi
KDA

Kadena

KDA

Scalable Proof of Work blockchain with braided chain architecture and Pact smart contracts

Layer 1 proof of worksmart contracts
KAV

Kava

KAVA

Cosmos-based blockchain combining EVM and Cosmos SDK environments for DeFi

Layer 1 proof of stakeevm +1
KLA

Klaytn

KLAY

Enterprise-focused blockchain developed by Kakao for Asian market adoption

Layer 1 proof of stakeevm +1
KSM

Kusama

KSM

Polkadot's canary network for testing cutting-edge blockchain features

Layer 0 proof of stakesmart contracts
ZRO

LayerZero

ZRO

Omnichain interoperability protocol enabling cross-chain messaging and applications

Infrastructure cross chainsmart contracts
LDO

Lido

LDO

Largest liquid staking protocol enabling staked ETH liquidity through stETH

Liquid Staking smart contractsliquid staking +2

Linea

Consensys-built zkEVM offering Ethereum scaling with MetaMask integration

Layer 2 zk rollupevm +1
MKR

Maker

MKR

Protocol behind DAI stablecoin and pioneer of decentralized finance

DeFi smart contractsdefi +2
MNT

Mantle

MNT

Ethereum Layer 2 with modular data availability backed by massive treasury

Layer 2 optimistic rollupevm +1
OM

MANTRA

OM

Regulatory-compliant Layer 1 blockchain for tokenized real-world assets

Layer 1 proof of stakesmart contracts
MIN

Mina Protocol

MINA

Succinct blockchain using zero-knowledge proofs to maintain constant 22KB size

Layer 1 proof of stakezero knowledge +1
MOD

Mode Network

MODE

Optimism-based Layer 2 focused on DeFi innovation with yield-generating mechanisms

Layer 2 smart contractsevm
GLM

Moonbeam

GLMR

Ethereum-compatible smart contract platform on Polkadot

Layer 1 proof of stakeevm +1
MOR

Morpho

MORPHO

Lending protocol optimizer that improves capital efficiency of existing DeFi markets

DeFi smart contractsevm
MOV

Movement

MOVE

Ethereum Layer 2 bringing Move language execution to the Ethereum ecosystem

Layer 2 proof of stakesmart contracts
EGL

MultiversX

EGLD

Highly scalable blockchain using adaptive state sharding for high throughput

Layer 1 proof of stakesmart contracts
NEA

NEAR Protocol

NEAR

Sharded, developer-friendly blockchain focused on usability and AI applications

Layer 1 proof of stakesmart contracts +1
NEO

Neo

NEO

Chinese smart contract platform focused on digital assets and identity

Layer 1 proof of stakesmart contracts
CKB

Nervos Network

CKB

Layered blockchain network using UTXO model and Proof of Work for security

Layer 1 proof of worksmart contracts +1
NOT

Notcoin

NOT

Telegram-native tap-to-earn game that onboarded millions to TON blockchain

Gaming smart contracts
ROS

Oasis Network

ROSE

Privacy-focused Layer 1 with confidential smart contract execution

Layer 1 proof of stakesmart contracts
OCE

Ocean Protocol

OCEAN

Decentralized data exchange protocol enabling data sharing while preserving privacy

Infrastructure smart contracts
OND

Ondo Finance

ONDO

Institutional-grade protocol bringing real-world assets to DeFi

RWA smart contractsreal world assets
OP

Optimism

OP

Ethereum Layer 2 rollup focused on public goods funding and the Superchain vision

Layer 2 optimistic rollupevm +2
OSM

Osmosis

OSMO

Leading DEX in the Cosmos ecosystem with IBC-enabled cross-chain trading

DeFi proof of stakesmart contracts
PEN

Pendle

PENDLE

Yield trading protocol enabling tokenization and trading of future yields

DeFi smart contractsdefi
PEP

Pepe

PEPE

Frog-themed meme coin that became one of the largest by market cap

Meme smart contracts
DOT

Polkadot

DOT

Heterogeneous multi-chain network enabling cross-chain communication and shared security

Layer 0 proof of stakeparachains +3
PEN

Pudgy Penguins

PENGU

NFT brand expanding into toys, gaming, and consumer products with PENGU token

NFT smart contracts
QNT

Quant

QNT

Enterprise blockchain interoperability platform connecting distributed ledgers

Interoperability smart contracts
XRD

Radix

XRD

Full-stack Layer 1 built specifically for DeFi with asset-oriented programming

Layer 1 proof of stakesmart contracts
RAY

Raydium

RAY

Leading AMM and liquidity provider on Solana with orderbook integration

DeFi smart contractsdefi
RPL

Rocket Pool

RPL

Decentralized Ethereum liquid staking protocol with permissionless node operation

DeFi proof of stakesmart contracts
RON

Ronin

RON

Gaming-focused EVM sidechain built by Sky Mavis for Axie Infinity

Layer 1 proof of stakeevm +1
SAF

Safe

SAFE

Leading smart contract wallet platform securing billions in digital assets

Infrastructure smart contractsevm
SCR

Scroll

SCR

zkEVM rollup with native EVM compatibility for seamless Ethereum scaling

Layer 2 zk rollupevm +1
SCR

Secret Network

SCRT

Privacy-focused blockchain enabling confidential smart contracts through TEE

Layer 1 proof of stakesmart contracts
SEI

Sei

SEI

High-performance Layer 1 optimized for trading and exchange applications

Layer 1 proof of stakeevm +1
SHI

Shiba Inu

SHIB

Meme coin evolved into ecosystem with Layer 2 and DeFi components

Meme/Ecosystem evmsmart contracts
AGI

SingularityNET

AGIX

Decentralized marketplace for AI services aiming toward artificial general intelligence

AI smart contracts
SKL

SKALE

SKL

Ethereum-native elastic blockchain network with zero gas fees for users

Layer 2 proof of stakeevm +1
SOL

Solana

SOL

High-performance blockchain known for fast transactions and low fees

Layer 1 proof of stakeproof of history +3
S

Sonic

S

Next-generation high-performance EVM chain evolved from Fantom

Layer 1 proof of stakeevm +1
STX

Stacks

STX

Bitcoin Layer 2 enabling smart contracts secured by Bitcoin

Bitcoin Layer 2 proof of transfersmart contracts
STR

Starknet

STRK

Validity rollup using STARK proofs for Ethereum scaling with Cairo smart contracts

Layer 2 zk rollupsmart contracts +1
SUI

Sui

SUI

High-performance Layer 1 blockchain using the Move programming language

Layer 1 proof of stakesmart contracts
SNX

Synthetix

SNX

Derivatives liquidity protocol powering synthetic assets and perpetual futures

DeFi smart contractsdefi
XTZ

Tezos

XTZ

Self-amending blockchain with on-chain governance and formal verification

Layer 1 proof of stakesmart contracts
SAN

The Sandbox

SAND

Gaming-focused virtual world with voxel graphics and major brand partnerships

Metaverse smart contracts
THE

Theta Network

THETA

Decentralized video streaming and delivery network for bandwidth sharing

Infrastructure proof of stakesmart contracts
TON

Toncoin

TON

Telegram-associated blockchain designed for mass adoption through messaging integration

Layer 1 proof of stakesmart contracts +1
TRX

TRON

TRX

High-throughput blockchain known for stablecoin transfers and entertainment applications

Layer 1 proof of stakesmart contracts +1
UNI

Uniswap

UNI

The leading decentralized exchange protocol pioneering automated market makers

DeFi smart contractsautomated market maker +2
USU

Usual

USUAL

Stablecoin protocol backed by RWAs that redistributes revenue to token holders

DeFi smart contracts
VET

VeChain

VET

Enterprise blockchain focused on supply chain and sustainability solutions

Layer 1 proof of authoritysmart contracts
VLX

Velas

VLX

AI-enhanced hybrid blockchain combining EVM and Solana-based architecture

Layer 1 proof of stakeevm +1
VIR

Virtuals Protocol

VIRTUAL

Protocol for creating and co-owning AI agents with tokenized ownership

AI smart contracts
WAV

Waves

WAVES

Blockchain platform focused on easy token creation and decentralized exchange

Layer 1 proof of stakesmart contracts
WLD

Worldcoin

WLD

Identity protocol using biometric verification for proof of personhood

Identity proof of stakeevm +1
W

Wormhole

W

Cross-chain messaging protocol enabling asset transfers between major blockchains

Bridge cross chainsmart contracts
ZET

ZetaChain

ZETA

Omnichain smart contract platform enabling native cross-chain applications

Interoperability proof of stakesmart contracts
ZIL

Zilliqa

ZIL

First public blockchain to implement sharding for scalability

Layer 1 proof of stakesmart contracts
ZK

zkSync

ZK

Ethereum Layer 2 ZK rollup with native account abstraction and EVM compatibility

Layer 2 zk rollupevm +2