H-Script 1.0.0

Deploy
High-Tech High-Yield High-Scalable
Fintech In Seconds.

$ 0 processed
1 platforms
25+ gateways

Cabinet, deposits, payment gateways, partner network, news, FAQ, tickets and the admin panel work as a single backend for a financial project.

Deposit credited
+ 1.25 BTC
Operations processed
h-script.com
H-Script finance and operations screen
h-script.com
H-Script deposits screen
h-script.com
H-Script cabinet dashboard

Integrations and technologies

PHP 8.4
MySQL 8.4
Redis
Composer 2
Tailwind CSS 4
Twig 3
Docker
GitHub
Cloudflare
REST API

Financial operations core

Build products locally and scale globally. The platform handles the complexity of financial workflows.

Unified gateway integration

More than 25 built-in payment methods, automated blockchain transaction checks for USDT and BTC, and fiat acquiring integrations.

Stripe (Cards)
USDT (TRC20)

Partner network

A multi-level referral system with rewards based on deposits or profit.

Investment portfolios

Flexible accrual plans with variable rates, compounding and lock periods.

Detailed analytics

Monitor financial flows, investor returns and partner activity in real time.

0x241 / h-script

Open Source Foundation

Explore the project architecture, contribute to development, and leverage cutting-edge financial engineering.

$ git clone https://github.com/0x241/h-script.git
View on GitHub

Docker images

Instant deployment in containerized environments with full microservices support and resource isolation.

$ docker pull hscript/fpm

Module ecosystem

The platform includes the tools required for customer service and omnichannel notifications.

Built-in ticket system

Route requests between finance and technical teams with priorities, statuses and quick-reply templates.

Telegram bot

Clients can link Telegram to check balances and investments and receive instant notifications.

SMS and 2FA notifications

Two-factor authentication through SMS gateways for login and financial operation confirmation.

REST API

A documented Bearer-token API for integrating balances and business logic into external applications.

GET /api/v1/balance
// Response 200 OK
{
  "success": true,
  "data": {
    "wallets": [{
      "currency": {
        "id": 1,
        "gateway_id": "BW",
        "code": "USD",
        "decimals": 2
      },
      "available": 4500,
      "locked": 0,
      "outgoing": 0,
      "total": 4500
    }]
  },
  "error": null,
  "meta": { "version": "1.0" }
}
src/Cache/CatalogCache.php
class CatalogCache
{
    public function remember(
        string $catalog,
        string $variant,
        callable $callback
    ): mixed
    {
        $this->assertCatalog($catalog);
        $version = $this->version($catalog);
        $key = sprintf(
            'catalog:%s:v%d:%s',
            $catalog,
            $version,
            hash('sha256', $variant)
        );
        return $this->cache->get(
            $key,
            $callback,
            self::TTL[$catalog]
        );
    }
}

Clean architecture. Full control.

H-Script is an open CMS built around PSR-4 standards. You retain full control over application logic and can modify any module.

Object-oriented core

PHP 8.4 codebase with strict types, namespaces and dependency injection.

Twig template engine

The frontend is separated from the backend, so layouts can be changed without modifying PHP.