Think crypto is confusing?

You're right.

Let's make it easier.

Here's Crypto Terminology 101: 🧵

Altcoin:

Any coin that's not #Bitcoin

Ether (#ETH) is the second most popular coin overall and the most well-known Altcoin.

Ether is the native cryptocurrency on the Ethereum blockchain.

There are thousands of other altcoins, but for now, this is the one to know.
Bitcoin: (#BTC)

The first decentralized digital currency.

Launched in 2009 by an unknown person or organization known only as "Satoshi Nakamoto."

It is the most famous, and most valuable cryptocurrency.
Blockchain:

The core tech behind Bitcoin and most other cryptocurrencies.

An open, distributed, general ledger where transactions are organized into blocks which are then connected using cryptography.
Coin:

A store of digital value that lives on a blockchain.

Some blockchains, such as Bitcoin, use the same name for both the network and the coin.

Stable coins are another type of cryptocurrency which are backed by fiat currency (e.g the US dollar) or commodities such as Gold.
Cryptocurrency:

A currency that is digital & decentralized.

Crypto removes the need for a trusted authority or "middle-man" to certify the validity of a transaction.

Can be used to buy & sell goods or as a long-term store of value.
Decentralization:

The transfer of authority from a centralized organization (e.g. banks or governments) to a distributed public network.

Blockchains are considered to be decentralized due to the fact data is stored across multiple locations in a peer-to-peer network.
Decentralized Applications: (DApps)

Ethereum is currently the main network supporting DApps.

Put simply, DApps are applications designed to run on a blockchain and carry out tasks without the need for intermediaries.
Decentralized Autonomous Organization: (DAO)

An organization, built on a blockchain, working without oversight from a central government or authority.

Operated by users (aka shareholders) with a transparent set of rules encoded as a computer program.
DeFi: (Decentralized Finance)

The term used to describe financial activities conducted without the involvement of an intermediary.

The need for banks, governments or financial institutions to validate transactions is removed.
Distributed Ledger:

A database that uses independent computers (referred to as nodes) to record, share, and synchronize transactions.

The data is spread across multiple entities, locations, or institutions.

Unlike in a centralized database, there is no central administrator.
Exchange:

Coinbase, Binance, and Gemini are a few examples of centralized crypto exchanges.

Places where users can "exchnge" one type of cryptocurrency for another.

Need to buy, sell, or trade your Crypto?

An exchange is the place to be.
Ethereum:

A public, open-source, blockchain network & decentralized software platform.

Designed to allow developers to create & run new applications with "smart contract" functionality. (see below)

It also has an associated currency called "Ether."
Gas:

Just as your car requires fuel to run, so does the Ethereum network.

Each transaction uses computational resources in order to execute.

Gas, refers to the unit fee required to succesfully execute a transaction on Ethereum.
Keys: (Public & Private)

•Public – Your wallet's address. (i.e. your bank account #)

Can be shared with individuals or instituitons to send or withdraw money.

•Private – (i.e. your bank password)

Allows direct access to your crypto.

Should be kept secure & never shared.
Mining:

The process by which network nodes (computers) validate blocks or transactions and add them to a blockchain.

In order for a block to be verified, a "miner" must use a computer to solve a cryptographic problem.

Once solved, the block is considered "mined" or verified.
NFT:

Non-Fungible Token.

Fungibility refers to an object's ability to be exchanged for another of equal value.

NFT's are a type of token that are considered to be unique digital assets that have no equal token.

Digital artwork is currently the most popular form of NFT.
Smart Contract:

Similar to traditional contracts, "smart" contracts contain a set of agreements or actions between parties.

The key difference is that smart contracts contain automated actions, written in code, that are only executed once agreed upon conditions are met.
Wallet: (Hot & Cold)

A storage location for your digital assets.

•Hot: Stored online (software based) usually offered through an exchange.

•Cold: The generation and storage of private keys is done in an offline environment.
Thanks for reading!

The world of cryptocurrency is constantly evolving.

New terms, techniques, & technologies are being added daily.

I hope you found this useful and learned something new, I know I did in writing it.

For more on the future of crypto & Web 3.0 stay tuned...
As for me...

If you found this helpful, why not share?

•Retweet the first tweet and help others find this thread

•Join 30,000+ of my friends & follow me: @blakeaburge

•Thank you for reading!
https://t.co/YokOrX2SzE
For these terms & more check out the following sources:

https://t.co/NNtrN02Ldm

https://t.co/sl7VY5CLuJ

https://t.co/3VRZMQKKE9
Back to the top:
https://t.co/iLN7swhg3F

More from Blake Burge 💡

More from Crypto

1. You also have to give them a landing. It's tempting, I know, to take the pent up rage out on the only ones who respond to you (like @ProjectLincoln!) or Never Trumpers like @RadioFreeTom or @BillKristol bc they were "guilty" in the past or "waited too long" like @WalshFreedom


2. but at each of the big inflection moments where Trump lost support I've begged non-Rs to consider the fact that if Trump supporters see that they have nowhere to go, they will stay w the only people that DO accept them, & the price might actually be the collapse of democracy

3. which, until Weds, some people thought I was being hyperbolic about. I WASN'T! When the MAINSTREAM of a major political party divorces themselves from democratic norms & values & its supporters turn to a fictionalized world to justify their political party's actions, your

4. country's stability is at risk & one by-product of poor messaging on the Dem side is that extremism on the Right was able to not only take root in the Rep Party, it was able to take OVER the R party & become the party's mainstream- pinnacled w the presidential win via the EC

5. of Donald Trump, w/o the GOP paying any electoral price for their extremism. A healthy Rep Party might have found the courage to reject Trump's nomination & accept the short term costs that would have come w refusing to endorse his 2016 candidacy. But the Rep Party of 2016

You May Also Like

A brief analysis and comparison of the CSS for Twitter's PWA vs Twitter's legacy desktop website. The difference is dramatic and I'll touch on some reasons why.

Legacy site *downloads* ~630 KB CSS per theme and writing direction.

6,769 rules
9,252 selectors
16.7k declarations
3,370 unique declarations
44 media queries
36 unique colors
50 unique background colors
46 unique font sizes
39 unique z-indices

https://t.co/qyl4Bt1i5x


PWA *incrementally generates* ~30 KB CSS that handles all themes and writing directions.

735 rules
740 selectors
757 declarations
730 unique declarations
0 media queries
11 unique colors
32 unique background colors
15 unique font sizes
7 unique z-indices

https://t.co/w7oNG5KUkJ


The legacy site's CSS is what happens when hundreds of people directly write CSS over many years. Specificity wars, redundancy, a house of cards that can't be fixed. The result is extremely inefficient and error-prone styling that punishes users and developers.

The PWA's CSS is generated on-demand by a JS framework that manages styles and outputs "atomic CSS". The framework can enforce strict constraints and perform optimisations, which is why the CSS is so much smaller and safer. Style conflicts and unbounded CSS growth are avoided.