Skip to content
This repository was archived by the owner on Nov 17, 2025. It is now read-only.

Commit abf9d26

Browse files
authored
Merge branch 'main' into 207-fix-current-version-requirementstxt-file
2 parents 8924b7c + b354e4a commit abf9d26

File tree

3 files changed

+11
-3
lines changed

3 files changed

+11
-3
lines changed

CHANGELOG.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,15 @@
22

33
## [Unreleased](https://github.com/bancorprotocol/fastlane-bot/tree/HEAD)
44

5-
[Full Changelog](https://github.com/bancorprotocol/fastlane-bot/compare/v2.7.62...HEAD)
5+
[Full Changelog](https://github.com/bancorprotocol/fastlane-bot/compare/v2.7.63...HEAD)
66

7+
- Bugfix in flashloan generation [\#210](https://github.com/bancorprotocol/fastlane-bot/issues/210)
78
- Add prefix option to file paths which are written \(for deployment job write permissions\) [\#204](https://github.com/bancorprotocol/fastlane-bot/issues/204)
9+
- Convert tkn key when WETH \> ETH for single-flashloan creation [\#211](https://github.com/bancorprotocol/fastlane-bot/pull/211) ([Lesigh-3100](https://github.com/Lesigh-3100))
10+
11+
## [v2.7.63](https://github.com/bancorprotocol/fastlane-bot/tree/v2.7.63) (2023-11-15)
12+
13+
[Full Changelog](https://github.com/bancorprotocol/fastlane-bot/compare/v2.7.62...v2.7.63)
814

915
- Add support for Graphene on Base [\#198](https://github.com/bancorprotocol/fastlane-bot/issues/198)
1016
- 204 add prefix option to file paths which are written for deployment job write permissions [\#205](https://github.com/bancorprotocol/fastlane-bot/pull/205) ([mikewcasale](https://github.com/mikewcasale))

fastlane_bot/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
from .bot import CarbonBot as Bot, __VERSION__, __DATE__
22
from .config import Config, ConfigNetwork, ConfigDB, ConfigLogger, ConfigProvider
33

4-
__version__ = '2.7.63'
4+
__version__ = '2.7.64'
55

66

77

fastlane_bot/helpers/routehandler.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -444,7 +444,9 @@ def _extract_single_flashloan_token(self, trade_instructions: List[TradeInstruct
444444
Generate a flashloan tokens and amounts.
445445
:param trade_instructions: A list of trade instruction objects
446446
"""
447-
flash_tokens = {trade_instructions[0].tknin_key: {"tkn": self.wrapped_gas_token_to_native(trade_instructions[0]._tknin_address),
447+
448+
449+
flash_tokens = {self.wrapped_gas_token_to_native(trade_instructions[0].tknin_key): {"tkn": self.wrapped_gas_token_to_native(trade_instructions[0]._tknin_address),
448450
"flash_amt": trade_instructions[0].amtin_wei,
449451
"decimals": trade_instructions[0].tknin_decimals}}
450452
return flash_tokens

0 commit comments

Comments
 (0)