cyberia-token/CHANGELOG.md

Changelog

All notable changes to the Cyberia (CAP) Token project will be documented in this file.

The format is based on Keep a Changelog, and this project adheres to Semantic Versioning.

Unreleased

[1.3.1] - 2025-11-18

Added

Fee recipient validation security feature: prevents setting contract address as fee recipient

Rolling 30-day mint cap (10M tokens per period) to prevent flash minting attacks

OFT burn function restrictions: burn() and burnFrom() removed from CAPTokenOFT for security

Slippage protection for inbound transfers: configurable max inbound slippage with 5% default

setMaxInboundSlippage() function in CAPTokenOFTAdapter for owner-controlled slippage limits

Comprehensive test coverage for new security features (200 Hardhat tests passing)

Test documentation for rolling mint window behavior and edge cases

Changed

Updated test count from 191 to 200 Hardhat tests (9 new tests for security improvements)

Total test coverage now 306 tests (200 Hardhat + 106 Foundry)

Updated README.md to document new security features

Enhanced LayerZero OFT documentation with slippage protection details

Improved test suite for ethers v5 compatibility across all files

Fixed

Fixed test selector validation for ethers v5 (manual keccak256 computation instead of .selector property)

Fixed mint cap rolling window test timing logic for proper 30-day period reset

Fixed Invariants state consistency test for proper BigNumber arithmetic

Fixed all ethers v5 compatibility issues in test suite (BigInt vs BigNumber mixing)

All 200 Hardhat tests now passing (up from 196 after security changes)

Security

✅ Fee recipient cannot be contract address (prevents accidental locking of tokens)

✅ OFT burn functions restricted to LayerZero endpoint (prevents unauthorized burning)

✅ Slippage protection on inbound transfers (default 5%, max 100%)

✅ Rolling mint cap enforcement (10M per 30-day period)

1.3.0 - 2025-10-21

Added

LayerZero V2 OFT integration deployed to testnets

  • Sepolia OFTAdapter: 0xf3d4e50Cb073d707d54Af96d157183e561212F4F
  • Arbitrum Sepolia OFT: 0x073a66b4136A6b62AbAb0914D9540b1808D01526

Pre-deployment balance checks and gas estimation in deployment scripts

New utility scripts for LayerZero:

  • scripts/check-peers.ts - Verify peer configurations and detect stale settings
  • scripts/check-oft-balance.ts - Check CAP token balance on destination chains
  • scripts/layerzero/remove-stale-peer.ts - Clean up incorrect peer configurations

New npm scripts for better workflow:

  • npm run test:all - Run all tests (297 passing: 191 Hardhat + 106 Foundry)
  • npm run test:ci - Full CI validation (linters + all tests)
  • npm run oft:check-balance - Check OFT balance on destination chains
  • npm run oft:check-peers - Verify peer configurations
  • npm run oft:test-bridge - Test cross-chain bridging

TESTNET_OWNER_ADDRESS environment variable pattern to simplify testnet configuration

Network-specific faucet links in deployment error messages

Comprehensive deployment documentation:

  • DEPLOYMENT_ISSUES.md - Detailed tracking of all deployment issues and fixes
  • DEPLOYMENT_FIXES_SUMMARY.md - Summary of all fixes applied

Changed

Updated test count from 250 to 297 tests (added LayerZero integration tests)

Improved deployment scripts with balance validation and cost estimation

Enhanced error messages in deployment scripts with actionable guidance

Updated README.md to reflect testnet deployments and new scripts

Simplified testnet environment configuration with fallback pattern

Fixed

BigInt JSON serialization error in deploy-oft.ts (line 194)

Wrong Ethereum EID configuration (30101 mainnet vs 40161 Sepolia) in configure-oft-peers.ts

Missing balance checks before deployment attempts

All TypeScript linter errors (1,234 → 0 errors)

Unused variable warnings in test files

Stale peer configuration on Arbitrum Sepolia OFT

Deployed

Sepolia OFTAdapter: 0xf3d4e50Cb073d707d54Af96d157183e561212F4F ✅ Verified

Arbitrum Sepolia OFT: 0x073a66b4136A6b62AbAb0914D9540b1808D01526 ✅ Verified

1.2.0 - 2025-10-17

Added

Uniswap V4 pool integration and documentation

Aragon DAO integration with comprehensive testing

Zodiac Safe testing and configuration

Automated deployment system for Sepolia network

GitHub Actions CI/CD pipeline with automated testing, linting, and coverage

ESLint configuration for TypeScript code quality

Prettier for consistent code formatting (TypeScript, Solidity, JSON, Markdown)

Solhint for Solidity linting and security checks

Pre-commit hooks with Husky and lint-staged

Comprehensive development guide (docs/DEVELOPMENT.md)

Contributing guidelines (CONTRIBUTING.md)

CHANGELOG.md for version tracking

NPM scripts for linting and formatting:

  • npm run lint - Lint TypeScript
  • npm run lint:fix - Auto-fix TypeScript issues
  • npm run lint:sol - Lint Solidity
  • npm run lint:sol:fix - Auto-fix Solidity issues
  • npm run format - Format all code
  • npm run format:check - Check code formatting

Changed

Restructured documentation for better organization

Updated QUICK_START guide with localhost configuration

Updated OpenZeppelin deployment information

Updated README.md with linting commands and new documentation links

Improved project organization and tooling

Fixed

Prevented prettier from formatting submodule files

Removed

Removed unused @nomicfoundation/hardhat-ignition-ethers dependency

1.0.0 - 2024-10-14

Added

Initial release of Cyberia (CAP) Token

ERC-20 token with EIP-2612 Permit support

ERC-20 Votes for governance compatibility

UUPS upgradeable pattern using OpenZeppelin

Configurable tax system:

  • Transfer tax (default: 1%)
  • Sell tax (default: 1%)
  • Buy tax (default: 0%)
  • Global tax cap: 10% (sum of all three taxes)

24-hour timelock for tax changes

AMM pool detection for buy/sell tax logic

Pool-to-pool transfer tax exemption

Burn mechanism (fee recipient = zero address)

Owner-gated minting with max supply cap (42M tokens)

ReentrancyGuard protection on all transfers

Comprehensive test suite:

  • 99 tests covering core functionality
  • Security tests (reentrancy, access control, timelock)
  • Edge case tests
  • Integration tests (Aragon DAO, mainnet fork)
  • Advanced security tests (EIP-2612, storage collisions)
  • Checkpoint tests
  • Invariant tests
  • Timelock boundary tests

Deployment scripts for localhost, Sepolia, and mainnet

Contract upgrade scripts

Configuration scripts for post-deployment setup

Etherscan verification scripts

Zodiac roles validation script

TypeChain type generation for TypeScript

Gas reporting functionality

Coverage reporting with Solidity coverage

Comprehensive documentation:

  • Governance guide
  • Deployment guide
  • Quick start guide
  • Aragon integration guide
  • Gnosis Safe setup guide

Security

OpenZeppelin Contracts v5.4.0 (audited libraries)

ReentrancyGuard on transfer logic

Access control with Ownable pattern

Timelock mechanism for critical parameter changes

Max supply cap enforcement

Tax validation and boundary checks

Deployed

Sepolia Testnet: 0xA419fD4e3BA375250d5D946D91262769F905aEED ✅ Verified


Release Types

Major (X.0.0)

Breaking changes to contract interface

Major feature additions requiring upgrade

Security-critical changes

Minor (0.X.0)

New features (backward compatible)

New administrative functions

Documentation improvements

Patch (0.0.X)

Bug fixes

Security patches

Configuration updates

Documentation fixes


Upgradeability

This contract uses the UUPS (Universal Upgradeable Proxy Standard) pattern. Upgrades are:

Owner-only (DAO governance)

Require proposal and execution through governance

Should include comprehensive testing before deployment

Should maintain storage layout compatibility


Security Notices

Current Status

⚠️ Not audited: This contract has not undergone a professional security audit. A third-party security audit is required before mainnet deployment.

Reporting Vulnerabilities

Please report security vulnerabilities privately via:

GitHub Security Advisories

Email: security@cyberia.to (if available)

Do NOT open public issues for security vulnerabilities.


Links

Repository: https://github.com/cyberia-to/cyberia-token

Documentation: docs/

Sepolia Deployment: https://sepolia.etherscan.io/address/0xA419fD4e3BA375250d5D946D91262769F905aEED


Synonyms

space-pussy/CHANGELOG
Change Log [Unreleased](https://github.com/cybercongress/go-cyber/tree/HEAD) [Full Changelog](https://github.com/cybercongress/go-cyber/compare/v0.1.6...HEAD) **Closed issues:** Disable karma calculations [\#552](https://github.com/cybercongress/go-cyber/issues/552) Upgrade to Launchpad…
radio/CHANGELOG
Changelog All notable changes to iroh will be documented in this file. [0.96.1](https://github.com/n0-computer/iroh/compare/v0.96.0..0.96.1) - 2026-02-06 🐛 Bug Fixes *(iroh)* Use latest portmapper to avoid duplicate dependencies ([#3903](https://github.com/n0-computer/iroh/issues/3903)) -…
trident/CHANGELOG
Changelog Kelvin versioning: versions count down toward 0K (frozen forever). Lower is colder. Colder is more stable. 0.1.0 / 512K — Smelt (2026-02-26) First public release. Hot, experimental, not production ready. Compiler Full pipeline: source → lexer → parser → AST → typecheck → TIR → optimizer →…
go-cyber/CHANGELOG
Change Log [Unreleased](https://github.com/cybercongress/go-cyber/tree/HEAD) [Full Changelog](https://github.com/cybercongress/go-cyber/compare/v0.1.6...HEAD) **Closed issues:** Disable karma calculations [\#552](https://github.com/cybercongress/go-cyber/issues/552) Upgrade to Launchpad…
bostrom-mcp/CHANGELOG
Changelog [0.8.3] - 2026-03-19 Changed Made `li_mine_proof` tool always available — removed `#[cfg(feature = "mining")]` conditional compilation gates Made `uhash-prover` and `uhash-core` non-optional dependencies (mining is always built-in) Removed `[features]` section from Cargo.toml Fixed…
radio/iroh-willow/CHANGELOG
Changelog All notable changes to iroh will be documented in this file. [0.28.1](https://github.com/n0-computer/iroh/compare/v0.28.0..v0.28.1) - 2024-11-04 🐛 Bug Fixes Switch to correctly patched quic-rpc and iroh-quinn -…
radio/iroh-ffi/CHANGELOG
v0.0.6 (2023-08-28) Initial Release, mainly to test package consumption flow across different platforms. Only a subset of the [commands api](https://iroh.computer/docs/commands) is supported. Features add 'set_log_level' to control iroh logging from other languages…
radio/iroh-docs/CHANGELOG
Changelog All notable changes to iroh-docs will be documented in this file. [0.96.0](https://github.com/n0-computer/iroh-docs/compare/v0.95.0..0.96.0) - 2026-01-29 ⚙️ Miscellaneous Tasks Upgrade to `iroh` 0.96 -…
radio/iroh-gossip/CHANGELOG
Changelog All notable changes to iroh-gossip will be documented in this file. [0.96.0](https://github.com/n0-computer/iroh-gossip/compare/v0.95.0..0.96.0) - 2026-01-29 ⛰️ Features Add `neighbors()` method to `GossipTopic` ([#124](https://github.com/n0-computer/iroh-gossip/issues/124)) -…
radio/iroh-blobs/CHANGELOG
Changelog All notable changes to iroh-blobs will be documented in this file. [0.35.0](https://github.com/n0-computer/iroh-blobs/compare/v0.34.1..0.35.0) - 2025-05-12 ⛰️ Features [**breaking**] Allow configuring the downloader when creating a blobs protocol handler…
cyber-ts/packages/cyber-ts/CHANGELOG
Change Log All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. 0.1.3 (2024-08-22) **Note:** Version bump only for package @cybercongress/cyber-ts 0.1.2 (2024-08-22) **Note:** Version bump only for…

Neighbours