Secure. Swift.Seamless.

Grounded in principles, expounded in Distributed Ledger Technology, Dijets is a modular L0 framework for multichain networks

A highly scalable, interoperable, &secure network protocol for Web 3.0.

Cost Effective

Dijets Ecosystem is the most cost effective for any Web3 activity.

Learn more about /djtLearn more
Highly Scalable

Unprecedented scalability in execution, storage & consensus.

Learn more about /scalabilityLearn more
Composable

Create custom assets or blockchains in minutes using ECC Launcher.

Learn more about ternary-chainsLearn more
Lightweight

Dijets node can seamlessly run on commodity hardware like the Raspberry Pi.

Learn more about ternary-chainsLearn more
Modular

A modular, fault-tolerant & heterogenous network of sovereign yet interoperable chains.

Learn more about /scalabilityLearn more
Compatible

Dijets Utility Chain supports most of the commonly used development toolkits for Ethereum.

Learn more about /scalabilityLearn more
Security

Dijets safety thresholds are well-above the 51% standards of other networks.

Learn more about ternary-chainsLearn more
Decentralised

Millions of validators across the globe can participate in network as full block producers.

Learn more about /scalabilityLearn more

Join the community

Join us as we redefine the narrative, focusing on services and solutions that bring the profound advantages of blockchain to the forefront of everyday life. Dijets is not just an ecosystem; it's an invitation to experience blockchain's potential in its purest, most user-friendly form.

What can you do with Dijets?

Dijets is a growing ecosystem of dApps, services, ECCs & Method Arcs that bring the blockchain benefits to users, businesses & developers alike.

Create & Launch Blockchains

Demo DApp running an ECC Launcher instance.

dijets
Dijets Inc.
github iconECC-Launcher

Deploy Smart Contracts

Repo with example smart contracts.

dijets
Dijets Inc.

Mint & Launch NFTs

Mint NFTs or collectibles on Utility Chain.

dijets
Dijets Inc.

Create an ERC20 Token

Create an ERC20 standard token on Utility Chain.

dijets
Dijets Inc.
github iconMint ERC20 Tokens
vercel button

Build Virtual Worlds

Demo showcasing an instance of Virtualis.

dijets
Dijets Inc.
github iconVirtualis
vercel button

Tokenise real world assets (RWAs)

Tokenise RWAs at scale with ease.

dijets
Dijets Inc.
github iconDigital Assets
vercel button

Decentralised Fundraising

Secure, equitable & low-cost Decentralised fundraising.

dijets
Dijets Inc.
github iconDJT ICO Launcher
vercel button

Configure & Launch DAOs

Build decentralised autonomous organisations.

dijets
Dijets Inc.

Deploy Method ARCs

Decentralised LLMs providing data integrity & audit

dijets
Dijets Inc.

Dijets CLI

Dijets CLI is a developer-friendly interface and a command-line tool to seamlessly interact with Dijets Ecosystem.

ECC Engines v1.0.0

Dijets Node v2.0.4

$ dijets --version

dijets version 1.0.5

$ dijets --help

Usage:

dijets: [command]

Available Commands:

ECC ---- Create and deploy blockchains with ECC Engines

key ---- Create and manage testnet signing keys

network ---- Manage locally running Dijets test network

transaction ---- Sign and execute specific transactions

termynal

Dijets APIs

APIs exposed by Dijets Nodes allow Web 3.0 developers easy access to blockchain data.

curl -X POST --data '{
      "jsonrpc":"2.0",
      "id"     :1,
      "method" :"keystore.createUser",
      "params" :{
          "username":"myUsername",
          "password":"myPassword"
      }
  }' -H 'content-type:application/json;' 127.0.0.1:9650/ext/keystore
    
curl -X POST --data '{
      "jsonrpc": "2.0",
      "method": "avm.createAddress",
      "params": {
          "username": "myUsername",
          "password": "myPassword"
      },
      "id": 1
  }' -H 'content-type:application/json;' 127.0.0.1:9650/ext/bc/V
    
curl -X POST --data '{
      "jsonrpc":"2.0",
      "id"     :1,
      "method" :"avm.exportKey",
      "params" :{
          "username":"myUsername",
          "password":"myPassword",
          "address":"V-dijets16rm8hud6pnl0syzxcsul37nt7txcsr25dlpxzy"
      }
  }' -H 'content-type:application/json;' 127.0.0.1:9650/ext/bc/X
    
curl -X POST --data '{
      "jsonrpc":"2.0",
      "id"     : 1,
      "method" :"avm.getBalance",
      "params" :{
          "address":"V-dijets16rm8hud6pnl0syzxcsul37nt7txcsr25dlpxzy",
          "assetID": "U8iRqJoiJm8xZHAacmvYyZVwqQx6uDNtQeP3CQ6fcgQk3JqnK"
      }
    }' -H 'content-type:application/json;' 127.0.0.1:9650/ext/bc/V
    
curl -X POST --data '{
      "jsonrpc": "2.0",
      "method": "method.getBlockchainStatus",
      "params":{
          "blockchainID":"2fFZQibQXcd6LTE4rpBPBAkLVXFE91Kit8pgxaBG1mRnh5xqbb"
      },
      "id": 1
  }' -H 'content-type:application/json;' 127.0.0.1:9650/ext/bc/M
    
curl -X POST --data '{
      "jsonrpc": "2.0",
      "method": "method.getBlockchains",
      "params": {},
      "id": 1
  }' -H 'content-type:application/json;' 127.0.0.1:9650/ext/bc/M
    
curl -X POST --data '{
      "jsonrpc": "2.0",
      "method": "method.getBlockchains",
      "params": {},
      "id": 1
  }' -H 'content-type:application/json;' 127.0.0.1:9650/ext/bc/M
    
curl -X POST --data '{
      "jsonrpc":"2.0",
      "id"     : 1,
      "method" :"avm.createFixedCapAsset",
      "params" :{
          "name": "testAsset",
          "symbol":"TAS",
          "initialHolders": [
              {
                  "address": "V-dijets16rm8hud6pnl0syzxcsul37nt7txcsr25dlpxzy",
                  "amount": 1000
              },
              {
                  "address":"V-dijets16rm8hud6pnl0syzxcsul37nt7txcsr25dlpxzy",
                  "amount":5000
              }
          ],
          "from":["V-dijets16rm8hud6pnl0syzxcsul37nt7txcsr25dlpxzy"],
          "changeAddr":"V-dijets16rm8hud6pnl0syzxcsul37nt7txcsr25dlpxzy",
          "username":"myUsername",
          "password":"myPassword"
      }
  }' -H 'content-type:application/json;' 127.0.0.1:9650/ext/bc/V
    

Disrupt, or be Disrupted.