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.
28 lines
628 B
Plaintext
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/
|