├── .gitignore ├── README.md ├── _general files_ └── genesis.json ├── s01 ├── HelloWorld.sol ├── MyContract.sol ├── genesis.json ├── s01l01-Quickstart.pptx └── s01l05-next-steps.pptx ├── s05 ├── Vagrantfile ├── s05l01-mist.pptx └── s05l03-helloworld.sol ├── s06 ├── Different Phases of Development.pptx ├── Genesis-Block-Explained.pptx ├── example_interact_with_contracts_once_deployed │ ├── .babelrc │ ├── .eslintignore │ ├── .eslintrc │ ├── .gitignore │ ├── README.md │ ├── app │ │ ├── index.html │ │ ├── javascripts │ │ │ └── app.js │ │ └── stylesheets │ │ │ └── app.css │ ├── contracts │ │ ├── ConvertLib.sol │ │ ├── MetaCoin.sol │ │ └── Migrations.sol │ ├── migrations │ │ ├── 1_initial_migration.js │ │ └── 2_deploy_contracts.js │ ├── package.json │ ├── test │ │ ├── TestMetacoin.sol │ │ └── metacoin.js │ ├── truffle.js │ └── webpack.config.js ├── genesis.json └── mydatadir │ ├── geth │ ├── LOCK │ ├── chaindata │ │ ├── 000023.log │ │ ├── 000025.ldb │ │ ├── CURRENT │ │ ├── LOCK │ │ ├── LOG │ │ └── MANIFEST-000024 │ ├── nodekey │ └── nodes │ │ ├── 000028.log │ │ ├── 000030.ldb │ │ ├── 000031.ldb │ │ ├── CURRENT │ │ ├── LOCK │ │ ├── LOG │ │ └── MANIFEST-000029 │ └── keystore │ └── UTC--2017-02-23T17-52-28.794666900Z--e0dbaf0a3979197f12d7caa324e38ce7b355e82c ├── s08 ├── README.md ├── Web3-intro.pptx ├── l02 │ └── index.html ├── l03 │ ├── contract.sol │ └── index.html ├── l04 │ ├── contract.sol │ └── index.html ├── l05-create-contract │ ├── contract.sol │ └── index.html └── l06-listen-to-events │ ├── contract.sol │ └── index.html ├── s09 - simpleWallet ├── SimpleWallet - ASSIGNMENT.sol └── SimpleWallet - SOLUTION.sol ├── s11 ├── frontend │ ├── .babelrc │ ├── .bootstraprc-3-default │ ├── .eslintignore │ ├── .eslintrc │ ├── .gitignore │ ├── README.md │ ├── app │ │ ├── index.html │ │ ├── javascripts │ │ │ └── app.js │ │ └── stylesheets │ │ │ └── app.css │ ├── contracts │ │ ├── Migrations.sol │ │ ├── MyWallet.sol │ │ ├── mortal.sol │ │ └── owned.sol │ ├── migrations │ │ ├── 1_initial_migration.js │ │ └── 2_deploy_contracts.js │ ├── package.json │ ├── test │ │ └── wallet.js │ ├── truffle.js │ └── webpack.config.js ├── intro.pptx ├── l02-intro-truffle │ └── README.md ├── l04-our-wallet │ └── ourWallet.sol ├── l06-testing-our-wallet │ ├── contracts │ │ ├── Migrations.sol │ │ ├── MyWallet.sol │ │ ├── mortal.sol │ │ └── owned.sol │ ├── migrations │ │ ├── 1_initial_migration.js │ │ └── 2_deploy_contracts.js │ ├── test │ │ └── wallet.js │ └── truffle.js ├── l08-simple-frontend │ ├── .babelrc │ ├── .eslintignore │ ├── .eslintrc │ ├── .gitignore │ ├── README.md │ ├── app │ │ ├── index.html │ │ ├── javascripts │ │ │ └── app.js │ │ └── stylesheets │ │ │ └── app.css │ ├── contracts │ │ ├── Migrations.sol │ │ ├── MyWallet.sol │ │ ├── mortal.sol │ │ └── owned.sol │ ├── migrations │ │ ├── 1_initial_migration.js │ │ └── 2_deploy_contracts.js │ ├── package.json │ ├── test │ │ └── wallet.js │ ├── truffle.js │ └── webpack.config.js └── l10-we-add-events │ ├── .babelrc │ ├── .eslintignore │ ├── .eslintrc │ ├── .gitignore │ ├── README.md │ ├── app │ ├── index.html │ ├── javascripts │ │ └── app.js │ └── stylesheets │ │ └── app.css │ ├── contracts │ ├── Migrations.sol │ ├── MyWallet.sol │ ├── mortal.sol │ └── owned.sol │ ├── migrations │ ├── 1_initial_migration.js │ └── 2_deploy_contracts.js │ ├── package.json │ ├── test │ └── wallet.js │ ├── truffle.js │ └── webpack.config.js └── s12 ├── CVExtender.sol ├── Example.sol ├── Final Course Project.pptx ├── Final Course Project2.pptx └── cvindex ├── .babelrc ├── .eslintignore ├── .eslintrc ├── .gitignore ├── README.md ├── app ├── addcv.html ├── admin.html ├── index.html ├── javascripts │ └── app.js └── stylesheets │ └── app.css ├── contracts ├── CVExtender.sol ├── CVIndex.sol ├── Migrations.sol └── MyExampleContract.sol ├── migrations ├── 1_initial_migration.js └── 2_deploy_contracts.js ├── package.json ├── test └── cvindex.js ├── truffle.js └── webpack.config.js /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomw1808/truffle_eth_class2/HEAD/README.md -------------------------------------------------------------------------------- /_general files_/genesis.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomw1808/truffle_eth_class2/HEAD/_general files_/genesis.json -------------------------------------------------------------------------------- /s01/HelloWorld.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomw1808/truffle_eth_class2/HEAD/s01/HelloWorld.sol -------------------------------------------------------------------------------- /s01/MyContract.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomw1808/truffle_eth_class2/HEAD/s01/MyContract.sol -------------------------------------------------------------------------------- /s01/genesis.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomw1808/truffle_eth_class2/HEAD/s01/genesis.json -------------------------------------------------------------------------------- /s01/s01l01-Quickstart.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomw1808/truffle_eth_class2/HEAD/s01/s01l01-Quickstart.pptx -------------------------------------------------------------------------------- /s01/s01l05-next-steps.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomw1808/truffle_eth_class2/HEAD/s01/s01l05-next-steps.pptx -------------------------------------------------------------------------------- /s05/Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomw1808/truffle_eth_class2/HEAD/s05/Vagrantfile -------------------------------------------------------------------------------- /s05/s05l01-mist.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomw1808/truffle_eth_class2/HEAD/s05/s05l01-mist.pptx -------------------------------------------------------------------------------- /s05/s05l03-helloworld.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomw1808/truffle_eth_class2/HEAD/s05/s05l03-helloworld.sol -------------------------------------------------------------------------------- /s06/Different Phases of Development.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomw1808/truffle_eth_class2/HEAD/s06/Different Phases of Development.pptx -------------------------------------------------------------------------------- /s06/Genesis-Block-Explained.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomw1808/truffle_eth_class2/HEAD/s06/Genesis-Block-Explained.pptx -------------------------------------------------------------------------------- /s06/example_interact_with_contracts_once_deployed/.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ["env"] 3 | } 4 | -------------------------------------------------------------------------------- /s06/example_interact_with_contracts_once_deployed/.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomw1808/truffle_eth_class2/HEAD/s06/example_interact_with_contracts_once_deployed/.eslintignore -------------------------------------------------------------------------------- /s06/example_interact_with_contracts_once_deployed/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomw1808/truffle_eth_class2/HEAD/s06/example_interact_with_contracts_once_deployed/.eslintrc -------------------------------------------------------------------------------- /s06/example_interact_with_contracts_once_deployed/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomw1808/truffle_eth_class2/HEAD/s06/example_interact_with_contracts_once_deployed/.gitignore -------------------------------------------------------------------------------- /s06/example_interact_with_contracts_once_deployed/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomw1808/truffle_eth_class2/HEAD/s06/example_interact_with_contracts_once_deployed/README.md -------------------------------------------------------------------------------- /s06/example_interact_with_contracts_once_deployed/app/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomw1808/truffle_eth_class2/HEAD/s06/example_interact_with_contracts_once_deployed/app/index.html -------------------------------------------------------------------------------- /s06/example_interact_with_contracts_once_deployed/app/javascripts/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomw1808/truffle_eth_class2/HEAD/s06/example_interact_with_contracts_once_deployed/app/javascripts/app.js -------------------------------------------------------------------------------- /s06/example_interact_with_contracts_once_deployed/app/stylesheets/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomw1808/truffle_eth_class2/HEAD/s06/example_interact_with_contracts_once_deployed/app/stylesheets/app.css -------------------------------------------------------------------------------- /s06/example_interact_with_contracts_once_deployed/contracts/ConvertLib.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomw1808/truffle_eth_class2/HEAD/s06/example_interact_with_contracts_once_deployed/contracts/ConvertLib.sol -------------------------------------------------------------------------------- /s06/example_interact_with_contracts_once_deployed/contracts/MetaCoin.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomw1808/truffle_eth_class2/HEAD/s06/example_interact_with_contracts_once_deployed/contracts/MetaCoin.sol -------------------------------------------------------------------------------- /s06/example_interact_with_contracts_once_deployed/contracts/Migrations.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomw1808/truffle_eth_class2/HEAD/s06/example_interact_with_contracts_once_deployed/contracts/Migrations.sol -------------------------------------------------------------------------------- /s06/example_interact_with_contracts_once_deployed/migrations/1_initial_migration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomw1808/truffle_eth_class2/HEAD/s06/example_interact_with_contracts_once_deployed/migrations/1_initial_migration.js -------------------------------------------------------------------------------- /s06/example_interact_with_contracts_once_deployed/migrations/2_deploy_contracts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomw1808/truffle_eth_class2/HEAD/s06/example_interact_with_contracts_once_deployed/migrations/2_deploy_contracts.js -------------------------------------------------------------------------------- /s06/example_interact_with_contracts_once_deployed/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomw1808/truffle_eth_class2/HEAD/s06/example_interact_with_contracts_once_deployed/package.json -------------------------------------------------------------------------------- /s06/example_interact_with_contracts_once_deployed/test/TestMetacoin.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomw1808/truffle_eth_class2/HEAD/s06/example_interact_with_contracts_once_deployed/test/TestMetacoin.sol -------------------------------------------------------------------------------- /s06/example_interact_with_contracts_once_deployed/test/metacoin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomw1808/truffle_eth_class2/HEAD/s06/example_interact_with_contracts_once_deployed/test/metacoin.js -------------------------------------------------------------------------------- /s06/example_interact_with_contracts_once_deployed/truffle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomw1808/truffle_eth_class2/HEAD/s06/example_interact_with_contracts_once_deployed/truffle.js -------------------------------------------------------------------------------- /s06/example_interact_with_contracts_once_deployed/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomw1808/truffle_eth_class2/HEAD/s06/example_interact_with_contracts_once_deployed/webpack.config.js -------------------------------------------------------------------------------- /s06/genesis.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomw1808/truffle_eth_class2/HEAD/s06/genesis.json -------------------------------------------------------------------------------- /s06/mydatadir/geth/LOCK: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /s06/mydatadir/geth/chaindata/000023.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomw1808/truffle_eth_class2/HEAD/s06/mydatadir/geth/chaindata/000023.log -------------------------------------------------------------------------------- /s06/mydatadir/geth/chaindata/000025.ldb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomw1808/truffle_eth_class2/HEAD/s06/mydatadir/geth/chaindata/000025.ldb -------------------------------------------------------------------------------- /s06/mydatadir/geth/chaindata/CURRENT: -------------------------------------------------------------------------------- 1 | MANIFEST-000024 2 | -------------------------------------------------------------------------------- /s06/mydatadir/geth/chaindata/LOCK: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /s06/mydatadir/geth/chaindata/LOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomw1808/truffle_eth_class2/HEAD/s06/mydatadir/geth/chaindata/LOG -------------------------------------------------------------------------------- /s06/mydatadir/geth/chaindata/MANIFEST-000024: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomw1808/truffle_eth_class2/HEAD/s06/mydatadir/geth/chaindata/MANIFEST-000024 -------------------------------------------------------------------------------- /s06/mydatadir/geth/nodekey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomw1808/truffle_eth_class2/HEAD/s06/mydatadir/geth/nodekey -------------------------------------------------------------------------------- /s06/mydatadir/geth/nodes/000028.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomw1808/truffle_eth_class2/HEAD/s06/mydatadir/geth/nodes/000028.log -------------------------------------------------------------------------------- /s06/mydatadir/geth/nodes/000030.ldb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomw1808/truffle_eth_class2/HEAD/s06/mydatadir/geth/nodes/000030.ldb -------------------------------------------------------------------------------- /s06/mydatadir/geth/nodes/000031.ldb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomw1808/truffle_eth_class2/HEAD/s06/mydatadir/geth/nodes/000031.ldb -------------------------------------------------------------------------------- /s06/mydatadir/geth/nodes/CURRENT: -------------------------------------------------------------------------------- 1 | MANIFEST-000029 2 | -------------------------------------------------------------------------------- /s06/mydatadir/geth/nodes/LOCK: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /s06/mydatadir/geth/nodes/LOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomw1808/truffle_eth_class2/HEAD/s06/mydatadir/geth/nodes/LOG -------------------------------------------------------------------------------- /s06/mydatadir/geth/nodes/MANIFEST-000029: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomw1808/truffle_eth_class2/HEAD/s06/mydatadir/geth/nodes/MANIFEST-000029 -------------------------------------------------------------------------------- /s06/mydatadir/keystore/UTC--2017-02-23T17-52-28.794666900Z--e0dbaf0a3979197f12d7caa324e38ce7b355e82c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomw1808/truffle_eth_class2/HEAD/s06/mydatadir/keystore/UTC--2017-02-23T17-52-28.794666900Z--e0dbaf0a3979197f12d7caa324e38ce7b355e82c -------------------------------------------------------------------------------- /s08/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomw1808/truffle_eth_class2/HEAD/s08/README.md -------------------------------------------------------------------------------- /s08/Web3-intro.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomw1808/truffle_eth_class2/HEAD/s08/Web3-intro.pptx -------------------------------------------------------------------------------- /s08/l02/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomw1808/truffle_eth_class2/HEAD/s08/l02/index.html -------------------------------------------------------------------------------- /s08/l03/contract.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomw1808/truffle_eth_class2/HEAD/s08/l03/contract.sol -------------------------------------------------------------------------------- /s08/l03/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomw1808/truffle_eth_class2/HEAD/s08/l03/index.html -------------------------------------------------------------------------------- /s08/l04/contract.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomw1808/truffle_eth_class2/HEAD/s08/l04/contract.sol -------------------------------------------------------------------------------- /s08/l04/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomw1808/truffle_eth_class2/HEAD/s08/l04/index.html -------------------------------------------------------------------------------- /s08/l05-create-contract/contract.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomw1808/truffle_eth_class2/HEAD/s08/l05-create-contract/contract.sol -------------------------------------------------------------------------------- /s08/l05-create-contract/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomw1808/truffle_eth_class2/HEAD/s08/l05-create-contract/index.html -------------------------------------------------------------------------------- /s08/l06-listen-to-events/contract.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomw1808/truffle_eth_class2/HEAD/s08/l06-listen-to-events/contract.sol -------------------------------------------------------------------------------- /s08/l06-listen-to-events/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomw1808/truffle_eth_class2/HEAD/s08/l06-listen-to-events/index.html -------------------------------------------------------------------------------- /s09 - simpleWallet/SimpleWallet - ASSIGNMENT.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomw1808/truffle_eth_class2/HEAD/s09 - simpleWallet/SimpleWallet - ASSIGNMENT.sol -------------------------------------------------------------------------------- /s09 - simpleWallet/SimpleWallet - SOLUTION.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomw1808/truffle_eth_class2/HEAD/s09 - simpleWallet/SimpleWallet - SOLUTION.sol -------------------------------------------------------------------------------- /s11/frontend/.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ["env"] 3 | } 4 | -------------------------------------------------------------------------------- /s11/frontend/.bootstraprc-3-default: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomw1808/truffle_eth_class2/HEAD/s11/frontend/.bootstraprc-3-default -------------------------------------------------------------------------------- /s11/frontend/.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomw1808/truffle_eth_class2/HEAD/s11/frontend/.eslintignore -------------------------------------------------------------------------------- /s11/frontend/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomw1808/truffle_eth_class2/HEAD/s11/frontend/.eslintrc -------------------------------------------------------------------------------- /s11/frontend/.gitignore: -------------------------------------------------------------------------------- 1 | build 2 | node_modules 3 | yarn-error.log 4 | -------------------------------------------------------------------------------- /s11/frontend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomw1808/truffle_eth_class2/HEAD/s11/frontend/README.md -------------------------------------------------------------------------------- /s11/frontend/app/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomw1808/truffle_eth_class2/HEAD/s11/frontend/app/index.html -------------------------------------------------------------------------------- /s11/frontend/app/javascripts/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomw1808/truffle_eth_class2/HEAD/s11/frontend/app/javascripts/app.js -------------------------------------------------------------------------------- /s11/frontend/app/stylesheets/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomw1808/truffle_eth_class2/HEAD/s11/frontend/app/stylesheets/app.css -------------------------------------------------------------------------------- /s11/frontend/contracts/Migrations.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomw1808/truffle_eth_class2/HEAD/s11/frontend/contracts/Migrations.sol -------------------------------------------------------------------------------- /s11/frontend/contracts/MyWallet.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomw1808/truffle_eth_class2/HEAD/s11/frontend/contracts/MyWallet.sol -------------------------------------------------------------------------------- /s11/frontend/contracts/mortal.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomw1808/truffle_eth_class2/HEAD/s11/frontend/contracts/mortal.sol -------------------------------------------------------------------------------- /s11/frontend/contracts/owned.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomw1808/truffle_eth_class2/HEAD/s11/frontend/contracts/owned.sol -------------------------------------------------------------------------------- /s11/frontend/migrations/1_initial_migration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomw1808/truffle_eth_class2/HEAD/s11/frontend/migrations/1_initial_migration.js -------------------------------------------------------------------------------- /s11/frontend/migrations/2_deploy_contracts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomw1808/truffle_eth_class2/HEAD/s11/frontend/migrations/2_deploy_contracts.js -------------------------------------------------------------------------------- /s11/frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomw1808/truffle_eth_class2/HEAD/s11/frontend/package.json -------------------------------------------------------------------------------- /s11/frontend/test/wallet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomw1808/truffle_eth_class2/HEAD/s11/frontend/test/wallet.js -------------------------------------------------------------------------------- /s11/frontend/truffle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomw1808/truffle_eth_class2/HEAD/s11/frontend/truffle.js -------------------------------------------------------------------------------- /s11/frontend/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomw1808/truffle_eth_class2/HEAD/s11/frontend/webpack.config.js -------------------------------------------------------------------------------- /s11/intro.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomw1808/truffle_eth_class2/HEAD/s11/intro.pptx -------------------------------------------------------------------------------- /s11/l02-intro-truffle/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomw1808/truffle_eth_class2/HEAD/s11/l02-intro-truffle/README.md -------------------------------------------------------------------------------- /s11/l04-our-wallet/ourWallet.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomw1808/truffle_eth_class2/HEAD/s11/l04-our-wallet/ourWallet.sol -------------------------------------------------------------------------------- /s11/l06-testing-our-wallet/contracts/Migrations.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomw1808/truffle_eth_class2/HEAD/s11/l06-testing-our-wallet/contracts/Migrations.sol -------------------------------------------------------------------------------- /s11/l06-testing-our-wallet/contracts/MyWallet.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomw1808/truffle_eth_class2/HEAD/s11/l06-testing-our-wallet/contracts/MyWallet.sol -------------------------------------------------------------------------------- /s11/l06-testing-our-wallet/contracts/mortal.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomw1808/truffle_eth_class2/HEAD/s11/l06-testing-our-wallet/contracts/mortal.sol -------------------------------------------------------------------------------- /s11/l06-testing-our-wallet/contracts/owned.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomw1808/truffle_eth_class2/HEAD/s11/l06-testing-our-wallet/contracts/owned.sol -------------------------------------------------------------------------------- /s11/l06-testing-our-wallet/migrations/1_initial_migration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomw1808/truffle_eth_class2/HEAD/s11/l06-testing-our-wallet/migrations/1_initial_migration.js -------------------------------------------------------------------------------- /s11/l06-testing-our-wallet/migrations/2_deploy_contracts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomw1808/truffle_eth_class2/HEAD/s11/l06-testing-our-wallet/migrations/2_deploy_contracts.js -------------------------------------------------------------------------------- /s11/l06-testing-our-wallet/test/wallet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomw1808/truffle_eth_class2/HEAD/s11/l06-testing-our-wallet/test/wallet.js -------------------------------------------------------------------------------- /s11/l06-testing-our-wallet/truffle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomw1808/truffle_eth_class2/HEAD/s11/l06-testing-our-wallet/truffle.js -------------------------------------------------------------------------------- /s11/l08-simple-frontend/.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ["env"] 3 | } 4 | -------------------------------------------------------------------------------- /s11/l08-simple-frontend/.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomw1808/truffle_eth_class2/HEAD/s11/l08-simple-frontend/.eslintignore -------------------------------------------------------------------------------- /s11/l08-simple-frontend/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomw1808/truffle_eth_class2/HEAD/s11/l08-simple-frontend/.eslintrc -------------------------------------------------------------------------------- /s11/l08-simple-frontend/.gitignore: -------------------------------------------------------------------------------- 1 | build 2 | node_modules 3 | yarn-error.log 4 | -------------------------------------------------------------------------------- /s11/l08-simple-frontend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomw1808/truffle_eth_class2/HEAD/s11/l08-simple-frontend/README.md -------------------------------------------------------------------------------- /s11/l08-simple-frontend/app/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomw1808/truffle_eth_class2/HEAD/s11/l08-simple-frontend/app/index.html -------------------------------------------------------------------------------- /s11/l08-simple-frontend/app/javascripts/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomw1808/truffle_eth_class2/HEAD/s11/l08-simple-frontend/app/javascripts/app.js -------------------------------------------------------------------------------- /s11/l08-simple-frontend/app/stylesheets/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomw1808/truffle_eth_class2/HEAD/s11/l08-simple-frontend/app/stylesheets/app.css -------------------------------------------------------------------------------- /s11/l08-simple-frontend/contracts/Migrations.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomw1808/truffle_eth_class2/HEAD/s11/l08-simple-frontend/contracts/Migrations.sol -------------------------------------------------------------------------------- /s11/l08-simple-frontend/contracts/MyWallet.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomw1808/truffle_eth_class2/HEAD/s11/l08-simple-frontend/contracts/MyWallet.sol -------------------------------------------------------------------------------- /s11/l08-simple-frontend/contracts/mortal.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomw1808/truffle_eth_class2/HEAD/s11/l08-simple-frontend/contracts/mortal.sol -------------------------------------------------------------------------------- /s11/l08-simple-frontend/contracts/owned.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomw1808/truffle_eth_class2/HEAD/s11/l08-simple-frontend/contracts/owned.sol -------------------------------------------------------------------------------- /s11/l08-simple-frontend/migrations/1_initial_migration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomw1808/truffle_eth_class2/HEAD/s11/l08-simple-frontend/migrations/1_initial_migration.js -------------------------------------------------------------------------------- /s11/l08-simple-frontend/migrations/2_deploy_contracts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomw1808/truffle_eth_class2/HEAD/s11/l08-simple-frontend/migrations/2_deploy_contracts.js -------------------------------------------------------------------------------- /s11/l08-simple-frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomw1808/truffle_eth_class2/HEAD/s11/l08-simple-frontend/package.json -------------------------------------------------------------------------------- /s11/l08-simple-frontend/test/wallet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomw1808/truffle_eth_class2/HEAD/s11/l08-simple-frontend/test/wallet.js -------------------------------------------------------------------------------- /s11/l08-simple-frontend/truffle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomw1808/truffle_eth_class2/HEAD/s11/l08-simple-frontend/truffle.js -------------------------------------------------------------------------------- /s11/l08-simple-frontend/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomw1808/truffle_eth_class2/HEAD/s11/l08-simple-frontend/webpack.config.js -------------------------------------------------------------------------------- /s11/l10-we-add-events/.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ["env"] 3 | } 4 | -------------------------------------------------------------------------------- /s11/l10-we-add-events/.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomw1808/truffle_eth_class2/HEAD/s11/l10-we-add-events/.eslintignore -------------------------------------------------------------------------------- /s11/l10-we-add-events/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomw1808/truffle_eth_class2/HEAD/s11/l10-we-add-events/.eslintrc -------------------------------------------------------------------------------- /s11/l10-we-add-events/.gitignore: -------------------------------------------------------------------------------- 1 | build 2 | node_modules 3 | yarn-error.log 4 | -------------------------------------------------------------------------------- /s11/l10-we-add-events/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomw1808/truffle_eth_class2/HEAD/s11/l10-we-add-events/README.md -------------------------------------------------------------------------------- /s11/l10-we-add-events/app/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomw1808/truffle_eth_class2/HEAD/s11/l10-we-add-events/app/index.html -------------------------------------------------------------------------------- /s11/l10-we-add-events/app/javascripts/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomw1808/truffle_eth_class2/HEAD/s11/l10-we-add-events/app/javascripts/app.js -------------------------------------------------------------------------------- /s11/l10-we-add-events/app/stylesheets/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomw1808/truffle_eth_class2/HEAD/s11/l10-we-add-events/app/stylesheets/app.css -------------------------------------------------------------------------------- /s11/l10-we-add-events/contracts/Migrations.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomw1808/truffle_eth_class2/HEAD/s11/l10-we-add-events/contracts/Migrations.sol -------------------------------------------------------------------------------- /s11/l10-we-add-events/contracts/MyWallet.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomw1808/truffle_eth_class2/HEAD/s11/l10-we-add-events/contracts/MyWallet.sol -------------------------------------------------------------------------------- /s11/l10-we-add-events/contracts/mortal.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomw1808/truffle_eth_class2/HEAD/s11/l10-we-add-events/contracts/mortal.sol -------------------------------------------------------------------------------- /s11/l10-we-add-events/contracts/owned.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomw1808/truffle_eth_class2/HEAD/s11/l10-we-add-events/contracts/owned.sol -------------------------------------------------------------------------------- /s11/l10-we-add-events/migrations/1_initial_migration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomw1808/truffle_eth_class2/HEAD/s11/l10-we-add-events/migrations/1_initial_migration.js -------------------------------------------------------------------------------- /s11/l10-we-add-events/migrations/2_deploy_contracts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomw1808/truffle_eth_class2/HEAD/s11/l10-we-add-events/migrations/2_deploy_contracts.js -------------------------------------------------------------------------------- /s11/l10-we-add-events/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomw1808/truffle_eth_class2/HEAD/s11/l10-we-add-events/package.json -------------------------------------------------------------------------------- /s11/l10-we-add-events/test/wallet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomw1808/truffle_eth_class2/HEAD/s11/l10-we-add-events/test/wallet.js -------------------------------------------------------------------------------- /s11/l10-we-add-events/truffle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomw1808/truffle_eth_class2/HEAD/s11/l10-we-add-events/truffle.js -------------------------------------------------------------------------------- /s11/l10-we-add-events/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomw1808/truffle_eth_class2/HEAD/s11/l10-we-add-events/webpack.config.js -------------------------------------------------------------------------------- /s12/CVExtender.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomw1808/truffle_eth_class2/HEAD/s12/CVExtender.sol -------------------------------------------------------------------------------- /s12/Example.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomw1808/truffle_eth_class2/HEAD/s12/Example.sol -------------------------------------------------------------------------------- /s12/Final Course Project.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomw1808/truffle_eth_class2/HEAD/s12/Final Course Project.pptx -------------------------------------------------------------------------------- /s12/Final Course Project2.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomw1808/truffle_eth_class2/HEAD/s12/Final Course Project2.pptx -------------------------------------------------------------------------------- /s12/cvindex/.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ["env"] 3 | } 4 | -------------------------------------------------------------------------------- /s12/cvindex/.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomw1808/truffle_eth_class2/HEAD/s12/cvindex/.eslintignore -------------------------------------------------------------------------------- /s12/cvindex/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomw1808/truffle_eth_class2/HEAD/s12/cvindex/.eslintrc -------------------------------------------------------------------------------- /s12/cvindex/.gitignore: -------------------------------------------------------------------------------- 1 | build 2 | node_modules 3 | yarn-error.log 4 | -------------------------------------------------------------------------------- /s12/cvindex/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomw1808/truffle_eth_class2/HEAD/s12/cvindex/README.md -------------------------------------------------------------------------------- /s12/cvindex/app/addcv.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomw1808/truffle_eth_class2/HEAD/s12/cvindex/app/addcv.html -------------------------------------------------------------------------------- /s12/cvindex/app/admin.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomw1808/truffle_eth_class2/HEAD/s12/cvindex/app/admin.html -------------------------------------------------------------------------------- /s12/cvindex/app/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomw1808/truffle_eth_class2/HEAD/s12/cvindex/app/index.html -------------------------------------------------------------------------------- /s12/cvindex/app/javascripts/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomw1808/truffle_eth_class2/HEAD/s12/cvindex/app/javascripts/app.js -------------------------------------------------------------------------------- /s12/cvindex/app/stylesheets/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomw1808/truffle_eth_class2/HEAD/s12/cvindex/app/stylesheets/app.css -------------------------------------------------------------------------------- /s12/cvindex/contracts/CVExtender.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomw1808/truffle_eth_class2/HEAD/s12/cvindex/contracts/CVExtender.sol -------------------------------------------------------------------------------- /s12/cvindex/contracts/CVIndex.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomw1808/truffle_eth_class2/HEAD/s12/cvindex/contracts/CVIndex.sol -------------------------------------------------------------------------------- /s12/cvindex/contracts/Migrations.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomw1808/truffle_eth_class2/HEAD/s12/cvindex/contracts/Migrations.sol -------------------------------------------------------------------------------- /s12/cvindex/contracts/MyExampleContract.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomw1808/truffle_eth_class2/HEAD/s12/cvindex/contracts/MyExampleContract.sol -------------------------------------------------------------------------------- /s12/cvindex/migrations/1_initial_migration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomw1808/truffle_eth_class2/HEAD/s12/cvindex/migrations/1_initial_migration.js -------------------------------------------------------------------------------- /s12/cvindex/migrations/2_deploy_contracts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomw1808/truffle_eth_class2/HEAD/s12/cvindex/migrations/2_deploy_contracts.js -------------------------------------------------------------------------------- /s12/cvindex/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomw1808/truffle_eth_class2/HEAD/s12/cvindex/package.json -------------------------------------------------------------------------------- /s12/cvindex/test/cvindex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomw1808/truffle_eth_class2/HEAD/s12/cvindex/test/cvindex.js -------------------------------------------------------------------------------- /s12/cvindex/truffle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomw1808/truffle_eth_class2/HEAD/s12/cvindex/truffle.js -------------------------------------------------------------------------------- /s12/cvindex/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomw1808/truffle_eth_class2/HEAD/s12/cvindex/webpack.config.js --------------------------------------------------------------------------------