@@ -29,7 +29,7 @@ It's recommended to prefix the module with `Ownable_` to avoid circuit signature
2929pragma language_version >= 0.16.0;
3030
3131import CompactStandardLibrary;
32- import "./node_modules/@openzeppelin-compact/contracts/access/Ownable"
32+ import "./node_modules/@openzeppelin-compact/contracts/src/ access/Ownable"
3333 prefix Ownable_;
3434
3535constructor(
@@ -68,7 +68,7 @@ Here's a complete contract showcasing how to integrate the Ownable module and pr
6868pragma language_version >= 0.16.0;
6969
7070import CompactStandardLibrary;
71- import "./node_modules/@openzeppelin-compact/contracts/access/Ownable"
71+ import "./node_modules/@openzeppelin-compact/contracts/src/ access/Ownable"
7272 prefix Ownable_;
7373
7474/**
@@ -160,9 +160,9 @@ Here’s a simple example of using `AccessControl` with xref:fungibleToken.adoc[
160160pragma language_version >= 0.16.0;
161161
162162import CompactStandardLibrary;
163- import "./node_modules/@openzeppelin-compact/contracts/access/AccessControl"
163+ import "./node_modules/@openzeppelin-compact/contracts/src/ access/AccessControl"
164164 prefix AccessControl_;
165- import "./node_modules/@openzeppelin-compact/contracts/token/FungibleToken"
165+ import "./node_modules/@openzeppelin-compact/contracts/src/ token/FungibleToken"
166166 prefix FungibleToken_;
167167
168168export sealed ledger MINTER_ROLE: Bytes<32>;
@@ -202,9 +202,9 @@ Let’s augment our FungibleToken example by also defining a 'burner' role, whic
202202pragma language_version >= 0.16.0;
203203
204204import CompactStandardLibrary;
205- import "./node_modules/@openzeppelin-compact/contracts/access/AccessControl"
205+ import "./node_modules/@openzeppelin-compact/contracts/src/ access/AccessControl"
206206 prefix AccessControl_;
207- import "./node_modules/@openzeppelin-compact/contracts/token/FungibleToken"
207+ import "./node_modules/@openzeppelin-compact/contracts/src/ token/FungibleToken"
208208 prefix FungibleToken_;
209209
210210export sealed ledger MINTER_ROLE: Bytes<32>;
@@ -268,9 +268,9 @@ Let’s take a look at the FungibleToken example, this time taking advantage of
268268pragma language_version >= 0.16.0;
269269
270270import CompactStandardLibrary;
271- import "./node_modules/@openzeppelin-compact/contracts/access/AccessControl"
271+ import "./node_modules/@openzeppelin-compact/contracts/src/ access/AccessControl"
272272 prefix AccessControl_;
273- import "./node_modules/@openzeppelin-compact/contracts/token/FungibleToken"
273+ import "./node_modules/@openzeppelin-compact/contracts/src/ token/FungibleToken"
274274 prefix FungibleToken_;
275275
276276export sealed ledger MINTER_ROLE: Bytes<32>;
0 commit comments