Skip to content

Commit

Permalink
Merge pull request #1 from kryptobaseddev/development
Browse files Browse the repository at this point in the history
Development release to master
  • Loading branch information
kryptobaseddev authored May 16, 2023
2 parents c02718f + d1ebb26 commit 449d617
Show file tree
Hide file tree
Showing 5 changed files with 31 additions and 2 deletions.
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

0 comments on commit 449d617

Please sign in to comment.