This section provides deep dives into the DeFi protocols tracked by the Gnosis Chain analytics platform. While the dbt Model Catalog — Contracts lists all auto-generated decoded models, this section explains how each protocol works, what the decoded data means, and how to query it effectively.
All protocol models use the decode_logs and decode_calls macros to produce a decoded_params column of type Map(String, String). Access individual fields with:
decoded_params['reserve']-- address of the reserve assetdecoded_params['amount']-- raw token amount (divide by 10^decimals)decoded_params['liquidityRate']-- interest rate in RAY (divide by 1e27)
Every Safe ever deployed on Gnosis Chain, with full owner mutation history (SafeSetup / AddedOwner / RemovedOwner / ChangedThreshold) and module-state events (EnabledModule / DisabledModule / ChangedGuard). The foundation for the GP and Gnosis App stacks.
Per-Safe module topology (Delay + Roles + Spender), spender delegate assignments, daily-limit allowance state, and Delay-module activity (TransactionAdded). Includes a Mixpanel cardholder bridge using a union of three identity roles (initial owner, delegate, Safe self).