Link: Tokenized zero knowledge machine learning and its applications
Practical notes on Enterprise software systems and the economics of software.
...by Daniel Szego
![]() | |
"On a long enough timeline we will all become Satoshi Nakamoto.."
|
|
Daniel Szego
|
Saturday, January 18, 2025
Wednesday, March 15, 2023
Tokenization in Financial Services presentation
Tokenization in Financial Services, presentation at the Hyperledger financial markets special interest group is available.
An introduction to tokenized financial securities
Current trends in blockchain research and development can be separated into two major categories. On the one hand, there is a very active research on the infrastructure side of these systems focusing mostly on scalability, privacy issues or cross-chain compatibility solutions of different distributed ledger platforms. Major approaches are layer 1 and layer 2 scaling possibilities. On the other hand, there is very active innovation on the application side as well having tokenization as a basic application level building block. Two of the probably well-known and perhaps over-hyped directions of the last 3 years are the NFT-s (non-fungible tokens) and DeFi (decentralized finance). As these approaches were mostly realized in the public and sometimes crypto-anarchist blockchain space, a lesser known direction on the regulated field is the trend of tokenized financial securities.
- Tokenized stocks: Companies can issue tokenized versions of their stocks, allowing investors to buy and sell them on a blockchain-based platform. This provides a more efficient and transparent way to trade stocks, with lower transaction fees and faster settlement times.
- Tokenized bonds: Similar to tokenized stocks, companies can issue tokenized versions of their bonds, allowing investors to purchase fractional ownership of the bond. This provides a more accessible way for investors to participate in the bond market.
- Tokenized real estate: Real estate assets can be tokenized, allowing investors to buy and sell fractional ownership of the property. This provides a more liquid and transparent way to invest in real estate, with lower transaction fees and faster settlement times. One interesting and perhaps controversial direction might be the tokenization of mortgage back securities (MBS) or asset backed securities (ABS) providing a more transparent and possible risk-free approach for the whole industry
- Tokenized commodities: Commodities like gold and silver can be tokenized, allowing investors to buy and sell fractional ownership of the asset. This provides a more accessible way for investors to participate in the commodity market.
- Tokenized funds: Investment funds can issue tokens representing ownership in the fund, allowing investors to buy and sell fractional ownership. This provides a more efficient and transparent way to invest in funds, with lower fees and faster settlement times.
- know your token holder and KYC policies,
- linked to add KYC documents,
- whitelisting, blacklisting,
- blocking a token account,
- approving or prohibiting token transfer,
- “hard” coded rules: for example to prohibit trading between regions,
- token withdrawal,
- rights and roles (e.g. investor, administrator), etc.
Tuesday, January 1, 2019
Notes on the future of token standards
Tuesday, October 30, 2018
On the need of tokenized business and computational models.
- tokenized Turing machine
- tokenized Neumann architecture
- tokenized accounting systems and tripple accounting
- tokenized business management
- tokenized business models
- tokenized business cooperation models
- tokenized machine learning
- tokenized AI
- ...
Monday, July 30, 2018
Cryptoeconomical attacks on Blockchain applications
Wednesday, January 31, 2018
Computational and business models for tokenisation
- How markets can be built on tokens ?
- How AI and machine learning can be built on tokens ?
Wednesday, January 10, 2018
Ethereum token with adjustable crypto-monetary policy with group of addresses
So let we further refine our model, let be M0 the monetary basis and M1 = M0 * m is an extended monetary supply where m is a multiplication number. Let we define an M2 refined and extended monetary supply in a way that:
- let G={g1, g2, ... gn} a set of groups, in a way that
- for each A={a1, a2, ... ak} possible addresses, there is maximum one gi group in which the address is member
- let |G|={|g1|,|g2|, ... |gn|} the number of addresses that are associated to a given group
- besides, let we have for each group a {m1, m2, ... mk} multiplicator value.
If so, we can define the M2 refined extended monetary supply:
M2 = M1 * Sumi (|ai| * mi) / Sumi (|ai|)
It is practically a measure for creating an average of different multiplicator values weighted by the size of the groups.
Tuesday, January 9, 2018
Minimal ERC20 token with adjustable monetary policy
uint initialSupply = 10000;
function SimpleMonetaryToken(){
m0Balances[msg.sender] = initialSupply;
}