From 52b206c7d60568d951dcfed0f587ef775cca84e7 Mon Sep 17 00:00:00 2001 From: OutCast3k Date: Mon, 13 Mar 2017 21:12:06 +0000 Subject: [PATCH 01/10] added a donation button to the #newTransaction page --- index.html | 4 ++++ js/coinbin.js | 23 +++++++++++++++++++++++ sha1sum | 6 +++--- 3 files changed, 30 insertions(+), 3 deletions(-) diff --git a/index.html b/index.html index 79c12f68..035a70a2 100644 --- a/index.html +++ b/index.html @@ -563,7 +563,11 @@

Transaction Create a new transaction


+
+ + Donate! +

Enter the address and amount you wish to make a payment to.

diff --git a/js/coinbin.js b/js/coinbin.js index fd84e9ef..b87b02cb 100644 --- a/js/coinbin.js +++ b/js/coinbin.js @@ -592,6 +592,29 @@ $(document).ready(function() { totalInputAmount(); }); + $("#donateTxBtn").click(function(){ + + var exists = false; + + $.each($("#recipients .address"), function(i,o){ + if($(o).val() == coinjs.developer){ + exists = true; + $(o).fadeOut().fadeIn(); + return true; + } + }); + + if(!exists){ + if($("#recipients .recipient:last .address:last").val() != ""){ + $("#recipients .addressAddTo:first").click(); + }; + + $("#recipients .recipient:last .address:last").val(coinjs.developer).fadeOut().fadeIn(); + + return true; + } + }); + /* code for the qr code scanner */ $(".qrcodeScanner").click(function(){ diff --git a/sha1sum b/sha1sum index 29028543..24f87512 100644 --- a/sha1sum +++ b/sha1sum @@ -1,8 +1,8 @@ ----- Version 1.2 2017.02.17 ---- +---- Version 1.2 2017.03.13 ---- 77e4519962e2f6a9fc93342137dbb31c33b76b04 ./js/aes.js 3a09a8fc0cfe828b57fc798d668234d0490ee1a6 ./js/bootstrap-datetimepicker.min.js 253711c6d825de55a8360552573be950da180614 ./js/bootstrap.min.js -0ee30f1dc9e38c62e99022e185706969ccfd14f1 ./js/coinbin.js +00aaf959783209cd348a746542b3e32bcdf333e3 ./js/coinbin.js f23a41e5bf56b98790c68502feae569459a60341 ./js/coin.js 988565bc2cb402d63ed5c5fd7ff47c4278efc2c5 ./js/collapse.js 9ba5ede3d7f9d4c8fd623395f196adfdcf7e970f ./js/crypto-min.js @@ -30,4 +30,4 @@ de51a8494180a6db074af2dee2383f0a363c5b08 ./fonts/glyphicons-halflings-regular.s 278e49a86e634da6f2a02f3b47dd9d2a8f26210f ./fonts/glyphicons-halflings-regular.woff 44bc1850f570972267b169ae18f1cb06b611ffa2 ./fonts/glyphicons-halflings-regular.ttf b4d3a33913a0877684909f7edf8b79bf9192b0a7 ./README.md -3b0c0def7addfffad28a8d83f6a279ca7ceff5f7 ./index.html +cfc16c16343e858c4dfc40ed699a933576dc3b55 ./index.html From d5fe5ea8281756de335b70dd047370b85f825d33 Mon Sep 17 00:00:00 2001 From: OutCast3k Date: Tue, 14 Mar 2017 20:51:51 +0000 Subject: [PATCH 02/10] increase to default transaction fee (and donations) on the #wallet section, as well as links to bitcoinfees.21.co to assist with choosing a better transaction fee --- index.html | 8 ++++---- sha1sum | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/index.html b/index.html index 035a70a2..673866b3 100644 --- a/index.html +++ b/index.html @@ -222,12 +222,12 @@

Open Wallet browser based bitcoin wallet

- - + +
- +

@@ -643,7 +643,7 @@

Transaction Create a new transaction

- +
diff --git a/sha1sum b/sha1sum index 24f87512..fd151ddf 100644 --- a/sha1sum +++ b/sha1sum @@ -1,4 +1,4 @@ ----- Version 1.2 2017.03.13 ---- +---- Version 1.2 2017.03.14 ---- 77e4519962e2f6a9fc93342137dbb31c33b76b04 ./js/aes.js 3a09a8fc0cfe828b57fc798d668234d0490ee1a6 ./js/bootstrap-datetimepicker.min.js 253711c6d825de55a8360552573be950da180614 ./js/bootstrap.min.js @@ -30,4 +30,4 @@ de51a8494180a6db074af2dee2383f0a363c5b08 ./fonts/glyphicons-halflings-regular.s 278e49a86e634da6f2a02f3b47dd9d2a8f26210f ./fonts/glyphicons-halflings-regular.woff 44bc1850f570972267b169ae18f1cb06b611ffa2 ./fonts/glyphicons-halflings-regular.ttf b4d3a33913a0877684909f7edf8b79bf9192b0a7 ./README.md -cfc16c16343e858c4dfc40ed699a933576dc3b55 ./index.html +5bf3ba82a7c8c798f129d9fcaffb8161095e308c ./index.html From 6c480a11020cc7cb69a540abeda578462fabd843 Mon Sep 17 00:00:00 2001 From: OutCast3k Date: Sun, 10 Sep 2017 13:18:31 +0000 Subject: [PATCH 03/10] segwit support added --- README.md | 3 +- index.html | 173 ++++++++++++++++++++++++++------------- js/coin.js | 220 ++++++++++++++++++++++++++++++++++++++++++++++++-- js/coinbin.js | 50 +++++++++++- sha1sum | 10 +-- 5 files changed, 384 insertions(+), 72 deletions(-) diff --git a/README.md b/README.md index db349114..995ce989 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ coinbin ======= -A Open Source Browser Based Bitcoin Wallet. Version 1.2 beta by OutCast3k +A Open Source Browser Based Bitcoin Wallet. Version 1.3 beta by OutCast3k Live version available at http://coinb.in/ or http://4zpinp6gdkjfplhk.onion @@ -28,5 +28,6 @@ Coinb.in supports a number of key features such as: - HD (bip32) support - Supports altcoins such as litecoin - Replace by fee (RBF) Support +- Segwit support Donate to 1CWHWkTWaq1K5hevimJia3cyinQsrgXUvg to see more development! diff --git a/index.html b/index.html index 673866b3..5409ac62 100644 --- a/index.html +++ b/index.html @@ -58,7 +58,8 @@