From f41fa64f38423cebecfa660b61ab15e5243ab134 Mon Sep 17 00:00:00 2001 From: orbitlens Date: Mon, 19 Aug 2024 12:02:34 +0000 Subject: [PATCH] Replace Albedo icon with SVG, return actual signer pubkey in the `signTransaction` method --- src/modules/albedo.module.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/modules/albedo.module.ts b/src/modules/albedo.module.ts index 8f58ab24..44698c82 100644 --- a/src/modules/albedo.module.ts +++ b/src/modules/albedo.module.ts @@ -11,7 +11,7 @@ export class AlbedoModule implements ModuleInterface { productId: string = ALBEDO_ID; productName: string = 'Albedo'; productUrl: string = 'https://albedo.link/'; - productIcon: string = 'https://stellar.creit.tech/wallet-icons/albedo.png'; + productIcon: string = 'https://albedo.link/img/logo-square.svg'; async isAvailable(): Promise { return true; @@ -46,9 +46,9 @@ export class AlbedoModule implements ModuleInterface { : AlbedoNetwork.TESTNET : undefined, }) - .then(({ signed_envelope_xdr }) => ({ + .then(({ signed_envelope_xdr, pubkey }) => ({ signedTxXdr: signed_envelope_xdr, - signerAddress: opts?.address, + signerAddress: pubkey, })) .catch(e => { throw parseError(e);