xrpl
    Preparing search index...

    Type Alias SimulateRequest

    SimulateRequest: BaseRequest & { binary?: boolean; command: "simulate" } & (
        | { tx_blob: string; tx_json?: never }
        | { tx_blob?: never; tx_json: Transaction }
    )

    The simulate method simulates a transaction without submitting it to the network. Returns a SimulateResponse.