fix: add missing library declarations in example and type files

This commit is contained in:
Gulshan Yadav 2026-02-02 02:23:58 +05:30
parent 327f2bf721
commit 4c60907b70
7 changed files with 6 additions and 2 deletions

View file

@ -5,6 +5,7 @@
/// - ABI extraction and encoding
/// - Contract analysis and security scanning
/// - Validation and verification
library;
import 'dart:io';
import 'dart:typed_data';

View file

@ -5,6 +5,7 @@
/// - BIP-39 mnemonic generation and validation
/// - Post-quantum algorithms (Falcon, SPHINCS+)
/// - Key derivation functions
library;
import 'dart:io';
import 'package:synor_crypto/synor_crypto.dart';

View file

@ -6,6 +6,7 @@
/// - Liquidity provision (AMM pools)
/// - Order book management
/// - Portfolio tracking
library;
import 'dart:io';
import 'dart:math';

View file

@ -5,6 +5,7 @@
/// - Channel management
/// - Packet handling
/// - Relayer operations
library;
import 'dart:io';
import 'package:synor_ibc/synor_ibc.dart';

View file

@ -6,6 +6,7 @@
/// - Groth16, PLONK, and STARK proving systems
/// - Recursive proofs
/// - On-chain verification
library;
import 'dart:io';
import 'package:synor_zk/synor_zk.dart';

View file

@ -1,4 +1,5 @@
/// Synor DEX SDK Types for Flutter/Dart
library;
/// Pool type
enum PoolType { constantProduct, stable, concentrated }

View file

@ -3,8 +3,6 @@
/// Zero-Knowledge proof systems for ZK-Rollups and privacy.
library synor_zk_types;
import 'dart:convert';
import 'dart:typed_data';
/// Proof system backends
enum ProofSystem {