Restructured project for V2 refactor: **Structure Changes:** - Moved all V1 code to orig/ folder (preserved with git mv) - Created docs/planning/ directory - Added orig/README_V1.md explaining V1 preservation **Planning Documents:** - 00_V2_MASTER_PLAN.md: Complete architecture overview - Executive summary of critical V1 issues - High-level component architecture diagrams - 5-phase implementation roadmap - Success metrics and risk mitigation - 07_TASK_BREAKDOWN.md: Atomic task breakdown - 99+ hours of detailed tasks - Every task < 2 hours (atomic) - Clear dependencies and success criteria - Organized by implementation phase **V2 Key Improvements:** - Per-exchange parsers (factory pattern) - Multi-layer strict validation - Multi-index pool cache - Background validation pipeline - Comprehensive observability **Critical Issues Addressed:** - Zero address tokens (strict validation + cache enrichment) - Parsing accuracy (protocol-specific parsers) - No audit trail (background validation channel) - Inefficient lookups (multi-index cache) - Stats disconnection (event-driven metrics) Next Steps: 1. Review planning documents 2. Begin Phase 1: Foundation (P1-001 through P1-010) 3. Implement parsers in Phase 2 4. Build cache system in Phase 3 5. Add validation pipeline in Phase 4 6. Migrate and test in Phase 5 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
97 lines
2.7 KiB
Go
97 lines
2.7 KiB
Go
package math
|
|
|
|
import (
|
|
"math/big"
|
|
"testing"
|
|
|
|
"github.com/holiman/uint256"
|
|
)
|
|
|
|
// Benchmark original vs cached SqrtPriceX96ToPrice conversion
|
|
func BenchmarkSqrtPriceX96ToPriceOriginal(b *testing.B) {
|
|
// Use a typical sqrtPriceX96 value (represents price of ~2000 USDC/ETH)
|
|
sqrtPriceX96 := new(big.Int).SetBytes([]byte{0x06, 0x40, 0x84, 0x4A, 0x0E, 0x81, 0x4F, 0x96, 0x19, 0xC1, 0x9C, 0x08})
|
|
|
|
b.ResetTimer()
|
|
for i := 0; i < b.N; i++ {
|
|
// Original calculation: price = sqrtPriceX96^2 / 2^192
|
|
sqrtPriceFloat := new(big.Float).SetInt(sqrtPriceX96)
|
|
price := new(big.Float).Mul(sqrtPriceFloat, sqrtPriceFloat)
|
|
|
|
// Calculate 2^192
|
|
q192 := new(big.Int).Exp(big.NewInt(2), big.NewInt(192), nil)
|
|
q192Float := new(big.Float).SetInt(q192)
|
|
|
|
// Divide by 2^192
|
|
price.Quo(price, q192Float)
|
|
}
|
|
}
|
|
|
|
func BenchmarkSqrtPriceX96ToPriceCached(b *testing.B) {
|
|
// Use a typical sqrtPriceX96 value (represents price of ~2000 USDC/ETH)
|
|
sqrtPriceX96 := new(big.Int).SetBytes([]byte{0x06, 0x40, 0x84, 0x4A, 0x0E, 0x81, 0x4F, 0x96, 0x19, 0xC1, 0x9C, 0x08})
|
|
|
|
b.ResetTimer()
|
|
for i := 0; i < b.N; i++ {
|
|
// Cached calculation using precomputed constants
|
|
SqrtPriceX96ToPriceCached(sqrtPriceX96)
|
|
}
|
|
}
|
|
|
|
// Benchmark original vs cached PriceToSqrtPriceX96 conversion
|
|
func BenchmarkPriceToSqrtPriceX96Original(b *testing.B) {
|
|
// Use a typical price value (represents price of ~2000 USDC/ETH)
|
|
price := new(big.Float).SetFloat64(2000.0)
|
|
|
|
b.ResetTimer()
|
|
for i := 0; i < b.N; i++ {
|
|
// Original calculation: sqrtPriceX96 = sqrt(price * 2^192)
|
|
|
|
// Calculate 2^192
|
|
q192 := new(big.Int).Exp(big.NewInt(2), big.NewInt(192), nil)
|
|
q192Float := new(big.Float).SetInt(q192)
|
|
|
|
// Multiply price by 2^192
|
|
result := new(big.Float).Mul(price, q192Float)
|
|
|
|
// Calculate square root
|
|
result.Sqrt(result)
|
|
|
|
// Convert to big.Int
|
|
sqrtPriceX96 := new(big.Int)
|
|
result.Int(sqrtPriceX96)
|
|
}
|
|
}
|
|
|
|
func BenchmarkPriceToSqrtPriceX96Cached(b *testing.B) {
|
|
// Use a typical price value (represents price of ~2000 USDC/ETH)
|
|
price := new(big.Float).SetFloat64(2000.0)
|
|
|
|
b.ResetTimer()
|
|
for i := 0; i < b.N; i++ {
|
|
// Cached calculation using precomputed constants
|
|
PriceToSqrtPriceX96Cached(price)
|
|
}
|
|
}
|
|
|
|
// Benchmark optimized versions with uint256
|
|
func BenchmarkSqrtPriceX96ToPriceOptimized(b *testing.B) {
|
|
// Use a typical sqrtPriceX96 value
|
|
sqrtPriceX96 := uint256.NewInt(0).SetBytes([]byte{0x06, 0x40, 0x84, 0x4A, 0x0E, 0x81, 0x4F, 0x96, 0x19, 0xC1, 0x9C, 0x08})
|
|
|
|
b.ResetTimer()
|
|
for i := 0; i < b.N; i++ {
|
|
SqrtPriceX96ToPriceOptimized(sqrtPriceX96)
|
|
}
|
|
}
|
|
|
|
func BenchmarkPriceToSqrtPriceX96Optimized(b *testing.B) {
|
|
// Use a typical price value
|
|
price := new(big.Float).SetFloat64(2000.0)
|
|
|
|
b.ResetTimer()
|
|
for i := 0; i < b.N; i++ {
|
|
PriceToSqrtPriceX96Optimized(price)
|
|
}
|
|
}
|