First file adding

This commit is contained in:
David E. Perez Negron R. 2024-01-16 21:07:18 -06:00
parent 53c4cab7a4
commit 1b3756ed51
1 changed files with 13 additions and 0 deletions

13
src/DappIndexer.sol Normal file
View File

@ -0,0 +1,13 @@
// SPDX-License-Identifier: GPL-3.0
pragma solidity ^0.8.23;
import "@openzeppelin/contracts/access/AccessControl.sol";
contract DappIndexer is AccessControl {
constructor(){
_grantRole(DEFAULT_ADMIN_ROLE, defaultAdmin);
}
}