Building on ONINO
Guides, Tipps and Toolkits to build on ONINOs tokenization infrastructure.
Last updated
Was this helpful?
Guides, Tipps and Toolkits to build on ONINOs tokenization infrastructure.
Last updated
Was this helpful?
ONINO is a fully EVM-compatible Layer-1 blockchain, meaning it behaves just like Ethereum and any other EVM-based blockchain from a smart contract perspective. Smart contracts written in Solidity will run on ONINO without modification, and developers can use their favorite Ethereum development libraries and tools to interact with ONINO. This compatibility allows native interoperability with existing Ethereum tooling, making the developer experience very familiar.
Developers can work with ONINO using standard Web3 libraries such as ethers.js, web3.js, and wagmi, among others. Below are brief examples of how to connect to ONINO using these tools (simply change the RPC endpoint to switch between Mainnet and Testnet):
You can use thers.js to connect to ONINO by pointing a JSON RPC provider to ONINO’s RPC URL. For example, to connect to ONINO and fetch the latest block number:
This code uses the ONINO Mainnet RPC. To target the Testnet instead, you would use the Testnet RPC URL (see details below). All other ethers.js functionalities (like sending transactions, reading contract data, etc.) work the same way as they do on Ethereum.
With web3.js, connecting to ONINO is also straightforward. You just initialize a Web3 instance with the ONINO RPC endpoint. For example:
This snippet will output ONINO’s chain ID (e.g., 1425 for Mainnet). You can use all usual web3.eth
methods on ONINO as you would on Ethereum (for example, sendTransaction
, contract calls, etc.), since ONINO’s nodes use the same JSON-RPC interface as an Ethereum node.
If you're building a front-end with wagmi (a React hooks library for Ethereum), you can integrate ONINO as a custom chain. Define ONINO’s chain parameters and include them in wagmi’s configuration. For example, to add ONINO Mainnet:
This configuration snippet creates a custom chain object for ONINO Mainnet and sets up a wagmi client. Once configured, your dApp can connect wallets to ONINO, and wagmi’s hooks (like useAccount
, useContractRead
, etc.) will operate on ONINO’s network. For ONINO Testnet, you would use the Testnet chain ID and RPC (and mark testnet: true
).
Tip: Other developer tools such as Hardhat, Truffle, or Remix are also compatible with ONINO. For example, you can deploy contracts via Hardhat by setting the network URL to ONINO’s RPC and chain ID in the Hardhat config, just as you would for any other Ethereum-compatible network.
To deploy and interact with smart contracts on the ONINO network using Hardhat, you need to configure the hardhat.config.js
file to include ONINO's network settings. Below is an example configuration:
To integrate ONINO with Reown's AppKit (previously known as Web3Modal), first install the necessary packages:
Then, configure AppKit with ONINO's network details:
Ensure you replace 'YOUR_PROJECT_ID'
with your actual project ID from the Reown Cloud Dashboard. For more details, refer to the Reown AppKit documentation.
Developer Platform
Rapidly build and deploy blockchain solutions with ease.
Testnet Configuration
Quickly configure and test your apps on ONINO’s test network.
Solidity Compiler Versions
Guidelines on supported Solidity versions for smart contracts.