Adding base airdrop and auction smart contract

This commit is contained in:
itzelot01 2023-11-21 22:45:04 +00:00
parent 57eb2b1a78
commit 897454d2f9
1 changed files with 15 additions and 0 deletions

15
src/AA.sol Normal file
View File

@ -0,0 +1,15 @@
// SPDX-License-Identifier: GPL-3.0
pragma solidity ^0.8.23;
import { Ownable } from "@openzeppelin/contracts/access/Ownable.sol";
import { DCO2s } from "./DCO2s.sol";
contract AA is Ownable {
DCO2s public dco2sc;
constructor(string memory name, string memory symbol) Ownable(msg.sender) {
dco2sc = new DCO2s(address(this),address(this), name, symbol);
}
}