Developer Protocol v1.0.0

Vantix
SDK & API

Integrate Omnichain Sybil resistance in minutes. Query the Vantix LayerZero Oracles across any EVM chain to instantly filter bots, sybils, and non-compliant actors from your dApp or DePIN nodes.

GitHub Repository

01. Installation

$npm install @vantix-zk/sdk viem
Global Package

02. Client Initialization

Initialize the SDK targeting your specific EVM chain. The Oracle handles the cross-chain state resolution automatically via LayerZero.

import { VantixOracle } from "@vantix-zk/sdk";

// Initialize client for Polygon Network (LayerZero destination endpoint)
const Vantix = new VantixOracle({
  rpcUrl:  "https://polygon-rpc.com"
});

03. Sybil Verification API

Vantix.isHuman(address)

Method

Returns strictly true or false if the EVM address holds a Level 1 Basic verification.

const isVerified = await Vantix.isHuman("0x123..."); if (!isVerified) throw Error("Sybil bot detected");

Vantix.isAccredited(address)

Institutional

Higher tier check for VC launchpads or compliant RWA vaults. Ensures the wallet matches Level 2 regulations.

const isAccredited = await Vantix.isAccredited("0x123...");

Enterprise Compliance

Require institutional-grade verification in your protocol? Our SDK supports custom credential notarization for KYC/AML requirements across all parallelized chains.

Read Institutional Whitepaper