Skip to content

Commit 0f10094

Browse files
authored
Merge pull request #278 from InjectiveLabs/feat/add_SEI_and_TIA_perp_markets
feat/add_SEI_and_TIA_perp_markets
2 parents 686e9df + b21ff3a commit 0f10094

File tree

4 files changed

+44
-10
lines changed

4 files changed

+44
-10
lines changed

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,9 @@ poetry run pytest -v
7878
```
7979

8080
### Changelogs
81+
**0.9.11**
82+
* Synchronized markets and tokens config files to add SEI/USDT and TIA/USDT perpetual markets
83+
8184
**0.9.10**
8285
* Synchronized markets and tokens config files to add SOL/USDT spot market
8386

pyinjective/denoms_mainnet.ini

Lines changed: 18 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -673,6 +673,15 @@ min_display_price_tick_size = 0.0001
673673
min_quantity_tick_size = 0.1
674674
min_display_quantity_tick_size = 0.1
675675

676+
[0x1afa358349b140e49441b6e68529578c7d2f27f06e18ef874f428457c0aaeb8b]
677+
description = 'Mainnet Derivative SEI/USDT PERP'
678+
base = 0
679+
quote = 6
680+
min_price_tick_size = 100
681+
min_display_price_tick_size = 0.0001
682+
min_quantity_tick_size = 1
683+
min_display_quantity_tick_size = 1
684+
676685
[0x332230109e7afb839b4750d4cf961666b608071ecb64dac55662dac37529639e]
677686
description = 'Mainnet Derivative BTC/USDTkv PERP'
678687
base = 0
@@ -700,15 +709,6 @@ min_display_price_tick_size = 0.0001
700709
min_quantity_tick_size = 1
701710
min_display_quantity_tick_size = 1
702711

703-
[0x64c3a57b693ede854b0a2794ed5c99546925d1fbe74d91a2e3286e4155a00dee]
704-
description = 'Mainnet Derivative TIA/USDT-30NOV2023'
705-
base = 0
706-
quote = 6
707-
min_price_tick_size = 1000
708-
min_display_price_tick_size = 0.001
709-
min_quantity_tick_size = 0.1
710-
min_display_quantity_tick_size = 0.1
711-
712712
[0x887beca72224f88fb678a13a1ae91d39c53a05459fd37ef55005eb68f745d46d]
713713
description = 'Mainnet Derivative PYTH/USDT PERP'
714714
base = 0
@@ -718,6 +718,15 @@ min_display_price_tick_size = 0.0001
718718
min_quantity_tick_size = 1
719719
min_display_quantity_tick_size = 1
720720

721+
[0x9066bfa1bd97685e0df4e22a104f510fb867fde7f74a52f3341c7f5f56eb889c]
722+
description = 'Mainnet Derivative TIA/USDT PERP'
723+
base = 0
724+
quote = 6
725+
min_price_tick_size = 1000
726+
min_display_price_tick_size = 0.001
727+
min_quantity_tick_size = 0.1
728+
min_display_quantity_tick_size = 0.1
729+
721730
[AAVE]
722731
peggy_denom = peggy0x7Fc66500c84A76Ad7e9c93437bFc5Ac33E2DDaE9
723732
decimals = 18

pyinjective/denoms_testnet.ini

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -178,6 +178,24 @@ min_display_price_tick_size = 0.001
178178
min_quantity_tick_size = 10000000000000
179179
min_display_quantity_tick_size = 0.00001
180180

181+
[0x876a81e382dc7a4b0acbae38fddd66a8fd53f7064f008c3716a13ad857bcf013]
182+
description = 'Testnet Spot PROJX/INJ'
183+
base = 18
184+
quote = 18
185+
min_price_tick_size = 0.001
186+
min_display_price_tick_size = 0.001
187+
min_quantity_tick_size = 10000000000000
188+
min_display_quantity_tick_size = 0.00001
189+
190+
[0x382a1cf37bcdbccd5698753154335fa56651d64b88b054691648710c8dcf43e0]
191+
description = 'Testnet Spot ZEN/INJ'
192+
base = 18
193+
quote = 18
194+
min_price_tick_size = 0.001
195+
min_display_price_tick_size = 0.001
196+
min_quantity_tick_size = 10000000000000
197+
min_display_quantity_tick_size = 0.00001
198+
181199
[0x2e94326a421c3f66c15a3b663c7b1ab7fb6a5298b3a57759ecf07f0036793fc9]
182200
description = 'Testnet Derivative BTC/USDT PERP Pyth'
183201
base = 0
@@ -410,6 +428,10 @@ decimals = 8
410428
peggy_denom = factory/inj17vytdwqczqz72j65saukplrktd4gyfme5agf6c/weth
411429
decimals = 8
412430

431+
[ZEN]
432+
peggy_denom = factory/inj17gkuet8f6pssxd8nycm3qr9d9y699rupv6397z/zen
433+
decimals = 18
434+
413435
[stINJ]
414436
peggy_denom = factory/inj17gkuet8f6pssxd8nycm3qr9d9y699rupv6397z/stinj
415437
decimals = 18

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "injective-py"
3-
version = "0.9.10"
3+
version = "0.9.11"
44
description = "Injective Python SDK, with Exchange API Client"
55
authors = ["Injective Labs <contact@injectivelabs.org>"]
66
license = "Apache-2.0"

0 commit comments

Comments
 (0)