CurrentReceipts

Storage Re-added Plain v210 → v323, v326 → current

Transaction receipts for the current block .

Explore chain
Queried by: developersanalytics

The Big Picture

Receipts contain execution results, logs (events), and gas consumption for each transaction.

Use Cases

  • Get transaction receipts
  • Access logs
  • Verify execution status

From Chain Metadata

The current Ethereum receipts.

Purpose & Usage

Purpose

Stores execution receipts including logs and gas used.

Common Query Patterns

  • Single value query for all receipts

Stored Value

value (Vec<ReceiptV4>)

Relationships

Modified By

Related Events

Code Examples

import { ApiPromise, WsProvider } from "@polkadot/api";
import { stringCamelCase } from "@polkadot/util";

const provider = new WsProvider("wss://entrypoint-finney.opentensor.ai:443");
const api = await ApiPromise.create({ provider });

// Query CurrentReceipts storage (no keys - plain value)
const result = await api.query
  [stringCamelCase("Ethereum")]
  [stringCamelCase("CurrentReceipts")]();
console.log("CurrentReceipts:", result.toHuman());

Version History

v210 block 4,345,556 Added
v326 block 6,608,228 Re-added Current

Runtime Info

Pallet
Ethereum
Storage Kind
Plain
First Version
v210
Current Version
v393