Solidity: Burn event vs Transfer to 0 address

653 Views Asked by At

I've seen the Burn event be represented as:

Are both of these ways correct? Is one of these ways better than the other?

1

There are 1 best solutions below

0
On BEST ANSWER

The ERC 20 standard doesn't mention burning specifically, as far as I can see. It does, however, specify the Transfer event as:

event Transfer(address indexed _from, address indexed _to, uint256 _value)

So to be compatible with any software that meets the standard, Transfer is what you want.