Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
ayushtom committed Jan 25, 2024
1 parent 4820754 commit dd4560a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion utils/callData.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { CallData, uint256 } from "starknet";
export function boostClaimCall(boost: Boost, sign: Signature) {
const amount = uint256.bnToUint256(
parseInt(
parseInt(String(boost.amount / boost.num_of_winners) * Math.pow(10, 6))
parseInt(String(boost.amount / boost.num_of_winners)) * Math.pow(10, 6)
)
);
console.log("amount", amount);
Expand Down

0 comments on commit dd4560a

Please sign in to comment.