Skip to content

Commit

Permalink
chore(packages/ui): Fix merge conflicts
Browse files Browse the repository at this point in the history
  • Loading branch information
nevendyulgerov committed Apr 1, 2024
1 parent 89e21f4 commit 5b0b7b7
Showing 1 changed file with 1 addition and 25 deletions.
26 changes: 1 addition & 25 deletions packages/ui/src/ERC721DepositForm.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -42,31 +42,7 @@ import { useAccount, useContractReads, useWaitForTransaction } from "wagmi";
import { TransactionProgress } from "./TransactionProgress";
import { TransactionStageStatus } from "./TransactionStatus";
import useUndeployedApplication from "./hooks/useUndeployedApplication";

const erc721AbiEnumerable = [
...erc721ABI,
{
stateMutability: "view",
type: "function",
inputs: [
{
name: "owner",
type: "address",
},
{
name: "index",
type: "uint256",
},
],
name: "tokenOfOwnerByIndex",
outputs: [
{
name: "tokenId",
type: "uint256",
},
],
},
] as const;
import useTokensOfOwnerByIndex from "./hooks/useTokensOfOwnerByIndex";

export const transactionButtonState = (
prepare: TransactionStageStatus,
Expand Down

0 comments on commit 5b0b7b7

Please sign in to comment.