Skip to content

Latest commit

 

History

History
297 lines (193 loc) · 8.11 KB

defi-assets.md

File metadata and controls

297 lines (193 loc) · 8.11 KB
marp lang title description theme transition paginate _paginate footer
true
en-EN
DeFi Assets Intro
Introduction to Cryptoassets, Stablecoins, Tokenization
minimal
fade
true
false

bg opacity

Cryptoassets, Stablecoins, Tokenization

Continuing Education Course

Dr. Nils Bundi


<style scoped>{font-size: 36px}</style>

bg right 60%

Dr. Nils Bundi



width:50 Founder Vesu Lending width:50 President DeFi Collective width:50 Lecturer ZHAW School of Engineering


Cryptoassets make headlines

left width:500 center width:500 bg right width:600


FINMA on cryptoassets

Cryptoassets are digital assets that are usually recorded on a blockchain. They differ from other assets because they can only be accessed using cryptography. As a rule, a pair of keys is used, consisting of a secret private key and a public key


<style scoped> /* Reset table styling provided by theme */ table, tr, td, th { all: unset; /* Override contextual styling */ border: 0 !important; background: transparent !important; } table { display: table; } tr { display: table-row; } td, th { display: table-cell; } /* ...and layout freely :) */ table { width: 90%; border-spacing: 40pt; font-size: 40pt; } th { color: black; text-align: center; vertical-align: middle; } td { text-align: center; vertical-align: middle; } </style>

Cryptoassets market


10k Tokens $2.3t MCAP
$91b Volume (24h) 813m Token Holders

Covers "active" tokens according to CoinMarketCap/Token Terminal.


Market capitalization

center width:900


Capitalization by asset

center width:800


Token classification

center width:800


<style scoped>{font-size: 30px}</style>

Token implementation

Native Token Fungible Token Non-Fungible Token
Implement-ation Embedded in blockchain Smart Contract Smart Contract
Standards - ERC-20 ERC-721
Functionality  Transfer, pay tx fees, staking Programmable with all sorts of functionality Programmable with all sorts of functionality
Examples BTC, ETH USDC, vUSDC, UNI, vault shares, LPs CryptoPunks, BAYC, Beeple's "Everydays", Uniswap-v3 LPs

Example: ERC-20 Token (incomplete)

contract ERC20 {
    mapping(address account => uint256) private _balances;
    uint256 private _totalSupply;
    string private _name;
    string private _symbol;

    function balanceOf(address account) public view virtual returns (uint256) {
        return _balances[account];
    }
    function transfer(address to, uint256 value) public virtual returns (bool) {
        address owner = _msgSender();
        _balances[owner] -= value;
        _balances[to] += value;
        return true;
    }

Stablecoins

  • Tokens that are pegged to the price of another asset
    • Circle's EURC $\approx$ 1 EUR
    • Liquity's LUSD $\approx$ 1 USD
    • Synthetix' sETH $\approx$ 1 ETH
  • Different Peg-Mechanisms
    • 100% backed by Fiat/Treasuries (CeFi)
    • >100% backed by cryptoassets (DeFi)
    • Algorithmic or only partially backed (DeFi)

Stablecoin landscape

center width:1100


Stablecoin Trilemma

center width:1000


Example: USDC

  • USD Stablecoin issued by Circle
  • 100% backing through "Cash and Cash Equivalents"
  • $36b MCAP
  • Widely used across DeFi, often used as a proxy for USD

bg 80% right


Example: Depeg

  • USDC is NOT USD
  • Depeg in March 2023
  • Triggered by collapse of Silicon Valley Bank
  • SVB custodies some $3.3b USD for Circle
  • "Bank run" as a reaction
  • Understand risks!

bg 90% left


Top 8 stablecoins

center width:1100


Asset tokenization

  • Tokenization of "any" assets (similar to FIAT-backed stablecoins)
  • Generally involves
    • Legal structure: SPV or similar owning the ("real-world") assets
    • Primary market: Emission of token with claim on SPV assets
    • Secondary market: Trading of token (e.g. through DEX)
  • Underlying assets are custodied by centralized custodian (CeFi)
  • Can often be freely traded and used across DeFi (DEX, lending, etc.)
  • Examples: Paxos Gold, Tokenized treasuries, real-estate, etc.

Tokenizing public securities

center width:800


Tokenized treasuries products

center width:1200


Tokenized treasuries market

center width:1200


Tokens - DeFi's foundation

  • Cryptoassets build the foundation of any DeFi service (DEX, lending,etc)
  • Open and programmable interfaces enable DeFi protocols
  • Settlement on public blockchain

bg right 100%


<style scoped>section{font-size:44px;}</style>

Thank you!


Twitter @nilsbundi
LinkedIn Nils Bundi
GitHub @nbundi

bg 80% right