top of page

IDX Solana: AI-Powered Web3 Infrastructure on the Solana Blockchain

IDX Solana operates at the intersection of artificial intelligence and Web3. The company specializes in building advanced operational tools and practical AI-assisted systems tailored for token builders, blockchain communities, and digital asset enterprises within the Solana ecosystem.

Rather than focusing on speculative infrastructure, IDX Solana prioritizes scalable, real-world utility. Through its core suite of products—including IDX Tools, the IDX Business Wallet, and the IDX Token—the company delivers transparent and sustainable solutions for modern blockchain operators.

Who We Are, Where We Came From, and Where We’re Headed

Who we are

We are an AI-powered Web3 infrastructure company dedicated to the Solana blockchain. Through our comprehensive suite of products—including IDX Tools, the IDX Business Wallet, and the IDX Token—we deliver practical, enterprise-grade operational utilities designed to assist token builders, Web3 operators, and digital asset businesses in managing critical workflows.

Where we came from

Founded in December 2024 by Amin Albasha and headquartered in Delhi, India, we operate under the registered entity TECBASH TECHNOLOGIES PRIVATE LIMITED and strategic investors. We were established to address a distinct gap in the market: the need for reliable, operations-focused blockchain tooling rather than purely speculative infrastructure.

Where we’re headed

We are focused on driving the long-term, sustainable growth of the Solana ecosystem. Our vision is to continuously modernize blockchain infrastructure by expanding our AI-assisted systems, providing scalable and accessible Layer 3 toolkits that empower Web3 businesses to build, operate, and thrive efficiently.

Corporate Information

Transparency and regulatory alignment are central to IDX Solana’s operations. Below are the official registration details:

  • Registered Company Name: TECBASH TECHNOLOGIES PRIVATE LIMITED

  • Corporate Identification Number (CIN): U62013DL2025PTC458210

  • Industry Classification: Computer Programming, Consultancy, and Related Technology Activities

  • Company Type: Private Limited Company

  • Jurisdiction: Registrar of Companies (RoC), Delhi, India

  • Founder: Amin Albasha

Company Overview & Mission

IDX Solana was founded to address a specific gap in the Web3 market: the need for reliable, enterprise-grade operational infrastructure. The technology is expressly designed to help blockchain operators and token teams manage mission-critical workflows, from initial token launches and liquidity management to market participation and community engagement.

The Mission: To modernize and simplify blockchain operations through practical, AI-assisted systems, fostering sustainable ecosystem utilities and accessible workflows.

 

Important Note on User Autonomy: While IDX Solana provides powerful automation and operational tooling, these systems are designed to assist operators. They do not replace independent financial decision-making, risk evaluation, or user judgment. Users retain full control and responsibility over their workflows.

IDX Value

The IDX Ecosystem

The company’s product suite functions as a comprehensive Layer 3 toolkit, built natively for the Solana network.

IDX Tools

IDX Tools

Serving as the ecosystem's primary operational layer, this platform equips Web3 operators with essential tools for token and project management. Its core capabilities streamline daily operations by offering a comprehensive suite for token creation, liquidity pool (LP) management, market-making infrastructure, ecosystem monitoring, and AI-assisted dashboards for tracking volume and community engagement.

IDX Business Wallet

Designed specifically for B2B environments, project managers, and operational teams, the IDX Business Wallet ensures secure, team-oriented asset management. It combines enterprise-grade multi-tiered operational workflows with Solana-native transaction infrastructure optimized for business needs. By offering seamless integration with existing IDX utilities and comprehensive technical and security documentation, it provides companies with a dependable, production-ready environment for managing ecosystem assets.

IDX Token (IDX Coin)

As the native asset of the ecosystem, the IDX Token is engineered for long-term sustainability rather than short-term speculation. Its primary functions are to align product utility, drive community engagement, and fund sustainable ecosystem growth initiatives.

Ecosystem token and stewardship

The IDX team stewards the ecosystem token with a long-term, sustainability-minded lens: alignment between product development, community, and transparent documentation—rather than short-term hype. This is not financial advice; crypto and DeFi carry significant risk.

Meet The Team

download (1).jpeg

Amin Albasha

Chief Executive Officer
(CEO) & Founder

ashish maan.jpeg

Ashish Maan

Chief Operating Officer
(COO)

gagan kishor.png

Gagan Kishore

Chief Technology Officer
(CTO)

bottom of page
/** * Wix Custom Code — paste into Settings → Custom Code → Body end (All pages) * on https://www.idxsolana.io/ * * Requires a hidden Wix Subscribe form on the site (same page or any page * loaded by the docs iframe bridge). Pair with docs.idxsolana.io footer. */ (function () { var ALLOWED = [ "https://docs.idxsolana.io", "http://localhost:3000", "http://localhost:3010", ]; function isAllowedOrigin(origin) { if (!origin) return false; if (ALLOWED.indexOf(origin) !== -1) return true; if (/^https:\/\/docs\.idxsolana\.io$/.test(origin)) return true; if (/^http:\/\/localhost:\d+$/.test(origin)) return true; if (origin === window.location.origin) return true; return false; } function reply(event, payload) { if (!event.source) return; try { event.source.postMessage(payload, event.origin || "*"); } catch (e) {} } function findSubscribeForm() { var candidates = document.querySelectorAll("form"); for (var i = 0; i < candidates.length; i++) { var form = candidates[i]; if (form.querySelector('input[type="email"]')) return form; } return null; } function findSubmitControl(form) { return ( form.querySelector('[data-hook="submit-button"]') || form.querySelector('button[type="submit"]') || form.querySelector('input[type="submit"]') || form.querySelector("button") ); } function watchSubmitResult(form, event) { var root = form.closest('[data-hook="form-root"]') || form.parentElement || document.body; var settled = false; function finish(ok, message) { if (settled) return; settled = true; observer.disconnect(); clearTimeout(timer); reply(event, ok ? { type: "idx-footer-newsletter-ok" } : { type: "idx-footer-newsletter-error", message: message || "Could not subscribe. Try again." }); } var observer = new MutationObserver(function () { var success = root.querySelector('[data-hook="success-message"], [data-testid="successMessage"]'); if (success) finish(true); var error = root.querySelector('[data-hook="error-message"], [data-testid="errorMessage"]'); if (error && error.textContent && error.textContent.trim()) { finish(false, error.textContent.trim()); } }); observer.observe(root, { childList: true, subtree: true, characterData: true }); var timer = setTimeout(function () { finish(true); }, 4000); } function submitEmail(email, event) { var form = findSubscribeForm(); if (!form) { reply(event, { type: "idx-footer-newsletter-error", message: "Subscribe form not found. Add a hidden Wix Subscribe form to this site.", }); return; } var input = form.querySelector('input[type="email"]'); if (!input) { reply(event, { type: "idx-footer-newsletter-error", message: "Email field not found." }); return; } var submit = findSubmitControl(form); if (!submit) { reply(event, { type: "idx-footer-newsletter-error", message: "Submit button not found." }); return; } input.focus(); input.value = email; input.dispatchEvent(new Event("input", { bubbles: true })); input.dispatchEvent(new Event("change", { bubbles: true })); watchSubmitResult(form, event); try { if (typeof form.requestSubmit === "function") { form.requestSubmit(submit); } else { submit.click(); } } catch (e) { reply(event, { type: "idx-footer-newsletter-error", message: "Could not submit form." }); } } window.addEventListener("message", function (event) { if (!isAllowedOrigin(event.origin)) return; var data = event.data; if (!data || data.type !== "idx-footer-newsletter") return; var email = String(data.email || "").trim(); if (!email) { reply(event, { type: "idx-footer-newsletter-error", message: "Email is required." }); return; } submitEmail(email, event); }); })(); /** * Wix Velo — paste into Backend → http-functions.js on https://www.idxsolana.io/ * Publish the site after saving. * * Endpoint: POST https://www.idxsolana.io/_functions/newsletter_subscribe * * Only enable browser fetch after this is deployed AND working: * NEXT_PUBLIC_WIX_NEWSLETTER_USE_HTTP=true * * Until then, docs uses postMessage bridge (wix-footer-form-bridge.js) — no CORS. */ import { ok, badRequest, response } from "wix-http-functions"; import { contacts } from "wix-crm-backend"; const ALLOWED_ORIGINS = [ "https://docs.idxsolana.io", "http://localhost:3000", "http://localhost:3010", ]; function resolveOrigin(origin) { if (!origin) return null; if (ALLOWED_ORIGINS.indexOf(origin) !== -1) return origin; if (/^http:\/\/localhost:\d+$/.test(origin)) return origin; return null; } function corsHeaders(origin) { const headers = { "Access-Control-Allow-Methods": "POST, OPTIONS", "Access-Control-Allow-Headers": "Content-Type", "Content-Type": "application/json", }; if (origin) { headers["Access-Control-Allow-Origin"] = origin; } return headers; } export function options_newsletter_subscribe(request) { const origin = resolveOrigin(request.headers.origin); return response({ status: 204, headers: corsHeaders(origin), }); } export function post_newsletter_subscribe(request) { const origin = resolveOrigin(request.headers.origin); const headers = corsHeaders(origin); if (!origin) { return response({ status: 403, headers: { "Content-Type": "application/json" }, body: { error: "Forbidden" }, }); } return request.body .text() .then(function (text) { var body = {}; try { body = JSON.parse(text || "{}"); } catch (e) { return badRequest({ body: { error: "Invalid JSON body." }, headers: headers }); } var email = String(body.email || "").trim(); if (!email) { return badRequest({ body: { error: "Email is required." }, headers: headers }); } return contacts .findOrCreateLabel("Subscriber") .then(function (label) { return contacts.appendOrCreateContact({ emails: [{ email: email, tag: "MAIN", primary: true }], labelKeys: [label.key], }); }) .then(function () { return ok({ body: { success: true }, headers: headers }); }); }) .catch(function (error) { return badRequest({ body: { error: error.message || "Could not subscribe." }, headers: headers, }); }); } /** * Wix Custom Code — paste into Settings → Custom Code → Body end (All pages) * on https://www.idxsolana.io/ * * Requires a hidden Wix Subscribe form on the site (same page or any page * loaded by the docs iframe bridge). Pair with docs.idxsolana.io footer. */ (function () { var ALLOWED = [ "https://docs.idxsolana.io", "http://localhost:3000", "http://localhost:3010", ]; function isAllowedOrigin(origin) { if (!origin) return false; if (ALLOWED.indexOf(origin) !== -1) return true; if (/^https:\/\/docs\.idxsolana\.io$/.test(origin)) return true; if (/^https:\/\/[a-z0-9-]+\.idxsolana\.io$/.test(origin)) return true; if (/^http:\/\/localhost:\d+$/.test(origin)) return true; if (origin === window.location.origin) return true; return false; } function reply(event, payload) { if (!event.source) return; try { event.source.postMessage(payload, event.origin || "*"); } catch (e) {} } function findSubscribeForm() { var candidates = document.querySelectorAll("form"); for (var i = 0; i < candidates.length; i++) { var form = candidates[i]; if (form.querySelector('input[type="email"]')) return form; } return null; } function findSubmitControl(form) { return ( form.querySelector('[data-hook="submit-button"]') || form.querySelector('button[type="submit"]') || form.querySelector('input[type="submit"]') || form.querySelector("button") ); } function watchSubmitResult(form, event) { var root = form.closest('[data-hook="form-root"]') || form.parentElement || document.body; var settled = false; function finish(ok, message) { if (settled) return; settled = true; observer.disconnect(); clearTimeout(timer); reply(event, ok ? { type: "idx-footer-newsletter-ok" } : { type: "idx-footer-newsletter-error", message: message || "Could not subscribe. Try again." }); } var observer = new MutationObserver(function () { var success = root.querySelector('[data-hook="success-message"], [data-testid="successMessage"]'); if (success) finish(true); var error = root.querySelector('[data-hook="error-message"], [data-testid="errorMessage"]'); if (error && error.textContent && error.textContent.trim()) { finish(false, error.textContent.trim()); } }); observer.observe(root, { childList: true, subtree: true, characterData: true }); var timer = setTimeout(function () { finish(true); }, 4000); } function submitEmail(email, event) { var form = findSubscribeForm(); if (!form) { reply(event, { type: "idx-footer-newsletter-error", message: "Subscribe form not found. Add a hidden Wix Subscribe form to this site.", }); return; } var input = form.querySelector('input[type="email"]'); if (!input) { reply(event, { type: "idx-footer-newsletter-error", message: "Email field not found." }); return; } var submit = findSubmitControl(form); if (!submit) { reply(event, { type: "idx-footer-newsletter-error", message: "Submit button not found." }); return; } input.focus(); input.value = email; input.dispatchEvent(new Event("input", { bubbles: true })); input.dispatchEvent(new Event("change", { bubbles: true })); watchSubmitResult(form, event); try { if (typeof form.requestSubmit === "function") { form.requestSubmit(submit); } else { submit.click(); } } catch (e) { reply(event, { type: "idx-footer-newsletter-error", message: "Could not submit form." }); } } window.addEventListener("message", function (event) { if (!isAllowedOrigin(event.origin)) return; var data = event.data; if (!data || data.type !== "idx-footer-newsletter") return; var email = String(data.email || "").trim(); if (!email) { reply(event, { type: "idx-footer-newsletter-error", message: "Email is required." }); return; } submitEmail(email, event); }); })();