TECHNOLOGY

Bring Your JavaScript skills. We’ll Handle the Blockchain part

We are bringing real JavaScript to web3. Help us get it right.

TRILITECH

1,100 words, 6 minute read

Jstz Spotlight Min

You already know JavaScript— you’ve built web apps, deployed serverless functions, and worked with APIs.

Now imagine taking those skills and building apps that tap directly into the economic network and vibrant community of web3. All without learning a new language or leaving your tech stack comfort zone. Just pure JavaScript as you know it.

In a time of AI fakes, security breaches, and information wars, it becomes increasingly relevant to provide transparency, verifiability, censorship resistance, and decentralized security in everyday applications.

Blockchains offer these properties but have so far been challenging to build on because of the need to learn new languages and unfamiliar tooling.

This is why we are developing Jstz (pronounced “justice”). It’s a native JavaScript runtime running on Tezos Smart Rollup technology, which means you won’t have to worry about scalability or centralized actors having control.

Jstz removes the steep learning curve associated with blockchain development by letting you use the language, tools, and libraries you already know from Web2 — like standard JavaScript syntax and npm modules.

Developed for (and with) you! #

We’re building Jstz for developers like you – and right now we need your feedback.

Jstz is currently an experimental sandbox environment. It’s a playground where JavaScript developers can safely try out decentralized logic, test ideas, and interact with Tezos smart rollups using standard JavaScript and familiar tools.

As we move Jstz towards a production-ready solution, we want to be sure that it’s something JS developers actually love to use. You can help us with two simple steps:

  1. Try out Jstz (see below)

  2. Take our Developer Experience Survey. It only takes a few minutes, and you can help shape Jstz from the ground up.

Currently with Jstz, you can:

Getting started #

Here’s how to get up and running.

If you’re curious to explore more, we recommend these examples from the GitHub repo:

These give you a feel for smart functions, state handling, and JavaScript execution inside the Jstz environment.

Now let’s look into the technical setup.

Architecture and Key Features #

Jstz: CLI Tooling

The jstz command-line interface lets you initialize projects, deploy smart functions, manage storage, and interact with the runtime.

jstzd: The Heart of the Jstz Sandbox

To make development easy and self-contained, Jstz comes with a local orchestration daemon called jstzd. This background service automatically spins up and manages everything you need to run the Jstz runtime locally — including the Tezos Smart Rollup infrastructure.

Think of jstzd as the sandbox engine that brings all the moving parts together, so you can focus on building smart functions without worrying about manual configuration or dependencies.

When you run jstzd, it sets up and manages:

It handles communication with the Jstz node and Tezos Smart Rollup (octez) infrastructure — all automatically.

Accounts #

Jstz introduces a simple and flexible account system that supports two key types of accounts:

User Accounts (tz1…)

These are traditional accounts that hold tez (XTZ) and are used to initiate function calls, sign operations, and manage balances. Think of these as the developer or end-user identities.

⚠️ Important: Jstz does not yet support wallets, hardware devices, or remote signers — everything is managed locally, with wallet support planned as part of the upcoming roadmap.

Smart Function Accounts (KT1…)

These accounts are created automatically when a smart function is deployed. They store both tez and the immutable code of the smart function. These accounts are immutable — the function code and balance cannot be modified after deployment. However, they can hold and receive tez and be called by user accounts.

Asset bridge #

Jstz includes an experimental asset bridge that allows developers to simulate token transfers between Tezos Layer 1 addresses and Jstz Layer 2 accounts — all within a sandbox environment.

While this feature doesn’t move real assets on the Tezos testnet, it mimics how a future bridge could work and provides a valuable playground for developers to test asset-related logic.

Ready to Explore? #

Install Jstz, launch the sandbox, and build something useful, or just fun. We can’t wait to see what you create — and hear what you think!

👉 Don’t forget to take our Developer Experience Survey. Your feedback helps shape Jstz.

As a token of our gratitude, the first developers to complete the survey and provide their Tezos wallet address will receive an exclusive Jstz OG NFT.

Want to explore more or contribute to building Jstz? Here are some helpful resources to get you going:

Jstz GitHub Organization: github.com/jstz-dev