Skip to content

Commit 89891c9

Browse files
committed
fix bunledrop quantity bug
1 parent 5d65b8c commit 89891c9

File tree

2 files changed

+9
-11
lines changed

2 files changed

+9
-11
lines changed

parcel-build.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,6 @@
2020
</head>
2121
<body>
2222
<div id="root"></div>
23-
<script type="module" src="./src/widgets/drop.tsx"></script>
23+
<script type="module" src="./src/widgets/bundledrop.tsx"></script>
2424
</body>
2525
</html>

src/widgets/bundledrop.tsx

+8-10
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,6 @@ import {
3131
useMutation,
3232
useQuery,
3333
} from "react-query";
34-
import { useAddress } from "src/shared/useAddress";
35-
import { useConnectors } from "src/shared/useConnectors";
36-
import { useSDKWithSigner } from "src/shared/useSdkWithSigner";
3734
import { Provider, useNetwork } from "wagmi";
3835
import { ConnectWalletButton } from "../shared/connect-wallet-button";
3936
import { Footer } from "../shared/footer";
@@ -42,10 +39,9 @@ import { DropSvg } from "../shared/svg/drop";
4239
import chakraTheme from "../shared/theme";
4340
import { fontsizeCss } from "../shared/theme/typography";
4441
import { useFormatedValue } from "../shared/tokenHooks";
45-
46-
const connectors = {
47-
injected: {},
48-
};
42+
import { useAddress } from "../shared/useAddress";
43+
import { useConnectors } from "../shared/useConnectors";
44+
import { useSDKWithSigner } from "../shared/useSdkWithSigner";
4945

5046
function parseHugeNumber(totalAvailable: BigNumberish = 0) {
5147
const bn = BigNumber.from(totalAvailable);
@@ -183,11 +179,13 @@ const ClaimButton: React.FC<ClaimPageProps> = ({
183179
{ enabled: !!module && tokenId.length > 0 },
184180
);
185181

186-
const priceToMint = BigNumber.from(activeClaimCondition?.data?.price || 0);
182+
const [quantity, setQuantity] = useState(1);
183+
const priceToMint = BigNumber.from(
184+
activeClaimCondition?.data?.pricePerToken || 0,
185+
).mul(quantity);
187186
const currency = activeClaimCondition?.data?.currency;
188187
const claimed = activeClaimCondition.data?.currentMintSupply || "0";
189188
const totalAvailable = activeClaimCondition.data?.maxMintSupply || "0";
190-
const [quantity, setQuantity] = useState(1);
191189

192190
const tokenModule = useMemo(() => {
193191
if (!currency || !sdk) {
@@ -216,7 +214,7 @@ const ClaimButton: React.FC<ClaimPageProps> = ({
216214
if (!address || !module) {
217215
throw new Error("No address or module");
218216
}
219-
return module.claim(tokenId, 1);
217+
return module.claim(tokenId, quantity);
220218
},
221219
{
222220
onSuccess: () => queryClient.invalidateQueries("numbers"),

0 commit comments

Comments
 (0)