All files / src contracts.ts

92.85% Statements 104/112
66.66% Branches 8/12
100% Functions 8/8
92.85% Lines 104/112

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 1131x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 60x 60x 60x 60x 60x 60x 60x 60x 60x 60x 60x 60x 60x 60x 60x 60x 60x 60x 60x 24x     24x 24x 60x 58x     58x 58x 60x 60x 28x     28x 28x 60x 60x 84x     84x 84x 60x 60x 60x 60x 60x 60x 60x 60x 60x 60x 60x 60x 60x 60x 60x 60x 60x 60x 60x 60x 60x 60x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x  
import { CollectionFactory, NFTAdmin } from "./contracts/index.js";
import { NFTAdvancedAdminContract } from "./admin/index.js";
import { VerificationKeyUpgradeAuthority } from "@silvana-one/upgradable";
import { OfferFactory } from "./marketplace/offer.js";
import {
  NFTOwnerContractConstructor,
  NFTAdminContractConstructor,
  NFTApprovalContractConstructor,
  NFTStandardOwner,
  DefineApprovalFactory,
  DefineOwnerFactory,
  DefineUpdateFactory,
  NFTStandardUpdate,
  NFTUpdateContractConstructor,
} from "./interfaces/index.js";
 
export const NFTAdvancedAdmin = NFTAdvancedAdminContract({
  upgradeContract: VerificationKeyUpgradeAuthority,
});
 
export type NonFungibleTokenContracts = {
  Collection: ReturnType<typeof CollectionFactory>;
  Approval: NFTApprovalContractConstructor;
  Owner: NFTOwnerContractConstructor;
  Admin: NFTAdminContractConstructor;
  Update: NFTUpdateContractConstructor;
};
 
export function NonFungibleTokenContractsFactory(params: {
  adminContract?: NFTAdminContractConstructor;
  approvalFactory?: DefineApprovalFactory;
  ownerFactory?: DefineOwnerFactory;
  updateFactory?: DefineUpdateFactory;
}): NonFungibleTokenContracts {
  const {
    adminContract = NFTAdmin,
    approvalFactory = OfferFactory,
    ownerFactory = ({ collectionContract }) => NFTStandardOwner,
    updateFactory = ({ collectionContract }) => NFTStandardUpdate,
  } = params;
 
  let Collection: ReturnType<typeof CollectionFactory>;
  let Approval: NFTApprovalContractConstructor;
  let Owner: NFTOwnerContractConstructor;
  let Admin: NFTAdminContractConstructor = adminContract;
  let Update: NFTUpdateContractConstructor;
 
  function getCollection() {
    if (!Collection) {
      throw new Error("Collection constructor not set up yet!");
    }
    return Collection;
  }
  function getApproval() {
    if (!Approval) {
      throw new Error("Approval constructor not set up yet!");
    }
    return Approval;
  }
 
  function getUpdate() {
    if (!Update) {
      throw new Error("Update constructor not set up yet!");
    }
    return Update;
  }
 
  function getOwner() {
    if (!Owner) {
      throw new Error("Owner constructor not set up yet!");
    }
    return Owner;
  }
 
  Approval = approvalFactory({
    collectionContract: getCollection,
  });
 
  Update = updateFactory({
    collectionContract: getCollection,
  });
 
  Collection = CollectionFactory({
    adminContract: () => adminContract,
    ownerContract: getOwner,
    approvalContract: getApproval,
    updateContract: getUpdate,
  });
 
  Owner = ownerFactory({
    collectionContract: getCollection,
  });
 
  return { Collection, Approval, Owner, Admin, Update };
}
 
export const { Collection, Approval, Owner, Admin, Update } =
  NonFungibleTokenContractsFactory({});
export const Offer = Approval as unknown as ReturnType<typeof OfferFactory>;
 
export const {
  Collection: AdvancedCollection,
  Approval: AdvancedApproval,
  Owner: AdvancedOwner,
  Admin: AdvancedAdmin,
} = NonFungibleTokenContractsFactory({
  adminContract: NFTAdvancedAdmin,
});
 
export const AdvancedOffer = AdvancedApproval as unknown as ReturnType<
  typeof OfferFactory
>;