From b12c077003a9637178488f572f3efdc1a824dd1b Mon Sep 17 00:00:00 2001 From: sosaucily Date: Mon, 30 Sep 2024 16:05:29 +0200 Subject: [PATCH] remove some noisy debug statements; --- src/network-handlers/ripple-handler.ts | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/src/network-handlers/ripple-handler.ts b/src/network-handlers/ripple-handler.ts index 7f35684..d47d012 100644 --- a/src/network-handlers/ripple-handler.ts +++ b/src/network-handlers/ripple-handler.ts @@ -49,7 +49,6 @@ function decodeNftURI(URI: string): RawVault { try { VERSION = parseInt(URI.slice(0, 2), 16); status = parseInt(URI.slice(2, 4), 16); - console.log(`Decoding URI: ${URI}`); uuid = URI.slice(4, 68); valueLocked = BigNumber.from(`0x${URI.slice(68, 84)}`); valueMinted = BigNumber.from(`0x${URI.slice(84, 100)}`); @@ -70,9 +69,9 @@ function decodeNftURI(URI: string): RawVault { console.log(`URI which failed to Decode: ${URI}`); return {} as RawVault; } - console.log( - `Decoded URI: Version: ${VERSION}, status: ${status}, UUID: ${uuid}, valueLocked: ${valueLocked}, valueMinted: ${valueMinted}, fundingTxId: ${fundingTxId}, wdTxId: ${wdTxId}, btcMintFeeBasisPoints: ${btcMintFeeBasisPoints}, btcRedeemFeeBasisPoints: ${btcRedeemFeeBasisPoints}, btcFeeRecipient: ${btcFeeRecipient} , taprootPubKey: ${taprootPubKey}` - ); + // console.log( + // `Decoded URI: Version: ${VERSION}, status: ${status}, UUID: ${uuid}, valueLocked: ${valueLocked}, valueMinted: ${valueMinted}, fundingTxId: ${fundingTxId}, wdTxId: ${wdTxId}, btcMintFeeBasisPoints: ${btcMintFeeBasisPoints}, btcRedeemFeeBasisPoints: ${btcRedeemFeeBasisPoints}, btcFeeRecipient: ${btcFeeRecipient} , taprootPubKey: ${taprootPubKey}` + // ); const baseVault = buildDefaultNftVault(); return { ...baseVault,