You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently the funnel/networks configuration has some variables that can't be changed after the first setup. For example, changing the delay setting will change the block mapping from parallel networks to the main one. Also with the recent introduction of transaction hashes, some parameters like the chainId shouldn't also be changed. Additionally, changing the order of the entries in the file could also lead to different order of events.
We can't just store a hash of the config like with the extensions though, since there are some settings that should be allowed to change (the rpc endpoint, rate-limiting parameters, etc).
We may want to do something like:
Store the configurations in a new table in the db, and on startup validate only the settings that can't change. Also validate the order.
Store only the things that can't change and validate those.
Store a hash of the subset of the elements that can't change (maybe normalized)
The text was updated successfully, but these errors were encountered:
Currently the funnel/networks configuration has some variables that can't be changed after the first setup. For example, changing the
delay
setting will change the block mapping from parallel networks to the main one. Also with the recent introduction of transaction hashes, some parameters like the chainId shouldn't also be changed. Additionally, changing the order of the entries in the file could also lead to different order of events.We can't just store a hash of the config like with the extensions though, since there are some settings that should be allowed to change (the rpc endpoint, rate-limiting parameters, etc).
We may want to do something like:
The text was updated successfully, but these errors were encountered: