I hereby claim:
- I am troggy on github.
- I am troggy (https://keybase.io/troggy) on keybase.
- I have a public key whose fingerprint is 31B2 28A8 5FE3 066B 8A4E 2EF3 C0D0 C3FE 893E ACCF
To claim this, I am signing this object:
| # Create first wallet | |
| $ wallet-tool --wallet=first --net=REGTEST create --seed="7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f" | |
| # Create second wallet | |
| $ wallet-tool --wallet=second --net=REGTEST create --seed="7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f00" | |
| # Get xpub of the second wallet | |
| $ wallet-tool --wallet=second --net=REGTEST dump | |
| ...omitted... |
| angular.module('webApp') | |
| .directive('tnScrollTop', ['$window', function($window){ | |
| return { | |
| restrict: 'A', | |
| link: function(scope, elem, attr, ctrl) { | |
| var windowEl = angular.element($window); | |
| var handler = function() { | |
| scope.scrollTop = windowEl.scrollTop(); | |
| }; | |
| windowEl.on('scroll', scope.$apply.bind(scope, handler)); |
| jQuery.map(jQuery.find("input[ng-model='property.value'].ng-pristine").filter(function(e) { return jQuery(e).val() != ''; }), function(e) { return "-D" + jQuery(e).parents("td:first").prev().text().trim() + '="' + jQuery(e).val() + '"'; }).join(" "); |
| # Install BWS and dependecies | |
| git clone https://github.com/troggy/bitcore-wallet-service -b colu cryptoreal-bws && cd cryptoreal-bws/ && npm i && cd - | |
| # Run BWS | |
| cd cryptoreal-bws && npm start && cd - | |
| # Install Copay and dependencies | |
| git clone https://github.com/troggy/copay -b cryptoreal cryptoreal-copay && cd cryptoreal-copay/ && npm i && bower install && cd - |
I hereby claim:
To claim this, I am signing this object:
| 0x6Cb117a635dc7633B42089C607FDFc5c60b7d679 |
| 0x6Cb117a635dc7633B42089C607FDFc5c60b7d679 |
| 0xb938282d54Aa89Fceb0BAfA59E122fbc9ad82385 |
Hand 75:
[{
"M": {
"address": {
"S": "0xfa71be989ae5f7ee8a68ba65c05b4884f561a045"
},
"last": {
"S": "AqBF.BhaS7li/W0mzYejhv/onfhGuiEMjM1Ieoz+G4emhBqM=.UX7s5XnGrYrhtyA+RGzTpkLMalQXLi8FPgKN4kTlsOM=.HES6JAAAAEsCAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAA="
| pragma solidity ^0.4.18; | |
| import "zeppelin-solidity/contracts/crowdsale/price/IncreasingPriceCrowdsale.sol"; | |
| /** | |
| * @title CrowdsaleWithPresale | |
| * @dev Extension of IncreasingPriceCrowdsale contract that increases the price of tokens | |
| * once the specified period has elapsed (presale time). | |
| */ | |
| contract CrowdsaleWithPresale is IncreasingPriceCrowdsale { |