Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.starknet.io/llms.txt

Use this file to discover all available pages before exploring further.

The result of filling an input in the circuit instance’s data. This enum represents the state of input filling process, indicating whether all inputs have been provided or more are needed.

Signature

pub enum AddInputResult {
    Done: CircuitData,
    More: CircuitInputAccumulator,
}

Variants

Done

All inputs have been filled and the circuit data is complete.

Signature

Done: CircuitData

More

More inputs are needed to complete the circuit instance’s data.

Signature

More: CircuitInputAccumulator