Skip to content

Instantly share code, notes, and snippets.

@dexX7
Last active February 6, 2018 13:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dexX7/f891ce2fd81d6094e9546bf8527392c7 to your computer and use it in GitHub Desktop.
Save dexX7/f891ce2fd81d6094e9546bf8527392c7 to your computer and use it in GitHub Desktop.
Token types

Fungible token with fixed supply

Properties:

  • name
  • symbol
  • info

Operations:

  • transfer

Information:

  • get properties
  • get total supply
  • get balance

Fungible token with dynamic supply

Properties:

  • name
  • symbol
  • info

Operations:

  • transfer
  • increate supply
  • decrease supply
  • update owner

Information:

  • get properties
  • get total supply
  • get balance
  • get owner

Non-fungible token with fixed supply

Properties:

  • name
  • symbol
  • info

Operations:

  • transfer unique

Information:

  • get properties
  • get total supply
  • get balance
  • get holder based on token id

Non-fungible token with dynamic supply

Properties:

  • name
  • symbol
  • info

Operations:

  • transfer unique
  • increate supply
  • decrease supply
  • update owner

Information:

  • get properties
  • get total supply
  • get balance
  • get holder based on token id
  • get owner
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment