whats the difference between make_seed(nbits=256) and make_seed(256)
should we do seed = make_seed(nbits=128, language='english', type='segwit')
to avoid any errors or security issues?
If you want to specify the seed type, you should use: seed_type="seed_type"
Although it isn't very useful, since the command already generates segwit type seeds by default, but if for some reason you want to generate electrum legacy seeds, use:
make_seed(128, seed_type="standard")
Language need not apply.