Documentation Index
Fetch the complete documentation index at: https://docs.backed.app/llms.txt
Use this file to discover all available pages before exploring further.
Integration Patterns
This page is for teams building around Backed rather than only using the product interface. The safest integrations are the ones that follow the same ordering discipline the platform itself relies on: select the environment, identify the project, read the state, then decide whether action is appropriate.Recommended read pattern
Start from the environment and factory:- resolve the deployment manifest,
- resolve the factory address,
- enumerate or fetch the target project,
- resolve the sale address,
- derive current state from the relevant contract reads.
Recommended write pattern
For any privileged action:- bind the correct environment explicitly,
- bind the correct signer explicitly,
- read the relevant pre-state,
- perform the write,
- read the relevant post-state for confirmation.
Anti-patterns
- assuming a UI label is equivalent to contract truth,
- assuming project creation implies approval,
- mixing testnet and mainnet assumptions in automation,
- reading only a single surface when sale state is required.

