Skip to content

Commit

Permalink
update token price accept offer indexer
Browse files Browse the repository at this point in the history
  • Loading branch information
RedBeardEth committed Dec 19, 2023
1 parent 8f5dd01 commit 9e9337c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions packages/apibara/src/erc721_tokens.ts
Original file line number Diff line number Diff line change
Expand Up @@ -115,8 +115,8 @@ function transferToTask(_header: BlockHeader, { event }: EventWithTransaction) {
tokenId,
},
update: {
price: undefined,
expiration: undefined,
price: null,
expiration: null,
},
};
case OrderActionType.Cancel:
Expand All @@ -128,8 +128,8 @@ function transferToTask(_header: BlockHeader, { event }: EventWithTransaction) {
tokenId,
},
update: {
price: undefined,
expiration: undefined,
price: null,
expiration: null,
},
};
default: {
Expand Down

0 comments on commit 9e9337c

Please sign in to comment.