@@ -31,9 +31,6 @@ import {
31
31
useMutation ,
32
32
useQuery ,
33
33
} from "react-query" ;
34
- import { useAddress } from "src/shared/useAddress" ;
35
- import { useConnectors } from "src/shared/useConnectors" ;
36
- import { useSDKWithSigner } from "src/shared/useSdkWithSigner" ;
37
34
import { Provider , useNetwork } from "wagmi" ;
38
35
import { ConnectWalletButton } from "../shared/connect-wallet-button" ;
39
36
import { Footer } from "../shared/footer" ;
@@ -42,10 +39,9 @@ import { DropSvg } from "../shared/svg/drop";
42
39
import chakraTheme from "../shared/theme" ;
43
40
import { fontsizeCss } from "../shared/theme/typography" ;
44
41
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" ;
49
45
50
46
function parseHugeNumber ( totalAvailable : BigNumberish = 0 ) {
51
47
const bn = BigNumber . from ( totalAvailable ) ;
@@ -183,11 +179,13 @@ const ClaimButton: React.FC<ClaimPageProps> = ({
183
179
{ enabled : ! ! module && tokenId . length > 0 } ,
184
180
) ;
185
181
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 ) ;
187
186
const currency = activeClaimCondition ?. data ?. currency ;
188
187
const claimed = activeClaimCondition . data ?. currentMintSupply || "0" ;
189
188
const totalAvailable = activeClaimCondition . data ?. maxMintSupply || "0" ;
190
- const [ quantity , setQuantity ] = useState ( 1 ) ;
191
189
192
190
const tokenModule = useMemo ( ( ) => {
193
191
if ( ! currency || ! sdk ) {
@@ -216,7 +214,7 @@ const ClaimButton: React.FC<ClaimPageProps> = ({
216
214
if ( ! address || ! module ) {
217
215
throw new Error ( "No address or module" ) ;
218
216
}
219
- return module . claim ( tokenId , 1 ) ;
217
+ return module . claim ( tokenId , quantity ) ;
220
218
} ,
221
219
{
222
220
onSuccess : ( ) => queryClient . invalidateQueries ( "numbers" ) ,
0 commit comments