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
|
/// - ABI extraction and encoding
|
||||||
/// - Contract analysis and security scanning
|
/// - Contract analysis and security scanning
|
||||||
/// - Validation and verification
|
/// - Validation and verification
|
||||||
|
library;
|
||||||
|
|
||||||
import 'dart:io';
|
import 'dart:io';
|
||||||
import 'dart:typed_data';
|
import 'dart:typed_data';
|
||||||
|
|
|
||||||
|
|
@ -5,6 +5,7 @@
|
||||||
/// - BIP-39 mnemonic generation and validation
|
/// - BIP-39 mnemonic generation and validation
|
||||||
/// - Post-quantum algorithms (Falcon, SPHINCS+)
|
/// - Post-quantum algorithms (Falcon, SPHINCS+)
|
||||||
/// - Key derivation functions
|
/// - Key derivation functions
|
||||||
|
library;
|
||||||
|
|
||||||
import 'dart:io';
|
import 'dart:io';
|
||||||
import 'package:synor_crypto/synor_crypto.dart';
|
import 'package:synor_crypto/synor_crypto.dart';
|
||||||
|
|
|
||||||
|
|
@ -6,6 +6,7 @@
|
||||||
/// - Liquidity provision (AMM pools)
|
/// - Liquidity provision (AMM pools)
|
||||||
/// - Order book management
|
/// - Order book management
|
||||||
/// - Portfolio tracking
|
/// - Portfolio tracking
|
||||||
|
library;
|
||||||
|
|
||||||
import 'dart:io';
|
import 'dart:io';
|
||||||
import 'dart:math';
|
import 'dart:math';
|
||||||
|
|
|
||||||
|
|
@ -5,6 +5,7 @@
|
||||||
/// - Channel management
|
/// - Channel management
|
||||||
/// - Packet handling
|
/// - Packet handling
|
||||||
/// - Relayer operations
|
/// - Relayer operations
|
||||||
|
library;
|
||||||
|
|
||||||
import 'dart:io';
|
import 'dart:io';
|
||||||
import 'package:synor_ibc/synor_ibc.dart';
|
import 'package:synor_ibc/synor_ibc.dart';
|
||||||
|
|
|
||||||
|
|
@ -6,6 +6,7 @@
|
||||||
/// - Groth16, PLONK, and STARK proving systems
|
/// - Groth16, PLONK, and STARK proving systems
|
||||||
/// - Recursive proofs
|
/// - Recursive proofs
|
||||||
/// - On-chain verification
|
/// - On-chain verification
|
||||||
|
library;
|
||||||
|
|
||||||
import 'dart:io';
|
import 'dart:io';
|
||||||
import 'package:synor_zk/synor_zk.dart';
|
import 'package:synor_zk/synor_zk.dart';
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,5 @@
|
||||||
/// Synor DEX SDK Types for Flutter/Dart
|
/// Synor DEX SDK Types for Flutter/Dart
|
||||||
|
library;
|
||||||
|
|
||||||
/// Pool type
|
/// Pool type
|
||||||
enum PoolType { constantProduct, stable, concentrated }
|
enum PoolType { constantProduct, stable, concentrated }
|
||||||
|
|
|
||||||
|
|
@ -3,8 +3,6 @@
|
||||||
/// Zero-Knowledge proof systems for ZK-Rollups and privacy.
|
/// Zero-Knowledge proof systems for ZK-Rollups and privacy.
|
||||||
library synor_zk_types;
|
library synor_zk_types;
|
||||||
|
|
||||||
import 'dart:convert';
|
|
||||||
import 'dart:typed_data';
|
|
||||||
|
|
||||||
/// Proof system backends
|
/// Proof system backends
|
||||||
enum ProofSystem {
|
enum ProofSystem {
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue