Skip to content

Commit

Permalink
fix: dequantize method
Browse files Browse the repository at this point in the history
  • Loading branch information
gurukishore111 committed Mar 21, 2024
1 parent 8be64ab commit db40a77
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ export const getNonce = (
return baseNonce.then((nonce: number) => nonce + nonceOffset++)
}

export function dequantize(number: string, decimals: number): BigNumber {
export function dequantize(number: string, decimals: number): string {
// const factor = 10 ** decimals
// return typeof number === 'number'
// ? number / factor
Expand Down

0 comments on commit db40a77

Please sign in to comment.