Interface AerodromeSlipstreamReceiptEvidence

interface AerodromeSlipstreamReceiptEvidence {
    receiptStatus: "success" | "reverted";
    poolCreated:
        | null
        | Readonly<{ poolAddress: `0x${string}`; logIndex: number }>;
    initialization:
        | null
        | Readonly<
            {
                poolAddress: `0x${string}`;
                sqrtPriceX96: bigint;
                tick: number;
                logIndex: number;
            },
        >;
}

Properties

receiptStatus: "success" | "reverted"
poolCreated: null | Readonly<{ poolAddress: `0x${string}`; logIndex: number }>
initialization:
    | null
    | Readonly<
        {
            poolAddress: `0x${string}`;
            sqrtPriceX96: bigint;
            tick: number;
            logIndex: number;
        },
    >