Skip to content

Commit 1c683e6

Browse files
author
Javadyakuza
committed
Feat(Cardano Chain): Merge with hummingbotv2.4
1 parent 7a8d841 commit 1c683e6

670 files changed

Lines changed: 45093 additions & 76751 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.coveragerc

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,6 @@ omit =
1414
hummingbot/client/tab/*
1515
hummingbot/client/ui/parser.py
1616
hummingbot/connector/derivative/position.py
17-
hummingbot/connector/exchange/bitfinex*
18-
hummingbot/connector/exchange/foxbit*
19-
hummingbot/connector/exchange/hitbtc*
2017
hummingbot/connector/derivative/dydx_v4_perpetual/*
2118
hummingbot/connector/derivative/dydx_v4_perpetual/data_sources/*
2219
hummingbot/connector/exchange/injective_v2/account_delegation_script.py

.github/ISSUE_TEMPLATE/bounty_request.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ body:
1111
* Please edit the "Bounty request" to the title of the bug/issue
1212
* Please make sure to look on our GitHub issues to avoid duplicate tickets
1313
* You can add additional `Labels` to support this ticket (connectors, strategies, etc)
14-
* See https://docs.hummingbot.org/governance/bounties/sponsors/ for more information on bounties
14+
* See https://hummingbot.org/bounties/ for more information on bounties
1515
- type: textarea
1616
id: bounty-description
1717
attributes:

.github/ISSUE_TEMPLATE/bug_report.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ body:
1111
* Please edit the "Bug Report" to the title of the bug or issue
1212
* Please make sure to look on our GitHub issues to avoid duplicate tickets
1313
* You can add additional `Labels` to support this ticket (connectors, strategies, etc)
14-
* If this is something to do with installation and how to's we would recommend to visit our [Discord server](https://discord.gg/hummingbot) and [Hummingbot docs](https://docs.hummingbot.org/)
14+
* If this is something to do with installation and how to's we would recommend to visit our [Discord server](https://discord.gg/hummingbot) and [Hummingbot docs](https://hummingbot.org/docs/)
1515
- type: textarea
1616
id: what-happened
1717
attributes:

.github/ISSUE_TEMPLATE/feature_request.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ body:
1111
* Please edit the "Feature Request" to the title of the feature
1212
* Please make sure to look on our GitHub issues to avoid duplicate tickets
1313
* You can add additional `Labels` to support this ticket (connectors, strategies, etc)
14-
* If this is something to do with installation and how to's we would recommend to visit our [Discord server](https://discord.gg/hummingbot) and [Hummingbot docs](https://docs.hummingbot.org/)
14+
* If this is something to do with installation and how to's we would recommend to visit our [Discord server](https://discord.gg/hummingbot) and [Hummingbot docs](https://hummingbot.org/docs/)
1515
- type: textarea
1616
id: feature-suggestion
1717
attributes:

CODE_OF_CONDUCT.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
## Our Pledge
44

55
In the interest of fostering an open and welcoming environment, we as
6-
contributors and maintainers pledge to making participation in our project and
6+
contributors and maintainers pledge to participate in our project and
77
our community a harassment-free experience for everyone, regardless of age, body
88
size, disability, ethnicity, sex characteristics, gender identity and expression,
99
level of experience, education, socio-economic status, nationality, personal
@@ -26,9 +26,9 @@ Examples of unacceptable behavior by participants include:
2626
advances
2727
* Trolling, insulting/derogatory comments, and personal or political attacks
2828
* Public or private harassment
29-
* Publishing others' private information, such as a physical or electronic
29+
* Publishing others' private information, such as physical or electronic
3030
address, without explicit permission
31-
* Other conduct which could reasonably be considered inappropriate in a
31+
* Other conduct that could reasonably be considered inappropriate in a
3232
professional setting
3333

3434
## Our Responsibilities

DATA_COLLECTION.md

Lines changed: 0 additions & 33 deletions
This file was deleted.

Dockerfile

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@ COPY scripts/ scripts-copy/
2323
COPY setup.py .
2424
COPY LICENSE .
2525
COPY README.md .
26-
COPY DATA_COLLECTION.md .
2726

2827
# activate hummingbot env when entering the CT
2928
SHELL [ "/bin/bash", "-lc" ]
@@ -74,4 +73,4 @@ SHELL [ "/bin/bash", "-lc" ]
7473

7574
# Set the default command to run when starting the container
7675

77-
CMD conda activate hummingbot && ./bin/hummingbot_quickstart.py 2>> ./logs/errors.log
76+
CMD conda activate hummingbot && ./bin/hummingbot_quickstart.py 2>> ./logs/errors.log

Makefile

Lines changed: 7 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -10,18 +10,13 @@
1010
.PHONY: build
1111

1212
test:
13-
coverage run -m nose \
14-
--exclude-dir="test/mock" \
15-
--exclude-dir="test/hummingbot/connector/gateway/amm" \
16-
--exclude-dir="test/hummingbot/connector/exchange/hitbtc" \
17-
--exclude-dir="test/hummingbot/connector/exchange/coinbase_advance_trade" \
18-
--exclude-dir="test/hummingbot/connector/exchange/ndax" \
19-
--exclude-dir="test/hummingbot/connector/exchange/foxbit" \
20-
--exclude-dir="test/hummingbot/connector/derivative/dydx_v4_perpetual" \
21-
--exclude-dir="test/hummingbot/connector/gateway/clob_spot/data_sources/dexalot" \
22-
--exclude-dir="test/hummingbot/strategy/amm_arb" \
23-
--exclude-dir="test/hummingbot/core/gateway" \
24-
--exclude-dir="test/hummingbot/strategy/amm_v3_lp"
13+
coverage run -m pytest \
14+
--ignore="test/mock" \
15+
--ignore="test/connector/utilities/*" \
16+
--ignore="test/hummingbot/connector/derivative/dydx_v4_perpetual" \
17+
--ignore="test/hummingbot/connector/derivative/kucoin_perpetual" \
18+
--ignore="test/hummingbot/connector/derivative/okx_perpetual" \
19+
--ignore="test/hummingbot/strategy/amm_arb/"
2520

2621
run_coverage: test
2722
coverage report

0 commit comments

Comments
 (0)