Easily get the main info of any account by passing in the account’s Public Key.
    // Wrap the callback in a suspendable way (like a suspendCoroutine)
    val result = Altude.getAccountInfo()
    val option = GetAccountInfoOption(
        account = "YourAccountPublicKeyHere" // Public key of the account you want to query,            
    )
    
    // Wrap the callback in a suspendable way (like a suspendCoroutine)
    val result = Altude.getAccountInfo(option)