Skip to content

Commit

Permalink
deployed publicjobboard.sol
Browse files Browse the repository at this point in the history
  • Loading branch information
MSBivens committed Sep 21, 2022
1 parent d19bd47 commit 81f8dba
Show file tree
Hide file tree
Showing 7 changed files with 7,104 additions and 146 deletions.
286 changes: 286 additions & 0 deletions my-app/PublicJobBoard.json

Large diffs are not rendered by default.

4 changes: 0 additions & 4 deletions my-app/hardhat.config.js

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,17 +1,19 @@
import { HardhatUserConfig } from "hardhat/config";
import "@nomiclabs/hardhat-web3";
import "@nomiclabs/hardhat-ethers";
// require { HardhatUserConfig } from "hardhat/config";
require("@nomiclabs/hardhat-web3");
require("@nomiclabs/hardhat-ethers");
require("dotenv").config();

// Provide your wallet private key
const privateKey = process.env.PRIVATE_KEY;

//Provide your SKALE endpoint address
const skale = process.env.SKALE_CHAIN_ENDPOINT;

const config: HardhatUserConfig = {
// const config: HardhatUserConfig = {
module.exports = {
defaultNetwork: "skale",
solidity: {
version: "0.8.0",
version: "0.8.7",
settings: {
optimizer: {
enabled: true,
Expand All @@ -22,10 +24,7 @@ const config: HardhatUserConfig = {
networks: {
skale: {
url: skale,
accounts: privateKey,
gasPrice: 0,
accounts: [privateKey],
},
},
};

export default config;
Loading

0 comments on commit 81f8dba

Please sign in to comment.