├── README.md ├── app ├── index.html ├── javascripts │ └── app.js └── stylesheets │ └── app.css ├── contracts ├── Conference.sol └── Migrations.sol ├── migrations └── 1_initial_migration.js ├── package.json ├── test └── conference.js ├── truffle-config.js ├── truffle.js └── webpack.config.js /README.md: -------------------------------------------------------------------------------- 1 | # ethereum Dapp tutorial 2 | 3 | 可以参考下面这篇文章: 4 | 5 | https://www.jianshu.com/p/46818a995ab5 6 | -------------------------------------------------------------------------------- /app/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pony-maggie/conference/HEAD/app/index.html -------------------------------------------------------------------------------- /app/javascripts/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pony-maggie/conference/HEAD/app/javascripts/app.js -------------------------------------------------------------------------------- /app/stylesheets/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pony-maggie/conference/HEAD/app/stylesheets/app.css -------------------------------------------------------------------------------- /contracts/Conference.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pony-maggie/conference/HEAD/contracts/Conference.sol -------------------------------------------------------------------------------- /contracts/Migrations.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pony-maggie/conference/HEAD/contracts/Migrations.sol -------------------------------------------------------------------------------- /migrations/1_initial_migration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pony-maggie/conference/HEAD/migrations/1_initial_migration.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pony-maggie/conference/HEAD/package.json -------------------------------------------------------------------------------- /test/conference.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pony-maggie/conference/HEAD/test/conference.js -------------------------------------------------------------------------------- /truffle-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pony-maggie/conference/HEAD/truffle-config.js -------------------------------------------------------------------------------- /truffle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pony-maggie/conference/HEAD/truffle.js -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pony-maggie/conference/HEAD/webpack.config.js --------------------------------------------------------------------------------