Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
b9861d5
(feat) Added a component to calculate gas limit for the Transaction B…
Aug 18, 2023
d0d602c
(fix) Change version number and update README file
Aug 18, 2023
07fb8e7
(fix) Changes to gas limit estimation to reduce a little bit gas cons…
Aug 18, 2023
8c2bf01
(fix) Undo change in the example to get a transaction by hash
Aug 18, 2023
0aa1c7b
(feat) Improved the logic in the gas limit estimator component to con…
Aug 22, 2023
176e595
(fix) Fix testnet URLs
Aug 22, 2023
af5c62c
(fix) Updated library version number and README file
Aug 22, 2023
e6b8b6c
Merge branch 'master' of https://github.com/InjectiveLabs/sdk-python …
Aug 22, 2023
2792998
Update denoms_mainnet.ini
Morgandri1 Aug 24, 2023
aaa1958
Merge pull request #230 from Morgandri1/master
achilleas-kal Aug 24, 2023
2b87432
chore: add NBLA
achilleas-kal Aug 24, 2023
ccabe01
Update denoms_mainnet.ini
Morgandri1 Aug 24, 2023
d71b813
chore: add NBLA
achilleas-kal Aug 24, 2023
cd3fa27
(feat) Added a component to calculate gas limit for the Transaction B…
Aug 18, 2023
5cd4e06
(fix) Change version number and update README file
Aug 18, 2023
aeeb1d3
(fix) Changes to gas limit estimation to reduce a little bit gas cons…
Aug 18, 2023
2164c2c
(fix) Undo change in the example to get a transaction by hash
Aug 18, 2023
6d3d7da
(feat) Improved the logic in the gas limit estimator component to con…
Aug 22, 2023
f1633ed
Merge branch 'feat/message_broadcaster_without_simulation' of https:/…
Aug 24, 2023
880ba4b
Merge pull request #226 from InjectiveLabs/feat/message_broadcaster_w…
aarmoa Aug 24, 2023
4a65fd8
(fix) Synchronized the denoms config files for mainnet and testnet
Aug 27, 2023
e0f9230
Merge pull request #232 from InjectiveLabs/fix/synchronize_denoms_con…
aarmoa Aug 27, 2023
3f2ae5d
Merge branch 'master' of https://github.com/InjectiveLabs/sdk-python …
Sep 1, 2023
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
9 changes: 9 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
3 changes: 3 additions & 0 deletions pyinjective/denoms_mainnet.ini
Original file line number Diff line number Diff line change
Expand Up @@ -677,3 +677,6 @@ decimals = 8
peggy_denom = factory/inj14ejqjyq8um4p3xfqj74yld5waqljf88f9eneuk/inj1dxv423h8ygzgxmxnvrf33ws3k94aedfdevxd8h
decimals = 8

[NBLA]
peggy_denom = factory/inj1d0zfq42409a5mhdagjutl8u6u9rgcm4h8zfmfq/nbla
decimals = 6
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.8-pre"
VERSION = "0.8"

REQUIRED = [
"aiohttp",
Expand Down