Skip to content

Commit

Permalink
fix: erc1155 buy order handler
Browse files Browse the repository at this point in the history
  • Loading branch information
orionstardust committed Jul 23, 2024
1 parent ad7570c commit e49513c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/mappings/diamond.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1853,7 +1853,7 @@ export function handleKinshipBurned(event: KinshipBurned): void {
gotchi.save();
}

export function handleERC1155BuyOrderAdded(event: ERC1155BuyOrderAdd): void {
export function handleERC1155BuyOrderAdd(event: ERC1155BuyOrderAdd): void {
// instantiate entity on subgraph
let entity = getOrCreateERC1155BuyOrder(event.params.buyOrderId.toString());
entity.buyer = event.params.buyer;
Expand Down

0 comments on commit e49513c

Please sign in to comment.