Skip to content

Commit 24563e4

Browse files
committed
trial 1
0 parents  commit 24563e4

30 files changed

+52592
-0
lines changed

.babelrc

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"presets": ["es2015", "stage-2", "stage-3"]
3+
}

.env_example

Whitespace-only changes.

.gitignore

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
2+
# dependencies
3+
/node_modules
4+
/.pnp
5+
.pnp.js
6+
7+
# testing
8+
/coverage
9+
10+
# production
11+
/build
12+
13+
# misc
14+
.DS_Store
15+
.env
16+
.env.local
17+
.env.development.local
18+
.env.test.local
19+
.env.production.local
20+
21+
npm-debug.log*
22+
yarn-debug.log*
23+
yarn-error.log*

migrations/1_initial_migration.js

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
const Migrations = artifacts.require("Migrations");
2+
3+
module.exports = function(deployer) {
4+
deployer.deploy(Migrations);
5+
};

migrations/2_deploy_contracts.js

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
const DStorage = artifacts.require("DStorage");
2+
3+
module.exports = function(deployer) {
4+
deployer.deploy(DStorage);
5+
};

0 commit comments

Comments
 (0)