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

feat(access): add AccessControl #59

Merged
merged 10 commits into from
May 17, 2024
11 changes: 11 additions & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ members = [
"examples/erc721",
"examples/merkle-proofs",
"examples/ownable",
"examples/access-control",
]
# Explicitly set the resolver to version 2, which is the default for packages
# with edition >= 2021.
Expand Down
1 change: 1 addition & 0 deletions contracts/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ erc721_metadata = ["erc721"]

access = []
ownable = ["access"]
control = ["access"]

# Enables using the standard library. This is not included in the default
# features, because this crate is meant to be used in a `no_std` environment.
Expand Down
Loading
Loading