All files / src/marketplace offer.ts

100% Statements 153/153
66.66% Branches 6/9
100% Functions 6/6
100% Lines 153/153

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 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 1541x 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 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 60x 60x 60x 60x 60x 94x 94x 94x 94x 94x 94x 94x 94x 94x 94x 94x 8x 8x 8x 8x 8x 8x 8x 8x 8x 8x 8x 8x 8x 8x 8x 94x 94x 94x 94x 94x 94x 24x 24x 24x 94x 94x 24x 24x 24x 24x 24x 24x 24x 24x 24x 24x 24x 24x 24x 24x 24x 24x 24x 94x 94x 94x 94x 94x 94x 94x 94x 94x 94x 32x 32x 32x 32x 32x 32x 32x 32x 32x 32x 32x 32x 32x 32x 32x 32x 32x 32x 32x 32x 32x 32x 32x 32x 32x 32x 32x 32x 32x 32x 32x 32x 32x 32x 32x 94x 60x 60x 60x  
import {
  AccountUpdate,
  DeployArgs,
  method,
  Permissions,
  PublicKey,
  State,
  state,
  UInt64,
  SmartContract,
  Bool,
  Field,
} from "o1js";
import {
  UInt64Option,
  NFTCollectionContractConstructor,
  NFTApprovalBase,
  NFTCollectionBase,
  NFTTransactionContext,
  TransferExtendedParams,
  TransferEvent,
} from "../interfaces/index.js";
 
export interface NonFungibleTokenOfferContractDeployProps
  extends Exclude<DeployArgs, undefined> {
  // /** The whitelist. */
  // whitelist: Whitelist;
  /** The offers. */
  price: UInt64;
  /** The collection of the NFT. */
  collection: PublicKey;
  /** The address of the NFT. */
  nft: PublicKey;
  /** The owner of the NFT. */
  owner: PublicKey;
}
 
/**
 * Creates a new NFT Collection Contract class.
 *
 * @param params - Constructor parameters including admin and upgrade contracts, and network ID.
 * @returns The Collection class extending TokenContract and implementing required interfaces.
 */
 
export function OfferFactory(params: {
  collectionContract: () => NFTCollectionContractConstructor;
}) {
  const { collectionContract } = params;
 
  class NonFungibleTokenOfferContract
    extends SmartContract
    implements NFTApprovalBase
  {
    @state(PublicKey) owner = State<PublicKey>();
    // @state(Whitelist) whitelist = State<Whitelist>();
    @state(UInt64) price = State<UInt64>();
    @state(PublicKey) collection = State<PublicKey>();
    @state(PublicKey) nft = State<PublicKey>();
    @state(Bool) insideBuy = State<Bool>();
 
    async deploy(args: NonFungibleTokenOfferContractDeployProps) {
      await super.deploy(args);
      this.owner.set(args.owner);
      // this.whitelist.set(args.whitelist);
      this.price.set(args.price);
      this.collection.set(args.collection);
      this.nft.set(args.nft);
      this.insideBuy.set(Bool(false));
      this.account.permissions.set({
        ...Permissions.default(),
        send: Permissions.proof(),
        setVerificationKey:
          Permissions.VerificationKey.impossibleDuringCurrentVersion(),
        setPermissions: Permissions.impossible(),
      });
    }
 
    events = {
      buy: TransferEvent,
    };
 
    getCollectionContract(address: PublicKey): NFTCollectionBase {
      const CollectionContract = collectionContract();
      return new CollectionContract(address);
    }
 
    @method async buy(buyer: PublicKey) {
      const insideBuy = this.insideBuy.getAndRequireEquals();
      insideBuy.assertFalse("Already inside buy method");
      this.insideBuy.set(Bool(true));
      const collectionAddress = this.collection.getAndRequireEquals();
      const nftAddress = this.nft.getAndRequireEquals();
      const price = this.price.getAndRequireEquals();
      const collection = this.getCollectionContract(collectionAddress);
      await collection.transferByProof({
        address: nftAddress,
        from: this.address,
        to: buyer,
        price: UInt64Option.fromValue(price),
        context: new NFTTransactionContext({
          custom: [Field(0), Field(0), Field(0)],
        }),
      });
    }
 
    // @method async sellWithApproval(nftAddress: NFTAddress, price: UInt64) {
    //   await this._sell(nftAddress, price);
    //   const buyer = this.buyer.getAndRequireEquals();
    //   const collection = new Collection(nftAddress.collection);
    //   await collection.sellWithApproval(nftAddress.nft, price, buyer);
    // }
 
    @method.returns(Bool)
    async canTransfer(params: TransferExtendedParams): Promise<Bool> {
      this.insideBuy.requireEquals(Bool(true));
      // We do not set the insideBuy to false here as buy() can be called once only
      // and then the offer is accepted and not valid anymore for other buyers
      const collectionAddress = this.collection.getAndRequireEquals();
      const nftAddress = this.nft.getAndRequireEquals();
      const owner = this.owner.getAndRequireEquals();
      const price = this.price.getAndRequireEquals();
      const sender = this.sender.getUnconstrained();
 
      params.collection.assertEquals(collectionAddress);
      params.nft.assertEquals(nftAddress);
      params.from.assertEquals(owner);
      params.approved.assertEquals(this.address);
      params.price.assertSome().assertEquals(price);
      params.to.assertEquals(sender);
      params.fee.orElse(UInt64.zero).assertLessThan(price, "Fee is too high");
 
      const payment = price.sub(params.fee.orElse(UInt64.zero));
 
      const senderUpdate = AccountUpdate.createSigned(sender);
      senderUpdate.account.balance.requireBetween(payment, UInt64.MAXINT());
      senderUpdate.balance.subInPlace(payment);
      const ownerUpdate = AccountUpdate.create(owner);
      ownerUpdate.balance.addInPlace(payment);
      senderUpdate.body.useFullCommitment = Bool(true);
      ownerUpdate.body.useFullCommitment = Bool(true);
 
      this.emitEvent(
        "buy",
        new TransferEvent({
          ...params,
        })
      );
      return Bool(true);
    }
  }
 
  return NonFungibleTokenOfferContract;
}