fix(critical): complete execution pipeline - all blockers fixed and operational

This commit is contained in:
Krypto Kajun
2025-11-04 10:24:34 -06:00
parent 0b1c7bbc86
commit 52d555ccdf
410 changed files with 99504 additions and 28488 deletions

View File

@@ -68,7 +68,7 @@ type Result3 struct {
// MulticallBatcher batches multiple RPC calls into a single Multicall3 transaction
type MulticallBatcher struct {
client *ethclient.Client
client *ethclient.Client
multicallABI abi.ABI
}
@@ -80,7 +80,7 @@ func NewMulticallBatcher(client *ethclient.Client) (*MulticallBatcher, error) {
}
return &MulticallBatcher{
client: client,
client: client,
multicallABI: parsedABI,
}, nil
}

View File

@@ -18,8 +18,8 @@ type PoolVersion int
const (
PoolVersionUnknown PoolVersion = iota
PoolVersionV2 // Uniswap V2 style (uses getReserves)
PoolVersionV3 // Uniswap V3 style (uses slot0)
PoolVersionV2 // Uniswap V2 style (uses getReserves)
PoolVersionV3 // Uniswap V3 style (uses slot0)
PoolVersionBalancer
PoolVersionCurve
)