synor/apps/web/src/vite-env.d.ts
Gulshan Yadav 48949ebb3f Initial commit: Synor blockchain monorepo
A complete blockchain implementation featuring:
- synord: Full node with GHOSTDAG consensus
- explorer-web: Modern React blockchain explorer with 3D DAG visualization
- CLI wallet and tools
- Smart contract SDK and example contracts (DEX, NFT, token)
- WASM crypto library for browser/mobile
2026-01-08 05:22:17 +05:30

9 lines
162 B
TypeScript

/// <reference types="vite/client" />
interface ImportMetaEnv {
readonly VITE_RPC_ENDPOINT: string;
}
interface ImportMeta {
readonly env: ImportMetaEnv;
}