marp | lang | title | description | theme | transition | paginate | _paginate | footer |
---|---|---|---|---|---|---|---|---|
true |
en-EN |
DeFi Assets Intro |
Introduction to Cryptoassets, Stablecoins, Tokenization |
minimal |
fade |
true |
false |
<style scoped>{font-size: 36px}</style>
Founder Vesu Lending President DeFi Collective Lecturer ZHAW School of Engineering
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>
10k Tokens | $2.3t MCAP |
---|---|
$91b Volume (24h) | 813m Token Holders |
Covers "active" tokens according to CoinMarketCap/Token Terminal.
<style scoped>{font-size: 30px}</style>
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 |
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;
}
- 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
- Circle's EURC
- Different Peg-Mechanisms
- 100% backed by Fiat/Treasuries (CeFi)
- >100% backed by cryptoassets (DeFi)
- Algorithmic or only partially backed (DeFi)
- 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
- 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!
- 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.
- Cryptoassets build the foundation of any DeFi service (DEX, lending,etc)
- Open and programmable interfaces enable DeFi protocols
- Settlement on public blockchain
<style scoped>section{font-size:44px;}</style>