tycho-simulation 0.224.0

Provides tools for interacting with protocol states, calculating spot prices, and quoting token swaps.
Documentation
1
2
3
4
5
6
7
8
9
10
FROM rust:1.82-bookworm AS builder
WORKDIR /build
COPY . .
RUN cargo build --release --package tycho-integration-test

FROM debian:bookworm-slim
WORKDIR /opt/tycho-integration-test
COPY --from=builder /build/target/release/tycho-integration-test ./tycho-integration-test
RUN apt-get update && apt-get install -y ca-certificates && rm -rf /var/lib/apt/lists/*
CMD ["./tycho-integration-test"]