mirror of
https://github.com/logos-blockchain/lez-programs.git
synced 2026-08-25 14:11:09 +00:00
Validates the Q2 privacy features (shield/deshield, private-to-private transfers, existing-account crediting, group-owned accounts, and private PDAs) against the token and ata program flows, which previously ran almost entirely in public context. Adds the key_protocol dependency for GMS-based group-account tests and introduces a docs/privacy-test-matrix.md tracker mapping each program/instruction/ privacy-dimension combination to pass, fail, or not-expressible, with root-cause findings for each gap (notably that private PDAs are structurally unsupported by any program currently deriving addresses via for_public_pda). Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
24 lines
845 B
TOML
24 lines
845 B
TOML
[package]
|
|
name = "integration_tests"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
nssa = { workspace = true }
|
|
nssa_core = { workspace = true, features = ["host", "test_utils"] }
|
|
clock_core = { git = "https://github.com/logos-blockchain/logos-execution-zone.git", tag = "v0.2.0-rc6" }
|
|
key_protocol = { git = "https://github.com/logos-blockchain/logos-execution-zone.git", tag = "v0.2.0-rc6" }
|
|
amm_core = { workspace = true }
|
|
token_core = { workspace = true }
|
|
ata_core = { workspace = true }
|
|
stablecoin_core = { workspace = true }
|
|
twap_oracle_core = { workspace = true }
|
|
token-methods = { path = "../token/methods" }
|
|
amm-methods = { path = "../amm/methods" }
|
|
ata-methods = { path = "../ata/methods" }
|
|
stablecoin-methods = { path = "../stablecoin/methods" }
|
|
twap-oracle-methods = { path = "../twap_oracle/methods" }
|