Enterprise

Polygon CDK Enterprise

Launch sovereign rollups with Polygon Chain Development Kit. Full-stack deployment in hours with built-in bridge, DEX integration, and enterprise-grade support.

Get Started — $499/month

Overview

Polygon CDK Enterprise is a complete toolkit for launching sovereign zkEVM rollups. Built on Polygon Labs' Chain Development Kit, it provides everything you need to deploy a production-ready rollup in hours.

Your rollup gets EVM compatibility, built-in bridging to Ethereum and Polygon, integrated DEX infrastructure, and full technical support. No need to build sequencers, provers, or bridge infrastructure from scratch.

Key Features

Quick Start

Bash
# Install the CDK CLI
npm install -g @gitdigital/cdk-cli

# Initialize your rollup
cdk init my-rollup --template zkevm

# Deploy to production
cdk deploy --network polygon-mainnet \
  --bridge true \
  --dex true \
  --gas-token MYTKN

# Your rollup is live! Bridge address:
0x742d35Cc6634C0532925a3b844Bc9e7595f...

API Reference

POST /api/v1/cdk/deploy

Deploy a new sovereign rollup instance.

{
  "name": "My Rollup",
  "chain_id": 12345,
  "bridge": true,
  "dex": true,
  "gas_token": "ETH"
}
POST /api/v1/cdk/bridge

Create a cross-chain bridge transaction.

{
  "source_chain": "ethereum",
  "target_chain": "my-rollup",
  "token": "0x...",
  "amount": "1000000000000000000"
}
GET /api/v1/cdk/metrics

Get real-time rollup metrics and health status.

{
  " TPS": 234,
  "total_transactions": 1234567,
  "block_time": "2s",
  "l1_finality": "15m"
}

Changelog

June 20, 2024
New zkEVM v2.0 Support

Updated to Polygon zkEVM v2.0 with improved proving times and reduced gas costs. Average transaction now costs 50% less.

June 5, 2024
Improved DEX integration time reduced

DEX integration now completes in under 30 minutes. Automatic liquidity seeding with configurable initial pools.

May 22, 2024
Fixed Bridge withdrawal delays

Resolved an issue causing delayed withdrawals on Polygon mainnet during high congestion periods.

Created by MiniMax Agent
×