JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 34
  • Score
    100M100P100Q51356F
  • License AGPL-3.0

Storage protocol built on ethereum using datapoint archetecture and a registry contract for handling royalties.

Package Exports

  • @tw3/esp
  • @tw3/esp/contracts/DataPointRegistry.sol
  • @tw3/esp/contracts/DataPointStorage.sol
  • @tw3/esp/contracts/interfaces/IDataPointRegistry.sol
  • @tw3/esp/contracts/interfaces/IDataPointStorage.sol
  • @tw3/esp/contracts/interfaces/IOwnable.sol
  • @tw3/esp/contracts/types/ESPTypes.sol
  • @tw3/esp/deployments

Readme

Ethereum Storage Protocol (ESP)

A decentralized storage protocol built on Ethereum using content-addressed data points with an economic incentive layer.

Overview

The Ethereum Storage Protocol provides immutable, content-addressed storage with built-in economic incentives for data publishers. The protocol consists of two main components:

  • DataPointStorage: Core storage layer providing immutable, collision-resistant data storage
  • DataPointRegistry: Economic layer managing royalties, publisher incentives, and access control

Features

  • 🔒 Immutable Storage: Content-addressed storage prevents data tampering
  • 💰 Economic Incentives: Publishers earn royalties when their data is accessed
  • Gas Optimized: 31.6% gas efficiency improvement over baseline
  • 🛡️ Security Hardened: Comprehensive reentrancy protection and access controls
  • 🔧 Modular Design: Upgradeable registry with persistent storage layer
  • 📊 Comprehensive Testing: 95/95 tests passing with full coverage
  • 🤖 AI-Ready: Includes LLM context file for AI-assisted development
  • 🔄 Interface Generation: Automatic Solidity interface generation with hardhat-build

Installation

# Public package
npm install ethereum-storage

# Organization scoped package
npm install @tw3/esp

Quick Start

Using the NPM Package

import { 
  DataPointRegistry__factory, 
  DataPointStorage__factory,
  espDeployments,
  getContractAddress,
  loadContract 
} from 'ethereum-storage';
// or from '@tw3/esp'

import { ethers } from 'ethers';

// Connect to deployed contracts
const provider = new ethers.JsonRpcProvider('YOUR_RPC_URL');
const signer = new ethers.Wallet('YOUR_PRIVATE_KEY', provider);

// Method 1: Get contract addresses by chainId
const chainId = 11155111; // Sepolia
const dpsAddress = getContractAddress(chainId, 'dps');
const dprAddress = getContractAddress(chainId, 'dpr');

// Connect to contracts manually
const dataPointStorage = DataPointStorage__factory.connect(dpsAddress, signer);
const dataPointRegistry = DataPointRegistry__factory.connect(dprAddress, signer);

// Method 2: Use loadContract helper (automatically connects)
const dataPointStorage2 = loadContract(chainId, 'dps', signer);
const dataPointRegistry2 = loadContract(chainId, 'dpr', signer);

// Store data with royalties
const data = ethers.toUtf8Bytes("Hello, ESP!");
const tx = await dataPointRegistry.registerDataPoint(data, signer.address);
await tx.wait();

Localhost Development

For local development and testing without testnet tokens, you can add your own localhost deployments:

# Deploy ESP contracts to your local network first
# (copy contracts to your project or create mock contracts)

# Add your deployment using npx
npx ethereum-storage add-localhost \
  --dps 0x5FbDB2315678afecb367f032d93F642f64180aa3 \
  --dpr 0xe7f1725E7734CE288F8367e1Bb143E90bb3F0512 \
  --owner 0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266 \
  --royalty 100000000000000

Then use localhost contracts in your code:

import { getContractAddress, loadContract } from 'ethereum-storage';

// Connect to your localhost deployment
const provider = new ethers.JsonRpcProvider('http://localhost:8545');
const dprContract = loadContract(31337, 'dpr', provider); // 31337 = localhost
const dpsContract = loadContract(31337, 'dps', provider);

For detailed localhost deployment management, see docs/localhost-deployments.md.

Available Exports

// Contract types and factories
import {
  DataPointRegistry,
  DataPointRegistry__factory,
  DataPointStorage,
  DataPointStorage__factory,
  IDataPointRegistry,
  IDataPointStorage
} from 'ethereum-storage';

// Contract ABIs
import {
  DataPointRegistryABI,
  DataPointStorageABI
} from 'ethereum-storage/contracts';

// Deployment information
import {
  espDeployments,
  getContractAddress,
  getDeploymentInfo,
  getSupportedChainIds,
  loadContract
} from 'ethereum-storage/deployments';

// TypeScript types
import type {
  ContractTransaction,
  BigNumberish,
  Overrides
} from 'ethereum-storage/types';

AI-Assisted Development

This package includes LLM_CONTEXT.md - a comprehensive context file that helps AI assistants provide accurate integration guidance. This innovative feature enables:

  • Better AI Help: AI assistants understand the package structure and usage patterns
  • Consistent Support: Standardized integration assistance across TW3 packages
  • Up-to-Date Context: AI context stays current with package updates
  • Faster Development: Reduced time spent explaining package details to AI tools

For AI Tools: Look for LLM_CONTEXT.md in TW3 packages to provide enhanced integration support.

Development Setup

# Install dependencies
npm install

# Build contracts and generate interfaces
npm run compile  # Uses hardhat-build plugin

# Run tests
npm test

# Deploy contracts
npx hardhat ignition deploy ./ignition/modules/ESPCore.ts

Architecture

User/DApp → DataPointRegistry → DataPointStorage
           (Economic Layer)    (Storage Layer)

API Reference

DataPointStorage

  • writeDataPoint(bytes data) - Store new data point
  • readDataPoint(bytes32 address) - Retrieve stored data
  • calculateAddress(bytes data) - Get storage address for data
  • dataPointSize(bytes32 address) - Get size of stored data

DataPointRegistry

  • registerDataPoint(bytes data, address publisher) - Register data with royalties
  • getDataPointRoyalty(bytes32 address) - Get royalty cost for access
  • collectRoyalties(uint256 amount, address to) - Withdraw earned royalties
  • updatePublisherAddress(bytes32 address, address newPublisher) - Change publisher

Deployed Networks

The ESP contracts are deployed on the following networks (identified by chainId):

Sepolia Testnet (chainId: 11155111)

  • DataPointStorage: 0xDA7A3A73d3bAf09AE79Bac612f03B4c0d51859dB
  • DataPointRegistry: 0xDA7A6cBEa6113fae8C55165e354bCab49b0923cE

Working with ChainIds

import { getSupportedChainIds, getContractAddress } from 'ethereum-storage';

// Get all supported chain IDs
const supportedChains = getSupportedChainIds();
console.log(supportedChains); // [11155111]

// Get contract address for specific chain
const sepoliaRegistry = getContractAddress(11155111, 'dpr');
const sepoliaStorage = getContractAddress(11155111, 'dps');

// Load contracts directly
const registry = loadContract(11155111, 'dpr', provider);
const storage = loadContract(11155111, 'dps', provider);

Common Chain IDs

  • Ethereum Mainnet: 1
  • Sepolia Testnet: 11155111
  • Polygon: 137
  • Hardhat/Localhost: 31337

Security Status

Production Ready - Comprehensive security audit completed
95/95 Tests Passing - Full test coverage achieved
Gas Optimized - Efficient deployment and operation
Economic Model Validated - Self-protecting incentive design

License

AGPL-3.0 - See LICENSE file for details