From 2f73c79a9c46c9fe629ccf241979068f14e62e06 Mon Sep 17 00:00:00 2001 From: abel Date: Sun, 5 Nov 2023 23:33:09 -0300 Subject: [PATCH] (feat) Added TIA/USDT market and TIA token information in mainnet and testnet ini files --- README.md | 3 +++ pyinjective/denoms_mainnet.ini | 13 +++++++++++++ pyinjective/denoms_testnet.ini | 13 +++++++++++++ pyproject.toml | 2 +- 4 files changed, 30 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index e094c565..cbbe4e39 100644 --- a/README.md +++ b/README.md @@ -78,6 +78,9 @@ poetry run pytest -v ``` ### Changelogs +**0.9.4** +* Added TIA/USDT spot market in mainnet and testnet ini file + **0.9.3** * Updated TIA/USDT-30NOV2023 market id in denoms_mainnet.ini file diff --git a/pyinjective/denoms_mainnet.ini b/pyinjective/denoms_mainnet.ini index 71706e68..ecba3771 100644 --- a/pyinjective/denoms_mainnet.ini +++ b/pyinjective/denoms_mainnet.ini @@ -430,6 +430,15 @@ min_display_price_tick_size = 9.999999999999999e-05 min_quantity_tick_size = 100000 min_display_quantity_tick_size = 0.1 +[0x35fd4fa9291ea68ce5eef6e0ea8567c7744c1891c2059ef08580ba2e7a31f101] +description = 'Mainnet Spot TIA/USDT' +base = 6 +quote = 6 +min_price_tick_size = 0.001 +min_display_price_tick_size = 9.999999999999999e-05 +min_quantity_tick_size = 100000 +min_display_quantity_tick_size = 0.1 + [0x4ca0f92fc28be0c9761326016b5a1a2177dd6375558365116b5bdda9abc229ce] description = 'Mainnet Derivative BTC/USDT PERP' base = 0 @@ -768,3 +777,7 @@ decimals = 6 [USDTkv] peggy_denom = ibc/4ABBEF4C8926DDDB320AE5188CFD63267ABBCEFC0583E4AE05D6E5AA2401DDAB decimals = 6 + +[TIA] +peggy_denom = ibc/F51BB221BAA275F2EBF654F70B005627D7E713AFFD6D86AFD1E43CAA886149F4 +decimals = 6 diff --git a/pyinjective/denoms_testnet.ini b/pyinjective/denoms_testnet.ini index 92d3e534..5226d3de 100644 --- a/pyinjective/denoms_testnet.ini +++ b/pyinjective/denoms_testnet.ini @@ -52,6 +52,15 @@ min_display_price_tick_size = 1e-05 min_quantity_tick_size = 100000 min_display_quantity_tick_size = 0.1 +[0xa283fc94a9055a01a58bb6229b1e56a8bb54069a0debfce7fbd1e6c25a95330c] +description = 'Testnet Spot TIA/USDT' +base = 6 +quote = 6 +min_price_tick_size = 0.001 +min_display_price_tick_size = 1e-05 +min_quantity_tick_size = 0.001 +min_display_quantity_tick_size = 0.1 + [0x17ef48032cb24375ba7c2e39f384e56433bcab20cbee9a7357e4cba2eb00abe6] description = 'Testnet Derivative INJ/USDT PERP' base = 0 @@ -195,3 +204,7 @@ decimals = 8 [FRCOIN] peggy_denom = factory/inj1d3jc5pr6nsf9twyzjh9w5nj7nn235ysllwtpq7/frcoin decimals = 6 + +[TIA] +peggy_denom = factory/inj17vytdwqczqz72j65saukplrktd4gyfme5agf6c/tia +decimals = 6 diff --git a/pyproject.toml b/pyproject.toml index 07bbadb2..3f1a0a49 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "injective-py" -version = "0.9.3" +version = "0.9.4" description = "Injective Python SDK, with Exchange API Client" authors = ["Injective Labs "] license = "Apache-2.0"