npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@interfold/contracts

v0.12.1

Published

Interfold is an open-source protocol for Encrypted Execution Environments (E3).

Readme

Interfold Smart Contracts

Contract Overview

| Contract | Description | | ------------------------------- | ------------------------------------------------------------------------------------------------ | | Interfold.sol | Main protocol coordinator — handles E3 requests, param sets, fee routing, and output publication | | CiphernodeRegistryOwnable.sol | Ciphernode registration and committee selection | | BondingRegistry.sol | FOLD token bonding for ciphernodes; tracks bond amounts and manages bond lifecycle | | InterfoldToken.sol | FOLD governance/utility token | | InterfoldTicketToken.sol | Collateral-backed tickets used by ciphernodes for sortition entry | | SlashingManager.sol | Fault attribution and slashing for dishonest ciphernodes (accusation → quorum → slash) | | E3RefundManager.sol | Issues refunds to requesters when an E3 fails | | test/MockE3Program.sol | Stateless BFV program for protocol tests without application-specific rules |

Audits

Contract audit reports are kept in audits/.

Key Interfaces

| Interface | Description | | ------------------ | ----------------------------------------------------------------------------- | | IE3Program | Implement this to write a custom E3 program (defines validate and verify) | | IInterfold | External interface to the main Interfold contract | | IBondingRegistry | Interface for bonding queries and management | | ISlashingManager | Interface for accusation and slashing | | IE3RefundManager | Interface for the refund manager | | IComputeProvider | Interface for compute provider integration |

Importing the contracts, interfaces or types

To install, run

pnpm add @interfold/contracts

If writing a new E3 program, you can import the necessary interfaces by writing something similar to:

import {
    IE3Program,
} from "@interfold/contracts/contracts/interfaces/IE3Program.sol";

contract MockE3Program is IE3Program {...}

See the stateless mock program or its test-only failure harness for examples.

To deploy

Phase 1 deploys FOLD plus the CCA sale:

pnpm sale --network sepolia --action prepare --safe 0xSafe
pnpm sale --network sepolia --action plan --config packages/interfold-contracts/deploy/sale/sepolia-sale.config.json
pnpm sale --network sepolia --action deploy --config packages/interfold-contracts/deploy/sale/sepolia-sale.config.json --propose-safe
pnpm sale --network sepolia --action validate --config packages/interfold-contracts/deploy/sale/sepolia-sale.config.json --allow-pending-owner

To deploy a Predicate-gated sale, add Predicate at prepare time:

pnpm sale --network sepolia --action prepare --safe 0xSafe \
  --predicate-registry 0xPredicateRegistry \
  --predicate-policy-id x-your-policy

The Safe owners then approve the queued sale activation in the Safe UI. For a plain sale this is FOLD.acceptOwnership(); for a Predicate-gated sale the same batch also calls PredicateValidationHook.setAuction(<CCA auction>). After that, rerun sale validation without --allow-pending-owner.

auction.auctionStepsData is generated from the same packed uint64 schedule format used by Uniswap's CCA tooling:

pnpm cca:schedule -- --config deploy/sale/mainnet-sale.config.json --update-config

The protocol deploy happens after the sale/TGE prep and upgrades the existing placeholder bonding registry proxy:

pnpm protocol --network sepolia --action check-config --config packages/interfold-contracts/deploy/protocol/sepolia-protocol.config.json
pnpm protocol --network sepolia --action deploy --config packages/interfold-contracts/deploy/protocol/sepolia-protocol.config.json
pnpm protocol --network sepolia --action validate --config packages/interfold-contracts/deploy/protocol/sepolia-protocol.config.json

Run check-config before deploy. This action validates the network, required contract addresses, ProxyAdmin owner, and initial E3 program owner. It does not send a transaction.

Set protocolOwner to the contract that owns and configures the protocol. Set the optional safe field to the same address only when the protocol owner is a Safe. The deploy action writes a governance transaction file. Use --propose-safe only for a Safe owner. Submit the transaction file through the native proposal flow for another governance contract.

For an Aragon Admin plugin deployment, set protocolOwner to the DAO address and add the governance object:

{
  "protocolOwner": "0xInterfoldDao",
  "governance": {
    "adminPlugin": "0xAdminPlugin",
    "proposerSafe": "0xSafeThatCanExecuteAdminProposals",
    "proposalMetadata": "0x"
  }
}

The deploy action writes two files in this mode:

  • <name>.safe-transactions.json: the raw DAO action list, for review.
  • <name>.governance.safe-builder.json: one Safe Builder transaction that calls AdminPlugin.executeProposal(...) with the raw actions.

Import the Safe Builder wrapper into the configured proposer Safe. Do not import the raw action list into the Safe, because those calls must execute from the DAO.

Choose one initial E3 program in the protocol configuration. For an existing program, set e3Programs to its deployed address. The deploy action rejects an address without contract code. Set bindInitialE3Program to bind a compatible program in the governance transaction.

Set deployMockE3Program to true and set e3Programs[0] to the zero address to deploy MockE3Program in the same run. This stateless program applies no application-specific input or output rules. It has no owner, controller, setters, or reentrancy hooks. Interfold still verifies each BFV ciphertext proof and committee decryption proof. Do not set bindInitialE3Program for this option.

Interfold.initialize registers the selected program before the governance transaction executes. Later registrations require an owner transaction.

Set verifiers.deploy to true to deploy the generated BFV verifier stack. Set ciphertextVerifier to the deployed application ciphertext verifier.

The fee token and the ticket collateral token have separate configuration fields. For the planned launch, set feeToken to USDS and set ticketUnderlyingToken to sUSDS. Set both decimal values to 18. Set ticketPrice and each ticket slash penalty in sUSDS share units. Do not copy the six-decimal mock-token values into a release configuration.

The canonical outputs live under packages/interfold-contracts/deploy/. The scripts also mirror addresses into deployed_contracts.json for older tasks and verification.

E3 pricing and protocol revenue

Protocol revenue comes from successful E3 request fees, not from ticket purchases. Tickets are collateral-backed sortition capacity deposits for ciphernodes. The planned launch uses sUSDS shares. Nodes can redeem their shares after an exit, while the protocol routes slashed shares through the slashed-fund paths.

The launch pricing model is cost-plus:

modeled base cost = key generation + coordination + availability
                  + decryption + publication + verification
gross E3 fee      = modeled base cost * (1 + marginBps / 10_000)
treasury revenue  = gross E3 fee * protocolShareBps / 10_000
CN reward pool    = gross E3 fee - treasury revenue

Launch defaults set marginBps = 1000 and protocolShareBps = 182. In plain English: requests pay a 10% margin over modeled ciphernode cost, and the protocol treasury receives about 1.82% of the gross E3 fee. Because the treasury share is applied to the gross fee in-contract, 1.82% gross is approximately 20% of the 10% margin; the remaining fee is distributed to active committee nodes.

Do not configure protocolShareBps = 2000 unless the intent is for the treasury to receive 20% of the whole E3 fee. With a 10% margin, that would pay ciphernodes less than the modeled base cost.

Localhost deployment

If you are running Interfold locally, you can first start a local hardhat (or Anvil) node, then deploy the contracts using the following commands:

pnpm hardhat node
pnpm clean:deployments
pnpm sale --network localhost --action full-test --mock-cca --safe 0xYourLocalSafeOrOperator
pnpm protocol --network localhost --action deploy --config packages/interfold-contracts/deploy/protocol/localhost-protocol.config.json --sync-integration-config

This will ensure that you are a local node running, as well as that there are no conflicting deployments stored in localhost.

Configuration

Using Environment Variables (Development)

For development, you can set your private key in a .env file:

# .env
PRIVATE_KEY=0xac0974bec39a17e36ba4a6b4d238ff944bacb478cbed5efcae784d7bf4f2ff80

Using Hardhat Configuration Variables (Production)

For production, it's recommended to use Hardhat's configuration variables system:

# Set your configuration variable (securely stored)
npx hardhat vars set PRIVATE_KEY

Then update hardhat.config.ts to use configuration variables:

import { vars } from "hardhat/config";

const privateKey = vars.get("PRIVATE_KEY", "");

Registering a Ciphernode

The tasks use the first signer configured in your Hardhat network configuration.

To add a ciphernode to the registry:

pnpm ciphernode:add --network [network]

Options:

  • --ciphernode-bond-amount: Amount of FOLD to bond (default: 1000 FOLD)
  • --ticket-amount: Amount of the configured ticket collateral token

For testing/development, you can also use the admin task to register any ciphernode address:

pnpm ciphernode:admin-add --network localhost --ciphernode-address [address]

To request a new committee, run

pnpm run hardhat committee:new --network [network]

To publish the public key of a committee, run

pnpm run hardhat --network [network] committee:publish --e3-id [e3-id] --nodes [node address],[node address] --public-key [publickey] --proof [hex-encoded pk proof]

To activate an E3, run

pnpm run hardhat --network [network] e3:activate --e3-id [e3-id]

To publish an input for an active E3, run

pnpm run hardhat --network [network] e3:publishInput --e3-id [e3-id] --data [input data]