https://github.com/goatpig/BitcoinArmory/blob/master/armoryengine/PyBtcWallet.py#L266
This shows you how PyBtcWallet objects register addresses with the backend. You don't need to use a PyBtcWallet object, just register a list of addresses and recover the cppWallet object. You can query that object directly in Python to get specific address objects. Then you can query the address object for history, balance and utxo set.
addr160 are the result of ripemd160(sha256(sha256(pubkey))), with a null byte prefix.
This shows you how PyBtcWallet objects register addresses with the backend. You don't need to use a PyBtcWallet object, just register a list of addresses and recover the cppWallet object. You can query that object directly in Python to get specific address objects. Then you can query the address object for history, balance and utxo set.
addr160 are the result of ripemd160(sha256(sha256(pubkey))), with a null byte prefix.
Man I tried, but this is waaay out of my league.
To be honest, I need a simpler way to put an address in and get a balance out. If this is something that you think is not possible in armory until you finish litenode would you have recommendations for balance lookup/transaction history software that I could make use of?
Thanks for your help bud!