Search
How Cross-Chain Composability is the Future of Decentralized Finance
15.5.2020
Decentralized finance faces a liquidity issue, but there are multiple solutions in the works that hope to tap into Bitcoin’s massive market cap
New Wrapped Bitcoin Platform Allows You to Transact in BTC Using Tezos
8.4.2020
On April 8, the Bitcoin Association Switzerland (BAS) announced the launch of a new wrapped bitcoin project called Tzbtc. The token will be used on the Tezos network and each token will be backed 1:1 with BTC. The project is now the fourth tokenized project that leverages BTC on another blockchain....
Wrapped Bitcoin Aims to Kickstart DeFi on Tezos Blockchain
8.4.2020
Bitcoin Association Switzerland is partnering with the Tezos Foundation and others to create tzBTC, a bitcoin-pegged token meant to power DeFi applications on Tezos
Currying in CSS
6.3.2020
Funny timing on this I was just looking at the website for Utopia (which is a responsive type project which I hate to admit I don't fully understand) and I came across some CSS they show off that looked like this:
:root {
--fluid-max-negative: (1 / var(--fluid-max-ratio)...
Defi for Bitcoin: Collateral Peg Platform Provides Noncustodial BTC Lending on Ethereum
19.2.2020
During the second week of February, a new project called tBTC was unveiled that is similar to the Wrapped Bitcoin (WBTC) created with the Ethereum network. However, the tBTC effort claims to be a noncustodial application that allows users to deposit BTC, mint tBTC, and lend it with interest. Also...
Most of MakerDAO’s Asset Value Is in Only a Few Addresses
29.1.2020
Though the industry is growing rapidly, a very small portion of addresses hold the majority of assets being locked and borrowed in the DeFi space
IDEG Reports Launch of New Bitcoin Trusts in Asia With Coinbase as Custodian
12.12.2019
According to a recent press release from IDEG Investment Limited, “Asia’s First Bitcoin Trusts” have been launched “as a traditional and comfortable way for ‘old money’ to invest in digital assets.” The two trusts, Asia Bitcoin Trust I and Atlas Mining...
Indian Supreme Court Wraps up Crypto Hearing for the Year
19.11.2019
The Supreme Court of India called on for hearing on Monday the writ petitions challenging the banking restriction by the Reserve Bank of India (RBI). After hearing from the RBI’s counsel, the court wrapped up the case for the year. Its decision follows Lok Sabha, the lower house of the Indian...
Wrapped Crypto Tokens, Explained
26.10.2019
Cryptocurrencies with homes on many different blockchains such as Zcash are getting wrapped equivalents on Ethereum. What does this mean for the crypto space?
Privacy Coin Zcash Community to Develop Wrapped Token for Ethereum
13.10.2019
The Zcash community is purportedly developing a wrapped token for the Ethereum network
SLP Hackathon Produces a Variety of Innovative Token Ideas
2.10.2019
Software developers wrapped up the first Simple Ledger Protocol Virtual Hackathon (SLPVH) which ended on September 30 with the first place prize awarded to the Project Ignite team. The developers’ project, called Hamingja, is a non-tradeable SLP token that utilizes checkdatasig covenants...
The 3 Top Drivers of Crypto Adoption – BCH City Wrap-Up
8.9.2019
With Townsville, Australia’s Bitcoin Cash City conference and related post-conference events now all wrapped up, participants are heading home to get back to the grind. As such, it stands to take a look at the conference as a whole and BCH adoption in and beyond the land of Oz, which...
Emergent Coding, Adoption Incentives and Practical Use – Bitcoin Cash City, Day 2
5.9.2019
The Bitcoin Cash City conference in North Queensland has just wrapped up, and participants are now unwinding after two consecutive days of presentations, product demos, free gifts, and plenty of food. Tomorrow, September 6, there will be a special workshop for developers, and then the conference...
5 Key Concepts from Day One at Bitcoin Cash City
5.9.2019
With day one of North Queensland’s Bitcoin Cash City all wrapped up, conference attendees were left with an overflow of big ideas to distill, process, and potentially integrate. These include underwriting merchant adoption, building tech parks and mining operations, BIP70 applications...
Register Now for An Event Apart 2019 in Chicago
1.8.2019
(This is a sponsored post.)
An Event Apart juuuuust wrapped up its Washington D.C. event yesterday. We hope we got to see you at the event but if not, perhaps we'll see you at the next one happening Aug. 28-28 in Chicago.
Why would you go, you might ask? It's three days of experts imparting their...
Ethereum’s Wrapped Bitcoin Set to Eclipse Lightning Network Capacity
19.7.2019
Since the project launched a little over six months ago, Wrapped Bitcoin (WBTC) has roughly $5.9 million or 558 BTC locked into the system. At the rate WBTC’s token contract is climbing, the project is close to surpassing the Lightning Network’s capacity in the near future. Also read:...
Switcheo Unveils New Wrapped Bitcoin Markets
15.7.2019
Switcheo has announced its decision of adding Wrapped Bitcoin Markets, referred to as WBTC, to its DEX (decentralized crypto exchange). Switcheo made an official announcement through their blog post on Medium on 8th July 2019. Switcheo Network also posted a tweet on the same day, updating...
Could Grouping HTML Classes Make Them More Readable?
22.4.2019
You can have multiple classes on an HTML element:
<div class="module p-2"></div>
Nothing incorrect or invalid there at all. It has two classes. In CSS, both of these will apply:
.module { }
.p-2 { }
const div...
Accessible SVG Icons With Inline Sprites
7.12.2018
This is a great look at accessible SVG markup patterns by Marco Hengstenberg. Here's the ideal example:
<button type="button">
Menu
<svg class="svg-icon"
role="img"
height="10"
width="10"
viewBox="0 0 10 10"
aria-hidden="true"
focusable="false">
...