Sometimes to use some utility functions you need to instantiate a new instance just to do translucent.utils.<whatever>.
This is inconvenient and ideally would be done under a namespace or just free functions that you can import anywhere.
Checking what's translucent needed inside the utils class, it's only being used to get the network setting.
This could be fixed by passing the network as an extra parameter and decoupling the utility functions from any instance.
Sometimes to use some utility functions you need to instantiate a new instance just to do
translucent.utils.<whatever>.This is inconvenient and ideally would be done under a namespace or just free functions that you can import anywhere.
Checking what's translucent needed inside the utils class, it's only being used to get the network setting.
This could be fixed by passing the network as an extra parameter and decoupling the utility functions from any instance.