From 1b3756ed51537df9cd4dc9e35a531296514cfb49 Mon Sep 17 00:00:00 2001 From: "David E. Perez Negron R." Date: Tue, 16 Jan 2024 21:07:18 -0600 Subject: [PATCH] First file adding --- src/DappIndexer.sol | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 src/DappIndexer.sol diff --git a/src/DappIndexer.sol b/src/DappIndexer.sol new file mode 100644 index 0000000..5917e86 --- /dev/null +++ b/src/DappIndexer.sol @@ -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); + } + + +}