From d745a516cb3fe4a2e9c82defdf3a59b86b5434fc Mon Sep 17 00:00:00 2001 From: David C Goldenberg Date: Thu, 21 Nov 2024 13:44:58 -0500 Subject: [PATCH] Update to the index and Categories after operations are added. --- src/core/config/Categories.json | 3 ++- tests/operations/index.mjs | 1 + 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/src/core/config/Categories.json b/src/core/config/Categories.json index f5fe28e2..b25cfb66 100644 --- a/src/core/config/Categories.json +++ b/src/core/config/Categories.json @@ -356,7 +356,8 @@ "Decrypt Keystore File", "BIP32Derive", "Public Key To ETH Style Address", - "Public Key To TRX Style Address" + "Public Key To TRX Style Address", + "ETH / TRX Conversion" ] }, { diff --git a/tests/operations/index.mjs b/tests/operations/index.mjs index 47f3c0f4..efb45a57 100644 --- a/tests/operations/index.mjs +++ b/tests/operations/index.mjs @@ -184,6 +184,7 @@ import "./tests/SeedphraseToSeed.mjs"; import "./tests/DeserializeExtendedKey.mjs"; import "./tests/PublicKeyToETHStyleAddress.mjs"; import "./tests/PublicKeyToTRXStyleAddress.mjs"; +import "./tests/ETHTRXConversion.mjs"; import "./tests/GetAllCasings.mjs"; import "./tests/SIGABA.mjs"; import "./tests/ELFInfo.mjs";