Skip to content
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 @@ -87,6 +87,9 @@ make tests
```

### Changelogs
**0.7.2.1**
* Synchronization of denoms configuration files.

**0.7.2**
* Added a new gas limit calculation for the TransactionBroadcaster that estimates the value based on the messages in the transaction (without running the transaction simulation).

Expand Down
19 changes: 5 additions & 14 deletions pyinjective/denoms_mainnet.ini
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,7 @@ min_display_quantity_tick_size = 0.01
description = 'Mainnet Spot GF/USDT'
base = 18
quote = 6
min_price_tick_size = 0.000000000000001
min_price_tick_size = 0.0000000000000001
min_display_price_tick_size = 0.001
min_quantity_tick_size = 1000000000000000
min_display_quantity_tick_size = 0.001
Expand Down Expand Up @@ -317,7 +317,7 @@ min_display_quantity_tick_size = 100.0
description = 'Mainnet Spot STRD/USDT'
base = 6
quote = 6
min_price_tick_size = 0.001
min_price_tick_size = 0.0001
min_display_price_tick_size = 1e-09
min_quantity_tick_size = 1000
min_display_quantity_tick_size = 1000.0
Expand All @@ -328,7 +328,7 @@ base = 6
quote = 6
min_price_tick_size = 0.0001
min_display_price_tick_size = 0.0001
min_quantity_tick_size = 10000000
min_quantity_tick_size = 1000000
min_display_quantity_tick_size = 10.0

[0x4fa0bd2c2adbfe077f58395c18a72f5cbf89532743e3bddf43bc7aba706b0b74]
Expand Down Expand Up @@ -452,7 +452,7 @@ min_display_quantity_tick_size = 0.01
description = 'Mainnet Derivative STX/USDT PERP'
base = 0
quote = 6
min_price_tick_size = 1000
min_price_tick_size = 100
min_display_price_tick_size = 0.001
min_quantity_tick_size = 0.1
min_display_quantity_tick_size = 0.1
Expand Down Expand Up @@ -493,15 +493,6 @@ min_display_price_tick_size = 0.01
min_quantity_tick_size = 0.1
min_display_quantity_tick_size = 0.1

[0x5e7be7948c78f0c7fb1170655b5faa0a519ee0801250dde0b50308791474e61c]
description = 'Mainnet Derivative ETH/USDT 19SEP22'
base = 0
quote = 6
min_price_tick_size = 100000
min_display_price_tick_size = 0.1
min_quantity_tick_size = 0.01
min_display_quantity_tick_size = 0.01

[0x3b7fb1d9351f7fa2e6e0e5a11b3639ee5e0486c33a6a74f629c3fc3c3043efd5]
description = 'Mainnet Derivative BONK/USDT PERP'
base = 0
Expand Down Expand Up @@ -682,7 +673,7 @@ decimals = 8
peggy_denom = factory/inj14ejqjyq8um4p3xfqj74yld5waqljf88f9eneuk/inj1d5vz0uzwlpfvgwrwulxg6syy82axa58y4fuszd
decimals = 8

[wMATIC]
[WMATIC]
peggy_denom = factory/inj14ejqjyq8um4p3xfqj74yld5waqljf88f9eneuk/inj1dxv423h8ygzgxmxnvrf33ws3k94aedfdevxd8h
decimals = 8

Expand Down
20 changes: 1 addition & 19 deletions pyinjective/denoms_testnet.ini
Original file line number Diff line number Diff line change
Expand Up @@ -56,25 +56,7 @@ min_display_quantity_tick_size = 0.1
description = 'Testnet Derivative INJ/USDT PERP'
base = 0
quote = 6
min_price_tick_size = 100000
min_display_price_tick_size = 0.1
min_quantity_tick_size = 0.0001
min_display_quantity_tick_size = 0.0001

[0xd5e4b12b19ecf176e4e14b42944731c27677819d2ed93be4104ad7025529c7ff]
description = 'Testnet Derivative ETH/USDT PERP'
base = 0
quote = 6
min_price_tick_size = 100000
min_display_price_tick_size = 0.1
min_quantity_tick_size = 0.0001
min_display_quantity_tick_size = 0.0001

[0x90e662193fa29a3a7e6c07be4407c94833e762d9ee82136a2cc712d6b87d7de3]
description = 'Testnet Derivative BTC/USDT PERP'
base = 0
quote = 6
min_price_tick_size = 100000
min_price_tick_size = 100
min_display_price_tick_size = 0.1
min_quantity_tick_size = 0.0001
min_display_quantity_tick_size = 0.0001
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
EMAIL = "achilleas@injectivelabs.com"
AUTHOR = "Injective Labs"
REQUIRES_PYTHON = ">=3.9"
VERSION = "0.7.2"
VERSION = "0.7.2.1"

REQUIRED = [
"aiohttp",
Expand Down