Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

kl #2

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open

kl #2

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
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
- Connect metamask browser wallet to Kovan Test Network.
- Request and get test etheres for the metamask account from [Kovan Faucet](https://gitter.im/kovan-testnet/faucet) to make transactions.
- Crypto Boy Marketplace Smart Contract is deployed to Kovan Testnet - [0x420d2a6E87D87992EB01e5BFe762B3F437dBfD85](https://kovan.etherscan.io/address/0x420d2a6e87d87992eb01e5bfe762b3f437dbfd85)
- Access Crypto Boy Marketplace DApp at [cryptoboys-NFT-marketplace](https://devpavan04.github.io/cryptoboys-nft-marketplace/) and start minting your Crypto Boys.
- Access Crypto Boy Marketplace DApp at [BscBoys-NFT-marketplace](https://devpavan04.github.io/BscBoys-nft-marketplace/) and start minting your Crypto Boys.
#
### Run the DApp Locally
#### Install truffle
Expand All @@ -41,11 +41,11 @@ ganache-cli --port 7545
```
#### Open new terminal window and clone this repository
```
git clone https://github.com/devpavan04/cryptoboys-NFT-marketplace.git
git clone https://github.com/devpavan04/BscBoys-NFT-marketplace.git
```
#### Install dependencies
```
cd cryptoboys-NFT-marketplace
cd BscBoys-NFT-marketplace
npm install
```
#### Compile smart contract
Expand Down
4 changes: 2 additions & 2 deletions migrations/2_deploy_contracts.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
const CryptoBoys = artifacts.require("CryptoBoys");
const BscBoys = artifacts.require("BscBoys");

module.exports = async function(deployer) {
await deployer.deploy(CryptoBoys);
await deployer.deploy(BscBoys);
};
Loading