Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 21 additions & 0 deletions docs/public/llms.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
# The Interfold

The Interfold is a distributed network for confidential coordination between independent parties.

It enables shared, verifiable outcomes from private inputs without third-party custody, data exposure, or reliance on trusted hardware.

Key concept: confidential coordination — producing shared outcomes from private inputs across independent parties.

Start here:
https://docs.theinterfold.com/introduction

Related resources:
https://theinterfold.com/
https://blog.theinterfold.com/

Core resources:
https://docs.theinterfold.com/architecture-overview
https://docs.theinterfold.com/use-cases

Repository:
https://github.com/gnosisguild/enclave
32 changes: 32 additions & 0 deletions docs/public/robots.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
# Allow search engine crawlers
User-agent: Googlebot
Allow: /

User-agent: Bingbot
Allow: /

# Block AI training crawlers
User-agent: GPTBot
Disallow: /

User-agent: ChatGPT-User
Disallow: /

User-agent: Google-Extended
Disallow: /

User-agent: PerplexityBot
Disallow: /

User-agent: Bytespider
Disallow: /

User-agent: ClaudeBot
Disallow: /

User-agent: CCBot
Disallow: /

# Allow everything else (other search engines)
User-agent: *
Allow: /
3 changes: 1 addition & 2 deletions scripts/build-circuits.ts
Original file line number Diff line number Diff line change
Expand Up @@ -699,8 +699,7 @@ async function main() {
process.exit(1)
}
options.preset = val as CircuitPreset | 'all'
}
else if (['hash', 'build'].includes(arg)) command = arg
} else if (['hash', 'build'].includes(arg)) command = arg
}

const builder = new NoirCircuitBuilder(undefined, options)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,7 @@ import CardContent from '../components/CardContent'
import Spinner from '../components/Spinner'
import ErrorDisplay from '../components/ErrorDisplay'
import { useWizard, WizardStep } from '../../context/WizardContext'
import {
encodeComputeProviderParams,
DEFAULT_COMPUTE_PROVIDER_PARAMS,
DEFAULT_E3_CONFIG,
calculateInputWindow,
} from '@enclave-e3/sdk'
import { encodeComputeProviderParams, DEFAULT_COMPUTE_PROVIDER_PARAMS, DEFAULT_E3_CONFIG, calculateInputWindow } from '@enclave-e3/sdk'
import { getContractAddresses } from '@/utils/env-config'

/**
Expand Down
Loading