AnyLearn
All lessons
Businessbeginner

Crypto Primer for Marketers and SEOs

A working model of crypto for people who already write the content but have never actually used the product. Just enough blockchain, wallets, and exchange mechanics to stop guessing on the brief.

Not signed in โ€” your progress and quiz score won't be saved.
Lesson progress1 / 10

Why marketers need a working model of crypto

Crypto content is YMYL โ€” Your Money or Your Life โ€” which means Google holds it to the same bar as medical and financial advice. Authority, expertise, citations, author bylines. You will not survive in the SERP, and you certainly won't be cited by an AI engine, if your content reads like it was written by someone who has never opened a wallet.

The goal of this lesson is not to make you a trader. It's to give you a working model โ€” the same way a great B2B writer doesn't have to be a CTO, but does have to know what an API actually is. By the end you should be able to read a project brief, sit in a content review, and push back when something is wrong.

Full lesson text

All 10 steps on one page โ€” for reading, reference, and search.

Show

1. Why marketers need a working model of crypto

Crypto content is YMYL โ€” Your Money or Your Life โ€” which means Google holds it to the same bar as medical and financial advice. Authority, expertise, citations, author bylines. You will not survive in the SERP, and you certainly won't be cited by an AI engine, if your content reads like it was written by someone who has never opened a wallet.

The goal of this lesson is not to make you a trader. It's to give you a working model โ€” the same way a great B2B writer doesn't have to be a CTO, but does have to know what an API actually is. By the end you should be able to read a project brief, sit in a content review, and push back when something is wrong.

2. Blockchain in ninety seconds

A blockchain is an append-only public ledger that no single party controls. Think of a shared Google Sheet where:

  • Anyone can read every row.
  • New rows are added in batches called blocks, roughly every few seconds (Solana) to ten minutes (Bitcoin).
  • Each block contains a cryptographic hash of the previous one, so rewriting old rows would invalidate every block after it.
  • Thousands of independent computers (nodes) keep their own copy and agree on the next block via a consensus rule.

That's it. The rest โ€” proof-of-work vs proof-of-stake, layer 1 vs layer 2 โ€” is implementation detail. The thing that matters for content: the ledger is public, permanent, and not owned by anyone. Every transaction on it can be looked up by anyone, forever, on a block explorer like Etherscan.

3. Coins vs tokens (and why content gets this wrong)

A coin is native to its own blockchain. Bitcoin (BTC) is the coin of the Bitcoin chain. Ether (ETH) is the coin of Ethereum. SOL is the coin of Solana.

A token is issued on top of an existing chain via a smart contract. Most tokens you've heard of are ERC-20 tokens on Ethereum:

  • USDC, USDT, DAI โ€” stablecoins, each pegged to $1.
  • UNI, AAVE, LINK โ€” governance / utility tokens of major DeFi protocols.
  • PEPE, DOGE-on-ETH โ€” memecoins.

Why this matters: if a user searches "how to buy UNI", the honest answer involves Ethereum gas fees and an ERC-20-compatible wallet. If they search "how to buy BTC", it doesn't. Treat them as the same and your page is wrong.

4. Wallets: custodial vs non-custodial

This is the single most important UX concept in the entire space.

  • Custodial wallet โ€” the exchange holds your private keys. You log in with email + password + 2FA. Examples: the balance inside Coinbase, Binance, Kraken. Lose your password, you can reset it. Lose the exchange, you may lose your funds.
  • Non-custodial wallet โ€” you hold the keys, usually via a seed phrase (12 or 24 words). Examples: MetaMask, Phantom, Rabby, Ledger hardware. Lose the seed phrase, no one can recover your funds. The exchange has no power here.

The industry mantra is "not your keys, not your coins." Your content has to know which kind of wallet the reader is using, because every recovery, security, and "how to move funds" article forks at this exact decision.

5. What a centralized exchange actually does

End-to-end flow when a user buys ETH on a CEX and withdraws to their own wallet.

flowchart LR
  U["User"] --> F["Bank / card / Apple Pay"]
  F --> CEX["Exchange account (custodial)"]
  CEX --> OB["Internal order book (off-chain)"]
  OB --> Bal["Updated ETH balance"]
  Bal --> WD["Withdraw to self-custody"]
  WD --> BC["On-chain transfer"]
  BC --> SC["User's MetaMask / Ledger"]

6. CEX vs DEX in one table

Both let you swap one asset for another. They are completely different products.

CEX (Coinbase, Binance, Kraken)DEX (Uniswap, Jupiter, Curve)
CustodyExchange holds your fundsYou hold your funds in your own wallet
OnboardingEmail, password, KYCConnect a wallet, no KYC
Fiat on-rampYes โ€” bank transfer, cardNo, mostly crypto-in / crypto-out
Liquidity modelOrder bookLiquidity pools (AMM)
Failure modeExchange insolvency (FTX, Mt. Gox)Smart-contract exploit, bad slippage
Best forBeginners, fiat conversionLong-tail tokens, on-chain users

In search intent: "how to buy X" almost always means a CEX. "How to swap X for Y" usually means a DEX. Your page should pick a lane.

7. The buyer's journey, walked through

Map this in your head and you can write any "how to buy" page from memory.

  1. User signs up at a CEX (Coinbase, say). Verifies email and runs KYC โ€” passport + selfie. This step is non-negotiable in most jurisdictions and takes anywhere from 2 minutes to 3 days.
  2. They link a payment method: bank transfer (cheapest, slowest) or debit card (instant, fee-heavy).
  3. They buy ETH. The CEX matches them against its order book. Their custodial ETH balance goes up.
  4. Optional: they withdraw to a self-custody wallet (MetaMask). This step costs gas โ€” a small ETH fee paid to the Ethereum network โ€” and takes a few minutes to confirm on-chain.
  5. From their own wallet, they can swap into long-tail tokens on a DEX like Uniswap.

Most retail users stop at step 3. Power users start at step 4.

8. Vocabulary cheat sheet

Terms that will appear in every brief. Use them right and you sound credible immediately.

  • Gas โ€” the network fee to write a transaction on-chain. Paid in the chain's native coin (ETH on Ethereum, SOL on Solana).
  • Stablecoin โ€” a token pegged to a fiat currency, usually USD. USDC, USDT, DAI.
  • KYC โ€” Know Your Customer. Identity verification required by every regulated CEX.
  • On-ramp / off-ramp โ€” converting fiat โ†’ crypto and back. The boring but critical plumbing.
  • Staking โ€” locking up a token to help secure a proof-of-stake network and earn yield.
  • Layer 1 / Layer 2 โ€” base chains (Ethereum, Bitcoin) vs scaling chains that settle to them (Arbitrum, Base, Optimism).
  • Smart contract โ€” code that lives on-chain and runs when called. DEXes, lending, NFTs are all smart contracts.
  • Slippage โ€” the gap between the price you saw and the price you got, especially on a DEX.
  • Self-custody โ€” synonym for non-custodial. "Hold your own keys."

9. The four search journeys you'll write for

Strip away the brand and almost every crypto page serves one of these intents:

  1. "How do I buy [X]?" โ€” top of the funnel, mostly novices. They need on-ramp instructions, not deep tokenomics. Conversion driver for exchanges.
  2. "Is [Y] safe?" โ€” trust queries. "Is Coinbase safe", "is Binance going under". E-E-A-T critical, citations to filings and proof-of-reserves.
  3. "How do I withdraw / send / swap [X]?" โ€” task-oriented. Heavily transactional. Screenshots and exact button labels carry the page.
  4. "What is [Z]?" โ€” informational. Highest GEO leverage (AI engines love these) but lowest direct conversion. Best fit for /learn hub pages.

When you scope a content brief, name the journey first. Half the bad crypto content in the wild is a page that tried to be all four.

10. Landmines: things to never put on the page

The fastest way to lose Google's trust โ€” and increasingly, the AI engines' โ€” in this vertical:

  • Price predictions dressed as facts. "BTC will hit $200k by Q4" is editorial opinion at best, market manipulation at worst.
  • Financial advice framing. "You should buy", "this token is undervalued". Even with a disclaimer, this gets pages buried.
  • Token recommendations from a CEX's own pages. Conflict of interest, both ethically and per most regulators.
  • Misleading APY numbers. Yield can be real, but "earn 12% on USDC!" without explaining the source of yield is a lawsuit waiting.
  • Stale jurisdictional info. What's legal in Singapore is not legal in New York. If the page targets US users, say so.

The content that wins in this space is specific, sourced, and dated. Everything else is noise.

Check your understanding

The lesson ends with a 5-question quiz. Take it in the player above to see your score.

  1. A reader asks: 'I just bought ETH on Coinbase. Where does it actually live?' What is the most accurate answer?
    • In a non-custodial wallet that Coinbase generated for them
    • In an internal Coinbase balance; their keys are held by Coinbase until they withdraw
    • Directly on the Ethereum blockchain under their personal address
    • In their bank account, denominated in ETH
  2. Which of the following is a token rather than a coin?
    • BTC
    • ETH
    • USDC
    • SOL
  3. A page targets the query 'how to swap PEPE for ETH on-chain'. Which product is the natural fit?
    • A centralized exchange like Kraken
    • A bank wire instruction page
    • A decentralized exchange like Uniswap
    • A custodial savings account
  4. Why does the mantra 'not your keys, not your coins' matter for content?
    • It is a marketing slogan with no real implication
    • It signals that articles on recovery, security, and withdrawals must distinguish between custodial and non-custodial wallets
    • It means every reader should immediately move funds off any exchange
    • It only applies to Bitcoin
  5. Which of these is most likely to get a crypto page buried by Google's quality systems?
    • A dated jurisdictional disclaimer for US users
    • Screenshots of the exchange's withdrawal UI
    • A confident price prediction presented as fact
    • A list of supported payment methods

Related lessons