Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/workflows/ci-cd.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# TODO: review this file for improvements
name: CI/CD Pipeline

on:
Expand Down
1 change: 1 addition & 0 deletions Actions
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
# TODO: review this file for improvements
- name: Setup Node.js environment
uses: actions/setup-node@v4.4.0
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
<!-- TODO: review this file for improvements -->
# SEQICO Smart Contract Deployment

A Hardhat project for deploying the SEQICO ICO smart contract and SEQ token.
Expand Down
1 change: 1 addition & 0 deletions contracts/SEQICO.sol
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
// SPDX-License-Identifier: MIT
// TODO: review this file for improvements
pragma solidity ^0.8.24;

import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
Expand Down
1 change: 1 addition & 0 deletions contracts/SEQToken.sol
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
// SPDX-License-Identifier: MIT
// TODO: review this file for improvements
pragma solidity ^0.8.24;

import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
Expand Down
1 change: 1 addition & 0 deletions hardhat.config.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// TODO: review this file for improvements
import "@nomicfoundation/hardhat-ethers";

/** @type import('hardhat/config').HardhatUserConfig */
Expand Down
1 change: 1 addition & 0 deletions scripts/deploy-DE.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// TODO: review this file for improvements
import { ethers } from "hardhat";

async function main() {
Expand Down
1 change: 1 addition & 0 deletions scripts/deploy.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// TODO: review this file for improvements
import { ethers } from "hardhat";

async function main() {
Expand Down
1 change: 1 addition & 0 deletions test/SEQICO.test.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// TODO: review this file for improvements
import { ethers } from "hardhat";

describe("SEQICO - Code Review Fix", function () {
Expand Down
Loading