├── .gitignore ├── LICENSE ├── README.md ├── _config.yml ├── contracts ├── TestERC20Token.sol ├── TokenSellerFactory.sol └── TokenTraderFactory.sol ├── doc └── images │ ├── 1STWatchContract.png │ ├── 1STWatchToken.png │ ├── ARCWatchContract.png │ ├── ARCWatchToken.png │ ├── DAOWatchContract.png │ ├── DAOWatchToken.png │ ├── DGDWatchContract.png │ ├── DGDWatchToken.png │ ├── DGDbWatchContract.png │ ├── DGDbWatchToken.png │ ├── EDGWatchContract.png │ ├── EDGWatchToken.png │ ├── GNTCheckTokenBalance.png │ ├── GNTCheckTokenBalanceEtherScanIo.png │ ├── GNTCheckTokenBalanceEtherScanIoAddress.png │ ├── GNTTokenTraderExecutedTradeReport.png │ ├── GNTTokenTraderFactoryCreateTradeContract.png │ ├── GNTTokenTraderFactoryWatchContract.png │ ├── GNTTokenTraderFindContractCryptoDerivativesMarket.png │ ├── GNTTokenTraderFindContractEthereumWallet.png │ ├── GNTTokenTraderFindContractEtherscanIo1.png │ ├── GNTTokenTraderFindContractEtherscanIo2.png │ ├── GNTTokenTraderVerifyContractEthereumWallet.png │ ├── GNTTokenTraderVerifyContractEtherscanIo1.png │ ├── GNTTokenTraderVerifyContractEtherscanIo2.png │ ├── GNTTokenTraderWatchContract.png │ ├── GNTTokenTraderWatchContractScreen1.png │ ├── GNTTokenTraderWatchContractScreen2.png │ ├── GNTTokenTraderWatchContractScreenActivate.png │ ├── GNTTokenTraderWatchContractScreenWithdraw.png │ ├── GNTTokenTraderWatchContractScreenWithdrawAsset.png │ ├── GNTTokenTraderWatchContractScreenWithdrawToken.png │ ├── GNTTransferTokens.png │ ├── GNTTransferTokensCheckGas.png │ ├── GNTWWatchContract.png │ ├── GNTWWatchToken.png │ ├── GNTWatchContract.png │ ├── GNTWatchToken.png │ ├── HKGWatchContract.png │ ├── HKGWatchToken.png │ ├── ICNWatchContract.png │ ├── ICNWatchToken.png │ ├── JonnyLatteTokenTraderBugTx_20170205.png │ ├── JonnyLatteTokenTraderBug_20170205.png │ ├── MKRWatchContract.png │ ├── MKRWatchToken.png │ ├── MLNWatchContract.png │ ├── MLNWatchToken.png │ ├── OcytkoEmail_20170212.png │ ├── PLUWatchContract.png │ ├── PLUWatchToken.png │ ├── RBXCheckTokenBalance.png │ ├── RBXMoveToWaves.png │ ├── RBXTransferTokens.png │ ├── RBXWatchContract.png │ ├── RBXWatchToken.png │ ├── REPWatchContract.png │ ├── REPWatchToken.png │ ├── ROUNDWatchContract.png │ ├── ROUNDWatchToken.png │ ├── SNGLSWatchContract.png │ ├── SNGLSWatchToken.png │ ├── SWTWatchContract.png │ ├── SWTWatchToken.png │ ├── TIMEWatchContract.png │ ├── TIMEWatchToken.png │ ├── TokenSellerFactoryWatchContract.png │ ├── TokenTraderActivate.png │ ├── TokenTraderDepositEthers.png │ ├── TokenTraderFactoryCheckInvalidGNT.png │ ├── TokenTraderFactoryCreateTradeContract.png │ ├── TokenTraderFactoryCreateTradeContractEtherScanContractSource.png │ ├── TokenTraderFactoryCreateTradeContractEtherScanTransaction.png │ ├── TokenTraderFactoryCreateTradeContractEtherScanTransactionInternal.png │ ├── TokenTraderFactoryCreateTradeContractWatchContract.png │ ├── TokenTraderFactoryWatchContract.png │ ├── TokenTraderFactoryWatchContractFunctions.png │ ├── TokenTraderREP395Contract.png │ ├── TokenTraderREP395Rate.png │ ├── TokenTraderSNGLS109872Contract.png │ ├── TokenTraderSNGLS109872Rate.png │ ├── TokenTraderTokenTransfer.png │ ├── TokenTraderTransferAsset.png │ ├── TokenTraderTransferEthers.png │ ├── TokenTraderWithdrawAsset.png │ ├── TokenTraderWithdrawEthers.png │ ├── TokenTraderWithdrawOtherTokens.png │ ├── VSLWatchContract.png │ ├── VSLWatchToken.png │ ├── WCTCheckTokenBalance.png │ ├── WCTMoveToWaves.png │ ├── WCTTransferTokens.png │ ├── WCTWatchContract.png │ └── WCTWatchToken.png ├── scripts ├── README.md └── getGNTBalances └── testing ├── test_20170115_1619 ├── 00_runGeth.sh ├── 01_deployERC20Token.sh ├── 02_deployTokenTraderFactory.sh ├── 03_executeOrder.sh ├── 04_testOther.sh ├── 05_checkEvents.sh ├── GNTTokenTraderFactory.sol ├── README.md ├── TestERC20Token.sol ├── TokenSellerFactory.sol ├── TokenTraderFactory.sol ├── eventResults.txt ├── executionOutput.txt ├── executionResults.txt ├── factoryData.txt ├── factoryOutput.txt ├── factoryResults.txt ├── genesis.json ├── otherOutput.txt ├── otherResults.txt ├── settings.txt ├── stripCrLf ├── testchain │ └── keystore │ │ ├── UTC--2016-12-16T01-36-05.134620242Z--000d1009bd8f0b1301cc5edc28ed1222a3ce671e │ │ ├── UTC--2016-12-16T01-36-45.681050789Z--0014060ff383c9b21c6840a3b14aab06741e5c49 │ │ ├── UTC--2016-12-16T01-37-12.717455318Z--0020017ba4c67f76c76b1af8c41821ee54f37171 │ │ └── UTC--2016-12-16T01-37-37.923741925Z--0036f6addb6d64684390f55a92f0f4988266901b ├── testpassword ├── tokenData.txt ├── tokenOutput.txt └── tokenResults.txt ├── test_20170125_0829 ├── 00_runGeth.sh ├── 01_deployERC20Token.sh ├── 02_deployTokenTraderFactory.sh ├── 03_executeOrder.sh ├── 04_testOther.sh ├── 05_checkEvents.sh ├── GNTTokenTraderFactory.sol ├── README.md ├── TestERC20Token.sol ├── TokenSellerFactory.sol ├── TokenTraderFactory.sol ├── eventResults.txt ├── executionOutput.txt ├── executionResults.txt ├── factoryData.txt ├── factoryOutput.txt ├── factoryResults.txt ├── genesis.json ├── otherOutput.txt ├── otherResults.txt ├── settings.txt ├── stripCrLf ├── testchain │ └── keystore │ │ ├── UTC--2016-12-16T01-36-05.134620242Z--000d1009bd8f0b1301cc5edc28ed1222a3ce671e │ │ ├── UTC--2016-12-16T01-36-45.681050789Z--0014060ff383c9b21c6840a3b14aab06741e5c49 │ │ ├── UTC--2016-12-16T01-37-12.717455318Z--0020017ba4c67f76c76b1af8c41821ee54f37171 │ │ └── UTC--2016-12-16T01-37-37.923741925Z--0036f6addb6d64684390f55a92f0f4988266901b ├── testpassword ├── tokenData.txt ├── tokenOutput.txt └── tokenResults.txt └── test_20170205_1849 ├── 00_runGeth.sh ├── 01_deployERC20Token.sh ├── 02_deployTokenTraderFactory.sh ├── 03_executeOrder.sh ├── 04_testOther.sh ├── 05_testBug.sh ├── 06_checkEvents.sh ├── GNTTokenTraderFactory.sol ├── README.md ├── TestERC20Token.sol ├── TokenSellerFactory.sol ├── TokenTraderFactory.sol ├── bugOutput.txt ├── bugResults.txt ├── eventResults.txt ├── executionOutput.txt ├── executionResults.txt ├── factoryData.txt ├── factoryOutput.txt ├── factoryResults.txt ├── genesis.json ├── otherOutput.txt ├── otherResults.txt ├── settings.txt ├── stripCrLf ├── testchain └── keystore │ ├── UTC--2016-12-16T01-36-05.134620242Z--000d1009bd8f0b1301cc5edc28ed1222a3ce671e │ ├── UTC--2016-12-16T01-36-45.681050789Z--0014060ff383c9b21c6840a3b14aab06741e5c49 │ ├── UTC--2016-12-16T01-37-12.717455318Z--0020017ba4c67f76c76b1af8c41821ee54f37171 │ └── UTC--2016-12-16T01-37-37.923741925Z--0036f6addb6d64684390f55a92f0f4988266901b ├── testpassword ├── tokenData.txt ├── tokenOutput.txt └── tokenResults.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokkypoobah/TokenTrader/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokkypoobah/TokenTrader/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokkypoobah/TokenTrader/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokkypoobah/TokenTrader/HEAD/_config.yml -------------------------------------------------------------------------------- /contracts/TestERC20Token.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokkypoobah/TokenTrader/HEAD/contracts/TestERC20Token.sol -------------------------------------------------------------------------------- /contracts/TokenSellerFactory.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokkypoobah/TokenTrader/HEAD/contracts/TokenSellerFactory.sol -------------------------------------------------------------------------------- /contracts/TokenTraderFactory.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokkypoobah/TokenTrader/HEAD/contracts/TokenTraderFactory.sol -------------------------------------------------------------------------------- /doc/images/1STWatchContract.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokkypoobah/TokenTrader/HEAD/doc/images/1STWatchContract.png -------------------------------------------------------------------------------- /doc/images/1STWatchToken.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokkypoobah/TokenTrader/HEAD/doc/images/1STWatchToken.png -------------------------------------------------------------------------------- /doc/images/ARCWatchContract.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokkypoobah/TokenTrader/HEAD/doc/images/ARCWatchContract.png -------------------------------------------------------------------------------- /doc/images/ARCWatchToken.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokkypoobah/TokenTrader/HEAD/doc/images/ARCWatchToken.png -------------------------------------------------------------------------------- /doc/images/DAOWatchContract.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokkypoobah/TokenTrader/HEAD/doc/images/DAOWatchContract.png -------------------------------------------------------------------------------- /doc/images/DAOWatchToken.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokkypoobah/TokenTrader/HEAD/doc/images/DAOWatchToken.png -------------------------------------------------------------------------------- /doc/images/DGDWatchContract.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokkypoobah/TokenTrader/HEAD/doc/images/DGDWatchContract.png -------------------------------------------------------------------------------- /doc/images/DGDWatchToken.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokkypoobah/TokenTrader/HEAD/doc/images/DGDWatchToken.png -------------------------------------------------------------------------------- /doc/images/DGDbWatchContract.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokkypoobah/TokenTrader/HEAD/doc/images/DGDbWatchContract.png -------------------------------------------------------------------------------- /doc/images/DGDbWatchToken.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokkypoobah/TokenTrader/HEAD/doc/images/DGDbWatchToken.png -------------------------------------------------------------------------------- /doc/images/EDGWatchContract.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokkypoobah/TokenTrader/HEAD/doc/images/EDGWatchContract.png -------------------------------------------------------------------------------- /doc/images/EDGWatchToken.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokkypoobah/TokenTrader/HEAD/doc/images/EDGWatchToken.png -------------------------------------------------------------------------------- /doc/images/GNTCheckTokenBalance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokkypoobah/TokenTrader/HEAD/doc/images/GNTCheckTokenBalance.png -------------------------------------------------------------------------------- /doc/images/GNTCheckTokenBalanceEtherScanIo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokkypoobah/TokenTrader/HEAD/doc/images/GNTCheckTokenBalanceEtherScanIo.png -------------------------------------------------------------------------------- /doc/images/GNTCheckTokenBalanceEtherScanIoAddress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokkypoobah/TokenTrader/HEAD/doc/images/GNTCheckTokenBalanceEtherScanIoAddress.png -------------------------------------------------------------------------------- /doc/images/GNTTokenTraderExecutedTradeReport.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokkypoobah/TokenTrader/HEAD/doc/images/GNTTokenTraderExecutedTradeReport.png -------------------------------------------------------------------------------- /doc/images/GNTTokenTraderFactoryCreateTradeContract.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokkypoobah/TokenTrader/HEAD/doc/images/GNTTokenTraderFactoryCreateTradeContract.png -------------------------------------------------------------------------------- /doc/images/GNTTokenTraderFactoryWatchContract.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokkypoobah/TokenTrader/HEAD/doc/images/GNTTokenTraderFactoryWatchContract.png -------------------------------------------------------------------------------- /doc/images/GNTTokenTraderFindContractCryptoDerivativesMarket.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokkypoobah/TokenTrader/HEAD/doc/images/GNTTokenTraderFindContractCryptoDerivativesMarket.png -------------------------------------------------------------------------------- /doc/images/GNTTokenTraderFindContractEthereumWallet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokkypoobah/TokenTrader/HEAD/doc/images/GNTTokenTraderFindContractEthereumWallet.png -------------------------------------------------------------------------------- /doc/images/GNTTokenTraderFindContractEtherscanIo1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokkypoobah/TokenTrader/HEAD/doc/images/GNTTokenTraderFindContractEtherscanIo1.png -------------------------------------------------------------------------------- /doc/images/GNTTokenTraderFindContractEtherscanIo2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokkypoobah/TokenTrader/HEAD/doc/images/GNTTokenTraderFindContractEtherscanIo2.png -------------------------------------------------------------------------------- /doc/images/GNTTokenTraderVerifyContractEthereumWallet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokkypoobah/TokenTrader/HEAD/doc/images/GNTTokenTraderVerifyContractEthereumWallet.png -------------------------------------------------------------------------------- /doc/images/GNTTokenTraderVerifyContractEtherscanIo1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokkypoobah/TokenTrader/HEAD/doc/images/GNTTokenTraderVerifyContractEtherscanIo1.png -------------------------------------------------------------------------------- /doc/images/GNTTokenTraderVerifyContractEtherscanIo2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokkypoobah/TokenTrader/HEAD/doc/images/GNTTokenTraderVerifyContractEtherscanIo2.png -------------------------------------------------------------------------------- /doc/images/GNTTokenTraderWatchContract.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokkypoobah/TokenTrader/HEAD/doc/images/GNTTokenTraderWatchContract.png -------------------------------------------------------------------------------- /doc/images/GNTTokenTraderWatchContractScreen1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokkypoobah/TokenTrader/HEAD/doc/images/GNTTokenTraderWatchContractScreen1.png -------------------------------------------------------------------------------- /doc/images/GNTTokenTraderWatchContractScreen2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokkypoobah/TokenTrader/HEAD/doc/images/GNTTokenTraderWatchContractScreen2.png -------------------------------------------------------------------------------- /doc/images/GNTTokenTraderWatchContractScreenActivate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokkypoobah/TokenTrader/HEAD/doc/images/GNTTokenTraderWatchContractScreenActivate.png -------------------------------------------------------------------------------- /doc/images/GNTTokenTraderWatchContractScreenWithdraw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokkypoobah/TokenTrader/HEAD/doc/images/GNTTokenTraderWatchContractScreenWithdraw.png -------------------------------------------------------------------------------- /doc/images/GNTTokenTraderWatchContractScreenWithdrawAsset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokkypoobah/TokenTrader/HEAD/doc/images/GNTTokenTraderWatchContractScreenWithdrawAsset.png -------------------------------------------------------------------------------- /doc/images/GNTTokenTraderWatchContractScreenWithdrawToken.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokkypoobah/TokenTrader/HEAD/doc/images/GNTTokenTraderWatchContractScreenWithdrawToken.png -------------------------------------------------------------------------------- /doc/images/GNTTransferTokens.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokkypoobah/TokenTrader/HEAD/doc/images/GNTTransferTokens.png -------------------------------------------------------------------------------- /doc/images/GNTTransferTokensCheckGas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokkypoobah/TokenTrader/HEAD/doc/images/GNTTransferTokensCheckGas.png -------------------------------------------------------------------------------- /doc/images/GNTWWatchContract.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokkypoobah/TokenTrader/HEAD/doc/images/GNTWWatchContract.png -------------------------------------------------------------------------------- /doc/images/GNTWWatchToken.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokkypoobah/TokenTrader/HEAD/doc/images/GNTWWatchToken.png -------------------------------------------------------------------------------- /doc/images/GNTWatchContract.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokkypoobah/TokenTrader/HEAD/doc/images/GNTWatchContract.png -------------------------------------------------------------------------------- /doc/images/GNTWatchToken.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokkypoobah/TokenTrader/HEAD/doc/images/GNTWatchToken.png -------------------------------------------------------------------------------- /doc/images/HKGWatchContract.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokkypoobah/TokenTrader/HEAD/doc/images/HKGWatchContract.png -------------------------------------------------------------------------------- /doc/images/HKGWatchToken.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokkypoobah/TokenTrader/HEAD/doc/images/HKGWatchToken.png -------------------------------------------------------------------------------- /doc/images/ICNWatchContract.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokkypoobah/TokenTrader/HEAD/doc/images/ICNWatchContract.png -------------------------------------------------------------------------------- /doc/images/ICNWatchToken.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokkypoobah/TokenTrader/HEAD/doc/images/ICNWatchToken.png -------------------------------------------------------------------------------- /doc/images/JonnyLatteTokenTraderBugTx_20170205.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokkypoobah/TokenTrader/HEAD/doc/images/JonnyLatteTokenTraderBugTx_20170205.png -------------------------------------------------------------------------------- /doc/images/JonnyLatteTokenTraderBug_20170205.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokkypoobah/TokenTrader/HEAD/doc/images/JonnyLatteTokenTraderBug_20170205.png -------------------------------------------------------------------------------- /doc/images/MKRWatchContract.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokkypoobah/TokenTrader/HEAD/doc/images/MKRWatchContract.png -------------------------------------------------------------------------------- /doc/images/MKRWatchToken.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokkypoobah/TokenTrader/HEAD/doc/images/MKRWatchToken.png -------------------------------------------------------------------------------- /doc/images/MLNWatchContract.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokkypoobah/TokenTrader/HEAD/doc/images/MLNWatchContract.png -------------------------------------------------------------------------------- /doc/images/MLNWatchToken.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokkypoobah/TokenTrader/HEAD/doc/images/MLNWatchToken.png -------------------------------------------------------------------------------- /doc/images/OcytkoEmail_20170212.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokkypoobah/TokenTrader/HEAD/doc/images/OcytkoEmail_20170212.png -------------------------------------------------------------------------------- /doc/images/PLUWatchContract.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokkypoobah/TokenTrader/HEAD/doc/images/PLUWatchContract.png -------------------------------------------------------------------------------- /doc/images/PLUWatchToken.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokkypoobah/TokenTrader/HEAD/doc/images/PLUWatchToken.png -------------------------------------------------------------------------------- /doc/images/RBXCheckTokenBalance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokkypoobah/TokenTrader/HEAD/doc/images/RBXCheckTokenBalance.png -------------------------------------------------------------------------------- /doc/images/RBXMoveToWaves.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokkypoobah/TokenTrader/HEAD/doc/images/RBXMoveToWaves.png -------------------------------------------------------------------------------- /doc/images/RBXTransferTokens.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokkypoobah/TokenTrader/HEAD/doc/images/RBXTransferTokens.png -------------------------------------------------------------------------------- /doc/images/RBXWatchContract.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokkypoobah/TokenTrader/HEAD/doc/images/RBXWatchContract.png -------------------------------------------------------------------------------- /doc/images/RBXWatchToken.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokkypoobah/TokenTrader/HEAD/doc/images/RBXWatchToken.png -------------------------------------------------------------------------------- /doc/images/REPWatchContract.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokkypoobah/TokenTrader/HEAD/doc/images/REPWatchContract.png -------------------------------------------------------------------------------- /doc/images/REPWatchToken.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokkypoobah/TokenTrader/HEAD/doc/images/REPWatchToken.png -------------------------------------------------------------------------------- /doc/images/ROUNDWatchContract.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokkypoobah/TokenTrader/HEAD/doc/images/ROUNDWatchContract.png -------------------------------------------------------------------------------- /doc/images/ROUNDWatchToken.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokkypoobah/TokenTrader/HEAD/doc/images/ROUNDWatchToken.png -------------------------------------------------------------------------------- /doc/images/SNGLSWatchContract.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokkypoobah/TokenTrader/HEAD/doc/images/SNGLSWatchContract.png -------------------------------------------------------------------------------- /doc/images/SNGLSWatchToken.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokkypoobah/TokenTrader/HEAD/doc/images/SNGLSWatchToken.png -------------------------------------------------------------------------------- /doc/images/SWTWatchContract.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokkypoobah/TokenTrader/HEAD/doc/images/SWTWatchContract.png -------------------------------------------------------------------------------- /doc/images/SWTWatchToken.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokkypoobah/TokenTrader/HEAD/doc/images/SWTWatchToken.png -------------------------------------------------------------------------------- /doc/images/TIMEWatchContract.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokkypoobah/TokenTrader/HEAD/doc/images/TIMEWatchContract.png -------------------------------------------------------------------------------- /doc/images/TIMEWatchToken.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokkypoobah/TokenTrader/HEAD/doc/images/TIMEWatchToken.png -------------------------------------------------------------------------------- /doc/images/TokenSellerFactoryWatchContract.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokkypoobah/TokenTrader/HEAD/doc/images/TokenSellerFactoryWatchContract.png -------------------------------------------------------------------------------- /doc/images/TokenTraderActivate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokkypoobah/TokenTrader/HEAD/doc/images/TokenTraderActivate.png -------------------------------------------------------------------------------- /doc/images/TokenTraderDepositEthers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokkypoobah/TokenTrader/HEAD/doc/images/TokenTraderDepositEthers.png -------------------------------------------------------------------------------- /doc/images/TokenTraderFactoryCheckInvalidGNT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokkypoobah/TokenTrader/HEAD/doc/images/TokenTraderFactoryCheckInvalidGNT.png -------------------------------------------------------------------------------- /doc/images/TokenTraderFactoryCreateTradeContract.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokkypoobah/TokenTrader/HEAD/doc/images/TokenTraderFactoryCreateTradeContract.png -------------------------------------------------------------------------------- /doc/images/TokenTraderFactoryCreateTradeContractEtherScanContractSource.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokkypoobah/TokenTrader/HEAD/doc/images/TokenTraderFactoryCreateTradeContractEtherScanContractSource.png -------------------------------------------------------------------------------- /doc/images/TokenTraderFactoryCreateTradeContractEtherScanTransaction.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokkypoobah/TokenTrader/HEAD/doc/images/TokenTraderFactoryCreateTradeContractEtherScanTransaction.png -------------------------------------------------------------------------------- /doc/images/TokenTraderFactoryCreateTradeContractEtherScanTransactionInternal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokkypoobah/TokenTrader/HEAD/doc/images/TokenTraderFactoryCreateTradeContractEtherScanTransactionInternal.png -------------------------------------------------------------------------------- /doc/images/TokenTraderFactoryCreateTradeContractWatchContract.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokkypoobah/TokenTrader/HEAD/doc/images/TokenTraderFactoryCreateTradeContractWatchContract.png -------------------------------------------------------------------------------- /doc/images/TokenTraderFactoryWatchContract.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokkypoobah/TokenTrader/HEAD/doc/images/TokenTraderFactoryWatchContract.png -------------------------------------------------------------------------------- /doc/images/TokenTraderFactoryWatchContractFunctions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokkypoobah/TokenTrader/HEAD/doc/images/TokenTraderFactoryWatchContractFunctions.png -------------------------------------------------------------------------------- /doc/images/TokenTraderREP395Contract.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokkypoobah/TokenTrader/HEAD/doc/images/TokenTraderREP395Contract.png -------------------------------------------------------------------------------- /doc/images/TokenTraderREP395Rate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokkypoobah/TokenTrader/HEAD/doc/images/TokenTraderREP395Rate.png -------------------------------------------------------------------------------- /doc/images/TokenTraderSNGLS109872Contract.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokkypoobah/TokenTrader/HEAD/doc/images/TokenTraderSNGLS109872Contract.png -------------------------------------------------------------------------------- /doc/images/TokenTraderSNGLS109872Rate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokkypoobah/TokenTrader/HEAD/doc/images/TokenTraderSNGLS109872Rate.png -------------------------------------------------------------------------------- /doc/images/TokenTraderTokenTransfer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokkypoobah/TokenTrader/HEAD/doc/images/TokenTraderTokenTransfer.png -------------------------------------------------------------------------------- /doc/images/TokenTraderTransferAsset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokkypoobah/TokenTrader/HEAD/doc/images/TokenTraderTransferAsset.png -------------------------------------------------------------------------------- /doc/images/TokenTraderTransferEthers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokkypoobah/TokenTrader/HEAD/doc/images/TokenTraderTransferEthers.png -------------------------------------------------------------------------------- /doc/images/TokenTraderWithdrawAsset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokkypoobah/TokenTrader/HEAD/doc/images/TokenTraderWithdrawAsset.png -------------------------------------------------------------------------------- /doc/images/TokenTraderWithdrawEthers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokkypoobah/TokenTrader/HEAD/doc/images/TokenTraderWithdrawEthers.png -------------------------------------------------------------------------------- /doc/images/TokenTraderWithdrawOtherTokens.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokkypoobah/TokenTrader/HEAD/doc/images/TokenTraderWithdrawOtherTokens.png -------------------------------------------------------------------------------- /doc/images/VSLWatchContract.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokkypoobah/TokenTrader/HEAD/doc/images/VSLWatchContract.png -------------------------------------------------------------------------------- /doc/images/VSLWatchToken.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokkypoobah/TokenTrader/HEAD/doc/images/VSLWatchToken.png -------------------------------------------------------------------------------- /doc/images/WCTCheckTokenBalance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokkypoobah/TokenTrader/HEAD/doc/images/WCTCheckTokenBalance.png -------------------------------------------------------------------------------- /doc/images/WCTMoveToWaves.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokkypoobah/TokenTrader/HEAD/doc/images/WCTMoveToWaves.png -------------------------------------------------------------------------------- /doc/images/WCTTransferTokens.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokkypoobah/TokenTrader/HEAD/doc/images/WCTTransferTokens.png -------------------------------------------------------------------------------- /doc/images/WCTWatchContract.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokkypoobah/TokenTrader/HEAD/doc/images/WCTWatchContract.png -------------------------------------------------------------------------------- /doc/images/WCTWatchToken.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokkypoobah/TokenTrader/HEAD/doc/images/WCTWatchToken.png -------------------------------------------------------------------------------- /scripts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokkypoobah/TokenTrader/HEAD/scripts/README.md -------------------------------------------------------------------------------- /scripts/getGNTBalances: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokkypoobah/TokenTrader/HEAD/scripts/getGNTBalances -------------------------------------------------------------------------------- /testing/test_20170115_1619/00_runGeth.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokkypoobah/TokenTrader/HEAD/testing/test_20170115_1619/00_runGeth.sh -------------------------------------------------------------------------------- /testing/test_20170115_1619/01_deployERC20Token.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokkypoobah/TokenTrader/HEAD/testing/test_20170115_1619/01_deployERC20Token.sh -------------------------------------------------------------------------------- /testing/test_20170115_1619/02_deployTokenTraderFactory.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokkypoobah/TokenTrader/HEAD/testing/test_20170115_1619/02_deployTokenTraderFactory.sh -------------------------------------------------------------------------------- /testing/test_20170115_1619/03_executeOrder.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokkypoobah/TokenTrader/HEAD/testing/test_20170115_1619/03_executeOrder.sh -------------------------------------------------------------------------------- /testing/test_20170115_1619/04_testOther.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokkypoobah/TokenTrader/HEAD/testing/test_20170115_1619/04_testOther.sh -------------------------------------------------------------------------------- /testing/test_20170115_1619/05_checkEvents.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokkypoobah/TokenTrader/HEAD/testing/test_20170115_1619/05_checkEvents.sh -------------------------------------------------------------------------------- /testing/test_20170115_1619/GNTTokenTraderFactory.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokkypoobah/TokenTrader/HEAD/testing/test_20170115_1619/GNTTokenTraderFactory.sol -------------------------------------------------------------------------------- /testing/test_20170115_1619/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokkypoobah/TokenTrader/HEAD/testing/test_20170115_1619/README.md -------------------------------------------------------------------------------- /testing/test_20170115_1619/TestERC20Token.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokkypoobah/TokenTrader/HEAD/testing/test_20170115_1619/TestERC20Token.sol -------------------------------------------------------------------------------- /testing/test_20170115_1619/TokenSellerFactory.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokkypoobah/TokenTrader/HEAD/testing/test_20170115_1619/TokenSellerFactory.sol -------------------------------------------------------------------------------- /testing/test_20170115_1619/TokenTraderFactory.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokkypoobah/TokenTrader/HEAD/testing/test_20170115_1619/TokenTraderFactory.sol -------------------------------------------------------------------------------- /testing/test_20170115_1619/eventResults.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokkypoobah/TokenTrader/HEAD/testing/test_20170115_1619/eventResults.txt -------------------------------------------------------------------------------- /testing/test_20170115_1619/executionOutput.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokkypoobah/TokenTrader/HEAD/testing/test_20170115_1619/executionOutput.txt -------------------------------------------------------------------------------- /testing/test_20170115_1619/executionResults.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokkypoobah/TokenTrader/HEAD/testing/test_20170115_1619/executionResults.txt -------------------------------------------------------------------------------- /testing/test_20170115_1619/factoryData.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokkypoobah/TokenTrader/HEAD/testing/test_20170115_1619/factoryData.txt -------------------------------------------------------------------------------- /testing/test_20170115_1619/factoryOutput.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokkypoobah/TokenTrader/HEAD/testing/test_20170115_1619/factoryOutput.txt -------------------------------------------------------------------------------- /testing/test_20170115_1619/factoryResults.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokkypoobah/TokenTrader/HEAD/testing/test_20170115_1619/factoryResults.txt -------------------------------------------------------------------------------- /testing/test_20170115_1619/genesis.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokkypoobah/TokenTrader/HEAD/testing/test_20170115_1619/genesis.json -------------------------------------------------------------------------------- /testing/test_20170115_1619/otherOutput.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokkypoobah/TokenTrader/HEAD/testing/test_20170115_1619/otherOutput.txt -------------------------------------------------------------------------------- /testing/test_20170115_1619/otherResults.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokkypoobah/TokenTrader/HEAD/testing/test_20170115_1619/otherResults.txt -------------------------------------------------------------------------------- /testing/test_20170115_1619/settings.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokkypoobah/TokenTrader/HEAD/testing/test_20170115_1619/settings.txt -------------------------------------------------------------------------------- /testing/test_20170115_1619/stripCrLf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokkypoobah/TokenTrader/HEAD/testing/test_20170115_1619/stripCrLf -------------------------------------------------------------------------------- /testing/test_20170115_1619/testchain/keystore/UTC--2016-12-16T01-36-05.134620242Z--000d1009bd8f0b1301cc5edc28ed1222a3ce671e: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokkypoobah/TokenTrader/HEAD/testing/test_20170115_1619/testchain/keystore/UTC--2016-12-16T01-36-05.134620242Z--000d1009bd8f0b1301cc5edc28ed1222a3ce671e -------------------------------------------------------------------------------- /testing/test_20170115_1619/testchain/keystore/UTC--2016-12-16T01-36-45.681050789Z--0014060ff383c9b21c6840a3b14aab06741e5c49: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokkypoobah/TokenTrader/HEAD/testing/test_20170115_1619/testchain/keystore/UTC--2016-12-16T01-36-45.681050789Z--0014060ff383c9b21c6840a3b14aab06741e5c49 -------------------------------------------------------------------------------- /testing/test_20170115_1619/testchain/keystore/UTC--2016-12-16T01-37-12.717455318Z--0020017ba4c67f76c76b1af8c41821ee54f37171: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokkypoobah/TokenTrader/HEAD/testing/test_20170115_1619/testchain/keystore/UTC--2016-12-16T01-37-12.717455318Z--0020017ba4c67f76c76b1af8c41821ee54f37171 -------------------------------------------------------------------------------- /testing/test_20170115_1619/testchain/keystore/UTC--2016-12-16T01-37-37.923741925Z--0036f6addb6d64684390f55a92f0f4988266901b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokkypoobah/TokenTrader/HEAD/testing/test_20170115_1619/testchain/keystore/UTC--2016-12-16T01-37-37.923741925Z--0036f6addb6d64684390f55a92f0f4988266901b -------------------------------------------------------------------------------- /testing/test_20170115_1619/testpassword: -------------------------------------------------------------------------------- 1 | testtest 2 | -------------------------------------------------------------------------------- /testing/test_20170115_1619/tokenData.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokkypoobah/TokenTrader/HEAD/testing/test_20170115_1619/tokenData.txt -------------------------------------------------------------------------------- /testing/test_20170115_1619/tokenOutput.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokkypoobah/TokenTrader/HEAD/testing/test_20170115_1619/tokenOutput.txt -------------------------------------------------------------------------------- /testing/test_20170115_1619/tokenResults.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokkypoobah/TokenTrader/HEAD/testing/test_20170115_1619/tokenResults.txt -------------------------------------------------------------------------------- /testing/test_20170125_0829/00_runGeth.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokkypoobah/TokenTrader/HEAD/testing/test_20170125_0829/00_runGeth.sh -------------------------------------------------------------------------------- /testing/test_20170125_0829/01_deployERC20Token.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokkypoobah/TokenTrader/HEAD/testing/test_20170125_0829/01_deployERC20Token.sh -------------------------------------------------------------------------------- /testing/test_20170125_0829/02_deployTokenTraderFactory.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokkypoobah/TokenTrader/HEAD/testing/test_20170125_0829/02_deployTokenTraderFactory.sh -------------------------------------------------------------------------------- /testing/test_20170125_0829/03_executeOrder.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokkypoobah/TokenTrader/HEAD/testing/test_20170125_0829/03_executeOrder.sh -------------------------------------------------------------------------------- /testing/test_20170125_0829/04_testOther.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokkypoobah/TokenTrader/HEAD/testing/test_20170125_0829/04_testOther.sh -------------------------------------------------------------------------------- /testing/test_20170125_0829/05_checkEvents.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokkypoobah/TokenTrader/HEAD/testing/test_20170125_0829/05_checkEvents.sh -------------------------------------------------------------------------------- /testing/test_20170125_0829/GNTTokenTraderFactory.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokkypoobah/TokenTrader/HEAD/testing/test_20170125_0829/GNTTokenTraderFactory.sol -------------------------------------------------------------------------------- /testing/test_20170125_0829/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokkypoobah/TokenTrader/HEAD/testing/test_20170125_0829/README.md -------------------------------------------------------------------------------- /testing/test_20170125_0829/TestERC20Token.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokkypoobah/TokenTrader/HEAD/testing/test_20170125_0829/TestERC20Token.sol -------------------------------------------------------------------------------- /testing/test_20170125_0829/TokenSellerFactory.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokkypoobah/TokenTrader/HEAD/testing/test_20170125_0829/TokenSellerFactory.sol -------------------------------------------------------------------------------- /testing/test_20170125_0829/TokenTraderFactory.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokkypoobah/TokenTrader/HEAD/testing/test_20170125_0829/TokenTraderFactory.sol -------------------------------------------------------------------------------- /testing/test_20170125_0829/eventResults.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokkypoobah/TokenTrader/HEAD/testing/test_20170125_0829/eventResults.txt -------------------------------------------------------------------------------- /testing/test_20170125_0829/executionOutput.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokkypoobah/TokenTrader/HEAD/testing/test_20170125_0829/executionOutput.txt -------------------------------------------------------------------------------- /testing/test_20170125_0829/executionResults.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokkypoobah/TokenTrader/HEAD/testing/test_20170125_0829/executionResults.txt -------------------------------------------------------------------------------- /testing/test_20170125_0829/factoryData.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokkypoobah/TokenTrader/HEAD/testing/test_20170125_0829/factoryData.txt -------------------------------------------------------------------------------- /testing/test_20170125_0829/factoryOutput.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokkypoobah/TokenTrader/HEAD/testing/test_20170125_0829/factoryOutput.txt -------------------------------------------------------------------------------- /testing/test_20170125_0829/factoryResults.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokkypoobah/TokenTrader/HEAD/testing/test_20170125_0829/factoryResults.txt -------------------------------------------------------------------------------- /testing/test_20170125_0829/genesis.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokkypoobah/TokenTrader/HEAD/testing/test_20170125_0829/genesis.json -------------------------------------------------------------------------------- /testing/test_20170125_0829/otherOutput.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokkypoobah/TokenTrader/HEAD/testing/test_20170125_0829/otherOutput.txt -------------------------------------------------------------------------------- /testing/test_20170125_0829/otherResults.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokkypoobah/TokenTrader/HEAD/testing/test_20170125_0829/otherResults.txt -------------------------------------------------------------------------------- /testing/test_20170125_0829/settings.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokkypoobah/TokenTrader/HEAD/testing/test_20170125_0829/settings.txt -------------------------------------------------------------------------------- /testing/test_20170125_0829/stripCrLf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokkypoobah/TokenTrader/HEAD/testing/test_20170125_0829/stripCrLf -------------------------------------------------------------------------------- /testing/test_20170125_0829/testchain/keystore/UTC--2016-12-16T01-36-05.134620242Z--000d1009bd8f0b1301cc5edc28ed1222a3ce671e: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokkypoobah/TokenTrader/HEAD/testing/test_20170125_0829/testchain/keystore/UTC--2016-12-16T01-36-05.134620242Z--000d1009bd8f0b1301cc5edc28ed1222a3ce671e -------------------------------------------------------------------------------- /testing/test_20170125_0829/testchain/keystore/UTC--2016-12-16T01-36-45.681050789Z--0014060ff383c9b21c6840a3b14aab06741e5c49: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokkypoobah/TokenTrader/HEAD/testing/test_20170125_0829/testchain/keystore/UTC--2016-12-16T01-36-45.681050789Z--0014060ff383c9b21c6840a3b14aab06741e5c49 -------------------------------------------------------------------------------- /testing/test_20170125_0829/testchain/keystore/UTC--2016-12-16T01-37-12.717455318Z--0020017ba4c67f76c76b1af8c41821ee54f37171: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokkypoobah/TokenTrader/HEAD/testing/test_20170125_0829/testchain/keystore/UTC--2016-12-16T01-37-12.717455318Z--0020017ba4c67f76c76b1af8c41821ee54f37171 -------------------------------------------------------------------------------- /testing/test_20170125_0829/testchain/keystore/UTC--2016-12-16T01-37-37.923741925Z--0036f6addb6d64684390f55a92f0f4988266901b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokkypoobah/TokenTrader/HEAD/testing/test_20170125_0829/testchain/keystore/UTC--2016-12-16T01-37-37.923741925Z--0036f6addb6d64684390f55a92f0f4988266901b -------------------------------------------------------------------------------- /testing/test_20170125_0829/testpassword: -------------------------------------------------------------------------------- 1 | testtest 2 | -------------------------------------------------------------------------------- /testing/test_20170125_0829/tokenData.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokkypoobah/TokenTrader/HEAD/testing/test_20170125_0829/tokenData.txt -------------------------------------------------------------------------------- /testing/test_20170125_0829/tokenOutput.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokkypoobah/TokenTrader/HEAD/testing/test_20170125_0829/tokenOutput.txt -------------------------------------------------------------------------------- /testing/test_20170125_0829/tokenResults.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokkypoobah/TokenTrader/HEAD/testing/test_20170125_0829/tokenResults.txt -------------------------------------------------------------------------------- /testing/test_20170205_1849/00_runGeth.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokkypoobah/TokenTrader/HEAD/testing/test_20170205_1849/00_runGeth.sh -------------------------------------------------------------------------------- /testing/test_20170205_1849/01_deployERC20Token.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokkypoobah/TokenTrader/HEAD/testing/test_20170205_1849/01_deployERC20Token.sh -------------------------------------------------------------------------------- /testing/test_20170205_1849/02_deployTokenTraderFactory.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokkypoobah/TokenTrader/HEAD/testing/test_20170205_1849/02_deployTokenTraderFactory.sh -------------------------------------------------------------------------------- /testing/test_20170205_1849/03_executeOrder.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokkypoobah/TokenTrader/HEAD/testing/test_20170205_1849/03_executeOrder.sh -------------------------------------------------------------------------------- /testing/test_20170205_1849/04_testOther.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokkypoobah/TokenTrader/HEAD/testing/test_20170205_1849/04_testOther.sh -------------------------------------------------------------------------------- /testing/test_20170205_1849/05_testBug.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokkypoobah/TokenTrader/HEAD/testing/test_20170205_1849/05_testBug.sh -------------------------------------------------------------------------------- /testing/test_20170205_1849/06_checkEvents.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokkypoobah/TokenTrader/HEAD/testing/test_20170205_1849/06_checkEvents.sh -------------------------------------------------------------------------------- /testing/test_20170205_1849/GNTTokenTraderFactory.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokkypoobah/TokenTrader/HEAD/testing/test_20170205_1849/GNTTokenTraderFactory.sol -------------------------------------------------------------------------------- /testing/test_20170205_1849/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokkypoobah/TokenTrader/HEAD/testing/test_20170205_1849/README.md -------------------------------------------------------------------------------- /testing/test_20170205_1849/TestERC20Token.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokkypoobah/TokenTrader/HEAD/testing/test_20170205_1849/TestERC20Token.sol -------------------------------------------------------------------------------- /testing/test_20170205_1849/TokenSellerFactory.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokkypoobah/TokenTrader/HEAD/testing/test_20170205_1849/TokenSellerFactory.sol -------------------------------------------------------------------------------- /testing/test_20170205_1849/TokenTraderFactory.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokkypoobah/TokenTrader/HEAD/testing/test_20170205_1849/TokenTraderFactory.sol -------------------------------------------------------------------------------- /testing/test_20170205_1849/bugOutput.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokkypoobah/TokenTrader/HEAD/testing/test_20170205_1849/bugOutput.txt -------------------------------------------------------------------------------- /testing/test_20170205_1849/bugResults.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokkypoobah/TokenTrader/HEAD/testing/test_20170205_1849/bugResults.txt -------------------------------------------------------------------------------- /testing/test_20170205_1849/eventResults.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokkypoobah/TokenTrader/HEAD/testing/test_20170205_1849/eventResults.txt -------------------------------------------------------------------------------- /testing/test_20170205_1849/executionOutput.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokkypoobah/TokenTrader/HEAD/testing/test_20170205_1849/executionOutput.txt -------------------------------------------------------------------------------- /testing/test_20170205_1849/executionResults.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokkypoobah/TokenTrader/HEAD/testing/test_20170205_1849/executionResults.txt -------------------------------------------------------------------------------- /testing/test_20170205_1849/factoryData.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokkypoobah/TokenTrader/HEAD/testing/test_20170205_1849/factoryData.txt -------------------------------------------------------------------------------- /testing/test_20170205_1849/factoryOutput.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokkypoobah/TokenTrader/HEAD/testing/test_20170205_1849/factoryOutput.txt -------------------------------------------------------------------------------- /testing/test_20170205_1849/factoryResults.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokkypoobah/TokenTrader/HEAD/testing/test_20170205_1849/factoryResults.txt -------------------------------------------------------------------------------- /testing/test_20170205_1849/genesis.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokkypoobah/TokenTrader/HEAD/testing/test_20170205_1849/genesis.json -------------------------------------------------------------------------------- /testing/test_20170205_1849/otherOutput.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokkypoobah/TokenTrader/HEAD/testing/test_20170205_1849/otherOutput.txt -------------------------------------------------------------------------------- /testing/test_20170205_1849/otherResults.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokkypoobah/TokenTrader/HEAD/testing/test_20170205_1849/otherResults.txt -------------------------------------------------------------------------------- /testing/test_20170205_1849/settings.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokkypoobah/TokenTrader/HEAD/testing/test_20170205_1849/settings.txt -------------------------------------------------------------------------------- /testing/test_20170205_1849/stripCrLf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokkypoobah/TokenTrader/HEAD/testing/test_20170205_1849/stripCrLf -------------------------------------------------------------------------------- /testing/test_20170205_1849/testchain/keystore/UTC--2016-12-16T01-36-05.134620242Z--000d1009bd8f0b1301cc5edc28ed1222a3ce671e: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokkypoobah/TokenTrader/HEAD/testing/test_20170205_1849/testchain/keystore/UTC--2016-12-16T01-36-05.134620242Z--000d1009bd8f0b1301cc5edc28ed1222a3ce671e -------------------------------------------------------------------------------- /testing/test_20170205_1849/testchain/keystore/UTC--2016-12-16T01-36-45.681050789Z--0014060ff383c9b21c6840a3b14aab06741e5c49: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokkypoobah/TokenTrader/HEAD/testing/test_20170205_1849/testchain/keystore/UTC--2016-12-16T01-36-45.681050789Z--0014060ff383c9b21c6840a3b14aab06741e5c49 -------------------------------------------------------------------------------- /testing/test_20170205_1849/testchain/keystore/UTC--2016-12-16T01-37-12.717455318Z--0020017ba4c67f76c76b1af8c41821ee54f37171: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokkypoobah/TokenTrader/HEAD/testing/test_20170205_1849/testchain/keystore/UTC--2016-12-16T01-37-12.717455318Z--0020017ba4c67f76c76b1af8c41821ee54f37171 -------------------------------------------------------------------------------- /testing/test_20170205_1849/testchain/keystore/UTC--2016-12-16T01-37-37.923741925Z--0036f6addb6d64684390f55a92f0f4988266901b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokkypoobah/TokenTrader/HEAD/testing/test_20170205_1849/testchain/keystore/UTC--2016-12-16T01-37-37.923741925Z--0036f6addb6d64684390f55a92f0f4988266901b -------------------------------------------------------------------------------- /testing/test_20170205_1849/testpassword: -------------------------------------------------------------------------------- 1 | testtest 2 | -------------------------------------------------------------------------------- /testing/test_20170205_1849/tokenData.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokkypoobah/TokenTrader/HEAD/testing/test_20170205_1849/tokenData.txt -------------------------------------------------------------------------------- /testing/test_20170205_1849/tokenOutput.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokkypoobah/TokenTrader/HEAD/testing/test_20170205_1849/tokenOutput.txt -------------------------------------------------------------------------------- /testing/test_20170205_1849/tokenResults.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokkypoobah/TokenTrader/HEAD/testing/test_20170205_1849/tokenResults.txt --------------------------------------------------------------------------------