Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
51 commits
Select commit Hold shift + click to select a range
a442297
docs: add solana host-listener exploration plan and learning log
Eikix Feb 9, 2026
f472859
docs: define fast host-listener feedback loop and parity matrix
Eikix Feb 9, 2026
76702dd
docs: add solana host architecture diagram and ownership model
Eikix Feb 9, 2026
46b4b8c
docs: add mermaid diagrams to plan and learning
Eikix Feb 9, 2026
bc2b239
feat(solana): scaffold host listener PoC and feedback-loop tests
Eikix Feb 10, 2026
51960f3
chore(solana-listener): satisfy clippy in rpc source tests
Eikix Feb 10, 2026
9d72c6e
chore(ci): fix typos and rustsec audit config for solana PoC
Eikix Feb 10, 2026
c3e8c46
chore(coprocessor): retrigger ci after title lint fix
Eikix Feb 10, 2026
d0c43a4
chore(coprocessor): address solana listener review comments
Eikix Feb 10, 2026
e8f0536
chore(coprocessor): clarify solana program id listener arg
Eikix Feb 10, 2026
bd76efd
chore(coprocessor): clarify intentional ingest duplication note
Eikix Feb 10, 2026
782f776
solana-listener: tighten source naming/filtering and bump harness deps
Eikix Feb 10, 2026
d2ac237
solana-poc: add reproducible tier-3 e2e runner and refresh docs
Eikix Feb 10, 2026
9ad3ee0
solana-listener: add sub-op mapping and broaden acl gate coverage
Eikix Feb 10, 2026
b129c40
docs(solana): enforce no-doc-rot freshness protocol
Eikix Feb 10, 2026
7dad95c
solana-listener: lock v0 e2e baseline and test fixes
Eikix Feb 10, 2026
3258ef1
solana: add full TFHE symbolic op parity scaffold
Eikix Feb 10, 2026
a57228a
solana: simplify host program naming and layout
Eikix Feb 10, 2026
cebd49a
solana: deduplicate emit and emit_cpi host logic
Eikix Feb 10, 2026
50b66aa
docs(solana): refresh plan, architecture, and issue-aligned status
Eikix Feb 10, 2026
b964265
solana-listener: fail closed on missing blocks and trim dead scaffolding
Eikix Feb 10, 2026
14428d5
solana-listener: add sub tier-3 e2e parity slice
Eikix Feb 10, 2026
f2c2f37
solana: simplify to emit-only path and sync exploration docs
Eikix Feb 10, 2026
34464c9
solana host: inline instruction logic and drop impl wrappers
Eikix Feb 10, 2026
34fb462
docs: sync solana learning log after handler inlining
Eikix Feb 10, 2026
199d2b7
solana e2e: add if_then_else and cast runtime parity tests
Eikix Feb 10, 2026
7689272
solana poc: add explorer-visible cli runner with docker postgres mode
Eikix Feb 11, 2026
295523a
solana poc: add one-command explorer demo and auto-idl publish flow
Eikix Feb 11, 2026
e357031
docs(solana): doc-rot sync for plan/parity/interface/architecture
Eikix Feb 11, 2026
32bc44b
solana demo: cleanup-by-default with explicit keep flags
Eikix Feb 11, 2026
a05e274
solana tier3: expand runtime parity cases and sync runbook
Eikix Feb 11, 2026
97e6bea
solana listener: address PR feedback on otel, blockhash, and decode h…
Eikix Feb 11, 2026
7c29824
solana listener: switch to SDK-first poller and IDL-typed event decode
Eikix Feb 11, 2026
58cf353
zama-host: add anchor-debug feature to silence cfg warnings
Eikix Feb 11, 2026
13c0fe2
solana tier3: stabilize binary runtime slice and improve timeout diag…
Eikix Feb 11, 2026
988f5b5
solana-listener: address PR feedback and fix runner tenant wiring
Eikix Feb 11, 2026
bfbacf0
solana-listener: remove test-key override paths
Eikix Feb 11, 2026
04396ba
solana-poc: record full tier3 parity and fix runner default chain id
Eikix Feb 11, 2026
7ecec95
solana-listener: add EVM vs Solana ingest parity diff harness
Eikix Feb 11, 2026
4dc1b54
solana: add runtime parity diff slice against EVM smoke flow
Eikix Feb 11, 2026
64e0dc6
fix(ci): unblock solana-listener checks in PR 1951
Eikix Feb 12, 2026
c660427
fix(ci): make solana-listener otlp init clippy-safe
Eikix Feb 12, 2026
b0c7caa
Merge branch 'main' into codex/solana-host-listener-discovery
Eikix Feb 12, 2026
4079945
fix(ci): remove flaky otlp helper call from solana-listener main
Eikix Feb 12, 2026
d0bf1a7
ci(debug): instrument telemetry resolution and disable target cache
Eikix Feb 12, 2026
aaa8efa
ci(debug): fix cargo tree path in telemetry debug step
Eikix Feb 12, 2026
4a829c0
fix(ci): restore init_db compose compatibility
Eikix Feb 12, 2026
2c69550
ci: remove temporary cargo debug plumbing
Eikix Feb 12, 2026
9992f6a
solana: add global HCU window cap and revert coverage
Eikix Feb 12, 2026
4e1c47b
docs(solana): refresh host-listener exploration freshness
Eikix Feb 12, 2026
bc699f7
Merge branch 'main' into codex/solana-host-listener-discovery
Eikix Feb 13, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion coprocessor/fhevm-engine/.cargo/audit.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,10 @@

[advisories]
# The ignored vulnerability RUSTSEC-2024-0388 is due to sqlx-mysql which is not used
ignore = ["RUSTSEC-2023-0071", "RUSTSEC-2025-0111"]
ignore = [
"RUSTSEC-2023-0071",
"RUSTSEC-2025-0111",
]
# RUSTSEC-2025-0111 impacts only testcontainers
informational_warnings = ["unmaintained"]
severity_threshold = "medium"
Expand Down
7 changes: 7 additions & 0 deletions coprocessor/fhevm-engine/.cargo/deny.toml
Original file line number Diff line number Diff line change
Expand Up @@ -135,6 +135,13 @@ license-files = [
{ path = "LICENSE", hash = 0xbd0eed23},
]

[[licenses.clarify]]
crate = "solana-config-interface"
expression = "Apache-2.0"
license-files = [
{ path = "LICENSE", hash = 0xd0891cfa},
]

[licenses.private]
# If true, ignores workspace crates that aren't published, or are only
# published to private registries.
Expand Down
Loading
Loading