├── .gitignore ├── dApp_dev_videos ├── .gitignore ├── Learn_The_Solidity_Basics_GIMP.xcf └── Rock_Paper_Scissors │ ├── build │ └── contracts │ │ ├── Migrations.json │ │ └── Rps.json │ ├── contracts │ ├── Migrations.sol │ ├── Rps.sol │ └── RpsSafe.sol │ ├── migrations │ ├── 1_initial_migration.js │ └── 2_deploy_contracts.js │ ├── test │ └── rps_test.js │ └── truffle.js ├── debugging with remix the football contract.txt └── truffle ├── Blank-Truffle-Proj ├── contracts │ ├── Blank.sol │ └── Migrations.sol ├── migrations │ ├── 1_initial_migration.js │ └── 2_deploy_contracts.js ├── test │ ├── TestBlank.sol │ └── blank.js └── truffle.js ├── Testing_Outside ├── Untitled-1.sol ├── assert.sol ├── flight-delay-dapp.sol └── solidity-strings.sol ├── first-truffle-proj ├── build │ └── contracts │ │ ├── ConvertLib.json │ │ ├── MetaCoin.json │ │ └── Migrations.json ├── contracts │ ├── ConvertLib.sol │ ├── MetaCoin.sol │ └── Migrations.sol ├── davidNotes.txt ├── migrations │ ├── 1_initial_migration.js │ └── 2_deploy_contracts.js ├── test │ ├── TestMetacoin.sol │ └── metacoin.js └── truffle.js ├── football-pickem-dapp ├── contracts │ ├── FootballPickemContract(newVar)s.sol │ ├── FootballPickemContract.sol │ ├── Migrations.sol │ ├── SingleGameContract-Cleaned.sol │ ├── SingleGameContract.sol │ ├── finalupdateRemix.sol │ ├── fixedlines.sol │ └── updateWithRemix.sol ├── migrations │ ├── 1_initial_migration.js │ └── 2_deploy_contracts.js ├── test │ ├── TestFootballPickemContract.sol │ └── javascript_test_pickem.js └── truffle.js ├── patreon ├── PatreonFactory(accidently-updated-old-version).sol ├── pateron_old.sol ├── patreon_current.sol └── patreon_oldest.sol ├── patreon_deployed_to_heroku └── truffle-boxes-patreon │ ├── .gitignore │ ├── box-img-lg.png │ ├── box-img-sm.png │ ├── build │ └── contracts │ │ ├── Migrations.json │ │ ├── PatreonFactory.json │ │ ├── SimpleStorage.json │ │ └── SinglePatreon.json │ ├── config │ ├── env.js │ ├── jest │ │ ├── cssTransform.js │ │ └── fileTransform.js │ ├── paths.js │ ├── polyfills.js │ ├── webpack.config.dev.js │ └── webpack.config.prod.js │ ├── contracts │ ├── Migrations.sol │ └── PatreonFactory.sol │ ├── migrations │ ├── 1_initial_migration.js │ └── 2_deploy_contracts.js │ ├── package-lock.json │ ├── package.json │ ├── public │ ├── favicon.ico │ └── index.html │ ├── scripts │ ├── build.js │ ├── start.js │ └── test.js │ ├── src │ ├── App.css │ ├── App.js │ ├── App.test.js │ ├── css │ │ ├── open-sans.css │ │ ├── oswald.css │ │ └── pure-min.css │ ├── fonts │ │ ├── Open-Sans-regular │ │ │ ├── LICENSE.txt │ │ │ ├── Open-Sans-regular.eot │ │ │ ├── Open-Sans-regular.svg │ │ │ ├── Open-Sans-regular.ttf │ │ │ ├── Open-Sans-regular.woff │ │ │ └── Open-Sans-regular.woff2 │ │ ├── Oswald-300 │ │ │ ├── LICENSE.txt │ │ │ ├── Oswald-300.eot │ │ │ ├── Oswald-300.svg │ │ │ ├── Oswald-300.ttf │ │ │ ├── Oswald-300.woff │ │ │ └── Oswald-300.woff2 │ │ └── Oswald-regular │ │ │ ├── LICENSE.txt │ │ │ ├── Oswald-regular.eot │ │ │ ├── Oswald-regular.svg │ │ │ ├── Oswald-regular.ttf │ │ │ ├── Oswald-regular.woff │ │ │ └── Oswald-regular.woff2 │ ├── index.css │ ├── index.js │ └── utils │ │ └── getWeb3.js │ ├── static.json │ ├── test │ ├── patreonFactory.js │ └── singlePatreonTest.js │ ├── test_contracts │ ├── PatreonFactory_TestRPC_code.sol │ └── app_testrpc.js │ └── truffle.js ├── send_Ether_Direct_To_Friend ├── App.js └── what-is-this.txt ├── testnet-ethbridge-football-dapp ├── build │ └── contracts │ │ ├── Migrations.json │ │ ├── OraclizeAddrResolverI.json │ │ ├── OraclizeI.json │ │ ├── WolframAlpha.json │ │ └── usingOraclize.json ├── contracts │ ├── Migrations.sol │ ├── WolframAlpha.sol │ └── usingOraclize.sol ├── migrations │ ├── 1_initial_migration.js │ └── 2_deploy_contracts.js ├── test │ ├── TestWolfram.sol │ └── wolfram.js └── truffle.js ├── truffle-decypher-coin ├── build │ └── contracts │ │ ├── ConvertLib.json │ │ ├── DecypherCoin.json │ │ └── Migrations.json ├── contracts │ ├── ConvertLib.sol │ ├── DecypherCoin.sol │ └── Migrations.sol ├── migrations │ ├── 1_initial_migration.js │ └── 2_deploy_contracts.js ├── test │ ├── Decyphercoin.js │ └── TestDecypherCoin.sol └── truffle.js └── truffle-other-tokens └── Tokens-master ├── .gitignore ├── LICENSE ├── README.md └── Token_Contracts ├── build └── contracts │ ├── HumanStandardToken.json │ ├── HumanStandardTokenFactory.json │ ├── SampleRecipientSuccess.json │ ├── SampleRecipientThrow.json │ ├── StandardToken.json │ ├── Token.json │ └── TokenTester.json ├── contracts ├── HumanStandardToken.abi.json ├── HumanStandardToken.sol ├── HumanStandardTokenFactory.sol ├── Migrations.sol ├── SampleRecipientSuccess.sol ├── SampleRecipientThrow.sol ├── StandardToken.sol ├── Token.sol └── TokenTester.sol ├── ethpm.json ├── migrations ├── 1_initial_migration.js └── 2_deploy_contracts.js ├── package-lock.json ├── package.json ├── test ├── humanStandardToken.js ├── humanStandardTokenFactory.js ├── standardToken.js └── tokenTester.js └── truffle.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davekay100/DApps/HEAD/.gitignore -------------------------------------------------------------------------------- /dApp_dev_videos/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davekay100/DApps/HEAD/dApp_dev_videos/.gitignore -------------------------------------------------------------------------------- /dApp_dev_videos/Learn_The_Solidity_Basics_GIMP.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davekay100/DApps/HEAD/dApp_dev_videos/Learn_The_Solidity_Basics_GIMP.xcf -------------------------------------------------------------------------------- /dApp_dev_videos/Rock_Paper_Scissors/build/contracts/Migrations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davekay100/DApps/HEAD/dApp_dev_videos/Rock_Paper_Scissors/build/contracts/Migrations.json -------------------------------------------------------------------------------- /dApp_dev_videos/Rock_Paper_Scissors/build/contracts/Rps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davekay100/DApps/HEAD/dApp_dev_videos/Rock_Paper_Scissors/build/contracts/Rps.json -------------------------------------------------------------------------------- /dApp_dev_videos/Rock_Paper_Scissors/contracts/Migrations.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davekay100/DApps/HEAD/dApp_dev_videos/Rock_Paper_Scissors/contracts/Migrations.sol -------------------------------------------------------------------------------- /dApp_dev_videos/Rock_Paper_Scissors/contracts/Rps.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davekay100/DApps/HEAD/dApp_dev_videos/Rock_Paper_Scissors/contracts/Rps.sol -------------------------------------------------------------------------------- /dApp_dev_videos/Rock_Paper_Scissors/contracts/RpsSafe.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davekay100/DApps/HEAD/dApp_dev_videos/Rock_Paper_Scissors/contracts/RpsSafe.sol -------------------------------------------------------------------------------- /dApp_dev_videos/Rock_Paper_Scissors/migrations/1_initial_migration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davekay100/DApps/HEAD/dApp_dev_videos/Rock_Paper_Scissors/migrations/1_initial_migration.js -------------------------------------------------------------------------------- /dApp_dev_videos/Rock_Paper_Scissors/migrations/2_deploy_contracts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davekay100/DApps/HEAD/dApp_dev_videos/Rock_Paper_Scissors/migrations/2_deploy_contracts.js -------------------------------------------------------------------------------- /dApp_dev_videos/Rock_Paper_Scissors/test/rps_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davekay100/DApps/HEAD/dApp_dev_videos/Rock_Paper_Scissors/test/rps_test.js -------------------------------------------------------------------------------- /dApp_dev_videos/Rock_Paper_Scissors/truffle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davekay100/DApps/HEAD/dApp_dev_videos/Rock_Paper_Scissors/truffle.js -------------------------------------------------------------------------------- /debugging with remix the football contract.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davekay100/DApps/HEAD/debugging with remix the football contract.txt -------------------------------------------------------------------------------- /truffle/Blank-Truffle-Proj/contracts/Blank.sol: -------------------------------------------------------------------------------- 1 | pragma solidity ^0.4.15; 2 | 3 | 4 | 5 | contract Blank { 6 | 7 | } 8 | -------------------------------------------------------------------------------- /truffle/Blank-Truffle-Proj/contracts/Migrations.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davekay100/DApps/HEAD/truffle/Blank-Truffle-Proj/contracts/Migrations.sol -------------------------------------------------------------------------------- /truffle/Blank-Truffle-Proj/migrations/1_initial_migration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davekay100/DApps/HEAD/truffle/Blank-Truffle-Proj/migrations/1_initial_migration.js -------------------------------------------------------------------------------- /truffle/Blank-Truffle-Proj/migrations/2_deploy_contracts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davekay100/DApps/HEAD/truffle/Blank-Truffle-Proj/migrations/2_deploy_contracts.js -------------------------------------------------------------------------------- /truffle/Blank-Truffle-Proj/test/TestBlank.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davekay100/DApps/HEAD/truffle/Blank-Truffle-Proj/test/TestBlank.sol -------------------------------------------------------------------------------- /truffle/Blank-Truffle-Proj/test/blank.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davekay100/DApps/HEAD/truffle/Blank-Truffle-Proj/test/blank.js -------------------------------------------------------------------------------- /truffle/Blank-Truffle-Proj/truffle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davekay100/DApps/HEAD/truffle/Blank-Truffle-Proj/truffle.js -------------------------------------------------------------------------------- /truffle/Testing_Outside/Untitled-1.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davekay100/DApps/HEAD/truffle/Testing_Outside/Untitled-1.sol -------------------------------------------------------------------------------- /truffle/Testing_Outside/assert.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davekay100/DApps/HEAD/truffle/Testing_Outside/assert.sol -------------------------------------------------------------------------------- /truffle/Testing_Outside/flight-delay-dapp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davekay100/DApps/HEAD/truffle/Testing_Outside/flight-delay-dapp.sol -------------------------------------------------------------------------------- /truffle/Testing_Outside/solidity-strings.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davekay100/DApps/HEAD/truffle/Testing_Outside/solidity-strings.sol -------------------------------------------------------------------------------- /truffle/first-truffle-proj/build/contracts/ConvertLib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davekay100/DApps/HEAD/truffle/first-truffle-proj/build/contracts/ConvertLib.json -------------------------------------------------------------------------------- /truffle/first-truffle-proj/build/contracts/MetaCoin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davekay100/DApps/HEAD/truffle/first-truffle-proj/build/contracts/MetaCoin.json -------------------------------------------------------------------------------- /truffle/first-truffle-proj/build/contracts/Migrations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davekay100/DApps/HEAD/truffle/first-truffle-proj/build/contracts/Migrations.json -------------------------------------------------------------------------------- /truffle/first-truffle-proj/contracts/ConvertLib.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davekay100/DApps/HEAD/truffle/first-truffle-proj/contracts/ConvertLib.sol -------------------------------------------------------------------------------- /truffle/first-truffle-proj/contracts/MetaCoin.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davekay100/DApps/HEAD/truffle/first-truffle-proj/contracts/MetaCoin.sol -------------------------------------------------------------------------------- /truffle/first-truffle-proj/contracts/Migrations.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davekay100/DApps/HEAD/truffle/first-truffle-proj/contracts/Migrations.sol -------------------------------------------------------------------------------- /truffle/first-truffle-proj/davidNotes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davekay100/DApps/HEAD/truffle/first-truffle-proj/davidNotes.txt -------------------------------------------------------------------------------- /truffle/first-truffle-proj/migrations/1_initial_migration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davekay100/DApps/HEAD/truffle/first-truffle-proj/migrations/1_initial_migration.js -------------------------------------------------------------------------------- /truffle/first-truffle-proj/migrations/2_deploy_contracts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davekay100/DApps/HEAD/truffle/first-truffle-proj/migrations/2_deploy_contracts.js -------------------------------------------------------------------------------- /truffle/first-truffle-proj/test/TestMetacoin.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davekay100/DApps/HEAD/truffle/first-truffle-proj/test/TestMetacoin.sol -------------------------------------------------------------------------------- /truffle/first-truffle-proj/test/metacoin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davekay100/DApps/HEAD/truffle/first-truffle-proj/test/metacoin.js -------------------------------------------------------------------------------- /truffle/first-truffle-proj/truffle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davekay100/DApps/HEAD/truffle/first-truffle-proj/truffle.js -------------------------------------------------------------------------------- /truffle/football-pickem-dapp/contracts/FootballPickemContract(newVar)s.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davekay100/DApps/HEAD/truffle/football-pickem-dapp/contracts/FootballPickemContract(newVar)s.sol -------------------------------------------------------------------------------- /truffle/football-pickem-dapp/contracts/FootballPickemContract.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davekay100/DApps/HEAD/truffle/football-pickem-dapp/contracts/FootballPickemContract.sol -------------------------------------------------------------------------------- /truffle/football-pickem-dapp/contracts/Migrations.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davekay100/DApps/HEAD/truffle/football-pickem-dapp/contracts/Migrations.sol -------------------------------------------------------------------------------- /truffle/football-pickem-dapp/contracts/SingleGameContract-Cleaned.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davekay100/DApps/HEAD/truffle/football-pickem-dapp/contracts/SingleGameContract-Cleaned.sol -------------------------------------------------------------------------------- /truffle/football-pickem-dapp/contracts/SingleGameContract.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davekay100/DApps/HEAD/truffle/football-pickem-dapp/contracts/SingleGameContract.sol -------------------------------------------------------------------------------- /truffle/football-pickem-dapp/contracts/finalupdateRemix.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davekay100/DApps/HEAD/truffle/football-pickem-dapp/contracts/finalupdateRemix.sol -------------------------------------------------------------------------------- /truffle/football-pickem-dapp/contracts/fixedlines.sol: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /truffle/football-pickem-dapp/contracts/updateWithRemix.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davekay100/DApps/HEAD/truffle/football-pickem-dapp/contracts/updateWithRemix.sol -------------------------------------------------------------------------------- /truffle/football-pickem-dapp/migrations/1_initial_migration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davekay100/DApps/HEAD/truffle/football-pickem-dapp/migrations/1_initial_migration.js -------------------------------------------------------------------------------- /truffle/football-pickem-dapp/migrations/2_deploy_contracts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davekay100/DApps/HEAD/truffle/football-pickem-dapp/migrations/2_deploy_contracts.js -------------------------------------------------------------------------------- /truffle/football-pickem-dapp/test/TestFootballPickemContract.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davekay100/DApps/HEAD/truffle/football-pickem-dapp/test/TestFootballPickemContract.sol -------------------------------------------------------------------------------- /truffle/football-pickem-dapp/test/javascript_test_pickem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davekay100/DApps/HEAD/truffle/football-pickem-dapp/test/javascript_test_pickem.js -------------------------------------------------------------------------------- /truffle/football-pickem-dapp/truffle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davekay100/DApps/HEAD/truffle/football-pickem-dapp/truffle.js -------------------------------------------------------------------------------- /truffle/patreon/PatreonFactory(accidently-updated-old-version).sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davekay100/DApps/HEAD/truffle/patreon/PatreonFactory(accidently-updated-old-version).sol -------------------------------------------------------------------------------- /truffle/patreon/pateron_old.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davekay100/DApps/HEAD/truffle/patreon/pateron_old.sol -------------------------------------------------------------------------------- /truffle/patreon/patreon_current.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davekay100/DApps/HEAD/truffle/patreon/patreon_current.sol -------------------------------------------------------------------------------- /truffle/patreon/patreon_oldest.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davekay100/DApps/HEAD/truffle/patreon/patreon_oldest.sol -------------------------------------------------------------------------------- /truffle/patreon_deployed_to_heroku/truffle-boxes-patreon/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davekay100/DApps/HEAD/truffle/patreon_deployed_to_heroku/truffle-boxes-patreon/.gitignore -------------------------------------------------------------------------------- /truffle/patreon_deployed_to_heroku/truffle-boxes-patreon/box-img-lg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davekay100/DApps/HEAD/truffle/patreon_deployed_to_heroku/truffle-boxes-patreon/box-img-lg.png -------------------------------------------------------------------------------- /truffle/patreon_deployed_to_heroku/truffle-boxes-patreon/box-img-sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davekay100/DApps/HEAD/truffle/patreon_deployed_to_heroku/truffle-boxes-patreon/box-img-sm.png -------------------------------------------------------------------------------- /truffle/patreon_deployed_to_heroku/truffle-boxes-patreon/build/contracts/Migrations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davekay100/DApps/HEAD/truffle/patreon_deployed_to_heroku/truffle-boxes-patreon/build/contracts/Migrations.json -------------------------------------------------------------------------------- /truffle/patreon_deployed_to_heroku/truffle-boxes-patreon/build/contracts/PatreonFactory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davekay100/DApps/HEAD/truffle/patreon_deployed_to_heroku/truffle-boxes-patreon/build/contracts/PatreonFactory.json -------------------------------------------------------------------------------- /truffle/patreon_deployed_to_heroku/truffle-boxes-patreon/build/contracts/SimpleStorage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davekay100/DApps/HEAD/truffle/patreon_deployed_to_heroku/truffle-boxes-patreon/build/contracts/SimpleStorage.json -------------------------------------------------------------------------------- /truffle/patreon_deployed_to_heroku/truffle-boxes-patreon/build/contracts/SinglePatreon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davekay100/DApps/HEAD/truffle/patreon_deployed_to_heroku/truffle-boxes-patreon/build/contracts/SinglePatreon.json -------------------------------------------------------------------------------- /truffle/patreon_deployed_to_heroku/truffle-boxes-patreon/config/env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davekay100/DApps/HEAD/truffle/patreon_deployed_to_heroku/truffle-boxes-patreon/config/env.js -------------------------------------------------------------------------------- /truffle/patreon_deployed_to_heroku/truffle-boxes-patreon/config/jest/cssTransform.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davekay100/DApps/HEAD/truffle/patreon_deployed_to_heroku/truffle-boxes-patreon/config/jest/cssTransform.js -------------------------------------------------------------------------------- /truffle/patreon_deployed_to_heroku/truffle-boxes-patreon/config/jest/fileTransform.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davekay100/DApps/HEAD/truffle/patreon_deployed_to_heroku/truffle-boxes-patreon/config/jest/fileTransform.js -------------------------------------------------------------------------------- /truffle/patreon_deployed_to_heroku/truffle-boxes-patreon/config/paths.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davekay100/DApps/HEAD/truffle/patreon_deployed_to_heroku/truffle-boxes-patreon/config/paths.js -------------------------------------------------------------------------------- /truffle/patreon_deployed_to_heroku/truffle-boxes-patreon/config/polyfills.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davekay100/DApps/HEAD/truffle/patreon_deployed_to_heroku/truffle-boxes-patreon/config/polyfills.js -------------------------------------------------------------------------------- /truffle/patreon_deployed_to_heroku/truffle-boxes-patreon/config/webpack.config.dev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davekay100/DApps/HEAD/truffle/patreon_deployed_to_heroku/truffle-boxes-patreon/config/webpack.config.dev.js -------------------------------------------------------------------------------- /truffle/patreon_deployed_to_heroku/truffle-boxes-patreon/config/webpack.config.prod.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davekay100/DApps/HEAD/truffle/patreon_deployed_to_heroku/truffle-boxes-patreon/config/webpack.config.prod.js -------------------------------------------------------------------------------- /truffle/patreon_deployed_to_heroku/truffle-boxes-patreon/contracts/Migrations.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davekay100/DApps/HEAD/truffle/patreon_deployed_to_heroku/truffle-boxes-patreon/contracts/Migrations.sol -------------------------------------------------------------------------------- /truffle/patreon_deployed_to_heroku/truffle-boxes-patreon/contracts/PatreonFactory.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davekay100/DApps/HEAD/truffle/patreon_deployed_to_heroku/truffle-boxes-patreon/contracts/PatreonFactory.sol -------------------------------------------------------------------------------- /truffle/patreon_deployed_to_heroku/truffle-boxes-patreon/migrations/1_initial_migration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davekay100/DApps/HEAD/truffle/patreon_deployed_to_heroku/truffle-boxes-patreon/migrations/1_initial_migration.js -------------------------------------------------------------------------------- /truffle/patreon_deployed_to_heroku/truffle-boxes-patreon/migrations/2_deploy_contracts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davekay100/DApps/HEAD/truffle/patreon_deployed_to_heroku/truffle-boxes-patreon/migrations/2_deploy_contracts.js -------------------------------------------------------------------------------- /truffle/patreon_deployed_to_heroku/truffle-boxes-patreon/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davekay100/DApps/HEAD/truffle/patreon_deployed_to_heroku/truffle-boxes-patreon/package-lock.json -------------------------------------------------------------------------------- /truffle/patreon_deployed_to_heroku/truffle-boxes-patreon/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davekay100/DApps/HEAD/truffle/patreon_deployed_to_heroku/truffle-boxes-patreon/package.json -------------------------------------------------------------------------------- /truffle/patreon_deployed_to_heroku/truffle-boxes-patreon/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davekay100/DApps/HEAD/truffle/patreon_deployed_to_heroku/truffle-boxes-patreon/public/favicon.ico -------------------------------------------------------------------------------- /truffle/patreon_deployed_to_heroku/truffle-boxes-patreon/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davekay100/DApps/HEAD/truffle/patreon_deployed_to_heroku/truffle-boxes-patreon/public/index.html -------------------------------------------------------------------------------- /truffle/patreon_deployed_to_heroku/truffle-boxes-patreon/scripts/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davekay100/DApps/HEAD/truffle/patreon_deployed_to_heroku/truffle-boxes-patreon/scripts/build.js -------------------------------------------------------------------------------- /truffle/patreon_deployed_to_heroku/truffle-boxes-patreon/scripts/start.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davekay100/DApps/HEAD/truffle/patreon_deployed_to_heroku/truffle-boxes-patreon/scripts/start.js -------------------------------------------------------------------------------- /truffle/patreon_deployed_to_heroku/truffle-boxes-patreon/scripts/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davekay100/DApps/HEAD/truffle/patreon_deployed_to_heroku/truffle-boxes-patreon/scripts/test.js -------------------------------------------------------------------------------- /truffle/patreon_deployed_to_heroku/truffle-boxes-patreon/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davekay100/DApps/HEAD/truffle/patreon_deployed_to_heroku/truffle-boxes-patreon/src/App.css -------------------------------------------------------------------------------- /truffle/patreon_deployed_to_heroku/truffle-boxes-patreon/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davekay100/DApps/HEAD/truffle/patreon_deployed_to_heroku/truffle-boxes-patreon/src/App.js -------------------------------------------------------------------------------- /truffle/patreon_deployed_to_heroku/truffle-boxes-patreon/src/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davekay100/DApps/HEAD/truffle/patreon_deployed_to_heroku/truffle-boxes-patreon/src/App.test.js -------------------------------------------------------------------------------- /truffle/patreon_deployed_to_heroku/truffle-boxes-patreon/src/css/open-sans.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davekay100/DApps/HEAD/truffle/patreon_deployed_to_heroku/truffle-boxes-patreon/src/css/open-sans.css -------------------------------------------------------------------------------- /truffle/patreon_deployed_to_heroku/truffle-boxes-patreon/src/css/oswald.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davekay100/DApps/HEAD/truffle/patreon_deployed_to_heroku/truffle-boxes-patreon/src/css/oswald.css -------------------------------------------------------------------------------- /truffle/patreon_deployed_to_heroku/truffle-boxes-patreon/src/css/pure-min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davekay100/DApps/HEAD/truffle/patreon_deployed_to_heroku/truffle-boxes-patreon/src/css/pure-min.css -------------------------------------------------------------------------------- /truffle/patreon_deployed_to_heroku/truffle-boxes-patreon/src/fonts/Open-Sans-regular/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davekay100/DApps/HEAD/truffle/patreon_deployed_to_heroku/truffle-boxes-patreon/src/fonts/Open-Sans-regular/LICENSE.txt -------------------------------------------------------------------------------- /truffle/patreon_deployed_to_heroku/truffle-boxes-patreon/src/fonts/Open-Sans-regular/Open-Sans-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davekay100/DApps/HEAD/truffle/patreon_deployed_to_heroku/truffle-boxes-patreon/src/fonts/Open-Sans-regular/Open-Sans-regular.eot -------------------------------------------------------------------------------- /truffle/patreon_deployed_to_heroku/truffle-boxes-patreon/src/fonts/Open-Sans-regular/Open-Sans-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davekay100/DApps/HEAD/truffle/patreon_deployed_to_heroku/truffle-boxes-patreon/src/fonts/Open-Sans-regular/Open-Sans-regular.svg -------------------------------------------------------------------------------- /truffle/patreon_deployed_to_heroku/truffle-boxes-patreon/src/fonts/Open-Sans-regular/Open-Sans-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davekay100/DApps/HEAD/truffle/patreon_deployed_to_heroku/truffle-boxes-patreon/src/fonts/Open-Sans-regular/Open-Sans-regular.ttf -------------------------------------------------------------------------------- /truffle/patreon_deployed_to_heroku/truffle-boxes-patreon/src/fonts/Open-Sans-regular/Open-Sans-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davekay100/DApps/HEAD/truffle/patreon_deployed_to_heroku/truffle-boxes-patreon/src/fonts/Open-Sans-regular/Open-Sans-regular.woff -------------------------------------------------------------------------------- /truffle/patreon_deployed_to_heroku/truffle-boxes-patreon/src/fonts/Open-Sans-regular/Open-Sans-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davekay100/DApps/HEAD/truffle/patreon_deployed_to_heroku/truffle-boxes-patreon/src/fonts/Open-Sans-regular/Open-Sans-regular.woff2 -------------------------------------------------------------------------------- /truffle/patreon_deployed_to_heroku/truffle-boxes-patreon/src/fonts/Oswald-300/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davekay100/DApps/HEAD/truffle/patreon_deployed_to_heroku/truffle-boxes-patreon/src/fonts/Oswald-300/LICENSE.txt -------------------------------------------------------------------------------- /truffle/patreon_deployed_to_heroku/truffle-boxes-patreon/src/fonts/Oswald-300/Oswald-300.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davekay100/DApps/HEAD/truffle/patreon_deployed_to_heroku/truffle-boxes-patreon/src/fonts/Oswald-300/Oswald-300.eot -------------------------------------------------------------------------------- /truffle/patreon_deployed_to_heroku/truffle-boxes-patreon/src/fonts/Oswald-300/Oswald-300.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davekay100/DApps/HEAD/truffle/patreon_deployed_to_heroku/truffle-boxes-patreon/src/fonts/Oswald-300/Oswald-300.svg -------------------------------------------------------------------------------- /truffle/patreon_deployed_to_heroku/truffle-boxes-patreon/src/fonts/Oswald-300/Oswald-300.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davekay100/DApps/HEAD/truffle/patreon_deployed_to_heroku/truffle-boxes-patreon/src/fonts/Oswald-300/Oswald-300.ttf -------------------------------------------------------------------------------- /truffle/patreon_deployed_to_heroku/truffle-boxes-patreon/src/fonts/Oswald-300/Oswald-300.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davekay100/DApps/HEAD/truffle/patreon_deployed_to_heroku/truffle-boxes-patreon/src/fonts/Oswald-300/Oswald-300.woff -------------------------------------------------------------------------------- /truffle/patreon_deployed_to_heroku/truffle-boxes-patreon/src/fonts/Oswald-300/Oswald-300.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davekay100/DApps/HEAD/truffle/patreon_deployed_to_heroku/truffle-boxes-patreon/src/fonts/Oswald-300/Oswald-300.woff2 -------------------------------------------------------------------------------- /truffle/patreon_deployed_to_heroku/truffle-boxes-patreon/src/fonts/Oswald-regular/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davekay100/DApps/HEAD/truffle/patreon_deployed_to_heroku/truffle-boxes-patreon/src/fonts/Oswald-regular/LICENSE.txt -------------------------------------------------------------------------------- /truffle/patreon_deployed_to_heroku/truffle-boxes-patreon/src/fonts/Oswald-regular/Oswald-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davekay100/DApps/HEAD/truffle/patreon_deployed_to_heroku/truffle-boxes-patreon/src/fonts/Oswald-regular/Oswald-regular.eot -------------------------------------------------------------------------------- /truffle/patreon_deployed_to_heroku/truffle-boxes-patreon/src/fonts/Oswald-regular/Oswald-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davekay100/DApps/HEAD/truffle/patreon_deployed_to_heroku/truffle-boxes-patreon/src/fonts/Oswald-regular/Oswald-regular.svg -------------------------------------------------------------------------------- /truffle/patreon_deployed_to_heroku/truffle-boxes-patreon/src/fonts/Oswald-regular/Oswald-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davekay100/DApps/HEAD/truffle/patreon_deployed_to_heroku/truffle-boxes-patreon/src/fonts/Oswald-regular/Oswald-regular.ttf -------------------------------------------------------------------------------- /truffle/patreon_deployed_to_heroku/truffle-boxes-patreon/src/fonts/Oswald-regular/Oswald-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davekay100/DApps/HEAD/truffle/patreon_deployed_to_heroku/truffle-boxes-patreon/src/fonts/Oswald-regular/Oswald-regular.woff -------------------------------------------------------------------------------- /truffle/patreon_deployed_to_heroku/truffle-boxes-patreon/src/fonts/Oswald-regular/Oswald-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davekay100/DApps/HEAD/truffle/patreon_deployed_to_heroku/truffle-boxes-patreon/src/fonts/Oswald-regular/Oswald-regular.woff2 -------------------------------------------------------------------------------- /truffle/patreon_deployed_to_heroku/truffle-boxes-patreon/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davekay100/DApps/HEAD/truffle/patreon_deployed_to_heroku/truffle-boxes-patreon/src/index.css -------------------------------------------------------------------------------- /truffle/patreon_deployed_to_heroku/truffle-boxes-patreon/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davekay100/DApps/HEAD/truffle/patreon_deployed_to_heroku/truffle-boxes-patreon/src/index.js -------------------------------------------------------------------------------- /truffle/patreon_deployed_to_heroku/truffle-boxes-patreon/src/utils/getWeb3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davekay100/DApps/HEAD/truffle/patreon_deployed_to_heroku/truffle-boxes-patreon/src/utils/getWeb3.js -------------------------------------------------------------------------------- /truffle/patreon_deployed_to_heroku/truffle-boxes-patreon/static.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davekay100/DApps/HEAD/truffle/patreon_deployed_to_heroku/truffle-boxes-patreon/static.json -------------------------------------------------------------------------------- /truffle/patreon_deployed_to_heroku/truffle-boxes-patreon/test/patreonFactory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davekay100/DApps/HEAD/truffle/patreon_deployed_to_heroku/truffle-boxes-patreon/test/patreonFactory.js -------------------------------------------------------------------------------- /truffle/patreon_deployed_to_heroku/truffle-boxes-patreon/test/singlePatreonTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davekay100/DApps/HEAD/truffle/patreon_deployed_to_heroku/truffle-boxes-patreon/test/singlePatreonTest.js -------------------------------------------------------------------------------- /truffle/patreon_deployed_to_heroku/truffle-boxes-patreon/test_contracts/PatreonFactory_TestRPC_code.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davekay100/DApps/HEAD/truffle/patreon_deployed_to_heroku/truffle-boxes-patreon/test_contracts/PatreonFactory_TestRPC_code.sol -------------------------------------------------------------------------------- /truffle/patreon_deployed_to_heroku/truffle-boxes-patreon/test_contracts/app_testrpc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davekay100/DApps/HEAD/truffle/patreon_deployed_to_heroku/truffle-boxes-patreon/test_contracts/app_testrpc.js -------------------------------------------------------------------------------- /truffle/patreon_deployed_to_heroku/truffle-boxes-patreon/truffle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davekay100/DApps/HEAD/truffle/patreon_deployed_to_heroku/truffle-boxes-patreon/truffle.js -------------------------------------------------------------------------------- /truffle/send_Ether_Direct_To_Friend/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davekay100/DApps/HEAD/truffle/send_Ether_Direct_To_Friend/App.js -------------------------------------------------------------------------------- /truffle/send_Ether_Direct_To_Friend/what-is-this.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davekay100/DApps/HEAD/truffle/send_Ether_Direct_To_Friend/what-is-this.txt -------------------------------------------------------------------------------- /truffle/testnet-ethbridge-football-dapp/build/contracts/Migrations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davekay100/DApps/HEAD/truffle/testnet-ethbridge-football-dapp/build/contracts/Migrations.json -------------------------------------------------------------------------------- /truffle/testnet-ethbridge-football-dapp/build/contracts/OraclizeAddrResolverI.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davekay100/DApps/HEAD/truffle/testnet-ethbridge-football-dapp/build/contracts/OraclizeAddrResolverI.json -------------------------------------------------------------------------------- /truffle/testnet-ethbridge-football-dapp/build/contracts/OraclizeI.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davekay100/DApps/HEAD/truffle/testnet-ethbridge-football-dapp/build/contracts/OraclizeI.json -------------------------------------------------------------------------------- /truffle/testnet-ethbridge-football-dapp/build/contracts/WolframAlpha.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davekay100/DApps/HEAD/truffle/testnet-ethbridge-football-dapp/build/contracts/WolframAlpha.json -------------------------------------------------------------------------------- /truffle/testnet-ethbridge-football-dapp/build/contracts/usingOraclize.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davekay100/DApps/HEAD/truffle/testnet-ethbridge-football-dapp/build/contracts/usingOraclize.json -------------------------------------------------------------------------------- /truffle/testnet-ethbridge-football-dapp/contracts/Migrations.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davekay100/DApps/HEAD/truffle/testnet-ethbridge-football-dapp/contracts/Migrations.sol -------------------------------------------------------------------------------- /truffle/testnet-ethbridge-football-dapp/contracts/WolframAlpha.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davekay100/DApps/HEAD/truffle/testnet-ethbridge-football-dapp/contracts/WolframAlpha.sol -------------------------------------------------------------------------------- /truffle/testnet-ethbridge-football-dapp/contracts/usingOraclize.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davekay100/DApps/HEAD/truffle/testnet-ethbridge-football-dapp/contracts/usingOraclize.sol -------------------------------------------------------------------------------- /truffle/testnet-ethbridge-football-dapp/migrations/1_initial_migration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davekay100/DApps/HEAD/truffle/testnet-ethbridge-football-dapp/migrations/1_initial_migration.js -------------------------------------------------------------------------------- /truffle/testnet-ethbridge-football-dapp/migrations/2_deploy_contracts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davekay100/DApps/HEAD/truffle/testnet-ethbridge-football-dapp/migrations/2_deploy_contracts.js -------------------------------------------------------------------------------- /truffle/testnet-ethbridge-football-dapp/test/TestWolfram.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davekay100/DApps/HEAD/truffle/testnet-ethbridge-football-dapp/test/TestWolfram.sol -------------------------------------------------------------------------------- /truffle/testnet-ethbridge-football-dapp/test/wolfram.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davekay100/DApps/HEAD/truffle/testnet-ethbridge-football-dapp/test/wolfram.js -------------------------------------------------------------------------------- /truffle/testnet-ethbridge-football-dapp/truffle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davekay100/DApps/HEAD/truffle/testnet-ethbridge-football-dapp/truffle.js -------------------------------------------------------------------------------- /truffle/truffle-decypher-coin/build/contracts/ConvertLib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davekay100/DApps/HEAD/truffle/truffle-decypher-coin/build/contracts/ConvertLib.json -------------------------------------------------------------------------------- /truffle/truffle-decypher-coin/build/contracts/DecypherCoin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davekay100/DApps/HEAD/truffle/truffle-decypher-coin/build/contracts/DecypherCoin.json -------------------------------------------------------------------------------- /truffle/truffle-decypher-coin/build/contracts/Migrations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davekay100/DApps/HEAD/truffle/truffle-decypher-coin/build/contracts/Migrations.json -------------------------------------------------------------------------------- /truffle/truffle-decypher-coin/contracts/ConvertLib.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davekay100/DApps/HEAD/truffle/truffle-decypher-coin/contracts/ConvertLib.sol -------------------------------------------------------------------------------- /truffle/truffle-decypher-coin/contracts/DecypherCoin.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davekay100/DApps/HEAD/truffle/truffle-decypher-coin/contracts/DecypherCoin.sol -------------------------------------------------------------------------------- /truffle/truffle-decypher-coin/contracts/Migrations.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davekay100/DApps/HEAD/truffle/truffle-decypher-coin/contracts/Migrations.sol -------------------------------------------------------------------------------- /truffle/truffle-decypher-coin/migrations/1_initial_migration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davekay100/DApps/HEAD/truffle/truffle-decypher-coin/migrations/1_initial_migration.js -------------------------------------------------------------------------------- /truffle/truffle-decypher-coin/migrations/2_deploy_contracts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davekay100/DApps/HEAD/truffle/truffle-decypher-coin/migrations/2_deploy_contracts.js -------------------------------------------------------------------------------- /truffle/truffle-decypher-coin/test/Decyphercoin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davekay100/DApps/HEAD/truffle/truffle-decypher-coin/test/Decyphercoin.js -------------------------------------------------------------------------------- /truffle/truffle-decypher-coin/test/TestDecypherCoin.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davekay100/DApps/HEAD/truffle/truffle-decypher-coin/test/TestDecypherCoin.sol -------------------------------------------------------------------------------- /truffle/truffle-decypher-coin/truffle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davekay100/DApps/HEAD/truffle/truffle-decypher-coin/truffle.js -------------------------------------------------------------------------------- /truffle/truffle-other-tokens/Tokens-master/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davekay100/DApps/HEAD/truffle/truffle-other-tokens/Tokens-master/.gitignore -------------------------------------------------------------------------------- /truffle/truffle-other-tokens/Tokens-master/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davekay100/DApps/HEAD/truffle/truffle-other-tokens/Tokens-master/LICENSE -------------------------------------------------------------------------------- /truffle/truffle-other-tokens/Tokens-master/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davekay100/DApps/HEAD/truffle/truffle-other-tokens/Tokens-master/README.md -------------------------------------------------------------------------------- /truffle/truffle-other-tokens/Tokens-master/Token_Contracts/build/contracts/HumanStandardToken.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davekay100/DApps/HEAD/truffle/truffle-other-tokens/Tokens-master/Token_Contracts/build/contracts/HumanStandardToken.json -------------------------------------------------------------------------------- /truffle/truffle-other-tokens/Tokens-master/Token_Contracts/build/contracts/HumanStandardTokenFactory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davekay100/DApps/HEAD/truffle/truffle-other-tokens/Tokens-master/Token_Contracts/build/contracts/HumanStandardTokenFactory.json -------------------------------------------------------------------------------- /truffle/truffle-other-tokens/Tokens-master/Token_Contracts/build/contracts/SampleRecipientSuccess.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davekay100/DApps/HEAD/truffle/truffle-other-tokens/Tokens-master/Token_Contracts/build/contracts/SampleRecipientSuccess.json -------------------------------------------------------------------------------- /truffle/truffle-other-tokens/Tokens-master/Token_Contracts/build/contracts/SampleRecipientThrow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davekay100/DApps/HEAD/truffle/truffle-other-tokens/Tokens-master/Token_Contracts/build/contracts/SampleRecipientThrow.json -------------------------------------------------------------------------------- /truffle/truffle-other-tokens/Tokens-master/Token_Contracts/build/contracts/StandardToken.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davekay100/DApps/HEAD/truffle/truffle-other-tokens/Tokens-master/Token_Contracts/build/contracts/StandardToken.json -------------------------------------------------------------------------------- /truffle/truffle-other-tokens/Tokens-master/Token_Contracts/build/contracts/Token.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davekay100/DApps/HEAD/truffle/truffle-other-tokens/Tokens-master/Token_Contracts/build/contracts/Token.json -------------------------------------------------------------------------------- /truffle/truffle-other-tokens/Tokens-master/Token_Contracts/build/contracts/TokenTester.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davekay100/DApps/HEAD/truffle/truffle-other-tokens/Tokens-master/Token_Contracts/build/contracts/TokenTester.json -------------------------------------------------------------------------------- /truffle/truffle-other-tokens/Tokens-master/Token_Contracts/contracts/HumanStandardToken.abi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davekay100/DApps/HEAD/truffle/truffle-other-tokens/Tokens-master/Token_Contracts/contracts/HumanStandardToken.abi.json -------------------------------------------------------------------------------- /truffle/truffle-other-tokens/Tokens-master/Token_Contracts/contracts/HumanStandardToken.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davekay100/DApps/HEAD/truffle/truffle-other-tokens/Tokens-master/Token_Contracts/contracts/HumanStandardToken.sol -------------------------------------------------------------------------------- /truffle/truffle-other-tokens/Tokens-master/Token_Contracts/contracts/HumanStandardTokenFactory.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davekay100/DApps/HEAD/truffle/truffle-other-tokens/Tokens-master/Token_Contracts/contracts/HumanStandardTokenFactory.sol -------------------------------------------------------------------------------- /truffle/truffle-other-tokens/Tokens-master/Token_Contracts/contracts/Migrations.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davekay100/DApps/HEAD/truffle/truffle-other-tokens/Tokens-master/Token_Contracts/contracts/Migrations.sol -------------------------------------------------------------------------------- /truffle/truffle-other-tokens/Tokens-master/Token_Contracts/contracts/SampleRecipientSuccess.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davekay100/DApps/HEAD/truffle/truffle-other-tokens/Tokens-master/Token_Contracts/contracts/SampleRecipientSuccess.sol -------------------------------------------------------------------------------- /truffle/truffle-other-tokens/Tokens-master/Token_Contracts/contracts/SampleRecipientThrow.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davekay100/DApps/HEAD/truffle/truffle-other-tokens/Tokens-master/Token_Contracts/contracts/SampleRecipientThrow.sol -------------------------------------------------------------------------------- /truffle/truffle-other-tokens/Tokens-master/Token_Contracts/contracts/StandardToken.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davekay100/DApps/HEAD/truffle/truffle-other-tokens/Tokens-master/Token_Contracts/contracts/StandardToken.sol -------------------------------------------------------------------------------- /truffle/truffle-other-tokens/Tokens-master/Token_Contracts/contracts/Token.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davekay100/DApps/HEAD/truffle/truffle-other-tokens/Tokens-master/Token_Contracts/contracts/Token.sol -------------------------------------------------------------------------------- /truffle/truffle-other-tokens/Tokens-master/Token_Contracts/contracts/TokenTester.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davekay100/DApps/HEAD/truffle/truffle-other-tokens/Tokens-master/Token_Contracts/contracts/TokenTester.sol -------------------------------------------------------------------------------- /truffle/truffle-other-tokens/Tokens-master/Token_Contracts/ethpm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davekay100/DApps/HEAD/truffle/truffle-other-tokens/Tokens-master/Token_Contracts/ethpm.json -------------------------------------------------------------------------------- /truffle/truffle-other-tokens/Tokens-master/Token_Contracts/migrations/1_initial_migration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davekay100/DApps/HEAD/truffle/truffle-other-tokens/Tokens-master/Token_Contracts/migrations/1_initial_migration.js -------------------------------------------------------------------------------- /truffle/truffle-other-tokens/Tokens-master/Token_Contracts/migrations/2_deploy_contracts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davekay100/DApps/HEAD/truffle/truffle-other-tokens/Tokens-master/Token_Contracts/migrations/2_deploy_contracts.js -------------------------------------------------------------------------------- /truffle/truffle-other-tokens/Tokens-master/Token_Contracts/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davekay100/DApps/HEAD/truffle/truffle-other-tokens/Tokens-master/Token_Contracts/package-lock.json -------------------------------------------------------------------------------- /truffle/truffle-other-tokens/Tokens-master/Token_Contracts/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davekay100/DApps/HEAD/truffle/truffle-other-tokens/Tokens-master/Token_Contracts/package.json -------------------------------------------------------------------------------- /truffle/truffle-other-tokens/Tokens-master/Token_Contracts/test/humanStandardToken.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davekay100/DApps/HEAD/truffle/truffle-other-tokens/Tokens-master/Token_Contracts/test/humanStandardToken.js -------------------------------------------------------------------------------- /truffle/truffle-other-tokens/Tokens-master/Token_Contracts/test/humanStandardTokenFactory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davekay100/DApps/HEAD/truffle/truffle-other-tokens/Tokens-master/Token_Contracts/test/humanStandardTokenFactory.js -------------------------------------------------------------------------------- /truffle/truffle-other-tokens/Tokens-master/Token_Contracts/test/standardToken.js: -------------------------------------------------------------------------------- 1 | /* This has moved to humandStandardToken.js */ 2 | -------------------------------------------------------------------------------- /truffle/truffle-other-tokens/Tokens-master/Token_Contracts/test/tokenTester.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davekay100/DApps/HEAD/truffle/truffle-other-tokens/Tokens-master/Token_Contracts/test/tokenTester.js -------------------------------------------------------------------------------- /truffle/truffle-other-tokens/Tokens-master/Token_Contracts/truffle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davekay100/DApps/HEAD/truffle/truffle-other-tokens/Tokens-master/Token_Contracts/truffle.js --------------------------------------------------------------------------------