Orgon
Web

The official developer toolkit for interacting with the Orgon network

OrgonWeb is the official SDK 28 for interacting with the Orgon network, providing full access to blockchain functions at the node level. The library is designed as a cross-platform tool and supports operation in browsers, on servers, and in mobile environments.
Use cases
Development of user dApp applications
01
Staking and voting interfaces
02
Integration into corporate backend systems
04
Custodial solutions
03

Key features

High-level methods for rapid development
Low-level RPC calls for advanced scenarios
Network governance bodies
Transaction mechanisms
Working with smart contracts

Usage example of Orgon Web SDK

npm install @orgon/web-sdk # or
yarn add @orgon/web-sdk import { OrgonWeb } from '@orgon/web-sdk'; const orgon = new OrgonWeb({ fullHost: 'https://api.orgon.space', solidityNode: 'https://solidity.orgon.space', eventServer: 'https://event.orgon.space' }); // Getting account information
const account = await orgon.orgon.getAccount('address'); // Sending a transaction
const transaction = await orgon.transactionBuilder.sendOrgon('to_address', 1000000).build();
Orgon