How Elusiv integrates with blockchain networks
Elusiv leverages blockchain technology to provide immutable records, transparent transactions, and decentralized access control. The protocol uses smart contracts to manage membership, payments, and research request lifecycle.
Elusiv currently operates on EVM-compatible chains, with plans for multi-chain expansion in future versions.
Elusiv is deployed on EVM-compatible blockchain networks:
Future versions will support:
When a user commissions research, the following on-chain transactions occur:
User approves Research Desk contract to spend $ELUSIV tokens (ERC-20 approve)
User calls requestResearch(string query) on Research Desk contract
Contract transfers $ELUSIV tokens from user to contract (ERC-20 transferFrom)
Contract emits RequestSubmitted event with request details
When research is complete, document hash is recorded on-chain via submitCompletion
User sends native token (ETH) to Access Pass contract with mint price
Contract distributes payment: portion to treasury, portion to affiliate (if promo code used)
Contract mints ERC-721 token to user's address, emits PassMinted event
Elusiv uses a hybrid approach: critical data on-chain, heavy data off-chain:
Completed research dossiers are anchored on-chain via document hashes:
submitCompletionSmart contracts emit events for all significant state changes:
PassMinted - When a pass is mintedMintingStatusUpdated - Minting enabled/disabledPromoUsed - Promo code redemptionRequestSubmitted - New research requestRequestCompleted - Request fulfilledCompletionSubmitted - Completion submitted for approvalCompletionApproved - Completion approvedEvent indexing enables:
Elusiv is designed with gas efficiency in mind:
Only essential data stored on-chain; heavy data stored off-chain in decentralized storage.
Uses mappings and arrays efficiently to minimize storage costs.
Heavy reliance on events for data retrieval, reducing on-chain storage needs.
Elusiv uses standard token interfaces for maximum compatibility:
Access Pass NFT standard
$ELUSIV token standard
Security-audited base contracts