I'm wondering if the use of the words 'debit' and 'credit' in the definitions of 'mint' and 'burn' are intentionally used in the technical accounting sense of the term or not. The current wording implies that accounts are credit-normal (like a liability) and the total supply is debit-normal (like an asset). If that's the case, I think that that should be made explicit in the readme and the verbiage on
|
#### `mint` |
|
credit tokens at an address whilst simultaniously increasing `totalSupply` |
|
(requires auth) |
|
|
|
#### `burn` |
|
debit tokens at an address whilst simultaniously decreasing `totalSupply` |
|
(requires auth) |
should change to read more like
#### `mint`
increase (credit) tokens at an address whilst simultaneously increasing (debiting) `totalSupply`
(requires auth)
#### `burn`
decrease (debit) tokens at an address whilst simultaneously decreasing (crediting) `totalSupply`
(requires auth)
I'm wondering if the use of the words 'debit' and 'credit' in the definitions of 'mint' and 'burn' are intentionally used in the technical accounting sense of the term or not. The current wording implies that accounts are credit-normal (like a liability) and the total supply is debit-normal (like an asset). If that's the case, I think that that should be made explicit in the readme and the verbiage on
ds-token/README.md
Lines 18 to 24 in 13e0934