Skip to main content

Glossary

Quick reference for Web3 and API terminology used throughout this documentation.

Aโ€‹

ABI (Application Binary Interface)โ€‹

A JSON specification that defines how to interact with a smart contract โ€” its functions, parameters, and return types. Required for calling contract methods.

Addressโ€‹

A 42-character hexadecimal string (starting with 0x) that identifies an account or contract on Ethereum. Example: 0xd8dA6BF26964aF9D7eEd9e03E53415D37aA96045

AMM (Automated Market Maker)โ€‹

A DeFi protocol that uses liquidity pools and algorithms (instead of order books) to enable token swaps. Examples: Uniswap, Curve.

API Keyโ€‹

A secret credential for authenticating API requests. Provides higher rate limits and usage tracking.

APY (Annual Percentage Yield)โ€‹

The annualized return on a DeFi position, including compound interest. A 10% APY means $100 becomes $110 after one year.

Bโ€‹

Baseโ€‹

A Layer 2 blockchain built on Ethereum using Optimistic Rollup technology. The Web3 Identity API accepts x402 payments on Base.

Blockโ€‹

A batch of transactions permanently recorded on the blockchain. Ethereum produces a block roughly every 12 seconds.

Bridgeโ€‹

A protocol that transfers assets between different blockchains. Example: Moving ETH from Ethereum to Arbitrum.

Cโ€‹

CCIP (Cross-Chain Interoperability Protocol)โ€‹

Chainlink's protocol for secure cross-chain communication. Also refers to EIP-3668 for off-chain data resolution.

Chain IDโ€‹

A unique identifier for a blockchain network. Ethereum Mainnet = 1, Base = 8453, Polygon = 137.

Checksum Addressโ€‹

An address with mixed-case letters that includes error detection. 0xABC... vs 0xabc... โ€” the checksum version catches typos.

Contenthashโ€‹

An ENS record pointing to decentralized content (IPFS, IPNS, Arweave). Enables .eth.limo websites.

Contractโ€‹

See Smart Contract.

Dโ€‹

DAO (Decentralized Autonomous Organization)โ€‹

An organization governed by smart contracts and token holder votes rather than traditional management.

DeFi (Decentralized Finance)โ€‹

Financial services built on blockchain โ€” lending, trading, yield farming โ€” without traditional intermediaries.

DEX (Decentralized Exchange)โ€‹

A trading platform that operates via smart contracts without a central authority. Examples: Uniswap, SushiSwap.

Eโ€‹

EIP (Ethereum Improvement Proposal)โ€‹

A design document proposing new Ethereum features or standards. EIP-20 defined ERC-20 tokens.

ENS (Ethereum Name Service)โ€‹

A naming system that maps human-readable names (like vitalik.eth) to Ethereum addresses and other records.

ERC (Ethereum Request for Comments)โ€‹

A standard for Ethereum smart contracts. Common ERCs:

  • ERC-20: Fungible tokens (USDC, UNI)
  • ERC-721: NFTs (unique tokens)
  • ERC-1155: Multi-token standard

EOA (Externally Owned Account)โ€‹

A regular Ethereum account controlled by a private key (as opposed to a smart contract account).

Fโ€‹

Farcasterโ€‹

A decentralized social network built on Ethereum. Users have portable identities and own their social graph.

FID (Farcaster ID)โ€‹

A unique numeric identifier for a Farcaster account. Like a user ID but on-chain.

Finalityโ€‹

When a blockchain transaction becomes irreversible. On Ethereum, typically after ~15 blocks (~3 minutes).

Free Tierโ€‹

The Web3 Identity API's complimentary usage allowance: 100 calls/day per wallet/IP (200 with SIWE authentication).

Gโ€‹

Gasโ€‹

The unit measuring computational effort on Ethereum. Every transaction requires gas, paid in ETH.

Gas Priceโ€‹

The cost per unit of gas, measured in gwei. Higher gas prices = faster transaction confirmation.

Gweiโ€‹

A denomination of ETH. 1 gwei = 0.000000001 ETH (10โปโน). Used for gas prices.

Hโ€‹

Hashโ€‹

A fixed-length string produced by a cryptographic function. Transaction hashes identify specific transactions.

HODLโ€‹

Crypto slang for "hold" โ€” keeping assets long-term regardless of price volatility.

Iโ€‹

IPFS (InterPlanetary File System)โ€‹

A decentralized file storage network. Content is addressed by hash, making it immutable and censorship-resistant.

Jโ€‹

JSON-RPCโ€‹

The protocol for communicating with Ethereum nodes. The Web3 Identity API abstracts this complexity.

Lโ€‹

L1 (Layer 1)โ€‹

The base blockchain โ€” Ethereum mainnet. Handles final settlement and security.

L2 (Layer 2)โ€‹

Scaling solutions built on top of L1. Process transactions faster/cheaper, then settle to Ethereum. Examples: Arbitrum, Optimism, Base.

Lens Protocolโ€‹

A decentralized social graph on Polygon. Users own their profiles, content, and connections as NFTs.

Liquidityโ€‹

The ease of trading an asset without affecting its price. High liquidity = easy to buy/sell.

Liquidity Poolโ€‹

A smart contract holding token pairs that enable decentralized trading. Liquidity providers earn fees.

Mโ€‹

Mainnetโ€‹

The production blockchain network where real transactions occur (as opposed to testnets).

Merkle Treeโ€‹

A data structure enabling efficient verification of large datasets. Used in blockchain proofs.

Micropaymentโ€‹

A very small payment, typically under $1. x402 protocol enables API micropayments.

Nโ€‹

NFT (Non-Fungible Token)โ€‹

A unique digital asset on blockchain. Each token is distinct (unlike fungible tokens like ETH where each unit is identical).

Nodeโ€‹

A computer running blockchain software, maintaining a copy of the chain and validating transactions.

Nonceโ€‹

A number used once โ€” in Ethereum, tracks the count of transactions from an address.

Oโ€‹

Off-chainโ€‹

Data or computation that happens outside the blockchain. Cheaper but requires trust assumptions.

On-chainโ€‹

Data or computation recorded directly on the blockchain. Expensive but trustless and permanent.

Oracleโ€‹

A service providing external data to smart contracts. Example: Chainlink price feeds.

Pโ€‹

Private Keyโ€‹

A secret 256-bit number that controls an Ethereum account. Never share it โ€” anyone with your private key controls your funds.

Protocolโ€‹

A set of rules governing a system. In DeFi, protocols are smart contract systems (Aave, Uniswap, etc.).

Public Keyโ€‹

Derived from a private key; used to generate your Ethereum address. Safe to share.

Rโ€‹

Rate Limitโ€‹

Maximum API requests allowed per time period. Web3 Identity API: 100/day free, higher with authentication.

Resolverโ€‹

An ENS smart contract that stores and returns records for a name. Each ENS name points to a resolver.

RPC (Remote Procedure Call)โ€‹

A protocol for requesting data from a blockchain node. The Web3 Identity API handles RPC complexity for you.

Sโ€‹

SIWE (Sign-In with Ethereum)โ€‹

An authentication standard where users prove wallet ownership by signing a message. No passwords needed.

Slippageโ€‹

The difference between expected and actual trade prices due to market movement during execution.

Smart Contractโ€‹

A program stored on blockchain that automatically executes when conditions are met. Written in Solidity for Ethereum.

Stablecoinโ€‹

A token designed to maintain a stable value, usually pegged to USD. Examples: USDC, DAI, USDT.

Tโ€‹

Testnetโ€‹

A blockchain network for testing with fake tokens. Examples: Goerli, Sepolia (Ethereum testnets).

Tokenโ€‹

A digital asset on blockchain. Can be fungible (ERC-20) or non-fungible (ERC-721).

Transactionโ€‹

An operation recorded on blockchain โ€” sending tokens, calling contracts, etc. Each has a unique hash.

TVL (Total Value Locked)โ€‹

The total USD value of assets deposited in a DeFi protocol. A key metric for protocol size/adoption.

Uโ€‹

USDCโ€‹

USD Coin โ€” a regulated stablecoin pegged 1:1 to the US dollar. Used for x402 payments on this API.

Vโ€‹

Validatorโ€‹

In Proof of Stake, a node that proposes and validates new blocks. Requires staking 32 ETH on Ethereum.

Viemโ€‹

A TypeScript library for Ethereum interactions. Modern alternative to ethers.js and web3.js.

Wโ€‹

Walletโ€‹

Software or hardware that stores private keys and enables blockchain interactions. Examples: MetaMask, Rainbow, Ledger.

Weiโ€‹

The smallest denomination of ETH. 1 ETH = 10ยนโธ wei.

Wrapped Tokenโ€‹

A token representing another asset on a different chain. wETH (Wrapped ETH) is ERC-20 compatible ETH.

Xโ€‹

x402โ€‹

A payment protocol using HTTP status code 402 (Payment Required) for API micropayments. Sign with your wallet, pay per request.

Yโ€‹

Yieldโ€‹

Returns earned from DeFi activities โ€” staking, lending, liquidity provision, etc.

Yield Farmingโ€‹

Maximizing returns by moving assets between DeFi protocols to capture the best yields.

Zโ€‹

Zero-Knowledge Proofโ€‹

A cryptographic method proving something is true without revealing the underlying data. Used in ZK-rollups for scaling.


API-Specific Termsโ€‹

Endpointโ€‹

A specific API URL path that returns data. Example: /api/ens/resolve/:name

Free Tierโ€‹

100 API calls per day without authentication (200 with SIWE). Resets at midnight UTC.

Unlimited API calls via x402 micropayments. Costs $0.001-$0.02 per request depending on endpoint.

x-priceโ€‹

A custom header indicating the cost of a paid endpoint. Example: x-price: $0.01


Missing a term? Let us know and we'll add it!