Skip to main content

Config Settings Snapshot

Table Metadata​

PropertyConfiguration
Natural Key(s)config_setting_name, valid_from
Partition Field(s)N/A
Clustered Field(s)N/A
Documentationdbt docs

This table captures historical snapshots of the Stellar network's configuration settings. It unpivots the individual setting columns from the config_settings table into one row per setting per change, and tracks the validity of each value over time.

Each row represents a specific setting related to transaction limits, ledger constraints, fees, and other network parameters. The valid_from and valid_to timestamps identify when each setting was active.

Column Details​

NameDescriptionData TypeDomain ValuesRequired?Notes
config_setting_nameThe name of the configuration setting (metric) extracted from the source table. Each row represents a different setting tracked over time.STRINGYesNatural Key. Corresponds to a column name on the bronze Config Settings table.
setting_valueThe numeric value associated with the configuration setting. This value represents the active limit, fee, or constraint set by the network.INTEGERYes
valid_fromThe timestamp when this snapshot row was first inserted and became effective. This helps in tracking changes over time.TIMESTAMPYesNatural Key.
valid_toThe timestamp when this row is no longer valid. If null, the setting is currently active.TIMESTAMPNo
is_current_settingBoolean flag indicating if the setting is currently in effect (true if valid_to is null).BOOLEANYes