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
26 changes: 15 additions & 11 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "eth-marketplace",
"name": "digital-ocean-stream-nft",
"version": "0.1.0",
"description": "An Ethereum Marketplace",
"description": "A centralized data on a decentralized platform for the creative one. Now Music Artists & Art Artists will have the opportunity to collaborate, developing Music NFTs, With Royalties Splits, built with the contracts.",
"author": "gregory@dappuniversity.com",
"dependencies": {
"babel-polyfill": "6.26.0",
Expand All @@ -10,16 +10,16 @@
"babel-preset-stage-2": "6.24.1",
"babel-preset-stage-3": "6.24.1",
"babel-register": "6.26.0",
"bootstrap": "4.3.1",
"chai": "4.2.0",
"bootstrap": "5.1.3",
"chai": "4.3.6",
"chai-as-promised": "7.1.1",
"chai-bignumber": "3.0.0",
"react": "16.8.4",
"react-bootstrap": "1.0.0-beta.5",
"react-dom": "16.8.4",
"react-scripts": "2.1.3",
"truffle": "5.0.5",
"web3": "1.0.0-beta.55"
"react": "18.0.0",
"react-bootstrap": "2.2.3",
"react-dom": "18.0.0",
"react-scripts": "5.0.1",
"truffle": "5.5.10",
"web3": "1.7.3"
},
"scripts": {
"start": "react-scripts start",
Expand All @@ -35,5 +35,9 @@
"not dead",
"not ie <= 11",
"not op_mini all"
],
"keywords": [
"digitaloceanstream",
"music nft"
]
}
}
Binary file added thumbnail.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
14 changes: 7 additions & 7 deletions truffle-config.js
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
require('babel-register');
require('babel-polyfill');
require("babel-register");
require("babel-polyfill");

module.exports = {
networks: {
development: {
host: "127.0.0.1",
port: 7545,
port: 8545,
network_id: "*" // Match any network id
},
}
},
contracts_directory: './src/contracts/',
contracts_build_directory: './src/abis/',
contracts_directory: "./src/contracts/",
contracts_build_directory: "./src/abis/",
compilers: {
solc: {
optimizer: {
Expand All @@ -19,4 +19,4 @@ module.exports = {
}
}
}
}
};