Skip to content

Commit

Permalink
Merge branch 'main' into module-resolution-bundler
Browse files Browse the repository at this point in the history
  • Loading branch information
technophile-04 committed Jul 17, 2024
2 parents 6023ccb + cdb6cbc commit c9a2bcf
Showing 1 changed file with 18 additions and 3 deletions.
21 changes: 18 additions & 3 deletions packages/nextjs/app/debug/_components/contract/utilsContract.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,16 +18,31 @@ const isJsonString = (str: string) => {
}
};

const isBigInt = (str: string) => {
if (str.trim().length === 0) return false;
try {
BigInt(str);
return true;
} catch (e) {
return false;
}
};

// Recursive function to deeply parse JSON strings, correctly handling nested arrays and encoded JSON strings
const deepParseValues = (value: any): any => {
if (typeof value === "string") {
// first try with bigInt because we losse precision with JSON.parse
if (isBigInt(value)) {
return BigInt(value);
}

if (isJsonString(value)) {
const parsed = JSON.parse(value);
return deepParseValues(parsed);
} else {
// It's a string but not a JSON string, return as is
return value;
}

// It's a string but not a JSON string, return as is
return value;
} else if (Array.isArray(value)) {
// If it's an array, recursively parse each element
return value.map(element => deepParseValues(element));
Expand Down

0 comments on commit c9a2bcf

Please sign in to comment.