Get started with Terra.py
Terra.py is no longer being maintained, and you may encounter errors while using this tool. Please use feather.js instead. Generally, migration from Terra.py to Feather.js can be done relatively easily. Follow the Feather.js tutorial to learn how to get started.
Terra's Python SDK is a library toolkit used for developing software that interacts with the Terra blockchain. In this tutorial, you will learn how you can install the Terra Python SDK, as well as any necessary dependencies, and how you can carry out transactions utilizing this technology.
For more information on Terra.py, visit the Terra.py docs.
Requirements
The Terra Python SDK requires Python v3.7+.
Installation
- The Terra Python SDK may be installed, preferably in a virtual environment, by running the following command in your terminal:
_1pip install -U terra_sdk
- Run the following commands to clone the
terra.py
repository, enter the new directory, and install all necessary dependencies:
_4git clone --depth 1 https://github.com/terra-money/terra.py.git_4cd terra.py_4pip install poetry_4poetry install
Usage Examples
The Terra Python SDK can be used to carry out a variety of transactions on the Terra blockchain. This tutorial will go over how to create, sign, and send transactions utilizing a client.
LocalTerra for Development & Testing
For testing your transactions, it is recommended that you install and run LocalTerra on your personal computer. Instructions on how to get LocalTerra up and running may be found in the LocalTerra GitHub repository. If you would rather test on a network similar to mainnet
, the live Terra blockchain, then you may use the testnet
. However, you will be limited on the number of transactions that you may make per day. This is to protect computing resources from scripts that may spam the network. Once you are comfortable enough to make transactions on the live Terra blockchain, you may use mainnet
to carry out transactions with your own assets.
Connecting to Your Wallet
In order to conduct transactions on Terra, you will need to be able to send requests to the underlying blockchain. This may be done via instantiating an LCDClient which can be used to communicate to the corresponding Terra Lite Client Daemon (LCD) node.
After you have instantiated your client to communicate with the appropriate network, you may initialize the wallet with which you would like to carry out transactions. On LocalTerra, you may pass in a name of a preconfigured testing wallet (test1-10), each of which contains more than adequate funds for testing purposes. On testnet or mainnet, you will need to pass in the mnemonic key associated with your wallet.
Carrying out transactions on testnet or mainnet require the use of your personal seed phrase or mnemonic key. This is an unencrypted private key that is generated and presented to you upon the creation of your personal wallet. Saving or utilizing this phrase on your personal computer may expose this private key to malicious actors who could gain access to your personal wallet if they are able to obtain it. You may create a wallet solely for testing purposes to eliminate risk. Use your mnemonic key at your own disgretion.
_7from terra_sdk.client.localterra import LocalTerra_7_7# Create client to communicate with localterra._7terra = LocalTerra()_7_7# Initialize preconfigured test wallet._7wallet = terra.wallets["test1"]
_12from terra_sdk.key.mnemonic import MnemonicKey_12from terra_sdk.client.lcd import LCDClient_12_12# Create client to communicate with testnet._12terra = LCDClient(_12 url="https://pisco-lcd.terra.dev/",_12 chain_id="pisco-1"_12)_12_12# Initialize wallet with associated mnemonic key._12mk = MnemonicKey(mnemonic="<INSERT MNEMONIC KEY HERE>")_12wallet = terra.wallet(mk)
_12from terra_sdk.key.mnemonic import MnemonicKey_12from terra_sdk.client.lcd import LCDClient_12_12# Create client to communicate with mainnet._12terra = LCDClient(_12 url="https://phoenix-lcd.terra.dev",_12 chain_id="phoenix-1"_12)_12_12# Initialize wallet with associated mnemonic key._12mk = MnemonicKey(mnemonic="<INSERT MNEMONIC KEY HERE>")_12wallet = terra.wallet(mk)
Quick Note on Gas & Fees
All transactions on the blockchain will require some effort from computational resources in order to be processed and accepted. The computational work expended due to processing a transaction is quantified in units of gas
.
Because the amount of gas needed may not be predetermined, the signer of the transaction must send the amount of gas that they would like to use along with the transaction. Fees are calculated by multiplying the gas amount specified in the transaction by either a user-specified price or by utilizing preset prices for each unit of gas. Current rates per unit of gas may be viewed on the gas rates page.
Each request you will make to the blockchain will contain a message detailing your transaction along with parameters that will help estimate the gas fee. The estimated fee must be above the minimum fee required to process the request for the transaction to be accepted. If the fee is too small to fully complete the request, you may still be responsible for charges on the processing that was carried out before the transaction failed. Gas that is left unused after the transaction will not be refunded and larger estimated fee values will not translate to any benefits for the signer.
Testnet
_6import requests_6import json_6_6# Request current gas rates on testnet for future fee estimation._6gas_price_dict = requests.get("https://pisco-fcd.terra.dev/v1/txs/gas_prices").json()_6gas_price_dict
_6import requests_6import json_6_6# Request current gas rates on mainnet for future fee estimation._6gas_price_dict = requests.get("https://phoenix-fcd.terra.dev/v1/txs/gas_prices").json()_6gas_price_dict
_3{_3"uluna": "0.15"_3}
The "u" preceding the name of each currency is the unit symbol for micro. This means that each price is given in millionths of the corresponding cryptocurrency asset. For example, the "uluna": "0.15" entry corresponds to a 0.00000015 LUNA cost for each unit of gas expended per transaction.
Signing and Sending Transactions
After initializing your LCDClient and wallet, you may try to carry out a simple transfer of funds. This involves initializing the addresses of your sender and receiver wallets, setting the relevant parameters to carry out the transaction, and creating, signing, and finally sending the request to the node for execution. In this example, you will be sending 1 Luna from your previously initialized wallet to another testing wallet, test2. For this example, fees will be paid in Luna (LUNA), as specified in the fee_denoms
parameter.
_28from terra_sdk.client.lcd.api.tx import CreateTxOptions_28from terra_sdk.core.bank import MsgSend_28from terra_sdk.core import Coins, Coin_28_28# Initialize sender and recipient wallet addresses._28sender_address = wallet.key.acc_address_28recipient_address = terra.wallets["test2"].key.acc_address_28_28# Set relevant parameters for transaction._28tx_options = CreateTxOptions(_28 msgs=[_28 MsgSend(_28 from_address=sender_address,_28 to_address=recipient_address,_28 amount=Coins([Coin("uluna", 1000000)])_28 )_28 ],_28 gas="auto",_28 gas_prices=Coins(gas_price_dict),_28 fee_denoms="uluna",_28 gas_adjustment=1.5_28)_28_28# Create and sign transaction._28tx = wallet.create_and_sign_tx(options=tx_options)_28_28# Broadcast the request for execution to the Terra node._28result = terra.tx.broadcast(tx)
After broadcasting the transaction to the Terra node, the result
variable will hold all relevant information about your request, including if it was successfully completed or not.
In CreateTxOptions
, the setting of the gas
parameter to auto
estimates the amount of gas that may be needed for processing the transaction. The gas_adjustment
parameter allows for this value to be increased in order to meet the minimum gas requirement for processing if the estimated value is determined to be too small. In order to ensure acceptance of your transaction, this example sets this parameter to a value of 1.5. You may experiment with different parameter values to evaluate which configuration is best for you.
Next steps
For more information on utilizing Terra.py, visit the Terra.py docs.