Module: SwarmSDK::Defaults::Storage

Defined in:
lib/swarm_sdk/defaults.rb

Overview

Storage limits for persistent data

Constant Summary collapse

ENTRY_SIZE_BYTES =

Maximum size for single scratchpad entry (bytes)

3MB per entry prevents individual entries from consuming excessive storage while allowing substantial content (code, large texts).

3_000_000
TOTAL_SIZE_BYTES =

Maximum total scratchpad storage (bytes)

100GB total storage provides ample room for extensive projects while preventing unbounded growth.

100_000_000_000