From 0d5737dbb7a85d8ebd1a5b924b554eb27dd8707a Mon Sep 17 00:00:00 2001 From: Evan Zheng Date: Sun, 20 Aug 2023 22:16:31 -0700 Subject: [PATCH] fix(trx): wrw allows to build trx token sweep EA-1308 --- src/helpers/index.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/helpers/index.ts b/src/helpers/index.ts index 6b8f04a1..f9d6e799 100644 --- a/src/helpers/index.ts +++ b/src/helpers/index.ts @@ -66,7 +66,8 @@ export function isRecoveryTransaction( ('tx' in value && !!value['tx']) || ('transaction' in value && !!value['transaction']) || ('txid' in value && !!value['txid']) || - ('serializedTx' in value && !!value['serializedTx']) + ('serializedTx' in value && !!value['serializedTx']) || + ('tokenTxs' in value && !!value['tokenTxs']) ); }