Update all module paths and import statements from github.com/tutus-one
to git.marketally.com/tutus-one for self-hosted Git server migration.
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude <noreply@anthropic.com>
Ancora enhancements:
- Add audit logging integration for all operations
- Provider registration, data root updates, erasure operations
- getAuditLog query method for GDPR transparency
Test infrastructure:
- Add vitahelper package for registering test Vitas
- Add tutustest helpers: crosscontract, events, government, roles
- Fix DataTypePresence constant in Ancora test
State updates:
- Fix state_anchors TreeAlgorithm enum values
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
Update test expectations for .one TLD block addition at index 14:
Block Definitions:
- Add blockAddRoot and txAddRoot for block 14 (add .one root to NNS)
- Add blockGASBounty3 (block 18) and blockGASBounty4 (block 24)
Sent Array:
- Add entry for block 14 addRoot transaction fees
- Total Sent entries: 26 (was 25)
Received Array:
- Add GAS bounty entries for blocks 18 and 24
- Total Received entries: 9 (was 8)
Index Updates:
- Sent indices in limit tests: shifted by +1 for indices >= 12
- Received indices in limit tests: shifted by +1 for indices >= 1
- checkNep17Transfers: updated to include all 26 sent and 9 received
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
Update NEP11 transfer Index values in server_test.go to account for
.one TLD registration block added at index 14:
- 21 → 22 (NFSO transfer block)
- 18 → 19 (NFSO mint block)
- 14 → 15 (NNS register block)
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
- Add .one TLD registration to NNS at block #14
- Change domain from neo.com to tutus.one
- Update all block indices after #14 (+1)
- Update stateroot hash for block #21
- Update faultedTxHashLE and deploymentTxHash
- Update nnsToken1ID to hex of tutus.one
- Replace neo.com with tutus.one in all test parameters
- Update VM script byte arrays for new domain length
- Regenerate testblocks.acc
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
Test fixture updates after token symbol changes:
- CLI: Add TUT/LUB symbol matching in nep17.go token lookup
- CLI: Update fee display from GAS to LUB in query output
- CLI: Replace NEO:/GAS: with TUT:/LUB: in test balance strings
- Config: Rename InitialGASSupply -> InitialLubSupply
- Examples: Add replace directives to all example go.mod files
Token mapping:
- TUT (symbol) / Tutus (display name) - governance token
- LUB (symbol) / Lub (display name) - utility/fee token
Test status: 110 PASS, 11 FAIL (90.9% pass rate)
Remaining failures are Windows file locking issues, not token-related.
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
- Fix neogointernal -> tutusinternal in compiler/analysis.go
This was causing CALLT instructions to not be generated when
compiling contracts that call native contract methods
- Rename InitialGASSupply -> InitialLubSupply across codebase
- Update log messages from 'gas' to 'Lub'
- Fix nativehashes.Lub -> nativehashes.LubToken in query_test.go
Complete the Tutus/Lub rename across the interop layer:
Package Renames:
- pkg/interop/native/neo → pkg/interop/native/tutus
- pkg/interop/native/gas → pkg/interop/native/lub
Hash Updates:
- Update Hash constants to match new TutusToken/LubToken hashes
- Update all hardcoded contract hashes in test manifests
Method Renames (native contract):
- getGasPerBlock → getLubPerBlock
- setGasPerBlock → setLubPerBlock
- unclaimedGas → unclaimedLub
Struct Field Renames:
- AccountState.LastGasPerVote → LastLubPerVote
Import Updates:
- All files importing interop/native/neo now use interop/native/tutus
- All files importing interop/native/gas now use interop/native/lub
- Package usage: neo.* → tutus.*, gas.* → lub.*
Test Updates:
- native_test/neo_test.go: Updated method names and embedded contract
- native_test/common_test.go: LubPerBlock naming
- compiler/native_test.go: Use cs.Tutus()/cs.Lub() methods
- All test manifests updated with new hashes
RPC Client Updates:
- rpcclient/neo/neo.go: setLubMethod constant and method calls
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
Update test files that still referenced nativenames.Neo, nativenames.Gas,
nativehashes.NeoToken, and nativehashes.GasToken:
- cli/nep_test/nep11_test.go
- cli/nep_test/nep17_test.go
- cli/query/query_test.go
- internal/contracts/contracts_test.go
- pkg/core/bench_test.go
- pkg/core/blockchain_neotest_test.go
- pkg/core/custom_native_test.go
- pkg/core/interop/runtime/ext_test.go
- pkg/core/native/invocation_test.go
- pkg/services/notary/core_test.go
- pkg/services/rpcsrv/server_test.go
- pkg/services/stateroot/service_test.go
Note: Some tests (TestNEO_*, TestManagement_GenesisNativeState) still fail
due to hardcoded contract hashes from the original NEO codebase. These
tests would require updating the expected hashes or the test contracts.
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>