You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Presets are ready-to-use contracts that you can deploy right away. They also serve as examples of how to use library modules. [Read more about presets](docs/Extensibility.md#presets).
52
+
Presets are ready-to-use contracts that you can deploy right away. They also serve as examples of how to use library modules. [Read more about presets](https://docs.openzeppelin.com/contracts-cairo/0.2.1/extensibility#presets).
53
53
54
54
```cairo
55
55
# contracts/MyToken.cairo
@@ -67,11 +67,11 @@ nile compile
67
67
nile deploy MyToken <name><symbol><decimals><initial_supply><recipient> --alias my_token
68
68
```
69
69
70
-
> Note that `<initial_supply>` is expected to be two integers i.e. `1``0`. See [Uint256](docs/Utilities.md#Uint256) for more information.
70
+
> Note that `<initial_supply>` is expected to be two integers i.e. `1``0`. See [Uint256](https://docs.openzeppelin.com/contracts-cairo/0.2.1/utilities#uint256) for more information.
71
71
72
72
### Write a custom contract using library modules
73
73
74
-
[Read more about libraries](docs/Extensibility.md#libraries).
74
+
[Read more about libraries](https://docs.openzeppelin.com/contracts-cairo/0.2.1/extensibility#libraries).
See [Memoization](docs/Utilities.md#memoization) in the Utilities documentation for a more thorough example on caching contracts.
250
+
See [Memoization](https://docs.openzeppelin.com/contracts-cairo/0.2.1/utilities#memoization) in the Utilities documentation for a more thorough example on caching contracts.
249
251
250
252
> Note that this does not apply for stateless libraries such as SafeMath.
0 commit comments