Turning Walrus storage into a liquid, tradeable asset for the first time.
Our intelligent algorithm automatically finds the cheapest way to buy storage by comparing marketplace deals against system prices in real-time. Save up to 50% instantly.
List your overprovisioned or unused storage on the marketplace and recoup your investment. Stop losing money on wasted capacity or deleted blobs.
Purchase storage by exact size and duration—not rigid system packages. Flexible splitting means you only pay for what you actually use. Zero waste, perfect allocation.
Build powerful applications with our TypeScript SDK. Access all Storewave features programmatically and create seamless Web3 storage experiences for your users.
Full TypeScript support with comprehensive type definitions
Simple API that works with any JavaScript framework
Detailed documentation with examples and guides
npm install storewave-sdk
// Import the SDK
import { WalStorageMarketplace }
from 'storewave-sdk';
// Initialize SDK for testnet
const sdk = new WalStorageMarketplace('testnet');
// Calculate storage reservation cost
const costData = await sdk.getReservationCost({
size: 1024, // File size
sizeUnit: 'bytes', // Size unit
durationInEpochs: 5 // Storage duration
});