Tx ID | Age | Round | Type | From | To | Units |
---|---|---|---|---|---|---|
3 y | pay | 0.399000 | ||||
3 y | pay | 0.500000 | ||||
3 y | pay | 0.020000 | ||||
3 y | pay | 0.100000 | ||||
3 y | pay | 1.000000 |
Account
0 Assets
Min balance: 0.10
Min balance: 0.10
…
- 0.776003
$0.14
Memo Board
Latest transactions with notes
+ 0.399 3 y
import sys, os
codepath = '..'+os.path.sep+'..'+os.path.sep+'sharedCode'
sys.path.append(codepath)
from algo_util import *
cred = load_credentials()
from algosdk import account, mnemonic
from algosdk.v2client import algod
from algosdk.future.transaction import PaymentTxn, MultisigTransaction
from algosdk.future.transaction import AssetConfigTxn, AssetTransferTxn, AssetFreezeTxn
import algosdk.error
import json
algod_token = '' # Only needed if we have our own server,
algod_address = cred['algod_main'] # Or cred['algod_main']
purestake_token = cred['purestake_token'] # Authentication token pair {'X-Api-key': '(your token'}
# Initialize the algod client
algod_client = algod.AlgodClient(algod_token=algod_token, algod_address=algod_address, headers=purestake_token)
print(algod_client.account_info('332K7LY7US3BDQULQO4MX2B4VULSNXVEEAZMWCCPKKPXXPRI4CVPA2VX2A')["amount"])
import sys, os
codepath = '..'+os.path.sep+'..'+os.path.sep+'sharedCode'
sys.path.append(codepath)
from algo_util import *
cred = load_credentials()
from algosdk import account, mnemonic
from algosdk.v2client import algod
from algosdk.future.transaction import PaymentTxn, MultisigTransaction
from algosdk.future.transaction import AssetConfigTxn, AssetTransferTxn, AssetFreezeTxn
import algosdk.error
import json
algod_token = '' # Only needed if we have our own server,
algod_address = cred['algod_main'] # Or cred['algod_main']
purestake_token = cred['purestake_token'] # Authentication token pair {'X-Api-key': '(your token'}
# Initialize the algod client
algod_client = algod.AlgodClient(algod_token=algod_token, algod_address=algod_address, headers=purestake_token)
print(algod_client.account_info('332K7LY7US3BDQULQO4MX2B4VULSNXVEEAZMWCCPKKPXXPRI4CVPA2VX2A')["amount"])