Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Continue Working
  • Loading branch information
BraisCabo committed Aug 24, 2022
1 parent dad9ebf commit ea034cc
Show file tree
Hide file tree
Showing 53 changed files with 135,439 additions and 33,186 deletions.
2 changes: 1 addition & 1 deletion build/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<meta charset="utf-8" />
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700&display=swap" />
<title>Cripto Casino</title>
</head>
</head>
<body>
<noscript>You need to enable JavaScript to run this app.</noscript>
<div id="root"></div>
Expand Down
32 changes: 32 additions & 0 deletions hardhat.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
require("@nomiclabs/hardhat-waffle");

const fs = require('fs')
const privateKey = fs.readFileSync(".secret").toString().trim();

module.exports = {
solidity: "0.8.4",
paths: {
artifacts: "./src/backend/artifacts",
sources: "./src/backend/contracts",
cache: "./src/backend/cache",
tests: "./src/backend/test"
},
//defaultNetwork: "ganache",
networks: {
ganache: {
url: "http://127.0.0.1:7545"
},
polygon: {
url: "https://rpc-mumbai.maticvigil.com/v1/99a99d15ac2ad3b526aa97401fdbe30ee724ba38",
accounts: [privateKey]
},
bsc: {
url: "https://data-seed-prebsc-1-s1.binance.org:8545",
chainId: 97,
gasPrice: 20000000000,
accounts: [privateKey]
},
hardhat: {
},
},
};
Empty file added hola
Empty file.
5 changes: 5 additions & 0 deletions migrations/1_initial_migration.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
const casino = artifacts.require("casino");

module.exports = function(deployer) {
deployer.deploy(casino);
};
Loading

0 comments on commit ea034cc

Please sign in to comment.