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

chore: make domainSeparator immutable #62

Merged
merged 1 commit into from
Jan 31, 2024
Merged
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
4 changes: 2 additions & 2 deletions src/KintoID.sol
Original file line number Diff line number Diff line change
Expand Up @@ -38,14 +38,14 @@ contract KintoID is
event SanctionRemoved(address indexed _to, uint16 _sanctionIndex, uint256 _timestamp);
event AccountsMonitoredAt(address indexed _signer, uint256 _accountsCount, uint256 _timestamp);

/* ============ Constants ============ */
/* ============ Constants & Immutables ============ */

bytes32 public constant override KYC_PROVIDER_ROLE = keccak256("KYC_PROVIDER_ROLE");
bytes32 public constant override UPGRADER_ROLE = keccak256("UPGRADER_ROLE");
bytes32 public domainSeparator;

/* ============ State Variables ============ */

bytes32 public domainSeparator;
uint256 private _nextTokenId;

// We'll monitor the whole list every single day and update it
Expand Down
Loading