Defichain

Latest version: v3.1.3

Safety actively analyzes 623541 Python packages for vulnerabilities to keep your Python projects secure.

Scan your dependencies

Page 1 of 4

3.1.3

* Change Evm class typing and add EVM, DVM constants by eric-volz in https://github.com/eric-volz/DefichainPython/pull/131
* Support for new defichain tokens

**Full Changelog**: https://github.com/eric-volz/DefichainPython/compare/v3.1.2...v3.1.3

You can install it using just this line of code:

bash
pip install defichain -U

---
If you have any trouble or just want interchange with other users, feel free to join the [Telegram Group](https://t.me/DefichainPython)!

3.1.2

* Fix getbalance method of node by eric-volz in https://github.com/eric-volz/DefichainPython/pull/127
* Add missing arguments to listaccounthistory by eric-volz in https://github.com/eric-volz/DefichainPython/pull/126
* Fix importmulti method of node by eric-volz in https://github.com/eric-volz/DefichainPython/pull/125

**Full Changelog**: https://github.com/eric-volz/DefichainPython/compare/v3.1.1...v3.1.2


You can install it using just this line of code:

bash
pip install defichain -U

---
If you have any trouble or just want interchange with other users, feel free to join the [Telegram Group](https://t.me/DefichainPython)!

3.1.1

* Calculate vSize and weight of an transaction by eric-volz in https://github.com/eric-volz/DefichainPython/pull/118
* Fix GetTokenBalance method in Node by eric-volz in https://github.com/eric-volz/DefichainPython/pull/119
* Except error when output value is negativ by eric-volz in https://github.com/eric-volz/DefichainPython/pull/120
* Add argument to disable wallet functionality of node by eric-volz in https://github.com/eric-volz/DefichainPython/pull/121

**Full Changelog**: https://github.com/eric-volz/DefichainPython/compare/v3.1.0...v3.1.1

You can install it using just this line of code:

bash
pip install defichain -U

---
If you have any trouble or just want interchange with other users, feel free to join the [Telegram Group](https://t.me/DefichainPython)!

3.1.0

* The new defichain node methods of v4.0.0 are now implemented | eric-volz in https://github.com/eric-volz/DefichainPython/pull/112
* You can now choose to make transactions replaceable witch are build with the TxBuilder (implementation of RBF) | eric-volz in https://github.com/eric-volz/DefichainPython/pull/113
* Full documentation for TxBuilder | eric-volz in https://github.com/eric-volz/DefichainPython/pull/106

**Full Changelog**: https://github.com/eric-volz/DefichainPython/compare/v3.0.0...v3.1.0

**You can install it using just this line of code**:

bash
pip install defichain -U

---
If you have any trouble or just want interchange with other users, feel free to join the [Telegram Group](https://t.me/DefichainPython)!

3.0.0

Release v3.0.0 of the DefichainPython Library! 🚀🚀🚀

Version 3.0.0 of the DefichainPython library is finally released and is available on [PyPi](https://pypi.org/project/defichain/). You can install it using just this line of code:

bash
pip install defichain -U


The new update brings some really cool new features:
- Implementation of **new ocean API endpoints**: Governance and Consortium
- Possibility to **encrypt** your wallet and store it
- Possibility to create your own **RawTransactions** (also known as Custom Transaction and DefiTransaction). For more information follow this explanation: [Basic Usage Of Transactions Builder](https://docs.defichain-python.de/build/html/guides/guides/basicUsageOfRawTransactions.html)

Already implemented RawDefiTransactions:
- [x] UtxosToAccount
- [x] AccountToUtxos
- [x] AccountToAccount
- [x] hex_data
- [x] str_data
- [x] Vote
- [x] TakeLoan
- [x] PayBackLoan
- [x] CreateMasternode
- [x] ResignMasternode
- [x] UpdateMasternode
- [x] PoolSwap
- [x] CompositSwap
- [x] AddPoolLiquidity
- [x] RemovePoolLiquidity
- [x] send
- [x] sendall
- [x] sendmany
- [x] CreateVault
- [x] DepositToVault
- [x] WithdrawFromVault

What has changed in the code?
Improvements
* Set wallet as default if only one wallet available by eric-volz in https://github.com/eric-volz/DefichainPython/pull/64
* Improve RPC by eric-volz in https://github.com/eric-volz/DefichainPython/pull/70
* Change base url of testnet by eric-volz in https://github.com/eric-volz/DefichainPython/pull/80
* Rework Documentation by eric-volz in https://github.com/eric-volz/DefichainPython/pull/94
* Sitemap for docs by eric-volz in https://github.com/eric-volz/DefichainPython/pull/97

New Implementations
* New ocean governance and consortium methods by eric-volz in https://github.com/eric-volz/DefichainPython/pull/69
* Encryption of hdwallet by eric-volz in https://github.com/eric-volz/DefichainPython/pull/83

RawTransactions
* Raw Transactions by eric-volz in https://github.com/eric-volz/DefichainPython/pull/67
* New signing process by eric-volz in https://github.com/eric-volz/DefichainPython/pull/71
* Add builder for data by eric-volz in https://github.com/eric-volz/DefichainPython/pull/76
* New Method: Send Many for utxo by eric-volz in https://github.com/eric-volz/DefichainPython/pull/78
* Nextv3.0.0b2 by eric-volz in https://github.com/eric-volz/DefichainPython/pull/79
* Implement signing of P2PKH address type by eric-volz in https://github.com/eric-volz/DefichainPython/pull/81
* Add DefiTx: UpdateMasternode by eric-volz in https://github.com/eric-volz/DefichainPython/pull/82
* Improve documentation for transaction builder by eric-volz in https://github.com/eric-volz/DefichainPython/pull/100

Tests
* Test for address by eric-volz in https://github.com/eric-volz/DefichainPython/pull/73
* Adjust GitHub Actions for transaction tests by eric-volz in https://github.com/eric-volz/DefichainPython/pull/74
* Test for utils by eric-volz in https://github.com/eric-volz/DefichainPython/pull/75
* Tests for RemoteData of Transactions by eric-volz in https://github.com/eric-volz/DefichainPython/pull/84
* Tests for fees of Transactions by eric-volz in https://github.com/eric-volz/DefichainPython/pull/86
* Tests for Rawtransactions by eric-volz in https://github.com/eric-volz/DefichainPython/pull/88
* Tests for DefiTx by eric-volz in https://github.com/eric-volz/DefichainPython/pull/89
* Tests for transaction builder by eric-volz in https://github.com/eric-volz/DefichainPython/pull/103

**Full Changelog**: https://github.com/eric-volz/DefichainPython/compare/v2.3.0...v3.0.0

3.0.0b3

Here is a explanation: [Announcement](https://github.com/eric-volz/DefichainPython/blob/main/docs/additionalInfos/reddit/announcement03.md)

**Full Changelog**: https://github.com/eric-volz/DefichainPython/compare/v3.0.0b2...v3.0.0b3

Page 1 of 4

© 2024 Safety CLI Cybersecurity Inc. All Rights Reserved.