Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat/add_kuji_and_talis_markets #268

Merged
merged 1 commit into from
Nov 17, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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.6**
* Synchronized denom ini files with Indexer information for mainnet, testnet and devnet to include TALIS/INJ and KUJI/USDT markets

**0.9.5**
* Updated fetch_metadata script (to synchronize denom ini files) to reuse logic in AsyncClient
* Synchronized denom ini files with Indexer information for mainnet, testnet and devnet
Expand Down
31 changes: 22 additions & 9 deletions pyinjective/denoms_mainnet.ini
Original file line number Diff line number Diff line change
Expand Up @@ -529,6 +529,24 @@ min_display_price_tick_size = 0.00001
min_quantity_tick_size = 10000000
min_display_quantity_tick_size = 10

[0xf09dd242aea343afd7b6644151bb00d1b8770d842881009bea867658602b6bf0]
description = 'Mainnet Spot TALIS/INJ'
base = 6
quote = 18
min_price_tick_size = 1000000
min_display_price_tick_size = 0.000001
min_quantity_tick_size = 10000000
min_display_quantity_tick_size = 10

[0x6922cf4383294c673971dd06aa4ae5ef47f65cb4f1ec1c2af4271c5e5ca67486]
description = 'Mainnet Spot KUJI/USDT'
base = 6
quote = 6
min_price_tick_size = 0.001
min_display_price_tick_size = 0.001
min_quantity_tick_size = 100000
min_display_quantity_tick_size = 0.1

[0x4ca0f92fc28be0c9761326016b5a1a2177dd6375558365116b5bdda9abc229ce]
description = 'Mainnet Derivative BTC/USDT PERP'
base = 0
Expand Down Expand Up @@ -601,15 +619,6 @@ min_display_price_tick_size = 0.01
min_quantity_tick_size = 0.1
min_display_quantity_tick_size = 0.1

[0x3b7fb1d9351f7fa2e6e0e5a11b3639ee5e0486c33a6a74f629c3fc3c3043efd5]
description = 'Mainnet Derivative BONK/USDT PERP'
base = 0
quote = 6
min_price_tick_size = 0.0001
min_display_price_tick_size = 0.0000000001
min_quantity_tick_size = 0.1
min_display_quantity_tick_size = 0.1

[0xcd0c859a99f26bb3530e21890937ed77d20754aa7825a599c71710514fc125ef]
description = 'Mainnet Derivative 1MPEPE/USDT PERP'
base = 0
Expand Down Expand Up @@ -737,6 +746,10 @@ decimals = 18
peggy_denom = ibc/57AA1A70A4BC9769C525EBF6386F7A21536E04A79D62E1981EFCEF9428EBB205
decimals = 6

[KUJI]
peggy_denom = ibc/9A115B56E769B92621FFF90567E2D60EFD146E86E867491DB69EEDA9ADC36204
decimals = 6

[LDO]
peggy_denom = factory/inj14ejqjyq8um4p3xfqj74yld5waqljf88f9eneuk/inj1q6zlut7gtkzknkk773jecujwsdkgq882akqksk
decimals = 6
Expand Down
26 changes: 26 additions & 0 deletions pyinjective/denoms_testnet.ini
Original file line number Diff line number Diff line change
Expand Up @@ -169,6 +169,24 @@ min_display_price_tick_size = 0.001
min_quantity_tick_size = 10000000000000
min_display_quantity_tick_size = 0.00001

[0x686d143de4268cac00ff6a7e9cb713484dadf40a5c993e166f260ca8081bc942]
description = 'Testnet Spot MT1/USDT'
base = 18
quote = 6
min_price_tick_size = 0.000000000000001
min_display_price_tick_size = 0.001
min_quantity_tick_size = 1000000000000000
min_display_quantity_tick_size = 0.001

[0x5777730c1ab6f6b1e465d41778562ada8c136c0f11ffbbdb2faa7a5bbde5d5a5]
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

[0x2e94326a421c3f66c15a3b663c7b1ab7fb6a5298b3a57759ecf07f0036793fc9]
description = 'Testnet Derivative BTC/USDT PERP Pyth'
base = 0
Expand Down Expand Up @@ -360,10 +378,18 @@ decimals = 18
peggy_denom = factory/inj17gkuet8f6pssxd8nycm3qr9d9y699rupv6397z/mitotest1
decimals = 18

[MT1]
peggy_denom = factory/inj17gkuet8f6pssxd8nycm3qr9d9y699rupv6397z/mitotest1
decimals = 18

[PROJ]
peggy_denom = factory/inj17gkuet8f6pssxd8nycm3qr9d9y699rupv6397z/proj
decimals = 18

[PROJX]
peggy_denom = factory/inj17gkuet8f6pssxd8nycm3qr9d9y699rupv6397z/projx
decimals = 18

[USD Coin]
peggy_denom = factory/inj17vytdwqczqz72j65saukplrktd4gyfme5agf6c/usdc
decimals = 6
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.5"
version = "0.9.6"
description = "Injective Python SDK, with Exchange API Client"
authors = ["Injective Labs <[email protected]>"]
license = "Apache-2.0"
Expand Down
Loading