Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

There is a problem with one or more of your inputs, please check and try again #125

Open
wants to merge 26 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
2126bed
Edit for testnet.
martin-key Nov 10, 2017
c665862
Added settings for mailjet
martin-key Nov 10, 2017
ad20be4
Update README.md
martin-key Nov 10, 2017
b339544
Update README.md
martin-key Nov 10, 2017
3e2d5c7
Added disclaimer in the readme.
martin-key Nov 19, 2017
cc176b7
Update index.html
martin-key Nov 19, 2017
6b8adda
Update index.html
martin-key Nov 19, 2017
7ce8471
Update index.html
martin-key Nov 19, 2017
e10c66a
Update index.html
martin-key Nov 19, 2017
9d8d8b1
added segwit redeemscript to wallet, fixed typo, added links
OutCast3k Dec 9, 2017
22c5132
added new #fee section to coinb.in
OutCast3k Jan 1, 2018
7915f9d
added css changes
OutCast3k Jan 1, 2018
10e5af5
various tweaks made to the #fees page
OutCast3k Jan 3, 2018
19f693b
add css changes
OutCast3k Jan 3, 2018
2154a99
small bugfix so that the #wallet inputs/outputs are properly set on t…
OutCast3k Jan 4, 2018
103b9f8
few minor changes, plus the wallet now enables rbf by default
OutCast3k Jan 6, 2018
e6a5a32
couple of minor updates
OutCast3k Jan 11, 2018
0cd1676
some changes and bug fixes to the fees page
OutCast3k Jan 15, 2018
4ec9b37
updated readme
OutCast3k Jan 15, 2018
d744736
Add Bitcoin Gold support
h4x3rotab Mar 4, 2018
15eb066
Edit for testnet.
martin-key Nov 10, 2017
ee6b6b8
Added settings for mailjet
martin-key Nov 10, 2017
ac2b727
Added again the transaction
martin-key Mar 4, 2018
fb2fae3
WIP transaction signing
martin-key Mar 4, 2018
8c01b30
Jesus fscking crust
lnovy Mar 22, 2018
e02fa93
Merge pull request #4 from lnovy/master
martin-key Mar 22, 2018
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 19 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,25 @@
coinbin
=======

### None of the developers bare responsibility if a user got scammed. By using this software you are agreeing to bare all the responsibility if you lose funds. The code is open source and can be checked each time when you open a site using this code. We do suggest you to do so!

## Tasks:

- [x] Change wallet symbols for making it compatible to BTG

- [x] Rebrand the UX

- [ ] Add transaction signing with replay protection

- [ ] Add beaming raw transaction to node

- [ ] Uncomment and improve existion features

A Open Source Browser Based Bitcoin Wallet. Version 1.3 beta by OutCast3k

Live version available at http://coinb.in/ or http://4zpinp6gdkjfplhk.onion
Live version available at http://btgwallet.online

Github URL: https://github.com/OutCast3k/coinbin/
Github URL: https://github.com/poolgold/coinbin

Coinb.in supports a number of key features such as:

Expand All @@ -28,6 +42,7 @@ 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
- Segwit Support
- Fee calculator - https://coinb.in/#fees

Donate to 1CWHWkTWaq1K5hevimJia3cyinQsrgXUvg to see more development!
Donate to 3K1oFZMks41C7qDYBsr72SYjapLqDuSYuN to see more development!
86 changes: 86 additions & 0 deletions css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -32,3 +32,89 @@ body {
text-overflow: ellipsis;
display: block;
}

#fees .txi_regular {
background: #d3d3d3;
}

#fees .txi_segwit {
background: #bae1ff;
}

#fees .txi_multisig {
background: #baffc9;
}

#fees .txi_hodl {
background: #ffdfba;
}

#fees .txi_unknown {
background: #ffb3ba;
}

#fees .txo_p2pkh {
background: #E679C8;
}

#fees .txo_p2sh {
background: #FAFE92;
}

#fees .txinputs {
}

#fees .txoutputs {
}

.hideOverflow {
overflow:hidden;
white-space:nowrap;
text-overflow:ellipsis;
}

#fees .slider {
-webkit-appearance: none;
appearance: none;
width: 100%;
height: 30px;
outline: none;
opacity: 0.7;
-webkit-transition: .2s;
transition: opacity .2s;
border: 2px dotted #c3c3c3;
}

#fees .sliderbtn {
height: 30px;
width: 30px;
padding: 0px;
margin: 0px;
border: 0px;
}

#fees .slider:hover {
opacity: 1;
}

#fees .slider::-webkit-slider-thumb {
-webkit-appearance: none;
appearance: none;
width: 32px;
height: 32px;
border: 0;
background: url('https://coinb.in/images/btc32x.png');
cursor: pointer;
}

#fees .slider::-moz-range-thumb {
width: 32px;
height: 32px;
border: 0;
background: url('https://coinb.in/images/btc32x.png');
cursor: pointer;
}

#fees .total {
font-size: 100px;
}
Binary file added images/btc32x.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified images/coinbin.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
342 changes: 298 additions & 44 deletions index.html

Large diffs are not rendered by default.

Loading