Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Development release to master #1

Merged
merged 3 commits into from
May 16, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions .env.example
Original file line number Diff line number Diff line change
Expand Up @@ -32,3 +32,16 @@ SLIPPAGE=11

# Gas percent increate to sandwhich buys and sells
GAS_PERCENT=10

################################################
# GITHub Settings
################################################

# Github Username
GITHUB_USERNAME=<yourusername>

# Github Repo
GITHUB_REPO=<yourrepo>

# Github Token
GITHUB_TOKEN=<yourtoken>
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# OSX
#
.env
bump.json
legacy-files/
commit-script/
Flows/
Expand Down
11 changes: 11 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -122,6 +122,17 @@ We are using for versioning in this program follows the principles of Semantic V

Following this versioning methodology helps provide clarity about the nature of changes in each release and allows users to understand the impact of upgrading to a new version. It also helps ensure compatibility and enables users to make informed decisions when incorporating new versions into their projects.

### 📌 Using Bump
-------
- Using the package bump to handle versioning and releases

- Install bump globally using npm:
```npm install -g @fabiospampinato/bump```

- Run bump to see the available commands:
```bump --help```


## 📝 TODO
-------

Expand Down
3 changes: 2 additions & 1 deletion TODO
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,5 @@
- Multi-chain Functionality ⛓️: Expand the bot's capability to manage multiple EVM-based networks, moving beyond BSC to other chains like Ethereum, Polygon, etc.
- Performance Optimization ⚡: Monitor the bot's performance and identify areas for optimization to ensure it runs efficiently under different network conditions.
- Security Improvements 🔒: Constantly review and improve the bot's security, ensuring that sensitive information like account details remains secure.
- User Customization 🛠️: Allow users to customize bot settings, such as the minimum transaction value or the list of whitelisted/blacklisted tokens.
- User Customization 🛠️: Allow users to customize bot settings, such as the minimum transaction value or the list of whitelisted/blacklisted tokens.

5 changes: 4 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,10 @@
"start": "node bot.js",
"test": "echo \"Error: no test specified\" && exit 1",
"prepare": "husky install",
"release": "semantic-release"
"release": "semantic-release",
"prebump": "npm run prepublishOnly",
"prerelease": "npm run prepublishOnly",
"postrelease": "npm publish"
},
"release": {
"branches": [
Expand Down