ethereum credit card

ABOUT ETHEREUM CARDS          An ethereum debit card allows you to manage your money simply and securely, in person, online, over the phone or through the mail.Having a Uquid account helps you deposit money into your card, keep track of your spending and review your balance.An ethereum debit card can be used whether you're home or away, at any time of day or night, so there's never a need for cash.​Wherever you use an ethereum debit card, you're fully protected.If, for example, you're unfortunate enough to book a holiday with an airline or travel agent that becomes insolvent, we'll help you get your money back.Similarly, if you order something that is not delivered, not what you ordered, or arrives faulty or damaged, you can receive a full refund.It's a safe, secure way to pay, backed up by proven security technologies like Verified by Visa and Chip and PINIt's more versatile than cash, and if you lose it, you can order a replacement.As millions of VISA customers around the world have found, you can easily use your card everyday, everywhere, and for everything.
BENEFITS OF ETHEREUM CARDS           â€‹I just read The Divide by Matt Taibbi.Among many other horrors, he describes in chapter eight the collections process on delinquent credit cards, focusing in particular on abuses revealed by a whistleblower at Chase.Banks looking to raise quick cash will often sell delinquent accounts to a company that will attempt to collect.The buyer wants accounts with actual judgements against them, meaning the bank took the borrower to court and a judge said the money was actually owed.The whistleblower found that many of the "judgements" sold by Chase were not actually valid.In some cases the cardholders weren't even delinquent.In others, Chase actually owed the cardholders.Of the valid judgements, many were never contested by the cardholder, because they never knew they were being taken to court.As you've seen in the movies, you're supposed to be "served."The banks were serving people by, for example, sending postcards to old addresses.They pay bulk rates to companies that do the crappiest job they can get away with, because if banks had to actually pay lawyers to take every debtor to court, credit cards wouldn't be a profitable business.
It's better for the banks if debtors never show up.In some cases, the process servers even throw away the summonses they're supposed to serve, but swear that they properly served the debtor.Debtors who don't show up to court lose by "default judgement."If they get the summons, they often just assume the bank is correct and pay the supposed balance.If they show up in court, they often don't bring evidence.But if they actually contest the case, the bank has to dig up old documents; or, if the bank has already sold the debt, the collector is in trouble, because the banks intentionally don't include all the documentation.If the collector needs more paperwork, the bank sells it to them.Often at this point the collector will simply drop the case.But it seldom gets that far.According to Taibbi, "the bulk of the credit card collection business is conducted without any supporting documentation showing up or being seen by human eyes at any part of the process....in the overwhelmed modern court system, simply attesting to having the right documentation works just as well as really having it."
According to one judge, "On a regular basis this court encounters defendants being sued on the same debt by more than one creditor alleging it is the assignee of the original credit card obligation."Once there's a real judgement, collectors can do just about anything: attach salaries, put liens on property, or even confiscate cars and furniture.Some people don't even know they have a judgemnt against them, until they try to sell their house.To anyone familiar with blockchains, all this has to seem completely insane.bitcoin miner software reviewsWe have immutable public records now.bitcoin atm map ukWe don't have to put up with this nonsense.ethereum price february 2017Put credit cards in a smart contract.bitcoin ask bid
Pay out loans through the contract, and take payments through it.Anyone can check and see whether payments are due.Put a nice UI on it and a judge can just check all the records on a laptop.We ensure accuracy, but we also make court less expensive.Of course, we can't put people's names, birthdates, and SSNs on the blockchain.Instead, the bank puts that stuff plus a random salt in an identity document, and hashes it.The hash goes on chain.To take a borrower to court, the bank reveals the preimage in closed session; the court checks that it matches the hash, and takes that as evidence that the account matches the real-world identity.bitcoin calculator in a poolThe bank would also need to produce the original paper application, signed by the borrower, giving the bank the right to collect.bitcoin guy diedIf the preimage doesn't match this document, the debt is invalid.
The borrower could write is Ethereum address on the application, using a BIP39 list of words.Alternatively, the borrower could import the identity hash into an app, and associate it with an address by sending the hash to the lender contract.We can add events for summonses and judgments, publishing hashes of documents hosted on Swarm.As long as the borrower is still monitoring the contract, he'll be informed of legal actions.There's an interesting side effect of all this.To avoid losing money, the lender has to do sufficient identify verification of borrowers.This means any address in the Lender contract can be generally trusted to have some kind of real-world identity.You can even get a rough estimate of the lender's confidence, by looking at the credit limit.It's not impossible for someone to have more than one account with the lender, but the lender is probably going to limit that too.They could have accounts with multiple lenders, but the lenders have an incentive to share identity documents so they can see how much debt a person has.
I always thought we'd need good identity verification before we can have loans on the blockchain.But actually, by putting loans on the blockchain we can get identities.Having mostly sybil-proof identities would let us do all sorts of other cool stuff, like voting systems that really give us one vote per person, instead of having to weight votes by account balances all the time.The above contract just pays money directly to the borrower, who has to initiate a separate transfer to make a purchase.We don't actually need two transfers; we can add a function that lets the user send money directly from the lender contract to a merchant.We can even add a bytes32 field to this method, so we can integrate with serverless shopping carts.This means we have to change the shopping cart contract in the last post, so it can accept a purchaser address as a parameter, instead of just using msg.sender directly.Otherwise, the "purchaser" will just be the lender contract.For now, we aren't at credit card scale, but we might be soon.