Skip to content

Commit

Permalink
Bump version to v1.0.0 and release
Browse files Browse the repository at this point in the history
  • Loading branch information
Watt3r committed Nov 24, 2020
1 parent 6834b04 commit 3396cef
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .openzeppelin/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
},
"dependencies": {},
"name": "ecobux",
"version": "0.1.0",
"version": "1.0.0",
"compiler": {
"compilerSettings": {
"optimizer": {
Expand Down
6 changes: 5 additions & 1 deletion migrations/2_deploy_start_contracts.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,12 @@ module.exports = function (deployer, network, accounts) {
deployer.then(async () => {
await deployer.deploy(EcoBux);
await deployer.deploy(EcoBuxFee);
await deployer.deploy(MarketPlace, EcoBux.address, EcoBuxFee.address);
await deployer.deploy(PilotoFuture, EcoBux.address);
await deployer.deploy(Piloto, EcoBux.address, EcoBuxFee.address);

// Only deploy MarketPlace on testnets
if (network != "infuragorli") {
await deployer.deploy(MarketPlace, EcoBux.address, EcoBuxFee.address);
}
});
};
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ecobux",
"version": "0.0.0",
"version": "1.0.0",
"description": "EcoBux: Take conservation into your own hands with the power of cryptocurrency",
"main": "contracts/Ecobux.sol",
"directories": {
Expand Down

0 comments on commit 3396cef

Please sign in to comment.