Skip to content

Commit

Permalink
Merge pull request #278 from InjectiveLabs/feat/add_SEI_and_TIA_perp_…
Browse files Browse the repository at this point in the history
…markets

feat/add_SEI_and_TIA_perp_markets
  • Loading branch information
aarmoa committed Dec 6, 2023
2 parents 686e9df + b21ff3a commit 0f10094
Show file tree
Hide file tree
Showing 4 changed files with 44 additions and 10 deletions.
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,9 @@ poetry run pytest -v
```

### Changelogs
**0.9.11**
* Synchronized markets and tokens config files to add SEI/USDT and TIA/USDT perpetual markets

**0.9.10**
* Synchronized markets and tokens config files to add SOL/USDT spot market

Expand Down
27 changes: 18 additions & 9 deletions pyinjective/denoms_mainnet.ini
Original file line number Diff line number Diff line change
Expand Up @@ -673,6 +673,15 @@ 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 = 1
min_display_quantity_tick_size = 1

[0x332230109e7afb839b4750d4cf961666b608071ecb64dac55662dac37529639e]
description = 'Mainnet Derivative BTC/USDTkv PERP'
base = 0
Expand Down Expand Up @@ -700,15 +709,6 @@ min_display_price_tick_size = 0.0001
min_quantity_tick_size = 1
min_display_quantity_tick_size = 1

[0x64c3a57b693ede854b0a2794ed5c99546925d1fbe74d91a2e3286e4155a00dee]
description = 'Mainnet Derivative TIA/USDT-30NOV2023'
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

[0x887beca72224f88fb678a13a1ae91d39c53a05459fd37ef55005eb68f745d46d]
description = 'Mainnet Derivative PYTH/USDT PERP'
base = 0
Expand All @@ -718,6 +718,15 @@ min_display_price_tick_size = 0.0001
min_quantity_tick_size = 1
min_display_quantity_tick_size = 1

[0x9066bfa1bd97685e0df4e22a104f510fb867fde7f74a52f3341c7f5f56eb889c]
description = 'Mainnet 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

[AAVE]
peggy_denom = peggy0x7Fc66500c84A76Ad7e9c93437bFc5Ac33E2DDaE9
decimals = 18
Expand Down
22 changes: 22 additions & 0 deletions pyinjective/denoms_testnet.ini
Original file line number Diff line number Diff line change
Expand Up @@ -178,6 +178,24 @@ min_display_price_tick_size = 0.001
min_quantity_tick_size = 10000000000000
min_display_quantity_tick_size = 0.00001

[0x876a81e382dc7a4b0acbae38fddd66a8fd53f7064f008c3716a13ad857bcf013]
description = 'Testnet Spot PROJX/INJ'
base = 18
quote = 18
min_price_tick_size = 0.001
min_display_price_tick_size = 0.001
min_quantity_tick_size = 10000000000000
min_display_quantity_tick_size = 0.00001

[0x382a1cf37bcdbccd5698753154335fa56651d64b88b054691648710c8dcf43e0]
description = 'Testnet Spot ZEN/INJ'
base = 18
quote = 18
min_price_tick_size = 0.001
min_display_price_tick_size = 0.001
min_quantity_tick_size = 10000000000000
min_display_quantity_tick_size = 0.00001

[0x2e94326a421c3f66c15a3b663c7b1ab7fb6a5298b3a57759ecf07f0036793fc9]
description = 'Testnet Derivative BTC/USDT PERP Pyth'
base = 0
Expand Down Expand Up @@ -410,6 +428,10 @@ decimals = 8
peggy_denom = factory/inj17vytdwqczqz72j65saukplrktd4gyfme5agf6c/weth
decimals = 8

[ZEN]
peggy_denom = factory/inj17gkuet8f6pssxd8nycm3qr9d9y699rupv6397z/zen
decimals = 18

[stINJ]
peggy_denom = factory/inj17gkuet8f6pssxd8nycm3qr9d9y699rupv6397z/stinj
decimals = 18
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "injective-py"
version = "0.9.10"
version = "0.9.11"
description = "Injective Python SDK, with Exchange API Client"
authors = ["Injective Labs <[email protected]>"]
license = "Apache-2.0"
Expand Down

0 comments on commit 0f10094

Please sign in to comment.