Oracle (blockchain)
Related service Blockchain & smart contracts
DEFINITION
A service that feeds real-world data — a price, a match result, the weather — into a smart contract, which otherwise can't see outside its own chain. A bad oracle is a classic exploit vector, so we treat its trust model as part of the audit.
- Smart contract→
Code running on a blockchain (Solidity, Rust) that auto-executes an agreement. A single bug can cost nine figures · why we audit, fuzz, and threat-model before deploy.
- Solidity→
The primary language for EVM-compatible blockchains (Ethereum, Arbitrum, Base). Pascal-like syntax, low-level memory handling, TS-compatible toolchain (Foundry, Hardhat).
- EVM (Ethereum Virtual Machine)→
The shared execution environment across Ethereum and compatible chains (Arbitrum, Base, Polygon, Optimism). Writing a contract here means it runs on all of them.
- L2 (Layer 2)→
A secondary network (Arbitrum, Base, Optimism, zkSync) settling on Ethereum (L1) but much faster and cheaper. Rollups bring 10–100× lower gas.
- Invariant test→
A test that verifies a universal rule ('sum of user balances always equals total supply'). Feeds the contract random transaction sequences; the rule must hold in every state.
- Fuzz test→
Running millions of pseudo-random inputs through a function to find a combination that breaks it. Echidna or Foundry fuzz campaigns.
- 0130 Apr 2026Smart contract audit pricing in 2026 · what €4k, €15k and €60k actually buy you→
- 0229 Apr 2026NIS2 readiness for EU SaaS · the 90-day playbook→
- 0326 Apr 2026OWASP LLM Top 10 v2 · what changed and what to ship→
- 0426 Apr 2026The CSP we ship · with notes on why each directive is there→
- 0522 Apr 2026Signed-firmware OTA pipeline · the 2026 default we ship→
- 0622 Apr 2026Agentic AI · the safe tool-use pattern we ship by default→
- 0722 Apr 2026Solana smart contract gotchas · what bites every Anchor dev in 2026→
- 0822 Apr 2026Multi-tenant SaaS on Postgres · the RLS-first playbook→