File tree Expand file tree Collapse file tree 5 files changed +4
-4
lines changed
apps/dashboard/src/app/(dashboard)/(chain)/[chain_id]/[contractAddress]/account Expand file tree Collapse file tree 5 files changed +4
-4
lines changed File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change 33import { useThirdwebClient } from "@/constants/thirdweb.client" ;
44import { Input } from "@chakra-ui/react" ;
55import { TransactionButton } from "components/buttons/TransactionButton" ;
6+ import { useV5DashboardChain } from "lib/v5-adapter" ;
67import { type ChangeEvent , useState } from "react" ;
8+ import type { StoredChain } from "stores/chainStores" ;
79import { prepareTransaction , toWei } from "thirdweb" ;
810import { useSendAndConfirmTransaction } from "thirdweb/react" ;
911import { Card } from "tw-components" ;
10- import { useV5DashboardChain } from "../../../../lib/v5-adapter" ;
11- import type { StoredChain } from "../../../../stores/chainStores" ;
1212
1313interface DepositNativeProps {
1414 address : string ;
Original file line number Diff line number Diff line change 33import { useWalletNFTs } from "@3rdweb-sdk/react" ;
44import type { ThirdwebContract } from "thirdweb" ;
55import { Text } from "tw-components" ;
6- import { NFTCards } from "../../../../app/(dashboard)/(chain)/[chain_id]/[contractAddress]/ _components/NFTCards" ;
6+ import { NFTCards } from "../../_components/NFTCards" ;
77
88interface NftsOwnedProps {
99 contract : ThirdwebContract ;
Original file line number Diff line number Diff line change 11import { notFound , redirect } from "next/navigation" ;
2- import { AccountPage } from "../../../../../../contract-ui/tabs/account/page" ;
32import { getContractPageParamsInfo } from "../_utils/getContractFromParams" ;
43import { getContractPageMetadata } from "../_utils/getContractPageMetadata" ;
4+ import { AccountPage } from "./AccountPage" ;
55
66export default async function Page ( props : {
77 params : {
You can’t perform that action at this time.
0 commit comments