Security
User transactions are recorded on Ethereum L1 using zk technology, with data availability from Layer 2s verifiable on L1. Strict arbitration ensuring the security of cross-chain messages.
Efficiency
Optimistically transmit messages to minimize performance loss and reserve time blocks to ensure message delivery security, while reducing arbitration costs through zero-knowledge proofs.
Decentralization
In the Vizing omni-chain environment, users have the ability to choose between Relayer and Validator to transmit messages. Simultaneously, any developer can easily integrate omni-chain communication functionality through our provided development documentation.
Chains connected
One-click transfers
Zero friction
Unified liquidity
Orbiter Vizing Bot
The First Omni chain Play-to-Earn game powered by Vizing. Fully enjoy playing, bridging, and earning. It's a gateway for all Web3 chains, leading to airdrops.
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.23;
import {VizingOmni} from "@Vizing/contracts/Vizingomni.sol";
contract MyOmniChainDApp is VizingOmni {
bytes1 public immutable dAppBridgeMode;
address public immutable selectedRelayer;
uint16 public immutable deployChainId;
constructor(
address _vizingPad;
address _myRelayer;
bytes1 defaultBridgeMode
) VizingOmni(_vizingPad) {
dAppBridgeMode = _defaultBridgeMode;
selectedRelayer = _myRelayer;
deployChainId = LaunchPad.ChainId();
}
}