Skip to content

Cyfrin/web3py-favorites-cu

Repository files navigation

web3py Favorites

This is from the Cyfrin Updraft Vyper Course.

Getting Started

Prerequisites

  • uv
    • You'll know you've done it right if you can run uv --version and see a version number.
  • git
    • You'll know you've done it right if you can run git --version and see a version number.
  • anvil
    • You'll know you've done it right if you can run anvil --version and see a version number.
    • Helpful shortcut:
# For bash
echo "source $HOME/.bashrc >> $HOME/.bash_profile"

# For zsh
echo "source $HOME/.zshenv >> $HOME/.zprofile"

Optional prerequisites

If you're an advanced python user, you can use virtual environments and classic python/pip to work here.

Optional Gitpod or CodeSpaces

If you can't or don't want to run and install locally, you can work with this repo in Gitpod. If you do this, you can skip the clone this repo part.

Installation

git clone https://github.com/cyfrin/web3py-favorites-cu
cd web3py-favorites-cu

uv

uv sync

pip/python

python -m venv ./venv
source ./venv/bin/activate
pip install -r requirements.txt

Quickstart

uv run hello.py # for UV
# or
python hello.py # for pip/python

Deploying with Python

1. Setup Tenderly Virtual Network

Go to tenderly and sign up, and then select Create Virtual TestNet.

Tenderly Virtual Network

Your config should look like this:

Tenderly Virtual Network

2. Fund a wallet

Select your network, and hit Fund Account and paste in an address.

We recommend using 0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266 since it's a well-known testing address.

Tenderly Virtual Network

3. Get your RPC URL

Create a .env file, get your RPC URL from the tenderly dashboard, and add it to your .env file.

Tenderly Virtual Network

Example .env:

RPC_URL=https://asdfasdfs

The Unsafe Way

4. Run the unsafe version

Add your private key to your .env file. This should be the private key associated with the account you funded. If you used the address above, use the following:

example .env

RPC_URL="your_rpc_url"

# NEVER DO THIS WITH A REAL KEY!!!
PRIVATE_KEY="0xac0974bec39a17e36ba4a6b4d238ff944bacb478cbed5efcae784d7bf4f2ff80"
MY_ADDRESS="0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266"

This is OK since the address and private key are well known testing keys.

Then, you can run:

uv run deploy_favorites_unsafe.py # uv
# or
python deploy_favorites_unsafe.py # pip/python

And you'll deploy the contract!

The Safer Way

4. Encrypt your private key

We want you to practice not having your private key in plain text! So run the following:

uv run encrypt_key.py # uv 
# or
python encrypt_key.py # pip/python

This will prompt you for a password and private key. We recommend using the following:

0xac0974bec39a17e36ba4a6b4d238ff944bacb478cbed5efcae784d7bf4f2ff80

Since this is a well-known testing key, feel free to use an easy password - TYPICALLY YOU SHOULD NEVER SHARE YOUR PRIVATE KEY.

5. Run the safe version

uv run deploy_favorites.py # uv
# or
python deploy_favorites.py # pip/python

This will prompt you for a password to decrypt, and then you'll deploy your contract without exposing your private key! Huzzah!

Maintainer notes

If you're a student, ignore this section!

Build a new requirements.txt

uv pip compile pyproject.toml -o requirements.txt

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published