hoodchain - v0.1.0
    Preparing search index...

    Interface CurveTrade

    A decoded Odyssey bonding-curve trade.

    interface CurveTrade {
        blockNumber: bigint;
        fee: bigint;
        isBuy: boolean;
        launchpad: "odyssey";
        quoteAmount: bigint;
        token: `0x${string}`;
        tokenAmount: bigint;
        trader: `0x${string}`;
        transactionHash: `0x${string}`;
    }
    Index
    blockNumber: bigint
    fee: bigint
    isBuy: boolean
    launchpad: "odyssey"
    quoteAmount: bigint

    Native ETH paid/received (wei).

    token: `0x${string}`
    tokenAmount: bigint

    Token amount bought/sold (18 decimals).

    trader: `0x${string}`
    transactionHash: `0x${string}`