diff --git a/contracts/CurioERC1155Wrapper.sol b/contracts/CurioERC1155Wrapper.sol index e4cf450..8a5b020 100644 --- a/contracts/CurioERC1155Wrapper.sol +++ b/contracts/CurioERC1155Wrapper.sol @@ -162,7 +162,7 @@ contract CurioERC1155Wrapper is ERC1155, ERC1155Metadata_URI { curio.transfer(msg.sender, _quantity); // burn - emit TransferSingle(msg.sender, address(this), address(0), _id, _quantity); + emit TransferSingle(msg.sender, msg.sender, address(0), _id, _quantity); } /** @@ -186,7 +186,7 @@ contract CurioERC1155Wrapper is ERC1155, ERC1155Metadata_URI { } // burn - emit TransferBatch(msg.sender, address(this), address(0), _ids, _quantities); + emit TransferBatch(msg.sender, msg.sender, address(0), _ids, _quantities); } /**