The Python SDK for Terra Classic Data Analysis
Project description
The Terra Classic Data Analysis Software Development Kit (SDK) not only possesses the functions of a basic SDK but also specifically enhances the on - chain historical data tracing and data analysis functions.
Features
-
Basic SDK: Inherit all the LCD query、Tx transaction from the basic SDK and maintain updates.
-
Data Analysis: Enhanced the on-chain data analysis function, providing aggregation interfaces for historical data tracing and display of pre - processed results.
-
BUG Fixed: Since validators have the greatest stake in the development of the Terra chain, they actively fix bugs and add features. Currently, the Binodes validator is the main maintainer.
Recent changes
V0.3.0 (2026-04-18)
Cosmos SDK v0.53 Release Version
V0.2.6 (2025-12-25)
for SDK 53 upgrade: feat(core): Add Tip type and optimize transaction processing functionality
- Added support for the Tip type in the core module.
- Added the
expeditedproposal field in the gov module. - Optimized the code ID and contract address extraction logic in
contract.py. - Improved JSON serialization processing by adding bytes type conversion.
- Updated the transaction body structure, added
timeout_heightconversion and new fields. - Added the
to_datamethod to transaction logs and recursive byte - to - string functionality.
V0.2.5 (2025-12-15)
fix(wasm): Improve the message parsing function to support more data types
- Update the
parse_msgfunction signature to include theinttype. - Use
isinstanceinstead oftypechecks to enhance code robustness. - Add attempts to parse JSON for
strandbytestypes. - Return the original value for strings or bytes that cannot be parsed.
- Add exception handling to catch
ValueErrorandTypeError. - For unanticipated data types, directly return the original value instead of raising an exception.
V0.2.4 (2025-10-21)
Base Terra classic's core v3.6.0 upgrade:
refactor(wasm): Refactor the contract information return structure
- Adjust the return format of contract information, separating the contract address from the contract information.
- Add a new "extension" field in the contract information to support extended information.
- Simplify the field access logic to improve code readability.
- Remove redundant field - handling comments.
- Keep the "code_id" field as a string type instead of parsing it into a number.
- Retain all original fields and maintain their data integrity.
V0.2.3 (2025-10-16)
feat(bank): Add the function to query the total supply of tokens
- Import the
Coinclass inbank.pyto support the handling of the amount of a single token. - Implement the asynchronous method
total_denomto query the total supply of the specifieddenom. - Add a synchronous binding wrapper for the
total_denommethod. - Add a method to query the unclaimed rewards of validators in
distribution.py - Implement both asynchronous and synchronous interfaces for
validator_outstanding_rewards. - Update the relevant API docstrings to reflect the new features.
V0.2.2 (2025-09-02)
feat(wasm, slashing): add new functionality and update messages
- Add MsgStoreCode_vbeta1 to wasm module
- Update connection data parsing in ibc module
- Add codes and contracts_by_code methods to WasmAPI- Update contract_info method in WasmAPI
- Add MsgUpdateParams to slashing module
V0.2.1 (2025-08-04)
feat(bank): add denominations metadata endpoint and update related data objects
- Add denoms_metadata method to AsyncBankAPI and BankAPI
- Create Metadata and DenomUnit classes in bank/data.py
- Update TxBody and TxInfo classes to include new fields
Installation
NOTE: All code starting with a $ is meant to run on your terminal (a bash prompt). All code starting with a >>> is meant to run in a python interpreter, like ipython.
Terra SDK can be installed (preferably in a virtual environment from PyPI using pip) as follows:
Upgrade the SDK:
$ pip install -U terra-classic-data-analysis-sdk
You might need to run pip via python -m pip install -U terra-classic-data-analysis-sdk. Additionally, you might have pip3 installed instead of pip; proceed according to your own setup.
Table of Contents
API Reference
An intricate reference to the APIs on the Terra SDK can be found here.
Getting Started
A walk-through of the steps to get started with the Terra SDK alongside a few use case examples are provided below. Alternatively, a tutorial video is also available here as reference.
Requirements
Terra Classic SDK requires Python v3.7+.
Usage Examples
One line of code to query the maximum block height on the current blockchain:
>>> from terra_classic_sdk.client.lcd import LCDClient
>>> LCDClient().tendermint.block_info()['block']['header']['height']
'1687543'
Notice:User-defined LCD and CHAIN are still supported, and the usage inherits from the underlying basic SDK capabilities.
Async Usage
If you want to make asynchronous, non-blocking LCD requests, you can use AsyncLCDClient. The interface is similar to LCDClient, except the module and wallet API functions must be awaited.
>>> import asyncio
>>> from terra_classic_sdk.client.lcd import AsyncLCDClient
>>> async def main():
terra = AsyncLCDClient()
total_supply = await terra.bank.total()
print(total_supply)
await terra.session.close # you must close the session
>>> asyncio.get_event_loop().run_until_complete(main())
Building and Signing Transactions
If you wish to perform a state-changing operation on the Terra Classic blockchain such as sending tokens, swapping assets, withdrawing rewards, or even invoking functions on smart contracts, you must create a transaction and broadcast it to the network. Terra Classic SDK provides functions that help create StdTx objects.
Example Using a Wallet (recommended)
A Wallet allows you to create and sign a transaction in a single step by automatically fetching the latest information from the blockchain (chain ID, account number, sequence).
Use LCDClient.wallet() to create a Wallet from any Key instance. The Key provided should correspond to the account you intend to sign the transaction with.
NOTE: If you are using MacOS and got an exception 'bad key length' from MnemonicKey, please check your python implementation. if python3 -c "import ssl; print(ssl.OPENSSL_VERSION)" returns LibreSSL 2.8.3, you need to reinstall python via pyenv or homebrew.
>>> from terra_classic_sdk.client.lcd import LCDClient
>>> from terra_classic_sdk.key.mnemonic import MnemonicKey
# Fill in the mnemonic phrase of your wallet. A better practice is to set it as a system variable and read it.
>>> key = MnemonicKey(
mnemonic="sport oppose usual cream task benefit canvas xxxxxxxxxxxxxxxxxx")
# Init wallet
>>> wallet = LCDClient().wallet(key=key)
Once you have your Wallet, you can simply create a StdTx using Wallet.create_and_sign_tx.
>>> from terra_classic_sdk.core.bank import MsgSend
>>> from terra_classic_sdk.client.lcd.api.tx import CreateTxOptions
>>> tx = wallet.create_and_sign_tx(CreateTxOptions(
msgs=[MsgSend(
"terra1drs4gul908c59638gu9s88mugdnujdprjhtu7n", # Sender
'terra1s2xpff7mj6jpxfyhr7pe25vt8puvgj4wyq8lz4', # Receiver
"1000000uluna" # send 1 lunc
)],
memo="test transaction!",
gas_adjustment=1.2, # Auto fee, can be increased during peak periods.
# fee=Fee(240324,'7023928uluna'), # Set the fees manually if you need
))
You should now be able to broadcast your transaction to the network.
>>> result = LCDClient().tx.broadcast(tx)
>>> print(result)
Dependencies
Terra Classic SDK uses Poetry to manage dependencies. To get set up with all the required dependencies, run:
$ pip install poetry
$ poetry install
Tests
Terra Classic SDK provides extensive tests for data classes and functions. To run them, after the steps in Dependencies:
$ make test
Code Quality
Terra Classic SDK uses Black, isort, and Mypy for checking code quality and maintaining style. To reformat, after the steps in Dependencies:
$ make qa && make format
Contributing
Community contribution, whether it's a new feature, correction, bug report, additional documentation, or any other feedback is always welcome. Please read through this section to ensure that your contribution is in the most suitable format for us to effectively process.
Reporting an Issue
First things first: Do NOT report security vulnerabilities in public issues! Please disclose responsibly by submitting your findings to the Terra Bugcrowd submission form. The issue will be assessed as soon as possible. If you encounter a different issue with the Python SDK, check first to see if there is an existing issue on the Issues page, or if there is a pull request on the Pull requests page. Be sure to check both the Open and Closed tabs addressing the issue.
If there isn't a discussion on the topic there, you can file an issue. The ideal report includes:
- A description of the problem / suggestion.
- How to recreate the bug.
- If relevant, including the versions of your:
- Python interpreter
- Terra SDK
- Optionally of the other dependencies involved
- If possible, create a pull request with a (failing) test case demonstrating what's wrong. This makes the process for fixing bugs quicker & gets issues resolved sooner.
Requesting a Feature
If you wish to request the addition of a feature, please first check out the Issues page and the Pull requests page (both Open and Closed tabs). If you decide to continue with the request, think of the merits of the feature to convince the project's developers, and provide as much detail and context as possible in the form of filing an issue on the Issues page.
Contributing Code
If you wish to contribute to the repository in the form of patches, improvements, new features, etc., first scale the contribution. If it is a major development, like implementing a feature, it is recommended that you consult with the developers of the project before starting the development to avoid duplicating efforts. Once confirmed, you are welcome to submit your pull request.
For new contributors, here is a quick guide:
- Fork the repository.
- Build the project using the Dependencies and Tests steps.
- Install a virtualenv.
- Develop your code and test the changes using the Tests and Code Quality steps.
- Commit your changes (ideally follow the Angular commit message guidelines).
- Push your fork and submit a pull request to the repository's
mainbranch to propose your code.
A good pull request:
- Is clear and concise.
- Works across all supported versions of Python. (3.7+)
- Follows the existing style of the code base (
Flake8). - Has comments included as needed.
- Includes a test case that demonstrates the previous flaw that now passes with the included patch, or demonstrates the newly added feature.
- Must include documentation for changing or adding any public APIs.
- Must be appropriately licensed (MIT License).
Documentation Contributions
Documentation improvements are always welcome. The documentation files live in the docs directory of the repository and are written in reStructuredText and use Sphinx to create the full suite of documentation.
When contributing documentation, please do your best to follow the style of the documentation files. This means a soft limit of 88 characters wide in your text files and a semi-formal, yet friendly and approachable, prose style. You can propose your improvements by submitting a pull request as explained above.
Need more information on how to contribute?
You can give this guide read for more insight.
License
This software is licensed under the MIT license. See LICENSE for full disclosure.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file terra_classic_data_analysis_sdk-0.3.0.tar.gz.
File metadata
- Download URL: terra_classic_data_analysis_sdk-0.3.0.tar.gz
- Upload date:
- Size: 106.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.11.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9dabb734bfc5c4bad8c52ff08bb4242aed8882f86ce2bfc262d00494578a0da5
|
|
| MD5 |
0fd9f83617312175a04f53fbaebbc668
|
|
| BLAKE2b-256 |
d4830ef02c082fc65847de6a4cf29d2b255090bf5f0f5ffd4a5f9eb6aa905866
|
File details
Details for the file terra_classic_data_analysis_sdk-0.3.0-py3-none-any.whl.
File metadata
- Download URL: terra_classic_data_analysis_sdk-0.3.0-py3-none-any.whl
- Upload date:
- Size: 157.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.11.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ea5bce8dbbca0a7ede4dbcf200b009980171f922fdf1b95379808c2a3779511b
|
|
| MD5 |
6a0e905cc240b8d3e82c8194d316fed3
|
|
| BLAKE2b-256 |
e9b87f2d4de19e38c57f46c1afe15ed6258e1ba744f78ebe7867b327aceb6ba6
|