Foundations · Chapter 1 · 18 min read · free

Wallets & first transactions.

Your first practical chapter. By the end you'll have a working MetaMask wallet holding USDC on Arbitrum, and — more importantly — you'll know how to verify every transaction yourself on a block explorer. In crypto, "trust the chain, not the screen" is the whole game.

Quick recap from F0

A blockchain is a shared notebook of transactions copied across thousands of computers. A wallet doesn't hold money — it holds the key that proves the money on the notebook is yours. Lose the key (your seed phrase) and the money is gone forever; there is no support line, no password reset. Hold that idea in your head for the next 18 minutes, because everything we do now is a practical consequence of it.

Why MetaMask

MetaMask is the most widely supported self-custody wallet — a browser extension (and mobile app) that creates and stores your keys on your own device, never on a company server. Every DEX in the BABA universe recognises it. There are good alternatives you may graduate to later — Rabby (better transaction previews), hardware wallets like Ledger and Trezor (keys never touch the internet). Start with MetaMask because it's the lingua franca; move to a hardware wallet the moment you hold more than you'd be comfortable losing.

Installing MetaMask

Go to metamask.io — type it yourself, never click an ad or a search result. Phishing sites buy the top Google slot constantly. Install the official browser extension, pin it to your toolbar, and choose "Create a new wallet."

MetaMask will ask you to set a password. That password only unlocks the extension on this device — it is not your real key and cannot recover your funds. The real key is the seed phrase, which comes next.

The seed phrase ceremony

MetaMask now shows you 12 words. This is your seed phrase — the master key to every account in this wallet, on every blockchain, forever. Treat the next two minutes like handling a vault key, because that is exactly what it is.

The reason for the paranoia: anyone with these 12 words controls your money completely, from anywhere in the world, with no way for you to stop them or reverse it. Digital copies are the single biggest cause of beginner losses.

Your account on the blockchain PUBLIC — receive your address (0x…) share freely PRIVATE — send seed phrase signs never share
Public to receive, private to send — the asymmetry that makes the whole system work.

Adding the Arbitrum network

Out of the box MetaMask only shows Ethereum mainnet, where gas can cost $5–50 a transaction. We trade on cheaper Layer 2 networks. For your first steps we'll use Arbitrum — fast, secure, and gas under a cent.

The safe one-click way: go to chainlist.org, connect your wallet, search "Arbitrum One," and click "Add to MetaMask." MetaMask pops up a confirmation showing the network details — approve it. You'll now see "Arbitrum One" in the network dropdown.

Funding your wallet: Binance → Arbitrum USDC

You need two things in your wallet: a tiny bit of ETH for gas, and some USDC to actually use. The simplest on-ramp for most people is a centralised exchange like Binance or Coinbase, where you buy USDC with regular money, then withdraw it to your own wallet.

Withdraw $20 of USDC over Arbitrum and a few dollars of ETH the same way. In a minute or two it appears in MetaMask.

Verifying on Arbiscan — the chain is the source of truth

Here's the habit that separates people who survive from people who get rugged: never trust what an app's screen tells you — verify on the block explorer.

Copy your address into arbiscan.io. You'll see your real, on-chain balance and a list of every transaction — the deposit you just made, its exact amount, the block it landed in, and the fee you paid. This is the actual ledger. MetaMask is just a convenient window onto it; Arbiscan is the truth. This is the same principle the entire BABA engine is built on — we re-read the venue, we never trust a cached number.

Scams to recognise

Practice exercise

Create a second account inside MetaMask (the account menu → "Add account"). Send $5 of USDC from your first address to your second. Watch it leave one and arrive in the other, then look both up on Arbiscan to confirm. You've now done the single most fundamental action in crypto — moving value you fully control, and verifying it yourself.

Key takeaways

  • MetaMask stores your keys on your device, not a server. Install only from metamask.io.
  • The 12-word seed is the master key. Write it on paper, never digital, never typed into any site.
  • Add Arbitrum via chainlist.org for sub-cent gas. Keep a few dollars of ETH for fees.
  • When withdrawing from an exchange, select the Arbitrum network — wrong-network sends are the #1 beginner loss.
  • Always verify balances and transactions on Arbiscan. The chain is truth; the app is just a window.
  • No one legitimate ever asks for your seed or DMs you "support." Treat both as theft attempts.
← F0 — Crypto Fundamentals F2 — DeFi & On-Chain Skills