Commit graph

4 commits

Author SHA1 Message Date
Gulshan Yadav
688d409b10 feat(dex): add Phase 15 - DEX Ecosystem with Perpetuals Trading
Implements comprehensive DEX infrastructure:

- contracts/perps (81KB WASM):
  - Long/Short positions with 2x-100x leverage
  - Funding rate mechanism (keeps price anchored to spot)
  - Liquidation engine with insurance fund
  - Mark price (EMA) vs index price (oracle)
  - Maintenance margin (0.5%) and initial margin (1%)

- contracts/oracle (80KB WASM):
  - Multi-source price aggregation (median)
  - TWAP (Time-Weighted Average Price)
  - Stale price detection
  - Confidence intervals

- contracts/aggregator (94KB WASM):
  - Cross-chain liquidity routing via IBC
  - Best price discovery across multiple DEXs
  - Split routing for large orders
  - Zero-capital model (aggregation fees only)

This enables dYdX/GMX-style trading without requiring capital.
2026-01-19 19:22:02 +05:30
Gulshan Yadav
49ba05168c feat(privacy): add Phase 14 Milestone 2 - Privacy Layer
Implements comprehensive privacy primitives for confidential transactions:

- synor-privacy crate:
  - Pedersen commitments for hidden amounts with homomorphic properties
  - Simplified range proofs (bit-wise) for value validity
  - Stealth addresses with ViewKey/SpendKey for receiver privacy
  - LSAG ring signatures for sender anonymity
  - Key images for double-spend prevention
  - Confidential transaction type combining all primitives

- contracts/confidential-token:
  - WASM smart contract for privacy-preserving tokens
  - UTXO-based model (similar to Monero/Zcash)
  - Methods: mint, transfer, burn with ring signature verification

42 passing tests, 45KB WASM output.
2026-01-19 17:58:11 +05:30
Gulshan Yadav
6037695afb feat(ibc): add Phase 14 Milestone 1 - Cross-Chain IBC Interoperability
Implements full Inter-Blockchain Communication (IBC) protocol:

synor-ibc crate (new):
- Light client management (create, update, verify headers)
- Connection handshake (4-way: Init, Try, Ack, Confirm)
- Channel handshake (4-way: Init, Try, Ack, Confirm)
- Packet handling (send, receive, acknowledge, timeout)
- Merkle commitment proofs for state verification
- ICS-20 fungible token transfer support
- Atomic swap engine with HTLC (hashlock + timelock)

IBC Bridge Contract (contracts/ibc-bridge):
- Token locking/unlocking for cross-chain transfers
- Relayer whitelist management
- Channel registration and sequence tracking
- HTLC atomic swap (create, claim, refund)
- Event emission for indexing
- 52KB optimized WASM binary

Test coverage: 40 tests passing
2026-01-19 16:51:59 +05:30
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