Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: allow to premint and create listing for an existing product #1099

Draft
wants to merge 1 commit into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
59 changes: 59 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,7 @@
"crypto-browserify": "^3.12.0",
"dayjs": "^1.11.3",
"ethers": "^5.7.0",
"ethers-v6": "npm:ethers@^6.10.0",
"fetch": "^1.1.0",
"formik": "^2.2.9",
"graphql": "^16.5.0",
Expand Down
109 changes: 104 additions & 5 deletions src/components/modal/components/VoidProduct.tsx
Original file line number Diff line number Diff line change
@@ -1,27 +1,34 @@
import { TransactionResponse } from "@bosonprotocol/common";
import {
CoreSDK,
CreateListingButton,

Check failure on line 4 in src/components/modal/components/VoidProduct.tsx

View workflow job for this annotation

GitHub Actions / call-reusable-workflow-PR / Build, Test and Deploy the Marketplace Interface

Module '"@bosonprotocol/react-kit"' has no exported member 'CreateListingButton'.
hooks,
PremintButton,

Check failure on line 6 in src/components/modal/components/VoidProduct.tsx

View workflow job for this annotation

GitHub Actions / call-reusable-workflow-PR / Build, Test and Deploy the Marketplace Interface

Module '"@bosonprotocol/react-kit"' has no exported member 'PremintButton'.
Provider,
subgraph,
VoidButton
subgraph
} from "@bosonprotocol/react-kit";
import {
extractUserFriendlyError,
getHasUserRejectedTx
} from "@bosonprotocol/react-kit";
import * as Sentry from "@sentry/browser";
import { useConfigContext } from "components/config/ConfigContext";
import { BigNumberish } from "ethers";
import { BigNumber, BigNumberish } from "ethers";
import { getOfferDetails } from "lib/utils/offer/getOfferDetails";
import { poll } from "lib/utils/promises";
import { useCallback, useState } from "react";
import toast from "react-hot-toast";
import styled from "styled-components";

import { CONFIG } from "../../../lib/config";
import { colors } from "../../../lib/styles/colors";
import { Offer } from "../../../lib/types/offer";
import { useSigner } from "../../../lib/utils/hooks/connection/connection";
import {
useAccount,
useChainId,
useSigner,
useSignerV6
} from "../../../lib/utils/hooks/connection/connection";
import { useAddPendingTransaction } from "../../../lib/utils/hooks/transactions/usePendingTransactions";
import { useCoreSDK } from "../../../lib/utils/useCoreSdk";
import { Break } from "../../detail/Detail.style";
Expand Down Expand Up @@ -207,8 +214,15 @@
const addPendingTransaction = useAddPendingTransaction();
const [isLoading, setIsLoading] = useState<boolean>(false);
const signer = useSigner();
const { data: signerV6 } = useSignerV6();
const { hideModal } = useModal();
const { isMetaTx } = hooks.useMetaTx(coreSdk);
const tokenId =
offerId && offer?.range
? BigNumber.from(offerId).shl(128).add(offer.range.start).toString()
: undefined;
const connectedChainId = useChainId();
const { account } = useAccount();

const handleFinish = useCallback(() => {
hideModal();
Expand Down Expand Up @@ -340,7 +354,7 @@
{offer && (
<Grid justifyContent="center">
<VoidButtonWrapper>
<VoidButton
<PremintButton
variant="accentInverted"
coreSdkConfig={{
envName: config.envName,
Expand All @@ -349,7 +363,9 @@
metaTx: config.metaTx
}}
offerId={offerId || 0}
reserveLength={offer.range ? 0 : offer.quantityAvailable}
preMintAmount={1}
onError={async (error, { txResponse }) => {

Check failure on line 368 in src/components/modal/components/VoidProduct.tsx

View workflow job for this annotation

GitHub Actions / call-reusable-workflow-PR / Build, Test and Deploy the Marketplace Interface

Parameter 'error' implicitly has an 'any' type.

Check failure on line 368 in src/components/modal/components/VoidProduct.tsx

View workflow job for this annotation

GitHub Actions / call-reusable-workflow-PR / Build, Test and Deploy the Marketplace Interface

Binding element 'txResponse' implicitly has an 'any' type.
console.error("onError", error);
const hasUserRejectedTx = getHasUserRejectedTx(error);
if (hasUserRejectedTx) {
Expand Down Expand Up @@ -379,7 +395,7 @@
}
);
}}
onPendingTransaction={(hash, isMetaTx) => {

Check failure on line 398 in src/components/modal/components/VoidProduct.tsx

View workflow job for this annotation

GitHub Actions / call-reusable-workflow-PR / Build, Test and Deploy the Marketplace Interface

Parameter 'hash' implicitly has an 'any' type.

Check failure on line 398 in src/components/modal/components/VoidProduct.tsx

View workflow job for this annotation

GitHub Actions / call-reusable-workflow-PR / Build, Test and Deploy the Marketplace Interface

Parameter 'isMetaTx' implicitly has an 'any' type.
showModal("TRANSACTION_SUBMITTED", {
action: "Void",
txHash: hash
Expand All @@ -397,6 +413,89 @@
onSuccess={handleSuccess}
/>
</VoidButtonWrapper>
{tokenId && (
<VoidButtonWrapper>
<CreateListingButton
providerProps={{
...CONFIG,
envName: config.envName,
configId: config.envConfig.configId,
defaultCurrencySymbol: CONFIG.defaultCurrency.symbol,
defaultCurrencyTicker: CONFIG.defaultCurrency.ticker,
licenseTemplate: CONFIG.rNFTLicenseTemplate,
minimumDisputeResolutionPeriodDays:
CONFIG.minimumDisputePeriodInDays,
walletConnectProjectId: CONFIG.walletConnect.projectId,
ipfsProjectId: CONFIG.infuraProjectId,
ipfsProjectSecret: CONFIG.infuraProjectSecret,
contactSellerForExchangeUrl: "",
sellerCurationListBetweenCommas: "",
withExternalConnectionProps: true,
externalConnectedChainId: connectedChainId,
externalConnectedAccount: account,
externalConnectedSigner: signer,
externalConnectedSignerV6: signerV6,
withWeb3React: false,
withCustomReduxContext: false
}}
variant="accentInverted"
coreSdkConfig={{
envName: config.envName,
configId: config.envConfig.configId,
web3Provider: signer?.provider as Provider,
metaTx: config.metaTx
}}
tokenId={tokenId}
price={"1000000000000000000"}
onError={async (error, { txResponse }) => {

Check failure on line 450 in src/components/modal/components/VoidProduct.tsx

View workflow job for this annotation

GitHub Actions / call-reusable-workflow-PR / Build, Test and Deploy the Marketplace Interface

Parameter 'error' implicitly has an 'any' type.

Check failure on line 450 in src/components/modal/components/VoidProduct.tsx

View workflow job for this annotation

GitHub Actions / call-reusable-workflow-PR / Build, Test and Deploy the Marketplace Interface

Binding element 'txResponse' implicitly has an 'any' type.
console.error("onError", error);
const hasUserRejectedTx = getHasUserRejectedTx(error);
if (hasUserRejectedTx) {
showModal("TRANSACTION_FAILED");
} else {
Sentry.captureException(error);
showModal("TRANSACTION_FAILED", {
errorMessage: "Something went wrong",
detailedErrorMessage: await extractUserFriendlyError(
error,
{
txResponse,
provider: signer?.provider as Provider
}
)
});
}
}}
onPendingSignature={() => {
showModal(
"WAITING_FOR_CONFIRMATION",
undefined,
"auto",
undefined,
{
xs: "400px"
}
);
}}
onPendingTransaction={(hash, isMetaTx) => {

Check failure on line 480 in src/components/modal/components/VoidProduct.tsx

View workflow job for this annotation

GitHub Actions / call-reusable-workflow-PR / Build, Test and Deploy the Marketplace Interface

Parameter 'hash' implicitly has an 'any' type.

Check failure on line 480 in src/components/modal/components/VoidProduct.tsx

View workflow job for this annotation

GitHub Actions / call-reusable-workflow-PR / Build, Test and Deploy the Marketplace Interface

Parameter 'isMetaTx' implicitly has an 'any' type.
showModal("TRANSACTION_SUBMITTED", {
action: "Void",
txHash: hash
});
addPendingTransaction({
type: subgraph.EventType.OFFER_VOIDED,
hash,
isMetaTx,
accountType: "Seller",
offer: {
id: offer.id
}
});
}}
onSuccess={handleSuccess}
/>
</VoidButtonWrapper>
)}
</Grid>
)}
{offers && !!offers.length && (
Expand Down
18 changes: 7 additions & 11 deletions src/components/seller/products/SellerProductsTable.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -594,8 +594,7 @@ export default function SellerProductsTable({
</Typography>
),
action: !(
variantStatus === OffersKit.OfferState.VOIDED ||
variant?.quantityAvailable === "0"
variantStatus === OffersKit.OfferState.VOIDED
) && (
<Grid justifyContent="flex-end">
<VoidButton
Expand All @@ -608,7 +607,7 @@ export default function SellerProductsTable({
showModal(
modalTypes.VOID_PRODUCT,
{
title: "Void Confirmation",
title: "Premint Confirmation",
offerId: variant.id,
offer: variant as Offer,
refetch
Expand All @@ -618,7 +617,7 @@ export default function SellerProductsTable({
}
}}
>
Void
Premint
</VoidButton>
</Grid>
)
Expand Down Expand Up @@ -762,10 +761,7 @@ export default function SellerProductsTable({
);
})(),
action: (() => {
const withVoidButton = !(
status === OffersKit.OfferState.VOIDED ||
offer?.quantityAvailable === "0"
);
const withVoidButton = !(status === OffersKit.OfferState.VOIDED);
return (
<Grid gap="1rem" justifyContent="flex-end">
<Actions
Expand All @@ -786,7 +782,7 @@ export default function SellerProductsTable({
showModal(
modalTypes.VOID_PRODUCT,
{
title: "Void Confirmation",
title: "Premint Confirmation",
offers:
offer.additional?.variants.filter(
(variant) => {
Expand All @@ -808,7 +804,7 @@ export default function SellerProductsTable({
showModal(
modalTypes.VOID_PRODUCT,
{
title: "Void Confirmation",
title: "Premint Confirmation",
offerId: offer.id,
offer,
refetch
Expand All @@ -819,7 +815,7 @@ export default function SellerProductsTable({
}
}}
>
Void
Premint
</UnthemedButton>
)
}
Expand Down
33 changes: 32 additions & 1 deletion src/lib/utils/hooks/connection/connection.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,10 @@

import { hooks, useUser } from "@bosonprotocol/react-kit";
import { useWeb3React } from "@web3-react/core";
import { providers } from "ethers";
import { BrowserProvider } from "ethers-v6";
import { useMemo } from "react";
import { useMutation } from "react-query";
import { useMutation, useQuery } from "react-query";

export function useProvider() {
const { provider } = useWeb3React();
Expand All @@ -25,6 +27,35 @@ export function useSigner() {
return signer;
}

export function useSignerV6() {
const providerV5 = useProvider();
const url = providerV5?.connection?.url;
return useQuery(["signer", url], async () => {
const providerV6 = providerV5toV6(providerV5);
return await providerV6?.getSigner();
});
}

function providerV5toV6(
providerV5: providers.Web3Provider
): BrowserProvider | undefined {
return providerV5
? new BrowserProvider({
request: async (request: {
method: string;
params?: Array<any> | Record<string, any>;
}) => {
const params = request.params
? Array.isArray(request.params)
? (request.params as Array<any>)
: Array.from(request.params.values())
: [];
return providerV5.send(request.method, params);
}
})
: undefined;
}

export function useAccount() {
const { account } = useWeb3React();
const { user } = useUser();
Expand Down
Loading