RISE BLUEPRINT

Documentation

Everything you need to build on RISE — from core architecture to integration guides.

What is RISE?

RISE is built for financial applications, native orderbooks via MarketCore, shared liquidity across apps, and millisecond speed. Every smart contract can interact with the orderbook in a single transaction. This is a blockchain designed for markets, not retrofitted for them.

5 Ggas/s
Compute capacity
50k TPS
Peak throughput
1 ms
Latency
RISE visual

Quick Code Example

orderbook-demo.sol
pragma solidity ^0.8.0;

import "@risechains/orderbook/IOnebook.sol";

contract MarketMaker {
    IOnebook public orderbook;

    constructor(address _orderbook) {
        orderbook = IOnebook(_orderbook);
    }

    function placeBid(
        uint256 marketId,
        uint256 price,
        uint256 size
    ) external {
        require(price > 0, "Invalid price");
        orderbook.placeOrder(
            marketId,
            0, // side: bid
            price,
            size
        );
    }

    function cancelOrder(
        uint256 orderId
    ) external {
        orderbook.cancelOrder(orderId);
    }
}