We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
As of now the reference-contracts directory looks like this:
reference-contracts
. ├── FungibleToken-Mintable.scilla ├── FungibleToken-Operator.scilla ├── FungibleToken.scilla ├── MetaFungibleToken.scilla ├── multisig_wallet.scilla ├── nonfungible-token.scilla ├── style-guide.md └── zrc6.scilla
and it's not clear what, for instance, nonfungible-token.scilla's ZRC number is.
nonfungible-token.scilla
One possible proposal could be to prepend all the contract names with their ZRC index like so:
. ├── zrc2_FungibleToken-Mintable.scilla ├── zrc2_FungibleToken-Operator.scilla ├── zrc2_FungibleToken.scilla ├── zrc3_MetaFungibleToken.scilla ├── zrc4_Multisig-Wallet.scilla ├── zrc1_NonFungibleToken.scilla ├── style-guide.md └── zrc6_NonFungibleToken.scilla
The text was updated successfully, but these errors were encountered:
No branches or pull requests
As of now the
reference-contracts
directory looks like this:and it's not clear what, for instance,
nonfungible-token.scilla
's ZRC number is.One possible proposal could be to prepend all the contract names with their ZRC index like so:
The text was updated successfully, but these errors were encountered: