From 0388272b7cea96e47f4d2f918bfa503506dbca46 Mon Sep 17 00:00:00 2001 From: abel Date: Mon, 20 Nov 2023 11:40:54 -0300 Subject: [PATCH 1/2] (feat) Added PYTH/USDT PERP market info in mainnet metadata ini file --- pyinjective/denoms_mainnet.ini | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/pyinjective/denoms_mainnet.ini b/pyinjective/denoms_mainnet.ini index 498bdf08..dcc136ae 100644 --- a/pyinjective/denoms_mainnet.ini +++ b/pyinjective/denoms_mainnet.ini @@ -682,6 +682,15 @@ min_display_price_tick_size = 0.001 min_quantity_tick_size = 0.1 min_display_quantity_tick_size = 0.1 +[0x887beca72224f88fb678a13a1ae91d39c53a05459fd37ef55005eb68f745d46d] +description = 'Mainnet Derivative PYTH/USDT PERP' +base = 0 +quote = 6 +min_price_tick_size = 100 +min_display_price_tick_size = 0.0001 +min_quantity_tick_size = 1 +min_display_quantity_tick_size = 1 + [AAVE] peggy_denom = peggy0x7Fc66500c84A76Ad7e9c93437bFc5Ac33E2DDaE9 decimals = 18 From af0a686b790cccdc79db12757eea09d60e631055 Mon Sep 17 00:00:00 2001 From: abel Date: Mon, 20 Nov 2023 11:45:10 -0300 Subject: [PATCH 2/2] (fix) Updated version number --- README.md | 3 +++ pyproject.toml | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index d8d3cbcd..3813d70d 100644 --- a/README.md +++ b/README.md @@ -78,6 +78,9 @@ poetry run pytest -v ``` ### Changelogs +**0.9.7** +* Added PYTH/USDT PERP market info in mainnet metadata ini file + **0.9.6** * Synchronized denom ini files with Indexer information for mainnet, testnet and devnet to include TALIS/INJ and KUJI/USDT markets diff --git a/pyproject.toml b/pyproject.toml index 422749eb..4c8e10f1 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "injective-py" -version = "0.9.6" +version = "0.9.7" description = "Injective Python SDK, with Exchange API Client" authors = ["Injective Labs "] license = "Apache-2.0"