We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 33a2dac commit b05a9d4Copy full SHA for b05a9d4
1 file changed
modules/sdk-coin-tempo/src/tempo.ts
@@ -266,7 +266,8 @@ export class Tempo extends AbstractEthLikeNewCoins {
266
for (let i = 0; i < operations.length; i++) {
267
const op = operations[i];
268
const recipient = recipients[i];
269
- if (op.to.toLowerCase() !== recipient.address.toLowerCase()) {
+ const recipientBaseAddress = recipient.address.split('?')[0];
270
+ if (op.to.toLowerCase() !== recipientBaseAddress.toLowerCase()) {
271
throw new Error(`Operation ${i} recipient mismatch: expected ${recipient.address}, got ${op.to}`);
272
}
273
// Compare amounts in base units (smallest denomination)
0 commit comments