fix: add missing library declarations in example and type files
This commit is contained in:
parent
327f2bf721
commit
4c60907b70
7 changed files with 6 additions and 2 deletions
|
|
@ -5,6 +5,7 @@
|
|||
/// - ABI extraction and encoding
|
||||
/// - Contract analysis and security scanning
|
||||
/// - Validation and verification
|
||||
library;
|
||||
|
||||
import 'dart:io';
|
||||
import 'dart:typed_data';
|
||||
|
|
|
|||
|
|
@ -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';
|
||||
|
|
|
|||
|
|
@ -6,6 +6,7 @@
|
|||
/// - Liquidity provision (AMM pools)
|
||||
/// - Order book management
|
||||
/// - Portfolio tracking
|
||||
library;
|
||||
|
||||
import 'dart:io';
|
||||
import 'dart:math';
|
||||
|
|
|
|||
|
|
@ -5,6 +5,7 @@
|
|||
/// - Channel management
|
||||
/// - Packet handling
|
||||
/// - Relayer operations
|
||||
library;
|
||||
|
||||
import 'dart:io';
|
||||
import 'package:synor_ibc/synor_ibc.dart';
|
||||
|
|
|
|||
|
|
@ -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';
|
||||
|
|
|
|||
|
|
@ -1,4 +1,5 @@
|
|||
/// Synor DEX SDK Types for Flutter/Dart
|
||||
library;
|
||||
|
||||
/// Pool type
|
||||
enum PoolType { constantProduct, stable, concentrated }
|
||||
|
|
|
|||
|
|
@ -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 {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue