Skip to content
Merged
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
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import { AdminOnly } from "@3rdweb-sdk/react/components/roles/admin-only";
import { useIsMinter } from "@3rdweb-sdk/react/hooks/useContractRoles";
import { StepsCard } from "components/dashboard/StepsCard";
import { useContractFunctionSelectors } from "contract-ui/hooks/useContractFunctionSelectors";
import { useMemo } from "react";
import type { ThirdwebContract } from "thirdweb";
import * as ERC20Ext from "thirdweb/extensions/erc20";
Expand All @@ -10,7 +11,6 @@ import * as ERC4337Ext from "thirdweb/extensions/erc4337";
import { getAccounts } from "thirdweb/extensions/erc4337";
import { useReadContract } from "thirdweb/react";
import { Link, Text } from "tw-components";
import { useContractFunctionSelectors } from "../../../hooks/useContractFunctionSelectors";

interface ContractChecklistProps {
contract: ThirdwebContract;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import * as ERC721 from "thirdweb/extensions/erc721";
import * as ERC1155 from "thirdweb/extensions/erc1155";
import { useReadContract } from "thirdweb/react";
import { TrackedLink, type TrackedLinkProps } from "tw-components";
import { NFTCards } from "./NFTCards";
import { NFTCards } from "../../_components/NFTCards";

interface NFTDetailsProps {
contract: ThirdwebContract;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import { ToolTipLabel } from "@/components/ui/tooltip";
import { Box, Flex, List, SimpleGrid, Tag } from "@chakra-ui/react";
import { getAllRoleMembers } from "contract-ui/hooks/permissions";
import { AnimatePresence, motion } from "framer-motion";
import { useClipboard } from "hooks/useClipboard";
import { CopyIcon } from "lucide-react";
Expand All @@ -16,7 +17,6 @@ import {
type TrackedLinkProps,
} from "tw-components";
import { shortenIfAddress } from "utils/usedapp-external";
import { getAllRoleMembers } from "../../../hooks/permissions";

interface PermissionsTableProps {
contract: ThirdwebContract;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { ContractOverviewPage } from "contract-ui/tabs/overview/page";
import { notFound } from "next/navigation";
import { getContractPageParamsInfo } from "./_utils/getContractFromParams";
import { getContractPageMetadata } from "./_utils/getContractPageMetadata";
import { ContractOverviewPage } from "./overview/ContractOverviewPage";

export default async function Page(props: {
params: {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
"use client";

import { useWalletNFTs } from "@3rdweb-sdk/react";
import { NFTCards } from "contract-ui/tabs/overview/components/NFTCards";
import type { ThirdwebContract } from "thirdweb";
import { Text } from "tw-components";
import { NFTCards } from "../../../../app/(dashboard)/(chain)/[chain_id]/[contractAddress]/_components/NFTCards";

interface NftsOwnedProps {
contract: ThirdwebContract;
Expand Down
Loading