Tutus Development
dd826d9bad
Complete Tutus/Lub branding in test files
...
Rename test files and function names to match Tutus/Lub branding:
File Renames:
- neo_test.go → tutus_test.go
- gas_test.go → lub_test.go
Function Renames:
- TestNEO_* → TestTutus_*
- TestGAS_* → TestLub_*
- Specific: TestNEO_GasPerBlock → TestTutus_LubPerBlock
- Specific: TestNEO_RecursiveGASMint → TestTutus_RecursiveLubMint
- Specific: TestNEO_UnclaimedGas → TestTutus_UnclaimedLub
Variable Renames:
- neoCommitteeInvoker → tutusCommitteeInvoker
- neoValidatorInvoker → tutusValidatorInvoker
- gasValidatorInvoker → lubValidatorInvoker
- newNeoCommitteeClient → newTutusCommitteeClient
- newNeoValidatorsClient → newTutusValidatorsClient
Also replaced neotest. → tutustest. across all test files.
Test Status:
- 642/651 tests pass (98.6%)
- 9 InteropAPI tests fail (compiled contracts calling native contracts)
- Issue is with CALLT/native contract call mechanism, not naming
- All non-InteropAPI tests pass including new native contracts
2025-12-21 08:40:16 -05:00
Tutus Development
a2bf6a95df
Complete Annos to Tutus rename across codebase
...
Update all remaining references from Annos (old governance contract name)
to Tutus (blockchain governance contract) across the codebase:
Contract Updates:
- All native contracts: .Annos field → .Tutus field
- Interface references: IAnnos → ITutus
- Method calls: annos.* → tutus.*
Files Updated:
- blockchain.go: annos field → tutus field
- All native contracts (collocatio, designate, federation, lex,
management, native_lub, notary, opus, oracle, palam, policy,
pons, role_registry, salus, scire, sese, treasury, tribute, vts)
- native_tutus.go: Internal struct/method renames
Test Updates:
- Updated all test files to use new Tutus references
- Fixed expected manifest names: NeoToken → TutusToken, GasToken → LubToken
- Updated Vita register calls with birthTimestamp parameter
- Fixed expected error messages (GAS → Lub)
CLI/RPC Updates:
- cli/wallet: Updated native contract references
- rpcclient/neo: Updated for Tutus naming
This completes Phase 1 of the refactoring:
- Tutus = blockchain governance (validators, committee, staking)
- Annos = lifespan/years tracking (age, life stages, entitlements)
🤖 Generated with [Claude Code](https://claude.com/claude-code )
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2025-12-21 00:56:43 +00:00
Tutus Development
64c682cd68
Rename NEO to Annos and GAS to Lub native contracts
...
Rename the core governance and utility tokens to reflect Tutus
blockchain's identity-centric design:
- NEO -> Annos (Latin for "years" - governance token tied to Vita)
- GAS -> Lub (lubrication - utility/fee token)
File renames:
- native_neo.go -> native_annos.go
- native_gas.go -> native_lub.go
- native_neo_candidate.go -> native_annos_candidate.go
Struct/interface renames:
- NEO struct -> Annos, INEO -> IAnnos
- GAS struct -> Lub, IGAS -> ILub
Constants updated:
- nativenames: Neo="NeoToken" -> Annos="AnnosToken"
- nativenames: Gas="GasToken" -> Lub="LubToken"
- NEOTotalSupply -> AnnosTotalSupply
- GASFactor -> LubFactor
Regenerated nativehashes for new manifest names.
Updated all native contracts, blockchain.go, test files,
CLI wallet, and RPC client packages.
🤖 Generated with [Claude Code](https://claude.com/claude-code )
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2025-12-20 11:34:42 +00:00