Skip to content

Commit

Permalink
Merge pull request #253 from temptemp3/main
Browse files Browse the repository at this point in the history
Update arc-0200.md
  • Loading branch information
SudoWeezy authored Oct 27, 2023
2 parents c5c7533 + 2b4bf40 commit c43f726
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions ARCs/arc-0200.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,14 +39,14 @@ A smart contract token that is compliant with this standard MUST implement the f
"desc": "Returns the name of the token",
"readonly": true,
"args": [],
"returns": { "type": "bytes[32]", "desc": "The name of the token" }
"returns": { "type": "byte[32]", "desc": "The name of the token" }
},
{
"name": "arc200_symbol",
"desc": "Returns the symbol of the token",
"readonly": true,
"args": [],
"returns": { "type": "bytes[8]", "desc": "The symbol of the token" }
"returns": { "type": "byte[8]", "desc": "The symbol of the token" }
},
{
"name": "arc200_decimals",
Expand Down Expand Up @@ -189,7 +189,7 @@ A smart contract token that is compliant with this standard MUST implement the f

Ownership of a token by a zero address indicates that a token is out of circulation indefinitely, or otherwise burned or destroyed.

The methods `arc200_transfer` and `arc200_transferFrom` method MUST error when the balance of `from` is insufficient. In the case of the `arc200_transfer` method, from is implied as the `owner` of the token.
The methods `arc200_transfer` and `arc200_transferFrom` method MUST error when the balance of `from` is insufficient. In the case of the `arc200_transfer` method, from is implied as the `owner` of the token.
The `arc200_transferFrom` method MUST error unless called by an `spender` approved by an `owner`.
The methods `arc200_transfer` and `arc200_transferFrom` MUST emit a `Transfer` event.
A `arc200_Transfer` event SHOULD be emitted, with `from` being the zero address, when a token is minted.
Expand Down

0 comments on commit c43f726

Please sign in to comment.