AI Agent OSGuarded mainnet beta. .rama identity, smart wallets, sponsored gas, permissions and scheduling are available for controlled testing.Open Agent OS

For developers

Your EVM stack, ready to ship.

Deploy Solidity contracts and existing tooling to Ramestta with the familiar developer experience of Ethereum and Polygon.

Built for the full stack

From first contract to production operation.

Ramestta supports the tooling, network access and operational visibility teams need after deployment.
01

Tooling

Start with the stack you know.

Solidity contracts, common frameworks and familiar wallet flows reduce migration friction.
02

Runtime

Deploy into a responsive execution environment.

Application transactions settle on a network designed for immediate user feedback.
03

Economics

Make onchain interaction usable at scale.

RAMA coordinates fees and network participation without turning each interaction into a premium event.
AI Agent OS Guarded mainnet betaGive autonomous workflows a .rama identity, smart wallet, sponsored gas budget, permission boundary and scheduled execution path.

Protocol map for builders

Know where execution ends and coordination begins.

Contracts run in Bor's EVM execution environment. Heimdall manages validator coordination and checkpoints, while the Polygon checkpoint path carries the resulting commitment beyond the L3.
  1. 01 / execution

    Bor receives transactions

    The Geth-based execution client validates transactions, runs contracts and produces Bor blocks.

  2. 02 / coordination

    Heimdall defines the committee

    The consensus layer manages validator state, spans and the selected block producers.

  3. 03 / production

    Spans and sprints advance

    A span defines the producer set; sprints sequence which producer is expected to create blocks.

  4. 04 / commitment

    Checkpoint state is proposed

    A checkpoint represents a validated Bor block range and the Merkle root derived from it.

  5. 05 / settlement

    Polygon receives the checkpoint

    The commitment travels through the checkpoint path once the required validator agreement exists.

Agent-native tooling

Build controlled AI agent workflows onchain.

Agent OS combines a .rama identity, smart-contract wallet, sponsored gas, permissions, scheduling and encrypted messaging for guarded mainnet testing.

Open Agent OS quickstart

TypeScript, Python and MCP

Integrate Agent Kit capabilities into application code, Python automation or an MCP-compatible agent environment.

Permissioned execution

Use recipient, contract and spend boundaries with revocable session access instead of exposing a master wallet key.

Sponsored, scheduled work

Register narrowly scoped work with an execution budget, then retain an explicit pause and approval path for owners.

Rama Name Service: Use a .rama name as the readable identity layer for a product, wallet or controlled agent. Registration and record management remain in the live RNS app.

Open RNS

Guarded beta, pending external audit. Use test-sized allocations and human-defined limits.

Get Started in Minutes

Add Ramestta to your development environment

Mainnet Configuration

{
  "chainId": 1370,
  "chainName": "Ramestta Mainnet",
  "nativeCurrency": {
    "name": "RAMA",
    "symbol": "RAMA",
    "decimals": 18
  },
  "rpcUrls": [
    "https://blockchain.ramestta.com",
    "https://blockchain2.ramestta.com"
  ],
  "blockExplorerUrls": ["https://ramascan.com"],
  "networkType": "Layer-3",
  "blockTime": "~2 seconds",
  "consensusType": "Proof-of-Stake"
}
NEWv1.0.0 Released

Official Ramestta SDK

Build cross-chain applications with our official TypeScript/JavaScript SDK. Bridge assets between Polygon (L2) and Ramestta (L3) seamlessly.

Available Packages

PackageVersionDescriptionLink
@ramestta/sdk1.0.0Core SDKnpm
@ramestta/sdk-ethers1.0.3Ethers.js Pluginnpm
@ramestta/sdk-web31.0.0Web3.js Pluginnpm
@ramestta/sdk-react1.0.0React Hooks & Componentsnpm
@ramestta/contracts1.1.0Smart Contracts & ABIsnpm
@ramestta/staking-sdk1.0.1Staking SDKnpm
@ramestta/bridge-sdk1.0.1Bridge SDKnpm

Installation

npm install @ramestta/sdk @ramestta/sdk-ethers ethers
2 PackagesEthers.js SupportTypeScript Ready

Quick Start Example

import { POSClient, use } from "@ramestta/sdk";
import { Web3ClientPlugin } from "@ramestta/sdk-ethers";
import { ethers } from "ethers";

// Install the plugin
use(Web3ClientPlugin);

// Create providers
const polygonProvider = new ethers.providers.JsonRpcProvider("https://polygon-rpc.com");
const ramesttaProvider = new ethers.providers.JsonRpcProvider("https://blockchain.ramestta.com");

// Initialize
const posClient = new POSClient();
await posClient.init({
    network: "mainnet",
    version: "v1",
    parent: { provider: polygonSigner },   // L2 Polygon
    child: { provider: ramesttaSigner }    // L3 Ramestta
});

POSClient

Bridge assets between Polygon L2 and Ramestta L3

Ethers.js Plugin

Native ethers.js integration with Web3ClientPlugin

Network Constants

Pre-configured network settings and contracts

Full TypeScript

Complete type definitions for better DX

Quick Start Guide

Follow these steps to deploy your first contract

1

Add Network to MetaMask

Configure your wallet with Ramestta mainnet & testnet settings

2

Get Test Tokens

Use our faucet at testnet-faucet.ramascan.com to get free test RAMA

3

Deploy Contract

Use Remix, Hardhat, or Truffle to deploy your smart contracts

4

Interact & Test

Test your dApp and interact with deployed contracts

Compatible With

Use your favorite development tools without any changes

MetaMask

Available

Browser wallet integration

Remix

Available

Online Solidity IDE

Hardhat & Truffle

Available

Development frameworks

Web3.js / Ethers.js

Available

JavaScript libraries

WalletConnect

Available

Wallet connection protocol

OpenZeppelin

Available

Smart contract libraries

Coming Soon

Exciting developer tools and programs on the horizon

Dev Grant Program

Funding for promising projects

Dev Console

Streamlined contract deployment

Verified Contracts

Contract verification via Ramascan

Developer Resources

Everything you need to build on Ramestta

Documentation

Comprehensive guides and API references

Read Docs

Setup Guide

Step-by-step development environment setup

Setup Guide

NPM SDKs

Open-source SDKs and example projects

View NPM