useContractType() function
Signature:
export declare function useContractType(
contractAddress: RequiredParam<ContractAddress>,
): UseQueryResult<
| "split"
| "custom"
| "edition-drop"
| "edition"
| "marketplace"
| "multiwrap"
| "nft-collection"
| "nft-drop"
| "pack"
| "signature-drop"
| "token-drop"
| "token"
| "vote"
| null,
unknown
>;
Parameters
Parameter | Type | Description |
---|---|---|
contractAddress | RequiredParam<ContractAddress> |
Returns:
UseQueryResult<"split" | "custom" | "edition-drop" | "edition" | "marketplace" | "multiwrap" | "nft-collection" | "nft-drop" | "pack" | "signature-drop" | "token-drop" | "token" | "vote" | null, unknown>