Tested with
Link: https://wiki.iota.org/next/iota-sdk/getting-started/rust/
pkg-config
to the dependenciesLink: https://wiki.iota.org/next/iota-sdk/getting-started/rust/#build-the-sdk-from-source
cargo build --verbose --jobs 1
Link: https://wiki.iota.org/next/iota-sdk/getting-started/rust/#client
Ran the example with cargo run --release --all-features clienttest.rs
Link: https://wiki.iota.org/next/iota-sdk/getting-started/rust/#how-to-guides
installed the IOTA SDK
is a recursive link:
Link: https://wiki.iota.org/next/iota-sdk/getting-started/rust/#how-to-guides
how-to guides
links to https://wiki.iota.org/next/iota-sdk/how-tos/accounts-and-addresses/create-mnemonic/ this page leaves a lot of open questions:
Suggestion: Create a short introduction to the how-to guides, which explains what is going to happen, with one flow that starts from creating a mnemonic to send the first tokens and then proceeds to try other things
Link: https://github.com/iotaledger/iota-sdk/blob/develop/bindings/python/README.md#install-the-iota-sdk
(optional) Create a virtual environment and use it. On Linux and macOS, you can run the following commands:
'''bash python3 -m venv iota_sdk_venv source iota_sdk_venv/bin/activate '''
Link: https://github.com/iotaledger/iota-sdk/blob/develop/bindings/python/README.md#install-the-iota-sdk
In case of venv
being a best practise in Python, make that part of the instructions and reduce confusion with optional parts in the guide
Link: https://github.com/iotaledger/iota-sdk/blob/develop/bindings/python/README.md#wallet-usage
from iota_sdk import Wallet, StrongholdSecretManager, CoinType
# This example creates a new database and account
wallet_options = {
'nodes': ['https://api.testnet.shimmer.network'],
}
secret_manager = StrongholdSecretManager("wallet.stronghold", "some_hopefully_secure_password")
wallet = Wallet('./alice-database', wallet_options, coin_type=CoinType.SHIMMER, secret_manager)
# Store the mnemonic in the Stronghold snapshot. This only needs to be done once
account = wallet.store_mnemonic("flame fever pig forward exact dash body idea link scrub tennis minute " +
"surge unaware prosper over waste kitten ceiling human knife arch situate civil")
account = wallet.create_account('Alice')
print(account)
Error
File "/home/antonio/dev/iota-sdk/bindings/python/examples/wallet_example.py", line 11
wallet = Wallet('./alice-database', wallet_options, coin_type=CoinType.SHIMMER, secret_manager)
^
SyntaxError: positional argument follows keyword argument
I tried to change the order of the arguments in L11 to
wallet = Wallet('./alice-database', wallet_options, secret_manager, coin_type=CoinType.SHIMMER)
The order of the arguments is strict and giving errors if arguments are moved:
Traceback (most recent call last):
File "/home/antonio/dev/iota-sdk/bindings/python/examples/wallet_example.py", line 11, in <module>
wallet = Wallet('./alice-database', wallet_options, secret_manager, coin_type=CoinType.SHIMMER)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
TypeError: Wallet.__init__() got multiple values for argument 'coin_type'
wallet = Wallet('./alice-database', wallet_options, coin_type=CoinType.SHIMMER, secret_manager=secret_manager)
python3 examples/client/00_get_info.py
will not work because the file 00_get_info.py
does not exist
Personal note: It is clear that most examples have been taken from the previous libraries, a structure can help to walk through people, on the other hand the name should explain what it does, this is a challenge
Example files have random names, sometimes they start with a number, sometimes not:
https://github.com/iotaledger/iota-sdk/tree/develop/bindings/python/examples/client
In https://github.com/iotaledger/iota-sdk/tree/develop/bindings/python/examples
there are two client
directories, which is confusing and unclear