aere-contracts/.gitignore
Aere Network c0fcf3df46
Some checks failed
contracts-ci / Install (lockfile) → compile → full test suite (push) Has been cancelled
contracts-ci / PQC known-answer tests (NIST vectors) (push) Has been cancelled
contracts-ci / Coverage (scoped, with artifacts) (push) Has been cancelled
Initial public release
Aere Network public source. Everything here can be checked against the live
chain (chain id 2800, https://rpc.aere.network).

Scope note, stated up front rather than buried: consensus on chain 2800 is
classical secp256k1 ECDSA QBFT. The post-quantum work in this repository is at
the signature, precompile, account and transport layers. Nothing here makes the
consensus post-quantum, and no document in it should be read as claiming so.
2026-07-20 01:31:51 +03:00

28 lines
628 B
Plaintext

# Dependencies (install with `npm ci`, which reads package-lock.json)
node_modules/
# Hardhat production build outputs
cache/
artifacts/
# Coverage run outputs. Separate from the production build on purpose, so an
# instrumented build can never be mistaken for, or overwrite, the real one.
# See hardhat.config.coverage.js.
cache-coverage/
artifacts-coverage/
coverage/
coverage.json
*.lcov
# Local environment. NEVER commit a populated .env: this repository is public
# and holds no keys by design. See REPRODUCE.md, "The secrets boundary".
.env
.env.*
!.env.example
# Editor / OS noise
.DS_Store
Thumbs.db
.idea/
.vscode/