StudioContract: {
    address: `0x${string}`;
    blindboxDescription: string | null;
    blindboxKey: string;
    blindboxName: string | null;
    blindboxTraits: AssetTrait[] | null;
    blindboxUrl: string | null;
    chainId: number;
    creatorAddress: string | null;
    creatorFee: string;
    creatorFeeAddress: `0x${string}` | null;
    description: string;
    dropDescription: string | null;
    dropFeeInfo: Record<`0x${string}`, number> | null;
    dropName: string | null;
    drops?: ClaimCondition[];
    dropUrls: string[] | null;
    id: string;
    isBlindbox: boolean;
    isCreatorFee: boolean;
    isRevealed: boolean;
    isStartDrop: boolean;
    isVisible: boolean;
    logoImageUrl: string | null;
    mode: StudioContractMode;
    name: string;
    ownerAddress: string | null;
    schemaName: "ERC721";
    status: StudioContractStatus;
    symbol: string;
}