Skip to content
New issue

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

Add owner and minter fields to info.json #23

Merged
merged 2 commits into from
Jul 2, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,12 +62,17 @@ Please review the checklist below and check each item before submitting your tok
"burnerWallet",
"otherTag"
],
"warnings": []
"warnings": [],
"owner": "ownerAddress",
"minter": "minterAddress"
}
```

#### Note on Custom Tags
The `customTags` field in the info.json file is optional. This field can be used to include specific tags that describe unique characteristics or features of the token, such as burner wallet. Include custom tags only if they are relevant to the token’s functionality or usage.

#### Note on Owner and Minter
The owner and minter fields should include the addresses of the accounts that hold these capabilities within the token's smart contract. The owner is typically the account that has administrative rights over the entire contract, while the minter might be an account with the capability to issue new tokens.

### Note on Warnings
Please do not fill out the warnings field in the info.json file. This field is reserved for use by our auditing team, who will add relevant warnings such as "Mintable" or "Burnable" after thoroughly reviewing the token's smart contract. This ensures that all warnings are accurate and based on a comprehensive technical assessment.
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,9 @@ Paste the JSON structure into the content area. Here is an example template you
"burnerWallet",
"otherTag"
],
"warnings": []
"warnings": [],
"owner": "",
"minter": ""
}
```

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,8 @@
"url": "https://discord.gg/alephzero"
}
],
"customTags": [""],
"warnings": [""]
"customTags": [],
"warnings": [],
"owner": "",
"minter": ""
}
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,8 @@
"url": "https://discord.gg/alephzero"
}
],
"customTags": [""],
"warnings": [""]
"customTags": [],
"warnings": [],
"owner": "",
"minter": ""
}
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,8 @@
"url": "https://discord.gg/alephzero"
}
],
"customTags": [""],
"warnings": [""]
"customTags": [],
"warnings": [],
"owner": "",
"minter": ""
}
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,8 @@
"url": "https://discord.gg/alephzero"
}
],
"customTags": [""],
"warnings": [""]
"customTags": [],
"warnings": [],
"owner": "",
"minter": ""
}
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,8 @@
"url": "https://discord.gg/alephzero"
}
],
"customTags": [""],
"warnings": [""]
"customTags": [],
"warnings": [],
"owner": "",
"minter": ""
}
Loading