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 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 | 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 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 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 41x 41x 41x 41x 41x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 36x 36x 36x 36x 36x 36x 36x 36x 41x 41x 41x 41x 41x 41x 6x 6x 6x 6x 6x 6x 6x 6x 41x 41x 41x 41x 41x 41x 41x 41x 41x 6x 6x 6x 6x 6x 6x 6x 6x 6x 6x 6x 41x 41x 41x 41x 41x 41x 41x 6x 6x 6x 41x 41x 41x 41x 41x 41x 41x 41x 41x 6x 6x 6x 6x 6x 6x 6x 6x 41x 41x 41x 41x 41x 41x 41x 41x 6x 6x 6x 6x 6x 6x 6x 6x 6x 6x 41x 41x 41x 41x 41x 41x 41x 41x 41x 6x 6x 6x 6x 6x 6x 6x 6x 41x 41x 41x 41x 41x 41x 24x 24x 24x 24x 24x 41x 41x 41x 41x 41x 41x 41x 6x 6x 6x 6x 6x 6x 6x 6x 41x 41x 41x 41x 41x 41x 41x 6x 6x 6x 6x 6x 6x 6x 6x 41x 41x 41x 41x 41x 41x 41x 6x 6x 6x 6x 6x 6x 6x 6x 6x 6x 6x 41x 41x 41x 41x 41x 41x 6x 6x 6x 6x 6x 41x | import { AccountUpdate, DeployArgs, method, Permissions, PublicKey, State, state, UInt64, SmartContract, Bool, Field, Struct, VerificationKey, } from "o1js"; /** * The BulletinBoard contract serves as a centralized event emitter for NFT marketplace activities. * It provides a standardized way to broadcast and track various marketplace events such as: * - New collection listings * - Offers made on NFTs * - Offer cancellations * - Bids placed on NFTs * - Bid cancellations * - Completed sales * * While anyone can emit events through this contract, all events are prefixed with "BB_" to * distinguish them from events emitted directly by NFT contracts. This helps maintain clarity * in event tracking and marketplace activity monitoring. * * The BulletinBoard does not handle any NFT transfers or escrow - it purely exists as an * event broadcasting mechanism to help indexers and UIs track marketplace activity. */ export { BB_NewCollectionEvent, BB_OfferEvent, BB_CancelOfferEvent, BB_BidEvent, BB_CancelBidEvent, BB_SaleEvent, BB_UpgradeVerificationKeyEvent, BB_ChangeAdminEvent, BulletinBoard, BulletinBoardDeployProps, }; class BB_NewCollectionEvent extends Struct({ /** The collection address. */ collection: PublicKey, }) {} class BB_OfferEvent extends Struct({ /** The collection address. */ collection: PublicKey, /** The NFT address. */ nft: PublicKey, /** The offer address. */ offer: PublicKey, /** The price. */ price: UInt64, }) {} class BB_CancelOfferEvent extends Struct({ /** The collection address. */ collection: PublicKey, /** The NFT address. */ nft: PublicKey, }) {} class BB_BidEvent extends Struct({ /** The collection address. */ collection: PublicKey, /** The NFT address. */ nft: PublicKey, /** The bid address. */ bid: PublicKey, /** The price. */ price: UInt64, }) {} class BB_CancelBidEvent extends Struct({ /** The collection address. */ collection: PublicKey, /** The NFT address. */ nft: PublicKey, /** The bid address. */ bid: PublicKey, }) {} class BB_SaleEvent extends Struct({ /** The collection address. */ collection: PublicKey, /** The NFT address. */ nft: PublicKey, /** The buyer address. */ buyer: PublicKey, /** The price. */ price: UInt64, }) {} class BB_UpgradeVerificationKeyEvent extends Struct({ /** The new verification key. */ vk: Field, }) {} class BB_ChangeAdminEvent extends Struct({ /** The new admin. */ admin: PublicKey, }) {} interface BulletinBoardDeployProps extends Exclude<DeployArgs, undefined> { /** The admin. */ admin: PublicKey; /** The fee. */ fee?: UInt64; } /** * The BulletinBoard contract serves as a centralized event emitter for NFT marketplace activities. * It provides a standardized way to broadcast and track various marketplace events such as: * - New collection listings * - Offers made on NFTs * - Offer cancellations * - Bids placed on NFTs * - Bid cancellations * - Completed sales * * While anyone can emit events through this contract, all events are prefixed with "BB_" to * distinguish them from events emitted directly by NFT contracts. This helps maintain clarity * in event tracking and marketplace activity monitoring. */ class BulletinBoard extends SmartContract { @state(PublicKey) admin = State<PublicKey>(); @state(UInt64) fee = State<UInt64>(); async deploy(args: BulletinBoardDeployProps) { await super.deploy(args); this.admin.set(args.admin); this.fee.set(args.fee ?? UInt64.from(100_000_000)); this.account.permissions.set({ ...Permissions.default(), send: Permissions.proof(), setVerificationKey: Permissions.VerificationKey.proofDuringCurrentVersion(), setPermissions: Permissions.impossible(), }); } events = { newCollection: BB_NewCollectionEvent, offer: BB_OfferEvent, cancelOffer: BB_CancelOfferEvent, bid: BB_BidEvent, cancelBid: BB_CancelBidEvent, sale: BB_SaleEvent, upgradeVerificationKey: BB_UpgradeVerificationKeyEvent, changeAdmin: BB_ChangeAdminEvent, withdraw: UInt64, setFee: UInt64, }; /** * Pays the fee to prevent spamming the BulletinBoard with fake events. */ async payFee() { const fee = this.fee.getAndRequireEquals(); const sender = this.sender.getUnconstrained(); const feeUpdate = AccountUpdate.createSigned(sender); feeUpdate.body.useFullCommitment = Bool(true); // Prevent memo and fee change feeUpdate.balance.subInPlace(fee); this.balance.addInPlace(fee); return feeUpdate; } /** * Emits a new collection event. * @param collection - The collection address. */ @method async newCollection(collection: PublicKey) { await this.payFee(); this.emitEvent( "newCollection", new BB_NewCollectionEvent({ collection, }) ); } /** * Emits an offer event. * @param collection - The collection address. * @param nft - The NFT address. * @param offer - The offer address. * @param price - The price. */ @method async offer( collection: PublicKey, nft: PublicKey, offer: PublicKey, price: UInt64 ) { await this.payFee(); this.emitEvent( "offer", new BB_OfferEvent({ collection, nft, offer, price }) ); } /** * Emits a cancel offer event. * @param collection - The collection address. * @param nft - The NFT address. */ @method async cancelOffer(collection: PublicKey, nft: PublicKey) { await this.payFee(); this.emitEvent("cancelOffer", new BB_CancelOfferEvent({ collection, nft })); } /** * Emits a bid event. * @param collection - The collection address. * @param nft - The NFT address. * @param bid - The bid address. * @param price - The price. */ @method async bid( collection: PublicKey, nft: PublicKey, bid: PublicKey, price: UInt64 ) { await this.payFee(); this.emitEvent("bid", new BB_BidEvent({ collection, nft, bid, price })); } /** * Emits a cancel bid event. * @param collection - The collection address. * @param nft - The NFT address. * @param bid - The bid address. */ @method async cancelBid( collection: PublicKey, nft: PublicKey, bid: PublicKey ) { await this.payFee(); this.emitEvent( "cancelBid", new BB_CancelBidEvent({ collection, nft, bid }) ); } /** * Emits a sale event. * @param collection - The collection address. * @param nft - The NFT address. * @param buyer - The buyer address. * @param price - The price. */ @method async sale( collection: PublicKey, nft: PublicKey, buyer: PublicKey, price: UInt64 ) { await this.payFee(); this.emitEvent("sale", new BB_SaleEvent({ collection, nft, buyer, price })); } /** * Ensures that the transaction is authorized by the contract owner. * @returns A signed `AccountUpdate` from the admin. */ async ensureOwnerSignature(): Promise<AccountUpdate> { const admin = this.admin.getAndRequireEquals(); const adminUpdate = AccountUpdate.createSigned(admin); adminUpdate.body.useFullCommitment = Bool(true); // Prevent memo and fee change return adminUpdate; } /** * Changes the contract's admin * @param admin - The new admin. */ @method async changeAdmin(admin: PublicKey) { await this.ensureOwnerSignature(); // Set the new admin this.admin.set(admin); // Emit the change admin event this.emitEvent("changeAdmin", new BB_ChangeAdminEvent({ admin })); } /** * Changes the contract's fee * @param fee - The new fee. */ @method async setFee(fee: UInt64) { await this.ensureOwnerSignature(); // Set the new fee this.fee.set(fee); // Emit the change fee event this.emitEvent("setFee", fee); } /** * Upgrades the contract's verification key after validating with the upgrade authority. * @param vk - The new verification key to upgrade to. */ @method async upgradeVerificationKey(vk: VerificationKey) { await this.ensureOwnerSignature(); // Set the new verification key this.account.verificationKey.set(vk); // Emit the upgrade event this.emitEvent( "upgradeVerificationKey", new BB_UpgradeVerificationKeyEvent({ vk: vk.hash }) ); } /** * Withdraws the fee by admin */ @method async withdraw(amount: UInt64) { const adminUpdate = await this.ensureOwnerSignature(); adminUpdate.balance.addInPlace(amount); this.balance.subInPlace(amount); this.emitEvent("withdraw", amount); } } |