|
52 | 52 | <label class:checked={opts.mintable}> |
53 | 53 | <input type="checkbox" bind:checked={opts.mintable} /> |
54 | 54 | Mintable |
55 | | - <HelpTooltip link="https://docs.openzeppelin.com/contracts-cairo/erc721"> |
| 55 | + <HelpTooltip link="https://docs.openzeppelin.com/contracts-cairo/2.x/erc721"> |
56 | 56 | Privileged accounts will be able to emit new tokens. |
57 | 57 | </HelpTooltip> |
58 | 58 | </label> |
|
64 | 64 | <label class:checked={opts.pausable}> |
65 | 65 | <input type="checkbox" bind:checked={opts.pausable} /> |
66 | 66 | Pausable |
67 | | - <HelpTooltip link="https://docs.openzeppelin.com/contracts-cairo/security#pausable"> |
| 67 | + <HelpTooltip link="https://docs.openzeppelin.com/contracts-cairo/2.x/security#pausable"> |
68 | 68 | Privileged accounts will be able to pause the functionality marked with <code |
69 | 69 | >self.pausable.assert_not_paused()</code |
70 | 70 | >. Useful for emergency response. |
|
73 | 73 | <label class:checked={opts.enumerable}> |
74 | 74 | <input type="checkbox" bind:checked={opts.enumerable} /> |
75 | 75 | Enumerable |
76 | | - <HelpTooltip link="https://docs.openzeppelin.com/contracts-cairo/api/erc721#ERC721EnumerableComponent"> |
| 76 | + <HelpTooltip link="https://docs.openzeppelin.com/contracts-cairo/2.x/api/erc721#ERC721EnumerableComponent"> |
77 | 77 | Allows a contract to publish its entire list of NFTs and make them discoverable by keeping track of all token |
78 | 78 | ids and all tokens owned by an address. |
79 | 79 | </HelpTooltip> |
|
86 | 86 | label="Votes" |
87 | 87 | bind:checked={opts.votes} |
88 | 88 | helpContent="Keeps track of historical balances for voting in on-chain governance, with a way to delegate one's voting power to a trusted account." |
89 | | - helpLink="https://docs.openzeppelin.com/contracts-cairo/governance/votes" |
| 89 | + helpLink="https://docs.openzeppelin.com/contracts-cairo/2.x/governance/votes" |
90 | 90 | error={errors?.appName || errors?.appVersion} |
91 | 91 | > |
92 | 92 | <label class="labeled-input"> |
93 | 93 | <span class="flex justify-between pr-2"> |
94 | 94 | Application Name |
95 | | - <HelpTooltip link="https://docs.openzeppelin.com/contracts-cairo/guides/snip12"> |
| 95 | + <HelpTooltip link="https://docs.openzeppelin.com/contracts-cairo/2.x/guides/snip12"> |
96 | 96 | Name for domain separator. Prevents two applications from producing the same hash. |
97 | 97 | </HelpTooltip> |
98 | 98 | </span> |
|
102 | 102 | <label class="labeled-input"> |
103 | 103 | <span class="flex justify-between pr-2"> |
104 | 104 | Application Version |
105 | | - <HelpTooltip link="https://docs.openzeppelin.com/contracts-cairo/guides/snip12"> |
| 105 | + <HelpTooltip link="https://docs.openzeppelin.com/contracts-cairo/2.x/guides/snip12"> |
106 | 106 | Version for domain separator. Prevents two versions of the same application from producing the same hash. |
107 | 107 | </HelpTooltip> |
108 | 108 | </span> |
|
0 commit comments