Skip to content

Latest commit

Β 

History

History
46 lines (36 loc) Β· 918 Bytes

File metadata and controls

46 lines (36 loc) Β· 918 Bytes

enstate.rs

πŸ“Œ API Specification (OpenAPI)

The API specification is available at {your_site_here}/docs.

πŸš€ Getting Started

We believe software should be simple and containerized. Enstate provides you with a lightweight docker container that you can run anywhere.

🐳 Docker

docker run \
  -p 3000:3000 \
  -e REDIS_URL=redis://0.0.0.0:6379 \
  -e RPC_URL=https://rpc.ankr.com/eth \
  ghcr.io/v3xlabs/enstate:0.0.1

🐳 Docker Compose

version: "3.8"
services:
  enstate:
    image: ghcr.io/v3xlabs/enstate:0.0.1
    ports:
     - 3000:3000
    environment:
     - REDIS_URL=redis://redis:6379
     - RPC_URL=https://rpc.ankr.com/eth
    depends_on:
     - redis
  redis:
    image: redis:6.2.5-alpine
    ports:
      - 6379:6379

πŸ›£οΈ Roadmap

  • Dockerize
  • TTL Specification
  • Internal Batching
  • Batching endpoints