Hi there,
I would like retrieve the recipient address (or decode) in transactions history.
My code:
let historyPage = await this.server.transactions()
                                    .forAccount(this.account.accountId())
                                    .call()
...
let txDetails = StellarSDK.xdr.TransactionEnvelope.fromXDR(record.envelope_xdr, 'base64')
txDetails._attributes.tx._attributes.operations.map(operation => {
if (operation._attributes.body._value._attributes.destination !== undefined) {
      let value = operation._attributes.body._value._attributes.destination._value
      // How decode this address ?
}
Thks