-
Notifications
You must be signed in to change notification settings - Fork 2
Guide
Ruslan Tahiiev edited this page Apr 29, 2022
·
3 revisions
All questions note here (create your own page).
- Must have to know rust-book.
- Alternative to rust-book rust-by-examples.
- Rust exercises (look up for exercises directory).
- Usefully videos, recommended by mentor Alexander - youtube channel.
- Installation guide
- Tutorials
-
Key concepts
- Runtime
- Extrinsics
- Account
- Transaction pool
- Session keys
- Weight
- Execution
- Off-chain (Optional)
- Storages
Recommend to use Ubuntu
- Docker
- Docker-compose
sudo apt update sudo apt install docker-compose
- Clion. Can be installed with Ubuntu software.
-
Postgres
Also you should change postgres user password to postgres, for this use following comands:
sudo -u postgres psql
ALTER USER postgres WITH PASSWORD 'postgres';
- DataGrip. Can be installed with Ubuntu software.