diff --git a/README.md b/README.md index 6012f659..f2475615 100644 --- a/README.md +++ b/README.md @@ -100,6 +100,15 @@ make tests **0.7.1.1** * Fixed Testnet network URLs +**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). + +**0.7.1.2** +* Add NBLA + **0.7.1.1** * Fixed Testnet network URLs diff --git a/pyinjective/denoms_mainnet.ini b/pyinjective/denoms_mainnet.ini index dcd93393..bf7b610b 100644 --- a/pyinjective/denoms_mainnet.ini +++ b/pyinjective/denoms_mainnet.ini @@ -677,3 +677,6 @@ decimals = 8 peggy_denom = factory/inj14ejqjyq8um4p3xfqj74yld5waqljf88f9eneuk/inj1dxv423h8ygzgxmxnvrf33ws3k94aedfdevxd8h decimals = 8 +[NBLA] +peggy_denom = factory/inj1d0zfq42409a5mhdagjutl8u6u9rgcm4h8zfmfq/nbla +decimals = 6 diff --git a/setup.py b/setup.py index 11b59b7a..69b8a244 100755 --- a/setup.py +++ b/setup.py @@ -17,7 +17,7 @@ EMAIL = "achilleas@injectivelabs.com" AUTHOR = "Injective Labs" REQUIRES_PYTHON = ">=3.9" -VERSION = "0.8-pre" +VERSION = "0.8" REQUIRED = [ "aiohttp",