composables/massmint/massMintHelpers.ts
Function kusamaMintAndList
has 50 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
export const kusamaMintAndList = (tokens) => {
const status = ref(TransactionStatus.Unknown)
const isLoading = ref(true)
const collectionUpdated = ref(false)
const blockNumber = ref<string>()
Function getListForSellItems
has 32 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
export const getListForSellItems = (
createdNFTs: CreatedNFT[],
tokens: TokenToMint[],
blockNumber: string,
) => {
Function listForSell
has 28 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
export const listForSell = (mintedNFts: TokenToList[]) => {
const isLoading = ref(true)
const {
blockNumber,
transaction,