Modelo de Programación

Transaction Simulation

The broader developer workflow of dry-running a Solana transaction before broadcast to inspect logs, catch runtime failures, estimate compute usage, and verify account assumptions. Transaction simulation can happen through the simulateTransaction RPC method, preflight checks inside sendTransaction, or specialized bundle and bot pipelines that repeatedly simulate against fresh state before deciding to submit.

IDtransaction-simulation

Lectura rápida

Empieza por la explicación más corta y útil antes de profundizar.

The broader developer workflow of dry-running a Solana transaction before broadcast to inspect logs, catch runtime failures, estimate compute usage, and verify account assumptions. Transaction simulation can happen through the simulateTransaction RPC method, preflight checks inside sendTransaction, or specialized bundle and bot pipelines that repeatedly simulate against fresh state before deciding to submit.

Modelo mental

Usa primero la analogía corta para razonar mejor sobre el término cuando aparezca en código, docs o prompts.

Piensa en esto como una de las piezas centrales que tu programa lee, escribe o invoca durante la ejecución.

Contexto técnico

Ubica el término dentro de la capa de Solana en la que vive para razonar mejor sobre él.

Accounts, instrucciones, PDAs, transacciones y flujo de ejecución.

Por qué le importa a un builder

Convierte el término de vocabulario en algo operacional para producto e ingeniería.

Este término desbloquea conceptos adyacentes rápido, así que funciona mejor cuando lo tratas como un punto de conexión y no como una definición aislada.

Handoff para IA

Handoff para IA

Usa este bloque compacto cuando quieras dar contexto sólido a un agente o asistente sin volcar toda la página.

Transaction Simulation (transaction-simulation)
Categoría: Modelo de Programación
Definición: The broader developer workflow of dry-running a Solana transaction before broadcast to inspect logs, catch runtime failures, estimate compute usage, and verify account assumptions. Transaction simulation can happen through the simulateTransaction RPC method, preflight checks inside sendTransaction, or specialized bundle and bot pipelines that repeatedly simulate against fresh state before deciding to submit.
Relacionados: Simulate Transaction, Preflight Check, Bundle Simulation
Glossary Copilot

Haz preguntas de Solana con contexto aterrizado sin salir del glosario.

Usa contexto del glosario, relaciones entre términos, modelos mentales y builder paths para recibir respuestas estructuradas en vez de output genérico.

Abrir workspace completa del Copilot
Explicar este código

Opcional: pega código Anchor, Solana o Rust para que el Copilot mapee primitivas de vuelta al glosario.

Haz una pregunta aterrizada en el glosario

Haz una pregunta aterrizada en el glosario

El Copilot responderá usando el término actual, conceptos relacionados, modelos mentales y el grafo alrededor del glosario.

Grafo conceptual

Ve el término como parte de una red, no como una definición aislada.

Estas ramas muestran qué conceptos toca este término directamente y qué existe una capa más allá de ellos.

Rama

Simulate Transaction

The simulateTransaction RPC method that dry-runs a transaction against a specified bank state without submitting it to the network or consuming fees. Simulation returns the execution result including logs, compute units consumed, return data, and any error. Developers use simulation to estimate CU usage, debug program errors, and verify transaction correctness before sending. Simulation does not require valid signatures.

Rama

Preflight Check

An RPC-level simulation that runs a transaction against the current bank state before forwarding it to the leader for actual execution. Preflight checks catch common errors (insufficient funds, invalid blockhash, CU overrun, program errors) before the transaction is submitted to the cluster. Preflight can be skipped via the skipPreflight option in sendTransaction, which is sometimes used when the simulation state lags behind the leader's state.

Rama

Bundle Simulation

The process of executing a Jito bundle against the current chain state in a sandboxed environment to verify that all transactions in the bundle succeed and produce the expected outcome before committing real tips and submitting to the Block Engine. Simulation catches issues like stale state, insufficient balances, or failed arbitrage conditions, preventing searchers from paying tips for bundles that would fail on-chain. Jito provides simulateBundle API endpoints for this purpose.

Siguientes conceptos para explorar

Mantén la cadena de aprendizaje en movimiento en lugar de parar en una sola definición.

Estos son los siguientes conceptos que vale la pena abrir si quieres que este término tenga más sentido dentro de un workflow real de Solana.

Modelo de Programación

Simulate Transaction

The simulateTransaction RPC method that dry-runs a transaction against a specified bank state without submitting it to the network or consuming fees. Simulation returns the execution result including logs, compute units consumed, return data, and any error. Developers use simulation to estimate CU usage, debug program errors, and verify transaction correctness before sending. Simulation does not require valid signatures.

Modelo de Programación

Preflight Check

An RPC-level simulation that runs a transaction against the current bank state before forwarding it to the leader for actual execution. Preflight checks catch common errors (insufficient funds, invalid blockhash, CU overrun, program errors) before the transaction is submitted to the cluster. Preflight can be skipped via the skipPreflight option in sendTransaction, which is sometimes used when the simulation state lags behind the leader's state.

Red

Bundle Simulation

The process of executing a Jito bundle against the current chain state in a sandboxed environment to verify that all transactions in the bundle succeed and produce the expected outcome before committing real tips and submitting to the Block Engine. Simulation catches issues like stale state, insufficient balances, or failed arbitrage conditions, preventing searchers from paying tips for bundles that would fail on-chain. Jito provides simulateBundle API endpoints for this purpose.

Modelo de Programación

Transaction Size Limit

The maximum serialized size of a Solana transaction: 1,232 bytes, matching the IPv6 minimum MTU to ensure single-packet transmission. This limit constrains the number of accounts, instructions, and data per transaction. Address lookup tables (v0 transactions) help fit more accounts within this limit.

Comúnmente confundido con

Términos cercanos en vocabulario, acrónimo o vecindad conceptual.

Estas entradas son fáciles de mezclar cuando lees rápido, haces prompting a un LLM o estás entrando en una nueva capa de Solana.

Modelo de Programacióntransaction-id

Transaction ID

The first signature in a transaction, which uniquely identifies it on the network. Since each transaction has a unique combination of signers and a recent blockhash, the first signer's Ed25519 signature over the transaction message serves as a globally unique identifier. Transaction IDs are displayed as Base58-encoded 64-byte strings and used for lookups via getTransaction and getSignatureStatuses.

AliasTXID
Modelo de Programacióntransaction-mortality

Transaction Mortality

The limited lifespan of a Solana transaction determined by its referenced blockhash. A transaction's blockhash must correspond to a block within the last 150 slots (~60-90 seconds) or the transaction is rejected as expired. This mechanism prevents replay attacks and bounds the time validators must track transaction deduplication. Durable nonces bypass mortality for use cases requiring long-lived transactions.

Modelo de Programacióntransaction-size

Transaction Size Limit

The maximum serialized size of a Solana transaction: 1,232 bytes, matching the IPv6 minimum MTU to ensure single-packet transmission. This limit constrains the number of accounts, instructions, and data per transaction. Address lookup tables (v0 transactions) help fit more accounts within this limit.

Términos relacionados

Sigue los conceptos que realmente le dan contexto a este término.

Las entradas del glosario se vuelven útiles cuando están conectadas. Estos enlaces son el camino más corto hacia ideas adyacentes.

Modelo de Programaciónsimulate-transaction

Simulate Transaction

The simulateTransaction RPC method that dry-runs a transaction against a specified bank state without submitting it to the network or consuming fees. Simulation returns the execution result including logs, compute units consumed, return data, and any error. Developers use simulation to estimate CU usage, debug program errors, and verify transaction correctness before sending. Simulation does not require valid signatures.

Modelo de Programaciónpreflight-check

Preflight Check

An RPC-level simulation that runs a transaction against the current bank state before forwarding it to the leader for actual execution. Preflight checks catch common errors (insufficient funds, invalid blockhash, CU overrun, program errors) before the transaction is submitted to the cluster. Preflight can be skipped via the skipPreflight option in sendTransaction, which is sometimes used when the simulation state lags behind the leader's state.

Redbundle-simulation

Bundle Simulation

The process of executing a Jito bundle against the current chain state in a sandboxed environment to verify that all transactions in the bundle succeed and produce the expected outcome before committing real tips and submitting to the Block Engine. Simulation catches issues like stale state, insufficient balances, or failed arbitrage conditions, preventing searchers from paying tips for bundles that would fail on-chain. Jito provides simulateBundle API endpoints for this purpose.

Más en la categoría

Quédate en la misma capa y sigue construyendo contexto.

Estas entradas viven junto al término actual y ayudan a que la página se sienta parte de un grafo de conocimiento más amplio en lugar de un callejón sin salida.

Modelo de Programación

Cuenta

The fundamental data storage unit on Solana. Every piece of state is stored in an account identified by a 32-byte public key. Accounts hold a lamport balance, an owner program, a data byte array (up to 10MB), and an executable flag. Only the owning program can modify an account's data, but anyone can credit lamports to it.

Modelo de Programación

Programa

Executable code deployed on-chain, equivalent to a smart contract on other blockchains. Programs are stateless—they store no data themselves but read/write data in separate accounts they own. Programs are compiled to SBF bytecode and loaded via the BPF Loader. Every program has a unique Program ID (its account's public key).

Modelo de Programación

Instrucción

A single operation within a transaction that invokes a program. An instruction specifies: (1) the program ID to call, (2) an array of account metas (pubkey, is_signer, is_writable), and (3) an opaque data byte array. Programs decode the instruction data to determine which operation to perform.

Modelo de Programación

Transacción

An atomic unit of execution containing one or more instructions, a recent blockhash, and one or more signatures. All instructions in a transaction execute sequentially and atomically—if any instruction fails, the entire transaction reverts. Transactions have a 1,232-byte size limit (matching IPv6 MTU) and a default 200,000 CU budget.