From 5c5d44ec2bfbce460b5d625d1053e72ab03a29fb Mon Sep 17 00:00:00 2001 From: abel Date: Tue, 21 Nov 2023 10:23:11 -0300 Subject: [PATCH 1/2] (feat) Synchronized markets and tokens config files to add PYTH/USDT spot market --- pyinjective/denoms_mainnet.ini | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/pyinjective/denoms_mainnet.ini b/pyinjective/denoms_mainnet.ini index dcc136ae..e5a35e40 100644 --- a/pyinjective/denoms_mainnet.ini +++ b/pyinjective/denoms_mainnet.ini @@ -547,6 +547,15 @@ min_display_price_tick_size = 0.001 min_quantity_tick_size = 100000 min_display_quantity_tick_size = 0.1 +[0xa6ec1de114a5ffa85b6b235144383ce51028a1c0c2dee7db5ff8bf14d5ca0d49] +description = 'Mainnet Spot PYTH/USDT' +base = 6 +quote = 6 +min_price_tick_size = 0.0001 +min_display_price_tick_size = 0.0001 +min_quantity_tick_size = 1000000 +min_display_quantity_tick_size = 1 + [0x4ca0f92fc28be0c9761326016b5a1a2177dd6375558365116b5bdda9abc229ce] description = 'Mainnet Derivative BTC/USDT PERP' base = 0 @@ -791,6 +800,10 @@ decimals = 6 peggy_denom = peggy0xf9a06dE3F6639E6ee4F079095D5093644Ad85E8b decimals = 18 +[PYTH] +peggy_denom = factory/inj14ejqjyq8um4p3xfqj74yld5waqljf88f9eneuk/inj1tjcf9497fwmrnk22jfu5hsdq82qshga54ajvzy +decimals = 6 + [QNT] peggy_denom = peggy0x4a220E6096B25EADb88358cb44068A3248254675 decimals = 18 From d6a5f9c8249366b363451fa799abf0afd5ee9e82 Mon Sep 17 00:00:00 2001 From: abel Date: Tue, 21 Nov 2023 10:29:31 -0300 Subject: [PATCH 2/2] (fix) Updated README and project version --- README.md | 3 +++ pyproject.toml | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 3813d70d..15f9a638 100644 --- a/README.md +++ b/README.md @@ -78,6 +78,9 @@ poetry run pytest -v ``` ### Changelogs +**0.9.8** +* Synchronized markets and tokens config files to add PYTH/USDT spot market + **0.9.7** * Added PYTH/USDT PERP market info in mainnet metadata ini file diff --git a/pyproject.toml b/pyproject.toml index 4c8e10f1..8a64060a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "injective-py" -version = "0.9.7" +version = "0.9.8" description = "Injective Python SDK, with Exchange API Client" authors = ["Injective Labs "] license = "Apache-2.0"