Skip to content

Commit df9c31a

Browse files
removing logs
1 parent e9ff267 commit df9c31a

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

src/index.ts

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -445,8 +445,6 @@ openseaStreamClient.onItemListed('*', async (event) => {
445445
const nftId = event.payload.item.nft_id
446446

447447
if (isTrackedContract(nftId, allContracts)) {
448-
// console.log('Tracked OpenSea item listed:', event)
449-
450448
// Process the listing with our OpenSeaListBot
451449
openSeaListBot.handleListingEvent(event).catch((err) => {
452450
console.error('Error processing OpenSea listing event:', err)
@@ -474,9 +472,6 @@ openseaStreamClient.onItemSold('*', async (event) => {
474472
const nftId = event.payload.item.nft_id
475473

476474
if (isTrackedContract(nftId, allContracts)) {
477-
console.log('Tracked OpenSea item sold:', event)
478-
479-
// Process the sale with our OpenSeaSaleBot
480475
openSeaSaleBot.handleSaleEvent(event).catch((err: any) => {
481476
console.error('Error processing OpenSea sale event:', err)
482477
})

0 commit comments

Comments
 (0)