Psychedelic / DIP721

DIP721 - An Internet Computer Non-fungible Token Standard
GNU General Public License v3.0
62 stars 28 forks source link

Add `Transfer` to `SupportedInterface`. #53

Open q-uint opened 2 years ago

q-uint commented 2 years ago

Every DIP-721 compatible smart contract must implement this interface. All other interfaces are optional. ~ spec.md: DIP721 v2

The basic interface does/should not include the the transfer interface.

Expected

type SupportedInterface = variant {
  Transfer;
  Burn;
  Mint;
  Approval;
  TransactionHistory
};

Actual

type SupportedInterface = variant {
  Burn;
  Mint;
  Approval;
  TransactionHistory
};