From 584cdfae0d05371fd6832d041e3dc3d4e15b7280 Mon Sep 17 00:00:00 2001 From: abel Date: Mon, 27 Nov 2023 13:25:37 -0300 Subject: [PATCH] (feat) Synchronized markets and tokens config files to add USDY/USDT and WHALE/USDT spot markets --- README.md | 3 +++ pyinjective/denoms_mainnet.ini | 35 +++++++++++++++++++++++++--------- pyinjective/denoms_testnet.ini | 18 ++++++++--------- pyproject.toml | 2 +- 4 files changed, 39 insertions(+), 19 deletions(-) diff --git a/README.md b/README.md index 15f9a638..2856de6f 100644 --- a/README.md +++ b/README.md @@ -78,6 +78,9 @@ poetry run pytest -v ``` ### Changelogs +**0.9.9** +* Synchronized markets and tokens config files to add USDY/USDT and WHALE/USDT spot markets + **0.9.8** * Synchronized markets and tokens config files to add PYTH/USDT spot market diff --git a/pyinjective/denoms_mainnet.ini b/pyinjective/denoms_mainnet.ini index e5a35e40..f3c372ac 100644 --- a/pyinjective/denoms_mainnet.ini +++ b/pyinjective/denoms_mainnet.ini @@ -556,6 +556,24 @@ min_display_price_tick_size = 0.0001 min_quantity_tick_size = 1000000 min_display_quantity_tick_size = 1 +[0x75f6a79b552dac417df219ab384be19cb13b53dec7cf512d73a965aee8bc83af] +description = 'Mainnet Spot USDY/USDT' +base = 18 +quote = 6 +min_price_tick_size = 0.0000000000000001 +min_display_price_tick_size = 0.0001 +min_quantity_tick_size = 100000000000000000 +min_display_quantity_tick_size = 0.1 + +[0x689ea50a30b0aeaf162e57100fefe5348a00099774f1c1ebcd90c4b480fda46a] +description = 'Mainnet Spot WHALE/USDT' +base = 6 +quote = 6 +min_price_tick_size = 0.00001 +min_display_price_tick_size = 0.00001 +min_quantity_tick_size = 10000000 +min_display_quantity_tick_size = 10 + [0x4ca0f92fc28be0c9761326016b5a1a2177dd6375558365116b5bdda9abc229ce] description = 'Mainnet Derivative BTC/USDT PERP' base = 0 @@ -646,15 +664,6 @@ min_display_price_tick_size = 0.0001 min_quantity_tick_size = 0.1 min_display_quantity_tick_size = 0.1 -[0x1afa358349b140e49441b6e68529578c7d2f27f06e18ef874f428457c0aaeb8b] -description = 'Mainnet Derivative SEI/USDT PERP' -base = 0 -quote = 6 -min_price_tick_size = 100 -min_display_price_tick_size = 0.0001 -min_quantity_tick_size = 0.1 -min_display_quantity_tick_size = 0.1 - [0x332230109e7afb839b4750d4cf961666b608071ecb64dac55662dac37529639e] description = 'Mainnet Derivative BTC/USDTkv PERP' base = 0 @@ -872,6 +881,10 @@ decimals = 6 peggy_denom = ibc/4ABBEF4C8926DDDB320AE5188CFD63267ABBCEFC0583E4AE05D6E5AA2401DDAB decimals = 6 +[USDY] +peggy_denom = peggy0x96F6eF951840721AdBF46Ac996b59E0235CB985C +decimals = 18 + [UST] peggy_denom = ibc/B448C0CA358B958301D328CCDC5D5AD642FC30A6D3AE106FF721DB315F3DDE5C decimals = 6 @@ -884,6 +897,10 @@ decimals = 8 peggy_denom = peggy0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2 decimals = 18 +[WHALE] +peggy_denom = ibc/D6E6A20ABDD600742D22464340A7701558027759CE14D12590F8EA869CCCF445 +decimals = 6 + [WMATIC] peggy_denom = factory/inj14ejqjyq8um4p3xfqj74yld5waqljf88f9eneuk/inj1dxv423h8ygzgxmxnvrf33ws3k94aedfdevxd8h decimals = 8 diff --git a/pyinjective/denoms_testnet.ini b/pyinjective/denoms_testnet.ini index 66c0c858..396df215 100644 --- a/pyinjective/denoms_testnet.ini +++ b/pyinjective/denoms_testnet.ini @@ -61,15 +61,6 @@ min_display_price_tick_size = 0.0001 min_quantity_tick_size = 10000000 min_display_quantity_tick_size = 0.1 -[0xfad0838bf6be7467c6a00d61360f7924afc848e4d0c56cc4261f94e77e124e7a] -description = 'Testnet Spot USDC/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 - [0x5fbd22eb44d9db413513f99ceb9a5ac4cc5b5e6893d5882877391d6927927e6d] description = 'Testnet Spot USDC/USDT' base = 6 @@ -358,6 +349,15 @@ min_display_price_tick_size = 0.0000000001 min_quantity_tick_size = 0.001 min_display_quantity_tick_size = 0.001 +[0xc90e8ea048b8fe5c3174d4d0386191765db699d2bf83d0cbaf07e15462115a15] +description = 'Testnet Derivative TIA/USDT PERP' +base = 0 +quote = 6 +min_price_tick_size = 1000 +min_display_price_tick_size = 0.001 +min_quantity_tick_size = 0.1 +min_display_quantity_tick_size = 0.1 + [APE] peggy_denom = peggy0x44C21afAaF20c270EBbF5914Cfc3b5022173FEB7 decimals = 18 diff --git a/pyproject.toml b/pyproject.toml index 8a64060a..ec25d603 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "injective-py" -version = "0.9.8" +version = "0.9.9" description = "Injective Python SDK, with Exchange API Client" authors = ["Injective Labs "] license = "Apache-2.0"