From de6b1af8cf22e1c3864038dffbfe19a95055683f Mon Sep 17 00:00:00 2001 From: bt3gl Date: Thu, 14 Mar 2024 20:10:48 +0100 Subject: [PATCH] quick fixes --- cointegration-bots/README.md | 2 +- cointegration-bots/setup.py | 2 +- cointegration-bots/src/bots/bot1.py | 2 +- cointegration-bots/src/bots/bot2.py | 2 +- cointegration-bots/src/main.py | 2 +- cointegration-bots/src/markets/binance.py | 2 +- cointegration-bots/src/markets/bitmex.py | 2 +- cointegration-bots/src/markets/bybit.py | 2 +- cointegration-bots/src/markets/curve.py | 2 +- cointegration-bots/src/markets/uniswapV2.py | 2 +- cointegration-bots/src/markets/uniswapV3.py | 2 +- cointegration-bots/src/strategies/cointegration.py | 2 +- cointegration-bots/src/utils/network.py | 2 +- cointegration-bots/src/utils/os.py | 2 +- cointegration-bots/src/utils/plots.py | 2 +- fixed-graph-py/pyproject.toml | 2 +- magick-py/README.md | 2 +- magick-py/setup.py | 2 +- magick-py/src/main.py | 2 +- 19 files changed, 19 insertions(+), 19 deletions(-) diff --git a/cointegration-bots/README.md b/cointegration-bots/README.md index 1038880..b101bab 100644 --- a/cointegration-bots/README.md +++ b/cointegration-bots/README.md @@ -17,7 +17,7 @@ * `coitnbot` is a **CLI tool and a set of trading bots** that i’ve written to detect **profitable cryptocurrency pairs to be shorted or longed** on trading exchanges. * these statistical algorithmic strategies are named **cointegration**, which has been around for a long time, for either traditional or decentralized finances. -* 📚 for more details, check **[my mirror post, bot #2: cointbot, a cointegration trader](https://mirror.xyz/steinkirch.eth/KQ0basHaclOCDDtOhz3NgKQhHdHqaqOtU89Sr4QO5L4)**. +* 📚 for more details, check **[my mirror post, bot #2: cointbot, a cointegration trader](https://mirror.xyz/Mia Stein.eth/KQ0basHaclOCDDtOhz3NgKQhHdHqaqOtU89Sr4QO5L4)**. * 🚨 **disclaimer**: i open-source my projects because i am a believer in the oss ethos. you might or might not profit from it, but this is not my problem. in the mev world, nobody is going to (explicitly) handle you alphas. i am not responsible for anything you do with my free code.
diff --git a/cointegration-bots/setup.py b/cointegration-bots/setup.py index 8881380..a5b22a0 100644 --- a/cointegration-bots/setup.py +++ b/cointegration-bots/setup.py @@ -9,7 +9,7 @@ 'src.utils', 'src.strategies', 'src.bots']), - author="steinkirch", + author="Mia Stein", install_requires=['python-dotenv'], entry_points={ 'console_scripts': ['cointbot=src.main:run'] diff --git a/cointegration-bots/src/bots/bot1.py b/cointegration-bots/src/bots/bot1.py index 7f272c8..8bdce69 100644 --- a/cointegration-bots/src/bots/bot1.py +++ b/cointegration-bots/src/bots/bot1.py @@ -1,6 +1,6 @@ # -*- encoding: utf-8 -*- # src/bots/bot1.py -# author: steinkirch +# author: Mia Stein # Class for trading bot1. # # Strategy: diff --git a/cointegration-bots/src/bots/bot2.py b/cointegration-bots/src/bots/bot2.py index ff1c5e2..f15ab10 100644 --- a/cointegration-bots/src/bots/bot2.py +++ b/cointegration-bots/src/bots/bot2.py @@ -1,6 +1,6 @@ # -*- encoding: utf-8 -*- # src/bots/bot2.py -# author: steinkirch +# author: Mia Stein # Class for trading bot2 # # TODO: https://github.com/go-outside-labs/blockchain-science-py/issues/30 diff --git a/cointegration-bots/src/main.py b/cointegration-bots/src/main.py index 593e57e..6411072 100644 --- a/cointegration-bots/src/main.py +++ b/cointegration-bots/src/main.py @@ -1,7 +1,7 @@ #!/usr/bin/env python3 # -*- encoding: utf-8 -*- # src/main.py -# author: steinkirch +# author: Mia Stein # Entry point for cointbot. diff --git a/cointegration-bots/src/markets/binance.py b/cointegration-bots/src/markets/binance.py index 5f58950..df00c23 100644 --- a/cointegration-bots/src/markets/binance.py +++ b/cointegration-bots/src/markets/binance.py @@ -1,6 +1,6 @@ # -*- encoding: utf-8 -*- # src/markets/binance.py -# author: steinkirch +# author: Mia Stein # Binance API class. diff --git a/cointegration-bots/src/markets/bitmex.py b/cointegration-bots/src/markets/bitmex.py index 808eaaf..c6d706d 100644 --- a/cointegration-bots/src/markets/bitmex.py +++ b/cointegration-bots/src/markets/bitmex.py @@ -1,6 +1,6 @@ # -*- encoding: utf-8 -*- # src/markets/bitmex.py -# author: steinkirch +# author: Mia Stein # Bitmex API class. diff --git a/cointegration-bots/src/markets/bybit.py b/cointegration-bots/src/markets/bybit.py index 12c904b..ab20c6f 100644 --- a/cointegration-bots/src/markets/bybit.py +++ b/cointegration-bots/src/markets/bybit.py @@ -1,6 +1,6 @@ # -*- encoding: utf-8 -*- # src/markets/bybit.py -# author: steinkirch +# author: Mia Stein # Bybit API class. import time diff --git a/cointegration-bots/src/markets/curve.py b/cointegration-bots/src/markets/curve.py index 1217fe3..499082d 100644 --- a/cointegration-bots/src/markets/curve.py +++ b/cointegration-bots/src/markets/curve.py @@ -1,6 +1,6 @@ # -*- encoding: utf-8 -*- # src/markets/curve.py -# author: steinkirch +# author: Mia Stein # Curve API class. diff --git a/cointegration-bots/src/markets/uniswapV2.py b/cointegration-bots/src/markets/uniswapV2.py index 52ecfc2..a91ce40 100644 --- a/cointegration-bots/src/markets/uniswapV2.py +++ b/cointegration-bots/src/markets/uniswapV2.py @@ -1,6 +1,6 @@ # -*- encoding: utf-8 -*- # src/markets/uniswapV2.py -# author: steinkirch +# author: Mia Stein # UniswapV2 API class. diff --git a/cointegration-bots/src/markets/uniswapV3.py b/cointegration-bots/src/markets/uniswapV3.py index 110fa12..443909c 100644 --- a/cointegration-bots/src/markets/uniswapV3.py +++ b/cointegration-bots/src/markets/uniswapV3.py @@ -1,6 +1,6 @@ # -*- encoding: utf-8 -*- # src/markets/uniswapV3.py -# author: steinkirch +# author: Mia Stein # UniswapV3 API class. diff --git a/cointegration-bots/src/strategies/cointegration.py b/cointegration-bots/src/strategies/cointegration.py index 09bd2df..b8ceda9 100644 --- a/cointegration-bots/src/strategies/cointegration.py +++ b/cointegration-bots/src/strategies/cointegration.py @@ -1,6 +1,6 @@ # -*- encoding: utf-8 -*- # src/strategies/cointegration.py -# author: steinkirch +# author: Mia Stein # Cointegration class. import math diff --git a/cointegration-bots/src/utils/network.py b/cointegration-bots/src/utils/network.py index 8f54efa..77dc953 100644 --- a/cointegration-bots/src/utils/network.py +++ b/cointegration-bots/src/utils/network.py @@ -1,6 +1,6 @@ # -*- encoding: utf-8 -*- # src/utils/network.py -# author: steinkirch +# author: Mia Stein # Network utils methods. import json diff --git a/cointegration-bots/src/utils/os.py b/cointegration-bots/src/utils/os.py index 3631d3a..343366a 100644 --- a/cointegration-bots/src/utils/os.py +++ b/cointegration-bots/src/utils/os.py @@ -1,6 +1,6 @@ # -*- encoding: utf-8 -*- # src/utils/os.py -# author: steinkirch +# author: Mia Stein # Os utils methods. import os diff --git a/cointegration-bots/src/utils/plots.py b/cointegration-bots/src/utils/plots.py index 9840ec4..9e40494 100644 --- a/cointegration-bots/src/utils/plots.py +++ b/cointegration-bots/src/utils/plots.py @@ -1,6 +1,6 @@ # -*- encoding: utf-8 -*- # src/utils/plots.py -# author: steinkirch +# author: Mia Stein # Methods to plot data. import matplotlib.pyplot as plt diff --git a/fixed-graph-py/pyproject.toml b/fixed-graph-py/pyproject.toml index ce2ac7c..5a30a1b 100644 --- a/fixed-graph-py/pyproject.toml +++ b/fixed-graph-py/pyproject.toml @@ -2,7 +2,7 @@ name = "fixed-computational-graph" version = "0.1.0" description="👾 Fixed Computational Graph Example 👾." -authors=["bt3gl"] +authors=["Mia Stein"] readme = "README.md" packages = [{include = "src"}] diff --git a/magick-py/README.md b/magick-py/README.md index e79e97f..3fd18e4 100644 --- a/magick-py/README.md +++ b/magick-py/README.md @@ -4,7 +4,7 @@
* **cli for single server PIR and LWE experiments in python, based on [*"simple and fast single-server private information retrieval"*, by a. henzinger et al.](https://eprint.iacr.org/2022/949.pdf)** -* **to learn more, check my [mirror write-up about this project](https://mirror.xyz/steinkirch.eth/4G5bsqUkjLxhQ0M9so3f25o4cABwN--tC40N3jkReug).** +* **to learn more, check my [mirror write-up about this project](https://mirror.xyz/Mia Stein.eth/4G5bsqUkjLxhQ0M9so3f25o4cABwN--tC40N3jkReug).**
diff --git a/magick-py/setup.py b/magick-py/setup.py index 565ad9c..37dd202 100644 --- a/magick-py/setup.py +++ b/magick-py/setup.py @@ -7,7 +7,7 @@ 'src.experiments', \ 'src.primitives', \ 'src.utils']), - author="bt3gl", + author="Mia Stein", install_requires=['python-dotenv'], entry_points={ 'console_scripts': ['magick=src.main:run'] diff --git a/magick-py/src/main.py b/magick-py/src/main.py index 1c65e6d..368ae11 100644 --- a/magick-py/src/main.py +++ b/magick-py/src/main.py @@ -1,7 +1,7 @@ #!/usr/bin/env python3 # -*- encoding: utf-8 -*- # src/main.py -# by @bt3gl +# by Mia Stein import argparse