Mostrando 1001 de 1001 termos
Prova de História (PoH)
Core ProtocolA clock mechanism that cryptographically proves the passage of time between events. PoH uses a sequential SHA-256 hash c…
Tower BFT
Core ProtocolSolana's custom BFT consensus algorithm built on top of Proof of History. Tower BFT uses PoH as a clock to reduce commun…
Slot
Core ProtocolA time window during which a designated leader validator can produce a block. Each slot lasts approximately 400 millisec…
Bloco
Core ProtocolA set of entries produced by a leader during a single slot. A block contains transactions bundled into entries, each wit…
Época
Core ProtocolA period of 432,000 slots (approximately 2-3 days) that defines a staking cycle. At each epoch boundary, the leader sche…
Agenda de Líderes
Core ProtocolA deterministic mapping of slots to validators for an entire epoch, computed from stake weights. Validators with more st…
Validador
Core ProtocolA node that participates in the Solana network by validating transactions, voting on blocks, and (when selected as leade…
Conta de Voto
Core ProtocolAn on-chain account that records a validator's Tower BFT votes and tracks their voting history. Each validator has one v…
Stake
Core ProtocolSOL tokens that are delegated to a validator to increase its voting weight and earn staking rewards. Staking is non-cust…
Conta de Stake
Core ProtocolA dedicated on-chain account that holds delegated SOL for staking. Each stake account has a staker authority (can redele…
Delegador
Core ProtocolA SOL holder who delegates tokens to a validator's stake without running a node themselves. Delegators earn a share of i…
Fork
Core ProtocolA divergence in the blockchain where two or more blocks are produced for the same slot or different validators build on …
Fork Choice
Core ProtocolThe algorithm validators use to decide which fork to build upon when multiple competing chains exist. Solana combines To…
GHOST (Greedy Heaviest Observed SubTree)
Core ProtocolGreedy Heaviest Observed SubTree—a fork-choice rule where validators select the fork that has the most cumulative stake-…
Entrada
Core ProtocolAn ordered unit within a block containing a mix of PoH ticks and transaction batches. Each entry includes a PoH hash, a …
Tick
Core ProtocolA PoH entry with zero transactions that advances the clock. There are 64 ticks per slot by default, each representing a …
Shred
Core ProtocolThe smallest unit of block data propagated through the network via Turbine. Blocks are split into shreds of up to 1,228 …
Turbine
Core ProtocolSolana's block propagation protocol inspired by BitTorrent. Instead of the leader sending a full block to every validato…
Erasure Coding
Core ProtocolA Reed-Solomon error-correction scheme applied to shreds during block propagation. The leader encodes each batch of 32 d…
Block Propagation
Core ProtocolThe process of distributing a newly produced block from the leader to all validators in the cluster. Solana uses Turbine…
Protocolo Gossip
Core ProtocolA protocol used by validators to exchange metadata and discover peers without relying on a central server. Gossip propag…
CRDS (Cluster Replicated Data Store)
Core ProtocolCluster Replicated Data Store—the data structure underlying Solana's gossip protocol. CRDS uses a push/pull model where …
TPU (Unidade de Processamento de Transações)
Core ProtocolTransaction Processing Unit—the pipeline within a leader validator that ingests, verifies, and executes transactions. Th…
TVU (Unidade de Validação de Transações)
Core ProtocolTransaction Validation Unit—the pipeline on non-leader validators that receives shreds, reconstructs blocks, and replays…
Estágio de Replay
Core ProtocolThe TVU component that replays received blocks by re-executing all transactions against the bank state. Replay stage ver…
Bank
Core ProtocolAn in-memory representation of the accounts state at a specific slot. Each slot gets its own Bank that inherits from its…
AccountsDB
Core ProtocolThe persistent storage layer for all Solana accounts. AccountsDB stores account data in memory-mapped AppendVec files, i…
AppendVec
Core ProtocolA memory-mapped, append-only file used by AccountsDB to store account data. Each AppendVec corresponds to a specific slo…
Snapshot
Core ProtocolA serialized copy of the full accounts state at a rooted slot, used for fast validator bootstrapping. Full snapshots con…
Blockstore
Core ProtocolA RocksDB-based database that stores raw shreds and block metadata on the validator's disk. Blockstore indexes shreds by…
Livro-Razão (Ledger)
Core ProtocolThe complete ordered history of all transactions processed by the Solana cluster. The ledger is composed of sequential b…
Bloco Gênesis
Core ProtocolThe first block (slot 0) of a Solana cluster that defines initial configuration: the mint account, initial token supply,…
Sealevel
Core ProtocolSolana's parallel transaction execution engine. Sealevel can process thousands of transactions simultaneously by analyzi…
SVM (Máquina Virtual Solana)
Core ProtocolThe Solana Virtual Machine—the execution environment that runs on-chain programs. SVM loads SBF bytecode, provides sysca…
BPF (Berkeley Packet Filter)
Core ProtocolBerkeley Packet Filter—the original bytecode format used for Solana programs, inherited from Linux's eBPF. Programs writ…
SBF (Formato de Bytecode Solana)
Core ProtocolSolana Bytecode Format—Solana's customized evolution of BPF. SBF adds Solana-specific syscalls, modifies calling convent…
VDF (Função de Atraso Verificável)
Core ProtocolVerifiable Delay Function—a function that takes a prescribed amount of sequential computation to evaluate but whose outp…
Cadeia de Hash SHA-256
Core ProtocolThe core mechanism of Proof of History. A SHA-256 hash is computed sequentially—each hash takes the previous hash as inp…
Finalidade
Core ProtocolThe guarantee that a transaction cannot be reversed. Solana offers two levels: optimistic confirmation (~400ms, 66.7%+ s…
Confirmation
Core ProtocolA vote by a validator on a block, weighted by the validator's stake. The more stake-weighted confirmations a slot receiv…
Confirmação Otimista
Core ProtocolA transaction confirmation level achieved when 66.7%+ of total stake has voted on the slot, typically within ~400ms. Opt…
Rooted
Core ProtocolA slot that has been finalized by achieving maximum lockout in Tower BFT—meaning 31+ consecutive confirmations have been…
Níveis de Compromisso
Core ProtocolThe three transaction confirmation tiers exposed by Solana RPC: 'processed' (transaction executed by leader, not yet vot…
Lockout
Core ProtocolThe period during which a Tower BFT vote prevents a validator from switching to a competing fork. Lockouts double with e…
Supermaioria
Core ProtocolA threshold of more than 2/3 (66.7%) of total active stake agreeing on a particular fork. Supermajority is required for …
Cluster
Core ProtocolA set of validators working together to maintain a single Solana ledger. Solana operates three main clusters: mainnet-be…
Runtime
Core ProtocolThe component of the SVM responsible for loading programs, enforcing account access rules (ownership, writability, signe…
Firedancer
Core ProtocolA from-scratch Solana validator client written in C by Jump Crypto. Firedancer aims for significant performance improvem…
Frankendancer
Core ProtocolA hybrid Solana validator client that combines Firedancer's high-performance networking and block production components …
Agave
Core ProtocolThe Rust-based Solana validator client maintained by Anza (formerly Solana Labs). Agave is the original and most widely …
Jito Validator Client
Core ProtocolA modified fork of the Agave validator client maintained by Jito Labs that adds an out-of-protocol block space auction. …
SIMD (Solana Improvement Document)
Core ProtocolA formal specification document describing proposed and accepted changes to the Solana protocol, analogous to Ethereum's…
Alpenglow
Core ProtocolA next-generation consensus protocol proposed in SIMD-0326 that aims to collapse Solana's legacy systems (Proof of Histo…
SIMD-123 (Block Revenue Sharing)
Core ProtocolA protocol change enabling validators to automatically share block revenue (priority fees and MEV tips) with their deleg…
Anza
Core ProtocolA development organization that spun out of Solana Labs in early 2024 to independently maintain and develop the Agave va…
Eclipse
Core ProtocolA modular Layer-2 rollup launched on Ethereum mainnet in November 2024 that uses the Solana Virtual Machine (SVM) for ex…
Sonic SVM
Core ProtocolThe first chain extension (appchain) on Solana, purpose-built for gaming applications using the HyperGrid framework. Son…
Network Extension
Core ProtocolA Solana-native scaling paradigm where an appchain runs its own SVM execution environment but settles state back to Sola…
Altura do Bloco
Core ProtocolThe number of blocks produced in the ledger since the genesis block. Block height increments only for slots that success…
Bootstrap Validator
Core ProtocolThe first validator in a Solana cluster that produces the genesis block and bootstraps the initial ledger. The bootstrap…
Confirmed Block
Core ProtocolA block that has received votes from validators representing a supermajority (66.7%+) of the cluster's active stake, ach…
Control Plane
Core ProtocolThe gossip network that connects all nodes in a Solana cluster for metadata exchange, peer discovery, and protocol coord…
Data Plane
Core ProtocolThe high-throughput multicast network used for propagating block data (shreds) and forwarding transactions between valid…
Configuração Gênesis
Core ProtocolThe configuration file that defines the initial state of a Solana cluster at genesis, including the initial token supply…
Leader
Core ProtocolThe validator currently designated to produce blocks for a given slot, as determined by the leader schedule. The leader …
Ledger Vote
Core ProtocolA validator's on-chain attestation affirming that it has verified and replayed a specific block, recorded as a hash of t…
Raiz
Core ProtocolA block that has reached maximum lockout depth in Tower BFT, meaning 31 or more consecutive confirmations have been buil…
Tick Height
Core ProtocolThe ordinal position of a tick in the ledger, counting from the first tick of the genesis block. With 64 ticks per slot,…
Transactions Entry
Core ProtocolAn entry in a block that contains one or more transactions along with a PoH hash proving their temporal ordering. Unlike…
Votor
Core ProtocolThe vote-optimized transaction ordering component of the Alpenglow consensus protocol. Votor handles off-chain voting an…
Alpenglow Certificate
Core ProtocolA fast finality certificate produced by the Alpenglow consensus protocol when a supermajority of validators (66.7%+ of s…
Fast Finalization
Core ProtocolThe sub-second transaction finality goal of the Alpenglow consensus protocol, targeting approximately 150 milliseconds f…
Core BPF Programs
Core ProtocolAn initiative to migrate Solana's native programs (System Program, Stake Program, Vote Program, and others currently com…
Loader v4
Core ProtocolThe next-generation Solana program loader designed to replace the current Upgradeable BPF Loader (v3). Loader v4 introdu…
Feature Gate
Core ProtocolThe mechanism for activating protocol changes on Solana's mainnet cluster. Each feature is identified by a unique pubkey…
Secp256k1 Precompile
Core ProtocolA native Solana program (address: KeccakSecp256k11111111111111111111111111111) that verifies secp256k1 ECDSA signatures …
Secp256r1 Precompile (P256)
Core ProtocolA native Solana program for verifying ECDSA signatures on the secp256r1 (P-256/prime256v1) elliptic curve, enabling WebA…
Ed25519 Precompile
Core ProtocolA native Solana program (address: Ed25519SigVerify111111111111111111111111111) that enables batch verification of Ed2551…
Program Cache
Core ProtocolA runtime cache that stores recently loaded and JIT-compiled program binaries in memory, avoiding the cost of re-loading…
Call Depth Limit
Core ProtocolThe maximum depth of 4 nested cross-program invocations (CPIs) allowed within a single Solana transaction. Program A can…
Heap Memory
Core ProtocolThe dynamic memory region available to SBF programs during execution, defaulting to 32KB. Programs use heap memory for d…
Nakamoto Consensus
Core ProtocolConsensus family where the longest (or heaviest) valid chain is considered canonical, originally used in Bitcoin's Proof…
FLP Impossibility
Core ProtocolFischer-Lynch-Paterson impossibility result (1985): no deterministic consensus protocol can guarantee agreement in an as…
Tendermint Consensus
Core ProtocolBFT consensus protocol using two-phase voting (prevote + precommit) with a 2/3 supermajority threshold. Unlike Tower BFT…
Sigma Protocol
Core ProtocolThree-move interactive proof (commit, challenge, response) proving knowledge of a secret without revealing it. Used in S…
Twisted Edwards Curve
Core ProtocolElliptic curve form optimized for fast addition operations, used by Ed25519 (Curve25519 in twisted Edwards form). Solana…
Conta
Programming ModelThe fundamental data storage unit on Solana. Every piece of state is stored in an account identified by a 32-byte public…
Programa
Programming ModelExecutable code deployed on-chain, equivalent to a smart contract on other blockchains. Programs are stateless—they stor…
Instrução
Programming ModelA single operation within a transaction that invokes a program. An instruction specifies: (1) the program ID to call, (2…
Transação
Programming ModelAn atomic unit of execution containing one or more instructions, a recent blockhash, and one or more signatures. All ins…
Versioned Transaction
Programming ModelA transaction format introduced with v0 that supports address lookup tables. Legacy transactions include all pubkeys inl…
Message
Programming ModelThe unsigned payload of a transaction containing: a header (signer/read-only counts), an array of account public keys, a…
Assinatura
Programming ModelA 64-byte Ed25519 digital signature over a transaction's message. Each signer in a transaction produces one signature. T…
Ed25519
Programming ModelThe elliptic curve digital signature algorithm used by Solana for all transaction signing. Ed25519 uses Curve25519 and p…
Par de Chaves
Programming ModelA pair of a 32-byte Ed25519 private key and its corresponding 32-byte public key. Keypairs are used to sign transactions…
Chave Pública (Pubkey)
Programming ModelA 32-byte Ed25519 public key that serves as the unique address for accounts on Solana. Pubkeys are displayed as Base58-e…
Endereço Derivado de Programa (PDA)
Programming ModelAn account address derived deterministically from a program ID and a set of seeds, with no corresponding private key. PD…
Seeds
Programming ModelByte arrays used as inputs to derive a Program Derived Address. Seeds can be any combination of static strings, user pub…
Bump Seed
Programming ModelA single byte (255 down to 0) appended to PDA seeds to push the derived address off the Ed25519 curve. find_program_addr…
find_program_address
Programming ModelA function that derives a PDA by iterating bump seeds from 255 down to 0 until finding a pubkey not on the Ed25519 curve…
Invocação Entre Programas (CPI)
Programming ModelA mechanism for one program to call another program's instructions during execution. CPIs enable composability—e.g., a D…
invoke()
Programming ModelThe Solana SDK function used to execute a CPI without PDA signing: `invoke(instruction, account_infos)`. All required si…
invoke_signed()
Programming ModelThe Solana SDK function for CPIs where a PDA must sign: `invoke_signed(instruction, account_infos, signer_seeds)`. The r…
Programa do Sistema
Programming ModelThe built-in native program (address: 11111111111111111111111111111111) responsible for creating new accounts, transferr…
Create Account
Programming ModelA System Program instruction that creates a new account with specified space and owner, funding it with enough lamports …
Lamport
Programming ModelThe smallest unit of SOL, named after Leslie Lamport. 1 SOL = 1,000,000,000 (10^9) lamports. All balances and transfers …
SOL
Programming ModelThe native token of the Solana blockchain, used for paying transaction fees, staking, and rent. 1 SOL equals 1 billion l…
Aluguel (Rent)
Programming ModelA fee mechanism that charges accounts for storing data on-chain. Accounts must maintain a minimum lamport balance propor…
Isenção de Aluguel
Programming ModelThe state where an account holds enough lamports to cover two years of rent, making it effectively permanent. The minimu…
Proprietário (Conta)
Programming ModelThe program that has exclusive write access to an account's data and can debit its lamport balance. Every account has an…
Autoridade
Programming ModelA pubkey with administrative privileges over a resource—such as the mint authority (can mint tokens), freeze authority (…
Assinante
Programming ModelAn account that has provided a valid Ed25519 signature in the current transaction. The runtime enforces the is_signer fl…
Conta Gravável
Programming ModelAn account marked as writable in an instruction's account metas, allowing the program to modify its data or lamport bala…
Executable Account
Programming ModelAn account flag indicating the account contains deployed program bytecode. Once marked executable, an account cannot be …
BPF Loader
Programming ModelA built-in program that loads and executes SBF programs. Solana has multiple loader versions: the deprecated BPF Loader …
Upgradeable BPF Loader
Programming ModelThe current BPF Loader (BPFLoaderUpgradeab1e111...) that supports deploying and upgrading programs. It creates three acc…
Program Data Account
Programming ModelThe account that stores the actual SBF ELF bytecode for an upgradeable program. It is separate from the program's main a…
Upgrade Authority
Programming ModelThe pubkey authorized to upgrade a program's bytecode via the Upgradeable BPF Loader. Only the upgrade authority can dep…
Native Program
Programming ModelA program compiled directly into the validator binary rather than deployed as SBF bytecode. Native programs include the …
Sysvar
Programming ModelSpecial read-only accounts maintained by the runtime that expose cluster state to programs. Key sysvars include Clock (s…
Clock Sysvar
Programming ModelA sysvar (address: SysvarC1ock11111111111111111111111111111111) that provides the current slot, epoch, unix_timestamp, a…
Account Data
Programming ModelThe byte array stored in an account that holds program-specific state. Data is typically serialized using Borsh and must…
Borsh
Programming ModelBinary Object Representation Serializer for Hashing—the standard serialization format for Solana program data. Borsh pro…
Serialização / Desserialização
Programming ModelThe process of converting in-memory data structures to bytes (serialization) and back (deserialization) for on-chain sto…
Address Lookup Table (ALT)
Programming ModelAn on-chain account that stores up to 256 pubkeys, enabling v0 transactions to reference accounts by 1-byte index instea…
Transaction Size Limit
Programming ModelThe maximum serialized size of a Solana transaction: 1,232 bytes, matching the IPv6 minimum MTU to ensure single-packet …
Orçamento de Computação
Programming ModelThe maximum compute units a transaction can consume. Default is 200,000 CU per instruction (max 1.4M CU per transaction)…
Unidades de Computação (CU)
Programming ModelA measure of computational resources consumed by transaction execution, analogous to gas on Ethereum. Each BPF instructi…
Program Log (msg! / sol_log)
Programming ModelDiagnostic output from programs using `msg!()` (Anchor) or `sol_log()` (native). Logs appear in transaction metadata and…
Return Data (set_return_data)
Programming ModelA mechanism for programs to return data to the caller after CPI, introduced in v1.10. Programs call `set_return_data(dat…
AccountInfo
Programming ModelThe runtime struct passed to programs for each account in an instruction: `AccountInfo { key, is_signer, is_writable, la…
Program ID
Programming ModelThe public key that uniquely identifies a deployed program. It's the address of the program's executable account. When i…
Entrypoint
Programming ModelThe function that the Solana runtime calls when a program is invoked. Native programs use the `entrypoint!()` macro whic…
Discriminador
Programming ModelAn 8-byte identifier prepended to account data and instruction data to distinguish types. Anchor computes it as the firs…
IDL (Linguagem de Definição de Interface)
Programming ModelInterface Definition Language—a JSON specification that describes a program's instructions, accounts, types, and error c…
Close Account
Programming ModelThe process of reclaiming an account's lamports and marking it for deletion. To close an account: transfer all lamports …
Fee Account
Programming ModelThe account designated to pay the transaction fee, always the first signer listed in the transaction's account keys arra…
Inner Instruction
Programming ModelAn instruction generated during cross-program invocation (CPI) that appears in a transaction's metadata as a nested inst…
Instruction Handler
Programming ModelThe specific function within a program that processes a particular instruction variant. In native Solana programs, the e…
Loader
Programming ModelA built-in program responsible for deploying, loading, and executing on-chain programs by interpreting their binary enco…
Private Key
Programming ModelThe secret 32-byte component of an Ed25519 keypair used to produce digital signatures. The private key must be kept conf…
Transaction ID
Programming ModelThe first signature in a transaction, which uniquely identifies it on the network. Since each transaction has a unique c…
Realloc (Account Resize)
Programming ModelThe process of resizing an on-chain account's data allocation after creation. Realloc can increase or decrease the data …
Micro-Lamport
Programming ModelThe unit used to express compute unit pricing for priority fees on Solana. One lamport equals 1,000,000 micro-lamports. …
Compute Unit Price
Programming ModelThe price per compute unit in micro-lamports that a transaction is willing to pay as a priority fee. Set via the Compute…
Compute Budget Program
Programming ModelA native Solana program (address: ComputeBudget111111111111111111111111111111) that allows transactions to configure the…
Max Compute Units per Transaction
Programming ModelThe hard upper limit of 1,400,000 compute units that a single Solana transaction can consume. This cap applies regardles…
Syscall (System Call)
Programming ModelThe interface through which SBF programs request services from the Solana runtime, analogous to OS system calls. Syscall…
Zero-Copy Deserialization
Programming ModelA technique for accessing on-chain account data directly from the underlying byte buffer without copying it into a new R…
AccountLoader (Anchor)
Programming ModelAn Anchor account type that provides zero-copy access to large account data without deserializing the entire account upf…
Buffer Account
Programming ModelA temporary account used during Solana program deployment to hold the program's ELF binary before it is written to the p…
Nonce Account
Programming ModelA special account managed by the System Program that stores a durable nonce value, enabling transactions with extended o…
Preflight Check
Programming ModelAn RPC-level simulation that runs a transaction against the current bank state before forwarding it to the leader for ac…
Simulate Transaction
Programming ModelThe simulateTransaction RPC method that dry-runs a transaction against a specified bank state without submitting it to t…
Transaction Mortality
Programming ModelThe limited lifespan of a Solana transaction determined by its referenced blockhash. A transaction's blockhash must corr…
Programa SPL Token
Token EcosystemThe original Solana Program Library token program (TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA) that implements fungible…
Solana Program Library (SPL)
Token EcosystemSolana Program Library—a collection of on-chain programs and client libraries maintained by Solana Labs. Key SPL program…
Token-2022 (Extensões de Token)
Token EcosystemThe next-generation token program (TokenzQdBNbLqP5VEhdkAS6EPFLC1PHnBqCXEpPxuEb) that extends SPL Token with configurable…
Mint
Token EcosystemAn on-chain account defining a token type. A mint specifies: supply (total minted), decimals (0 for NFTs, 6 for USDC, 9 …
Conta de Token
Token EcosystemAn account that holds a balance of a specific token for a specific owner. Token accounts store: mint (which token), owne…
Conta de Token Associada (ATA)
Token EcosystemA deterministically derived token account for a given wallet and mint, using the PDA seeds [wallet, token_program, mint]…
Mint Authority
Token EcosystemThe pubkey authorized to mint new tokens via the MintTo instruction. Set at mint creation and can be changed or revoked …
Freeze Authority
Token EcosystemThe pubkey authorized to freeze and thaw token accounts, preventing transfers. Set optionally at mint creation. When a t…
Decimals
Token EcosystemThe number of decimal places for a token, stored on the mint account. Determines how raw integer amounts map to human-re…
Transfer Hook
Token EcosystemA Token-2022 extension that invokes a custom program on every token transfer. The hook program receives the transfer det…
Transferências Confidenciais
Token EcosystemA Token-2022 extension that uses zero-knowledge proofs (Twisted ElGamal encryption over Ristretto255) to hide transfer a…
Transfer Fee Extension
Token EcosystemA Token-2022 extension that automatically withholds a percentage of every transfer as a fee. The fee (basis points + max…
Permanent Delegate
Token EcosystemA Token-2022 extension that designates an authority who can transfer or burn tokens from any token account of that mint,…
Non-Transferable Token
Token EcosystemA Token-2022 extension that prevents tokens from being transferred between accounts, making them soulbound. Non-transfer…
Interest-Bearing Token
Token EcosystemA Token-2022 extension that applies a continuously compounding interest rate to the display amount of a token without ch…
Default Account State
Token EcosystemA Token-2022 extension that sets the initial state of all new token accounts for a mint to either Initialized or Frozen.…
Required Memo on Transfer
Token EcosystemA Token-2022 extension that requires all incoming transfers to include a memo instruction (via the Memo Program) in the …
Token Metadata Extension
Token EcosystemA Token-2022 extension that stores token metadata (name, symbol, URI, and custom key-value pairs) directly on the mint a…
Group / Member Pointer
Token EcosystemA Token-2022 extension that enables token grouping by pointing a mint to a group account or member account. The Group Po…
CPI Guard
Token EcosystemA Token-2022 extension that protects token accounts from certain actions during CPI. When enabled, it blocks approve, cl…
Metaplex Token Metadata
Token EcosystemThe Metaplex Token Metadata program (metaqbxxUerdq28cj1RbAWkYQm3ybzjb6a8bt518x1s) that attaches rich metadata to any SPL…
NFT (Token Não Fungível)
Token EcosystemA non-fungible token on Solana—an SPL token with 0 decimals, supply of 1, and revoked mint authority. The NFT's metadata…
Master Edition
Token EcosystemA Metaplex account attached to an NFT that certifies it as a one-of-one or the master for prints. Master Edition marks m…
Collection (NFT)
Token EcosystemA Metaplex standard for grouping NFTs under a parent NFT that represents the collection. Each NFT's metadata includes a …
NFT Comprimido (cNFT)
Token EcosystemAn NFT stored as a leaf in an on-chain Merkle tree via State Compression, reducing minting cost by ~1,000-5,000x. Only t…
Bubblegum
Token EcosystemThe Metaplex program for creating and managing compressed NFTs. Bubblegum wraps the SPL Account Compression program, pro…
Metaplex Core NFT
Token EcosystemMetaplex's latest NFT standard (mpl-core) that uses a single account per asset instead of multiple accounts (mint + meta…
Token Metadata Standard
Token EcosystemThe convention for structuring NFT metadata established by Metaplex. On-chain: name (32 chars), symbol (10 chars), URI, …
Off-Chain Metadata (JSON)
Token EcosystemThe JSON file referenced by an NFT's metadata URI that contains the full description, image URL, attributes, and propert…
SOL Wrapped (wSOL)
Token EcosystemSOL deposited into an SPL Token account to be used as an SPL token (mint: So11111111111111111111111111111111111111112). …
SPL Token Swap
Token EcosystemAn SPL program that implements a constant-product AMM (x*y=k) for swapping between two SPL tokens. It was one of the fir…
Memo Program
Token EcosystemAn SPL program (MemoSq4gqABAXKb96qnH8TysNcWxMyWCqXgDLGmfcHr) that validates a UTF-8 string and records it in the transac…
Name Service (SNS)
Token EcosystemThe Solana Name Service (SNS) by Bonfida that maps human-readable .sol domain names to Solana addresses. Domains are NFT…
Programmable NFT (pNFT)
Token EcosystemA Metaplex NFT type (pNFT) that enforces creator-defined rules on transfers using an on-chain authorization rules engine…
Authorization Rules
Token EcosystemA Metaplex program that defines and evaluates rule sets for programmable NFTs. Rules specify conditions for transfer, de…
Token Group Extension
Token EcosystemA Token-2022 extension that natively represents collections of tokens without requiring Metaplex. A mint with the Token …
Candy Machine
Token EcosystemMetaplex's on-chain program for creating and managing NFT minting launches on Solana. Candy Machine handles sequential o…
Candy Guard
Token EcosystemA Metaplex program that wraps Candy Machine with configurable access control guards for NFT minting. Guards include allo…
Umi
Token EcosystemMetaplex's modular TypeScript framework for building Solana client-side applications. Umi provides a unified interface f…
SPL Stake Pool
Token EcosystemAn SPL program that enables the creation of liquid staking pools on Solana. Operators create a pool, users deposit SOL a…
Verified Creator
Token EcosystemA flag in Metaplex NFT metadata indicating that a listed creator has cryptographically signed the metadata, confirming t…
Seller Fee Basis Points
Token EcosystemA field in Metaplex NFT metadata that specifies the creator royalty percentage on secondary sales, denominated in basis …
Royalty Enforcement
Token EcosystemMechanisms that ensure NFT creators receive their specified royalty percentage on secondary sales. After marketplaces be…
NFT Staking
Token EcosystemThe process of locking NFTs in a program to earn rewards, typically in the form of a project's token. Staking programs v…
Floor Price
Token EcosystemThe lowest listed sale price for any NFT within a collection on marketplaces. Floor price serves as the baseline valuati…
Collection Bid
Token EcosystemAn open offer to purchase any NFT from a specific collection at a stated price, regardless of which specific token is so…
Dynamic NFT (dNFT)
Token EcosystemAn NFT whose metadata, image, or attributes can change based on on-chain events, oracle data, or program logic. Unlike s…
SFT (Semi-Fungible Token)
Token EcosystemA token type that combines properties of fungible and non-fungible tokens—multiple identical copies exist (like fungible…
Minting
Token EcosystemThe process of creating new tokens or NFTs on-chain by invoking the MintTo instruction on an SPL Token mint account. For…
Inscription (Solana)
Token EcosystemData inscribed directly into on-chain Solana account data, inspired by Bitcoin Ordinals. Solana inscriptions store image…
Token Gating
Token EcosystemRestricting access to content, features, communities, or experiences based on ownership of specific tokens or NFTs. A dA…
Securitize
Token EcosystemSEC-registered transfer agent and broker-dealer providing infrastructure for digital securities: KYC/AML, transfer restr…
BAXUS
Token EcosystemSolana platform for tokenizing fine spirits (whisky, bourbon) and collectibles as digital assets with physical custody i…
Merkle Airdrop
Token EcosystemToken distribution method using a Merkle tree to efficiently verify eligibility. A Merkle root representing all eligible…
Utility NFT
Token EcosystemAn NFT that provides functional benefits beyond collectible value, such as access passes, membership tokens, in-game ite…
NFT Rarity
Token EcosystemThe relative scarcity of specific traits within an NFT collection, calculated by analyzing how frequently each attribute…
Metadata Update Authority
Token EcosystemThe account authorized to modify an NFT's or token's on-chain metadata, including name, symbol, URI, and attributes. In …
Token-2022 Extensions
Token EcosystemThe set of optional features available in Solana's Token-2022 program, each activated per-mint or per-account. Extension…
Soulbound Token (SBT)
Token EcosystemA non-transferable token permanently bound to a specific wallet, representing identity, credentials, achievements, or re…
AMM (Formador de Mercado Automatizado)
DeFiA protocol that enables token swaps using algorithmic pricing against pooled liquidity instead of matching individual bu…
CLMM (Concentrated Liquidity Market Maker)
DeFiAn AMM design where liquidity providers concentrate their capital within specific price ranges instead of across the ful…
Pool de Liquidez
DeFiA smart-contract-held reserve of two or more tokens that enables trading via an AMM. Users deposit token pairs in specif…
LP Token
DeFiA token issued to liquidity providers representing their proportional share of a pool's reserves and accrued fees. LP to…
Swap
DeFiThe exchange of one token for another through a DEX, either via an AMM pool or an order book. The user specifies an inpu…
DEX (Exchange Descentralizada)
DeFiA protocol for trading tokens directly on-chain without a centralized intermediary. Solana DEXs use either AMM pools (Ra…
Order Book (On-Chain)
DeFiA trading system that matches buy and sell orders at specified prices, implemented fully on-chain. Unlike AMMs, order bo…
OpenBook
DeFiA community-maintained on-chain order book DEX forked from Project Serum after its collapse. OpenBook v2 features a full…
Phoenix
DeFiA high-performance on-chain order book DEX on Solana with a fully on-chain FIFO matching engine. Phoenix is designed for…
Raydium
DeFiOne of the largest DEXs on Solana, offering both constant-product AMM pools and concentrated liquidity (CLMM). Raydium's…
Orca
DeFiA leading Solana DEX focused on concentrated liquidity through its Whirlpool AMM. Orca emphasizes user experience and ca…
Whirlpool
DeFiOrca's concentrated liquidity AMM program on Solana. Whirlpools divide the price space into discrete ticks (configurable…
Jupiter
DeFiThe dominant DEX aggregator on Solana, routing trades across 20+ DEX protocols to find optimal pricing. Jupiter splits o…
DEX Aggregator
DeFiA protocol that splits and routes token swaps across multiple DEXs to find the best execution price. The aggregator's ro…
Routing (Swap)
DeFiThe process of finding the optimal path for a swap across multiple DEX pools and intermediate tokens. A router may split…
Slippage
DeFiThe difference between the expected price of a swap and the actual execution price due to pool ratio changes between sub…
Price Impact
DeFiThe percentage change in a token's price caused by executing a trade against a liquidity pool. Larger trades relative to…
Perda Impermanente
DeFiThe unrealized loss an LP experiences when the price ratio of pooled tokens diverges from the ratio at deposit. If one t…
Constant Product Formula (x*y=k)
DeFiThe AMM pricing formula x * y = k, where x and y are the reserve quantities of two tokens and k is a constant. As one to…
Oráculo
DeFiA service that provides external data (prices, randomness) to on-chain programs. DeFi protocols rely on oracles for accu…
Pyth Network
DeFiA high-frequency oracle network publishing price feeds for crypto, equities, commodities, and FX. Pyth aggregates data f…
Switchboard
DeFiA decentralized oracle network on Solana providing custom data feeds, verifiable random functions (VRF), and serverless …
Feed de Preços
DeFiAn on-chain account maintained by an oracle (Pyth or Switchboard) containing the current price, confidence interval, and…
VRF (Verifiable Random Function)
DeFiVerifiable Random Function—a cryptographic primitive that generates provably random outputs with a proof of correctness.…
Empréstimo
DeFiA DeFi protocol that enables users to deposit tokens to earn yield and borrow tokens against collateral. Key Solana lend…
Tomada de Empréstimo
DeFiThe act of taking a loan against deposited collateral in a lending protocol. Borrowers pay a variable interest rate that…
Colateral
DeFiAssets deposited into a lending protocol to secure a loan. Each asset has a collateral factor (e.g., SOL at 80% means $1…
Liquidação
DeFiThe process of repaying a borrower's debt by selling their collateral when their position's LTV exceeds the liquidation …
LTV (Loan-to-Value)
DeFiLoan-to-Value ratio—the percentage of collateral value that can be borrowed. Each lending protocol sets max LTV per asse…
Empréstimo Flash
DeFiAn uncollateralized loan that must be borrowed and repaid within the same transaction. If the loan isn't repaid by trans…
Yield Farming
DeFiThe practice of deploying tokens across DeFi protocols to maximize returns through trading fees, lending interest, and t…
Staking Líquido
DeFiA mechanism where staked SOL is represented by a transferable token (LST) that accrues staking rewards while remaining u…
Marinade Finance
DeFiThe largest liquid staking protocol on Solana. Users deposit SOL and receive mSOL, a liquid staking token that appreciat…
JitoSOL
DeFiThe liquid staking token issued by Jito, representing staked SOL that earns both standard staking rewards and MEV tips. …
Limit Order (On-Chain)
DeFiAn on-chain order to buy or sell a token at a specific price or better, executed automatically when the market reaches t…
DCA (Dollar Cost Averaging)
DeFiA strategy that automatically splits a large purchase into smaller periodic trades to reduce price impact and timing ris…
Perpetuals (Perps)
DeFiDerivatives contracts that track an asset's price without expiration, enabling leveraged long/short positions. On Solana…
Drift Protocol
DeFiA decentralized perpetuals and spot exchange on Solana featuring a hybrid order book + AMM model (DLOB). Drift offers up…
Leverage
DeFiUsing borrowed funds to amplify trading exposure beyond deposited capital. In perps, 10x leverage means $100 collateral …
Margin
DeFiThe collateral deposited to maintain a leveraged position. Initial margin is the minimum to open a position; maintenance…
Arbitrage
DeFiThe practice of profiting from price differences for the same asset across different markets. On Solana, arbitrage bots …
TWAP (Time-Weighted Average Price)
DeFiTime-Weighted Average Price—an average price calculated over a specific time period, weighting each price equally by tim…
Vault
DeFiA smart contract that automates a DeFi yield strategy on behalf of depositors. Users deposit tokens, receive vault share…
Stablecoin
DeFiA token pegged to a stable asset, typically the US dollar. Major stablecoins on Solana include USDC (Circle, natively mi…
Restaking
DeFiA mechanism where staked SOL or LSTs are used as economic security for additional protocols beyond Solana consensus. Res…
Meteora
DeFiA liquidity protocol on Solana (rebranded from Mercurial Finance) that introduced the Dynamic Liquidity Market Maker (DL…
Pump.fun
DeFiA memecoin launchpad on Solana that uses a bonding curve mechanism for token creation and initial price discovery, allow…
Kamino Finance
DeFiA DeFi protocol on Solana offering automated lending/borrowing, liquidity vaults, and an intents-based swap platform. Ka…
Sanctum
DeFiA protocol that unifies fragmented liquidity across Solana's liquid staking token (LST) ecosystem by enabling instant sw…
Tensor
DeFiA Solana NFT marketplace and trading protocol that launched the TNSR governance token in April 2024. Tensor provides adv…
Intents
DeFiA transaction paradigm where users declare their desired outcome (e.g., 'swap 100 USDC for best SOL price') rather than …
Chain Abstraction
DeFiA UX design philosophy and infrastructure layer that hides blockchain-specific complexity from end users, allowing them …
EigenLayer
DeFiThe dominant restaking protocol on Ethereum that allows stakers to opt in to securing additional services (Actively Vali…
Liquid Restaking Token (LRT)
DeFiA tokenized receipt representing restaked assets in protocols like EigenLayer, allowing users to maintain DeFi liquidity…
Real-World Asset Tokenization (RWA)
DeFiThe process of representing ownership of traditional financial assets (treasuries, private credit, real estate, equities…
Points / Seasons
DeFiA gamified incentive mechanism where protocols award off-chain loyalty points for specific on-chain actions across time-…
MEV Supply Chain
DeFiThe multi-party pipeline through which maximal extractable value is captured: searchers identify profitable orderings, b…
DLMM (Dynamic Liquidity Market Maker)
DeFiA concentrated liquidity AMM design pioneered by Meteora on Solana that organizes liquidity into discrete price bins rat…
Virtual AMM (vAMM)
DeFiAn AMM that uses virtual (synthetic) reserves to facilitate perpetual contract trading without requiring real token liqu…
CPMM (Constant Product Market Maker)
DeFiThe simplest and most widely used AMM model, based on the formula x * y = k where x and y are token reserves and k is an…
Utilization Rate
DeFiThe percentage of total deposited assets currently borrowed in a lending protocol, calculated as total borrows divided b…
Borrow APY
DeFiThe annualized interest rate paid by borrowers in a lending protocol, expressed as annual percentage yield with compound…
Supply APY
DeFiThe annualized interest rate earned by depositors (lenders) in a lending protocol. Supply APY equals the borrow APY mult…
Health Factor
DeFiA ratio that measures the safety of a borrowing position in a lending protocol, calculated as the risk-adjusted collater…
Interest Rate Model
DeFiThe algorithm a lending protocol uses to determine borrow and supply interest rates based on pool utilization. Most Sola…
Liquidation Bonus
DeFiA discount on collateral that incentivizes liquidators to repay the debt of unhealthy positions in lending protocols. Wh…
Bad Debt
DeFiDebt in a lending protocol where the collateral value has fallen below the outstanding borrow value, making the position…
Isolated Pools
DeFiLending pools where risk is contained to specific asset pairs or groups, preventing a depeg or exploit in one asset from…
Cross Margin
DeFiA margin mode where the entire account balance serves as collateral across all open positions. Unrealized profits from o…
Isolated Margin
DeFiA margin mode where collateral is dedicated to a single position, limiting the maximum loss to only the margin allocated…
Funding Rate
DeFiA periodic payment exchanged between holders of long and short perpetual contract positions to keep the perp price ancho…
Open Interest
DeFiThe total value or number of outstanding derivative contracts (perpetuals, options) that have not been settled or closed…
Mark Price
DeFiThe fair value price used by perpetual contract platforms to calculate unrealized PnL and trigger liquidations. Mark pri…
Index Price
DeFiThe reference spot price sourced from oracle feeds (Pyth, Switchboard) used as the benchmark in derivatives trading. Ind…
Fee Tier
DeFiA predefined fee level applied to a liquidity pool or trading pair, typically expressed in basis points. Different fee t…
Auto-Compounding
DeFiThe automatic reinvestment of earned yields (trading fees, farming rewards, interest) back into a DeFi position to gener…
Rebalancing
DeFiThe process of adjusting a concentrated liquidity position's price range as the market price moves to keep the position …
Dynamic Fee
DeFiA trading fee that automatically adjusts based on real-time market conditions such as volatility, volume, or liquidity d…
Capital Efficiency
DeFiA measure of how much trading volume or yield a unit of deposited liquidity can support. Higher capital efficiency means…
Liquidity Depth
DeFiThe total amount of liquidity available at various price levels in a market or pool, indicating how much can be traded b…
Yield Aggregator
DeFiA protocol that automatically allocates user deposits across multiple DeFi strategies to optimize yield. Yield aggregato…
Bonding Curve
DeFiA mathematical formula that determines a token's price as a function of its supply. As more tokens are purchased, the pr…
Graduation
DeFiThe process by which a token launched on a bonding curve platform like Pump.fun migrates to a standard DEX liquidity poo…
Vesting
DeFiA token distribution mechanism that gradually unlocks tokens to recipients over a predefined schedule rather than all at…
Cliff Vesting
DeFiA vesting structure with an initial lockup period (the cliff) during which no tokens are released, followed by gradual u…
TGE (Token Generation Event)
DeFiToken Generation Event—the moment when a project's token is first created and distributed on-chain. TGE typically involv…
Max Supply
DeFiThe absolute maximum number of tokens that can ever exist for a given token. Max supply is either enforced programmatica…
Circulating Supply
DeFiThe number of tokens currently available and tradeable in the open market, excluding locked, vesting, or otherwise restr…
FDV (Fully Diluted Valuation)
DeFiFully Diluted Valuation—the theoretical market capitalization if all tokens (including locked, vesting, and unminted) we…
Market Cap (Crypto)
DeFiThe total value of a token's circulating supply, calculated as the current price multiplied by circulating supply. Marke…
Token Burn
DeFiThe permanent removal of tokens from circulation by sending them to a burn address or invoking the SPL Token Burn instru…
Emission Schedule
DeFiThe planned rate at which new tokens are minted and distributed over time, typically defined in a project's tokenomics d…
Launchpad
DeFiA platform that facilitates new token launches by providing infrastructure for initial token sales, price discovery, and…
Fair Launch
DeFiA token distribution method where there is no pre-mine, private sale, or insider allocation—all participants have equal …
USDC (Native Solana)
DeFiCircle-issued USDC minted directly on Solana through the SPL Token program, as opposed to bridged USDC from other chains…
PYUSD (PayPal USD on Solana)
DeFiPayPal's USD-backed stablecoin deployed natively on Solana, fully backed by US dollar deposits, US Treasuries, and simil…
Algorithmic Stablecoin
DeFiA stablecoin that maintains its peg through algorithmic mechanisms (mint/burn arbitrage, elastic supply) rather than bei…
Depeg
DeFiAn event where a stablecoin's market price deviates significantly from its intended peg (typically $1.00). Depegs can re…
CCTP (Cross-Chain Transfer Protocol)
DeFiCircle's Cross-Chain Transfer Protocol that enables native USDC transfers between blockchains by burning USDC on the sou…
Pull Oracle Model
DeFiAn oracle design where price updates are fetched on-demand by the consuming protocol rather than pushed to on-chain acco…
Pyth Hermes
DeFiPyth Network's off-chain price delivery web service that provides real-time price updates for the pull oracle model. Her…
Confidence Interval (Oracle)
DeFiA measure of uncertainty published alongside each Pyth price feed, representing the range within which the true price li…
EMA Price (Oracle)
DeFiThe exponential moving average price published by Pyth alongside the spot price for each feed. EMA price smooths out sho…
Switchboard Functions
DeFiA serverless compute feature of the Switchboard oracle network that allows developers to run custom off-chain code (writ…
Oracle Staleness
DeFiThe condition where an oracle price feed has not been updated within an acceptable time window, making the price data po…
Security Token
DeFiBlockchain token representing a regulated financial security (equity, debt, fund share) subject to securities law. Requi…
Asset Tokenization
DeFiProcess of issuing a blockchain token representing a claim on an off-chain asset. Involves legal structure (SPV/trust), …
Fractional Ownership
DeFiDivision of a high-value asset into smaller token units, each representing proportional ownership. Enables investment in…
Asset-Backed Token
DeFiToken whose value is collateralized by a specific underlying asset held in reserve. Differs from algorithmic stablecoins…
Tokenized Treasury
DeFiBlockchain tokens representing ownership of US Treasury bills or money market funds invested in government debt. Fastest…
Private Credit
DeFiDebt financing provided directly by non-bank lenders to borrowers, bypassing public markets. On-chain protocols originat…
NAV (Net Asset Value)
DeFiPer-share/per-token value calculated as (total assets - liabilities) / outstanding tokens. Published daily by fund admin…
Redemption Mechanism
DeFiProcess by which tokenized RWA holders exchange tokens for underlying asset or cash equivalent. Defines redemption windo…
SPV (Special Purpose Vehicle)
DeFiLegally separate entity (LLC/trust) created to hold assets, isolating risk from parent organization. In RWA tokenization…
Fixed Income
DeFiAsset class comprising debt instruments paying regular, predetermined interest and returning principal at maturity. Incl…
T-Bill (US Treasury Bill)
DeFiShort-term US government debt (4-52 week maturity) sold at discount, redeemed at par. Considered safest short-term inves…
Money Market Fund
DeFiHighly liquid fund holding short-term, high-quality debt (T-bills, commercial paper, repos). Targets stable $1/share NAV…
Basis Points
DeFiUnit of measurement equal to 0.01% (one hundredth of a percentage point). 100 bps = 1%. Used across DeFi for swap fees, …
AUM (Assets Under Management)
DeFiTotal market value of assets managed by an institution or protocol. In DeFi, often synonymous with TVL though AUM more p…
Yield Curve
DeFiGraph showing interest rates across different maturities for comparable debt. Normal curve slopes upward (longer = highe…
Coupon Rate
DeFiAnnual interest rate paid by a bond issuer as percentage of face value. A 5% coupon on $1,000 bond pays $50/year. In tok…
Maturity Date
DeFiDate when a debt instrument expires and principal must be repaid. Ranges from overnight (repos) to 30 years (T-bonds). S…
Bond Duration
DeFiMeasure of a bond's price sensitivity to interest rate changes, in years. A 5-year duration bond falls ~5% per 1% rate r…
Credit Rating
DeFiAssessment of creditworthiness by agencies (Moody's, S&P, Fitch). Ranges from AAA (near risk-free) to junk (BB+ and belo…
Accredited Investor
DeFiSEC regulatory category: individuals with $1M+ net worth or $200K+ annual income permitted to participate in private sec…
Regulation D (Reg D)
DeFiSEC safe harbor exempting private securities offerings from full registration. Rule 506(c) allows unlimited accredited i…
Regulation S (Reg S)
DeFiSEC safe harbor exempting securities offered entirely outside the US to non-US persons. Ondo's USDY available globally u…
Transfer Restrictions
DeFiLegal and technical constraints limiting who can hold a regulated token, enforced on every transfer. Prohibit transfers …
Compliance Whitelist
DeFiList of wallet addresses that have completed KYC/AML verification and are permitted to hold a security token. Maintained…
Compliance Blacklist
DeFiList of wallet addresses prohibited from holding or transacting a token due to OFAC sanctions, suspicious activity, or c…
OFAC Compliance
DeFiCompliance with US Treasury OFAC sanctions prohibiting transactions with designated individuals/entities. Circle blackli…
Transfer Agent
DeFiFirm maintaining official ownership ledger for securities, processing transfers and ensuring compliance. Securitize acts…
Custodian
DeFiInstitution holding and safeguarding assets on behalf of clients. In RWA tokenization, custodian holds off-chain assets …
Atomic Settlement
DeFiSimultaneous, all-or-nothing completion of both legs of a trade (asset + cash) in a single transaction. Eliminates settl…
T+Settlement
DeFiSettlement date convention: T+1 means trade settles one business day later. US equities moved to T+1 in 2024. Blockchain…
State Compression
ZK CompressionState Compression is Solana's technique for storing the cryptographic fingerprint (root hash) of a Merkle tree on-chain …
ZK Compression
ZK CompressionZK Compression, pioneered by Light Protocol, extends Solana's state compression model beyond NFTs to general-purpose com…
Compressed Account
ZK CompressionA compressed account is a Solana account whose state is stored as a leaf in an on-chain Concurrent Merkle Tree rather th…
Concurrent Merkle Tree
ZK CompressionA Concurrent Merkle Tree (CMT) is a specialized on-chain Solana data structure that allows multiple state updates to the…
Merkle Proof
ZK CompressionA Merkle proof is the minimal set of sibling node hashes (the proof path) along the branch from a specific leaf to the t…
Merkle Tree
ZK CompressionA Merkle tree is a binary hash tree in which every leaf node contains a cryptographic hash of a data block, and every no…
Canopy (Merkle Tree)
ZK CompressionThe canopy is an optional on-chain cache of the upper N levels of a Concurrent Merkle Tree's nodes, stored within the CM…
Proof Path
ZK CompressionA proof path is the ordered sequence of sibling node hashes that constitute a Merkle proof, tracing a route from a speci…
Zero-Knowledge Proofs (ZKP)
ZK CompressionA zero-knowledge proof is a cryptographic protocol by which a prover convinces a verifier that a statement is true — for…
Groth16
ZK CompressionGroth16 is a highly efficient zk-SNARK proving system introduced by Jens Groth in 2016 that produces constant-size proof…
PLONK
ZK CompressionPLONK (Permutations over Lagrange-bases for Oecumenical Noninteractive arguments of Knowledge) is a universal zk-SNARK p…
SNARK (Succinct Non-interactive Argument of Knowledge)
ZK CompressionA SNARK is a class of zero-knowledge proof system characterized by succinctness (proofs are short — typically hundreds o…
STARK (Scalable Transparent Argument of Knowledge)
ZK CompressionA STARK is a zero-knowledge proof system that achieves transparency (no trusted setup — all randomness is derived from p…
Poseidon Hash
ZK CompressionPoseidon is a cryptographic hash function designed specifically for efficiency inside zero-knowledge proof arithmetic ci…
Light Protocol
ZK CompressionLight Protocol is the open-source infrastructure layer that implements ZK Compression on Solana, consisting of a set of …
Photon Indexer
ZK CompressionPhoton is Light Protocol's open-source indexer service that continuously reads Solana's transaction logs and ledger to r…
Forester
ZK CompressionForester is the permissionless keeper service in Light Protocol's architecture responsible for performing routine Merkle…
Validity Proof
ZK CompressionIn the context of ZK Compression on Solana, a validity proof is a Groth16 zk-SNARK proof that cryptographically attests …
Compressed Token
ZK CompressionA compressed token is an SPL-compatible fungible or semi-fungible token whose per-account token balances are stored as l…
Nullifier
ZK CompressionA nullifier is a cryptographic value derived deterministically from a compressed account's leaf hash (and optionally a s…
ZKP Syscall (alt_bn128)
ZK CompressionThe alt_bn128 syscalls are native BPF VM system calls added to the Solana runtime (via SIMD-0041 and related proposals) …
ElGamal Encryption
ZK CompressionElGamal encryption is a public-key cryptosystem based on the Diffie-Hellman problem over an elliptic curve group, provid…
Light Token Program
ZK CompressionThe ZK Compression program within Light Protocol that handles compressed SPL token operations including minting, transfe…
Compressed PDA
ZK CompressionA PDA-like addressing scheme for compressed accounts in the ZK Compression system. Compressed PDAs provide deterministic…
BLS12-381 Syscall
ZK CompressionA Solana runtime syscall that exposes elliptic curve operations on the BLS12-381 pairing-friendly curve, including point…
alt_bn128 Syscall
ZK CompressionA native Solana runtime syscall providing elliptic curve operations on the alt_bn128 (BN254) curve — specifically point …
ZK Token Proof Program
ZK CompressionA native Solana program that verifies zero-knowledge proofs used by Token-2022's Confidential Transfers extension. It va…
Canopy Depth
ZK CompressionThe number of top levels of a Concurrent Merkle Tree that are cached on-chain within the CMT account, reducing the Merkl…
Bulletproofs
ZK CompressionA zero-knowledge proof system that produces short, non-interactive proofs without a trusted setup. Bulletproofs are part…
Fiat-Shamir Heuristic
ZK CompressionTechnique for converting interactive zero-knowledge proofs into non-interactive ones by replacing the verifier's random …
R1CS (Rank-1 Constraint System)
ZK CompressionAn arithmetic constraint format used to represent computations as systems of equations for zero-knowledge proof generati…
Arithmetic Circuit
ZK CompressionA directed acyclic graph of addition and multiplication gates representing a computation over a finite field. Used as th…
Range Proof
ZK CompressionA zero-knowledge proof demonstrating that a committed value falls within a specified range (e.g., 0 to 2^64) without rev…
Proof Aggregation
ZK CompressionTechnique of combining multiple zero-knowledge proofs into a single, compact proof that can be verified more efficiently…
RPC (Chamada de Procedimento Remoto)
InfrastructureThe JSON-RPC 2.0 protocol interface through which clients communicate with Solana nodes to query chain state, submit tra…
Nó RPC
InfrastructureA Solana full node that stores ledger state and serves JSON-RPC and WebSocket requests from clients without participatin…
RPC Methods
InfrastructureThe enumerated JSON-RPC endpoints exposed by Solana nodes, covering account queries (getAccountInfo, getMultipleAccounts…
getAccountInfo
InfrastructureAn RPC method that returns the complete on-chain state of a single account identified by its base-58 public key, includi…
getProgramAccounts (GPA)
InfrastructureAn RPC method that scans all accounts owned by a given program and returns those matching optional memcmp (memory compar…
Account Filter (memcmp / dataSize)
InfrastructureOptional filter objects passed to getProgramAccounts that narrow results by comparing raw bytes in account data. A memcm…
getTransaction
InfrastructureAn RPC method that retrieves a confirmed or finalized transaction by its base-58 signature, returning the full message (…
getSignaturesForAddress
InfrastructureAn RPC method that returns a paginated, reverse-chronological list of transaction signatures that reference a given acco…
Assinaturas WebSocket
InfrastructureA persistent bidirectional connection to a Solana RPC node's WebSocket endpoint (typically on port 8900) that allows cli…
accountSubscribe
InfrastructureA WebSocket subscription method that pushes a notification to the client every time the data or lamport balance of a spe…
logsSubscribe
InfrastructureA WebSocket subscription method that streams transaction log messages in real time as transactions are processed by the …
Plugin Geyser
InfrastructureA Solana validator plugin interface (defined in solana-geyser-plugin-interface) that allows external processes to receiv…
Yellowstone gRPC
InfrastructureAn open-source Geyser plugin implementation by Triton One that re-exposes the validator's internal event stream over a g…
gRPC
InfrastructureA high-performance, open-source remote procedure call framework from Google that uses HTTP/2 for transport and Protocol …
DAS (Digital Asset Standard) API
InfrastructureA unified RPC API specification, originated by Metaplex and adopted by major RPC providers, that provides indexed, query…
Indexador
InfrastructureA specialized off-chain service that continuously ingests on-chain data (typically via a Geyser plugin or RPC polling) a…
Helius
InfrastructureA Solana-focused infrastructure provider offering dedicated RPC nodes, DAS API access, Geyser-based webhooks, the LaserS…
QuickNode
InfrastructureA multi-chain blockchain infrastructure provider that offers globally distributed Solana RPC and WebSocket endpoints, ad…
Triton
InfrastructureA professional Solana infrastructure provider (operating as Triton One) specializing in high-performance dedicated RPC n…
Webhook
InfrastructureAn HTTP callback mechanism used by Solana infrastructure providers like Helius to push real-time notifications to a deve…
LaserStream
InfrastructureA Helius proprietary ultra-low-latency streaming product built on Geyser plugin infrastructure that delivers real-time t…
Solana Pay
InfrastructureAn open payment standard and SDK that defines URI schemes and protocol flows for requesting SOL or SPL token transfers a…
Transaction Request (Solana Pay)
InfrastructureA Solana Pay protocol flow in which a QR code or link encodes an HTTPS URL; when scanned, the wallet performs a GET requ…
Transfer Request (Solana Pay)
InfrastructureThe simpler of the two Solana Pay sub-protocols, encoding a static SOL or SPL token payment request as a URI in the form…
Solana Actions
InfrastructureA protocol specification that standardizes how web servers expose signable Solana transactions and messages via HTTPS en…
Blinks (Blockchain Links)
InfrastructureClient-side renderers and URL wrappers that convert Solana Actions endpoints into interactive, embeddable UI components …
Solana Mobile
InfrastructureA hardware and software initiative by Solana Labs producing Android smartphones (Saga, Chapter 2) with a secure element-…
Mobile Wallet Adapter (MWA)
InfrastructureAn open protocol and SDK that defines a local communication channel (via Android intents and a localhost WebSocket) betw…
Wallet Adapter
InfrastructureA TypeScript/JavaScript library maintained by Solana Labs (now under the Anza umbrella) that provides a unified interfac…
Wallet Standard
InfrastructureA chain-agnostic TypeScript interface specification (maintained at github.com/wallet-standard/wallet-standard) that defi…
Explorador Solana
InfrastructureWeb-based blockchain browsers that index and visualize Solana ledger data including transactions, accounts, blocks, vali…
Arweave
InfrastructureA decentralized permanent storage protocol that uses a blockchain-like structure called the blockweave and a one-time up…
IPFS
InfrastructureA peer-to-peer hypermedia protocol that addresses content by cryptographic hash (CID) rather than location, so the same …
Shadow Drive
InfrastructureA decentralized, Solana-native storage network operated by GenesysGo that uses a proof-of-storage consensus among Shadow…
Clockwork
InfrastructureA deprecated Solana on-chain automation protocol (by Clockwork Labs, now sunset) that allowed developers to schedule and…
Priority Fee API
InfrastructureAn RPC API (primarily Helius's getPriorityFeeEstimate) that calculates optimal priority fee recommendations based on rea…
Program Automation
InfrastructureThe pattern of scheduling and triggering on-chain program instructions based on time intervals, cron expressions, or con…
Enhanced Transactions (Helius)
InfrastructureA Helius-specific API that returns enriched, human-readable transaction data by parsing raw Solana transaction instructi…
getMultipleAccounts
InfrastructureA Solana RPC method that fetches the account data for up to 100 public keys in a single request, returning an array of A…
getLatestBlockhash
InfrastructureA Solana RPC method that returns the most recent blockhash along with the last valid block height for that blockhash, pr…
sendTransaction (RPC)
InfrastructureThe Solana RPC method that submits a fully signed, serialized transaction to the cluster for processing. The transaction…
signatureSubscribe
InfrastructureA Solana WebSocket subscription method that pushes a notification when a specific transaction signature reaches the requ…
RPC Encoding
InfrastructureThe data serialization format used to represent account data in Solana RPC responses. Supported encodings include base58…
Staked Connection
InfrastructureAn RPC connection routed through a validator or RPC node that holds delegated stake, granting the connection higher prio…
Missing Signer Check
SecurityA vulnerability where a program accepts an account in a privileged role (e.g., admin, authority, payer) without verifyin…
Missing Owner Check
SecurityA vulnerability where a program deserializes and trusts account data without first confirming that the account is owned …
Arbitrary CPI
SecurityA vulnerability where a program accepts an arbitrary program account from the caller and invokes it via Cross-Program In…
PDA Substitution Attack
SecurityA vulnerability where a program derives a PDA internally but accepts an externally supplied account as that PDA without …
Account Reloading Attack
SecurityA vulnerability in Anchor programs where a program reads an account's data before making a CPI call, the CPI modifies th…
Type Cosplay
SecurityA vulnerability, also called account confusion, where a program deserializes an account as type A when it actually conta…
Reinitialization Attack
SecurityA vulnerability where a program allows an already-initialized account to be initialized a second time, overwriting its s…
Closing Accounts Vulnerability
SecurityA vulnerability that arises when a program closes an account by zeroing its data and transferring lamports without setti…
Account Revival Attack
SecurityAn exploit that resurrects an account that a program has logically closed within the same transaction by sending lamport…
Overflow / Underflow de Inteiro
SecurityA class of arithmetic vulnerabilities where an integer computation produces a result outside the bounds of its fixed-wid…
Checked Math
SecurityA family of Rust arithmetic methods — including checked_add, checked_sub, checked_mul, checked_div, and their saturating…
Precision Loss / Rounding Errors
SecurityA class of numerical vulnerability where integer division discards fractional remainders, causing systematic under-accou…
Duplicate Mutable Accounts
SecurityA vulnerability where the same account is passed twice in the accounts list for a single instruction under different arg…
Bump Seed Canonicalization
SecurityThe requirement that, when deriving a Program Derived Address (PDA), a program always use the canonical bump — the highe…
Sysvar Spoofing
SecurityA vulnerability where a program retrieves a sysvar (such as Clock, Rent, or SlotHashes) by deserializing an account pass…
Remaining Accounts Misuse
SecurityA vulnerability arising from the use of ctx.remaining_accounts in Anchor (or unchecked trailing accounts in native progr…
Front-Running
SecurityAn attack where an adversary observes a pending or not-yet-finalized transaction (e.g., a large swap or NFT mint) and su…
Ataque Sandwich
SecurityA form of MEV where an attacker places one transaction immediately before (front-run) and one immediately after (back-ru…
Reentrância (Solana)
SecurityIn Solana's context, reentrancy refers to a scenario during a CPI call where the called program invokes back into the ca…
Oracle Manipulation
SecurityAn attack in which an adversary artificially distorts the price or data reported by an on-chain oracle — most commonly b…
Privilege Escalation
SecurityA class of vulnerabilities where an attacker gains a higher level of authority than legitimately granted — for example, …
Insufficient Account Constraints
SecurityA broad vulnerability category in Anchor programs where the account struct's constraint annotations — such as has_one, c…
Unsafe Deserialization
SecurityA vulnerability where account data is deserialized into a Rust struct without validating that the data length, discrimin…
Denial of Service (DoS)
SecurityA class of attacks that prevent legitimate users from successfully executing transactions against a Solana program, eith…
Auditoria de Segurança
SecurityA formal, structured review of a Solana program's source code, architecture, and deployment configuration by experienced…
Fuzzing (Trident)
SecurityAn automated testing technique that generates pseudo-random, mutation-based, or coverage-guided instruction sequences an…
ZK-EVM
SecurityA zero-knowledge virtual machine that generates cryptographic validity proofs for Ethereum-compatible smart contract exe…
ZK Coprocessor
SecurityAn off-chain computation service that executes complex operations and returns results with zero-knowledge proofs of corr…
Recursive Proofs
SecurityA cryptographic technique where a zero-knowledge proof verifies the correctness of another proof, enabling incremental v…
Verifiable Build
SecurityA reproducible build process that proves deployed on-chain program bytecode was compiled from specific public source cod…
Immutable Program
SecurityA Solana program whose upgrade authority has been set to None, permanently preventing any future bytecode changes. Once …
Time-Lock
SecurityA security mechanism that enforces a mandatory delay between proposing a privileged action (such as a program upgrade, t…
Squads v4
SecurityThe latest version of the Squads multisig protocol on Solana, offering improved transaction batching, spending limits, t…
Property-Based Testing
SecurityA testing methodology where developers define properties (invariants) that must hold true for all valid inputs, and a te…
Stateful Fuzzing
SecurityAn advanced fuzzing technique that maintains program state across iterations, generating sequences of instructions rathe…
Reentrancy Guard
SecurityA protective pattern that prevents a program from being invoked recursively through cross-program invocations, mitigatin…
Audit Severity Levels
SecurityA standardized classification system for security audit findings: Critical (immediate fund loss or protocol compromise, …
Flash Loan Attack
SecurityAn exploit where an attacker borrows a large amount of tokens via an uncollateralized flash loan, uses the borrowed fund…
OtterSec
SecurityLeading Solana security audit firm that has audited major protocols including Jupiter, Marinade, Jito, and the Solana ru…
Neodyme
SecuritySecurity research firm specializing in Solana program auditing and vulnerability research. Published influential work on…
Sec3 (formerly Soteria)
SecuritySolana security platform providing automated vulnerability detection, real-time program monitoring, and audit services. …
Halborn
SecurityBlockchain security company providing smart contract auditing, penetration testing, and security advisory services acros…
Instruction Ordering Attack
SecurityExploit where an attacker crafts a transaction with instructions in a specific order to manipulate program state between…
State Inconsistency
SecurityVulnerability where a program's on-chain state becomes internally contradictory, often due to partial updates, missing a…
Rent Evasion
SecurityAttack technique where a malicious actor attempts to circumvent Solana's rent mechanism by manipulating account lamport …
Access Control Bypass
SecurityCategory of vulnerabilities where program authorization checks are insufficient or missing, allowing unauthorized users …
Vulnerability Disclosure
SecurityProcess of responsibly reporting security flaws to affected parties before public disclosure. Solana has a bug bounty pr…
Bug Bounty
SecuritySecurity program offering financial rewards to researchers who find and responsibly report vulnerabilities. The Solana F…
Framework Anchor
Dev ToolsThe most popular framework for building Solana programs in Rust. Anchor provides macros (#[program], #[account], #[deriv…
#[account] Macro (Anchor)
Dev ToolsThe Anchor macro applied to structs to define on-chain account data layouts. `#[account]` auto-derives Borsh serializati…
#[derive(Accounts)] (Anchor)
Dev ToolsThe Anchor macro that defines the accounts struct for an instruction. Each field specifies an account with validation co…
Anchor Constraints
Dev ToolsDeclarative validation rules on Anchor account fields. Key constraints: `#[account(mut)]` (writable), `#[account(init, p…
Anchor Error Codes
Dev ToolsAnchor's error handling system. `#[error_code]` defines an enum of custom errors (auto-numbered from 6000). `require!(co…
Context<T> (Anchor)
Dev ToolsThe `Context<T>` struct passed to every Anchor instruction handler, where T is the accounts struct. Fields: `ctx.account…
anchor init / anchor build / anchor test
Dev ToolsAnchor CLI commands for project lifecycle. `anchor init <name>` scaffolds a new project (program, tests, Anchor.toml). `…
Anchor Events (emit!)
Dev ToolsAnchor's event system using the `emit!()` macro. Events are defined with `#[event]` on structs and emitted as base64-enc…
Seahorse (Python → Anchor)
Dev ToolsA Python-to-Anchor transpiler that lets developers write Solana programs in Python syntax and compiles them to Rust/Anch…
Solana CLI
Dev ToolsThe official command-line tool for interacting with Solana clusters. Key commands: `solana balance`, `solana transfer`, …
solana-keygen
Dev ToolsA CLI tool for generating and managing Solana keypairs. `solana-keygen new` creates a keypair file at `~/.config/solana/…
solana-test-validator
Dev ToolsA lightweight local Solana validator for development. Runs a single-node cluster on localhost:8899 (RPC) and localhost:8…
Local Development (Localnet)
Dev ToolsThe practice of developing and testing Solana programs against a local validator (solana-test-validator) or in-process t…
Bankrun (solana-bankrun)
Dev ToolsA fast Solana testing framework (solana-bankrun for TypeScript, bankrun for Rust) that runs tests against an in-process …
LiteSVM
Dev ToolsA lightweight Solana VM for testing Rust programs. LiteSVM provides a minimal SVM environment that executes transactions…
Testes (Programas Solana)
Dev ToolsThe process of validating Solana programs through unit tests, integration tests, and fuzz testing. Common approaches: Ru…
Solana Web3.js
Dev ToolsThe official JavaScript/TypeScript SDK (@solana/web3.js v1) for building Solana clients. Provides classes: Connection (R…
Web3.js v2 (@solana/kit)
Dev ToolsThe next-generation Solana TypeScript SDK (@solana/kit, formerly @solana/web3.js v2) featuring a modular, functional API…
Solana Rust SDK (solana-sdk)
Dev ToolsThe Rust crate (solana-sdk) providing types and utilities for building Solana clients and programs. For on-chain program…
solana-program Crate
Dev ToolsThe Rust crate (solana-program) providing the core types and syscalls for on-chain program development. It includes: ent…
SPL Crates (spl-token, spl-associated-token-account)
Dev ToolsRust crates providing client-side and on-chain interfaces for SPL programs. Key crates: `spl-token` (token instructions …
Metaplex SDKs (Umi, JS SDK)
Dev ToolsClient libraries for interacting with Metaplex programs. Umi is the current framework-agnostic TypeScript SDK with plugi…
Solana Playground (SolPG)
Dev ToolsA browser-based IDE (beta.solpg.io) for writing, building, testing, and deploying Solana programs without local toolchai…
cargo-build-sbf
Dev ToolsThe Cargo subcommand that compiles Rust programs to Solana Bytecode Format (SBF). It invokes the Solana-specific LLVM to…
Solana Verify (solana-verifiable-build)
Dev ToolsA tool and standard for verifying that deployed on-chain program bytecode matches public source code. `solana-verify bui…
Amman
Dev ToolsA testing toolkit by Metaplex that wraps solana-test-validator with additional features: account snapshots and restorati…
Trident (Fuzzer)
Dev ToolsA fuzz testing framework for Solana programs built on Honggfuzz. Trident generates random instruction sequences and acco…
solana-program-test
Dev ToolsA Rust testing framework in the solana-sdk that provides a BanksClient for in-process program testing. Programs are load…
Squads (Multisig)
Dev ToolsA multisig protocol on Solana (Squads v3/v4) enabling M-of-N approval for transactions. Used to manage program upgrade a…
Multisig
Dev ToolsAn account controlled by multiple parties requiring M-of-N signatures to authorize actions. On Solana, multisig is imple…
MagicBlock (Ephemeral Rollups)
Dev ToolsA framework for building on-chain games on Solana using Ephemeral Rollups. MagicBlock allows game state to temporarily m…
Bolt (ECS Framework)
Dev ToolsAn Entity Component System (ECS) framework by MagicBlock for building on-chain games on Solana. Bolt separates game data…
Gaming on Solana
Dev ToolsThe ecosystem of on-chain games and gaming infrastructure on Solana. Key technologies: MagicBlock (ephemeral rollups for…
Solana Unity SDK
Dev ToolsA C# SDK integrating the Unity game engine with Solana, enabling game developers to interact with on-chain programs, man…
Pinocchio
Dev ToolsA zero-dependency Rust framework for writing Solana programs that prioritizes performance and precise control over conve…
Steel
Dev ToolsAn opinionated Rust framework for writing Solana programs built on top of solana-program, exposing macros, functions, an…
Codama
Dev ToolsA code generation toolchain that takes a Solana program's IDL and generates fully-typed client SDKs in multiple language…
Kinobi
Dev ToolsA superset of the Solana IDL specification that enables automatic generation of program clients with full serialization …
Shank
Dev ToolsA Rust macro-based tool for generating IDL files from native Solana programs that do not use Anchor. Shank provides attr…
Anchor v0.31
Dev ToolsA major release (March 2025) of the Anchor framework introducing custom discriminators (overriding the default 8-byte di…
Solana Mobile Stack (SMS)
Dev ToolsA comprehensive mobile development toolkit for building Solana-native Android dApps, including an SDK for wallet integra…
Seeker (Solana Phone)
Dev ToolsThe second-generation Solana mobile device with a native Seed Vault wallet, dApp Store 2.0, and a soulbound Seeker Genes…
Formal Verification
Dev ToolsThe use of mathematical proofs to verify that a smart contract's behavior matches its specification for all possible inp…
Invariant Testing
Dev ToolsA property-based testing approach where developers define invariants (properties that must always hold true) and a fuzze…
Symbolic Execution
Dev ToolsA program analysis technique that explores execution paths using symbolic variables instead of concrete inputs, building…
AVM (Anchor Version Manager)
Dev ToolsA command-line tool for installing and managing multiple versions of the Anchor framework on a single machine. AVM allow…
Anchor.toml
Dev ToolsThe configuration file at the root of every Anchor project that defines program IDs, cluster endpoints, wallet paths, te…
#[account(zero_copy)] (Anchor)
Dev ToolsAn Anchor attribute applied to account structs to enable zero-copy deserialization, where account data is accessed direc…
init_if_needed (Anchor Constraint)
Dev ToolsAn Anchor account constraint that creates and initializes an account only if it does not already exist, skipping initial…
has_one Constraint (Anchor)
Dev ToolsAn Anchor validation constraint that asserts a field stored in one account matches the pubkey of another account in the …
UncheckedAccount (Anchor)
Dev ToolsAn Anchor account type (UncheckedAccount<'info>) that performs no automatic validation — no owner check, no discriminato…
InterfaceAccount (Anchor)
Dev ToolsAn Anchor account type for CPI interactions with programs that implement a defined interface, allowing a single account …
Mollusk
Dev ToolsA lightweight SVM testing harness that executes Solana program instructions directly without spinning up a validator or …
Surfpool
Dev ToolsA local Solana development environment that serves as an alternative to solana-test-validator, featuring hot reload capa…
Web3.js v2 Kit (@solana/kit utilities)
Dev ToolsA collection of utility functions and helpers built on top of @solana/kit (Web3.js v2) that simplify common Solana devel…
Poseidon (TypeScript-to-Anchor Transpiler)
Dev ToolsA transpiler that allows developers to write Solana programs in TypeScript and compiles them to Rust/Anchor code. Poseid…
solana program deploy
Dev ToolsThe Solana CLI command for deploying programs to the network, replacing the older solana deploy command. Usage: solana p…
Solana Explorer
Dev ToolsThe official Solana Foundation block explorer at explorer.solana.com providing transaction details, account inspection, …
Anchor Workspace
Dev ToolsThe project structure and configuration defined by Anchor.toml that organizes Solana program development. Includes progr…
Program Test Framework (solana-program-test)
Dev ToolsSolana's built-in testing framework that spins up a lightweight BanksClient runtime to execute programs in an isolated e…
IDL Generation
Dev ToolsProcess of producing an Interface Definition Language file from a Solana program's source code. Anchor auto-generates ID…
Account Deserializer
Dev ToolsTool or library that converts raw on-chain account bytes into structured data using program-specific schemas. Anchor pro…
Quasar
Dev ToolsA Rust framework for building Solana programs that combines Anchor-like developer ergonomics with lower-level performanc…
Golana
Dev ToolsAn experimental toolchain that enables writing Solana programs in Go by compiling Go source code to SBF bytecode via a T…
Mainnet Beta
NetworkSolana's primary production cluster where real SOL and real economic activity occur; the "beta" designation reflects the…
Devnet
NetworkA persistent public Solana cluster intended for application development and testing, running the same software version a…
Testnet
NetworkA public Solana cluster used primarily by the Solana core team and validators to test new software releases, performance…
TPS (Transações por Segundo)
NetworkThe rate at which a Solana cluster processes and commits transactions; Solana's theoretical maximum exceeds 65,000 TPS d…
Parallel Transaction Execution
NetworkSolana's ability to process multiple transactions simultaneously by analyzing their account access lists and executing n…
Account Locking (Read/Write)
NetworkThe mechanism by which Solana's scheduler reserves access to accounts for the duration of a transaction's execution, gra…
Taxa Base
NetworkThe fixed, non-negotiable minimum fee charged per transaction signature on Solana, currently set at 5,000 lamports (0.00…
Taxa de Prioridade
NetworkAn optional additional fee paid on top of the base fee to increase the likelihood that a transaction is processed quickl…
Taxa de Transação
NetworkThe total SOL cost to submit a transaction on Solana, composed of the base fee (5,000 lamports per signature) plus any o…
Fee Market (Local/Global)
NetworkSolana operates a local fee market rather than a global one: priority fee competition is scoped to transactions that con…
Stake-Weighted QoS (SWQoS)
NetworkA Quality of Service system introduced in Solana that allocates TPU packet bandwidth to staked validators proportionally…
QUIC Protocol
NetworkThe UDP-based transport protocol adopted by Solana as its primary transaction submission protocol, replacing raw UDP to …
MEV (Valor Máximo Extraível)
NetworkThe profit a block producer (leader) or sophisticated trader can extract by controlling the ordering, inclusion, or excl…
Jito (MEV Infrastructure)
NetworkA Solana MEV infrastructure project by Jito Labs that operates a modified validator client (jito-solana), a Block Engine…
Bundle (Jito)
NetworkAn atomic group of up to five transactions submitted together through Jito's Block Engine, where either all transactions…
Tip (Jito)
NetworkA SOL payment made by a searcher to a Jito tip account as part of a bundle submission, used to compensate the leader val…
Block Engine (Jito)
NetworkJito's off-chain infrastructure component that receives bundles from MEV searchers, simulates them against the current c…
Scheduler
NetworkThe component within Solana's TPU pipeline responsible for ordering transactions from the banking stage's queues, acquir…
Banking Stage
NetworkThe critical TPU pipeline stage in which Solana validators execute transactions, update account state, and produce entri…
Transaction Landing
NetworkThe outcome of a transaction being successfully included and confirmed in a Solana block, as opposed to being dropped, e…
Transaction Retry / Rebroadcast
NetworkThe practice of resubmitting a transaction multiple times until it lands or its blockhash expires, necessary because Sol…
Blockhash (Recent)
NetworkA 32-byte hash derived from the bank's state at a given slot, included in every Solana transaction to prove the transact…
Durable Nonce
NetworkA mechanism that replaces the short-lived recent blockhash in a transaction with a nonce value stored in a dedicated on-…
Offline Signing
NetworkThe practice of signing a Solana transaction on an air-gapped or disconnected device and then broadcasting the signed tr…
Airdrop (Devnet/Testnet)
NetworkThe process of receiving free, valueless SOL on Devnet or Testnet via the Solana CLI (`solana airdrop`) or public faucet…
Inflação
NetworkSolana's protocol-level mechanism for issuing new SOL to reward validators and stakers, starting at an initial annual in…
Staking Rewards
NetworkSOL earned by validators and their delegators each epoch as compensation for participating in consensus and securing the…
Slashing
NetworkThe punitive reduction of a validator's stake as a penalty for provable misbehavior such as double-signing or equivocati…
Network Congestion
NetworkA state in which the volume of transaction submissions to Solana leaders exceeds available block space or processing cap…
Vote Transaction
NetworkA special-purpose transaction submitted by each validator every slot to record its vote on the current fork of the block…
Skip Rate
NetworkThe percentage of assigned leader slots in which a validator fails to produce a block, either due to being offline, misc…
Solana Runtime v2
NetworkThe next-generation execution environment under development by Solana Labs to replace the original runtime with a more m…
Token Extensions (Network Impact)
NetworkThe aggregate effect on Solana network resources — primarily compute units and account space — introduced by Token Exten…
Session Keys
NetworkEphemeral keypairs with scoped permissions and time limits that allow users to delegate transaction signing to a tempora…
Confirmation Time
NetworkThe wallclock duration between a transaction being submitted and achieving a desired commitment level. On Solana, proces…
Cooldown Period
NetworkThe number of epochs after stake deactivation during which the staked SOL remains locked and cannot be withdrawn. During…
Light Client
NetworkA blockchain client that verifies a moderate amount of cluster data to confirm transaction validity without replaying th…
Nakamoto Coefficient
NetworkThe minimum number of independent entities (validators, mining pools, or staking providers) that would need to collude t…
Node Count
NetworkThe total number of validators participating in a Solana cluster at a given time. Node count is a measure of network dec…
Skipped Slot
NetworkA slot in which the assigned leader validator fails to produce a block, resulting in no entries being added to the ledge…
Thin Client
NetworkA blockchain client that trusts the cluster's communication without independently verifying transaction validity, relyin…
Vote Credit
NetworkA reward tally credited to a validator's vote account each time one of its votes reaches the root (becomes finalized). V…
Warmup Period
NetworkThe number of epochs after stake delegation during which the delegated SOL progressively becomes active and eligible for…
TPU Client
NetworkA client library that sends transactions directly to the current leader validator's Transaction Processing Unit (TPU) po…
TPU Forwarding
NetworkThe mechanism by which non-leader validators forward incoming transactions to the current slot leader's TPU port so they…
Epoch Schedule
NetworkThe configuration that defines the length of an epoch in slots and governs how epoch boundaries are calculated on a Sola…
Local Fee Market
NetworkSolana's per-account fee pricing model where priority fee competition is scoped to transactions contending for the same …
Validator Commission
NetworkThe percentage of staking rewards that a validator retains before distributing the remainder to its delegators, configur…
Inflation Rate
NetworkThe annualized rate at which new SOL tokens are minted by the protocol to fund staking rewards. Solana launched with an …
Terminal Inflation Rate
NetworkThe long-term floor for Solana's annual SOL issuance rate, set at 1.5% per year. Once the decreasing inflation schedule …
Stake Activation
NetworkThe process by which newly delegated stake becomes active and begins earning staking rewards. After a user delegates SOL…
Stake Deactivation
NetworkThe process of unstaking SOL from a validator, which requires a cooldown period of one epoch before the SOL can be withd…
Searcher (MEV)
NetworkAn MEV actor that monitors on-chain state and pending transactions to identify profitable opportunities such as arbitrag…
Backrunning
NetworkAn MEV strategy where a searcher places their transaction immediately after a target transaction in the same block to pr…
Block Space Auction
NetworkThe competitive process by which transactions and bundles bid for inclusion in a block through priority fees and Jito ti…
MEV Protection
NetworkMechanisms and tools designed to shield users from harmful MEV extraction such as sandwich attacks and frontrunning. On …
Private Transaction
NetworkA transaction sent directly to the current block producer or through a private relay rather than being broadcast through…
Bundle Simulation
NetworkThe process of executing a Jito bundle against the current chain state in a sandboxed environment to verify that all tra…
Blockchain
Blockchain GeralA distributed, append-only ledger that records transactions in cryptographically linked blocks. Each block contains a ha…
Mecanismo de Consenso
Blockchain GeralThe protocol by which nodes in a distributed network agree on the current state of the ledger. Common mechanisms include…
Prova de Participação (PoS)
Blockchain GeralA consensus mechanism where validators are selected to produce blocks based on the amount of cryptocurrency they have st…
Prova de Trabalho (PoW)
Blockchain GeralA consensus mechanism where miners compete to solve computationally expensive puzzles to produce blocks and earn rewards…
Livro-Razão Distribuído
Blockchain GeralA database replicated and synchronized across multiple nodes in a network without central administration. All participan…
Hash Function (Cryptographic)
Blockchain GeralA one-way mathematical function that maps arbitrary-length input to a fixed-size output (digest). Properties: determinis…
Merkle Tree
Blockchain GeralA binary tree where each leaf node is a hash of data and each internal node is the hash of its two children. The root ha…
Contrato Inteligente
Blockchain GeralSelf-executing code deployed on a blockchain that automatically enforces the terms of an agreement when conditions are m…
Gas
Blockchain GeralA unit measuring the computational effort required to execute operations on a blockchain. On Ethereum, gas is priced in …
Transaction Fee
Blockchain GeralThe cost paid by the sender to have a transaction processed and included in a block. Fees compensate validators/miners f…
Block Time
Blockchain GeralThe average time between consecutive blocks being produced. Bitcoin: ~10 minutes, Ethereum: ~12 seconds, Solana: ~400ms.…
Throughput (TPS)
Blockchain GeralThe number of transactions a blockchain can process per second. Theoretical TPS is often much higher than sustained real…
Scalability
Blockchain GeralA blockchain's ability to handle increasing transaction volume without degrading performance or decentralization. The sc…
Layer 1 (L1)
Blockchain GeralThe base blockchain network that provides consensus, data availability, and execution. Bitcoin, Ethereum, and Solana are…
Layer 2 (L2)
Blockchain GeralA scaling solution built on top of a Layer 1 blockchain that processes transactions off-chain while inheriting the secur…
Rollup
Blockchain GeralA Layer 2 scaling technique that executes transactions off-chain, bundles them, and posts compressed data back to L1. Op…
Byzantine Fault Tolerance (BFT)
Blockchain GeralThe ability of a distributed system to reach consensus despite some nodes behaving arbitrarily (maliciously or failing).…
Finality (Blockchain)
Blockchain GeralThe guarantee that a confirmed transaction is irreversible and cannot be altered. Probabilistic finality (Bitcoin) means…
Staking
Blockchain GeralThe process of locking cryptocurrency as collateral to participate in network consensus (validation) or to earn rewards.…
Slashing
Blockchain GeralA penalty mechanism in Proof of Stake systems where validators lose a portion of their staked tokens for provable misbeh…
Bridge (Cross-Chain)
Blockchain GeralA protocol that enables transferring assets or data between different blockchains. Bridges use mechanisms like lock-and-…
EVM (Ethereum Virtual Machine)
Blockchain GeralThe stack-based virtual machine that executes smart contracts on Ethereum and EVM-compatible chains (Polygon, Avalanche,…
Solidity
Blockchain GeralThe primary programming language for Ethereum smart contracts. Solidity is statically typed, supports inheritance, and c…
Nó
Blockchain GeralA computer running blockchain client software that maintains a copy of the ledger and participates in the network. Node …
Imutabilidade
Blockchain GeralThe property that once data is written to a blockchain, it cannot be altered or deleted. Immutability is enforced by cry…
Block Explorer
Blockchain GeralA web application that indexes and displays blockchain data in a human-readable format. Explorers show transaction detai…
Testnet / Devnet
Blockchain GeralNon-production blockchain networks used for development and testing. Tokens on these networks have no monetary value and…
Mainnet
Blockchain GeralThe production blockchain network where real-value transactions occur. Solana's production network is 'mainnet-beta'. De…
DAO (Decentralized Autonomous Organization)
Blockchain GeralAn organization governed by smart contracts and token-holder voting rather than traditional management structures. Membe…
Governance Token
Blockchain GeralA token that grants holders voting power over protocol decisions. Governance tokens enable decentralized control of DeFi…
Airdrop
Blockchain GeralA distribution of tokens to wallet addresses, typically as a reward for early usage, community participation, or ecosyst…
Interoperability
Blockchain GeralThe ability of different blockchains to communicate and share data or assets. Achieved through bridges (Wormhole), messa…
Sybil Resistance
Blockchain GeralA system's ability to prevent one entity from creating multiple fake identities to gain disproportionate influence. In b…
Modular Blockchain
Blockchain GeralA blockchain architecture that separates core functions (execution, consensus, data availability, settlement) into speci…
Data Availability (DA)
Blockchain GeralThe guarantee that a block's transaction data has been published and can be downloaded by any network participant. In mo…
Celestia
Blockchain GeralThe first modular data availability network, launched in October 2023, that separates data availability and consensus fr…
Account Abstraction
Blockchain GeralA design pattern that replaces the rigid externally-owned account (EOA) model with programmable smart contract wallets c…
Blob Transaction (EIP-4844)
Blockchain GeralAn Ethereum transaction type introduced in the Dencun upgrade (March 2024) that carries binary large objects (blobs) of …
Proto-Danksharding
Blockchain GeralAn intermediate Ethereum scaling upgrade (EIP-4844) that introduces blob-carrying transactions as a stepping stone towar…
Based Rollup
Blockchain GeralA rollup whose transaction sequencing is driven by the Layer 1 base chain's proposers rather than a dedicated centralize…
Sequencer
Blockchain GeralThe entity responsible for ordering, batching, and submitting transactions in a Layer 2 rollup. Most rollups currently u…
Shared Sequencing
Blockchain GeralAn infrastructure layer that replaces individual rollup sequencers with a decentralized network providing ordering-as-a-…
Preconfirmation
Blockchain GeralA credible, collateral-backed promise from a block proposer or sequencer that a transaction will be included in a future…
Passkey / WebAuthn Wallet
Blockchain GeralA blockchain wallet that uses the WebAuthn/FIDO2 standard for authentication via biometrics (fingerprint, face) or hardw…
ERC-6551 (Token-Bound Accounts)
Blockchain GeralAn Ethereum standard that assigns a smart contract account (wallet) to every ERC-721 NFT, enabling NFTs to own other tok…
Bitcoin
Blockchain GeralThe first decentralized cryptocurrency network, launched in 2009 by the pseudonymous Satoshi Nakamoto, using a Proof-of-…
UTXO Model
Blockchain GeralThe accounting model used by Bitcoin (and derived chains like Litecoin and Zcash) where balances are represented as a se…
Bitcoin Script
Blockchain GeralBitcoin's stack-based, intentionally non-Turing-complete scripting language used to define spending conditions for trans…
SegWit (Segregated Witness)
Blockchain GeralA Bitcoin soft fork activated in August 2017 (BIP 141) that separates transaction signature data (witness) from the tran…
Taproot
Blockchain GeralA Bitcoin soft fork activated in November 2021 (BIPs 340-342) introducing Schnorr signatures for efficient key/signature…
Lightning Network
Blockchain GeralA Layer 2 payment channel network built on Bitcoin that enables near-instant, low-cost transactions by conducting most a…
Bitcoin Ordinals
Blockchain GeralA protocol created by Casey Rodarmor in January 2023 that assigns a unique serial number (ordinal) to each individual sa…
BRC-20
Blockchain GeralAn experimental fungible token standard on Bitcoin using Ordinals inscriptions in JSON format to deploy, mint, and trans…
Runes
Blockchain GeralA Bitcoin fungible token protocol created by Casey Rodarmor that launched at block 840,000 on April 20, 2024, coinciding…
Bitcoin Halving
Blockchain GeralA programmatic event occurring every 210,000 blocks (~4 years) that reduces the Bitcoin block reward by 50%, enforcing a…
Proof-of-Work Mining
Blockchain GeralThe process by which miners expend computational resources to find a nonce producing a block header hash below the curre…
Mempool
Blockchain GeralThe memory pool maintained by each blockchain node containing unconfirmed transactions that have been validated but not …
Satoshi
Blockchain GeralThe smallest indivisible unit of Bitcoin, equal to 0.00000001 BTC (one hundred-millionth of a bitcoin), named after Bitc…
Bitcoin Layer 2
Blockchain GeralScaling and programmability solutions built on top of Bitcoin's base layer that extend its functionality while inheritin…
BitVM
Blockchain GeralA computing paradigm proposed by Robin Linus in October 2023 that enables verification of arbitrary computations on Bitc…
OP_CAT
Blockchain GeralA proposed Bitcoin opcode (BIP 347) that would reintroduce byte-string concatenation to Tapscript, originally disabled b…
Zcash
Blockchain GeralA privacy-focused cryptocurrency launched in October 2016 that pioneered the use of zk-SNARKs to enable fully shielded t…
Shielded Transaction
Blockchain GeralA Zcash transaction where sender address, receiver address, and amount are encrypted using zk-SNARKs, providing cryptogr…
Viewing Key
Blockchain GeralA cryptographic key in Zcash enabling selective disclosure of shielded transaction information without granting spending…
Unified Address
Blockchain GeralA Zcash address format (ZIP 316) that bundles multiple receiver types (transparent, Sapling, Orchard) into a single 'u1'…
Zcash Sapling
Blockchain GeralA major Zcash protocol upgrade activated in October 2018 that reduced proof generation from ~40 seconds to ~2 seconds an…
Turnstile Mechanism
Blockchain GeralA Zcash consensus-level auditing mechanism that maintains supply integrity across shielded value pools by publicly track…
Native Token
Blockchain GeralThe base cryptocurrency of a blockchain network that is used to pay transaction fees, participate in consensus (staking)…
Point (Validator Rewards)
Blockchain GeralA weighted credit unit used in Solana's validator reward calculation regime. Points represent the product of a validator…
Diversidade de Clientes
Blockchain GeralThe practice of maintaining multiple independent validator client implementations for a blockchain network to reduce the…
Deterministic Execution
Blockchain GeralThe property that given identical inputs and initial state, a program will always produce the exact same output and stat…
Economic Finality
Blockchain GeralA practical finality guarantee where reversing a confirmed transaction would require an attacker to forfeit or spend mor…
BLS Signature
Blockchain GeralA digital signature scheme (Boneh-Lynn-Shacham) based on bilinear pairings over elliptic curves that uniquely enables si…
On-Curve / Off-Curve
Blockchain GeralIn elliptic curve cryptography, a point is 'on-curve' if it satisfies the curve equation (e.g., Ed25519) and can serve a…
Clearing and Settlement
Blockchain GeralTwo phases of completing a financial transaction. Clearing: reconciling orders and calculating net obligations. Settleme…
DvP (Delivery vs Payment)
Blockchain GeralSettlement mechanism ensuring security delivery occurs simultaneously and conditionally with payment. Blockchain's atomi…
CSD (Central Securities Depository)
Blockchain GeralInstitution holding securities in electronic form as central ownership registry. Examples: DTCC (US), Euroclear (Europe)…
Post-Trade Processing
Blockchain GeralAll activities after trade execution: confirmation, clearing, settlement, custody, reconciliation. Traditional post-trad…
Omnibus Account
Blockchain GeralAccount pooling multiple clients' assets under one custodian name, with internal records tracking individual shares. Exp…
Blockchain Trilemma
Blockchain GeralConcept articulated by Vitalik Buterin that blockchains can optimize for only two of three properties: decentralization,…
Liveness and Safety
Blockchain GeralTwo fundamental guarantees in distributed systems. Safety means the system never produces incorrect results (no double-s…
Sharding
Blockchain GeralScaling technique that partitions blockchain state and processing across multiple parallel chains (shards), each handlin…
State Channel
Blockchain GeralLayer-2 scaling technique where participants open a channel, conduct many off-chain transactions between themselves, the…
Validator Economics
Blockchain GeralThe financial model governing validator profitability including staking rewards (inflation), transaction fee revenue, ME…
Web3
Web3The vision of a decentralized internet built on blockchain technology, where users own their data, identity, and digital…
dApp (Aplicação Descentralizada)
Web3An application with its backend logic running on a blockchain as smart contracts rather than centralized servers. dApps …
Carteira
Web3Software or hardware that manages cryptographic keys and enables users to sign transactions, view balances, and interact…
Frase Semente (Mnemônico)
Web3A 12 or 24-word human-readable backup of a wallet's master private key, generated using BIP-39 standard. The seed phrase…
DeFi (Finanças Descentralizadas)
Web3Financial services built on blockchain smart contracts that operate without traditional intermediaries (banks, brokers).…
TVL (Total Value Locked)
Web3The total value of cryptocurrency deposited in a DeFi protocol's smart contracts, measured in USD. TVL indicates a proto…
NFT (Conceito Geral)
Web3A unique, non-interchangeable digital token representing ownership of a specific asset—artwork, collectibles, music, gam…
On-Chain vs Off-Chain
Web3On-chain: data or logic stored and executed directly on the blockchain, providing maximum transparency and immutability …
Auto-Custódia
Web3The practice of personally controlling your cryptographic private keys rather than entrusting them to a third party (exc…
DEX (General Concept)
Web3A decentralized exchange allowing peer-to-peer token trading without a centralized order book or custodian. Users trade …
CEX (Centralized Exchange)
Web3A traditional cryptocurrency exchange operated by a company that custodies user funds and matches orders on internal sys…
MEV (Maximal Extractable Value)
Web3The profit validators/block producers can extract by reordering, inserting, or censoring transactions within a block. ME…
Token Standard
Web3A specification defining how tokens are created and managed on a blockchain. Ethereum: ERC-20 (fungible), ERC-721 (NFT),…
Composabilidade
Web3The ability of blockchain protocols to interact with and build upon each other like building blocks ('money legos'). A l…
Sem Permissão
Web3A system that anyone can participate in without requiring approval from a central authority. Permissionless blockchains …
Sem Confiança
Web3A system where participants don't need to trust each other or a central authority because rules are enforced by code and…
RPC (Remote Procedure Call)
Web3The API interface for interacting with a blockchain node. Clients send JSON-RPC requests to read account state, submit t…
Gas / CU Optimization
Web3The practice of minimizing computational costs in smart contracts to reduce transaction fees and fit within resource lim…
Rug Pull
Web3A crypto scam where project creators abandon a project after accumulating user funds, typically by draining liquidity po…
Faucet
Web3A service that distributes free tokens on test networks (devnet/testnet) for development and testing. Solana's CLI inclu…
Wormhole
Web3The primary cross-chain messaging and bridge protocol for Solana, enabling asset transfers between Solana, Ethereum, and…
Decentralized Identity (DID)
Web3A W3C standard for self-sovereign digital identifiers created, owned, and controlled by the individual rather than a cen…
Verifiable Credentials
Web3Cryptographically signed digital attestations representing identity claims (age, KYC status, certification) that can be …
SocialFi
Web3The intersection of social media and decentralized finance, where social interactions, content creation, and community e…
Farcaster
Web3A decentralized social media protocol where core identity (Farcaster IDs) is registered on-chain via smart contracts on …
APY (Annual Percentage Yield)
Web3The real rate of return earned on a deposit or investment over one year, including the effect of compounding interest. U…
APR (Annual Percentage Rate)
Web3The simple annual interest rate earned on a deposit or paid on a loan, without accounting for compounding. APR represent…
Yield / Return
Web3The profit earned from participating in DeFi activities such as providing liquidity, lending tokens, staking, or farming…
DYOR (Do Your Own Research)
Web3A widely used crypto community phrase encouraging individuals to independently investigate projects, tokens, and protoco…
Whale
Web3An individual or entity holding a very large amount of a particular cryptocurrency or token, enough to potentially influ…
On-Ramp / Off-Ramp
Web3Services that allow users to convert between traditional fiat currency (USD, EUR, etc.) and cryptocurrency, and vice ver…
KYC (Know Your Customer)
Web3Identity verification procedures required by financial regulations that involve confirming a user's real-world identity …
Smart Contract Risk
Web3The risk that bugs, logic errors, or exploitable vulnerabilities in on-chain program code could lead to loss of user fun…
Counterparty Risk
Web3The risk that the other party in a financial arrangement fails to meet their obligations, resulting in a loss. In crypto…
Portfolio Tracker
Web3A tool or application that monitors and displays the value of your cryptocurrency holdings across multiple wallets, chai…
Revoke Approval
Web3The act of removing a previously granted token spending permission from a program or delegate, preventing it from transf…
Token Approval
Web3The permission granted to a program or delegate address to spend a specified amount of tokens from your account on your …
Cold Storage
Web3The practice of keeping cryptocurrency private keys completely offline, disconnected from the internet, to protect them …
Hot Wallet
Web3A cryptocurrency wallet that is connected to the internet, enabling quick and convenient access for sending, receiving, …
HODL
Web3A crypto slang term originating from a 2013 Bitcoin forum typo of 'hold,' now a backronym for 'Hold On for Dear Life.' I…
Degen
Web3Short for 'degenerate,' a self-adopted label in crypto culture for someone who pursues high-risk, high-reward strategies…
FOMO (Fear Of Missing Out)
Web3The anxiety-driven urge to buy a token or enter a position because its price is rising rapidly and others appear to be p…
FUD (Fear, Uncertainty, and Doubt)
Web3Negative or misleading information spread about a cryptocurrency, protocol, or the broader market, whether intentionally…
Protocol (DeFi)
Web3A set of smart contracts deployed on-chain that together provide a specific decentralized financial service such as lend…
GM
Web3Short for 'Good morning.' A universal crypto greeting used across Twitter and Discord regardless of actual time of day. …
Ser
Web3An ironic phonetic spelling of 'sir' used sarcastically or affectionately in crypto discussions. Often appears in phrase…
Rekt
Web3Derived from 'wrecked.' Describes suffering a large financial loss from a liquidated leveraged trade, rug pull, exploit,…
NGMI
Web3Acronym for 'Not Gonna Make It.' Used to mock someone for a bad decision, weak conviction, or selling at the wrong time.…
WAGMI
Web3Acronym for 'We're All Gonna Make It.' An expression of collective optimism and community solidarity used during bull ma…
Probably Nothing
Web3A heavily ironic phrase meaning the exact opposite — that something is very significant. Used when sharing a bullish sig…
Aping In
Web3Buying a token or entering a DeFi position quickly with little or no research, driven by FOMO, social pressure, or excit…
Bagholder
Web3Someone stuck holding a depreciating asset, either refusing to sell at a loss or having missed their exit opportunity. A…
Diamond Hands
Web3Holding a position through extreme price volatility without selling, implying conviction and psychological resilience. T…
Paper Hands
Web3Selling a position too early, especially during a temporary price dip, out of fear or impatience. A pejorative counterpa…
CT (Crypto Twitter)
Web3Short for Crypto Twitter — the community of traders, developers, influencers, and enthusiasts on Twitter/X discussing cr…
Alpha
Web3Exclusive, actionable, or early information that others do not yet have. 'Dropping alpha' means sharing a token tip, tra…
Flipping
Web3Buying an asset with the intent to sell it quickly at a higher price rather than holding long-term. Common in NFT launch…
Mooning
Web3Describes a token's price increasing dramatically and rapidly. 'When moon?' is the canonical impatient question asked by…
Exit Liquidity
Web3Describes retail buyers who purchase a token while insiders or early holders sell, unknowingly providing the liquidity f…
SOL Maxi
Web3Someone exclusively bullish on Solana and dismissive of other blockchains, believing Solana will dominate the smart cont…
Solana Summer
Web3Reference to mid-to-late 2021 when Solana experienced explosive growth in TVL, NFT launches, developer adoption, and SOL…
OPOS
Web3Acronym for 'Only Possible on Solana.' A community phrase highlighting features or applications that cannot be replicate…
LFG
Web3Acronym for 'Let's F***ing Go.' An expression of intense excitement about a launch, price movement, milestone, or announ…
LFB
Web3Acronym for 'Let's F***ing Build.' A builder-culture rallying cry emphasizing shipping code and creating products over s…
Supercycle
Web3The thesis that the current or upcoming crypto bull market will be unusually large and prolonged, breaking historical fo…
Jeet
Web3Someone who sells their position too early, often immediately after launch or at the first sign of a price pump. 'Don't …
Sniping
Web3Buying a token immediately at launch using automated bots that detect pool creation events and execute buy transactions …
Trading Bot
Web3An automated program that executes cryptocurrency trades without manual intervention. Bots range from simple snipers tha…
Sweep the Floor
Web3Buying all available NFTs listed at or near the floor price of a collection in a single coordinated purchasing spree. Fl…
Delist (NFT)
Web3Removing an NFT from sale on a marketplace by canceling its listing. Mass delistings during bull markets signal that hol…
Wash Trading
Web3Practice of simultaneously buying and selling the same asset to artificially inflate trading volume. Common in NFT marke…
Pump and Dump
Web3Market manipulation scheme where promoters accumulate a low-cap token, artificially inflate its price through coordinate…
Shilling
Web3Aggressively promoting a cryptocurrency or NFT project, often with undisclosed financial interest. Shillers may be paid …
Memecoin
Web3A cryptocurrency created around internet memes, jokes, or cultural themes rather than technical utility. On Solana, meme…
Gas Wars
Web3Situation where users compete by bidding up transaction fees to get their transactions included first, typically during …
Custodial vs Non-Custodial
Web3Distinction between services that hold users' private keys (custodial — exchanges like Coinbase) versus tools where user…
Multisig Wallet
Web3A wallet requiring multiple private key signatures (e.g., 2-of-3, 3-of-5) to authorize transactions, used by teams and D…
Hardware Wallet
Web3A physical device (Ledger, Trezor) that stores private keys offline in a secure element chip, signing transactions witho…
Copy Trading
Web3Strategy where users automatically replicate the on-chain trades of other wallets in real time. On Solana, copy trading …
Impersonation Scam
Web3Fraud where attackers pose as known projects, influencers, or support staff to steal funds. Common vectors include fake …
Rust
ProgramaçãoA systems programming language emphasizing memory safety, zero-cost abstractions, and concurrency without a garbage coll…
TypeScript
ProgramaçãoA statically typed superset of JavaScript that compiles to plain JavaScript. TypeScript adds type annotations, interface…
JavaScript
ProgramaçãoThe ubiquitous scripting language for web development, running in browsers and Node.js. JavaScript is dynamically typed …
Node.js
ProgramaçãoA JavaScript runtime built on Chrome's V8 engine that enables server-side JavaScript execution. Node.js uses an event-dr…
API (Application Programming Interface)
ProgramaçãoA defined interface through which software components communicate. REST APIs use HTTP methods (GET, POST) with JSON payl…
JSON-RPC
ProgramaçãoA stateless, lightweight remote procedure call protocol using JSON encoding. Clients send a JSON object with method name…
SDK (Software Development Kit)
ProgramaçãoA collection of libraries, tools, and documentation for building applications on a specific platform. Solana SDKs includ…
CLI (Command-Line Interface)
ProgramaçãoA text-based interface for interacting with software through terminal commands. Solana provides the `solana` CLI for acc…
Base58 / Base58Check
ProgramaçãoA binary-to-text encoding scheme used by Solana (and Bitcoin) for representing public keys and signatures as human-reada…
Idempotency
ProgramaçãoThe property where performing an operation multiple times produces the same result as performing it once. Critical in bl…
Concurrency / Parallelism
ProgramaçãoConcurrency: structuring a program to handle multiple tasks that may overlap in time. Parallelism: executing multiple ta…
CI/CD (Continuous Integration / Deployment)
ProgramaçãoAutomated pipelines that build, test, and deploy code when changes are pushed. For Solana programs: CI runs `anchor buil…
Open Source
ProgramaçãoSoftware with publicly available source code that anyone can inspect, modify, and distribute. Most Solana infrastructure…
Git
ProgramaçãoA distributed version control system for tracking code changes across development teams. Essential for Solana developmen…
Docker
ProgramaçãoA platform for packaging applications into lightweight, portable containers that include all dependencies. In Solana dev…
Criptografia
ProgramaçãoThe process of converting plaintext data into ciphertext that can only be read with the correct decryption key. Symmetri…
Criptografia de Chave Pública
ProgramaçãoA cryptographic system using mathematically linked key pairs: a public key (shared freely) and a private key (kept secre…
Event-Driven Architecture
ProgramaçãoA software design pattern where the flow of the program is determined by events (state changes, messages, user actions).…
Account Model vs UTXO Model
ProgramaçãoTwo models for tracking blockchain state. Account model (Solana, Ethereum): each account has a balance and state that is…
Cron (Time-Based Scheduling)
ProgramaçãoA time-based job scheduling concept originating from Unix systems, where tasks are defined to run at specific intervals …
Zero-Copy
ProgramaçãoA memory access pattern where data is read or manipulated directly from its original buffer location without allocating …
Little-Endian
ProgramaçãoA byte ordering convention where the least significant byte is stored at the lowest memory address. Solana uses little-e…
ELF Binary
ProgramaçãoExecutable and Linkable Format — the binary format used for deployed Solana programs. Rust source code is compiled via c…
Fixed-Point Arithmetic
ProgramaçãoA method of representing fractional numbers using integers with an implicit decimal point at a fixed position, avoiding …
WebAssembly (WASM)
ProgramaçãoA portable binary instruction format designed as a compilation target for high-level languages, enabling near-native exe…
Monorepo
ProgramaçãoA software development strategy where multiple related packages, programs, or applications are stored in a single versio…
Deterministic Address Derivation
ProgramaçãoThe process of computing an account address from known inputs without randomness, ensuring the same inputs always produc…
Pipelining
ProgramaçãoProcessing technique where multiple stages of a task execute in overlapping fashion, like an assembly line. Solana's val…
CAP Theorem
ProgramaçãoBrewer's CAP theorem: a distributed system can provide at most two of three guarantees — Consistency, Availability, and …
Lamport Timestamp
ProgramaçãoLogical clock mechanism proposed by Leslie Lamport (1978) for ordering events in distributed systems without synchronize…
State Machine Replication
ProgramaçãoDistributed computing pattern where identical copies of a state machine are maintained across multiple nodes. Each node …
PBFT
ProgramaçãoPractical Byzantine Fault Tolerance. Classical BFT consensus algorithm (Castro & Liskov, 1999) tolerating up to f faulty…
Amdahl's Law
ProgramaçãoTheoretical limit on parallel speedup: if P% of a task is parallelizable, maximum speedup is 1/(1-P + P/N) for N process…
Memory-Mapped I/O
ProgramaçãoTechnique where files are mapped directly into process virtual memory, allowing the OS to handle reads/writes through pa…
Copy-on-Write
ProgramaçãoMemory optimization where data is shared between readers until a writer modifies it, at which point only the modified po…
Bloom Filter
ProgramaçãoProbabilistic data structure that tests set membership with no false negatives and configurable false positive rate, usi…
Kernel Bypass
ProgramaçãoTechnique where applications access network hardware directly, bypassing the OS kernel's networking stack to eliminate s…
Lock-Free Data Structure
ProgramaçãoConcurrent data structure where threads make progress without mutual exclusion locks, using atomic operations (CAS, fetc…
Pedersen Commitment
ProgramaçãoCryptographic commitment scheme that hides a value while allowing later verification. Computed as C = vG + rH where v is…
Curve25519
ProgramaçãoAn elliptic curve designed by Daniel Bernstein for efficient Diffie-Hellman key exchange. It operates on a Montgomery cu…
AES-GCM-SIV
ProgramaçãoAuthenticated encryption scheme combining AES block cipher with Galois/Counter Mode and Synthetic Initialization Vector …
ECDH (Elliptic Curve Diffie-Hellman)
ProgramaçãoKey agreement protocol where two parties derive a shared secret using their private keys and each other's public keys on…
Optimistic Concurrency
ProgramaçãoConcurrency control strategy where transactions execute without acquiring locks, then validate at commit time that no co…
Eventual Consistency
ProgramaçãoDistributed systems model where replicas may temporarily diverge but converge to the same state given sufficient time wi…
io_uring
ProgramaçãoLinux kernel interface for asynchronous I/O operations that eliminates system call overhead through shared memory ring b…
AVX-512 (SIMD Instructions)
ProgramaçãoIntel's 512-bit Advanced Vector Extensions enabling single-instruction-multiple-data parallel processing. Firedancer lev…
Crash Fault vs Byzantine Fault
ProgramaçãoTwo failure models in distributed systems. Crash faults assume nodes either work correctly or stop entirely (fail-stop).…
LLM (Modelo de Linguagem Grande)
AI/MLA neural network trained on vast text corpora to understand and generate human language. LLMs (GPT-4, Claude, Llama, Gem…
Transformer
AI/MLThe neural network architecture underlying modern LLMs, introduced in 'Attention Is All You Need' (2017). Transformers u…
Attention Mechanism
AI/MLA neural network component that allows models to weigh the relevance of different parts of the input when producing outp…
Foundation Model
AI/MLA large AI model trained on broad data that can be adapted for many downstream tasks. Foundation models (GPT-4, Claude, …
Engenharia de Prompt
AI/MLThe practice of crafting input text (prompts) to guide LLM behavior and output quality. Techniques include: zero-shot (d…
Context Window
AI/MLThe maximum amount of text (measured in tokens) an LLM can process in a single interaction. Larger windows enable proces…
Token (AI/NLP)
AI/MLThe basic unit of text processed by language models—typically a word, subword, or character. Tokenizers (BPE, SentencePi…
Fine-Tuning
AI/MLThe process of further training a pre-trained model on a specialized dataset to improve performance on specific tasks. F…
RAG (Geração Aumentada por Recuperação)
AI/MLAn AI architecture that combines LLMs with external knowledge retrieval. Instead of relying solely on training data, RAG…
Embedding
AI/MLA dense vector representation of text (or other data) in a continuous high-dimensional space where semantically similar …
Vector Database
AI/MLA database optimized for storing and querying high-dimensional vector embeddings using similarity search (cosine distanc…
Agente de IA
AI/MLAn autonomous AI system that can plan, use tools, and take actions to accomplish goals. Agents use LLMs as the reasoning…
Tool Use (Function Calling)
AI/MLAn LLM capability where the model generates structured calls to external tools/functions rather than just text. The mode…
Alucinação
AI/MLWhen an AI model generates plausible-sounding but factually incorrect information. LLMs hallucinate because they predict…
Inference
AI/MLThe process of running a trained model on new inputs to generate predictions or outputs. Inference is the 'using' phase …
Training (ML)
AI/MLThe process of optimizing a model's parameters by exposing it to data and adjusting weights to minimize a loss function.…
RLHF (Reinforcement Learning from Human Feedback)
AI/MLA training technique that aligns LLM outputs with human preferences. Process: (1) train a reward model from human compar…
Open-Source AI Models
AI/MLAI models with publicly released weights that can be downloaded, modified, and self-hosted. Notable open models: Llama 3…
Multimodal AI
AI/MLAI models that can process and generate multiple data types: text, images, audio, video, and code. Modern multimodal mod…
AI Coding Assistant
AI/MLAn AI tool that helps developers write, debug, review, and explain code. Examples: GitHub Copilot (inline suggestions), …
DePIN (Redes de Infraestrutura Física Descentralizada)
AI/MLBlockchain protocols that coordinate and incentivize physical infrastructure through token rewards. DePIN projects on So…
GPU Compute (Decentralized)
AI/MLBlockchain-coordinated networks that aggregate GPU resources for AI training and inference. Projects like Render Network…
AI × Blockchain Integration
AI/MLThe convergence of AI and blockchain technologies. Key patterns: AI agents executing on-chain transactions autonomously,…
On-Chain AI / ML
AI/MLRunning AI/ML inference directly within blockchain smart contracts or verified through on-chain proofs. Current limitati…
Tokenomics
AI/MLThe economic design of a cryptocurrency token: supply schedule, distribution, utility, incentive mechanisms, and value a…
Reasoning Model
AI/MLA class of LLMs trained with reinforcement learning to generate step-by-step internal chain-of-thought before producing …
Chain-of-Thought (CoT)
AI/MLA prompting technique or model-native capability where the LLM produces intermediate reasoning steps before arriving at …
System Prompt
AI/MLA persistent, developer-controlled instruction set provided to an LLM that defines its role, behavior, tone, constraints…
Structured Output
AI/MLAn LLM capability that constrains model output to conform to a predefined schema, typically JSON or XML, enabling reliab…
Claude Code
AI/MLAnthropic's terminal-based agentic coding tool launched in early 2025 alongside Claude 3.7 Sonnet. It accepts natural-la…
Cursor
AI/MLAn AI-native code editor (VS Code fork) with integrated LLM capabilities including multi-file editing, Composer mode for…
Windsurf
AI/MLAn AI-powered code editor (VS Code fork) originally created by Codeium and later acquired by Cognition. Launched in Nove…
Model Context Protocol (MCP)
AI/MLAn open standard introduced by Anthropic in November 2024 for connecting AI applications to external data sources, tools…
LangChain / LangGraph
AI/MLLangChain is a popular open-source framework for building LLM-powered applications, providing abstractions for chains, t…
CrewAI
AI/MLAn open-source multi-agent orchestration framework that uses a role-based paradigm where developers define AI 'crews' of…
Agent Loop
AI/MLThe core iterative execution cycle of an agentic AI system: Perceive, Reason, Act, Observe, Repeat. At each iteration, t…
DPO (Direct Preference Optimization)
AI/MLA simplified alternative to RLHF that aligns LLM outputs with human preferences without training a separate reward model…
Synthetic Data (AI Training)
AI/MLArtificially generated training data produced by LLMs or other AI models, used to augment or replace human-annotated dat…
Knowledge Distillation
AI/MLA technique for transferring capabilities from a large 'teacher' model to a smaller 'student' model, typically by having…
Quantization (AI)
AI/MLA model compression technique that reduces weight precision (e.g., from 16-bit to 4-bit) to decrease model size and infe…
Diffusion Model
AI/MLA generative AI architecture that creates images, video, or audio by learning to reverse a noise-adding process—starting…
Stable Diffusion
AI/MLAn open-source image generation model by Stability AI that runs locally on consumer hardware, enabling privacy and custo…
AI Alignment
AI/MLThe practice of ensuring AI systems behave according to human intentions and values—being helpful, harmless, and honest.…
Constitutional AI
AI/MLAn alignment technique developed by Anthropic where an AI model is guided by a 'constitution'—a set of explicit principl…
Mixture of Experts (MoE)
AI/MLA neural network architecture that routes each input to a subset of specialized 'expert' sub-networks rather than activa…
State Space Model (Mamba)
AI/MLAn alternative to the Transformer architecture that processes sequences with linear O(n) complexity instead of quadratic…
Bittensor (TAO)
AI/MLA blockchain protocol that decentralizes AI by creating an open marketplace for machine intelligence. Built on Substrate…
Decentralized Inference
AI/MLRunning AI model inference across distributed networks of GPU providers rather than centralized cloud infrastructure, us…
DeepSeek
AI/MLA Chinese AI lab that released DeepSeek-R1 in January 2025, a 671B-parameter open-weight reasoning model achieving perfo…
GitHub Copilot
AI/MLThe most widely deployed AI coding assistant with 15M+ developers, providing inline code suggestions, chat-based assista…
Nosana
AI/MLA decentralized GPU compute marketplace built on Solana that connects GPU providers with users needing compute for AI in…
Solana Agent Kit
AI/MLAn open-source toolkit developed by SendAI (formerly Sendai) that enables AI agents to interact with Solana protocols pr…
io.net
AI/MLA decentralized GPU network built on Solana that aggregates underutilized GPU resources from data centers, crypto miners…
Grass
AI/MLA DePIN protocol on Solana where users share unused internet bandwidth through a browser extension, contributing to a de…
Autonomous On-Chain Agent
AI/MLAn AI agent that holds its own blockchain wallet, autonomously signs transactions, and manages on-chain positions (DeFi …
Phantom
Ecossistema SolanaThe most popular Solana wallet, available as a browser extension and mobile app with multi-chain support (Solana, Ethere…
Solflare
Ecossistema SolanaA Solana-native wallet offering browser extension, mobile, and web interfaces with deep staking integration, hardware wa…
Backpack Wallet
Ecossistema SolanaA multi-chain wallet developed by Coral (the team behind xNFT protocol) that combines MPC and self-custody models. Backp…
Backpack Exchange
Ecossistema SolanaA regulated cryptocurrency exchange built by the same team behind Backpack Wallet (Coral). Licensed in multiple jurisdic…
Helium
Ecossistema SolanaA decentralized wireless infrastructure network that migrated from its own L1 blockchain to Solana in April 2023 for imp…
Render Network
Ecossistema SolanaA decentralized GPU rendering network that migrated to Solana in November 2023 from Ethereum for lower fees and higher t…
Hivemapper
Ecossistema SolanaA decentralized mapping network on Solana where contributors install dashcams to collect street-level imagery while driv…
BONK
Ecossistema SolanaSolana's first community-created dog-themed memecoin, launched in December 2022 during the post-FTX bear market to revit…
Moonshot
Ecossistema SolanaA mobile-first token launch platform on Solana that simplifies purchasing newly launched tokens using credit cards, Appl…
Colosseum
Ecossistema SolanaThe organization behind Solana's major hackathons and accelerator programs. Colosseum runs online hackathons attracting …
Superteam
Ecossistema SolanaA community-driven DAO supporting the Solana ecosystem through regional chapters across 15+ countries. Superteam members…
Solana Foundation
Ecossistema SolanaA non-profit organization based in Zug, Switzerland, dedicated to the growth, security, and decentralization of the Sola…
Neon EVM
Ecossistema SolanaAn Ethereum Virtual Machine compatibility layer that runs on Solana, enabling developers to deploy and execute Solidity …
deBridge
Ecossistema SolanaA cross-chain interoperability protocol supporting high-performance bridging between Solana, Ethereum, and other major c…
Allbridge
Ecossistema SolanaA multi-chain bridge protocol supporting asset transfers between Solana, Ethereum, BNB Chain, and other networks. Allbri…
Realms
Ecossistema SolanaThe primary governance platform on Solana, built on the SPL Governance program. Realms enables DAOs, protocol teams, and…
Solana Breakpoint
Ecossistema SolanaSolana's flagship annual conference organized by the Solana Foundation, bringing together developers, founders, validato…
Hacker House
Ecossistema SolanaDeveloper-focused co-working and event spaces organized by the Solana Foundation, ecosystem teams, and community groups …
Star Atlas
Ecossistema SolanaA AAA-quality space exploration and strategy game built on Solana using Unreal Engine 5. Star Atlas features a player-dr…
DeGods
Ecossistema SolanaA blue-chip NFT collection that launched on Solana in October 2021 and became one of the ecosystem's most culturally sig…
Mad Lads
Ecossistema SolanaAn NFT collection of 10,000 generative characters created by the Backpack/Coral team, launched in April 2023 as the firs…
Claynosaurz
Ecossistema SolanaA popular Solana NFT collection featuring animated claymation-style dinosaur characters. Known for high-quality 3D art a…
Metaplex Aura
Ecossistema SolanaA decentralized indexing and data availability network by Metaplex designed to index compressed digital assets (cNFTs, t…
Step Finance
Ecossistema SolanaA portfolio dashboard and DeFi aggregator on Solana that provides users with a unified view of their token balances, LP …
Dialect
Ecossistema SolanaA messaging and notifications protocol built on Solana that enables wallet-to-wallet communication and smart messaging w…
Magic Eden
Ecossistema SolanaThe leading NFT marketplace that launched on Solana in September 2021 and expanded to support Ethereum, Bitcoin Ordinals…
marginfi
Ecossistema SolanaA decentralized lending and borrowing protocol on Solana that enables users to supply assets to earn yield or borrow aga…
Solend / Save
Ecossistema SolanaOne of the earliest lending and borrowing protocols on Solana, originally launched as Solend in 2021 and later rebranded…
Lifinity
Ecossistema SolanaA proactive market-making DEX on Solana that uses oracle-driven pricing (via Pyth) instead of relying solely on arbitrag…
Solana Accelerate
Ecossistema SolanaSolana Foundation's product-focused conference series. The inaugural event was held in May 2025 in New York City with ov…
Catstanbul
Ecossistema SolanaJupiter Exchange's annual community conference, first held in January 2025 in Istanbul. Catstanbul features live transpa…
Met-Dhabi
Ecossistema SolanaMeteora's inaugural community event held in December 2025 in Abu Dhabi, one day before Solana Breakpoint 2025. Met-Dhabi…
Solana Crossroads
Ecossistema SolanaA community-organized annual Solana conference in Istanbul, led by the Step Finance team rather than the Solana Foundati…
mtnDAO
Ecossistema SolanaA month-long Solana developer retreat held annually in Salt Lake City, Utah, described as Solana's most notorious hacker…
Colosseum Hackathon
Ecossistema SolanaColosseum's global online hackathon series, formerly run by the Solana Foundation. Two major hackathons are held per yea…
Solana Allstars
Ecossistema SolanaA global grassroots ambassador program launched by Step Finance in 2023. Solana Allstars is a network of local country m…
Solana Summit
Ecossistema SolanaA free, community-funded annual conference focused on APAC and emerging markets. The 2025 editions were held in Da Nang,…
Ondo Finance
Ecossistema SolanaA leading real-world asset (RWA) protocol tokenizing US government securities on Solana. Flagship products include USDY,…
Maple Finance
Ecossistema SolanaAn institutional lending protocol connecting capital providers with vetted institutional borrowers through on-chain cred…
Credix
Ecossistema SolanaA private credit DeFi protocol on Solana providing financing to fintech lenders in Latin America and Africa. Credix stru…
Parcl
Ecossistema SolanaA Solana-native DeFi protocol providing exposure to real estate price indices through perpetual-style markets. Parcl tra…
Zeta Markets
Ecossistema SolanaAn options and perpetual futures DEX on Solana using a fully on-chain order book and risk engine. Zeta Markets enables u…
Flash Trade
Ecossistema SolanaA perpetual trading protocol on Solana offering synthetic asset trading with a pool-based liquidity model (FLP). Flash T…
GooseFX
Ecossistema SolanaA DeFi suite on Solana offering a perpetual futures DEX, single-sided liquidity staking, and an NFT marketplace in one i…
Mango Markets
Ecossistema SolanaA cross-margin trading protocol on Solana exploited in October 2022 for $114M by Avraham Eisenberg via oracle price mani…
Hubble Protocol
Ecossistema SolanaA DeFi protocol on Solana for minting USDH stablecoin against multi-asset collateral including SOL, BTC, ETH, and liquid…
Tulip Protocol
Ecossistema SolanaThe first yield aggregator on Solana, automating auto-compounding strategies for Raydium, Orca, and Saber LP positions. …
Port Finance
Ecossistema SolanaAn early Solana lending protocol supporting variable and fixed rate lending markets. Port Finance operated from 2021 to …
Friktion
Ecossistema SolanaA DeFi Options Vault (DOV) protocol on Solana that pioneered structured products including covered call vaults, cash-sec…
Hxro Network
Ecossistema SolanaA derivatives infrastructure layer on Solana providing a shared on-chain risk engine and order book for parimutuel and p…
BlazeStake
Ecossistema SolanaA liquid staking protocol on Solana distributing stake across 200+ validators to promote network decentralization. Blaze…
SolBlaze
Ecossistema SolanaThe team behind BlazeStake liquid staking, also building custom liquid staking solutions and the SolBlaze Stake Pool SDK…
JPool
Ecossistema SolanaA liquid staking protocol on Solana focusing on decentralized stake distribution across validators. JPool issues JSOL as…
Lulo
Ecossistema SolanaA yield optimization protocol on Solana that automatically routes user deposits across multiple lending protocols includ…
Saber
Ecossistema SolanaThe first major stableswap AMM on Solana, using a Curve-style invariant for efficient swaps between same-peg assets such…
Jupiter LFG Launchpad
Ecossistema SolanaJupiter's decentralized token launch platform using dynamic bonding curves and community voting to curate new token laun…
Hawksight
Ecossistema SolanaAn automated DeFi strategy vault on Solana that manages concentrated liquidity positions across Orca, Raydium, and Meteo…
Armada
Ecossistema SolanaToken launch infrastructure on Solana providing customizable launch pools, vesting schedules, and staking programs for n…
Access Protocol
Ecossistema SolanaA content monetization protocol on Solana where creators stake ACS tokens and subscribers lock tokens to access premium …
Mean Finance
Ecossistema SolanaA DeFi protocol on Solana offering dollar-cost averaging (DCA) and money streaming services. Mean Finance's MeanFi app e…
Symmetry
Ecossistema SolanaAn on-chain asset management protocol on Solana enabling creation of token baskets, indices, and actively managed funds …
Rain.fi
Ecossistema SolanaAn NFT lending protocol on Solana offering instant loans against NFT collateral with floor-price-based loan-to-value rat…
Banx
Ecossistema SolanaA peer-to-peer NFT lending platform on Solana enabling holders to borrow against NFTs using customizable loan terms and …
Socean
Ecossistema SolanaAn early Solana liquid staking protocol that used algorithmic stake distribution to promote validator decentralization. …
Cogent Crypto
Ecossistema SolanaA high-performance Solana validator operator known for low commission rates, reliable infrastructure, and active communi…
Laine
Ecossistema SolanaA prominent Solana validator operator and staking service provider known for building the StakeWiz analytics platform, p…
StakeWiz
Ecossistema SolanaA Solana validator analytics platform built by Laine providing performance metrics, commission tracking, APY comparisons…
Aurory
Ecossistema SolanaA play-to-earn RPG game on Solana featuring Aurorians NFT characters in tactical turn-based combat. Aurory combines on-c…
Genopets
Ecossistema SolanaA move-to-earn RPG on Solana combining physical activity tracking with game progression. Players evolve their Genopet NF…
STEPN
Ecossistema SolanaA move-to-earn fitness app originally launched on Solana where users purchase NFT sneakers and earn GST and GMT tokens b…
Nyan Heroes
Ecossistema SolanaA free-to-play hero shooter game built on Solana featuring cat characters piloting mechs in competitive multiplayer comb…
Photo Finish LIVE
Ecossistema SolanaA horse racing game on Solana where players breed, train, and race NFT horses with real prize pools funded by entry fees…
DRiP
Ecossistema SolanaA free digital art distribution platform on Solana delivering weekly compressed NFT drops from artists to collectors at …
Okay Bears
Ecossistema SolanaA blue-chip Solana NFT collection of 10,000 bear PFPs that briefly became the top NFT collection across all blockchains …
Solana Monkey Business
Ecossistema SolanaOne of the earliest Solana NFT collections, launched in June 2021 featuring 5,000 pixel art monkeys. Solana Monkey Busin…
Teleport
Ecossistema SolanaA decentralized rideshare protocol on Solana aiming to create a driver-owned alternative to centralized ride-hailing ser…
Roam
Ecossistema SolanaA decentralized global WiFi roaming network on Solana where users share WiFi access points and earn tokens for providing…
GenesysGo
Ecossistema SolanaThe infrastructure company behind Shadow Drive (decentralized storage) and Shadow RPC services on Solana. GenesysGo pivo…
Bonfida
Ecossistema SolanaThe team behind Solana Name Service (SNS), enabling human-readable .sol domain names that map to wallet addresses on Sol…
Solana Name Service
Ecossistema SolanaA domain name system on Solana enabling .sol domains that map human-readable names to wallet addresses, built and mainta…
TipLink
Ecossistema SolanaA Solana payment link service that lets anyone send crypto via URL without requiring the recipient to have an existing w…
Sphere
Ecossistema SolanaPayment infrastructure on Solana enabling merchants to accept crypto payments with fiat settlement, recurring billing, a…
Helio
Ecossistema SolanaA Solana payment gateway used by e-commerce platforms, creators, and businesses for accepting crypto payments. Helio off…
Code
Ecossistema SolanaA mobile payments app built on Solana using a privacy-preserving protocol with time-locked accounts for instant, fee-fre…
Grape Protocol
Ecossistema SolanaA community management and identity verification tool on Solana enabling token-gated access, reputation scoring, and com…
MonkeDAO
Ecossistema SolanaThe first NFT-holder DAO on Solana, created by Solana Monkey Business (SMB) NFT holders. MonkeDAO operates validator nod…
Jupiter DAO
Ecossistema SolanaThe decentralized governance body for Jupiter Exchange using JUP tokens for voting on protocol decisions. Jupiter DAO co…
Metaplex Foundation
Ecossistema SolanaThe organization stewarding the Metaplex protocol, which provides the core NFT standard infrastructure on Solana. The fo…
Birdeye
Ecossistema SolanaA leading Solana token analytics platform providing real-time price charts, trading volume, holder distribution data, an…
Solscan
Ecossistema SolanaA popular Solana block explorer offering detailed transaction views, token analytics, account inspection, DeFi activity …
SolanaFM
Ecossistema SolanaA Solana block explorer and indexer providing human-readable transaction parsing, account labeling, and developer APIs f…
XRAY
Ecossistema SolanaAn open-source Solana transaction explorer built by Helius providing clean visualization of complex transactions with hu…
DEX Screener
Ecossistema SolanaA multi-chain DEX analytics platform widely used on Solana for tracking new token launches, price charts, liquidity data…
Rugcheck
Ecossistema SolanaA Solana token safety analysis tool that scans token contracts for red flags including concentrated holdings, unlocked l…
Defined.fi
Ecossistema SolanaA real-time DEX data and analytics API provider covering Solana and other chains. Defined.fi offers token price feeds, w…
Bubblemaps
Ecossistema SolanaA visual token holder analysis tool that displays wallet clusters and concentration patterns as interactive bubble diagr…
Mayan Finance
Ecossistema SolanaA cross-chain swap protocol built on Wormhole enabling token transfers between Solana, Ethereum, and other chains with c…
Portal Bridge
Ecossistema SolanaWormhole's user-facing bridge interface for transferring tokens and NFTs between Solana and 20+ blockchains. Portal Brid…
Hashflow
Ecossistema SolanaA cross-chain DEX aggregator offering zero-slippage RFQ (Request for Quote) based trading across Solana and EVM chains. …
Solana Labs
Ecossistema SolanaThe original development company that created the Solana blockchain, co-founded by Anatoly Yakovenko and Raj Gokal in 20…
Jump Crypto
Ecossistema SolanaThe cryptocurrency division of Jump Trading, a major quantitative trading firm. Jump Crypto built the Firedancer validat…
Multicoin Capital
Ecossistema SolanaA crypto-native venture fund and one of the earliest institutional Solana investors and advocates. Multicoin Capital led…
Solana Ventures
Ecossistema SolanaAn investment arm focused on funding Solana ecosystem projects across DeFi, NFTs, gaming, and infrastructure. Solana Ven…
Glow Wallet
Ecossistema SolanaA Solana wallet emphasizing speed and developer experience with a clean interface, built-in token swap functionality, an…
Stripe Solana Integration
Ecossistema SolanaPayment processor Stripe's support for USDC on Solana, enabling businesses to accept and settle crypto payments through …
Shopify Solana
Ecossistema SolanaSolana blockchain integration for Shopify stores enabling NFT-gated commerce, token-gated discounts, and crypto payments…
dogwifhat
Ecossistema SolanaA major Solana memecoin (ticker: WIF) featuring a Shiba Inu dog wearing a pink knitted hat. Dogwifhat rose to become a t…
SAMO
Ecossistema SolanaSolana's self-styled ambassador dog memecoin, launched in April 2021 as one of the earliest memecoins on the network. Th…
Wormhole Queries
Ecossistema SolanaA feature of the Wormhole protocol enabling cross-chain data reads from Solana without requiring full bridge transfers. …
Jupiter Perpetuals
Ecossistema SolanaJupiter's perpetual futures trading platform using a pool-based model (JLP) where liquidity providers deposit assets to …
Sanctum Infinity
Ecossistema SolanaSanctum's multi-LST liquidity pool that accepts all Solana liquid staking tokens into a single unified pool, solving the…
Famous Fox Federation
Ecossistema SolanaA Solana NFT collection and ecosystem tools builder featuring fox-themed digital collectibles. The team created utility …
Streamflow
Ecossistema SolanaA token vesting and payroll streaming protocol on Solana enabling time-locked token distribution, cliff vesting, and rea…
Dual Finance
Ecossistema SolanaA DeFi options protocol on Solana enabling projects to distribute tokens through option-based incentive programs called …
Jito Foundation
Ecossistema SolanaThe organization governing the Jito protocol ecosystem including JitoSOL liquid staking, MEV rewards distribution, and t…
Chorus One
Ecossistema SolanaA major institutional staking provider running Solana validators alongside 50+ other proof-of-stake networks. Chorus One…
Everstake
Ecossistema SolanaOne of the largest staking providers by number of networks supported, operating Solana validators with enterprise-grade …
Pyth Data Association
Ecossistema SolanaA Swiss-based entity governing the Pyth oracle network, managing the PYTH governance token, publisher onboarding, and pr…
Squads Labs
Ecossistema SolanaThe company behind Squads Protocol (multisig smart accounts) and Fuse wallet on Solana. Squads Labs builds smart account…
Helius Labs
Ecossistema SolanaA Solana infrastructure company providing RPC nodes, webhooks, DAS API (Digital Asset Standard), and developer tools. He…
Crossmint
Ecossistema SolanaAn NFT infrastructure-as-a-service platform on Solana and other chains providing APIs for minting, custodial wallets, an…
Underdog Protocol
Ecossistema SolanaAn NFT API platform on Solana enabling developers to create and manage compressed NFTs at scale through simple REST APIs…
MetaDAO
Ecossistema SolanaA governance experimentation project on Solana implementing futarchy, a decision-making model where conditional token ma…
Cubik
Ecossistema SolanaA quadratic funding platform on Solana connecting open-source projects with community funding through matching pools, in…
Ore
Ecossistema SolanaA proof-of-work mining token on Solana where miners compete to find valid hashes using a smart contract that implements …
Send
Ecossistema SolanaA Solana-native messaging and payments token enabling wallet-to-wallet transfers through a simplified mobile interface f…
Tensor Foundation
Ecossistema SolanaThe organization governing the Tensor NFT marketplace and its TNSR governance token. Tensor Foundation oversees protocol…
Backpack MiFID License
Ecossistema SolanaBackpack Exchange's EU regulatory milestone, obtaining a MiFID II license through its acquisition of FTX EU in 2024. Thi…
Solayer
Ecossistema SolanaA restaking protocol on Solana enabling users to restake their SOL or liquid staking tokens to secure additional service…
Jito Restaking
Ecossistema SolanaJito's restaking infrastructure on Solana enabling staked SOL and JitoSOL to secure additional networks and services bey…
Phoenix Wallet
Ecossistema SolanaA Solana wallet focused on DeFi power users with built-in limit orders, DCA strategies, and advanced transaction simulat…
Switchboard On-Demand
Ecossistema SolanaSwitchboard's pull-based oracle model on Solana where data feeds are updated on-demand when requested by consuming proto…
Marinade Native
Ecossistema SolanaMarinade Finance's non-custodial native staking product that distributes SOL across hundreds of validators without issui…
Solana Actions & Blinks
Ecossistema SolanaThe combination of Solana Actions (API endpoints returning signable transactions) and Blockchain Links (blinks — URLs th…
Dune Analytics (Solana)
Ecossistema SolanaA blockchain analytics platform that added Solana data support, enabling analysts to write SQL queries against indexed S…
Flipside Crypto
Ecossistema SolanaA blockchain analytics platform providing Solana on-chain data through SQL-queryable datasets and pre-built dashboards. …
Phantom Mobile
Ecossistema SolanaPhantom's mobile wallet application for iOS and Android providing full Solana wallet functionality including token swaps…
Helium Mobile
Ecossistema SolanaA mobile carrier service built on the Helium network on Solana, offering cellular coverage through a combination of dece…