├── .gitignore ├── README.md ├── app ├── actions │ ├── AddTransactionActions.js │ ├── AppActions.js │ ├── HomeActions.js │ ├── NavbarActions.js │ └── ProposalActions.js ├── alt.js ├── components │ ├── AddTransaction.js │ ├── App.js │ ├── Footer.js │ ├── Home.js │ ├── Navbar.js │ └── Proposal.js ├── main.js ├── routes.js ├── stores │ ├── AddTransactionStore.js │ ├── AppStore.js │ ├── HomeStore.js │ ├── NavbarStore.js │ └── ProposalStore.js └── stylesheets │ └── main.less ├── bower.json ├── commands.md ├── contracts ├── blockchange.sol ├── compile_contract.js ├── contractGenerator.sol ├── deploy.js ├── deploy1.js ├── deploy_contract.js ├── minimal.sol └── use_contract.js ├── gulpfile.js ├── package.json ├── public ├── favicon.png └── fonts │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.svg │ ├── glyphicons-halflings-regular.ttf │ ├── glyphicons-halflings-regular.woff │ └── glyphicons-halflings-regular.woff2 ├── server.js └── views └── index.html /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BerkeleyBlockchain/block-change/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BerkeleyBlockchain/block-change/HEAD/README.md -------------------------------------------------------------------------------- /app/actions/AddTransactionActions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BerkeleyBlockchain/block-change/HEAD/app/actions/AddTransactionActions.js -------------------------------------------------------------------------------- /app/actions/AppActions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BerkeleyBlockchain/block-change/HEAD/app/actions/AppActions.js -------------------------------------------------------------------------------- /app/actions/HomeActions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BerkeleyBlockchain/block-change/HEAD/app/actions/HomeActions.js -------------------------------------------------------------------------------- /app/actions/NavbarActions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BerkeleyBlockchain/block-change/HEAD/app/actions/NavbarActions.js -------------------------------------------------------------------------------- /app/actions/ProposalActions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BerkeleyBlockchain/block-change/HEAD/app/actions/ProposalActions.js -------------------------------------------------------------------------------- /app/alt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BerkeleyBlockchain/block-change/HEAD/app/alt.js -------------------------------------------------------------------------------- /app/components/AddTransaction.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BerkeleyBlockchain/block-change/HEAD/app/components/AddTransaction.js -------------------------------------------------------------------------------- /app/components/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BerkeleyBlockchain/block-change/HEAD/app/components/App.js -------------------------------------------------------------------------------- /app/components/Footer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BerkeleyBlockchain/block-change/HEAD/app/components/Footer.js -------------------------------------------------------------------------------- /app/components/Home.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BerkeleyBlockchain/block-change/HEAD/app/components/Home.js -------------------------------------------------------------------------------- /app/components/Navbar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BerkeleyBlockchain/block-change/HEAD/app/components/Navbar.js -------------------------------------------------------------------------------- /app/components/Proposal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BerkeleyBlockchain/block-change/HEAD/app/components/Proposal.js -------------------------------------------------------------------------------- /app/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BerkeleyBlockchain/block-change/HEAD/app/main.js -------------------------------------------------------------------------------- /app/routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BerkeleyBlockchain/block-change/HEAD/app/routes.js -------------------------------------------------------------------------------- /app/stores/AddTransactionStore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BerkeleyBlockchain/block-change/HEAD/app/stores/AddTransactionStore.js -------------------------------------------------------------------------------- /app/stores/AppStore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BerkeleyBlockchain/block-change/HEAD/app/stores/AppStore.js -------------------------------------------------------------------------------- /app/stores/HomeStore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BerkeleyBlockchain/block-change/HEAD/app/stores/HomeStore.js -------------------------------------------------------------------------------- /app/stores/NavbarStore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BerkeleyBlockchain/block-change/HEAD/app/stores/NavbarStore.js -------------------------------------------------------------------------------- /app/stores/ProposalStore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BerkeleyBlockchain/block-change/HEAD/app/stores/ProposalStore.js -------------------------------------------------------------------------------- /app/stylesheets/main.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BerkeleyBlockchain/block-change/HEAD/app/stylesheets/main.less -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BerkeleyBlockchain/block-change/HEAD/bower.json -------------------------------------------------------------------------------- /commands.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BerkeleyBlockchain/block-change/HEAD/commands.md -------------------------------------------------------------------------------- /contracts/blockchange.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BerkeleyBlockchain/block-change/HEAD/contracts/blockchange.sol -------------------------------------------------------------------------------- /contracts/compile_contract.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BerkeleyBlockchain/block-change/HEAD/contracts/compile_contract.js -------------------------------------------------------------------------------- /contracts/contractGenerator.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BerkeleyBlockchain/block-change/HEAD/contracts/contractGenerator.sol -------------------------------------------------------------------------------- /contracts/deploy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BerkeleyBlockchain/block-change/HEAD/contracts/deploy.js -------------------------------------------------------------------------------- /contracts/deploy1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BerkeleyBlockchain/block-change/HEAD/contracts/deploy1.js -------------------------------------------------------------------------------- /contracts/deploy_contract.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BerkeleyBlockchain/block-change/HEAD/contracts/deploy_contract.js -------------------------------------------------------------------------------- /contracts/minimal.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BerkeleyBlockchain/block-change/HEAD/contracts/minimal.sol -------------------------------------------------------------------------------- /contracts/use_contract.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BerkeleyBlockchain/block-change/HEAD/contracts/use_contract.js -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BerkeleyBlockchain/block-change/HEAD/gulpfile.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BerkeleyBlockchain/block-change/HEAD/package.json -------------------------------------------------------------------------------- /public/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BerkeleyBlockchain/block-change/HEAD/public/favicon.png -------------------------------------------------------------------------------- /public/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BerkeleyBlockchain/block-change/HEAD/public/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /public/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BerkeleyBlockchain/block-change/HEAD/public/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /public/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BerkeleyBlockchain/block-change/HEAD/public/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /public/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BerkeleyBlockchain/block-change/HEAD/public/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /public/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BerkeleyBlockchain/block-change/HEAD/public/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BerkeleyBlockchain/block-change/HEAD/server.js -------------------------------------------------------------------------------- /views/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BerkeleyBlockchain/block-change/HEAD/views/index.html --------------------------------------------------------------------------------