Skip to content

Commit

Permalink
chore: make domainSeparator immutable
Browse files Browse the repository at this point in the history
  • Loading branch information
fedealconada committed Jan 30, 2024
1 parent 7c7cefd commit ed6e21e
Showing 1 changed file with 2 additions and 2 deletions.
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

0 comments on commit ed6e21e

Please sign in to comment.