Selectors for Bera_Module::bera_kodiakv2_swap and bera_kodiakv3_swap need to be separately added
Strategy::constructor registers most facet selectors in bulk, but two Kodiak swap selectors must be added through a separate Strategy::setSelector call from DEFAULT_ADMIN_ROLE. Folding them into the constructor saves two admin calls and prevents the deployment-time gap.
Description
In Strategy::constructor almost all existing facet selectors are added to the s.selectors mapping, which is then used by the fallback function to direct the call to the correct facet.
Almost all, the Bera_Module::bera_kodiakv2_swap and bera_kodiakv3_swap are not present here and need to be added separately using the Strategy::setSelector call limited to role 0x00 (DEFAULT_ADMIN_ROLE).
Consider including these in the general selector assignment in Strategy::constructor instead. Thus saving two calls.
Resolution
D2: Added in 5e22afc.
Cyfrin: Verified.