First file adding
This commit is contained in:
parent
53c4cab7a4
commit
1b3756ed51
|
@ -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);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
}
|
Loading…
Reference in New Issue