Skip to content

Glossary

The complete directory of TRON terminology. From core network mechanics to DeFi operations, every term is defined with technical accuracy to help you navigate the ecosystem with confidence.

Aave

#
Ethereum's leading open-source lending and borrowing protocol. Referenced as a comparison: JustLend is the leading lending protocol on TRON, architecturally similar to Aave's interest rate model and collateral system.

ABI (Application Binary Interface)

#
The JSON specification that describes a smart contract's external interface: function names, input/output parameter types, state mutability, and event signatures. Required by tronweb and other tooling to encode calls and decode responses.

ABI Encoding

#
The binary serialization format for passing data to and from TVM/EVM smart contract functions. Encodes a 4-byte function selector (keccak256 hash of the signature), followed by 32-byte padded values for each argument.

Abstraction Layer

#
A simplified interface hiding complex underlying details. tronweb is an abstraction layer over raw TRON node RPC calls — it handles serialization, signing, and broadcasting so developers interact with simple JavaScript functions.

Access Control

#
The set of rules determining which addresses can call which functions in a smart contract. Typically implemented with onlyOwner modifiers, role-based access control (e.g., OpenZeppelin's AccessControl), or multi-sig governance. Misconfigured access control is one of the most common smart contract vulnerabilities.

Account

#
The fundamental unit of identity on TRON. A TRON account is a 34-character Base58Check address that holds TRX, token balances, staking state, and transaction history. Accounts must be activated by receiving a first inbound transaction before they exist on-chain.

Account Abstraction

#
A design pattern enabling smart contracts to act as wallets with custom authentication logic (e.g., multi-factor, social recovery). Not natively implemented on TRON as EIP-4337 is on Ethereum; TRON provides multi-sig accounts as the closest native equivalent.

Account Activation

#
The process of recording a new TRON address on-chain. An address is not active until it receives its first inbound transaction. Activation burns exactly 1.0 TRX from the sender rather than the recipient.

Account Age

#
The time elapsed since an address's first transaction. Some protocols and analytics tools use account age as a signal of genuine user history versus freshly created Sybil accounts.

Account Model

#
The state management system used by TRON (and Ethereum), where each address has a persistent balance and storage. Contrasts with the UTXO model used by Bitcoin, where value is stored in unspent outputs rather than account balances.

Account Recovery

#
The process of regaining access to a lost or compromised wallet. For seed phrase wallets: import the seed phrase into a new wallet. For accounts without seed phrase backup: funds are permanently lost. There is no account recovery mechanism on TRON beyond the seed phrase.

Accredited Investor

#
A regulatory designation for individuals meeting minimum wealth or income thresholds, permitted to participate in private investment offerings. Private rounds for TRON ecosystem tokens are often restricted to accredited investors in jurisdictions with securities regulations.

Active Address

#
An address that has sent or received at least one transaction within a specified period. Active address count is a key metric for measuring blockchain adoption. TRON consistently reports millions of daily active addresses, driven largely by USDT transfers.

Adapter

#
A contract or code layer that translates between two incompatible interfaces, enabling composability between protocols. DEX aggregators use adapters to route swaps across multiple AMMs with different interfaces.

Adaptive Energy

#
A network-level mechanism that dynamically scales the TRON network's total Energy capacity (TOTAL_ENERGY_CURRENT_LIMIT) based on real-time demand. Every minute, the protocol calculates the average Energy usage from the previous 20 blocks and compares it to a predefined target; if the network is quiet, it can expand the total supply by up to 50x (governed by the ADAPTIVE_RESOURCE_LIMIT_MULTIPLIER), effectively lowering the cost of Energy for all users by increasing the amount of Energy received per frozen TRX. Unlike the Dynamic Energy Model (TIP-491), which applies specific fee penalties to individual "hot" smart contracts to deter congestion, Adaptive Energy acts as a macro-economic lever that adjusts the supply for the entire ecosystem to ensure maximum resource efficiency and network throughput.

Address

#
The public identifier for a TRON account. A 34-character string in Base58Check encoding, always beginning with T. Derived from the public key associated with the account's private key. Equivalent to a bank account number — safe to share publicly.

Address Clustering

#
A blockchain analytics technique grouping multiple addresses likely controlled by the same entity based on transaction patterns (e.g., common inputs, change outputs). Used in chain analysis for compliance and attribution.

Address Collision

#
The theoretical scenario where two different private keys produce the same public address. Mathematically possible but astronomically improbable given the 2^256 address space. No confirmed collision has ever occurred on any ECDSA-based blockchain.

Address Derivation

#
The cryptographic process of computing a TRON address from a private key. Steps: generate the ECDSA public key from the private key → take the last 20 bytes of its Keccak-256 hash → prepend 0x41 → apply Base58Check encoding.

Address Format

#
TRON uses Base58Check encoding for human-readable addresses. Internally, the protocol stores addresses as 21-byte hex values (20 bytes + 0x41 prefix). The same private key produces a T-prefix TRON address and a 0x-prefix Ethereum address through different encodings.

Address Poisoning

#
An attack where the attacker sends a zero-value or dust transaction from an address whose first and last characters visually match a victim's frequent recipient. The goal is for the victim to copy the attacker's address from their transaction history and send funds to it.

Address Reuse

#
The practice of using the same address for multiple transactions. While technically safe on TRON (ECDSA with deterministic signing does not weaken the key through reuse), it reduces privacy by making all transactions trivially linkable on-chain.

Admin Key

#
A private key granting administrative control over a smart contract or protocol. If the admin key is compromised, the attacker can call privileged functions. Best practice: replace admin keys with a multi-sig or timelock contract to prevent single-point-of-failure exploits.

Aggregator

#
A service or protocol that combines data or liquidity from multiple sources to provide users with a better outcome than any single source could. DEX aggregators find optimal swap routes; yield aggregators route deposits to highest-yielding strategies; data aggregators combine multiple price feeds.

Airdrop

#
The unsolicited distribution of tokens to a set of addresses, typically for marketing or community-building purposes. On TRON, malicious airdrops are a common attack vector — airdropped tokens with embedded URLs lure users into phishing interactions.

Airdrop Farming

#
The practice of interacting with protocols specifically to qualify for future token airdrops, rather than for genuine use. Common in early DeFi ecosystems; protocols increasingly use snapshot criteria and anti-Sybil filters to deter airdrop farmers.

Airdrop Sniping

#
Strategies designed to retroactively qualify for protocol airdrops by imitating usage patterns of genuine users at scale. Protocols increasingly filter snipers using behavioral analysis and minimum activity thresholds.

Airdrop Warning

#
A TRON safety reminder: unsolicited airdrops of unknown tokens should be ignored. Never interact with airdropped tokens by visiting their embedded URLs or attempting to swap them — they typically lead to approval phishing contracts.

Alchemy

#
A managed blockchain API service similar to TronGrid but primarily for Ethereum. Referenced here as a comparison: TronGrid is the TRON-native equivalent — both provide reliable RPC access, rate-limited tiers, and developer dashboards.

Algorithmic Stablecoin

#
A token designed to maintain price parity with a reference asset (usually USD) through algorithmic supply adjustments rather than collateral backing. Distinguished from collateralized stablecoins like USDT, which are backed 1:1 by reserves held by a custodian.

Algorithmic Trading

#
Using computer programs to execute trades automatically based on predefined rules. Bots, arbitrageurs, and MEV searchers all use algorithmic trading on TRON. Smart contract-based liquidators are a form of on-chain algorithmic trading.

Allowance

#
The amount of a TRC-20 token that a token holder has authorized a specific smart contract or address to spend on their behalf, via the approve() function. Allowances persist until explicitly revoked and are a primary attack surface for approval phishing.

Allowance Reset

#
The process of revoking a previously granted token allowance by calling approve(spenderAddress, 0). Users should routinely revoke unused allowances on TRONSCAN's Token Approval Checker to reduce the attack surface of approval phishing.

Allowlist

#
A curated set of addresses, tokens, or contract functions that are explicitly permitted within a protocol. The inverse of a blacklist. Used in access-controlled contracts to restrict which callers can invoke sensitive functions.

Alpha

#
Information or insight that gives an investor an edge over the broader market — typically non-public, early, or deeply researched. In crypto communities, "alpha" refers to exclusive investment signals. "Alpha leak" describes insider-adjacent information being shared publicly.

Alpha Test

#
An early internal test of a protocol or product by the development team before external testing (beta). Bugs found in alpha reduce risk for later beta testers and mainnet users.

Altcoin

#
Any cryptocurrency other than Bitcoin. TRX is an altcoin. "Alt season" or "altcoin season" describes periods when altcoins outperform Bitcoin in price growth.

AML (Anti-Money Laundering)

#
A set of regulations requiring financial institutions to monitor and report suspicious transactions. CEXes handling TRX and USDT implement AML procedures. On-chain USDT transfers to blacklisted addresses are automatically blocked by Tether's smart contract.

AMM (Automated Market Maker)

#
A decentralized exchange protocol (like SunSwap) that uses smart contracts to provide liquidity. While V2 used the constant product formula (x⋅y=k), SunSwap V3 introduced Concentrated Liquidity, allowing providers to allocate capital within specific price ranges. This significantly reduces slippage for users and increases fee earnings for liquidity providers (LPs).

AMM Invariant

#
The mathematical constraint maintained by an AMM after every trade. For SunSwap V2: x * y = k (constant product). For stablecoin pools: closer to x + y = k (constant sum). The invariant defines price behavior and slippage characteristics.

Anchor Rate

#
In some DeFi lending protocols, a target interest rate that the protocol aims to maintain. The protocol adjusts supply/borrow incentives to converge toward the anchor rate.

Angel Investor

#
An early-stage investor who provides capital to a project before it has a product or revenue, typically in exchange for equity or token allocations at a discount. TRON and many DApps were backed by angel investors in early rounds.

Annual Percentage Rate (APR)

#
The annualized cost of borrowing or yield of lending, expressed as a simple percentage without compounding. Used in protocols like JustLend for borrow rates. Contrast with APY, which includes the effect of compounding.

Annual Percentage Yield (APY)

#
The effective annual return on a staked or lent position when periodic rewards are reinvested (compounded). Higher than APR when compounding occurs more than once per year. Many yield displays show APY to make returns appear larger.

Annual Report

#
A yearly disclosure document summarizing a protocol's financial performance, development milestones, and future plans. Regulated entities must publish annual reports; DeFi protocols may voluntarily publish transparency reports to build community trust.

Anonymous Token

#
A token with privacy features that obscure sender, receiver, or transaction amount from public view. TRON's public ledger makes all transactions visible; privacy tokens typically use zero-knowledge proofs or ring signatures (not natively supported on TVM).

Anti-Pattern

#
A commonly used solution that appears to solve a problem but actually introduces new problems. In Solidity/TVM development: using tx.origin for authorization (vulnerable to phishing), assuming transfer() is always safe, and using block timestamps for time-sensitive logic are anti-patterns.

API (Application Programming Interface)

#
A defined set of endpoints and methods through which software systems communicate. TronGrid exposes a REST API and JSON-RPC interface for querying TRON node data and broadcasting transactions programmatically.

API Key

#
A credential used to authenticate requests to a managed API service. TronGrid requires an API key for requests above the free tier rate limit. Set as the TRON-PRO-API-KEY header in tronweb configuration.

API Rate Limit

#
A cap on the number of requests a client can make to an API within a time window. TronGrid's free tier enforces rate limits; API key holders receive higher limits. Exceeding rate limits returns HTTP 429 errors.

Application Layer

#
The layer of DeFi architecture comprising frontends, aggregators, wallets, and user-facing tools that sit on top of the protocol layer. Application layer failures (frontend hacks, UI bugs) are distinct from protocol layer vulnerabilities.

Approval Event

#
The Approval(address indexed owner, address indexed spender, uint256 value) event emitted by a TRC-20 contract when approve() is called. Indexed by owner and spender for efficient querying on TRONSCAN.

Approval Phishing

#
An attack where the victim is tricked into signing an approve() transaction, granting a malicious contract unlimited allowance to spend their tokens. The malicious contract then drains the approved tokens without any further user action.

Arbitrage

#
The practice of simultaneously buying and selling the same asset on different venues to profit from price discrepancies. On TRON, arbitrage bots exploit price differences between SunSwap pools, cross-chain bridges, and CEXes.

Arbitrageur

#
A participant who executes arbitrage trades. Arbitrageurs provide a market efficiency function by bringing prices across venues toward parity, but compete with regular users for transaction inclusion.

Archive Node

#
A full node that also stores the complete historical state of the blockchain at every block, rather than pruning older state data. Required for queries against historical account balances or contract state. Resource-intensive; most users connect to full or light nodes instead.

Array

#
A data structure in Solidity holding an ordered sequence of elements of the same type. Solidity supports both fixed-size (uint256[5]) and dynamic (uint256[]) arrays. On-chain arrays in storage are expensive to iterate — unbounded loops can cause out-of-Energy errors.

Asset

#
Any token, currency, or position held within a blockchain account. On TRON, assets include TRX, TRC-10 tokens, TRC-20 tokens, NFTs (TRC-721), and LP tokens representing DeFi positions.

Asset Backed

#
A token or stablecoin whose value is supported by real assets held in reserve. USDT is asset-backed (fiat reserves). Algorithmic stablecoins are not traditionally asset-backed. stUSdt is backed by real-world assets (RWA).

Asset Class

#
A category of investments sharing similar characteristics (equities, bonds, real estate, crypto). TRX is a native blockchain asset; USDT TRC-20 is a stablecoin; NFTs are a distinct asset class. Different asset classes have different risk/return profiles.

Asset Management

#
The professional management of financial assets. In DeFi, on-chain asset management protocols allow fund managers to manage pooled capital transparently, with smart contracts enforcing investment mandates and fee structures.

Asymmetric Cryptography

#
A cryptographic system using mathematically linked key pairs: a public key (shareable) and a private key (secret). TRON accounts use asymmetric cryptography — the public key derives the address, and the private key signs transactions. Knowledge of the public key alone cannot produce valid signatures.

Async Transaction

#
A transaction submitted asynchronously — the application does not wait for confirmation before proceeding. Common in DeFi frontends where the UI shows "Pending" state while polling for the transaction receipt. TRON's 3-second block time makes async handling simpler than Ethereum.

Atomic

#
An operation that either fully completes or fully fails, with no intermediate state visible. All TRON transactions are atomic — if any part fails, the entire transaction reverts and no state changes are committed.

Atomic Arbitrage

#
An arbitrage trade executed within a single transaction, atomically profiting from price differences between two or more pools. If any step fails, the entire transaction reverts and no funds are at risk. Used by sophisticated MEV bots on TRON's DEXes.

Atomic Swap

#
A trustless token exchange between two parties that either completes entirely or not at all, without requiring a centralized intermediary. Implemented using hash time-locked contracts (HTLCs). Used for cross-chain token swaps.

Attack Surface

#
The sum of all possible points where an attacker could attempt to exploit a system. In DeFi, attack surface includes: smart contract logic, oracle integrations, admin keys, bridge validators, and governance mechanisms.

Attestation

#
A signed claim by one party about the state or identity of another. Used in proof systems, identity protocols, and cross-chain messaging to assert that a specific condition was true at a given time.

Auction

#
A mechanism for price discovery through competitive bidding. Dutch auctions (price decreases until a buyer accepts) and English auctions (price increases as bidders compete) are both used in DeFi for token sales, NFT sales, and liquidation mechanisms.

Audit (Smart Contract)

#
A formal security review of smart contract source code by a security research firm or individual, checking for vulnerabilities such as reentrancy, integer overflow, access control failures, and logic errors. Audited contracts publish the audit report publicly.

Audit Trail

#
A chronological record of all changes to a system's state. Blockchain's immutable ledger is inherently an audit trail — every transaction, including DeFi position changes, is permanently and publicly recorded. This makes on-chain activity more auditable than traditional finance.

Authentication

#
The process of proving identity. In blockchain contexts, authentication means proving ownership of a private key by producing a valid cryptographic signature over transaction data. No username or password — only the signature is verified.

Auto-Compounding

#
Automatically reinvesting earned rewards back into the principal position to generate compound growth. Not a native feature of TRON staking — staking rewards must be manually claimed and restaked. Some yield aggregator protocols automate this process.

Auto-Liquidity

#
A tokenomics mechanism where a portion of every token transfer is automatically added to a DEX liquidity pool, deepening liquidity over time. Common in "reflection token" designs popular in 2020–2021.

Auto-Replenish

#
A feature that automatically adds more resources to an address when they run low, without user intervention. Some TRON Energy rental services offer auto-replenishment for high-volume users.

Automated Compliance

#
Using smart contracts or oracles to enforce regulatory requirements programmatically. USDT's blacklist function is a form of automated compliance. More sophisticated on-chain compliance tools are in development for institutional crypto adoption.

Available Balance

#
The liquid (non-frozen) portion of a wallet's TRX holdings. Frozen TRX is staked and cannot be transferred until unfrozen and withdrawn after the 14-day waiting period. Available balance = total TRX balance minus frozen TRX.

AVAX

#
The native token of the Avalanche blockchain. Mentioned here for context: Avalanche, Solana, and TRON represent different approaches to high-throughput L1 design — TRON achieves throughput via DPoS and fast block times rather than parallel execution.

Average Down

#
A trading strategy of buying more of an asset as its price falls, reducing the average cost basis. Common among long-term TRX holders during bear markets. Increases risk if the price continues to fall.

Axelar

#
A cross-chain communication protocol enabling general message passing between blockchains. Referenced as context: TRON's cross-chain capabilities are growing, with protocols like Axelar potentially providing interoperability between TRON and other ecosystems.

Back-Test

#
Testing a trading strategy against historical price and volume data to estimate how it would have performed. DeFi strategies can be back-tested using TRONSCAN API historical data. Back-testing results are indicative only — past performance does not guarantee future results.

Backrun

#
Inserting a transaction immediately after a known transaction to capture favorable price movements. The opposite of front-running. Backrunners profit from the price impact left by a large trade, e.g., arbitraging the post-swap price back to equilibrium.

Backtest Period

#
The historical time range used to evaluate a strategy's past performance. Longer backtest periods spanning multiple market cycles (bull and bear) provide more reliable performance estimates than short periods covering only one market phase.

Bad Debt

#
An unrecoverable DeFi lending loss that occurs when a borrower's position is liquidated at less than the outstanding loan value. The protocol absorbs the shortfall from its reserves or distributes it across remaining depositors. Common during sharp price drops that outpace liquidation bots. Distinct from good debt, which generates returns exceeding its borrowing cost.

Balanced Pool

#
An AMM pool where the reserve ratio between assets reflects their current market prices — the normal state of a functioning pool. An imbalanced pool indicates significant recent price movement and elevated impermanent loss for LPs.

Bandwidth

#
One of two network resources used to pay for TRON transactions. Covers the byte cost of TRX transfers, TRC-10 token transfers, account activations, and multi-signature transactions. Each account receives 600 free Bandwidth points per day. Smart contract calls use Energy instead.

Bandwidth Delegation

#
Sharing staked Bandwidth from one TRON address to another via the Stake 2.0 delegation system. The delegating account's Bandwidth resource quota is temporarily assigned to the recipient; the delegator's TRX and TRON Power are unaffected.

Bandwidth Point

#
The unit of Bandwidth consumption. Each transaction type has a Bandwidth cost proportional to its serialized byte size. A standard TRX transfer costs approximately 267 Bandwidth points.

Base Currency

#
The primary currency in a trading pair. In a TRX/USDT pair, TRX is the base currency and USDT is the quote currency. The exchange rate describes how many USDT (quote) are needed to buy 1 TRX (base).

Base58

#
An encoding scheme that converts binary data to a readable string using 58 alphanumeric characters, excluding visually ambiguous ones (0, O, I, l). Used as the foundation for Base58Check, which adds a checksum.

Base58Check

#
The encoding used for TRON addresses and private keys in wallet export format (WIF). Appends a 4-byte double-SHA256 checksum to the payload before Base58 encoding, enabling error detection when addresses are transcribed.

Basis Points (bps)

#
A unit of measurement equal to 1/100th of a percentage point (0.01%). Used in finance and DeFi to express small rate differences precisely. 100 basis points = 1%. Swap fees, borrow rates, and governance parameters are often defined in basis points.

Basket

#
A collection of multiple assets held together. Index tokens, multi-collateral stablecoins, and diversified vault strategies are all "baskets" of underlying assets. The basket's value is the weighted sum of its components.

Batch Minting

#
Creating many NFTs in a single transaction using TRC-1155's mintBatch() function, significantly reducing per-token Energy cost compared to minting TRC-721 tokens individually.

Batch Transaction

#
Combining multiple operations into a single on-chain transaction for efficiency. Reduces total Bandwidth/Energy cost and provides atomic execution. Used by multi-call contracts, DEX aggregators, and yield harvesting bots.

Beacon

#
In Ethereum, the Beacon Chain coordinates the Proof-of-Stake validator set. Referenced here as context: TRON uses DPoS consensus with 27 elected SRs rather than a separate beacon chain architecture.

Bear Market

#
A sustained period of declining asset prices across a market, typically defined as a drop of 20% or more from recent highs. Relevant to TRX holders because bear markets affect the TRX-denominated value of staking rewards and collateral health factors in lending protocols.

Bear Trap

#
A technical pattern where prices appear to be breaking down (signaling a bear market), but quickly reverse upward, trapping short sellers. Common during crypto market consolidation phases.

Beta (Risk)

#
A measure of an asset's price sensitivity to broader market movements. A TRX beta of 1.5 means TRX tends to move 1.5x the market's direction. High-beta assets like TRX amplify both gains and losses relative to a lower-volatility benchmark.

BFT (Byzantine Fault Tolerance)

#
A property of a distributed system that continues operating correctly even when some participants fail arbitrarily or act maliciously (Byzantine faults). A BFT system tolerating f faults requires at least 3f + 1 participants to maintain correctness. TRON combines DPoS block production with PBFT-style attestations to achieve BFT finality: a block becomes irreversible (solidified) once 19 of 27 SRs have broadcast signed acknowledgments. See also: PBFT, Solidification.

Binance Smart Chain (BSC)

#
A blockchain operated by Binance with EVM compatibility. Mentioned here because many users and developers compare BSC and TRON for low-fee USDT transfers — both offer significantly lower fees than Ethereum for stablecoin transactions.

BIP-39

#
Bitcoin Improvement Proposal 39. Defines the standard for generating mnemonic recovery phrases from random entropy using a fixed wordlist of 2048 words. The BIP-39 standard is used by TronLink, Ledger, and virtually all modern HD wallets, including TRON wallets.

BIP-44

#
Bitcoin Improvement Proposal 44. Defines a hierarchical deterministic wallet derivation path structure: m / purpose' / coin_type' / account' / change / address_index. TRON's coin type is 195. TronLink derives account keys at m/44'/195'/0'/0/0.

Bitcoin

#
The first decentralized cryptocurrency, launched in 2009 by the pseudonymous Satoshi Nakamoto. Uses Proof-of-Work consensus. Relevant in the TRON context as the benchmark for decentralized value storage; TRON's design philosophy prioritizes throughput and DeFi over Bitcoin's store-of-value focus.

BitTorrent (BTT)

#
The native token of the BitTorrent ecosystem, acquired by TRON in 2018. BTT enables token-based incentives for BitTorrent's peer-to-peer file-sharing network. Issued as a TRC-10 token on TRON. The acquisition expanded TRON's ecosystem into decentralized file sharing.

Blacklist

#
A list of addresses blocked from interacting with a contract or service. USDT's TRC-20 contract includes a blacklist function allowing Tether to freeze specific addresses. TRON itself does not have a protocol-level blacklist; blacklisting is a feature of individual token contracts.

Block

#
The fundamental unit of the TRON blockchain. Each block contains a set of confirmed transactions, a reference to the previous block (parent hash), a timestamp (in milliseconds), and the address of the Super Representative that produced it. Blocks are produced approximately every 3 seconds.

Block Explorer

#
A web application for querying and inspecting blockchain data: transactions, addresses, contract interactions, token transfers, and network statistics. TRONSCAN (tronscan.org) is TRON's primary block explorer. Nile has nile.tronscan.org.

Block Finality

#
The state at which a block's transactions are considered irreversible. TRON achieves soft finality at 1 confirmation and practical finality at 19 confirmations (~57 seconds). Exchanges typically require 20+ confirmations for TRX deposits before crediting user accounts.

Block Hash

#
A cryptographic fingerprint of a block's contents. Each block's hash is included in the next block as the parent hash, forming the immutable chain. TRON uses the reference block hash in TAPOS to prevent transaction replay.

Block Height

#
The sequential number of a block in the blockchain, counting from the genesis block (height 0). Used to reference specific points in chain history and to measure confirmation depth.

Block Latency

#
The time between a transaction being broadcast and being included in a block. TRON's 3-second block time provides very low block latency. For real-time payment use cases, TRON's latency compares favorably with most other major blockchains.

Block Producer

#
A Super Representative (SR) node authorized to create and broadcast new blocks. The 27 active SRs take turns producing blocks in a rotating schedule. A missed block results in no block reward for that slot.

Block Proposer

#
The node responsible for assembling and broadcasting a new block in a given slot. On TRON, block proposer duty rotates among the 27 active SRs according to a scheduled order.

Block Reward

#
The TRX minted and awarded to the Super Representative for each block they produce. Currently 8 TRX per block (reduced from 16 via governance vote). Block rewards are distributed on top of vote rewards and are the primary incentive for SR block production.

Block Size

#
The maximum data capacity of a single block, which limits how many transactions can be included. TRON does not have a fixed block size limit in bytes; instead, it limits block capacity by Energy and Bandwidth consumption.

Block Time

#
The target interval between consecutive blocks. TRON's target block time is approximately 3 seconds, significantly faster than Ethereum's ~12 seconds. Shorter block time means faster transaction confirmation.

Blockchain

#
A distributed ledger where data is organized into a chain of cryptographically linked blocks. Once recorded, data cannot be altered without invalidating all subsequent blocks. TRON is a public, permissionless blockchain — anyone can read the ledger, deploy contracts, or send transactions.

Blockchain Analytics

#
Tools and techniques for analyzing on-chain data to extract insights: user behavior, protocol performance, fund flows, wallet clustering. TRONSCAN, Dune Analytics (for supported chains), and specialized providers offer TRON blockchain analytics.

Blockchain Explorer

#
See Block Explorer.

Blockchain Trilemma

#
The thesis that a blockchain can optimize for at most two of three properties simultaneously: security, scalability, and decentralization. TRON prioritizes scalability and security at some cost to decentralization (27 elected SRs vs thousands of validators on Ethereum).

Bond (Governance)

#
A deposit required to submit a governance proposal or take a privileged action, returned if the action is legitimate and forfeited if dishonest. Not currently used in TRON's governance; instead, the 9,999 TRX SR registration deposit serves a partial bonding function.

Bond Curve

#
See Bonding Curve.

Bonding

#
In some protocols, the mechanism where users sell assets to the protocol at a discount in exchange for the protocol's native token with a vesting delay. Creates protocol-owned liquidity. Examples: Olympus DAO pioneered bonding; some TRON ecosystem protocols experiment with similar mechanics.

Bonding Curve

#
A mathematical function defining the relationship between a token's supply and its price. Used in some token issuance mechanisms where buying tokens increases price and selling decreases it according to a fixed formula. Not a native TRON primitive but used by some DApps.

Bootstrapping

#
The process of establishing initial liquidity and users for a protocol without external capital. Common techniques: liquidity mining, token incentives, seed partnerships. A cold-start problem for AMM pools — without initial liquidity, no trading is possible.

Borrow Cap

#
A protocol parameter setting the maximum total amount of a specific asset that can be borrowed from a lending pool. Borrow caps limit protocol exposure to a single asset, reducing the impact of oracle manipulation or sudden price moves.

Borrow Limit

#
The maximum amount a user can borrow from a lending protocol, determined by their collateral value and the collateral factors of each deposited asset. Exceeding the borrow limit is prevented by the protocol contract.

Borrow Rate

#
The interest rate a borrower pays on a loan in a DeFi lending protocol. On JustLend, borrow rates are algorithmic — they increase as utilization (ratio of borrowed to supplied assets) increases, to incentivize more supply and less borrowing.

Borrower

#
A user who takes a loan from a DeFi lending protocol by posting collateral. On JustLend, borrowers pay variable interest rates that increase with pool utilization. Borrowers must maintain sufficient collateral to avoid liquidation.

Bot

#
An automated script that monitors the blockchain or mempool and submits transactions without human intervention. Trading bots, arbitrage bots, liquidation bots, and front-running bots are all active on TRON, particularly in SunSwap pools.

Break-Even

#
The price or yield level at which total costs exactly equal total returns, resulting in zero net profit or loss. In TRON staking, break-even is the point where staking rewards recover the opportunity cost of having TRX locked for 14 days.

Bridge

#
A protocol that allows assets to move between two separate blockchain networks. Bridges typically lock assets on the source chain and mint equivalent wrapped tokens on the destination chain. TRON supports bridging of ETH, WBTC, and other assets via various cross-chain bridge protocols.

Bridge Fee

#
The cost of moving assets between blockchains via a bridge. Includes: smart contract interaction fees on both chains, bridge validator fees, and any spread applied. Total bridge cost can be significant for small transfers.

Bridge Hack

#
A theft from a cross-chain bridge's locked assets, typically by compromising bridge validators or exploiting smart contract vulnerabilities in the bridge contracts. Bridge hacks represent some of the largest DeFi thefts to date (Ronin, Wormhole, Nomad). TRON users should evaluate bridge security carefully before using cross-chain transfers.

Bridge Validator

#
A node in a cross-chain bridge network responsible for verifying that an asset was locked on the source chain and authorizing minting on the destination chain. Bridge validator security determines overall bridge safety — compromised validators can authorize fraudulent mints.

Brokerage Ratio

#
An alternate term for the reward ratio: the percentage of SR rewards that a Super Representative distributes to voters rather than retaining. A brokerage ratio of 80% means voters receive 80% of the SR's earnings proportionally.

BTFS (BitTorrent File System)

#
A decentralized file storage protocol built on the BitTorrent network and integrated into the TRON ecosystem. BTFS allows users to store and retrieve files in a distributed, peer-to-peer manner, with BTT tokens used to incentivize storage providers. Files are addressed by content hash rather than location, making stored content tamper-resistant and censorship-resistant.

BTTC (BitTorrent Chain)

#
An EVM-compatible Layer 1 blockchain developed by BitTorrent (a TRON ecosystem entity) to enable cross-chain interoperability between TRON, Ethereum, and BNB Chain. BTTC uses a Proof-of-Stake consensus and supports bridging assets across the three networks. Its native token is BTT. Developers familiar with Solidity can deploy contracts on BTTC with minimal changes.

Bug Bounty

#
A program where security researchers are financially rewarded for discovering and responsibly disclosing vulnerabilities in a protocol before they are exploited. Responsible protocols publish bug bounty programs; the absence of one is a yellow flag.

BUIDL

#
Crypto community slang for "build" — the focus on creating real projects rather than just speculating on prices. "BUIDL, not HODL" is a community ethos encouraging developer activity in blockchain ecosystems including TRON.

Bull Market

#
A sustained period of rising asset prices. In crypto markets, bull markets are often characterized by high trading volumes, positive sentiment, and rapid price appreciation across most assets.

Burn (Token)

#
The permanent removal of tokens from circulating supply by sending them to an address from which they can never be recovered (typically the zero address or a provably uncontrolled address). TRX is burned by the protocol when users pay transaction fees without staked resources.

Burn Address

#
See Dead Address, Null Address, Zero Address.

Burn Mechanism

#
The protocol rules governing how TRX is removed from supply. On TRON: (1) transaction fees paid without staked resources burn TRX at the current rate, (2) governance can burn TRX from the protocol reserve, (3) some TRC-20 tokens implement their own burn mechanics on transfer.

Burn Rate

#
The rate at which TRX is destroyed to pay for network resources in the absence of staked Energy or Bandwidth. Expressed as Energy or Bandwidth generated per TRX burned (e.g., ~10,000 Energy per TRX (100 sun/Energy), 1,000 Bandwidth per TRX). Burn rate is a dynamic, governance-controlled parameter.

Burning Address

#
See Dead Address, Null Address, Zero Address. Any address to which tokens are sent for permanent destruction.

Buy Pressure

#
Market forces pushing an asset's price upward due to increased demand. Buy pressure on TRX comes from: staking demand, DeFi activity requiring TRX for fees, and speculative investment.

Buy-and-Hold

#
An investment strategy of purchasing and retaining an asset for an extended period regardless of short-term price fluctuations. The crypto equivalent of HODL. Historically favorable for TRX holders across multi-year timeframes during bull cycles.

Bytecode

#
The compiled, binary form of a Solidity smart contract that the TVM executes. Bytecode is stored on-chain at the contract address. Contract verification on TRONSCAN allows comparison between source code and deployed bytecode.

Callback

#
A function in a receiving contract that is automatically called when certain conditions are met — for example, onERC721Received() for TRC-721 safe transfers or onTRC1155Received() for TRC-1155 transfers. Callbacks allow recipient contracts to validate and respond to incoming tokens.

Calldata

#
The raw binary data passed to a smart contract function call. In Solidity, parameters declared as calldata are read-only and not copied to memory, reducing Energy consumption. Calldata is visible in transaction detail on TRONSCAN.

Candlestick Chart

#
A price chart displaying open, high, low, and close (OHLC) values for each time period as a "candle" shape. Green/white candles indicate price increased; red/black indicate it fell. Standard in TRX and crypto trading interfaces.

Canonical Address Format

#
The standard format for presenting a TRON address. TRON uses Base58Check encoding (T-prefix). The "canonical" form is always the T-prefix version, regardless of hex equivalents.

Capital Allocation

#
The process of distributing funds across different investment opportunities. In DeFi, capital allocation across staking (TRX), liquidity provision (SunSwap), and lending (JustLend) requires balancing yield, liquidity, and risk.

Capital Efficiency

#
A measure of how effectively deployed capital generates yield or enables transactions. Concentrated liquidity (SunSwap V3) is more capital-efficient than standard AMM liquidity because it earns fees only within a defined price range where trading actually occurs.

Capital Gain

#
The profit from selling an asset for more than its purchase price. Cryptocurrency capital gains are taxable in most jurisdictions. TRON transactions are publicly visible on-chain, making tax calculation possible using chain analytics tools.

Catch (try/catch)

#
Solidity 0.6+ syntax for handling reverts from external calls without reverting the entire transaction. Useful in complex protocols needing to handle failed sub-calls gracefully.

CDP (Collateralized Debt Position)

#
A debt position backed by locked collateral in a DeFi protocol. The user deposits collateral, borrows a stablecoin or other asset up to a maximum LTV, and must maintain sufficient collateral to avoid liquidation. JustStable (USDJ) formerly used CDPs prior to its deprecated status in 2025.

Censorship Resistance

#
The property of a blockchain where no authority can prevent valid transactions from being included in a block. TRON's 27 SRs represent a smaller validator set than Ethereum, but achieving censorship in practice still requires controlling >19 SRs simultaneously.

Centralization Risk

#
The risk that a protocol's security or availability depends on a small number of parties. In TRON: 27 SRs represent a higher centralization risk than Ethereum's hundreds of thousands of validators, but lower risk than a company-controlled database.

CEX (Centralized Exchange)

#
A cryptocurrency exchange operated by a company that holds user funds in custody (e.g., Binance, Coinbase, Kraken). Contrasts with DEX (Decentralized Exchange). CEXes are common on/off ramps for TRX and TRC-20 tokens but require identity verification (KYC).

Chain Analysis

#
The practice of analyzing blockchain transaction data to trace fund flows, identify related addresses, and attribute activity to entities. Used by law enforcement, compliance teams, and investigators. TRON's fully public ledger makes all transactions traceable.

Chain Data

#
The raw data stored on a blockchain: transactions, blocks, smart contract state, and event logs. Chain data is accessible through block explorers (TRONSCAN) and API services (TronGrid).

Chain ID

#
A numeric identifier for a specific blockchain network, preventing transactions signed for one network from being replayed on another. TRON mainnet has no Chain ID in the Ethereum sense; TRON uses TAPOS (transaction reference block) for replay protection instead.

Chain Split

#
When a blockchain diverges into two competing chains after a hard fork where some nodes do not upgrade. Both chains share history up to the fork block but diverge thereafter. Chain splits create two separate assets and ecosystems.
#
A decentralized oracle network integrated with TRON. It provides reliable data feeds, including Price Feeds and Proof of Reserve, to TVM smart contracts. While a widely used standard, WINkLink is the native oracle network for the TRON ecosystem.

Checkpoint

#
A block agreed upon by network participants as a finalized historical point below which chain reorgs are impossible. Ethereum uses checkpoints in its finality gadget; TRON's DPoS achieves similar guarantees through 2/3 majority block signing.

Checksum

#
A short value derived from data used to detect transcription errors. TRON addresses include a checksum (via Base58Check encoding) so that a mistyped address can be detected before funds are sent to a wrong destination.

Circuit Breaker

#
A smart contract mechanism that automatically pauses protocol operations when predefined conditions are met (e.g., rapid TVL decline, oracle price deviation). Acts as an automatic safety valve against exploits and market crashes.

Circulating Supply

#
The number of tokens currently in public circulation, excluding locked, staked, or reserved tokens. For TRX, circulating supply includes all TRX accessible to users but not the portion locked in the network's system contracts or unclaimed rewards. Market capitalisation uses circulating supply; fully diluted valuation (FDV) uses total supply. A large gap between the two signals significant future sell pressure as locked tokens unlock.

Claim

#
The act of withdrawing accumulated rewards from a staking, liquidity mining, or lending protocol. On TRON, vote rewards and staking interest must be explicitly claimed — they do not auto-compound unless a protocol specifically implements auto-compounding.

Claim Period

#
A window of time during which eligible users can claim airdropped tokens or protocol rewards. After the claim period expires, unclaimed tokens may be returned to the treasury or burned.

Claim Rewards

#
The user action of withdrawing accumulated staking or liquidity mining rewards. On TRON, vote rewards accumulate in the SR system and must be explicitly claimed. Some protocols auto-compound rewards without requiring user action.

Clawback

#
A provision allowing a protocol or governance to reclaim previously distributed tokens under specific conditions, such as a team member leaving early or a security incident.

Clearing

#
In finance, the process of reconciling orders and ensuring both parties to a trade fulfill their obligations. On-chain trades settle atomically in the same transaction — there is no separate clearing layer, as is required in traditional finance.

Cliff (Vesting)

#
A vesting schedule component where no tokens are released until a specific date (the "cliff"), after which tokens begin releasing. Example: 1-year cliff followed by 3 years of monthly linear vesting — team members receive nothing for the first year, then 1/36th each month thereafter.

Cliff Period

#
See Cliff (Vesting).

Clone Attack

#
Deploying a nearly identical copy of a legitimate protocol under a different name to divert users and liquidity. Clone attacks exploit user familiarity with the original's UI and brand. Always verify contract addresses against official documentation.

Coin

#
A cryptocurrency native to its own blockchain (TRX is a coin; USDT TRC-20 is a token). The coin/token distinction is technical: coins are protocol-native; tokens are issued by contracts on top of a coin's network.

CoinMarketCap / CoinGecko

#
The two primary cryptocurrency price and market data aggregators. Both list TRX, USDT (TRC-20 volume), and TRON ecosystem tokens with price, volume, market cap, and exchange data. CoinGecko provides DeFi protocol analytics; CoinMarketCap focuses on broader market data.

Cold Start Incentive

#
A bootstrapping mechanism designed to solve the cold start problem for new liquidity pools or lending markets. Often implemented as elevated initial liquidity mining rewards that decay over time.

Cold Start Problem

#
The challenge of launching a new AMM pool or lending market that requires liquidity to attract users, but requires users to attract liquidity. Solved through liquidity mining incentives, founding team seed liquidity, or protocol-owned liquidity.

Cold Storage

#
Keeping private keys completely offline, disconnected from the internet. Hardware wallets (Ledger) provide cold storage by requiring physical device confirmation for every signature, making remote theft cryptographically impossible.

Cold Wallet

#
A wallet whose private key is generated and stored offline. The key is never exposed to an internet-connected device in normal operation. Recommended for any balance that does not need daily liquidity.

Collateral

#
Assets deposited in a lending protocol (like JustLend) as security for a loan. If the collateral value falls relative to the loan value, the position may be liquidated. The collateral ratio determines how much can be borrowed against a given deposit.

Collateral Factor

#
The maximum loan-to-value ratio for a specific asset in a lending protocol. If ETH has a collateral factor of 75%, you can borrow up to 75% of its value. Lower collateral factors reduce liquidation risk by creating a larger buffer.

Collateral Liquidation

#
See Liquidation.

Collateral Ratio

#
The ratio of the value of collateral deposited to the value of debt outstanding in a lending position. Also called loan-to-value (LTV). A higher collateral ratio means safer, more overcollateralized borrowing.

Commit-Reveal

#
A two-phase protocol preventing front-running of information. In phase 1, a participant submits a hash of their intended action. In phase 2, they reveal the preimage. Used in on-chain auctions, randomness generation, and voting to prevent last-second manipulation.

Community Governance

#
Protocol decision-making where token holders vote directly on proposals rather than delegating to representatives. Pure community governance is more decentralized but slower than representative governance (SRs). TRON's governance is representative via SRs.

Community Treasury

#
A protocol-controlled fund, typically managed by governance, used to fund development, grants, audits, and marketing. SunSwap and JustLend maintain community treasuries fed by protocol fees.

Composability

#
The ability of blockchain protocols to interact directly with each other through smart contract calls. Often described as "money legos" — a user can supply to JustLend, receive interest-bearing tokens, and deposit those into SunSwap in a single transaction. TRON supports full composability for TRC-20 protocols.

Compound (Protocol)

#
Ethereum's pioneering algorithmic lending protocol that introduced the cToken model (interest-bearing receipt tokens). JustLend's jToken model is architecturally similar. Referenced here as a comparison point for users migrating from Ethereum DeFi to TRON.

Compound Interest

#
Interest calculated on both principal and previously accumulated interest. In DeFi, protocols like JustLend compound interest every block, making APY higher than the stated APR for the same position.

Compressed Public Key

#
A shorter representation of an elliptic curve public key (33 bytes instead of 65 bytes) using only the x-coordinate and a parity bit. TRON and Ethereum use uncompressed public keys in address derivation but many wallet tools work with compressed keys.

Concentrated Liquidity

#
A SunSwap V3 feature allowing liquidity providers to deploy capital only within a specified price range rather than across the full curve. Capital within the active range earns fees at a much higher rate, significantly improving capital efficiency.

Confirmation

#
The inclusion of a transaction in a block. More confirmations (blocks built on top of the transaction's block) means lower probability of reversal. On TRON, 1 confirmation takes ~3 seconds; 19 confirmations (~57 seconds) is considered final.

Consensus Finality

#
The point at which a transaction is considered irreversible by the network's consensus rules. TRON achieves practical finality in ~19 blocks (~57 seconds). Full absolute finality would require all 27 SRs to have confirmed the block.

Consensus Mechanism

#
The protocol by which distributed nodes agree on the valid state of the blockchain without a central authority. TRON uses DPoS (Delegated Proof-of-Stake). Ethereum uses PoS. Bitcoin uses PoW.

Consensus Round

#
One complete cycle of the DPoS block production rotation across all 27 SRs. Each SR produces one block per round, taking approximately 81 seconds (27 × 3 seconds) for all SRs to produce their assigned block.

Constant Product AMM

#
An AMM design where the product of the two reserve amounts is kept constant (x × y = k). SunSwap V2 uses this formula. Trade amounts are calculated so that after each trade, x × y still equals k, with the price determined by the reserve ratio.

Contract Account

#
A TRON account controlled by deployed smart contract code rather than a private key. Contract accounts execute code when called, have on-chain storage, and can hold TRX and tokens but cannot initiate transactions independently.

Contract Address

#
The TRON address (T-prefix) assigned to a smart contract when it is deployed. Interacting with the contract (calling functions, sending tokens) uses this address as the destination.

Contract Deployment

#
The transaction that places compiled bytecode onto the blockchain, creating a new contract account at a deterministic address. Deployment costs Energy proportional to bytecode size.

Contract Factory

#
A smart contract that deploys new contract instances. SunSwap's factory contract creates new pool contracts for each new token pair. Factory contracts make deploying standardized contracts predictable and auditable.

Contract Migration

#
Deploying a new contract version and moving state (user balances, positions) from the old contract to the new one. Requires careful coordination to avoid downtime and fund loss during transition.

Contract Ownership

#
The address that has administrative control over a smart contract, typically set in the constructor and stored in a owner state variable. The owner can call privileged functions. Renouncing ownership (setting to zero address) makes a contract immutable in its administrative state.

Contract Verification

#
Publishing a contract's source code on TRONSCAN so that the explorer can compile it and confirm it matches the deployed bytecode. Verified contracts display their source code, ABI, and allow direct interaction through the explorer UI.

Conversion Rate

#
The rate at which one asset can be exchanged for another. In the TRON resource context: the Sun-per-Energy conversion rate determines how much TRX is burned per Energy unit consumed.

Counterparty Risk

#
The risk that the other party in a financial transaction will default on their obligations. In DeFi, counterparty risk is replaced by smart contract risk — you trust code, not a person. However, oracle failure or bridge compromise reintroduces counterparty risk indirectly.

CREATE

#
The EVM/TVM opcode that deploys a new smart contract. The deployed contract's address is derived from the deployer's address and their nonce (on Ethereum) or a similar deterministic scheme on TRON. See also CREATE2.

CREATE2

#
An opcode that deploys a contract to a deterministically computed address based on: deployer address + a salt value + the contract bytecode hash. Used when the contract address must be known before deployment. Works on TVM as on EVM.

Credit Delegation

#
A DeFi feature allowing one address (depositor) to authorize another address (borrower) to borrow against the depositor's collateral without the borrower posting their own collateral. Not yet widely deployed on TRON.

Credit Score (On-Chain)

#
An emerging concept in DeFi where on-chain transaction history, repayment behavior, and identity verification are used to assess creditworthiness and offer undercollateralized loans. Not yet mainstream on TRON.

Cross-Chain

#
Any operation or protocol that involves interoperability between two separate blockchain networks. Examples: bridging USDT from TRON to Ethereum, using a cross-chain oracle, or a multi-chain DEX aggregator. Requires trust in bridge validators or lock-and-mint mechanics.

Cross-Chain Bridge Risk

#
The security risk inherent in using a bridge to transfer assets between blockchains. Bridge hacks have caused billions in losses across the industry. Risk factors: number of validators (fewer = higher risk), smart contract audit status, value locked (higher TVL = bigger target).

Cross-Chain Message

#
Data sent from one blockchain to another through a bridge or messaging protocol. Cross-chain messages can carry not just token values but arbitrary calldata, enabling cross-chain DeFi operations.

Cross-Collateralization

#
Using a single collateral asset to secure multiple loans simultaneously, or using the combined value of multiple assets as collateral for a single loan. Increases capital efficiency but amplifies liquidation risk across positions.

Crypto Native

#
A user or institution with deep familiarity with blockchain technology, DeFi primitives, and self-custody practices. Contrasts with "TradFi native" — traditional finance participants encountering crypto for the first time.

Crypto Winter

#
An extended period of depressed cryptocurrency prices and reduced market activity. Typically follows a major bull market peak. Projects that survive crypto winters are often considered stronger for it; weaker projects fail during this period.

Cryptocurrency

#
A digital asset that uses cryptography to secure transactions and control the creation of new units, operating on a decentralized network. TRX is the native cryptocurrency of the TRON network.

CSAMM (Constant Sum AMM)

#
An AMM design using the formula x + y = k, maintaining a constant sum of reserves rather than a constant product. Provides zero slippage between two identical-value assets (e.g., two stablecoins) but breaks if one asset depegs. Used in some stablecoin swap pools.

Custodial

#
A service model where a third party (exchange, wallet provider) holds a user's private keys on their behalf. Custodial holders can freeze withdrawals, implement KYC, or lose funds in a hack. Contrast with self-custody.

Custodian

#
An entity holding financial assets on behalf of clients. In crypto: exchanges, institutional custodians (Coinbase Custody, BitGo). Using a custodian introduces counterparty risk but may be required for regulated entities. TRON assets can be self-custodied or held through custodians.

Custody

#
Control over the private keys (and therefore the assets) of a blockchain account. Self-custody means you hold your own keys. Exchange custody means the exchange holds them. "Not your keys, not your coins" refers to the risks of custodial arrangements.

Daily Active Users (DAU)

#
The number of unique addresses that transact on a blockchain or protocol within a 24-hour period. A key adoption metric. TRON consistently reports high DAU driven by USDT transfers and DeFi activity.

Daily Volume

#
The total value of transactions processed by a protocol or blockchain in a 24-hour period. TRON's daily volume is dominated by USDT transfers. High daily volume relative to TVL indicates active capital utilization.

DAO (Decentralized Autonomous Organization)

#
An organization governed by smart contract rules rather than human management hierarchies. Governance decisions are made through on-chain voting, typically proportional to token holdings or locked stake. TRON's governance is partially DAO-like, with SRs voting on protocol parameters.

DAO Attack

#
An exploit targeting a DAO's governance mechanism to pass malicious proposals or drain treasury funds. The original "DAO hack" on Ethereum (2016) was a reentrancy exploit; modern DAO attacks more commonly target governance voting systems.

DAO Treasury

#
A reserve of assets controlled by a DAO's governance process. TRON DAO's treasury funds ecosystem development, grants, and SR operations. Transparent on-chain treasuries allow the community to audit fund allocation.

DApp (Decentralized Application)

#
An application that runs on a blockchain network rather than a centralized server. DApp logic is encoded in smart contracts; frontends are typically hosted on conventional web servers. JustLend and SunSwap are TRON DApps.

DApp Browser

#
A built-in browser in a mobile wallet app that allows users to navigate to and interact with DApp frontends within the wallet interface. TronLink's mobile app includes a DApp browser providing direct access to SunSwap, JustLend, and other TRON DApps.

dApp Ecosystem

#
The collection of decentralized applications built on a blockchain. TRON's dApp ecosystem includes DeFi protocols, NFT platforms, gaming applications, and payment tools — all leveraging TRON's low fees and high throughput.

Dark Pool

#
A private trading venue where large trades execute without being visible in public order books, reducing market impact. Some OTC desks provide dark pool services for institutional TRX/USDT block trades.

Data Availability

#
The guarantee that all data needed to verify a block or state transition is accessible to network participants. Critical for rollups — if data is unavailable, fraud cannot be proven. TRON's full nodes maintain complete data availability for all historical state.

Data Feed

#
A stream of price or data values provided by an oracle to a smart contract. WINkLink and Chainlink Price Feeds update on-chain at fixed intervals or when prices deviate beyond a threshold, providing JustLend and other protocols with collateral valuations.

Dead Address

#
An address for which no private key is known and no one can ever sign transactions. Tokens sent to a dead address are permanently inaccessible. The TRON zero address (T9yD14Nj9j7xAB4dbGeiX9h8unkKHxuWwb) is the canonical dead address on TRON.

Dead Cat Bounce

#
A temporary recovery in the price of a declining asset before it continues falling. Named after the expression "even a dead cat will bounce if dropped from a great height." Common in crypto bear markets after sharp drops.

Decentralization

#
The distribution of control, operation, and governance across many independent participants rather than a single authority. Blockchain decentralization spans multiple dimensions: geographic node distribution, number of block producers, governance participation, and code contributor diversity.

Decentralized Governance

#
A system where protocol decisions are made collectively by stakeholders rather than a centralized team. TRON's SR-based governance decentralizes some protocol decisions while the core development team retains control of certain infrastructure.

Decentralized Identity (DID)

#
A self-sovereign digital identity system where individuals control their own credentials without relying on centralized identity providers. Emerging blockchain-based DID standards could enable TRON-based identity that users own and control.

Decentralized Storage

#
Storing data across a distributed network rather than a centralized server. IPFS, Arweave, and FileCoin are decentralized storage networks. NFT metadata and DApp frontend files are increasingly stored on decentralized storage for censorship resistance.

Deep Liquidity

#
Large reserves in a trading venue enabling trades to execute with minimal price impact. TRON's USDT/TRX pairs on SunSwap benefit from deep liquidity driven by high daily transaction volumes.

Default

#
Failure to repay a loan or meet a financial obligation. In DeFi, defaults are prevented by overcollateralization and liquidation mechanisms rather than credit risk assessments. Undercollateralized DeFi (credit delegation) protocols can experience defaults.

Default Parameter

#
In smart contract development, pre-set values used when optional parameters are omitted. For example, TronLink's default feeLimit if not explicitly set by the DApp. Understanding defaults helps developers avoid unintended behavior.

DeFi (Decentralized Finance)

#
Financial services — lending, borrowing, trading, derivatives, insurance — implemented as permissionless smart contracts on a blockchain. DeFi eliminates custodial intermediaries and is accessible to anyone with a wallet.

Deflation

#
A decrease in the total supply of a token, increasing scarcity. In TRON's context, network activity that burns more TRX than is minted through block rewards creates net deflationary pressure on TRX supply.

Deflationary Token

#
A token designed to decrease in total supply over time through buy-back-and-burn, transaction tax burns, or other mechanisms. Some TRON ecosystem tokens implement deflationary mechanics in their TRC-20 contracts.

Delegated Voting

#
A governance model where token holders delegate their vote to a representative who votes on their behalf. TRON's SR system is a form of delegated voting — TRX stakers delegate governance power to SRs who vote on protocol proposals.

Delegation

#
In TRON Stake 2.0, lending Energy or Bandwidth from one address to another without transferring TRX. The delegating account retains ownership of the frozen TRX and TRON Power; only the resource quota is temporarily assigned to the recipient. Requires a minimum 3-day lock period per delegation.

Delegation Pool

#
A TRON mechanism allowing multiple addresses to pool their staked resources together for more efficient Energy delegation. Some third-party Energy providers manage delegation pools to offer market-rate Energy rental.

Delegator

#
An address that has delegated its staked Energy or Bandwidth to another address via TRON Stake 2.0's delegation feature.

Depeg

#
When a stablecoin's market price deviates significantly from its target peg (e.g., USDT trading at \$0.95 instead of \$1.00). Depegs can be temporary (arbitrage corrects them quickly) or permanent (if the backing mechanism fails, as in UST/Luna in 2022).

Deployment Key

#
The private key used to deploy a smart contract. The deployment address becomes the default admin/owner unless explicitly set otherwise. Best practice: deploy from a dedicated key separate from the protocol's operational keys.

Derivation Path

#
The specific BIP-44 path used to derive a key from an HD wallet seed. TRON's standard derivation path is m/44'/195'/0'/0/0. Different derivation paths produce different addresses from the same seed — using the wrong path results in a different address, not an error.

Deterministic

#
Producing the same output given the same input, every time. Smart contracts are deterministic — given the same initial state and transaction, all nodes produce identical results. Determinism is essential for consensus.

DEX (Decentralized Exchange)

#
A protocol enabling peer-to-contract token swaps without a custodian. On TRON, SunSwap is the leading DEX. Trades execute against on-chain liquidity pools rather than an order book, with prices set algorithmically.

DEX Aggregator

#
A protocol that routes swap orders across multiple DEX pools to find the best execution price. Rather than trading entirely within one SunSwap pool, an aggregator may split a trade across SunSwap V2, SunSwap V3, and other pools simultaneously.

DEX Volume

#
The total value of tokens traded through decentralized exchanges in a given period. A primary measure of DeFi activity. TRON's DEX volume is concentrated in SunSwap, with a significant portion of stablecoin swaps and TRX/stablecoin pairs.

Diamond Hands

#
Crypto slang for holding an asset through extreme price volatility without selling, regardless of losses. Contrasts with "paper hands" (selling at the first sign of a downturn). Neither strategy is inherently superior — context and risk management matter.

Digital Asset

#
Any asset that exists exclusively in digital form and is recorded on a blockchain. Includes cryptocurrencies (TRX), fungible tokens (USDT TRC-20), and non-fungible tokens (TRC-721 NFTs).

Digital Signature

#
A cryptographic proof that a specific private key authorized a specific piece of data (e.g., a transaction). TRON uses ECDSA (Elliptic Curve Digital Signature Algorithm) signatures. A valid signature proves the sender owns the address without revealing the private key.

Dilution

#
The reduction in each token holder's proportional ownership caused by minting new tokens. Relevant for governance tokens where new emissions give new holders voting power, and for stablecoins where new minting changes the reserve ratio.

Dispatch

#
The mechanism by which a transaction's function selector is matched to the correct function in a smart contract's ABI. The EVM/TVM reads the first 4 bytes of calldata (the function selector) and jumps to the matching function's implementation.

Dispute Resolution

#
A mechanism for resolving disagreements in a DeFi protocol, often involving a governance vote or arbitration contract. Important for protocols handling escrow, complex transactions, or real-world asset tokenization.

Distributed Ledger

#
A database shared and synchronized across many nodes, with no central authority maintaining the master copy. Blockchain is the most common form of distributed ledger. TRON is a distributed ledger maintained by its full node network globally.

Divisibility

#
The number of decimal places a token can be divided into. TRX has 6 decimal places (minimum unit: 1 Sun). Most TRC-20 tokens use 6 or 18 decimal places. NFTs (TRC-721) are indivisible (0 decimal places).

Documentation

#
Technical reference material explaining how a protocol or API works. TRON's developer documentation is at developers.tron.network. Good documentation is a quality signal for serious projects; poorly documented protocols increase integration risk.

Double Spend

#
An attack where the same tokens are spent twice by broadcasting two conflicting transactions. Prevented on TRON by TAPOS (reference block mechanism) and DPoS finality. Once a transaction has sufficient confirmations, reversal becomes computationally impractical.

Downtime Risk

#
The risk that a DeFi protocol becomes temporarily inaccessible, preventing users from managing positions. On TRON, downtime risk manifests as: SR network disruption, TronGrid API outages, or frontend takedowns. Self-operated nodes eliminate TronGrid outage risk.

DPoS (Delegated Proof-of-Stake)

#
A consensus mechanism where token holders vote to elect a fixed set of delegates (Super Representatives) who produce blocks on the network's behalf. TRON uses DPoS with 27 elected SRs. Combines token-holder governance with efficient block production.

Dual-Token Model

#
A tokenomics design using two distinct tokens: one for governance/utility, one for stable value or yield. TRON's ecosystem features multiple dual-token protocols (e.g., JustLend uses JST for governance and supports USDT as collateral).

Dust

#
A very small amount of token — too small to be economically transferred given transaction fees. On TRON, dust often refers to airdropped junk tokens with zero legitimate value, deposited to wallets as part of phishing or address-poisoning attacks.

Dust Attack

#
Sending tiny amounts of a token to a large number of addresses to track wallet activity (clustering analysis) or as the first stage of a phishing attack (poisoning the recipient's transaction history with a lookalike address).

Dust Limit

#
The minimum amount of a token that can be meaningfully transacted given network fees. On TRON, the dust limit for USDT is effectively zero (fees are low), but extremely small amounts may be uneconomical to consolidate.

Dynamic Energy Model (DEM)

#
A network resource allocation mechanism on TRON that dynamically increases the Energy cost for transactions interacting with highly active smart contracts. When a contract's daily Energy consumption exceeds a set threshold (e.g., 5 billion Energy), a penalty multiplier (up to 340%) is applied. This prevents any single contract from monopolizing network resources and ensures fair resource distribution.

Dynamic Fee

#
A transaction fee that adjusts based on network conditions rather than a fixed rate. TRON's Energy burn rate is governance-controlled (currently 100 sun per Energy) and can change, making it a dynamic fee parameter at the protocol level.

DYOR (Do Your Own Research)

#
A reminder in crypto communities to independently verify investment information rather than relying solely on others' recommendations. Given the prevalence of scams and misinformation in crypto, DYOR is essential practice before interacting with any protocol.

ECDSA (Elliptic Curve Digital Signature Algorithm)

#
The signature scheme used by TRON (and Ethereum, Bitcoin) to sign transactions. Uses the secp256k1 elliptic curve. A private key signs data to produce a signature; anyone with the public key can verify the signature is authentic without learning the private key.

Economic Security

#
The total value at stake that would need to be corrupted or destroyed to compromise a blockchain's consensus. Higher economic security (more staked value) makes attacks more expensive. TRON's economic security is measured by the total TRX held by the 27 SRs and their voters.

Ecosystem

#
The collection of projects, protocols, wallets, tools, and communities built on a blockchain. TRON's ecosystem includes: JustLend, SunSwap, WINkLink, TronLink, TronBox, TronGrid, TRONSCAN, BitTorrent, and hundreds of DApps.

Edge Case

#
An unusual input or condition at the boundary of a system's expected operating range. Smart contract edge cases (e.g., zero-value transfers, maximum integer values, empty arrays) must be explicitly handled to prevent unexpected behavior or exploits.

Effective APY

#
The actual annualized yield after accounting for all compounding, fees, impermanent loss, and token price changes. Effective APY often differs significantly from the nominal APY advertised by protocols.

EIP (Ethereum Improvement Proposal)

#
The standardized process for proposing changes to the Ethereum protocol or its application standards. TRON has an equivalent process called TIP (TRON Improvement Proposal). EIPs are referenced in the TRON context when discussing EVM compatibility or cross-chain patterns.

EIP-1559

#
Ethereum's fee market upgrade (August 2021) introducing a base fee that is burned, reducing ETH supply. Referenced here for context: TRON's fee model is different — transaction resources are fixed by governance rather than dynamically auctioned. TRON's burn mechanism is independent of EIP-1559.

Election Cycle

#
The period between SR election recalculations on TRON. SR vote tallies are recalculated at the end of each 6-hour Epoch during the 6-second maintenance period. An SR can lose their active slot if they fall below the top 27 in votes by the end of the current cycle.

Elliptic Curve Cryptography (ECC)

#
A form of public-key cryptography based on the algebraic structure of elliptic curves over finite fields. Used in TRON for key generation and transaction signing. Provides strong security with shorter key lengths than RSA.

Embedded Finance

#
Integrating financial services directly into non-financial applications. TRON's low-fee USDT infrastructure enables embedded payment rails in e-commerce, gaming, and social apps without users needing to understand the underlying blockchain.

Emergency Multisig

#
A multisig wallet designated to take emergency protocol actions — pausing contracts, deploying patches — faster than full governance voting. Must be configured carefully: too much power creates a centralization risk; too little means slow response to exploits.

Emission Schedule

#
The predetermined or algorithmic plan for how new tokens are created and distributed over time. TRON's TRX emission comes from block rewards (8 TRX/block) and vote rewards (128 TRX/block), subject to governance changes.

Energy

#
One of two TRON network resources, required to execute smart contract operations on the TVM. Unlike Bandwidth, there is no free daily Energy allocation. Energy is obtained by staking TRX, renting from a provider, or burned from TRX at the current rate (100 sun per Energy unit = 10,000 Energy per TRX burned).

Energy Cap

#
See Energy Limit.

Energy Limit

#
The maximum amount of Energy a transaction is permitted to consume. If execution would exceed this limit, the transaction reverts and the consumed Energy is not refunded. Analogous to gas limit on Ethereum.

Energy Rate

#
The current conversion rate between TRX burned and Energy received. Set by governance. Currently: 1 TRX burned = 10,000 Energy (100 sun/Energy). Used to calculate the TRX cost of unresourced smart contract transactions.

Energy Rental

#
A service where a TRX holder delegates their staked Energy to another address for a fixed period (typically 1–3 days) in exchange for a TRX fee. More economical than burning TRX for infrequent users who need Energy occasionally but don't want to stake long-term.

Entropy

#
Randomness used in cryptographic key generation. A TRON private key is a 256-bit random number; its security depends entirely on the entropy of the random number generator. Weak entropy (e.g., from a compromised device or browser) can produce predictable, crackable keys.

Enumerable

#
A Solidity token extension (e.g., TRC-721 Enumerable) that adds functions allowing iteration over all tokens or all tokens owned by an address. Increases Energy cost of transfers but enables on-chain enumeration without off-chain indexing.

EOA (Externally Owned Account)

#
An Ethereum term for an account controlled by a private key (as opposed to a contract account). TRON's equivalent is a "Normal Account." Both refer to user-controlled addresses that can initiate transactions.

Epoch

#
A 6-hour window (7,200 blocks) representing a full voting cycle. At the end of each epoch, the SR set is recalculated based on current votes.

ERC-165

#
A standard for smart contracts to publish their supported interfaces via supportsInterface(). TRON's TRC-165 equivalent allows wallets and protocols to detect whether a contract supports TRC-20, TRC-721, TRC-1155, or custom interfaces before calling their functions.

ERC-20

#
Ethereum's standard interface for fungible tokens. Defines functions including transfer, approve, allowance, and transferFrom. TRON's TRC-20 standard mirrors ERC-20 almost exactly, allowing Solidity contracts written for ERC-20 to deploy on TRON with minimal changes.

ERC-4337 (Account Abstraction)

#
An Ethereum standard enabling smart contract wallets with custom validation logic (social recovery, multi-factor, batch transactions) without protocol changes. TRON's account model does not natively implement ERC-4337, but multi-sig accounts provide some equivalent functionality.

ERC-721

#
Ethereum's standard for non-fungible tokens (NFTs). Each token has a unique ID and a single owner. TRON's TRC-721 standard is the direct equivalent, enabling NFT creation and trading on TRON.

Error Handling

#
The mechanisms in a smart contract for managing unexpected conditions. Includes: require() (check conditions, revert with message), revert() (unconditional revert), assert() (invariant checking, uses all remaining Energy on failure in older Solidity).

Escrow

#
A third-party arrangement holding assets until predetermined conditions are met. In DeFi, smart contracts replace traditional escrow agents — the contract holds assets trustlessly and releases them when on-chain conditions are satisfied (e.g., HTLC for cross-chain swaps).

ETH (Ether)

#
The native currency of Ethereum. Mentioned here for comparison: TRX serves an analogous role on TRON (fee payment, staking, governance). Key differences: Ethereum PoS validators earn ETH, while TRON DPoS stakers earn TRX from block/vote rewards.

Ethereum

#
The second-largest blockchain by market cap, created by Vitalik Buterin in 2015. Pioneer of smart contracts and DeFi. TRON's TVM is designed for EVM compatibility, enabling Solidity developers to deploy on TRON with minimal code changes. Ethereum uses Proof-of-Stake since "The Merge" in 2022.

Ethers.js

#
Ethereum's most popular JavaScript library for blockchain interaction. TRON's tronweb is conceptually similar but TRON-specific. Developers migrating from Ethereum will find many familiar patterns with protocol-specific differences in TRON's resource model.

Etherscan

#
Ethereum's primary block explorer. Relevant as a comparison: TRONSCAN is TRON's equivalent, providing contract verification, transaction lookup, token tracking, and DeFi analytics. Developers familiar with Etherscan will find TRONSCAN similar in layout and features.

Event (Solidity)

#
A log entry emitted by a smart contract during execution, permanently recorded in the transaction receipt but not in contract storage. Events are indexed and queryable; tronweb can subscribe to them. TRC-20 contracts emit Transfer and Approval events.

Event Filtering

#
Querying the blockchain for events matching specific criteria (e.g., all Transfer events from a specific address within a block range). TRONSCAN's API and tronweb support event filtering for building transaction history UIs and analytics dashboards.

Event Log

#
The permanent on-chain record emitted by a smart contract's emit statement. Event logs are stored in the transaction receipt (not contract storage) and are indexed for efficient querying. TRC-20's Transfer and Approval events are the most common logs on TRON.

Event-Driven Architecture

#
A system design paradigm where components communicate by emitting and responding to events. Smart contract events (Solidity emit) are a form of event-driven architecture — off-chain services subscribe to contract events to trigger actions.

EVM (Ethereum Virtual Machine)

#
The sandboxed execution environment that runs Ethereum smart contracts. TRON's TVM is designed to be compatible with the EVM at the opcode level, with several differences documented in the smart contracts reference.

Exchange Listing

#
When a cryptocurrency becomes available for trading on a centralized exchange. Exchange listings drive price discovery and liquidity. TRX is listed on Binance, Coinbase, Kraken, and most major exchanges. New TRON ecosystem tokens seek exchange listings as a milestone.

Execution Environment

#
The runtime context in which smart contract bytecode runs. The TVM is TRON's execution environment. It provides the opcodes, memory model, and access to blockchain state while isolating contract execution from the node's operating system.

Execution Layer

#
In Ethereum's post-Merge architecture, the layer handling transaction processing. Referenced for context: TRON has a unified architecture rather than separate consensus and execution layers — the TVM handles execution within TRON's single-layer architecture.

Exit Liquidity

#
Slang for retail investors who buy from early holders looking to exit. Used critically: "you are the exit liquidity" means you are being sold to by those who invested at a lower price. Understanding market dynamics helps avoid being used as exit liquidity in pump-and-dump schemes.

Exit Scam

#
When the founders or team behind a project abruptly shut down, take all funds, and disappear. Distinguished from a rug pull (which is typically a smart contract mechanism) — an exit scam is a deliberate fraud by identifiable or pseudo-anonymous individuals.

Exploit

#
The use of a vulnerability in a smart contract to extract funds or manipulate state in an unintended way. Common exploit types include reentrancy (recursive calls draining funds), flash loan attacks (temporary liquidity manipulation), and integer overflow.

Exponential Decay

#
A mathematical function describing rapid initial decay that slows over time. Used in some tokenomics models (declining emission schedules) and in some interest rate models where utilization-driven rate increases decelerate at extreme levels.

External Call

#
A call from one smart contract to another contract's function. External calls are a primary attack surface: the called contract may execute unexpected code (reentrancy), fail silently, or manipulate state in ways the calling contract doesn't anticipate.

Fair Launch

#
A token distribution model where no pre-mine, insider allocation, or VC round occurs — all tokens are distributed through public mining or liquidity provision from day one. Considered more equitable than pre-sale models, though increasingly rare for well-funded projects.

Falling Knife

#
Slang for buying an asset that is rapidly declining in price. "Don't catch a falling knife" warns against buying into a sharp downtrend without evidence of a reversal. Relevant caution for TRX or altcoin traders during market crashes.

Fat Protocol Thesis

#
The argument that in blockchain networks, value accrues primarily at the base protocol layer (e.g., TRX) rather than the application layer (e.g., individual DApps), because the protocol layer captures network-wide usage. Contrasts with the internet where value accrued at the application layer.

Fee Burn

#
TRX burned permanently as a transaction fee when a user pays fees by burning TRX rather than using staked resources. Each fee burn reduces TRX circulating supply, creating deflationary pressure.

Fee Model

#
The overall structure determining how transaction costs are calculated and paid. TRON's fee model: Energy (smart contract execution) + Bandwidth (byte size) → covered by staked resources; excess burned from TRX balance. No dynamic gas auction.

Fee Optimization

#
Strategies to minimize transaction costs on TRON: staking TRX to receive Energy and Bandwidth instead of burning; renting Energy for infrequent users; batching multiple operations; optimizing contract code to reduce Energy consumption per call.

Fee Rebate

#
A refund of a portion of transaction fees to users, typically as a loyalty incentive or promotional mechanism. Some TRON DEXes and exchanges offer fee rebates in their native governance tokens for high-volume traders.

Fee Sharing

#
Distributing transaction or protocol fees among participants (LPs, stakers, token holders). SunSwap distributes 0.3% swap fees to LPs. Some protocols direct additional fees to governance stakers or the treasury.

Fee Tier

#
In SunSwap V3, the trading fee percentage for a specific pool, chosen when creating the pool. Common tiers: 0.01% (stablecoin pairs), 0.05% (correlated assets), 0.3% (standard), 1% (exotic/volatile pairs). LPs choose pools whose fee tier compensates appropriately for impermanent loss risk.

feeLimit

#
A TRON-specific transaction parameter specifying the maximum TRX (in Sun) the sender is willing to burn if staked Energy is insufficient. If contract execution reaches the fee limit, the transaction reverts. Set per transaction in tronweb's .send() options.

Fiat Currency

#
Government-issued currency not backed by a physical commodity (e.g., USD, EUR). In crypto contexts, fiat on-ramps are services that convert fiat to crypto. USDT provides a pseudo-fiat store of value on TRON without the volatility of TRX.

Fiat-Backed Stablecoin

#
A stablecoin maintained by holding an equivalent amount of fiat currency in a bank account. USDT and USDC are fiat-backed. The peg is only as reliable as the issuer's reserves and redemption guarantees.

Fibonacci Extension

#
A technical analysis tool projecting potential price targets beyond the current range using Fibonacci ratios. Used by TRX traders to set price targets during upward trends.

Fibonacci Retracement

#
A technical analysis tool using Fibonacci sequence ratios (23.6%, 38.2%, 61.8%, etc.) to identify potential support/resistance levels during price corrections. Used by TRX chart analysts to identify potential bounce or breakdown zones.

Finality

#
The point at which a transaction is considered irreversible. On TRON, practical finality is reached after ~19 blocks (~57 seconds). With DPoS consensus, a transaction confirmed by the full SR set has near-guaranteed finality absent a catastrophic network event.

Financial Primitive

#
A basic building block of a financial system. In DeFi: tokens, lending, swapping, and derivatives are primitives that compose into complex strategies. TRON's infrastructure provides these primitives at low cost.

Fintech

#
Financial technology. Blockchain protocols are a subset of fintech. TRON's stablecoin transfer infrastructure (low-fee USDT) appeals to fintechs building remittance and payment products on top of blockchain rails.

Fixed Rate Lending

#
A lending product where the interest rate is locked for the duration of the loan, unlike variable-rate protocols where rates fluctuate with utilization. Less common in current TRON DeFi but an emerging product category.

Fixed-Rate Protocol

#
A DeFi lending system offering predetermined interest rates for a fixed term, unlike variable-rate protocols. Provides predictable borrowing costs. Examples: Notional, Element Finance on Ethereum; emerging implementations on TRON.

Flagship Protocol

#
The primary, most prominent protocol in an ecosystem. JustLend and SunSwap are the leading DeFi protocols on TRON.

Flash Loan

#
An uncollateralized loan that must be borrowed and repaid within a single transaction. If the repayment condition is not met, the entire transaction reverts. Used by sophisticated actors for arbitrage, liquidation bots, and collateral swaps. Availability on TRON depends on individual protocol implementations.

Flash Loan Attack

#
An exploit combining flash loans (uncollateralized, single-transaction loans) with price oracle manipulation or other vulnerabilities to drain protocol funds. Attacker borrows massively, manipulates price, exploits the distorted price, repays the loan, and profits — all in one atomic transaction.

Flash Mint

#
The creation of uncollateralized tokens within a single transaction, used to execute operations requiring large liquidity, followed by burning the same amount before the transaction completes. Similar concept to flash loans but at the token minting level. Not widely deployed on TRON.

Float

#
See Free Float. The portion of total token supply available for open market trading.

Floor Price

#
In NFT markets, the lowest current asking price for any token in a collection. Floor price is a common measure of a collection's minimum valuation. On TRON's NFT marketplaces, floor prices are denominated in TRX.

FOMO (Fear Of Missing Out)

#
The anxiety of missing a profitable opportunity. In crypto, FOMO drives speculative buying during price run-ups, often at peaks. Decisions driven by FOMO tend to underperform disciplined strategies.

Forced Liquidation

#
An automated liquidation triggered when a borrower's collateral ratio falls below the threshold, executed by liquidator bots rather than manually by the protocol. "Forced" emphasizes that the borrower has no control once the threshold is breached.

Fork

#
A change to the blockchain's protocol rules. A soft fork is backward-compatible (old nodes still validate new blocks). A hard fork is not backward-compatible (requires all nodes to upgrade or the chain splits). TRON has undergone multiple protocol upgrades implemented as hard forks.

Fork Bomb

#
A smart contract attack consuming all available computation through infinitely nested calls or recursive function calls until the Energy limit is exhausted. The TVM's Energy limit system prevents fork bombs from harming the network beyond the transaction that triggered them.

Fork Choice Rule

#
The algorithm used by nodes to determine which chain to follow when multiple valid chains exist (e.g., after a network partition). TRON's DPoS consensus uses the longest valid chain rule, augmented by the 2/3 majority finality requirement.

Formal Verification

#
Mathematically proving that a smart contract behaves exactly as specified under all possible inputs and states. The most rigorous form of smart contract security, applied to high-value protocols. Computationally expensive but provides stronger guarantees than testing or auditing alone.

Fractional NFT

#
An NFT divided into multiple fungible shares using a smart contract, allowing multiple owners to hold fractional ownership of a single non-fungible asset. Enables otherwise unaffordable NFTs to be accessible to smaller investors.

Free Float

#
The portion of a token's total supply available for public trading — excluding locked, vested, and protocol-reserved tokens. A large difference between free float and total supply indicates significant future supply pressure when locks expire.

Freeze

#
The TRON Stake 2.0 mechanism of locking TRX to generate Energy or Bandwidth and receive TRON Power (TP) for SR voting. Frozen TRX cannot be transferred until the unstake process is completed (14-day waiting period).

Front-Running

#
The practice of inserting a transaction ahead of a known pending transaction to extract profit. On TRON, front-running is less prevalent than on Ethereum due to the simpler transaction inclusion model (no priority fee auction), but is still possible with direct node access.

Front-running

#
The practice of observing a pending transaction on the network and executing your own transaction before it, usually by paying a higher fee to block producers. On TRON, front-running is less prevalent than on Ethereum due to the DPoS consensus model and lack of a traditional mempool fee auction, but it can still occur via SR ordering.

Frontrunner

#
A bot or trader who monitors the mempool for pending transactions and submits a higher-priority transaction ahead of them to capture profit. Less prevalent on TRON than Ethereum due to TRON's simpler block inclusion model.

FUD (Fear, Uncertainty, Doubt)

#
Negative or misleading information spread intentionally to create fear about an asset, protocol, or project. Common market manipulation tactic in crypto communities.

Full Node

#
A network node that stores and independently validates the complete blockchain history. Full nodes do not produce blocks but verify all transactions and enforce protocol rules. Contrasts with light clients, which rely on full nodes for state verification.

Fully Diluted Valuation (FDV)

#
The hypothetical market capitalization of a token if all tokens that will ever exist were in circulation today. Calculated as: current token price × maximum total supply. FDV > market cap when a significant portion of supply is locked, unvested, or not yet minted.

Fully On-Chain

#
A DApp where all logic, data, and state are stored and executed on-chain, with no off-chain components. Fully on-chain DApps are maximally trustless but limited by on-chain storage costs and computation constraints.

Function Selector

#
The first 4 bytes of the keccak256 hash of a Solidity function signature (e.g., transfer(address,uint256)). Used to identify which function to call in a contract transaction. Visible in raw transaction calldata on TRONSCAN.

Funding Rate

#
In perpetual futures, a periodic payment between long and short position holders that keeps the futures price anchored to the spot price. When longs outnumber shorts, longs pay funding to shorts; when shorts dominate, shorts pay longs. Critical for SunX traders.

Fungibility

#
The property where each unit of an asset is indistinguishable from and interchangeable with every other unit. Cash and TRC-20 tokens are fungible. NFTs are non-fungible. Privacy protocols attempt to restore fungibility to cryptocurrencies by obscuring transaction histories.

Fungible Token

#
A token where each unit is identical and interchangeable with every other unit of the same token. One USDT is equivalent to any other USDT. TRC-20 tokens are fungible. Contrasts with non-fungible tokens (NFTs/TRC-721), where each token is unique.

Futures Contract

#
A derivative agreement to buy or sell an asset at a specified price on a specified future date. Crypto futures allow leveraged speculation on price movement. SunX (sunx.io) is a perpetual futures protocol on TRON, part of the Sun ecosystem, providing futures-style derivatives on TRON.

Game Theory

#
The mathematical study of strategic decision-making among rational participants. DeFi protocol design uses game theory extensively — staking rewards, liquidation incentives, and governance mechanisms are all designed to make honest behavior the rational strategy.

GameFi

#
The intersection of gaming and DeFi — games where in-game assets have real monetary value and are owned as NFTs by players. TRON's low transaction fees make it suitable for GameFi applications requiring frequent micro-transactions.

Gas

#
The unit measuring computational effort required to execute operations on Ethereum. On TRON, gas is replaced by two separate resources: Energy (for smart contract computation) and Bandwidth (for transaction byte size). There is no "gas price" auction on TRON — resource costs are protocol-fixed.

Gas Griefing

#
An attack where a malicious callee contract deliberately wastes the caller's remaining Energy by performing expensive operations or reverting late, maximizing Energy consumption before the transaction fails.

Gas Limit

#
In Ethereum, the maximum gas a transaction can consume. The TRON equivalent is the Energy Limit, capping Energy consumption per transaction. Transactions exceeding the limit revert; unconsumed Energy/Bandwidth is not charged.

Gas Optimization

#
Techniques for reducing the computational resources consumed by smart contract execution. On TRON, this translates to Energy optimization: minimizing storage writes, using efficient data types, packing struct variables, and using calldata instead of memory.

Gas Oracle

#
A service that recommends transaction fee parameters (gas price on Ethereum; feeLimit on TRON) based on current network conditions. TRON's fixed fee model makes gas oracle services less critical than on Ethereum, where dynamic gas prices fluctuate significantly.

Gas Price

#
On Ethereum, the price per gas unit paid by the transaction sender, expressed in gwei. Not directly applicable to TRON — TRON uses Energy and Bandwidth instead of gas, with costs fixed by governance rather than dynamically bid. Developers porting from Ethereum often ask about the TRON "gas price"; the answer is that there is none.

Gas Refund

#
In Ethereum, a partial refund of gas for clearing storage slots. TRON's Energy model does not currently have an equivalent refund mechanism, but unused Energy within the feeLimit is not charged.

Gas Station Network (GSN)

#
An Ethereum protocol enabling gasless meta-transactions where a relayer pays gas on the user's behalf. The TRON equivalent concept involves Energy rental services or protocol-subsidized transactions. Not a native TRON primitive but an important UX pattern.

Genesis Block

#
The first block in a blockchain, with no parent block. The genesis block is hardcoded into the protocol and represents the network's initial state. TRON's genesis block established the initial token distribution and protocol parameters.

Genesis Block Hash

#
The cryptographic hash of the very first block (block 0) on a blockchain. Hardcoded into all node software. Any node whose genesis hash doesn't match the canonical one is on a different chain.

Genesis Representative (GR)

#
The initial set of trusted nodes appointed to validate the TRON network during its launch phase, before the first Super Representative election took place. GRs were not elected by token holders — they provided network stability while the ecosystem bootstrapped. Once the first SR election was conducted, the GR role was superseded by the ongoing DPoS election process in which any candidate meeting the deposit requirement can compete.

Ghost Transaction

#
A transaction that appears to be pending in a wallet but was never successfully broadcast to the network. Common causes: network connectivity issues during broadcast, insufficient Bandwidth, or wallet software bugs. Confirmed by checking TRONSCAN for the transaction hash.

Global State

#
The complete set of account balances, contract storage values, and protocol parameters at a given block height. Smart contracts read and modify global state during execution. Each block results in a new, immutable global state snapshot.

Good Debt

#
A profitable borrowing position in DeFi where the cost of the loan is exceeded by the returns it enables. A common example is borrowing low-APR stablecoins and deploying the proceeds in a higher-yield strategy, earning a positive carry. Contrasts with bad debt, which arises when a liquidated position covers less than the outstanding loan, leaving the protocol with an unrecoverable deficit.

Governance

#
The process by which a protocol's rules and parameters are changed over time. On TRON, governance occurs on-chain: SRs submit proposals, the top 27 SRs vote, and approved proposals take effect automatically at the next maintenance period.

Governance Attack

#
An attack in which a malicious actor acquires enough governance tokens or votes to pass a proposal that benefits themselves at the expense of the protocol — for example, minting new tokens to their own address or draining the treasury. A risk in any on-chain governance system.

Governance Forum

#
An off-chain discussion platform where protocol governance is debated before formal on-chain proposals. TRON governance discussions occur via GitHub (TIPs) and community forums. Forum discussion refines proposals before they are submitted to on-chain voting.

Governance Minimization

#
A design philosophy favoring protocols with as few governance-adjustable parameters as possible, reducing the attack surface for governance attacks and making protocol behavior more predictable. Some DeFi protocols deliberately hard-code all parameters.

Governance Parameter

#
A protocol setting that can be changed through the on-chain governance process. On TRON, governance parameters include: Energy-to-TRX ratio, block rewards, proposal thresholds, and SR slots. Currently ~50 adjustable parameters.

Governance Proposal

#
A formal on-chain submission by a Super Representative to change a specific protocol parameter. Proposals remain open for 3 days; if 19 of 27 SRs approve, the change is scheduled for the next available maintenance period.

Governance Quorum

#
The minimum participation threshold for a governance vote to be valid. If quorum is not reached, the vote result is ignored even if the approvals outnumber the rejections. TRON's SR governance requires 19/27 approvals (70.4% threshold).

Governance Token

#
A token conferring voting rights in a protocol's governance system. JST (JustLend's governance token) and SUN (SunSwap's governance token) are governance tokens on TRON. Not to be confused with TRON Power (TP), which is governance weight for SR voting.

Governance Token Distribution

#
How governance tokens (JST, SUN) are distributed across holders. Concentrated distribution (few wallets holding most supply) means governance can be dominated by a small group. Tracking distribution using TRONSCAN's token holder list helps assess governance decentralization.

Governance Voting

#
The act of casting an on-chain vote on a proposal. On TRON, SR governance votes are cast by the 27 active SRs, not directly by token holders. Token holders influence governance indirectly by choosing which SRs to vote for.

Graceful Degradation

#
A system design principle where a failure in one component causes reduced, not total, loss of functionality. In DeFi: a protocol should remain functional for withdrawals and basic operations even when some advanced features are paused due to an exploit or emergency.

Grant

#
Funding provided by a protocol treasury, DAO, or foundation to developers or teams building on their ecosystem. TRON DAO provides grants to projects building on TRON. Grants differ from investments — they don't require equity or token allocation.

Greedy Algorithm

#
An optimization approach making the locally optimal choice at each step. MEV searchers use greedy algorithms to maximize extractable value per block. Relevant context for understanding why some transactions appear "jumped" in block inclusion order.

gRPC

#
Google's Remote Procedure Call framework, used by TRON's full node API alongside the HTTP/REST interface. Provides typed, efficient binary communication for high-performance application integrations.

Guardian

#
An address or multisig with limited emergency powers in a protocol — typically the ability to pause the protocol in an emergency, but not to steal funds. A common design pattern to balance immutability with the need for emergency response.

Guild

#
A crypto community organization that aggregates users around shared interests (e.g., gaming guilds that share NFT assets). On TRON, guilds are relevant in the gaming/NFT ecosystem, enabling pooled access to game assets.

Gwei

#
The denomination used for Ethereum gas prices (1 Ether = 1,000,000,000 Gwei). Not used on TRON — TRON's fee unit is "Sun" (1 TRX = 1,000,000 Sun). Developers familiar with gwei can think of Sun as TRON's equivalent sub-unit.

Hard Fork

#
A protocol change that is not backward-compatible with previous versions. All nodes must upgrade by the hard fork block height, or they continue on the old chain. Stake 2.0 was deployed via a hard fork.

Hack Post-Mortem

#
A detailed analysis published after a security incident explaining what happened, how it happened, and what was done to remedy it. Reading post-mortems of major DeFi hacks builds understanding of common attack vectors. Most reputable protocols publish post-mortems within days of an incident.

Hackathon

#
A time-limited event where developers build projects competing for prizes. TRON DAO and ecosystem partners organize hackathons to attract developers and showcase TRON's developer capabilities. Winning projects often launch as real protocols.

Halving

#
An event where a blockchain's block reward is cut in half, reducing the rate of new token issuance. Bitcoin's halving occurs every ~210,000 blocks. TRON's block reward is governance-adjustable rather than algorithmically halved, but reward reductions serve an equivalent economic purpose.

Hard Cap

#
The maximum amount a token sale will accept (fundraising limit) or the maximum number of tokens that will ever exist. TRX has a stated maximum supply. Hard caps create supply scarcity but require governance discipline to enforce.

Hard-Coded

#
Values written directly into contract code rather than stored as modifiable state variables. Hard-coded values cannot be changed without deploying a new contract. Used for immutable protocol rules (e.g., total max supply of a token).

Hardhat

#
Ethereum's dominant smart contract development framework for testing, compilation, and deployment. Referenced as a comparison: TronBox is TRON's equivalent tool, providing similar workflow for TRON Solidity projects.

Hardware Security Module (HSM)

#
A physical computing device that generates and safeguards cryptographic keys within tamper-resistant hardware. Hardware wallets (Ledger, Trezor) are consumer HSMs. Enterprise custody solutions use dedicated HSMs for institutional key management.

Hash

#
The fixed-length output of a cryptographic hash function applied to an arbitrary input. Two different inputs produce different hash outputs (collision resistance). TRON uses keccak256 (SHA-3 variant) for transaction IDs, function selectors, and address derivation.

Hash Function

#
A deterministic function that takes any input and produces a fixed-length output. Properties: deterministic, fast to compute, pre-image resistant (cannot reverse the hash to find the input), and collision resistant. SHA-256 and keccak256 are widely used in blockchain.

Hash Lock

#
The component of an HTLC requiring the recipient to provide a cryptographic preimage (the value whose hash was committed to) to claim the funds. Hash locks enable trustless cross-chain atomic swaps.

Hash Rate

#
The computational speed of a Proof-of-Work mining network, measuring how many hash operations are performed per second. Not directly applicable to TRON (DPoS), but relevant when comparing TRON's security model to Bitcoin's hash-rate-based security.

HD Wallet (Hierarchical Deterministic Wallet)

#
A wallet that generates a tree of key pairs from a single root seed (derived from the mnemonic phrase). Any number of addresses can be regenerated from the same seed phrase in the same deterministic order. TronLink uses HD wallet architecture.

Health Check

#
A routine assessment of the state of a smart contract system, including TVL changes, reserve ratios, collateral health, oracle freshness, and governance activity. Used by risk managers and protocol monitors to detect early warning signs.

Health Factor

#
In JustLend, the ratio indicating how far a borrowing position is from liquidation. Calculated as: (total collateral value × liquidation threshold) ÷ total borrowed value. Below 1.0 triggers liquidation. The higher the health factor, the safer the position.

Hedge Fund

#
A pooled investment vehicle using sophisticated strategies including leveraged positions, derivatives, and arbitrage to generate returns. Crypto hedge funds actively trade TRX and TRON DeFi positions. On-chain vault protocols allow retail users to access hedge-fund-like strategies.

Hedging

#
Taking an offsetting position to reduce risk in an existing position. A TRX holder might short TRX futures to hedge against price decline while continuing to earn staking rewards. Increases complexity but reduces directional price exposure.

HEX Address

#
TRON addresses in their raw hexadecimal form (e.g., 410000000000000000000000000000000000000000). TRON internally stores addresses as 21-byte hex values. The Base58Check format (T-prefix addresses) is the human-readable encoding of the same underlying hex address.

High Water Mark

#
In fund management, the highest NAV (net asset value) previously reached by a fund. Used in performance fee calculations — fees are only charged on new profits above the high water mark, preventing double-charging.

Historical Data

#
Past blockchain records including transaction history, price data, and protocol state. TRONSCAN's API provides historical TRON data; archive nodes store the complete historical state. Essential for analytics, auditing, and back-testing strategies.

HODL

#
A deliberate misspelling of "hold," used in crypto communities to mean holding an asset through price volatility rather than selling. Originated from a 2013 Bitcoin forum post.

Holder Distribution

#
The statistical breakdown of token ownership across addresses. Widely distributed holdings (many addresses, each holding a small percentage) indicate decentralization. Concentrated distribution (few addresses holding most of the supply) signals centralization risk.

Honeypot

#
A malicious smart contract designed to appear profitable but contain hidden code that prevents victims from withdrawing funds. A user may be able to deposit tokens but the withdrawal function always reverts. Common on DEXes where tokens have no liquidity audit.

Horizontal Scaling

#
Increasing system capacity by adding more parallel nodes or shards rather than upgrading individual hardware. TRON addresses scaling at the L1 level through efficient DPoS consensus rather than horizontal sharding.

Hot Path

#
The most frequently executed code path in a smart contract. Energy optimizing the hot path (e.g., ERC-20 transfer logic) has the greatest impact on user costs because it runs millions of times.

Hot Wallet

#
A wallet whose private key is stored on an internet-connected device (browser extension, mobile app). Hot wallets are convenient for frequent use but expose the key to malware and remote attacks. TronLink is a hot wallet.

HTLC (Hash Time-Locked Contract)

#
A smart contract that holds funds and releases them only when a cryptographic preimage is provided (hash lock) before a deadline (time lock). The primitive enabling atomic swaps — both parties can trustlessly exchange assets across chains without counterparty risk.

Hybrid DEX

#
An exchange combining an order book (for limit orders) with an AMM (for market orders and liquidity depth). Attempts to offer the price efficiency of an order book with the always-on liquidity of an AMM.

Hyper-Inflation

#
Extreme, rapid monetary inflation. In crypto, hyperinflation refers to poorly designed token emission schedules that flood supply faster than demand can absorb it, collapsing price. Governance-controlled emission (as on TRON) is designed to prevent hyperinflationary dynamics.

ICO (Initial Coin Offering)

#
A fundraising model where a project sells tokens to the public in exchange for Bitcoin, ETH, or other cryptocurrencies before the protocol is built. ICOs were prevalent in 2017–2018 and faced heavy regulatory scrutiny. TRON raised funds via an ICO before launching its mainnet.

Identity Verification

#
The process of confirming that a blockchain address belongs to a real-world entity. On-chain identity is pseudonymous by default; verification requires additional layers (KYC providers, soulbound tokens, zero-knowledge identity proofs).

IDO (Initial DEX Offering)

#
A token sale conducted through a decentralized exchange's liquidity pool mechanism rather than a centralized launchpad. Participants buy newly issued tokens directly from a DEX pool at launch.

Imbalanced Pool

#
An AMM liquidity pool where the ratio of tokens significantly deviates from the target ratio, typically due to large price movements. Liquidity providers in highly imbalanced pools have experienced significant impermanent loss.

Immutability

#
The property of blockchain data that, once recorded, cannot be altered without invalidating the chain. Smart contracts are immutable by default after deployment — their logic cannot be changed unless they implement an upgradable proxy pattern.

Immutable Reference

#
A contract address or parameter that cannot change after deployment. The USDT contract address on TRON is an immutable reference — all integrations hardcode it with confidence that it will never change.

Impermanent Loss

#
The opportunity cost experienced by a liquidity provider when the price ratio of their deposited tokens changes compared to simply holding the tokens. The "loss" is unrealized until withdrawal and can reverse if prices return to the original ratio. Greater divergence = greater impermanent loss.

Impersonation Attack

#
An attack where the attacker poses as a trusted entity (exchange, wallet team, SR team) to gain user trust and extract private keys, seed phrases, or signed approvals. The most common attack vector for TRON users, especially via Telegram and social media.

In-The-Money

#
A derivatives position that would produce a profit if exercised at the current price. A long TRX call option is in-the-money when TRX's market price exceeds the strike price. Relevant for SunX and options traders.

Incentive Alignment

#
The design of protocol reward structures so that participants acting in their own self-interest also benefit the protocol. DPoS voter rewards are meant to align TRX holders with good SR selection; liquidity mining aligns LPs with deep pool liquidity.

Incentivized Testnet

#
A testnet where participants earn real token rewards for testing and reporting bugs. Used to bootstrap network participation before mainnet launch. Some TRON ecosystem projects have run incentivized testnets to attract early validators and testers.

Index Fund

#
A passive investment vehicle tracking a basket of assets. Crypto index funds hold multiple tokens according to a weighting methodology. On-chain index protocols allow users to hold tokenized exposure to a basket of DeFi assets in a single token.

Indexed Event

#
A Solidity/TVM event parameter marked with indexed, making it queryable via filter parameters in log queries. TRC-20 Transfer events index from and to addresses, enabling efficient address-specific transaction history queries on TRONSCAN.

Infinite Approval

#
Granting a smart contract uint256 max allowance (2^256 - 1) to spend a token without limit. Convenient but dangerous — if the approved contract is later exploited, the attacker can drain the entire token balance. Best practice: approve only the exact amount needed.

Inflation

#
An increase in the total supply of a token over time, typically through block rewards or minting. TRX has ongoing inflation from block and vote rewards (~5 million TRX per day at current parameters). Net inflation decreases when burn exceeds issuance.

Inflation Rate

#
The annualized percentage increase in a token's circulating supply from new issuance. TRON's TRX inflation comes from block and vote rewards. Net inflation = gross issuance rate minus burn rate from fee payments.

Infrastructure

#
The foundational services required for a blockchain ecosystem to function: node networks (TronGrid), block explorers (TRONSCAN), oracle networks (WINkLink, Chainlink), bridges, and developer tooling (TronBox, tronweb). Infrastructure quality determines developer productivity.

Infrastructure as Code

#
Managing infrastructure (nodes, APIs, monitoring) through code rather than manual configuration. Relevant for teams running their own TRON nodes: automating node deployment with Terraform or Ansible ensures reproducible, auditable setups.

Institutional Custody

#
Professional-grade secure storage for cryptocurrency assets by regulated custodians (Coinbase Custody, BitGo, Anchorage). Relevant for large TRX/USDT holders: institutional custodians provide insurance, compliance reporting, and regulatory clarity unavailable in self-custody setups.

Institutional Grade

#
Products or infrastructure designed to meet the security, compliance, and operational standards required by banks and investment funds. TronGrid Pro, hardware wallet custody, and KYT-compliant exchange integration represent institutional-grade TRON infrastructure.

Insurance Fund

#
A reserve maintained by a DeFi protocol to cover losses from bad debt (under-collateralized positions after liquidation). JustLend maintains a safety reserve to protect depositors in extreme market conditions.

Insurance Protocol

#
A DeFi protocol offering coverage against smart contract exploits, stablecoin depegs, and other on-chain risks, in exchange for premium payments. Users purchase coverage; underwriters provide capital in exchange for yield. Emerging category on TRON.

Integer Overflow/Underflow

#
A smart contract vulnerability where arithmetic operations exceed the range of the integer type, wrapping around to an unexpected value. Example: subtracting 1 from a uint256 with value 0 produces the maximum uint256 value. Mitigated by using Solidity 0.8+ (which has built-in overflow checks) or SafeMath libraries.

Interchain Communication

#
The ability to send messages and transfer assets between different blockchain networks. Protocols like LayerZero and Axelar provide interchain communication infrastructure; TRON participates through bridge integrations rather than a native interchain standard.

Interest Accrual

#
The process of calculating and adding interest to a principal balance over time. In JustLend, interest accrues every block — making the APY continuously compound rather than settling daily or monthly as in traditional finance.

Interface

#
In Solidity, a contract declaration specifying function signatures without implementations. Used to call external contracts without importing their full source. Example: the ITRC20 interface defines the standard TRC-20 functions for interoperability.

Interoperability

#
The ability of different blockchain networks or protocols to exchange data and assets. TRON enables interoperability through cross-chain bridges and oracle networks like WINkLink and Chainlink.

Invariant Testing

#
A smart contract testing approach verifying that certain properties always hold (invariants) regardless of inputs or state. Example invariant: "the total supply of a TRC-20 token must always equal the sum of all holder balances."

IOU

#
"I Owe You" — an informal record of a debt. In DeFi, receipt tokens (like JustLend's jTokens) are essentially on-chain IOUs representing a claim on deposited assets plus accrued interest.

IPFS (InterPlanetary File System)

#
A distributed peer-to-peer file storage system. Commonly used to store NFT metadata and images in a decentralized way. NFT contracts on TRON often store a token's tokenURI as an IPFS hash, pointing to off-chain metadata JSON.

ISO 20022

#
An international standard for financial messaging. Relevant in the crypto context because TRON has marketed XRP-adjacent SWIFT/ISO-compatible payment scenarios. ISO 20022 compliance is increasingly required for crypto assets seeking institutional payment integration.

Isolated Margin

#
A margin mode where each position has its own separate margin allocation. If the position is liquidated, only the isolated margin is lost (not the entire account balance). Contrasts with cross-margin (where the full account balance backs all positions).

JFDI

#
Informal crypto community term ("Just F***ing Do It") encouraging action over analysis paralysis. Used in development communities to push toward shipping rather than endless planning. Not specific to TRON but common in the ecosystem's fast-paced community culture.

JIT (Just-In-Time Liquidity)

#
An advanced LP strategy in concentrated liquidity AMMs (SunSwap V3) where a liquidity provider adds a position into the active range immediately before a large trade and removes it immediately after, capturing fees from a single trade without long-term exposure to impermanent loss. Requires on-chain monitoring and fast execution.

JSON-RPC

#
A remote procedure call protocol encoded as JSON over HTTP or WebSocket. TRON nodes expose a JSON-RPC interface for interaction with tronweb and other libraries, in addition to the proprietary HTTP/REST API. The JSON-RPC interface is designed for EVM compatibility.

JST

#
The governance and incentive token of the JustLend protocol. Distributed as liquidity mining rewards to suppliers and borrowers. JST holders participate in JustLend governance votes on protocol parameters and fee structures.

Justin Sun

#
Founder of TRON, born 1990. Acquired BitTorrent in 2018 and integrated it into the TRON ecosystem. Known for high-profile marketing, and purchasing cultural assets (Beeple's "Everydays: The First 5000 Days" NFT, Nyan Cat NFT). The Sun unit (smallest TRX denomination) is named after him.

JustLend

#
The leading lending protocol on TRON, governed by JustLend DAO via the JST token. Users supply assets to earn variable interest and can borrow against collateral at algorithmic rates. Supports TRX, USDT, USDD, WBTC, and other TRC-20 assets. Official domain: justlend.org.

JustMoney

#
A TRON-native token swap and bridge protocol providing cross-chain swap functionality and on-chain analytics for the TRON ecosystem.

JustStable (USDJ)

#
A deprecated TRON-native over-collateralized stablecoin that was shut down in late 2025. During its operation, users locked TRC-20 collateral to mint USDJ at a collateralization ratio above 100%. Users were migrated to USDD and USDT.

KDF (Key Derivation Function)

#
A function that derives cryptographic keys from a source of entropy (e.g., a password or seed phrase). HD wallets use the BIP-39 KDF to produce seed bytes from mnemonic words, and BIP-44 to derive the private key hierarchy.

Keccak-256

#
The cryptographic hash function used in TRON (and Ethereum). A variant of SHA-3 (but not the NIST-standardized version). Used for: generating function selectors (first 4 bytes of hash of function signature), computing address derivation, and creating transaction IDs.

Key Pair

#
The combination of a private key and its corresponding public key. On TRON: the private key signs transactions, the public key verifies signatures, and the TRON address is derived from the public key.

Key Rotation

#
The practice of periodically replacing cryptographic keys. On TRON, key rotation is not directly supported for existing accounts (a new address requires new setup). Achieved functionally by migrating assets to a new address with a freshly generated key.

Key Splitting

#
Dividing a private key into multiple shares using secret sharing schemes (e.g., Shamir's Secret Sharing), where a minimum threshold of shares must be combined to reconstruct the key. Used in enterprise custody to prevent any single party from having full key access.

Key Store

#
An encrypted file containing a private key, protected by a password. The standard format is a JSON file (often called UTC keystore or Web3 Secret Storage). More secure than plaintext key storage, but only as secure as the password and the machine storing the file.

Keylogger

#
Malware that records keystrokes to capture passwords, seed phrases, and private keys as they are typed. A primary threat to hot wallet users. Hardware wallets mitigate this by keeping the private key inside the device, where it is never typed.

Kill Switch

#
An emergency function in a smart contract that halts all protocol operations. Only effective if the function is properly access-controlled. Used as a last resort during live exploits to prevent further drainage while a fix is developed.

Kinked Rate Model

#
An interest rate model with two distinct slopes separated by an "optimal utilization" kink point. Below the kink, rates rise slowly with utilization. Above the kink, rates rise steeply to aggressively incentivize liquidity provision. Used by JustLend.

Know Your Transaction (KYT)

#
The process of analyzing blockchain transactions for compliance purposes — identifying sources of funds, flagging transactions linked to sanctioned addresses, and reporting suspicious activity. TRONSCAN and compliance APIs provide on-chain analytics for KYT workflows.

KYC (Know Your Customer)

#
Regulatory identity verification requirements imposed on financial service providers. Centralized exchanges that support TRX withdrawals typically require KYC before allowing withdrawals. Decentralized protocols (JustLend, SunSwap) are permissionless and require no KYC.

Latency

#
The delay between submitting a transaction and having it confirmed on-chain. TRON's ~3 second block time provides low latency compared to Ethereum (~12 seconds) or Bitcoin (~10 minutes), making it suitable for user-facing applications requiring fast confirmation.

Latency Arbitrage

#
Exploiting the time lag between price updates in different venues. High-frequency traders capture tiny profits from momentary price discrepancies across pools. On TRON, the 3-second block time sets a floor on how quickly latency arbitrage can operate.

Launchpad

#
A platform for new token projects to conduct token sales and gain initial liquidity. TRON ecosystem launchpads provide services including token creation, IDO hosting, vesting management, and initial SunSwap pool seeding.

Layer 1 (L1)

#
The base blockchain protocol — the foundational network that validates and records all transactions. TRON is a Layer 1 blockchain. Layer 1 security and throughput are the root constraints for all applications built on top of it.

Layer 2 (L2)

#
A protocol built on top of a Layer 1 to improve throughput, reduce fees, or add functionality, while inheriting L1 security guarantees. TRON does not currently have a widely deployed L2 ecosystem; throughput is addressed at the L1 level via DPoS and fast block times.

Layer Zero

#
Informal term for the physical infrastructure layer underlying blockchain networks (internet, hardware, network topology). Not to be confused with LayerZero the cross-chain messaging protocol.

Lazy Minting

#
An NFT pattern where the token is not minted on-chain until someone buys it, deferring the minting cost to the buyer. Used to avoid upfront Energy costs for artists creating large collections. The creator signs a voucher; the smart contract mints on first purchase.

Ledger (Hardware Wallet)

#
A brand of hardware security module for cryptocurrency private key storage. The Ledger Nano S Plus and Nano X support TRON via the TRON Ledger Live app. Private keys are generated and stored on-device, never exposed to a connected computer.

Ledger Live

#
The desktop and mobile software application for Ledger hardware wallets. Users interact with TRON through Ledger Live's TRON app, which enables TRX management, TRC-20 token transfers, and staking while keeping private keys on-device.

Legacy Transaction

#
A transaction format from an older version of a protocol. On Ethereum, legacy transactions (pre-EIP-1559) used a gasPrice field; post-EIP-1559 transactions use maxFeePerGas. TRON's transaction format has evolved through protocol upgrades; older format transactions may not include Stake 2.0 fields.

Lending Market

#
A smart contract protocol allowing users to supply and borrow assets. JustLend is the leading lending market on TRON. Lending markets enable leverage, hedging, and passive yield — all without centralized intermediaries.

Leverage

#
Borrowing capital to amplify position size and potential returns (and losses). 2x leverage means controlling \$2,000 of assets with \$1,000 of owned capital. JustLend enables leveraged TRX positions by borrowing stablecoins against TRX collateral and re-deploying them.

Leverage Ratio

#
The multiplier of a position's notional exposure relative to margin. 5x leverage = 5:1 ratio. Higher leverage amplifies gains and losses equally and increases liquidation risk.

Light Client

#
A blockchain node that verifies transaction inclusion using Merkle proofs rather than storing the full chain state. Light clients trust full nodes for state data but verify inclusion proofs cryptographically. Allows mobile and browser clients to interact with TRON without full node resources.

Limit Order

#
An order to buy or sell an asset at a specific price or better, held until filled or cancelled. AMMs like SunSwap V2 do not natively support limit orders (they only execute market swaps). Limit order functionality on TRON DEXes is provided by separate order-book protocols or off-chain matching engines.

Linear Vesting

#
A vesting schedule where tokens unlock gradually at a constant rate over time (e.g., 1/36th of the total allocation per month over 3 years). Contrasts with cliff vesting. More predictable supply release but provides continuous selling pressure throughout the vesting period.

Liquidation

#
The forced closure of an undercollateralized lending position. When a borrower's health factor drops below 1.0 on JustLend, liquidators can repay part of the debt and seize the corresponding collateral plus a liquidation bonus.

Liquidation Bot

#
An automated program that monitors on-chain lending positions and submits liquidation transactions as soon as a borrower's health factor drops below 1.0. Liquidation bots compete to be first, as the first successful liquidation earns the liquidation bonus.

Liquidation Cascade

#
A chain reaction of liquidations triggered when falling collateral values force multiple positions to liquidate simultaneously, which further depresses prices and triggers more liquidations. Occurred notably during the May 2021 and June 2022 crypto crashes.

Liquidation Penalty

#
The bonus paid to liquidators for closing an undercollateralized position. Expressed as a percentage of the seized collateral value. Higher penalties incentivize faster liquidation but are more punishing to the borrower.

Liquidation Threshold

#
The collateral-to-debt ratio at which a position becomes eligible for liquidation. Set per asset based on its volatility and liquidity. A threshold of 80% means a position is liquidatable when the LTV reaches 80%.

Liquidity

#
The ease with which an asset can be bought or sold without significantly moving its price. High liquidity means large trades execute near the market price. Low liquidity causes high slippage. SunSwap pools' liquidity determines trade execution quality.

Liquidity Bootstrapping Pool (LBP)

#
A type of weighted AMM pool where the token weights shift over time, allowing a project to sell tokens at a fair, market-discovered price. The declining price mechanism discourages front-running and bot manipulation during token launches.

Liquidity Fragmentation

#
The dispersion of liquidity across multiple pools or DEXes, reducing depth in any single venue and increasing slippage for all traders. DEX aggregators address fragmentation by routing trades across all available liquidity.

Liquidity Mining

#
Distributing protocol governance tokens to liquidity providers as an additional incentive on top of trading fees. SunSwap rewards certain LP positions with SUN tokens; JustLend rewards suppliers and borrowers with JST tokens.

Liquidity Mining Reward

#
Tokens distributed to liquidity providers as an incentive beyond trading fees. SunSwap liquidity mining rewards providers with SUN tokens. High liquidity mining rewards attract capital but can create mercenary liquidity that departs when rewards end.

Liquidity Pool

#
A smart contract holding reserves of two or more tokens, enabling AMM trades. Any user can add liquidity to a pool and receive LP tokens. The pool's reserve ratio sets the current price according to the AMM formula.

Liquidity Provider (LP)

#
A participant who deposits tokens into an AMM pool in exchange for LP tokens and trading fee income. LPs earn fees proportional to their share of the pool but bear impermanent loss risk when asset prices diverge.

Liquidity Provision

#
The act of depositing token pairs into an AMM pool to earn trading fees. Liquidity providers accept impermanent loss risk in exchange for their share of fees. On SunSwap V3, LP positions are NFTs (each position has unique parameters).

Liquidity Ratio

#
The proportion of a token's total market cap that is available as liquidity in DEX pools. Low liquidity ratio means even moderate trades cause significant price impact. A useful metric for assessing whether a token's market cap accurately reflects tradeable value.

LiquidSwap

#
A decentralized liquidity protocol on the TRON ecosystem offering concentrated liquidity management and swap aggregation.

Listing Fee

#
A fee charged by some exchanges or token launchpads to list a new token. DEXes like SunSwap are permissionless — any token can be added by creating a pool without a listing fee. CEXes charge listing fees and conduct due diligence.

Loan-to-Value (LTV)

#
The ratio of debt to collateral value in a lending position. A position with \$500 borrowed against \$1,000 in collateral has an LTV of 50%. Higher LTV means higher utilization and higher liquidation risk.

Lock Period

#
A time duration during which staked or deposited assets cannot be withdrawn. On TRON Stake 2.0, frozen TRX has a 14-day lock period after initiating unstake. Delegated resources have a minimum 3-day lock per delegation.

Locked Liquidity

#
LP tokens or liquidity that has been sent to a burn address or a time-locked contract, preventing the liquidity provider from withdrawing their assets. Locked liquidity is a positive signal for token investors — it proves the team cannot rug the liquidity pool.

Locked Tokens

#
Tokens that cannot be transferred for a fixed period due to vesting schedules, staking lock periods, or smart contract restrictions. Locked tokens are not included in free float but do count toward total supply.

Long (Position)

#
Holding or buying an asset with the expectation that its price will increase. Staking TRX and holding is a long position. The opposite of short (selling or betting against price increases).

Loopring

#
An Ethereum Layer 2 ZK rollup exchange protocol. Referenced here as a comparison for TRON's on-chain DEX approach versus L2-based approaches — TRON achieves low fees at L1, while Loopring reduces Ethereum fees at L2.

Loss Socialization

#
In DeFi lending protocols, the practice of distributing bad debt losses proportionally across all lenders in a pool when liquidations cannot fully cover underwater positions. JustLend's insurance reserve attempts to prevent loss socialization.

Loss-Given-Default (LGD)

#
In lending risk analysis, the percentage of a defaulted loan that is not recovered. In DeFi, LGD is minimized by liquidation mechanisms and overcollateralization. Protocols that liquidate quickly tend to have low LGD even in volatile markets.

Low-Fee Chain

#
A blockchain where transaction fees are significantly lower than Ethereum mainnet. TRON is a low-fee chain — USDT transfers typically cost pennies rather dollars. Critical for payment use cases and high-frequency DeFi interactions.

LP Token (Liquidity Provider Token)

#
A token received when providing liquidity to an AMM pool, representing a proportional share of the pool's reserves. LP tokens can be redeemed at any time to withdraw the corresponding share of pool assets plus accumulated trading fees.

Mainnet

#
The production, live blockchain network where transactions have real economic value. Contrasts with testnets (Nile, Shasta) where tokens have no monetary value. TRON mainnet is accessible at api.trongrid.io.

Maintenance Period

#
A 6-second governance event occurring at the end of each Epoch (every 6 hours). During this brief window, the network pauses to recalculate the SR set based on current vote totals, apply approved governance parameter changes, and update reward accounting.

Maker (Order)

#
A participant who places a limit order that adds liquidity to an order book, waiting for another participant to fill it. Makers typically pay lower fees than takers (who fill existing orders) because they improve market depth.

Malicious Upgrade

#
A smart contract upgrade through a proxy pattern that replaces legitimate code with code designed to steal funds. Mitigated by timelock delays on upgrades (giving users time to withdraw) and multi-sig governance over the upgrade key.

Managed Key

#
A private key stored and managed by a third-party service on the user's behalf. Managed keys are convenient but require trusting the third party. Contrasts with self-custody where the user manages their own keys.

Mapping

#
A Solidity data type implementing a key-value store in contract storage. Written as mapping(keyType => valueType). Lookups are O(1) but iteration is not possible natively — iterating a mapping requires maintaining a separate index array. Used for token balances, allowances, and ownership records.

Margin Call

#
In traditional finance, a notification that a leveraged position's margin has fallen below the required minimum and must be topped up or closed. In DeFi, "margin calls" are automated — positions are liquidated immediately when health factors breach thresholds, with no advance warning.

Market Cap (Market Capitalization)

#
The total market value of all circulating tokens: current price × circulating supply. Used to compare the relative size of different blockchain networks and tokens. Does not include locked, unvested, or unminted tokens (see FDV).

Market Depth

#
A visualization of the cumulative buy and sell orders at various price levels around the current price. Greater market depth means larger trades execute with less price impact. On TRON AMMs, depth is represented by the size of pool reserves.

Market Manipulation

#
Illegal or unethical activities designed to artificially move an asset's price, including wash trading, pump-and-dump schemes, and coordinated social media campaigns. Easier to execute in low-liquidity crypto markets than in regulated traditional markets.

Market Microstructure

#
The study of how trades execute and prices form in markets. In DeFi, market microstructure governs how AMM formulas determine swap prices, how liquidations execute, and how MEV extraction occurs.

Market Order

#
An order to buy or sell immediately at the best available price, regardless of exact price. On AMMs like SunSwap, all swaps are effectively market orders — they execute at whatever price the pool's current reserves determine.

Max Drawdown

#
The maximum percentage decline from a portfolio's peak value to its lowest point before a new peak is reached. A risk metric for DeFi strategies — a strategy yielding 30% APY with 90% max drawdown is far riskier than one yielding 10% with 20% drawdown.

Max Slippage

#
The maximum percentage difference between expected and actual swap price that a user will tolerate before the transaction reverts. Setting max slippage too tight causes frequent failed transactions; too loose leaves the user exposed to front-running and poor execution.

Max Supply

#
The maximum number of tokens that can ever exist. Some tokens have no max supply (perpetual inflation). TRX has no hard-coded max supply — issuance is governed, creating de facto supply control but without a mathematically enforced cap.

Meme

#
A cultural idea, image, or catchphrase that spreads rapidly online. In the context of TRON and crypto, it forms the basis of memecoins—tokens driven by community sentiment and internet culture rather than underlying utility.

Memecoin

#
A cryptocurrency inspired by internet memes and jokes, characterized by highly volatile price action driven by community speculation rather than fundamental utility. TRON's memecoin ecosystem saw explosive growth with the launch of the SunPump token launchpad.

Memo Charge

#
A protocol fee (currently 1 TRX) charged when a non-smart-contract transaction includes a text string in the optional memo field. The memo field allows users to attach a short reference note to a TRX or TRC-10 transfer — commonly used by exchanges to identify deposits. The 1 TRX fee is burned and is separate from the Bandwidth cost of the extra transaction bytes. Smart contract interactions do not use the memo field.

Mempool (Memory Pool)

#
The set of pending transactions broadcast to the network but not yet included in a block. On TRON, the mempool exists but transactions clear quickly due to the 3-second block time. Address poisoning attacks monitor the mempool in real time.

Merkle Airdrop

#
A gas-efficient airdrop mechanism using a Merkle tree to store eligible recipients off-chain. Users submit a Merkle proof on-chain to claim their tokens, rather than having all tokens pushed by the airdropper. Energy-efficient for large recipient lists.

Merkle Proof

#
A cryptographic proof that a specific transaction is included in a block, using a minimal subset of the block's Merkle tree. Enables light clients to verify transaction inclusion without downloading the full block.

Merkle Root

#
The top-level hash of a Merkle tree. Included in each block header. Allows any transaction in a block to be verified by providing a Merkle proof (a set of sibling hashes) without downloading the full block.

Merkle Tree

#
A binary tree where each leaf node contains a transaction hash, and each parent node contains the hash of its two child nodes. The root of the tree (Merkle root) is included in the block header, enabling efficient and tamper-evident transaction verification.

Message Signing

#
Signing a text message with a private key to prove wallet ownership without submitting an on-chain transaction. Used for: login authentication to DApps, off-chain voting, and ownership verification. TronLink supports message signing via tronWeb.trx.sign().

Meta-Transaction

#
A transaction where the user signs a message but a relayer submits the actual on-chain transaction and pays the fees. Enables gasless UX for users who don't hold TRX. The relayer is typically reimbursed by the protocol or through fees collected from users in another token.

Metadata

#
Descriptive data associated with an NFT or token, typically stored off-chain (IPFS, Arweave, centralized server) and referenced by a URI. NFT metadata includes the token's name, description, image URL, and attributes. On-chain metadata is rare due to storage costs.

MEV (Maximal Extractable Value)

#
The additional value extractable by a block producer by selectively ordering, including, or excluding transactions in a block. On TRON, MEV is limited compared to Ethereum due to the absence of a mempool fee auction, but SRs can still order transactions to their advantage.

Micro-Transaction

#
A very small payment, typically impractical with traditional payment rails due to fees. TRON's sub-cent transaction fees make micro-transactions economically viable — enabling tipping, pay-per-use models, and streaming payments.

Middle-Man Attack

#
See Man-in-the-Middle Attack. An attack intercepting communications between two parties to eavesdrop or alter the data. In crypto: fake browser extensions that intercept wallet signatures are a form of man-in-the-middle attack.

Migration

#
Moving a protocol, token, or user position from one contract or blockchain version to another. Token migrations are common after security patches or standard upgrades. Users must follow official migration guides exactly — scammers often set up fake migration portals.

Miner Extractable Value

#
The original term for MEV (now Maximal Extractable Value after the Ethereum transition to PoS). Describes value extracted by block producers through transaction ordering. See MEV.

Minimum Liquidity

#
A small amount of LP tokens permanently locked in a pool at creation (sent to the zero address) to prevent manipulation of the pool's initial price and to ensure it can never be fully drained. SunSwap V2 locks 1000 LP tokens permanently per new pool.

Minimum Output

#
The minimum amount of the output token a user is willing to accept in a DEX swap, calculated from the expected output minus the slippage tolerance. If actual output is less than minimum output, the transaction reverts. Critical for protecting users from front-running.

Mint

#
The creation of new tokens. For TRX, new tokens are minted as block and vote rewards. For TRC-20 tokens, minting is a function defined by the contract owner. For USDT, minting is controlled exclusively by Tether Operations Limited.

Mnemonic (Seed Phrase)

#
A human-readable sequence of 12 or 24 words (selected from the BIP-39 wordlist) that encodes the root seed of an HD wallet. The mnemonic is the master backup for all addresses in the wallet — losing it means losing access.

Moat

#
A sustainable competitive advantage that protects a protocol from competition. In DeFi, moats include: deep liquidity (SunSwap's accumulated TVL), network effects (USDT volume on TRON), and switching costs (user positions locked in JustLend).

Modifier

#
In Solidity, a reusable code block applied to function definitions to add preconditions. onlyOwner is the most common modifier, checking that msg.sender == owner before proceeding. Modifiers improve code reuse and readability.

Modum

#
Any hardware or software that translates between two different communication standards. In TRON developer context, similar to adapters that bridge between tronweb and EVM-compatible tooling.

Money Market

#
A DeFi protocol providing short-term lending and borrowing of liquid assets at variable rates. JustLend is TRON's money market protocol. Traditional money markets operate similarly but with regulated intermediaries and much lower yields.

Moon

#
Crypto slang for a dramatic price increase ("when moon?" = when will the price rise sharply?). Used both as a verb ("this is going to moon") and a noun. Not investment advice.

Multi-Call

#
A smart contract pattern (or dedicated contract) that batches multiple calls into a single transaction, reducing per-call overhead and providing atomic execution. Saves Energy and Bandwidth compared to sending individual transactions.

Multi-Chain

#
Describing a protocol, application, or strategy that operates across multiple blockchain networks simultaneously. Multi-chain strategies must manage bridging risk, liquidity fragmentation, and cross-chain governance complexity.

Multi-Hop Route

#
A DEX swap path through more than one pool, used when no direct pool exists for the desired token pair (e.g., Token A → TRX → USDT → Token B). DEX aggregators automatically find optimal multi-hop routes to minimize slippage and maximize output.

Multi-Sig (Multi-Signature)

#
A security model requiring multiple private key signatures to authorize a transaction. On TRON, multi-sig accounts support up to 5 co-signers with configurable thresholds (e.g., 2-of-3). Used by teams and high-security custody setups.

Multisig Wallet

#
A wallet requiring M-of-N signatures to authorize transactions. Example: a 3-of-5 multisig requires 3 of 5 key holders to sign. Used by protocols to secure treasury funds and admin keys. TRON's native multi-sig supports up to 5 co-signers with a configurable threshold.

Mutable State

#
Contract storage that can be changed after deployment. Mutable state is essential for DeFi (tracking balances, positions, rates) but is also the primary security concern — unexpected state mutations are the root cause of most DeFi exploits.

Nakamoto Coefficient

#
The minimum number of independent entities that must collude to compromise a blockchain network — halt it, reverse transactions, or force through a malicious governance change. A higher number means the network is harder to capture. TRON's Nakamoto Coefficient is 14: controlling 14 of 27 active SRs gives a coalition a simple majority of block production slots, equivalent to a 51% attack in DPoS. 14 colluding SRs cannot unilaterally pass governance proposals (requires 19/27), but they control block inclusion and ordering.

Naked Short

#
Selling an asset short without first borrowing it. In traditional finance: generally illegal. In DeFi, perpetual futures create equivalent economic exposure without requiring borrowing first, making naked-short-equivalent strategies accessible.

Native Bridge

#
A cross-chain bridge developed or officially supported by a blockchain's core team or DAO. TRON's cross-chain transfers primarily use third-party bridges; there is no single "official" TRON native bridge for all assets.

Native Token

#
The base currency of a blockchain, used to pay transaction fees and participate in consensus. TRX is TRON's native token. Unlike TRC-20 tokens (which are smart contracts), TRX is handled at the protocol level.

Net APY

#
The effective yield after accounting for borrowing costs subtracted from supply yield, for users who both supply and borrow in a lending protocol. Net APY = supply APY − (borrow rate × borrowed amount / supplied amount).

Network Congestion

#
A state where pending transactions exceed available block space or Energy, causing delays or increased costs. On TRON, congestion primarily manifests as reduced Energy-per-TRX staking ratios rather than gas price spikes.

Network Effect

#
The phenomenon where a network becomes more valuable as more people use it. TRON's USDT volume creates a powerful network effect — high liquidity attracts more traders, which attracts more protocols, which attracts more users.

Network Effects

#
See Network Effect. The compounding value as more participants join.

Network Fee

#
See Transaction Fee. Used interchangeably. The cost paid to the network for processing a transaction.

Network Health

#
A composite measure of a blockchain's operational status including: block time consistency, SR uptime, TPS, mempool clearance rate, and API availability. TRON's 27-SR validator set typically maintains high network health with minimal downtime.

Network Partition

#
A scenario where a portion of the network is temporarily isolated from the rest, causing nodes to disagree on the current chain state. TRON's DPoS consensus can stall if SRs cannot communicate during severe network partitions.

Network Upgrade

#
A planned protocol change deployed at a specific block height. All nodes must upgrade before the target block or they will be on a different chain. TRON network upgrades are coordinated through the TIP process and SR governance.

New Paradigm

#
A transformative shift in how a market or technology works. Blockchain and DeFi are argued to represent a new paradigm in finance — from permissioned, intermediated systems to permissionless, algorithmic systems.

NFA (Not Financial Advice)

#
A disclaimer used in crypto communities when discussing investment topics, signaling the speaker is sharing opinions, not regulated financial guidance. DYOR always.

NFT (Non-Fungible Token)

#
A token where each unit is unique and not interchangeable with other tokens of the same contract. Each NFT has a distinct token ID and a single owner. TRON supports NFTs through the TRC-721 and TRC-1155 standards.

NFT Marketplace

#
A platform for listing, buying, and selling non-fungible tokens. TRON has native NFT marketplaces; major cross-chain platforms are beginning to support TRC-721 assets. Key features to evaluate: royalty enforcement, contract verification, and escrow mechanism.

NGMI (Not Gonna Make It)

#
Crypto slang used to predict that a person or project will fail, typically applied to those making poor investment decisions or dismissing crypto broadly. The self-referential inverse of WAGMI (We're All Gonna Make It).

Nile Testnet

#
A public test network for TRON, running a node version ahead of mainnet to enable testing of upcoming protocol changes. Uses valueless test TRX. Block explorer at nile.tronscan.org. Both Nile and Shasta are actively maintained by the TRON DAO.

Node

#
A computer that participates in the TRON network by storing blockchain data and/or validating transactions. Full nodes store the complete chain history. Super Representative nodes produce blocks. TronGrid provides access to managed nodes via API.

Node Operator

#
An individual or organization that runs and maintains a blockchain node. Super Representatives on TRON are node operators who run block-producing nodes. TronGrid is an API service abstracting node operation for developers who don't want to run their own.

Node Sync

#
The process of a new or restarting node downloading and verifying all historical blockchain data to reach the current chain tip. TRON full nodes require significant storage and time to sync from genesis.

Non-Custodial

#
A wallet or service where the user retains full control of their private keys. TronLink is non-custodial. DEXes like SunSwap are non-custodial. Contrasts with CEXes and custodial wallets where a third party holds the keys.

Non-Custodial Staking

#
Staking where the user retains control of their keys and the staked assets remain in their own wallet. TRON's native staking (freezing TRX) is non-custodial — the TRX stays in the user's account, governed by protocol rules, not held by a third party.

Non-Dilutive Financing

#
Funding a project without issuing new tokens or equity, preserving existing holders' percentage ownership. Protocol treasury grants and revenue sharing are non-dilutive; token sales and team minting are dilutive.

Non-Dilutive Grant

#
Funding provided to a project without requiring any token or equity in return. TRON DAO ecosystem grants are non-dilutive, helping developers build on TRON without giving up ownership of their projects.

Non-Interactive Proof

#
A cryptographic proof that does not require back-and-forth communication between prover and verifier. ZK-SNARKs are non-interactive — the prover generates a single proof that anyone can verify. Used in scaling solutions and privacy protocols.

Nonce

#
A per-account counter used on Ethereum to prevent replay attacks and order transactions. TRON does not use a nonce; instead it uses TAPOS (reference block hash) to prevent replay and does not require sequential transaction ordering.

Noncustodial

#
See Non-Custodial.

Notional Value

#
The face value of a derivatives position, used to measure exposure. A 10x leveraged TRX perp position with \$100 margin has \$1,000 notional value. Notional Value determines profit/loss magnitude and liquidation risk.

Null Address

#
The address T9yD14Nj9j7xAB4dbGeiX9h8unkKHxuWwb (TRON's zero address equivalent). Tokens sent here are permanently inaccessible. Used for token burns, contract ownership renouncement, and as a burn destination.

Number of Confirmations

#
How many blocks have been built on top of a transaction's block. More confirmations = lower probability of reversal. CEXes typically require 20–50 confirmations for TRX deposits before crediting accounts.

Off-Chain

#
Data or computation that occurs outside the blockchain. Off-chain activities are not inherently trustless — they rely on the integrity of the off-chain system. Oracle networks like WINkLink and Chainlink bridge off-chain data to on-chain smart contracts.

Off-Chain Data

#
Data not stored on the blockchain. NFT metadata, oracle price sources, and user identity information are typically off-chain. DApps rely on off-chain data for rich features, but off-chain data introduces trust and availability risks.

Off-Ramp

#
A service enabling conversion from cryptocurrency to fiat currency. CEXes are the primary off-ramp for TRX and USDT. P2P platforms and OTC desks offer off-ramp services without requiring KYC in some jurisdictions.

On-Chain

#
Data or computation permanently recorded on the blockchain and subject to the network's consensus rules. On-chain transactions are transparent, immutable, and trustless.

On-Chain Analytics

#
The practice of analyzing blockchain transaction data to derive insights about user behavior, protocol performance, and market dynamics. TRONSCAN's analytics dashboard provides on-chain data; third-party tools like DappRadar, Dune, and Nansen extend these analytics.

On-Chain Governance

#
A governance system where votes are cast and executed directly through smart contracts, with outcomes automatically implemented. TRON's SR governance is on-chain — approved proposals automatically update protocol parameters at the next maintenance period.

On-Ramp

#
A service enabling conversion from fiat currency to cryptocurrency. CEXes, peer-to-peer platforms, and payment processors (MoonPay, Transak, Mercuryo) are TRON on-ramps. On-ramp providers set their own KYC and fee requirements.

Onboarding

#
The process of bringing a new user into a blockchain ecosystem — from purchasing TRX, setting up a wallet, learning key management, to executing first transactions. Reducing onboarding friction is critical for mass adoption. TRON's low fees reduce one major onboarding barrier.

Opcode

#
A single-byte instruction in the TVM/EVM bytecode instruction set. Solidity source code compiles to a sequence of opcodes. Each opcode has an associated Energy cost. Energy optimization involves reducing the number or type of expensive opcodes executed.

Open Finance

#
A philosophy advocating for financial systems accessible to anyone globally without discrimination, gatekeeping, or minimum requirements. TRON's permissionless architecture and low fees make it a platform for open finance — anyone with an internet connection can participate.

Open Interest

#
In derivatives markets, the total number of outstanding contracts that have not been settled. High open interest indicates active speculative positioning. Relevant for SunX traders.

Open Source

#
Software whose source code is publicly available for inspection, modification, and distribution. Most core TRON protocol code and major DApps publish their source code. Verified contracts on TRONSCAN make the source code accessible directly from the explorer.

Open Source Code

#
See Open Source.

Operator

#
An address authorized to act on behalf of a token holder in certain TRC standards. In TRC-1155, setApprovalForAll(operator, true) grants an operator permission to transfer any token the holder owns. Operators must be trusted carefully — unlimited approvals are risky.

Optimistic Rollup

#
A Layer 2 scaling solution that processes transactions off-chain and posts transaction data to L1, assuming transactions are valid (optimistic) unless challenged within a fraud window. Ethereum's primary scaling approach; not currently implemented on TRON.

Option

#
A derivative contract giving the buyer the right, but not the obligation, to buy or sell an asset at a specified price before a specified date. On-chain options protocols exist on Ethereum; TRON-native options remain limited but the demand follows the broader DeFi options market.

Oracle

#
A service that provides off-chain data (prices, events, random numbers) to smart contracts. WINkLink is the native decentralized oracle network for TRON, while Chainlink is also fully integrated. Oracles are a critical dependency of lending protocols (for collateral price feeds) and derivatives.

Oracle Freshness

#
How recently an oracle's price data was updated. Stale oracle data (not updated for several blocks or hours) can be exploited by attackers who know the real price has moved significantly. Protocols check oracle heartbeat intervals to detect freshness failures.

Oracle Manipulation

#
An attack targeting DeFi protocols by artificially manipulating the price data supplied by an oracle. Flash loan attacks are often combined with oracle manipulation to skew prices and drain lending protocols.

Oracle Network

#
A decentralized system of nodes that collectively provide off-chain data to smart contracts. WINkLink operates as the first native oracle network on TRON, using multiple independent node operators to minimize single-point-of-failure and manipulation risk.

Order Book

#
A list of pending buy and sell orders at various prices, used by centralized exchanges and some on-chain DEXes to match trades. SunSwap V2/V3 do not use an order book — they use an AMM liquidity pool instead.

Order Routing

#
The process of directing a swap order through the optimal sequence of liquidity pools to achieve the best price. DEX aggregators implement sophisticated order routing algorithms considering pool fees, liquidity depth, and gas costs simultaneously.

Orphan Block

#
A block that is validly produced but not included in the canonical chain because another block at the same height was adopted by the network first. Orphan blocks earn no rewards. On TRON, the 3-second block time and DPoS scheduling minimizes orphan rates.

Output Amount

#
In a DEX swap, the amount of the output token received after fees and price impact are applied. DApps should always display both the expected output and the minimum output (with slippage tolerance applied) before trade confirmation.

Over-the-Counter (OTC)

#
Trading directly between two parties, without using a public exchange. OTC desks handle large trades to minimize market impact. Relevant for institutional TRX and USDT transactions where exchange order books would cause excessive slippage.

Over-the-Counter (OTC) Desk

#
A brokerage offering direct trading of large cryptocurrency amounts between parties at negotiated prices, bypassing public exchanges. Used for institutional TRX and USDT transactions too large for DEX pools without causing excessive price impact.

Overcollateralization

#
Posting collateral worth more than the value being borrowed. Required by DeFi lending protocols (like JustLend) to ensure that even if collateral value drops moderately, the loan remains fully backed. A \$150 deposit borrowing \$100 is 150% collateralized.

Overcollateralization Ratio

#
The ratio of collateral value to borrowed value, always expressed as greater than 100% in healthy DeFi lending. A 200% overcollateralization ratio means \$200 of collateral backs every \$100 borrowed. Higher ratios provide more safety margin against liquidation.

Ownership Renouncement

#
Setting a contract's owner address to the zero address, permanently removing any administrative control. Renounced contracts cannot be upgraded, paused, or modified. Provides maximum immutability guarantees but also means bugs cannot be patched.

P2P (Peer-to-Peer)

#
A network architecture where participants communicate directly with each other without a central server. Blockchain networks are inherently P2P — nodes broadcast transactions and blocks directly to peers.

Paper Hands

#
Crypto slang for selling an asset quickly when the price drops, often out of fear. Contrasts with diamond hands. Paper hands behavior during market dips can result in selling at a loss before a recovery.

Parasocial Scam

#
A fraud built on manufactured familiarity — fake social media personas impersonating celebrities, influencers, or project leaders to solicit funds or seed phrases. Common TRON-related variants: impersonating Justin Sun on Twitter/Telegram, fake TronLink support accounts.

Participation Rate

#
The percentage of eligible governance participants who actively vote. Low participation rates in governance are a systemic risk — a small group can swing votes. TRON's SR system concentrates voting to 27 parties, ensuring predictable participation.

Passive Income

#
Earnings generated without active daily management. In crypto, passive income sources include staking rewards (TRX), liquidity provision fees (SunSwap), and lending interest (JustLend). All involve risk that must be assessed against the yield.

Passive LP

#
A liquidity provider who deposits into wide-range or full-range AMM positions without actively managing their price range. Passive LP strategies generate lower yields than active concentrated liquidity management but require minimal monitoring.

Pay-to-Earn

#
A model where users earn tokens by performing tasks within a protocol — writing reviews, providing liquidity, completing transactions. Distinct from play-to-earn (gaming); both models use token incentives to drive protocol engagement.

PBFT (Practical Byzantine Fault Tolerance)

#
A consensus algorithm that enables distributed systems to reach agreement even when up to one-third of participants are faulty or malicious. TRON augments its DPoS block production with PBFT-style attestations: a block becomes solidified (irreversible) once 19 of 27 SRs have broadcast signed acknowledgments. If 9 or more SRs withhold attestations, solidification stalls and blocks remain un-finalized — but DPoS continues producing blocks on schedule. The 9-SR disruption threshold follows from the PBFT formula: 2/3 × 27 = 18; solidification requires 19, so 9 non-participants reduce available signatures to exactly 18, one short of the threshold.

Peak to Trough

#
The price decline from a market cycle's high (peak) to its lowest point (trough). Measuring peak-to-trough for TRX across different bear markets helps assess historical downside risk for risk management purposes.

Peg Arbitrage

#
Trading that exploits a stablecoin's deviation from its peg. If USDT trades at \$0.999, arbitrageurs buy USDT on DEX and redeem at \$1.00 via Tether, pocketing the difference. Peg arbitrage is the primary mechanism keeping stablecoin prices close to their targets.

Peg Mechanism

#
The system maintaining a stablecoin's price at its target value. USDT uses fiat reserves (custodial peg). USDD uses overcollateralization (crypto-backed peg). Algorithmic stablecoins use supply adjustments (algorithmic peg). Peg mechanisms differ drastically in stability risk.

Permissioned Blockchain

#
A blockchain where participants must be approved before joining or transacting. Enterprise blockchains (Hyperledger, R3 Corda) are permissioned. TRON is permissionless — anyone can deploy contracts, send transactions, and become an SR candidate.

Permissionless

#
A system anyone can access without needing approval from a gatekeeper. TRON is permissionless — any address can send transactions, deploy contracts, or interact with DeFi protocols without approval. Contrasts with permissioned blockchains (enterprise chains with KYC requirements).

Permit (EIP-2612)

#
A TRC-20 extension allowing approvals via off-chain signatures rather than on-chain transactions. Reduces the two-step (approve then transfer) flow to a single transaction. Increasingly adopted in TRON DeFi protocols for better UX.

Perpetual Contract (Perp)

#
A derivative contract with no expiration date, tracking an asset's spot price via a funding rate mechanism. Perps allow leveraged long/short exposure without managing contract rollovers. SunX (sunx.io) is TRON's dedicated perpetual futures exchange, offering TRX and other perps.

Perpetual Protocol

#
A DeFi protocol specialized in perpetual futures trading. SunX (sunx.io) is a perpetual futures protocol on TRON, part of the Sun ecosystem. Perpetual protocols require robust oracle integrations and funding rate mechanisms to maintain price accuracy.

Phishing

#
A social engineering attack that tricks users into revealing private keys, seed phrases, or signing malicious transactions by posing as a legitimate entity. TRON phishing commonly involves fake TronLink sites, fake staking portals, and fake support agents.

Ping (Network)

#
The round-trip time for a network message. Low ping to blockchain nodes reduces latency for time-sensitive operations like liquidation bots and MEV capture. TronGrid provides globally distributed API nodes to minimize latency for developers.

Platform Risk

#
The risk of loss from a failure at the infrastructure layer, not the asset layer. Examples: exchange hack (platform risk for custodial users), smart contract exploit (platform risk for DeFi users), bridge hack (platform risk for cross-chain assets).

Platform Token

#
A token that provides utility or governance rights within a specific platform. JST (JustLend platform) and SUN (SunSwap platform) are platform tokens — they confer voting rights and may entitle holders to protocol revenue sharing.

Play-to-Earn (P2E)

#
A gaming model where players earn tokens or NFTs with real monetary value through gameplay. TRON's NFT infrastructure and low transaction fees make it a viable platform for P2E games. Emerged as a major use case in 2021–2022.

Pool Reserve

#
The actual token balances held by an AMM pool contract. The reserve ratio between two tokens determines the current exchange rate. Monitoring reserves helps assess pool health and predict price impact for large trades.

Pool Weight

#
In liquidity mining programs, the proportion of total reward emissions allocated to a specific pool. Higher-weight pools attract more LP capital but also distribute rewards more competitively.

Portfolio Tracker

#
A tool that aggregates all token holdings, DeFi positions, and transaction history across an address into a single dashboard. TRONSCAN provides basic portfolio tracking; third-party tools offer cross-chain aggregation including TRON positions.

Position

#
A user's current exposure in a DeFi protocol: a borrow position in JustLend, an LP position in SunSwap, or a staking position in TRON's system contract. Position management (monitoring, adjusting, closing) is a core DeFi skill.

Price Discovery

#
The market process of determining the fair value of an asset through buyer/seller interactions. DEX AMMs enable continuous price discovery through automated trading. New tokens launched on SunSwap have their initial price set by the liquidity provider.

Price Feed

#
A continuously updated stream of asset price data from an oracle, consumed by smart contracts. WINkLink and Chainlink Price Feeds deliver TRX/USD, BTC/USD, and other pair prices to TRON lending and derivatives protocols for collateral valuation.

Price Impact

#
The change in token price caused by executing a trade against an AMM liquidity pool. Larger trades relative to pool reserves cause greater price impact. On SunSwap, the price impact percentage is shown before trade confirmation.

Price Manipulation

#
Any action artificially inflating or deflating an asset's market price. In DeFi, price manipulation enables oracle attacks (if the oracle uses manipulated prices), liquidation bots can be misled, and unsuspecting traders suffer losses.

Price Oracle

#
A smart contract that provides on-chain price feeds for assets, used by lending protocols to value collateral, calculate liquidation thresholds, and determine borrow limits. Oracle manipulation is a primary DeFi attack vector.

Principal

#
In lending, the original amount borrowed or deposited, before interest accrual. In JustLend, the principal is the base amount supplied or borrowed; the interest is added on top.

Private Key

#
A 256-bit random number that serves as the root credential for a TRON account. The private key signs transactions and is mathematically linked to the account's public key and address. It must never be shared, stored digitally in an unsecured location, or entered into any website.

Private Round

#
An investment round limited to accredited investors or venture capital firms, conducted before a public token sale. Private round investors typically receive tokens at a significant discount with vesting schedules. TRON and many TRON ecosystem DApps raised private rounds before their public launches.

Proof of Humanity

#
A decentralized identity registry ensuring each participant is a unique human, used to prevent Sybil attacks in airdrop distributions and governance. Not yet mainstream on TRON but relevant as anti-bot and fair distribution mechanisms mature.

Proof of Reserves

#
A publicly verifiable audit demonstrating that a custodian holds sufficient assets to cover all customer deposits. Exchanges increasingly publish Proof of Reserves after the FTX collapse (2022). Relevant for USDT — Tether publishes attestations, not full audits.

Proof of Stake (PoS)

#
A consensus mechanism where validators are selected to produce blocks proportionally to the amount of cryptocurrency they have staked as collateral. Ethereum uses PoS. TRON uses DPoS, a variant where stakeholders elect block producers rather than producing blocks directly.

Proof of Work (PoW)

#
A consensus mechanism where block producers (miners) compete to solve a computationally intensive puzzle. The winner adds the next block and earns the block reward. Bitcoin uses PoW. Energy-intensive and not used by TRON. Often compared with DPoS (TRON's mechanism): PoW requires significant electricity per block, while DPoS uses elected delegates who produce blocks with minimal computational overhead, enabling faster finality and lower transaction costs.

Protocol

#
The set of rules governing how a blockchain or DeFi system operates. "Protocol" refers both to the base blockchain layer (the TRON protocol) and to individual smart contract systems built on top of it (the JustLend protocol, the SunSwap protocol).

Protocol Fee

#
A fee charged by a DeFi protocol (separate from the network transaction fee) and typically sent to a treasury or distributed to governance token holders. SunSwap's 0.3% trading fee is split between liquidity providers and the protocol.

Protocol Layer

#
The base-level smart contracts that define a protocol's core logic. Distinct from the application layer (frontends, aggregators) built on top. Understanding which layer a security issue affects helps assess the scope of risk.

Protocol Upgrade

#
A change to a protocol's smart contract logic or parameters. Smart contracts are immutable — upgrades require deploying new contracts (with proxy patterns) or governance-approved parameter changes. TRON's Stake 2.0 was a protocol upgrade.

Protocol-Owned Liquidity (POL)

#
A model where a DeFi protocol owns its own liquidity (rather than renting it via mining incentives). POL is more capital-efficient and permanent than mercenary liquidity. Some TRON protocols bootstrap POL through token sales and bonding.

Proxy Contract

#
A smart contract pattern enabling upgradeable contracts. A proxy contract delegates all calls to an implementation contract. To upgrade, the implementation address is updated. The proxy address stays constant, preserving integrations.

Pseudonymous

#
Identifiable by a consistent pseudonym (address or username) but not linked to a real-world identity. TRON addresses are pseudonymous — publicly visible and traceable on-chain, but not inherently connected to a person without additional information.

Public Key

#
The cryptographic key derived from the private key. Used to verify digital signatures and to derive the TRON address. Safe to share publicly — it is not possible to reverse-engineer the private key from the public key.

Pull Payment Pattern

#
A smart contract design where recipients must call a function to withdraw their funds, rather than the contract pushing funds automatically. Safer than push payments because it avoids reentrancy risks and failed transfers blocking other operations.

Pump and Dump

#
A market manipulation scheme where the price of a low-liquidity asset is artificially inflated through coordinated buying and positive marketing (the "pump"), then the manipulators sell at the elevated price (the "dump"), leaving other buyers with losses.

Quadratic Voting

#
A voting system where the cost of additional votes grows quadratically (1 vote costs 1 token, 2 votes cost 4, 3 votes cost 9). Reduces the dominance of large token holders in governance. Not currently used on TRON but an active area of governance research.

Quality of Service (QoS)

#
The measurable level of service performance. For blockchain API services like TronGrid, QoS metrics include uptime, latency, and response accuracy. Degraded QoS can disrupt DApp operation and user transactions.

Quantitative Easing (QE)

#
In traditional finance, a central bank policy of purchasing assets to inject money supply into the economy. Referenced in crypto as an analogy: liquidity mining programs are sometimes compared to QE — protocol-issued token rewards artificially stimulate liquidity in the short term.

Query

#
A read-only request to a blockchain node that retrieves data without creating a transaction. Queries to view functions on a TRON smart contract do not consume Energy or Bandwidth.

Queue (Transaction)

#
In contexts where transactions must be processed in order (e.g., time-locked governance operations), a queue holds transactions waiting to execute until their time lock expires. Not a TRON protocol primitive, but a pattern used in governance contracts.

Quick Swap

#
Informal term for a simple, single-hop token exchange on a DEX (e.g., swapping TRX directly for USDT in one pool). Contrasts with multi-hop routes where the aggregator chains multiple pools together to find a better price.

Quorum

#
The minimum number of participants required to make a decision binding. In TRON governance, a quorum of 19 out of 27 active SRs must approve a proposal for it to pass.

Quorum Attack

#
An attack where an adversary accumulates enough governance tokens or SR votes to exceed the quorum threshold and pass malicious proposals. In TRON, a quorum attack would require compromising 19 of 27 active SRs.

Race Condition

#
A vulnerability where the outcome of a smart contract operation depends on the order of transactions — and an attacker can manipulate that order to their advantage. Front-running is a form of race condition exploitation. Time-lock and commit-reveal patterns mitigate race conditions.

Rate Arbitrage

#
Exploiting interest rate differences between lending protocols. If JustLend USDT borrow rate is 5% and another protocol's USDT supply rate is 8%, a rate arbitrageur borrows from JustLend and supplies to the other protocol, pocketing the 3% spread.

Rate Model

#
The mathematical formula a lending protocol uses to determine interest rates based on pool utilization. JustLend uses a kinked rate model: rates increase slowly until a target utilization, then spike sharply above it to discourage over-borrowing.

Re-entrancy Guard

#
A smart contract pattern preventing reentrancy attacks by setting a "locked" flag before any external call and unsetting it afterward. Any reentrant call finds the lock set and reverts. OpenZeppelin's ReentrancyGuard provides a standard implementation.

Read Function

#
A smart contract function marked view or pure in Solidity, which reads state without modifying it. Read functions execute locally on a node without broadcasting a transaction and consume no Energy or Bandwidth.

Read-Only Reentrancy

#
A sophisticated reentrancy variant where a malicious contract calls back into a victim contract's view function (which reads state) during a state-changing operation. The view function returns stale or manipulated values, which the malicious contract exploits.

Real-World Asset (RWA)

#
A traditional asset (real estate, bonds, treasuries, invoices) represented as a blockchain token. stUSdt bridges RWA yield (US Treasuries) to TRON users. RWA tokenization is an emerging category connecting traditional finance with DeFi.

Rebase Token

#
A token that automatically adjusts every holder's balance proportionally at regular intervals to maintain a target price or supply. Rebase mechanics are complex and interact unexpectedly with DeFi protocols (LP pools, lending collateral). Examples: AMPL, OHM-style tokens.

Recovery Phrase

#
See Mnemonic (Seed Phrase). The two terms are used interchangeably. Wallet UIs often use "recovery phrase" for user-friendliness while technical documentation uses "mnemonic" or "seed phrase."

Recursive Call

#
A function that calls itself directly or indirectly. In smart contracts, recursive calls are the mechanism behind reentrancy attacks. Proper use of reentrancy guards (e.g., OpenZeppelin's ReentrancyGuard) prevents malicious recursive calls from draining funds.

Redemption

#
The process of exchanging a tokenized claim for its underlying asset. Examples: redeeming USDT for USD via Tether, redeeming LP tokens for the underlying pool assets, or redeeming stUSdt for the underlying USDT principal and yield.

Redemption Rate

#
The amount of underlying assets a receipt or derivative token can be redeemed for. In JustLend, jToken redemption rate increases over time as interest accrues. In stUSdt, the redemption rate reflects accumulated RWA yield.

Redenomination

#
The process of replacing a currency or token at a fixed exchange ratio, typically to increase divisibility or reset the unit price to a more manageable range. TRON's ecosystem underwent a notable redenomination in 2021 when BTT was reissued at 1:1,000 — each original BTT token was replaced by 1,000 new BTT tokens. Total holder value was unchanged, but the per-unit price dropped proportionally. Redenominations do not alter market capitalisation or individual ownership proportions.

Reentrancy

#
A smart contract vulnerability where an external call made during execution allows the callee to call back into the calling contract before the first execution completes. The classic DeFi exploit vector (e.g., the Ethereum DAO hack). Prevented by the checks-effects-interactions pattern and reentrancy guards.

Reentrancy Lock

#
See Re-entrancy Guard.

Reference Block

#
In TRON's TAPOS mechanism, the recent block whose hash and height a transaction references to prove it was created after that block. Transactions referencing blocks older than 65,536 blocks are rejected. See TAPOS.

Regulatory Risk

#
The risk that government actions (bans, KYC requirements, sanctions enforcement) will negatively affect a user's ability to access or transact with a blockchain asset. USDT's TRC-20 blacklist is a direct manifestation of regulatory risk on-chain.

Regulatory Sandbox

#
A formal program allowing fintech and blockchain companies to test innovative products under relaxed regulatory oversight. TRON operates in jurisdictions with varying regulatory environments; users and companies should assess local regulatory requirements independently.

Rehypothecation

#
The practice of using pledged collateral as collateral for another loan. In traditional finance: common and largely unregulated. In DeFi: some protocols allow or restrict rehypothecation of deposited assets. Adds capital efficiency but increases systemic risk.

REKT

#
Crypto slang for suffering large financial losses in a trade or investment ("wrecked"). Used informally to describe anyone who bought at a peak and sold at a bottom, or who lost funds to a scam or exploit.

Relayer

#
A third party that submits transactions on behalf of users, allowing gasless transactions where the user signs a message but the relayer pays the network fee (on TRON: Energy and Bandwidth). Enables UX improvements by removing the need for users to hold TRX for fees.

Remittance

#
The transfer of money from someone working abroad back to their home country. TRON's USDT infrastructure is widely used for international remittances — providing fast, low-cost dollar-denominated transfers without traditional banking infrastructure.

Reorg (Chain Reorganization)

#
When the canonical chain switches from one branch to another (shorter) fork, causing previously confirmed transactions to become unconfirmed. TRON's DPoS consensus and 19-block finality makes reorgs beyond 1–2 blocks practically impossible under normal conditions.

Replay Attack

#
An attack where a valid transaction from one context is maliciously broadcast in a different context (different time or different chain). TRON prevents replay attacks using TAPOS — each transaction must reference a recent block hash.

Reserve Currency

#
A currency widely held by institutions for international transactions and as a store of value (e.g., the USD). TRON's USDT volume positions it as a reserve-currency-adjacent transfer rail for USD-pegged value in crypto markets.

Reserve Ratio

#
The ratio of a lending pool's available liquidity to its total supplied amount. A high reserve ratio indicates low borrowing; low reserve ratio (high utilization) indicates most supply is lent out, triggering high borrow rates.

Resistance Level

#
In technical analysis, a price level where selling pressure historically prevents further price increases. TRX may repeatedly fail to break through a resistance level before eventually doing so (a "breakout").

Resource

#
The collective term for TRON's two fee mechanisms: Energy (for smart contract execution) and Bandwidth (for simple transfers). Resources are obtained by staking TRX or burned from the TRX balance as a fallback.

Resource Delegation

#
See Delegation.

Restaking

#
The practice of staking an already-staked asset (or a receipt token thereof) in another protocol to earn additional yield. Popularized by EigenLayer on Ethereum. On TRON, re-deploying staking rewards into additional yield strategies achieves a similar compounding effect.

Retroactive Airdrop

#
A token distribution rewarding past protocol users for earlier activity, announced and executed after the fact. Encourages genuine usage before airdrop criteria are known. Example: Uniswap's UNI airdrop to historical users in 2020.

Return on Investment (ROI)

#
The percentage gain or loss on an investment relative to its cost. In crypto DeFi: (current value − cost) / cost × 100%. Accounts for both yield earned and price appreciation/depreciation.

Revenue Model

#
How a DeFi protocol generates income. TRON ecosystem protocols use: swap fees (SunSwap), interest rate spreads (JustLend), liquidation bonuses, and protocol fees. Understanding a protocol's revenue model helps assess long-term sustainability.

Revenue Sharing

#
A model where protocol fees are distributed to token holders, stakers, or governance participants. Some TRON DApps distribute a portion of trading fees or interest income to JST or SUN stakers, creating a direct link between protocol revenue and token value.

Revoke Approval

#
The process of removing a token allowance granted to a smart contract by calling approve(contractAddress, 0). TRONSCAN's Token Approval Checker provides a UI for reviewing and revoking all active approvals on an address.

Reward Ratio

#
The percentage of a Super Representative's earned rewards (block rewards + vote rewards) that is passed back to the voters who supported that SR. Ranges from 0% to 100%. Higher ratios attract more votes but reduce the SR's own earnings.

Risk Premium

#
The additional return expected from a riskier investment compared to a risk-free alternative. In DeFi, the spread between lending protocol yields and risk-free equivalents represents compensation for smart contract and protocol risk.

Risk-Adjusted Return

#
A measure of investment performance that accounts for the level of risk taken. In DeFi, comparing yield rates without considering smart contract risk, impermanent loss, and liquidity risk produces misleading comparisons.

Rollover

#
In traditional derivatives, replacing an expiring futures contract with a new one to maintain exposure. Perpetual contracts (perps) avoid rollover because they have no expiration. For fixed-term DeFi lending, rollover means re-lending at maturity.

Router (Smart Contract)

#
A contract that handles multi-hop swap routing, finding the optimal path through multiple pools to execute a token swap. SunSwap's router contract accepts input/output token specifications and automatically routes through intermediate pools.

Royalty

#
In NFT contracts (TRC-721), a percentage of secondary sale proceeds automatically sent to the original creator. TRON supports royalty standards allowing artists and developers to earn ongoing income from NFT resales on compliant marketplaces.

RPC (Remote Procedure Call)

#
A protocol enabling a program to call functions on a remote server as if they were local. TronGrid exposes an RPC interface at api.trongrid.io that tronweb uses to query blockchain state and submit transactions.

Rug Pull

#
A malicious exit by a project's founders — typically involving removing all liquidity from a DEX pool or draining a protocol's treasury — leaving investors with worthless tokens. Common in newly launched anonymous projects.

Rugcheck

#
Informal term for due diligence on a DeFi token or contract to assess rug pull risk. Involves checking: contract verification status, liquidity lock status, ownership renouncement, mint function presence, and token holder concentration.

Soft Fork

#
A backward-compatible protocol change where new rules are a subset of the old rules. Old nodes still validate new blocks, though they do not enforce the new constraints.

Safe Transfer

#
In TRC-721 and TRC-1155, safeTransfer functions call a callback on the recipient contract (onTRC721Received or onTRC1155Received) to confirm it can handle the token. If the recipient is a contract that doesn't implement the callback, the transaction reverts, preventing permanent token loss.

SafeMath

#
A Solidity library providing arithmetic operations with overflow/underflow checks. Made redundant by Solidity 0.8+ (which has built-in overflow checks). Legacy TRON contracts compiled with Solidity below 0.8 may rely on SafeMath for safety.

Safety Score

#
A numerical risk rating assigned to a DeFi protocol based on factors including audit history, contract ownership, liquidity depth, and historical security. Used by aggregators and portfolio managers to assess protocol risk. Not standardized — each rating system uses different methodology.

Sanctioned Address

#
A blockchain address identified by a government authority (e.g., OFAC in the US) as belonging to a prohibited entity. USDT contracts implement automatic blocking of sanctioned addresses. Unknowingly transacting with sanctioned addresses can create legal risk.

Sandwich Attack

#
A front-running attack on DEX trades. An attacker sees a pending swap in the mempool, submits a buy transaction immediately before it (driving up price) and a sell transaction immediately after (selling at the inflated price). The victim receives worse execution than expected.

Scalability

#
A blockchain's ability to handle increasing transaction volume without performance degradation. TRON addresses scalability at the L1 level through DPoS's fast finality and optimized block production, achieving ~2,000 TPS theoretical capacity.

Scalability Trilemma

#
See Blockchain Trilemma.

Scam Token

#
A fraudulent token deployed to deceive users into believing it is a legitimate asset. Common characteristics: name/ticker resembling a known token, no legitimate use case, contract with hidden mint or freeze functions, and no verified source code.

Schedule

#
In TRON governance, the timeline between proposal approval and parameter change implementation. Once 19/27 SRs approve a proposal, the change is scheduled to take effect at the next available maintenance period.

Security Audit

#
See Audit (Smart Contract).

Security Deposit

#
A financial commitment required to participate in certain protocol activities, forfeited if rules are violated. In TRON, the 9,999 TRX SR registration deposit is a form of security deposit.

Security Token

#
A token representing ownership in a real-world asset (equity, debt, real estate) and subject to securities regulations. Distinct from utility tokens. Some jurisdictions classify TRX and similar tokens as securities; regulatory status varies by country.

Seed Investment

#
Very early-stage funding for a blockchain project, before the product exists. Seed investors take the highest risk but receive tokens or equity at the lowest valuation. TRON ecosystem projects often conduct seed rounds before launching on TRON mainnet.

Seed Phrase (Mnemonic Recovery Phrase)

#
A sequence of 12 or 24 words from the BIP-39 standard wordlist that serves as the human-readable backup for an HD wallet's root seed. The seed phrase regenerates all private keys and addresses in the wallet. It must never be digitized or shared.

Segregated Witness (SegWit)

#
A Bitcoin protocol upgrade separating signature data from transaction data to reduce transaction size and enable the Lightning Network. Referenced here for context; TRON has no equivalent concept — its transaction model handles similar goals through the Bandwidth resource system.

Self-Custody

#
Holding your own private keys without relying on a third party. Provides full control over assets but places full responsibility on the user. The only way to be truly unaffected by exchange insolvency, hacks, or regulatory freezes.

Self-Custody Risk

#
The risk of losing assets due to private key loss, hardware failure, or disaster when using a non-custodial wallet. Mitigated through multiple secure backups of the seed phrase, hardware wallet usage, and geographic distribution of backups.

Self-Destruct

#
See SELFDESTRUCT.

Self-Executing Contract

#
A smart contract that triggers autonomously when predefined on-chain conditions are met, without human intervention. Liquidation bots and automated yield strategies use self-executing patterns to respond to on-chain events.

SELFDESTRUCT

#
An EVM opcode that destroys a contract and sends its remaining ETH to a specified address. Operates under EIP-6780 rules on TVM — it transfers remaining TRX to the target address but does not delete the contract from state, and costs 5,000 Energy.

Semi-Fungible Token

#
A token that behaves as fungible within a specific context and non-fungible in another — e.g., concert tickets of the same class are interchangeable before the event but become unique collector items after. TRC-1155 enables semi-fungible token creation.

Settlement

#
The final execution of a transaction — transferring ownership of assets between parties. On TRON, settlement occurs at block inclusion (~3 seconds). Contrast with traditional finance where settlement can take 2 business days (T+2).

Shared Security

#
A model where multiple chains or rollups inherit security guarantees from a single base layer. Not currently a TRON design principle — TRON operates as a standalone L1 with its own consensus security.

Sharpe Ratio

#
A risk-adjusted performance measure: (return − risk-free rate) / standard deviation of returns. In DeFi yield comparison, a higher Sharpe ratio means better returns per unit of volatility. Useful for comparing JustLend APY vs. simpler TRX staking.

Short (Position)

#
Betting that an asset's price will decrease by borrowing and selling it, with the intention to buy it back cheaper later and return it. Short positions on TRX are available through SunX and other derivatives platforms.

Short Squeeze

#
A rapid price increase triggered when short sellers rush to close their positions (buy to cover) simultaneously. The buying pressure accelerates the price increase. Common during crypto bull markets when bearish positions get overwhelmed.

Signature Replay

#
An attack where a valid cryptographic signature is reused in a different context than intended. For example, a signature authorizing a small token transfer being replayed to authorize a larger transfer. Prevented by including a nonce, chain ID, or contract address in the signed message.

Signature Verification

#
The on-chain process of confirming that a cryptographic signature was produced by the expected private key. The TVM includes opcodes for ECDSA signature verification, enabling multi-sig contracts, permit-based approvals, and meta-transaction relaying.

Slashing

#
In Proof-of-Stake systems, the penalty applied to validators who behave dishonestly or fail to perform their duties — typically a reduction in staked funds. TRON's DPoS does not implement slashing; instead, misbehaving SRs can be voted out at the end of an Epoch.

Slashing Insurance

#
In PoS networks that use slashing, optional insurance products protecting validators from losing staked assets due to client bugs or downtime. Not applicable to TRON (no slashing in DPoS) but relevant context for users comparing staking across chains.

Slippage

#
The difference between the expected price of a trade and the actual executed price. On AMMs like SunSwap, slippage occurs because executing a trade changes the reserve ratio, moving the price. Larger trades and thinner pools cause higher slippage.

Slippage Protection

#
A mechanism preventing trades from executing if the actual slippage exceeds a user-defined maximum. SunSwap's frontend enforces slippage protection by setting a minAmountOut parameter — if the pool price moves too much before the transaction confirms, it reverts.

Slippage Tolerance

#
The maximum acceptable slippage percentage set by a user before submitting a DEX trade. If actual slippage exceeds this tolerance, the transaction reverts. Setting tolerance too high creates a front-running window.

Smart Contract

#
A self-executing program deployed on a blockchain, enforced by the network's consensus rules rather than legal contracts. Immutable after deployment (unless using a proxy pattern), transparent, and deterministic. JustLend and SunSwap are smart contract systems.

Smart Contract Wallet

#
A wallet implemented as a smart contract rather than a simple private key account. Supports features like social recovery, daily limits, and multi-factor authentication. More flexible than EOA wallets but carries additional smart contract risk.

Smart Money

#
Institutional or sophisticated investors with information advantages who tend to enter positions before major price moves. On-chain analysis tools track "smart money" wallet activity as a leading indicator.

Snapshot

#
A record of the blockchain state at a specific block height. Used for: airdrop eligibility calculations, governance voting (capturing voting power at a fixed point), and DApp analytics. On TRONSCAN, snapshot data is accessible via the API.

Social Engineering

#
Manipulating people into revealing confidential information or taking harmful actions through psychological deception rather than technical exploits. Fake support agents, urgent warnings, and too-good-to-be-true offers are common social engineering vectors targeting TRON users.

Social Recovery

#
A wallet security model allowing a trusted network of "guardians" to restore access to a lost wallet without a seed phrase. Not currently supported natively by TronLink, but can be implemented via smart contract wallets.

Soft Peg

#
A peg mechanism maintained through market incentives rather than guaranteed redeemability. Algorithmic stablecoins use soft pegs. USDT uses a hard peg — guaranteed 1:1 USD redemption for qualified holders. USDD uses a soft peg backed by over-collateralization.

Solana

#
A high-throughput Layer 1 blockchain using Proof-of-History consensus. Relevant in the TRON context as a competing chain for DeFi and payment use cases. Solana achieves throughput through parallel transaction execution (Sealevel); TRON achieves it through DPoS and fast block times.

Solidification

#
TRON's term for a block reaching irreversibility. A produced block is solidified once 19 of 27 active SRs have broadcast PBFT-style attestation signatures confirming it. A solidified block cannot be reorganized under any circumstances. Distinct from mere confirmation: a block may be included in the chain but not yet solidified if sufficient attestations have not accumulated. If 9 or more SRs withhold attestations, new blocks continue being produced but none are solidified until the SR set is restored through governance.

Solidity

#
The primary programming language for writing smart contracts on TVM and EVM. Statically typed, contract-oriented, and compiled to bytecode. TRON uses a fork of Solidity supporting versions up to 0.8.x.

Solidity Version

#
The specific Solidity compiler version used to compile a smart contract. TRON supports Solidity versions up to 0.8.x. Version mismatches between the compiler and the contract's pragma can cause compilation failures or security issues.

SoulBound

#
See Soulbound Token.

Soulbound Token

#
A non-transferable NFT permanently associated with a specific address, used for identity, credentials, or reputation. Cannot be sold or transferred — only held or burned. Emerging concept in Web3 identity; limited deployment on TRON currently.

Spot Market

#
A market for immediate asset purchase and delivery at the current price, as opposed to futures (future delivery) or options (conditional delivery). SunSwap is a spot DEX — trades settle immediately on-chain.

Spot Price

#
The current market price of an asset for immediate delivery. In AMMs, the spot price at any moment is determined by the current ratio of pool reserves. AMM spot prices diverge from broader market prices when trades create price impact, attracting arbitrageurs.

Spread (Bid-Ask)

#
The difference between the highest buy price and the lowest sell price for an asset. Wider spreads indicate lower liquidity and higher implicit transaction costs. On AMMs, the "spread" manifests as price impact rather than an explicit bid-ask difference.

SR (Super Representative)

#
One of 27 elected block producers on the TRON network. SRs are selected based on total vote count from TRX stakers. They produce blocks, earn block and vote rewards, vote on governance proposals, and distribute a portion of rewards to voters.

SR Candidate

#
Any address that has paid the 9,999 TRX registration deposit to participate in SR elections. Candidates outside the top 127 by vote count are candidates but neither produce blocks nor earn rewards.

SR Partner

#
Super Representative candidates ranked 28–127 by vote count. They do not produce blocks but receive a proportional share of the vote reward pool.

Stablecoin

#
A cryptocurrency designed to maintain a stable price relative to a reference asset, typically USD. USDT (TRC-20) is the dominant stablecoin on TRON by volume; USDD is TRON's native decentralized stablecoin. USDT is centrally issued and redeemable for USD through Tether.

Stablecoin Depeg

#
A significant deviation of a stablecoin's market price from its pegged value. May be temporary (1% variation during high volatility) or catastrophic (UST/LUNA collapse in 2022). USDT has historically maintained its peg reliably; algorithmic stablecoins have depegged repeatedly.

Stablecoin War

#
The competitive dynamic between different stablecoins vying for adoption, liquidity, and integration. On TRON, USDT dominates, with USDD as the primary alternative. Stablecoin wars play out through liquidity incentives, exchange integrations, and DeFi yield programs.

Stack Overflow

#
In TVM, an error occurring when the execution stack exceeds its maximum depth. Can occur with deeply nested function calls or recursive patterns. Gas/Energy limits also prevent infinite recursion.

Stake Delegation

#
In TRON Stake 2.0, the ability to delegate staked Energy or Bandwidth to another address without transferring the TRX. The delegating account retains TRON Power; only the resource quota is temporarily assigned. Requires a minimum 3-day lock.

Staking

#
The act of locking tokens in a protocol to earn rewards or gain governance/resource rights. On TRON, staking (freezing) TRX generates Energy or Bandwidth and TRON Power for voting. Unlike validator staking on Ethereum, TRON staking requires no technical node operation.

Staking Derivative

#
A token representing staked assets, tradeable while the underlying remains staked. Liquid staking derivatives provide liquidity without a lock period. stUSdt is conceptually adjacent, representing USDT deposited in a yield-bearing protocol.

Staking Pool

#
A service aggregating multiple users' staked assets to meet minimum staking requirements or improve efficiency. On TRON, staking pools are less necessary than on Ethereum (no minimum TRX required to stake), but Energy rental services function as informal staking pools.

Staking Reward

#
See Vote Reward and Block Reward. TRX stakers receive vote rewards proportional to their contribution to an SR's vote total and the SR's declared reward ratio.

Standard Library

#
A set of pre-audited, reusable smart contract components. OpenZeppelin's Solidity library is the most widely used — TRON projects import TRC-20, TRC-721, access control, and safety utilities from OpenZeppelin or its TRON-compatible ports.

State Machine

#
A model of computation with a finite number of states and defined transitions between them. Smart contracts are state machines: each transaction transitions the contract from one valid state to another. Formal verification tools model contracts as state machines to prove safety properties.

State Variable

#
A variable declared at the contract level in Solidity, stored persistently in the contract's on-chain storage. Every read from and write to a state variable consumes Energy. Minimizing unnecessary state variable writes is the primary Energy optimization technique.

Stop-Loss

#
A risk management order that automatically closes a position when the price falls to a specified level, limiting losses. Available on CEX trading platforms and derivatives protocols (SunX) for TRX positions.

Storage (EVM/TVM)

#
The persistent key-value store associated with a smart contract's address. Organized as 32-byte slots. Writing to a new storage slot costs significantly more Energy than writing to an existing slot. Storage is persistent across transactions; memory is wiped after each call.

Streaming Payment

#
A payment model where funds flow continuously in real-time rather than in lump-sum transactions. TRON's low per-transaction cost enables streaming-style micro-payment architectures for content creators, freelancers, and subscription services.

Struct

#
A Solidity composite data type grouping multiple variables. Example: struct Position { uint256 collateral; uint256 debt; address owner; }. Structs stored in contract state cost Energy proportional to the number of storage slots they occupy.

sTRX (Staked TRX)

#
A yield-bearing receipt token issued by JustLend representing TRX staked in its liquid staking protocol. Holders of sTRX automatically earn TRON staking yields while maintaining the ability to deploy the token in other DeFi applications. See: https://app.justlend.org/strx?lang=en-US

stUSdt

#
A yield-bearing stablecoin by the stUSdt protocol, issued on TRON. Users deposit USDT and receive stUSdt tokens representing a claim on USDT principal plus real-world asset (RWA) yield. Yield is generated from US Treasury or similar instruments.

Sub-account

#
In some protocols, a secondary account linked to a primary account, used for segregating positions or permissions. Not a native TRON protocol feature but implemented at the application layer by some exchanges and DeFi platforms.

Subgraph

#
An indexed data layer for querying blockchain event data efficiently. The Graph Protocol provides subgraph infrastructure on many chains; TRON's TRONSCAN API provides similar indexed query capabilities without requiring a separate subgraph deployment.

Sun

#
The smallest unit of TRX. 1 TRX = 1,000,000 Sun. All TRX amounts in tronweb and the TRON API are expressed in Sun. Named after Justin Sun, TRON's founder. Analogous to Wei (Ethereum) or Satoshi (Bitcoin).

SunSwap

#
The leading DEX on TRON, governed by SUN DAO via the SUN token. Supports V2 (constant product) and V3 (concentrated liquidity) pool types. SUN is its governance and reward token. Official domain: sun.io. See also: SunX (sunx.io) — a perpetual futures protocol on TRON, part of the Sun ecosystem.

Supply Rate

#
The interest rate earned by a lender who supplies assets to a DeFi lending pool. On JustLend, supply rates are algorithmic — they increase with pool utilization to attract more deposits when demand is high.

Support Level

#
In technical analysis, a price level where buying interest is historically strong enough to prevent further decline. Traders monitor TRX support levels to assess downside risk and potential entry points.

Sybil Attack

#
A network attack where a single entity creates many fake identities to subvert a voting or reputation system. DPoS's stake-weighted voting is inherently Sybil resistant — creating many accounts provides no additional voting power without also holding more TRX.

Synthetic Asset

#
A token whose value tracks another asset without requiring ownership of the underlying. Synthetic TRX, for example, would track TRX price without requiring the holder to hold actual TRX. Created using oracle price feeds and collateralization mechanisms.

T3+

#
A global collaborator program launched by the T3FCU in August 2025 to expand public-private cooperation in fighting illicit blockchain activities. Binance was the inaugural member.

T3FCU

#
The T3 Financial Crime Unit, a public-private initiative launched in September 2024 by TRON, Tether, and TRM Labs. Dedicated to detecting, tracing, and disrupting illicit activities tied to the USDT stablecoin on the TRON blockchain.

Tail Risk

#
The risk of rare but extreme events (market crashes, protocol exploits, regulatory bans) that occur in the "tail" of a probability distribution. DeFi users managing significant capital should stress-test positions against tail risk scenarios.

Taker (Order)

#
A participant who fills an existing order at the current available price, removing liquidity from an order book or AMM pool. On AMMs, every trader is a taker — they accept the pool's current price. Takers typically pay higher fees than makers on order-book exchanges.

TAPOS (Transaction As Proof Of Stake)

#
TRON's replay attack prevention mechanism. Each transaction must include a reference to a recent block's hash and height. Transactions with stale or invalid references are rejected. Replaces the nonce-based replay protection used on Ethereum.

Taxable Event

#
Any cryptocurrency transaction that may trigger a tax liability in a given jurisdiction. In most countries, selling, swapping, and earning yield are taxable events. On TRON, every DEX swap and staking reward claim may be a taxable event — consult a local tax professional.

Technical Analysis (TA)

#
The practice of predicting future price movements by analyzing historical price charts, trading volume, and chart patterns. Used by TRX and crypto traders. Results are probabilistic, not deterministic — TA does not guarantee future performance.

Technical Debt

#
Accumulated shortcuts or suboptimal design decisions in software that must eventually be resolved. In smart contracts, technical debt is especially dangerous because deployed contracts are immutable — bad decisions become permanent.

Testnet

#
A network parallel to mainnet used for development and testing, where tokens have no monetary value. TRON maintains two public testnets: Nile (feature testnet, runs ahead of mainnet) and Shasta (stable testnet, mirrors mainnet parameters). Both are actively maintained.

Testnet Faucet

#
A service providing free test tokens (test TRX) for development and testing on TRON testnets. TRON's Nile faucet is accessible at nileex.io/join/getJoinPage. Test tokens have no monetary value.

Throughput

#
The number of transactions a blockchain can process per second (TPS). TRON's theoretical throughput is ~2,000 TPS; real-world throughput depends on transaction complexity and available Energy. Compare: Ethereum ~15–30 TPS (L1), Bitcoin ~7 TPS.

Time Lock

#
A smart contract mechanism that enforces a minimum delay between scheduling and executing a state change. Used in governance contracts to give users time to react to protocol changes before they take effect.

Time-Weighted Average Price (TWAP)

#
A price calculated as the average of prices over a specified time period. Used by oracles to mitigate flash loan price manipulation — a single-block price can be manipulated, but a TWAP over many blocks cannot. JustLend uses TWAP for collateral pricing.

TIP (TRON Improvement Proposal)

#
The formal process for proposing changes to the TRON protocol. TIPs are submitted on GitHub (github.com/tronprotocol/tips), discussed by the community and core developers, and implemented through the on-chain governance voting process if adopted.

TIP-369 (Stake 2.0)

#
The TRON Improvement Proposal that introduced the Stake 2.0 system, replacing Stake 1.0 with resource delegation, flexible unfreezing, and the 14-day withdrawal waiting period. A major protocol upgrade enacted via governance hard fork.

Token

#
A digital asset issued on a blockchain network, typically via a smart contract. On TRON, tokens are issued as TRC-10 (protocol-native), TRC-20 (smart contract fungible), TRC-721 (NFT), or TRC-1155 (multi-token).

Token Approval

#
The act of granting a smart contract permission to spend your tokens via the TRC-20 approve() function. Approvals are permanent until revoked and are a primary phishing attack vector. TRONSCAN's Token Approval Checker shows all active approvals for an address.

Token Bridge

#
A specialized bridge protocol facilitating token transfers between two specific blockchains. Token bridges lock assets on the source chain and mint wrapped representations on the destination chain. TRON has token bridges connecting to Ethereum, BSC, and other networks.

Token Burn

#
The permanent destruction of a fixed quantity of tokens by sending them to an address with no recoverable private key (the zero address). Reduces circulating supply, potentially increasing scarcity.

Token Distribution

#
The breakdown of how a token's total supply is allocated among categories: team, investors, ecosystem, community, treasury, public sale, etc. A healthy distribution avoids excessive concentration in any single category and includes vesting to align incentives.

Token Gating

#
Restricting access to content, services, or communities based on token ownership. Example: a Discord server requiring proof of holding a specific NFT or TRX amount. Implemented via signed message verification or balance checks against on-chain data.

Token Holder

#
Any address holding a non-zero balance of a specific token. Token holder distributions can be analyzed on TRONSCAN — high concentration (top 10 holders control 90%+) is a risk signal for smaller tokens.

Token Migration

#
The process of moving a token from one standard or blockchain to another. For example, migrating from a TRC-10 token to an equivalent TRC-20 token, or bridging USDT from Ethereum (ERC-20) to TRON (TRC-20).

Token Standard

#
A shared interface specification for token contracts, enabling wallets and exchanges to interact with any token implementing the standard without custom integration. TRON's standards: TRC-10, TRC-20, TRC-721, TRC-1155.

Token Velocity

#
The rate at which a token changes hands relative to its total supply. High velocity can suppress price appreciation even with growing demand. Tokens primarily used for fee payment (like TRX in its burn function) have higher velocity than tokens held for governance or yield.

Tokenization

#
Converting the ownership of a real-world asset (real estate, art, commodities) into a digital token on a blockchain. On TRON, tokenization of real-world assets (RWAs) is emerging through protocols like stUSdt, which tokenizes US Treasury yield.

Tokenized Treasury

#
A protocol that holds government bonds or money market instruments on behalf of stablecoin or token holders, distributing yield on-chain. stUSdt is a tokenized treasury product on TRON — holding USDT earns yield from underlying US Treasury instruments.

Tokenomics

#
The economic design of a token system: total supply, emission schedule, allocation (team, investors, community, treasury), burn mechanisms, utility, and governance rights. Determines whether a token has genuine long-term economic sustainability.

Total Supply

#
The total number of tokens that have been minted minus any that have been burned. Includes both circulating tokens and those that are locked, vested, or held in protocol treasuries.

Total Value Locked (TVL)

#
The aggregate USD value of all assets deposited across a DeFi protocol or blockchain ecosystem. TVL is a common (if imperfect) measure of a protocol's adoption and security. TRON's TVL is driven largely by USDT holdings on JustLend and in liquidity pools.

Total Value Secured

#
An alternative to TVL measuring the total value of assets protected by a protocol's security model, including assets that may not be "locked" in the traditional sense. Used by some protocols to provide a more comprehensive picture of ecosystem value.

TPOS (TRON Proof of Stake)

#
Historical branding used in TRON's 2017–2018 whitepaper for its consensus mechanism. The term was superseded as the architecture evolved. Current TRON documentation uses "DPoS" (Delegated Proof of Stake) or "DPoS+PBFT." TPOS should be understood as a legacy alias for what is now called DPoS, not a distinct consensus mechanism.

TPS (Transactions Per Second)

#
A measurement of blockchain throughput. TRON's theoretical TPS is approximately 2,000. Practical TPS is lower due to varying transaction complexity and network load. Compare: Ethereum L1 ~15–30 TPS, Solana ~3,000+ TPS, Visa ~24,000 TPS.

Trade Settlement

#
The completion of a transaction where both parties have fulfilled their obligations. On TRON, DEX trade settlement occurs atomically within the transaction — there is no unsettled period between trade and settlement, unlike traditional finance's T+2.

Trailing Stop

#
A risk management order that adjusts the stop-loss level as an asset's price moves favorably, locking in profits while limiting downside. Used by TRX traders on leveraged positions via SunX or CEX trading interfaces.

Transaction

#
A cryptographically signed instruction to change the state of the TRON blockchain: transferring TRX, calling a smart contract, freezing TRX, voting for SRs, etc. Transactions are broadcast to the network, validated, and permanently recorded in a block.

Transaction Broadcasting

#
Sending a signed transaction to the TRON network for inclusion in a block. tronweb's broadcast() method submits the raw signed transaction hex to a TronGrid node's broadcast endpoint.

Transaction Confirmation

#
See Confirmation. The point at which a transaction is included in a block and the state change becomes part of the blockchain's permanent record.

Transaction Fee

#
The cost of executing a transaction. On TRON, fees are paid in Energy (for smart contracts) and Bandwidth (for all transactions), either from staked resources or by burning TRX. There is no variable fee auction as on Ethereum.

Transaction Hash (TxID)

#
A unique 64-character hexadecimal identifier for a transaction on the TRON blockchain. Used to look up any transaction on TRONSCAN. Generated by hashing the transaction's content.

Transaction Monitoring

#
Continuous surveillance of blockchain transactions to detect suspicious activity. Compliance teams and security researchers use transaction monitoring to identify hacks, money laundering patterns, and protocol anomalies in real time.

Transaction Pending

#
A transaction that has been broadcast to the network but not yet included in a block. On TRON, transactions typically clear within 3 seconds. A transaction stuck as "pending" usually indicates it was never actually broadcast or was rejected by the network.

Transaction Receipt

#
The blockchain record produced after a transaction is executed, containing: transaction hash, block number, Energy/Bandwidth consumed, status (success/fail), and events emitted. Accessible via TRONSCAN or the TronGrid API.

Transaction Simulation

#
Running a transaction against the current chain state without broadcasting it, to predict the outcome (return values, state changes, Energy consumption, emitted events). TronGrid's /wallet/triggerconstantcontract endpoint performs simulation without committing to the blockchain.

Transaction Speed

#
The rate at which transactions are confirmed. On TRON: ~3 seconds to first confirmation, ~57 seconds to practical finality. Compare: Ethereum ~12 seconds / 12 minutes, Bitcoin ~10 minutes / 60 minutes.

Transfer Event

#
The Transfer(address indexed from, address indexed to, uint256 value) event emitted by TRC-20 contracts on every token transfer. Used by TRONSCAN, wallets, and analytics tools to track token movements without querying raw storage.

TRC-10

#
A TRON-native token standard where tokens are created and managed directly by the TRON network protocol, not via a smart contract. TRC-10 transfers use Bandwidth only (no Energy required) and have lower transaction costs. Older and less widely supported than TRC-20.

TRC-1155

#
TRON's multi-token standard. Mirrors Ethereum's ERC-1155. A single deployed contract can manage any combination of fungible tokens, non-fungible tokens, and semi-fungible tokens simultaneously. Each token type is identified by a numeric ID; each ID can have its own supply, metadata URI, and attributes. Key interface methods: safeTransferFrom() (single token), safeBatchTransferFrom() (multiple token types in one transaction), balanceOf(), balanceOfBatch(), setApprovalForAll(), isApprovedForAll(). Events: TransferSingle, TransferBatch, ApprovalForAll, URI. Recipient contracts must implement the TRC1155TokenReceiver interface and return magic values to confirm receipt. Batch transfers make TRC-1155 significantly more Energy-efficient than multiple separate TRC-20 or TRC-721 transfers. Commonly used for gaming item collections, multi-edition NFT drops, and any application requiring multiple distinct token types under one contract. TRC-165 interface ID: 0xd9b67a26.

TRC-20

#
TRON's smart contract-based fungible token standard. Mirrors Ethereum's ERC-20 interface (transfer, approve, allowance, transferFrom, Transfer event, Approval event). USDT, USDD, and virtually all DeFi tokens on TRON use TRC-20. Transfers consume Energy.

TRC-721

#
TRON's non-fungible token standard. Mirrors ERC-721. Each token has a unique ID and single owner. Used for digital collectibles, gaming items, and other unique digital assets on TRON.

TRC-8004

#
An experimental TRON smart contract standard defining a framework for AI agent interactions and automated portfolio management. It enables AI-driven contracts to execute conditional logic, bridging autonomous agents with TRON's DeFi protocols. See: https://github.com/BofAI/trc-8004-contracts

Treasury

#
A fund controlled by a protocol or DAO, used to pay for development, audits, grants, and other protocol expenses. SunSwap and JustLend both maintain protocol treasuries funded by a portion of protocol fees.

Treasury Diversification

#
The practice of holding protocol treasury assets in multiple tokens rather than only the native governance token, reducing the treasury's sensitivity to single-token price movements. Common risk management practice for protocol DAOs.

TRON DAO

#
The decentralized autonomous organization governing the TRON ecosystem. Replaced "TRON Foundation" branding to reflect community governance. Manages ecosystem grants, official communications, and protocol development direction.

TRON Foundation

#
The Singapore-based organization that originally developed and launched the TRON network (2017–2018). Rebranded to TRON DAO. Historical entity; official communications now use "TRON DAO."

TRON Power (TP)

#
The voting weight earned by freezing TRX. 1 TRX frozen = 1 TP, regardless of whether frozen for Energy or Bandwidth. TP is used to vote for Super Representatives and is returned (reduced) when TRX is unfrozen.

TronBox

#
The primary smart contract development framework for TRON. Provides contract compilation (Solidity), migration scripts, network configuration, and a local development blockchain. Equivalent to Hardhat or Truffle for Ethereum.

TronGrid

#
The managed API node service for the TRON network. Provides REST and gRPC endpoints for reading blockchain state and submitting transactions without operating a full node. Requires an API key for production usage above free tier limits.
#
The leading TRON browser extension and mobile wallet. Injects window.tronWeb into web pages for DApp connectivity, manages keys locally, and signs transactions via user confirmation. Available for Chrome, Firefox, iOS, and Android. Official domain: tronlink.org.

TronLive

#
The first dedicated TRON community platform, established at the network's inception to facilitate global adoption and education. It serves as a primary hub for community engagement and is historically recognized for its role in bridging the gap between voters and Super Representatives (SRs) through in-depth interviews and validator transparency initiatives.

TRONSCAN

#
TRON's official block explorer and analytics platform at tronscan.org. Features: transaction and address lookup, contract source verification, token tracking, staking/voting interface, approval management, and governance proposal monitoring.

TronStation

#
TRON's official resource calculator tool, accessible at tronscan.org/#/tools/tronstation. Provides real-time conversion rates between TRX and Energy/Bandwidth, and calculates resource costs for transactions. The calculator page on tron.guide replicates this functionality with additional context.

tronweb

#
The JavaScript library for interacting with the TRON network. Provides methods for creating transactions, calling contract functions, querying blockchain state, and managing accounts. TRON's equivalent of ethers.js or web3.js. Version 5.x is the current stable release.

Trust Assumptions

#
The entities or mechanisms a user must trust when using a protocol. DeFi reduces but does not eliminate trust assumptions: you trust smart contract code, oracle providers, and bridge validators rather than a bank. Understanding trust assumptions is essential for DeFi risk assessment.

Trustless

#
A property of blockchain systems where participants do not need to trust each other or a central intermediary — trust is placed in the protocol and mathematics instead. Smart contracts on TRON execute as programmed, without relying on a third party's honesty.

TRX

#
The native currency of the TRON blockchain. Used to pay transaction fees (by burning when resources are insufficient), stake for Energy and Bandwidth, vote for Super Representatives, and interact with DeFi protocols. Minimum denomination: 1 Sun (1 TRX = 1,000,000 Sun).

TVM (TRON Virtual Machine)

#
The sandboxed bytecode execution environment for TRON smart contracts. Designed to be broadly EVM-compatible at the opcode level, with documented differences: block.timestamp is in seconds (unlike the block header which is milliseconds), and SELFDESTRUCT follows EIP-6780 behavior, 21-byte internal address format.

Two-Factor Authentication (2FA)

#
An additional security layer requiring a second verification method beyond a password. Exchange accounts should have 2FA enabled; wallets cannot have 2FA (the private key is the sole authentication factor). Never disable 2FA on exchange accounts holding TRON assets.

Umbrella Protocol

#
An on-chain insurance solution providing DeFi coverage against smart contract failures, stablecoin depegs, and other protocol risks. Emerging on multiple chains; TRON users seeking coverage currently access cross-chain coverage platforms.

Unbonding

#
See Unbonding Period.

Unbonding Period

#
The waiting period between initiating an unstake and receiving the unstaked tokens. On TRON Stake 2.0, the unbonding period is 14 days. During unbonding, the TRX earns no resources or TRON Power but cannot be transferred.

Uncapped Approval

#
Granting uint256 max (2^256-1) allowance — see Infinite Approval. A security risk if the approved contract is later compromised. Best practice: approve only what is needed for the current transaction.

Uncollateralized Loan

#
A loan not backed by posted collateral. Requires trust in the borrower or alternative enforcement mechanisms. Flash loans are a form of uncollateralized lending — the "collateral" is the atomicity of the transaction (full repayment within one transaction or it reverts).

Undercollateralization Risk

#
The risk that collateral value falls below the borrowed value before liquidation can occur. Mitigated by conservative LTV limits, real-time price feeds (oracles), and active liquidation bots maintaining position health.

Undercollateralized

#
A lending position where the value of collateral has fallen below the required minimum relative to the outstanding debt. Undercollateralized positions are eligible for liquidation to protect lenders.

Undercollateralized Lending

#
A loan where the collateral value is less than the borrowed amount. Requires alternative credit mechanisms (identity, reputation, legal recourse). Not currently common on TRON DeFi — all major lending protocols require overcollateralization.

Underwriting

#
In DeFi insurance protocols, the process of providing capital that backs insurance payouts in exchange for premium income. Underwriters take on risk; policyholders pay premiums for coverage against smart contract exploits or stablecoin depegs.

Unfreeze

#
Initiating the release of frozen TRX in TRON Stake 2.0. Triggering an unfreeze immediately reduces your Energy or Bandwidth allocation and TRON Power. After a 14-day waiting period, the TRX transitions to a withdrawable state and must be explicitly withdrawn.

Uniswap

#
Ethereum's leading AMM DEX, which pioneered the constant-product liquidity pool model. SunSwap was architecturally inspired by Uniswap and implements compatible V2 and V3 pool designs on TRON. Solidity contracts originally written for Uniswap are often deployable on SunSwap with minimal changes.

Unit of Account

#
One of the three classical functions of money: expressing prices in a standard unit. USDT functions as the primary unit of account in TRON DeFi — prices, fees, and TVL are commonly quoted in USDT rather than TRX.

Unit Test

#
A test verifying an individual function of a smart contract in isolation. TronBox supports unit testing with JavaScript/TypeScript test frameworks. Comprehensive unit test coverage is a prerequisite for a responsible smart contract audit.

Universal Wallet

#
A wallet supporting multiple blockchain networks from a single seed phrase and interface. TronLink Mobile functions as a universal wallet with support for both TRON mainnet and testnets. Some cross-chain wallets (e.g., Trust Wallet) support both TRON and Ethereum from the same app.

Unlock Schedule

#
The timeline defining when locked tokens (vested allocations, staking deposits) become transferable. For TRON Stake 2.0, the unlock schedule is: unfreeze → 14-day waiting period → withdraw.

Unverified Contract

#
A smart contract deployed on TRON whose source code has not been published and verified on TRONSCAN. Unverified contracts cannot be audited by users. Interacting with unverified contracts is significantly riskier than interacting with verified ones.

Unwind

#
Closing out a leveraged position or DeFi strategy. "Unwinding" a leveraged JustLend position involves repaying the borrowed amount and withdrawing collateral. Complex positions may require multiple transactions to fully unwind without triggering liquidation.

Upgradeable Contract

#
A smart contract pattern (typically using a proxy) where the implementation logic can be replaced after deployment. The proxy address stays constant; the implementation contract address can be changed. Introduces centralization risk if the upgrade mechanism is not governed carefully.

USD Value

#
The dollar-equivalent value of a token amount, calculated as quantity × current USD price. DeFi dashboards typically display positions in USD value to enable cross-asset comparison regardless of which tokens are held.

USD-Denominated Yield

#
Yield expressed in USD terms, accounting for the price appreciation or depreciation of the yield-bearing asset. Staking TRX yields TRX — in a bear market, the TRX-denominated yield may be positive while the USD-denominated yield is negative.

USD-Pegged

#
A token designed to maintain a 1:1 value with the US Dollar. USDT and USDD are the primary USD-pegged stablecoins on TRON. "USD-pegged" includes both collateralized and algorithmic peg mechanisms.

USDC

#
USD Coin, a dollar-pegged stablecoin issued by Circle. Circle ceased minting native USDC on TRON in early 2024 and officially discontinued support for the TRON contract in February 2025. The contract address (TEkxiTehnzSmSe2XqrBj4w32RUN966rdz8) is now labeled "usdcold" on TRONSCAN and is no longer an active, issuer-supported token. USDC remains actively supported on Ethereum, Solana, and other networks.

USDD

#
A decentralized stablecoin on TRON, algorithmically stabilized and pegged to USD. Backed by a combination of TRX, BTC, and USDT reserves held by the TRON DAO Reserve. Operates similarly to algorithmic stablecoins with overcollateralization buffers. Contract: TR7NHqjeKQxGTCi8q8ZY4pL8otSzgjLj6t (mainnet).

USDT (Tether)

#
USD Tether, the dominant stablecoin on TRON by volume. Issued by Tether Operations Limited as a TRC-20 token. TRON processes more USDT transactions than any other blockchain due to low transfer costs. Tether can blacklist addresses on the USDT contract.

USDT Blacklisting

#
Tether's ability to freeze specific TRC-20 USDT addresses by calling the addBlackList() function on the USDT contract, rendering the held USDT non-transferable. Used in cooperation with law enforcement for scam and sanctions enforcement. Any centrally issued token may have similar capabilities.

User Experience (UX)

#
The overall quality of a user's interaction with a product. In DeFi, UX is often a bottleneck for adoption: complex wallet setup, cryptic error messages, and high fees deter non-technical users. TRON's low fees and TronLink's simplified interface address some UX challenges.

User-Controlled

#
See Self-Custody, Non-Custodial. A system where the user has direct control over their assets and private keys.

Utility Token

#
A token that provides access to a specific service or resource on a network. TRX is a utility token: it pays for network resources, enables voting, and provides access to DApp economic systems. Contrasts with pure security tokens (investment contracts).

Utilization Rate

#
The percentage of total supplied liquidity that is currently borrowed in a lending pool. High utilization (>90%) indicates peak demand, triggering elevated borrow rates to incentivize more supply. JustLend's interest rate model is driven by utilization rate.

UTXO (Unspent Transaction Output)

#
The output-based state model used by Bitcoin, where account balances are implicitly defined as the sum of unspent outputs. TRON uses an account model (like Ethereum) rather than UTXO — each address has a persisted balance directly, not a set of UTXOs to spend.

Validator

#
A node that participates in block validation and production. On TRON, the equivalent is a Super Representative. On Ethereum PoS, validators require 32 ETH staked. On TRON, SR status is determined by vote count, not minimum TRX stake.

Validator Set

#
The complete group of nodes authorized to produce blocks on a blockchain. TRON's validator set = 27 active Super Representatives, rotating at the end of each 6-hour Epoch (during the 6-second maintenance period) based on current vote tallies. Compare: Ethereum has hundreds of thousands of validators.

Value Accrual

#
The mechanism by which protocol activity translates into increased value for token holders. Examples: fee buyback-and-burn (reduces supply), revenue sharing (distributes income), or governance power (controls a growing treasury). Tokens without value accrual mechanisms are purely speculative.

Value at Risk (VaR)

#
A statistical measure of the potential loss in a position or portfolio over a specific time period, at a given confidence level. Institutional DeFi risk managers use VaR alongside on-chain analytics to assess exposure to TRON market events.

Vampire Attack

#
A strategy where a competing protocol attracts liquidity or users away from an existing protocol by offering superior incentives. Example: offering higher yield to users who migrate their LP positions. Named after the way it "drains" the target protocol.

Vanity Address

#
A custom wallet address generated to contain a specific string of characters (e.g., TRON1234...). Generated by repeatedly computing random key pairs until the desired pattern appears. Vanity address generation is computationally intensive and does not weaken security if done correctly.

Variable Rate

#
An interest rate that adjusts dynamically based on market conditions (utilization). JustLend uses variable rates — borrowers may see their rate change between blocks. Variable rates provide capital efficiency but create uncertainty for borrowers managing tight positions.

Variable Rate Lending

#
A lending model where interest rates fluctuate based on market conditions (pool utilization). Most TRON DeFi lending (JustLend) uses variable rates. Rates can rise significantly during high-demand periods, increasing the cost of maintained borrow positions.

Vault

#
In DeFi, a smart contract that aggregates user deposits and executes a yield strategy on their behalf. Some TRON protocols implement vault-like auto-compounding products built on top of JustLend and SunSwap.

Vault Strategy

#
The investment logic a yield vault executes with deposited assets. Strategies include: lending on JustLend, providing liquidity on SunSwap, and auto-compounding rewards. Vault strategies vary in risk profile and expected yield.

Verifable Credential

#
A digital credential whose authenticity can be verified without contacting the issuer. Used in emerging on-chain identity systems. ZK-based verifiable credentials allow proving attributes (e.g., "over 18", "accredited investor") without revealing the underlying data.

Verifiable Random Function (VRF)

#
A cryptographic primitive that generates provably random outputs from inputs, with a proof that the output was calculated correctly. WINkLink provides VRF to TRON smart contracts for fair, tamper-resistant randomness in gaming, NFT minting, and lotteries.

Verification

#
The process of confirming a claim's validity. Types on TRON: (1) transaction verification (nodes confirm signatures and resource sufficiency), (2) contract verification (TRONSCAN confirms source code matches deployed bytecode), (3) identity verification (KYC by CEXes).

Version Control

#
Tracking changes to smart contract source code over time. In DeFi, version control matters because "V2" or "V3" often indicates significant protocol changes — SunSwap V2 and V3 have different pool mechanics, fee structures, and LP management requirements.

Vesting

#
A schedule that releases tokens gradually over time rather than all at once. Used for team and investor token allocations to align long-term incentives. A "cliff" vesting schedule releases nothing until a certain date, then releases in full or begins a gradual release.

Vesting Cliff

#
See Cliff (Vesting).

Vesting Schedule

#
See Vesting. The specific timeline and terms under which locked tokens become transferable.

VeToken Model

#
A tokenomics design where users lock governance tokens for a period to receive "vote-escrowed" tokens (veTokens) with boosted governance power and higher yield. Popularized by Curve Finance; variations exist on TRON in some protocols, offering longer lockers more governance influence.

veTRX

#
Hypothetical or emerging concept of vote-escrow TRX, where TRX is locked for a period to receive enhanced governance weight or yield boosts. Some TRON ecosystem protocols implement veToken models using their own governance tokens rather than TRX directly.

Virtual Machine

#
A software emulation of a computer that executes programs in an isolated environment. The TVM and EVM are virtual machines for executing smart contract bytecode in a sandboxed, deterministic environment.

Volatility

#
The degree of price variation over a given time period. High-volatility assets (TRX) are riskier as collateral in lending protocols because their value can drop sharply, pushing positions toward liquidation. Stablecoins have near-zero volatility by design.

Volatility Clustering

#
The statistical property where large price movements tend to follow other large movements (both up and down). TRX, like most cryptocurrencies, exhibits volatility clustering — calm periods punctuated by bursts of high volatility around major market events.

Volatility Farming

#
The practice of deliberately seeking high-volatility assets for liquidity provision, accepting greater impermanent loss risk in exchange for higher trading fee income. Concentrated liquidity positions (SunSwap V3) can be designed to capture high fee income from volatile pairs.

Volatility Index

#
A market measure of expected price volatility over a future period. In traditional finance: VIX. In crypto: various on-chain and options-derived volatility indices. High crypto volatility directly affects DeFi collateral health factors.

Volume-Weighted Average Price (VWAP)

#
The average price of an asset weighted by volume at each price level over a period. Used in execution algorithms to minimize market impact when building or exiting large positions.

Vote Reward

#
The TRX distributed per block to all top-127 Super Representatives, proportional to their share of total votes. Currently 128 TRX per block. SRs distribute their portion to voters according to their declared reward ratio.

Voting Delay

#
A time period between when a governance proposal is submitted and when voting can begin. Allows community members time to review and prepare their votes. Not implemented in TRON's SR governance, where proposals are voted on immediately upon submission.

Voting Power

#
The weight of an address's vote in the SR election. On TRON, voting power equals TRON Power (TP), which equals frozen TRX. 1 TRX frozen = 1 vote. The same TP can be split across multiple SR candidates.

vTRX

#
Hypothetical "vote TRX" — a concept for locked, non-transferable TRX used specifically for governance voting, without generating staking rewards. Not yet implemented on TRON; the existing TRON Power (TP) system serves a similar function.

Vulnerability Disclosure

#
The process of reporting a security vulnerability to the affected project, typically through a private bug bounty channel before public disclosure. Responsible disclosure gives projects time to patch before attackers can exploit. Always use official channels (bug bounty programs) rather than disclosing publicly.

WAGMI (We're All Gonna Make It)

#
Crypto slang expressing optimism that the community as a whole will profit or succeed. Often used after a price recovery or successful protocol launch. Ironic counterpart: NGMI (Not Gonna Make It).

WAGMI Risk

#
The counterpart to WAGMI optimism — the risk of excessive confidence causing poor risk management. "Everyone's gonna make it" mentality can lead to insufficient hedging, overleveraging, or ignoring red flags in new protocols.

Wallet

#
Software or hardware that stores private keys and provides an interface for signing transactions and interacting with a blockchain. On TRON: TronLink (hot wallet extension/app) or Ledger hardware wallet (cold). The wallet itself does not store tokens — tokens exist on-chain; the wallet holds the key to access them.

Wallet Drainer

#
Malicious smart contract code that, when signed by a victim, transfers all approved tokens or TRX from the victim's wallet to the attacker. Distributed through phishing sites posing as legitimate DApp frontends. Prevented by: only connecting wallets to verified frontends and carefully reading transaction details before signing.

WalletConnect

#
An open protocol enabling DApps to communicate with mobile wallets via a QR code or deep link. Relevant for TRON DApps that support WalletConnect-compatible wallets in addition to TronLink.

Wash Trading

#
The practice of simultaneously buying and selling the same asset to generate artificial trading volume. Used to inflate reported volume figures on DEXes and NFT marketplaces. On-chain analysis can detect wash trading through circular transaction patterns.

Watch Tower

#
A service that monitors on-chain state on behalf of an absent user and acts when needed — for example, submitting a fraud proof before a dispute window closes, or triggering a liquidation. Critical infrastructure for payment channels and rollups.

Watch-Only Wallet

#
A wallet configured with only a public key or address (no private key) that can monitor balances and transactions without being able to sign anything. Used by accounting systems, portfolio trackers, and security-conscious users who keep signing keys airgapped.

Weak Hands

#
Slang for investors who sell quickly at the first sign of price decline or negative news. Often used critically, though managing downside risk is genuinely rational behavior. See also: paper hands.

Web2

#
The current internet paradigm characterized by centralized platforms (Facebook, Google, Twitter) controlling user data, content, and monetization. Blockchain proponents argue Web3 (decentralized) will replace Web2's centralized model.

Web3

#
A broad term for the vision of a decentralized internet built on blockchain networks, where users own their data, identities, and assets rather than relying on centralized platforms. Includes DeFi, NFTs, DAOs, and decentralized identity systems.

Web3 Wallet

#
A browser extension or mobile application enabling users to interact with Web3 applications. TronLink is the leading Web3 wallet on TRON. Web3 wallets inject a JavaScript API into web pages (window.tronWeb) that DApps use to request transaction signing.

Weighted Average

#
A calculation where each value is multiplied by a weight reflecting its relative importance. TWAP is a time-weighted average price; some index protocols use market-cap weighted averages. Relevant for understanding how aggregate metrics in TRON analytics are calculated.

Wen

#
Crypto slang shortening of "when." "Wen moon?" = When will the price rise? "Wen mainnet?" = When will the product launch? Used ironically to mock impatient community members who ask for release dates constantly.

Whale

#
A participant with a very large token holding whose transactions can materially move market prices. Whale activity in TRON staking (large SR votes) or SunSwap pools (large trades or LP withdrawals) is publicly visible on TRONSCAN.

White Hat

#
An ethical security researcher who identifies and responsibly discloses vulnerabilities. White hat hackers protect DeFi protocols by finding bugs before black hat attackers do. Bug bounty programs are designed to attract white hat activity.

Whitelist

#
A list of approved addresses, contracts, or tokens permitted to interact with a restricted system. Opposite of a blacklist. Used in access-controlled contracts to restrict sensitive operations to authorized callers.

Whitelist Exploit

#
An attack where a malicious address is incorrectly added to a protocol's allowlist, granting unauthorized privileges. Requires compromising the access control mechanism that manages the whitelist.

Whitepaper

#
A technical document published by a blockchain project describing the protocol's design, problem statement, technology, tokenomics, and roadmap. TRON's original whitepaper defined the foundational architecture and DPoS consensus model.

Whitepaper Review

#
Reading a project's technical whitepaper before investing or participating. A core component of DYOR. Red flags in whitepapers include: missing technical details, unrealistic claims, team anonymity, and no token utility beyond speculation.

WIF (Wallet Import Format)

#
A Base58Check encoding of a private key, making it easier to import into wallets. TRON private keys can be exported in WIF for backup and import into compatible wallets. Keep WIF keys as secure as the raw private key — they are equivalent.

Window Function

#
In some DeFi protocols, a time window during which specific actions can be taken (e.g., a redemption window, a governance voting window). Relevant for protocols with timelocked operations or epoch-based reward distributions.
#
The first decentralized oracle network natively built on the TRON blockchain. It provides highly reliable, tamper-proof data feeds, including Price Feeds, Verifiable Random Function (VRF), and AnyAPI services, to TVM smart contracts. It is the native oracle for the TRON ecosystem.

Withdraw Function

#
The smart contract function allowing users to remove their deposited assets from a protocol. Should always be available even when other functions are paused. A protocol that blocks withdrawals is a critical security concern.

Withdrawal

#
The explicit on-chain action of moving unlocked TRX from the "withdrawable" state back into the available balance, after completing the 14-day unfreeze waiting period. Withdrawal is a separate transaction from unfreezing on TRON Stake 2.0.

Withdrawal Queue

#
A mechanism in some DeFi protocols where withdrawal requests are queued and processed in order, preventing simultaneous mass withdrawals from depleting liquidity. Relevant if a lending protocol implements queue-based redemptions under stress conditions.

Working Capital

#
The liquid assets available for day-to-day operations. In DeFi protocol context, working capital refers to the portion of treasury or deposits available for lending, covering redemptions, or providing liquidity — i.e., assets not locked in long-term positions.

Working Set

#
In computer science, the memory actively used by a process. In smart contract optimization, minimizing the "working set" of storage reads/writes per transaction reduces Energy costs significantly.

Wrapped Token

#
A token issued on one blockchain that represents an asset from another blockchain, maintained 1:1 through a custodial or smart contract backing mechanism. Examples: WBTC (TRC-20 Bitcoin on TRON), bridged ETH (TRC-20 ETH on TRON). WTRX is TRX wrapped as a TRC-20.

Write Function

#
A smart contract function that modifies state, requiring an on-chain transaction. Write functions consume Energy and/or Bandwidth. Contrasts with read (view/pure) functions that query state without a transaction.

WTRX (Wrapped TRX)

#
A TRC-20 token pegged 1:1 to TRX, enabling TRX to participate in smart contract systems that require TRC-20 compatibility (AMM pools, lending protocols). Minted by depositing TRX into the WTRX contract; burned by withdrawing.

x*y=k

#
The constant-product AMM formula. See Constant Product AMM. The fundamental equation governing SunSwap V2 liquidity pools: the product of the two reserve quantities must remain constant after any trade (excluding fees).

X-Risk (Existential Risk)

#
A risk severe enough to permanently impair or destroy a protocol. Examples: governance takeover, critical smart contract exploit, regulatory ban, or oracle failure leading to total insolvency. Risk-aware DeFi participants maintain X-risk awareness when sizing positions.

x402

#
An open-source payment protocol leveraging the HTTP 402 "Payment Required" status code, enabling autonomous AI agents to make instant machine-to-machine micropayments. Integrated into TRON's B.AI infrastructure in early 2026 to facilitate real-time settlement for AI services.

XCM (Cross-Consensus Messaging)

#
Polkadot's cross-chain communication format. Referenced here as context: different ecosystems use different cross-chain standards (XCM for Polkadot, IBC for Cosmos, bridges for TRON). TRON's cross-chain interoperability relies on bridge protocols rather than a standardized messaging format.

XDEFI

#
A multi-chain DeFi wallet with TRON support. Referenced here as an example of multi-chain wallets that support TRON alongside other L1 networks in a single interface.

XML

#
Extensible Markup Language. Mentioned here as context: TRON's on-chain data is accessed via JSON (API responses, event logs) rather than XML. The TRONSCAN API returns all data in JSON format.

XOR (Exclusive OR)

#
A bitwise operation where the output is 1 if exactly one of two inputs is 1. Used in cryptographic functions, Merkle tree computations, and XOR-based secret sharing schemes. Fundamental building block in hashing and encryption algorithms underlying TRON's security primitives.

xPub (Extended Public Key)

#
In HD wallet derivation (BIP-32), the extended public key allows deriving all child public keys (and therefore addresses) in a hierarchy without exposing any private keys. Used by watch-only wallets and accounting systems to monitor addresses without signing capability.

XRP

#
The native token of the XRP Ledger (Ripple). Mentioned here for context: XRP, TRX, and USDT on TRON compete in the cross-border payment and settlement space. XRP Ledger is permissioned for validators; TRON uses DPoS with elected SRs.

xToken

#
A receipt token representing staked or deposited assets in a DeFi protocol. The "x" prefix (xSUSHI, xJST) typically indicates the token earns yield automatically as the protocol generates fees. Not a formal standard, but a common naming convention.

Year-over-Year (YoY)

#
A comparison of a metric to the same metric from 12 months prior. Used in blockchain analytics to assess protocol growth: YoY TVL growth, user growth, and transaction volume growth indicate ecosystem health trajectory.

Yellow Paper

#
A formal, mathematically rigorous specification of a blockchain protocol. Ethereum's yellow paper defines the EVM specification precisely. Relevant as a reference when assessing TVM compatibility — the TVM documentation maps against the yellow paper for known differences.

Yield

#
The return earned on a capital position over a period of time. In DeFi, yield sources include: liquidity provider trading fees, lending interest, staking rewards, and liquidity mining token distributions.

Yield Aggregator

#
A protocol that automatically routes user deposits across multiple yield sources to maximize returns. May auto-compound rewards (reinvesting earned tokens back into the position). Common on Ethereum; less developed on TRON currently.

Yield Bearing Stablecoin

#
A stablecoin that automatically accrues yield for its holder without requiring staking or locking. stUSdt is the leading yield-bearing stablecoin on TRON — it maintains a USD peg while passing through RWA yield to holders.

Yield Curve

#
In traditional finance, the relationship between interest rates and loan duration. In DeFi, an on-chain yield curve emerges from different rates for different maturity lending pools or fixed-rate instruments. Relevant as TRON-based fixed-rate lending products emerge.

Yield Farming

#
The practice of actively moving capital between DeFi protocols to maximize yield, often by chasing liquidity mining incentives. Involves risks including smart contract exploits, impermanent loss, and the depreciation of mined governance tokens.

Yield Optimization

#
Strategies and protocols designed to maximize the return on deployed capital, typically by automatically routing between the highest-yielding opportunities. More sophisticated than simple staking — includes liquidity provision, lending, and compounding.

Yield Source

#
The underlying mechanism generating returns in a DeFi strategy. Common TRON yield sources: (1) TRX staking rewards, (2) SunSwap LP trading fees, (3) JustLend supply interest, (4) liquidity mining token rewards, (5) stUSdt RWA yield.

Yield Spread

#
The difference in yield between two comparable investments. Example: the spread between JustLend USDT supply APY and traditional savings account rates. Higher yield spreads attract capital from traditional finance into DeFi.

Yield Strip

#
The separation of a yield-bearing asset into two tradeable components: a zero-coupon bond (representing principal) and yield tokens (representing future interest). An advanced fixed-income DeFi primitive. Experimental implementations exist; not yet mainstream on TRON.

Yield Token

#
A token representing the right to future yield payments, separated from the principal. Some DeFi protocols split deposited assets into principal tokens (redeemable for the principal) and yield tokens (redeemable for accumulated interest). Enables yield trading as an independent financial primitive.

Yield-Bearing Token

#
A token that accrues value over time by representing a claim on an underlying asset plus accumulated yield. Examples: stUSdt (TRON), jToken (JustLend supply position). As interest accrues, the token's redemption value increases relative to the underlying, even if the token's market price remains stable.

YOLO

#
"You Only Live Once" — crypto slang for taking excessive risk with high conviction, regardless of the probability of loss. Antithetical to proper risk management. Used self-deprecatingly by traders who made highly speculative bets.

Zero Address

#
On TRON, the address T9yD14Nj9j7xAB4dbGeiX9h8unkKHxuWwb (Base58Check of the all-zeros address). Tokens sent to the zero address are permanently inaccessible and effectively burned. Used for token burn mechanisms and contract ownership renouncement.

Zero Slippage

#
A trade condition where the executed price exactly matches the quoted price, with no price impact from the trade itself. Achievable only with very deep liquidity relative to trade size, or when trading between perfectly pegged assets (e.g., USDT to USDC in a stablecoin pool).

Zero-Balance Account

#
A TRON address with zero TRX balance. Zero-balance accounts that have been previously activated remain on-chain permanently; their transaction history is accessible on TRONSCAN. Inactive accounts with zero balance still exist as on-chain records.

Zero-Day Vulnerability

#
A security flaw that is unknown to the software's developers and has no patch available. A zero-day exploit in a TRON smart contract or node software could be used to drain funds or destabilize the network before it is discovered and fixed.

Zero-Fee

#
Transactions consuming only free daily Bandwidth (TRX transfers when the daily 600 Bandwidth is sufficient) effectively cost nothing. TRON's free Bandwidth allocation makes low-frequency TRX transfers truly zero-fee for users with no staked resources.

Zero-Knowledge Proof (ZK Proof)

#
A cryptographic technique allowing one party to prove knowledge of a secret (or the truth of a statement) without revealing the secret itself. Used in privacy protocols and Layer 2 scaling solutions (ZK rollups). Not yet widely deployed on TRON but relevant as the ecosystem evolves.

Zero-Sum Game

#
A situation where one participant's gain is exactly offset by another's loss. Trading on an AMM is approximately zero-sum (minus fees): the LP's gain is the trader's loss. DeFi yield generation is not zero-sum — it creates new value through interest and fees.

Zero-Trust Security

#
A security model where no entity (user, device, or service) is trusted by default, even inside the network perimeter. Applied to DeFi: never trust a contract's claimed functionality — always verify the source code, audit status, and on-chain behavior independently.

ZK Rollup

#
A Layer 2 scaling solution that bundles many transactions off-chain and posts only a validity proof (ZK-SNARK or ZK-STARK) to L1. The proof cryptographically guarantees correctness without revealing individual transaction details. Higher security than Optimistic Rollups but more computationally intensive to generate.

ZK-SNARK (Zero-Knowledge Succinct Non-Interactive Argument of Knowledge)

#
A compact, fast-to-verify ZK proof requiring a trusted setup ceremony. Used in Zcash, some rollups, and emerging privacy applications. "Succinct" means the proof is small regardless of the computation being proven.

ZK-STARK (Zero-Knowledge Scalable Transparent Argument of Knowledge)

#
A ZK proof system requiring no trusted setup, providing quantum-resistant security. Proofs are larger than SNARKs but verification is faster and trustlessness is stronger. Used by StarkWare and other scaling solutions.

zkEVM

#
A Zero-Knowledge proof-based EVM-compatible virtual machine enabling privacy and/or scalability. Scroll, Polygon zkEVM, and zkSync are zkEVM implementations on Ethereum. Relevant to TRON as a future scalability direction; the TVM may evolve to incorporate ZK proving capabilities.

zkTRON

#
A hypothetical or emerging concept of a zero-knowledge proof layer or ZK-based protocol built on or alongside TRON. The broader DeFi ecosystem is converging on ZK proofs for privacy and scaling; TRON's future protocol roadmap may incorporate ZK-based capabilities.

Zombie Chain

#
Informal term for a blockchain that is technically operational but has no active users, developers, or economic activity. Used as a cautionary comparison — projects must continuously attract liquidity and usage to avoid becoming zombie chains.

Zone of Liquidation

#
The price range at which a specific borrowing position becomes eligible for liquidation. Determined by collateral type, LTV, and liquidation threshold. Monitoring your zone of liquidation on JustLend ensures positions remain healthy during market volatility.

Zone of Support/Resistance

#
In technical analysis, a price range (rather than a single level) where buying or selling pressure is concentrated. Traders use support/resistance zones for TRX position management and entry/exit timing.