Type alias SaveSingleNftOfferMutation
SaveSingleNftOfferMutation: {
__typename?: "Mutation";
offer: {
__typename?: "SingleNFTOffer";
id: string;
status: string;
nft: {
__typename?: "NFT";
tokenId: bigint;
collection?: {
__typename?: "Collection";
contractData: {
__typename?: "ContractData";
contractAddress: Address;
};
} | null;
};
};
}
Type declaration
-
Optional
__typename?: "Mutation"
-
offer: {
__typename?: "SingleNFTOffer";
id: string;
status: string;
nft: {
__typename?: "NFT";
tokenId: bigint;
collection?: {
__typename?: "Collection";
contractData: {
__typename?: "ContractData";
contractAddress: Address;
};
} | null;
};
}
-
Optional
__typename?: "SingleNFTOffer"
-
id: string
-
status: string
-
nft: {
__typename?: "NFT";
tokenId: bigint;
collection?: {
__typename?: "Collection";
contractData: {
__typename?: "ContractData";
contractAddress: Address;
};
} | null;
}
-
Optional
__typename?: "NFT"
-
tokenId: bigint
-
Optional
collection?: {
__typename?: "Collection";
contractData: {
__typename?: "ContractData";
contractAddress: Address;
};
} | null