fix(aeon): correct wallet roles + address_type from direct AEON team declaration#137
Merged
Merged
Conversation
…ation Treasury and deployer wallets confirmed directly by AEON team 2026-06-23: - 0xf1e958... → role: treasury, address_type: eoa, label: likely treasury - 0x67976c... → role: deployer, address_type: eoa, label: candidate wallet Previously both were role: operator with no address_type set, which caused both wallets to fail the books-eligibility double gate (address_type was empty → defaulted to unknown → excluded). With address_type: eoa now set, both wallets pass isBooksEligibleWallet() and AEON becomes manifest_attributed. Run address classification to confirm if treasury is a Gnosis Safe (treasury_contract) rather than eoa. Also updates verificationStatus: Verified and evidence source to reflect direct team declaration. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01RHDXdEbGQsn88zks713gye
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What
Fixes the AEON wallet entries in
registry/data.tsbased on addresses confirmed directly by the AEON team.The bug
Both AEON wallets had:
role: "operator"— wrong, no differentiationaddress_typeset — empty defaults to"unknown", which fails theisBooksEligibleWallet()double gateResult: AEON had
evidenceSource: "manifest"but was still not books-eligible because the address type check failed silently.The fix
0xf1e958...operatortreasuryeoa0x67976c...operatordeployereoaBoth now pass
isBooksEligibleWallet()→ AEON becomesmanifest_attributed→ books run.Note
Treasury address (
0xf1e958...) is set toaddress_type: "eoa"as a safe default. If it's a Gnosis Safe, running the address classification admin route will update it totreasury_contractin the DB — no code change needed.Also updates:
verificationStatus: "Verified"(was"Wallets Declared")"Direct team declaration"🤖 Generated with Claude Code
https://claude.ai/code/session_01RHDXdEbGQsn88zks713gye
Generated by Claude Code