Skip to content

Instantly share code, notes, and snippets.

View suenot's full-sized avatar
🕸️
Deep

Eugen Soloviov suenot

🕸️
Deep
View GitHub Profile
@suenot
suenot / deep-chain-cheatsheet.md
Last active June 18, 2024 11:22
deep-chain commands

Запуск валидаторской ноды

deepchain start --compute-gpu=false --search-api=false --home ./testnet

Список кошельков

deepchain keys list --home ./testnet --keyring-backend=test

update all in local git

git filter-branch --force --env-filter '
if [ "$GIT_AUTHOR_NAME" = "Your Old Name" ]; then
    GIT_AUTHOR_NAME="Your New Name"
    GIT_AUTHOR_EMAIL="[email protected]"
    GIT_COMMITTER_NAME="Your New Name"
    GIT_COMMITTER_EMAIL="[email protected]"
fi
' --tag-name-filter cat -- --all
@suenot
suenot / uv
Created March 26, 2025 10:58
uv
## UV Virtual Environment Setup Plan
1. Verify uv installation
uv --version # Should output 0.6.5
2. Create virtual environment with specified Python version
uv venv -p /opt/homebrew/bin/python3.11 .venv
* Creates environment in ./.venv directory