Partner Sandbox

Integrate Vantix ZK identity verification into your enterprise dApp or DePIN nodes.

REST API Keys

Generate secret keys to query user verification status via the Vantix Off-Chain API.

Node Quickstart

Read identity status directly from the Monad/LayerZero Oracle.

import { ethers } from 'ethers';

// Connect to your RPC
const provider = new ethers.JsonRpcProvider('...');
const oracle = new ethers.Contract(ORACLE_ADDR, ABI, provider);

// Verify Human Check
const status = await oracle.getIdentityStatus(userWallet);
if (status.tier === 'HUMAN') {
  grantAccess();
}

Smart Contract Whitelisting

Register your dApp's smart contract address to receive real-time LayerZero cross-chain messages from Vantix.