All files / src/marketplace bid.ts

98.97% Statements 291/294
48% Branches 12/25
92.3% Functions 12/13
98.97% Lines 291/294

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 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 2951x 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 4x 4x 4x 4x 4x 1x 36x 36x 36x 36x 36x 36x 36x 36x 36x 36x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 4x 4x 4x 4x 84x 84x 84x 84x 84x 84x 84x 84x 84x 84x 84x 8x 8x 8x 8x 8x 8x 8x 8x 8x 8x 8x 8x 84x 84x 84x 84x 84x 84x 84x 84x 84x 84x 24x 24x 24x 24x 24x 24x 24x 24x 24x 24x 24x 24x 24x 24x 24x 24x 24x 24x 24x 24x 84x 84x       84x 84x 12x 12x 12x 12x 12x 12x 12x 12x 12x 12x 12x 12x 12x 12x 12x 12x 12x 12x 12x 12x 84x 84x 12x 12x 12x 12x 12x 12x 12x 12x 12x 12x 12x 12x 12x 12x 12x 12x 12x 12x 12x 12x 12x 84x 84x 18x 18x 18x 18x 18x 18x 18x 18x 18x 18x 18x 18x 18x 18x 18x 18x 84x 84x 18x 18x 18x 18x 18x 18x 18x 18x 18x 18x 18x 18x 18x 18x 18x 18x 84x 84x 36x 36x 36x 36x 36x 36x 36x 36x 36x 36x 36x 36x 36x 36x 36x 36x 36x 36x 36x 36x 36x 36x 36x 36x 36x 36x 36x 36x 36x 36x 36x 36x 36x 36x 36x 36x 36x 36x 36x 36x 36x 36x 36x 36x 36x 36x 36x 36x 36x 36x 36x 36x 36x 36x 36x 36x 36x 36x 36x 36x 36x 36x 36x 36x 36x 36x 84x 84x 12x 12x 12x 12x 12x 12x 12x 12x 12x 12x 12x 84x 4x 4x 4x  
import {
  AccountUpdate,
  DeployArgs,
  method,
  Permissions,
  PublicKey,
  State,
  state,
  UInt64,
  SmartContract,
  Bool,
  Field,
  Struct,
  Poseidon,
  Provable,
} from "o1js";
import { Whitelist, OffChainList, Storage } from "@silvana-one/storage";
import {
  NFTAddress,
  SellEvent,
  DepositEvent,
  WithdrawEvent,
  BidEvent,
} from "./types.js";
import {
  NFTCollectionBase,
  NFTCollectionContractConstructor,
  TransferParams,
  UInt64Option,
  NFTTransactionContext,
} from "../interfaces/index.js";
 
export class Bid extends Struct({
  price: UInt64,
  points: UInt64,
}) {
  pack() {
    return Field.fromBits([
      ...this.price.value.toBits(64),
      ...this.points.value.toBits(64),
    ]);
  }
  static unpack(field: Field): Bid {
    const bits = field.toBits(64 + 64);
    const price = UInt64.Unsafe.fromField(Field.fromBits(bits.slice(0, 64)));
    const points = UInt64.Unsafe.fromField(
      Field.fromBits(bits.slice(64, 64 + 64))
    );
    return new Bid({
      price,
      points,
    });
  }
}
 
export interface NonFungibleTokenBidContractDeployProps
  extends Exclude<DeployArgs, undefined> {
  /** The whitelist. */
  whitelist: Field;
  /** The offers. */
  bids: Field;
  /** The storage. */
  storage: Storage;
}
 
export function BidFactory(params: {
  collectionContract: () => NFTCollectionContractConstructor;
}) {
  const { collectionContract } = params;
  class NonFungibleTokenBidContract extends SmartContract {
    @state(PublicKey) buyer = State<PublicKey>();
    @state(Field) whitelist = State<Field>();
    @state(Field) bids = State<Field>();
    @state(Storage) storage = State<Storage>();
    @state(UInt64) maxPoints = State<UInt64>();
    // We do not have concurrency here, but given that it is a single-user contract,
    // we can use state to track the points that have been consumed
    // In case of concurrency, we can use the tokens to track the points
    @state(UInt64) consumedPoints = State<UInt64>();
 
    async deploy(args: NonFungibleTokenBidContractDeployProps) {
      await super.deploy(args);
      this.whitelist.set(args.whitelist);
      this.bids.set(args.bids);
      this.storage.set(args.storage);
      this.account.permissions.set({
        ...Permissions.default(),
        send: Permissions.proof(),
        setVerificationKey:
          Permissions.VerificationKey.impossibleDuringCurrentVersion(),
        setPermissions: Permissions.impossible(),
      });
    }
 
    events = {
      deposit: DepositEvent,
      withdraw: WithdrawEvent,
      sell: SellEvent,
      updateWhitelist: Whitelist,
      bid: BidEvent,
    };
 
    @method async initialize(amount: UInt64, maxPoints: UInt64) {
      this.account.provedState.requireEquals(Bool(false));
 
      const buyer = this.sender.getUnconstrained();
      const buyerUpdate = AccountUpdate.createSigned(buyer);
      // We use low-level subInPlace and addInPlace to decrease the number of AccountUpdates
      buyerUpdate.balance.subInPlace(amount.add(UInt64.from(1_000_000_000)));
      this.self.balance.addInPlace(amount);
      buyerUpdate.body.useFullCommitment = Bool(true);
 
      this.buyer.set(buyer);
      this.maxPoints.set(maxPoints);
      this.emitEvent(
        "deposit",
        new DepositEvent({
          buyer,
          amount,
          maxPoints,
        })
      );
    }
 
    getCollectionContract(address: PublicKey): NFTCollectionBase {
      const CollectionContract = collectionContract();
      return new CollectionContract(address);
    }
 
    @method async deposit(amount: UInt64, maxPoints: UInt64) {
      amount.equals(UInt64.from(0)).assertFalse();
 
      const sender = this.sender.getUnconstrained();
      const buyer = this.buyer.getAndRequireEquals();
      sender.assertEquals(buyer);
      const buyerUpdate = AccountUpdate.createSigned(buyer);
      buyerUpdate.send({ to: this.address, amount });
      buyerUpdate.body.useFullCommitment = Bool(true);
 
      this.maxPoints.set(maxPoints);
 
      this.emitEvent(
        "deposit",
        new DepositEvent({
          buyer,
          amount,
          maxPoints,
        })
      );
    }
 
    @method async withdraw(amount: UInt64, maxPoints: UInt64) {
      amount.equals(UInt64.from(0)).assertFalse();
      this.account.balance.requireBetween(amount, UInt64.MAXINT());
 
      const buyer = this.buyer.getAndRequireEquals();
      const sender = this.sender.getUnconstrained();
      const senderUpdate = AccountUpdate.createSigned(sender);
      senderUpdate.body.useFullCommitment = Bool(true);
      sender.assertEquals(buyer);
 
      let bidUpdate = this.send({ to: senderUpdate, amount });
      bidUpdate.body.useFullCommitment = Bool(true);
      this.maxPoints.set(maxPoints);
      this.emitEvent(
        "withdraw",
        new WithdrawEvent({
          buyer,
          amount,
          maxPoints,
        })
      );
    }
 
    @method async sell(nftAddress: NFTAddress, price: UInt64) {
      await this._sell(nftAddress, price);
      const buyer = this.buyer.getAndRequireEquals();
      const Collection = collectionContract();
      const collection = new Collection(nftAddress.collection);
      await collection.transferBySignature(
        new TransferParams({
          address: nftAddress.nft,
          from: PublicKey.empty(),
          to: buyer,
          price: UInt64Option.fromValue(price),
          context: new NFTTransactionContext({
            custom: [Field(0), Field(0), Field(0)],
          }),
        })
      );
    }
 
    @method async approvedSell(nftAddress: NFTAddress, price: UInt64) {
      await this._sell(nftAddress, price);
      const buyer = this.buyer.getAndRequireEquals();
      const Collection = collectionContract();
      const collection = new Collection(nftAddress.collection);
      await collection.approvedTransferBySignature(
        new TransferParams({
          address: nftAddress.nft,
          from: PublicKey.empty(),
          to: buyer,
          price: UInt64Option.fromValue(price),
          context: new NFTTransactionContext({
            custom: [Field(0), Field(0), Field(0)],
          }),
        })
      );
    }
 
    async _sell(nftAddress: NFTAddress, price: UInt64) {
      price.equals(UInt64.from(0)).assertFalse();
      const key = Poseidon.hashPacked(NFTAddress, nftAddress);
      const storage = this.storage.getAndRequireEquals();
      const bids = new OffChainList({
        root: this.bids.getAndRequireEquals(),
        storage,
      });
      const bid = Bid.unpack(
        (await bids.getValue(key, "bids")).assertSome("bid not found")
      );
 
      // We do not require the price to be equal to the bid price,
      // because the price can be lower than the bid price
      // and the seller can still be willing to sell the NFT
      // as the deposit remaining is less than bid price
      price.assertLessThanOrEqual(bid.price, "price is too high");
      this.account.balance.requireBetween(price, UInt64.MAXINT());
 
      const consumedPoints = this.consumedPoints.getAndRequireEquals();
      const maxPoints = this.maxPoints.getAndRequireEquals();
      const newConsumedPoints = consumedPoints.add(bid.points);
      newConsumedPoints.assertLessThanOrEqual(
        maxPoints,
        "consumed points exceed max points"
      );
      this.consumedPoints.set(newConsumedPoints);
 
      const seller = this.sender.getUnconstrained();
      const sellerUpdate = AccountUpdate.createSigned(seller);
      sellerUpdate.balance.addInPlace(price);
      this.self.balance.subInPlace(price);
      sellerUpdate.body.useFullCommitment = Bool(true);
 
      const whitelist = new Whitelist({
        list: new OffChainList({
          root: this.whitelist.getAndRequireEquals(),
          storage,
        }),
      });
      const whitelistedAmount = await whitelist.getWhitelistedAmount(
        seller,
        "whitelist"
      );
      const whitelistDisabled = whitelist.isNone();
      whitelistedAmount.isSome
        .or(whitelistDisabled)
        .assertTrue("Cannot buy from non-whitelisted address");
      const maxPrice = Provable.if(
        whitelistDisabled,
        UInt64.MAXINT(),
        whitelistedAmount.value
      );
      price.assertLessThanOrEqual(
        maxPrice,
        "price is higher than whitelisted price"
      );
 
      this.emitEvent(
        "sell",
        new SellEvent({
          collection: nftAddress.collection,
          nft: nftAddress.nft,
          price,
        })
      );
    }
 
    @method async bid(bids: Field, whitelist: Field, storage: Storage) {
      const buyer = this.buyer.getAndRequireEquals();
      const sender = this.sender.getUnconstrained();
      const senderUpdate = AccountUpdate.createSigned(sender);
      senderUpdate.body.useFullCommitment = Bool(true);
      sender.assertEquals(buyer);
 
      this.bids.set(bids);
      this.whitelist.set(whitelist);
      this.storage.set(storage);
      this.emitEvent("bid", new BidEvent({ bids, whitelist, storage }));
    }
  }
 
  return NonFungibleTokenBidContract;
}