iota-client 1.4.0

The official, general-purpose IOTA client library in Rust for interaction with the IOTA network (Tangle)
Documentation
1
2
3
4
5
6
7
8
9
import CodeBlock from '@theme/CodeBlock';
import generate_seed from '!!raw-loader!../../../../../bindings/python/examples/02_generate_seed.py';

You can generate a seed, for example, using SHA256 algorithm on some random input generated by cryptographically secure
pseudo-random generator, such as `os.urandom()`:

<CodeBlock className="language-javascript">
    {generate_seed}
</CodeBlock>