Updating conversion, creating readmes

This commit is contained in:
Jonas Zeunert
2024-04-19 23:37:46 +02:00
parent 3619ac710a
commit 08e75b0f0a
635 changed files with 30878 additions and 37344 deletions

View File

@@ -1,11 +1,11 @@
 Awesome Move !Awesome (https://awesome.re/badge.svg) (https://awesome.re)
 Awesome Move !Awesome (https://awesome.re/badge.svg) (https://awesome.re)
▐ A curated list of code and content from the Move (https://github.com/move-language/move) programming language community.
Move is a programming language for writing safe smart contracts originally developed at Facebook to power the Libra blockchain. Move is designed to be a platform-agnostic language to enable common libraries, 
tooling, and developer communities across diverse blockchains with vastly different data and execution models. Move's ambition is to become the "JavaScript of web3" in terms of ubiquity--when developers want to 
quickly write safe code involving assets, it should be written in Move.
Move is a programming language for writing safe smart contracts originally developed at Facebook to power the Libra blockchain. Move is designed to be a platform-agnostic language to enable common libraries, tooling, and developer 
communities across diverse blockchains with vastly different data and execution models. Move's ambition is to become the "JavaScript of web3" in terms of ubiquity--when developers want to quickly write safe code involving assets, it 
should be written in Move.
Contents
@@ -47,8 +47,8 @@
Move-Powered Blockchains
- Sui (https://github.com/MystenLabs/sui) - A next-generation smart contract platform with high throughput, low latency, and an asset-oriented programming model powered by the Move programming language (in 
devnet (https://medium.com/mysten-labs/sui-devnet-public-release-a2be304ff36b)).
- Sui (https://github.com/MystenLabs/sui) - A next-generation smart contract platform with high throughput, low latency, and an asset-oriented programming model powered by the Move programming language (in devnet 
(https://medium.com/mysten-labs/sui-devnet-public-release-a2be304ff36b)).
- 0L (https://github.com/OLSF/libra) - A reference implementation of a neutral replicated state machine. Forked from the Libra/Diem technologies (in mainnet (https://0l.network/)).
- Starcoin (https://github.com/starcoinorg/starcoin) - A smart contract blockchain network that scales by layering (in mainnet (https://stcscan.io/)).
- Aptos (https://github.com/aptos-labs/aptos-core) - Aptos-core strives towards being the safest and most scalable layer one blockchain solution (in mainnet (https://explorer.aptoslabs.com/?network=mainnet)).
@@ -89,10 +89,10 @@
Fungible Tokens
- Fungible token examples (https://github.com/MystenLabs/sui/tree/main/sui_programmability/examples/fungible_tokens) - Multiple example token implementations from Sui.
- BasicCoin (https://github.com/move-language/move/tree/main/language/documentation/examples/experimental/basic-coin) - A toy implementation of an ERC20 
(https://ethereum.org/en/developers/docs/standards/tokens/erc-20/)-like fungible token.
- Diem (https://github.com/OLSF/libra/blob/main/language/diem-framework/modules/Diem.move) - An ERC20-like token with permissioned minting/burning, see also this spec 
(https://github.com/diem/dip/blob/main/dips/dip-20.md). Deployed on 0L.
- BasicCoin (https://github.com/move-language/move/tree/main/language/documentation/examples/experimental/basic-coin) - A toy implementation of an ERC20 (https://ethereum.org/en/developers/docs/standards/tokens/erc-20/)-like fungible 
token.
- Diem (https://github.com/OLSF/libra/blob/main/language/diem-framework/modules/Diem.move) - An ERC20-like token with permissioned minting/burning, see also this spec (https://github.com/diem/dip/blob/main/dips/dip-20.md). Deployed on 
0L.
- Token (https://github.com/starcoinorg/starcoin-framework/blob/main/sources/Token.move) - Another ERC20-like Token. Deployed on Starcoin.
- GAS (https://github.com/OLSF/libra/blob/main/language/diem-framework/modules/0L/GAS.move) - A token that instantiates the Diem standard above. Deployed on 0L.
- STC (https://github.com/starcoinorg/starcoin-framework/blob/main/sources/STC.move) - A token that instantiates the Starcoin standard above. Deployed on Starcoin.
@@ -120,15 +120,13 @@
Decentralized Identity
- aptos-cid (https://github.com/coming-chat/aptos-cid) - Decentralized identity on Aptos, the underlying account system of ComingChat.
- MoveDID (https://github.com/NonceGeek/MoveDID) - MoveDID is a DID protocol that compatible with Move-based blockchain networks, including Aptos, Sui, and Starcoin. Maintained by the NonceGeek 
(https://github.com/NonceGeek).
- MoveDID (https://github.com/NonceGeek/MoveDID) - MoveDID is a DID protocol that compatible with Move-based blockchain networks, including Aptos, Sui, and Starcoin. Maintained by the NonceGeek (https://github.com/NonceGeek).
DeFi
- DeFi examples (https://github.com/MystenLabs/sui/tree/main/sui_programmability/examples/defi) - Multiple DeFi example implementations from Sui.
- CoinSwap (https://github.com/move-language/move/tree/main/language/documentation/examples/experimental/coin-swap) - A toy implementation of a Uniswap (https://uniswap.org/)-like liquidity pool containing two 
tokens.
- CoinSwap (https://github.com/move-language/move/tree/main/language/documentation/examples/experimental/coin-swap) - A toy implementation of a Uniswap (https://uniswap.org/)-like liquidity pool containing two tokens.
- Starswap (https://github.com/Elements-Studio/starswap-core) - A Uniswap-style DEX. Deployed on Starcoin.
- Offer (https://github.com/move-language/move/blob/main/language/move-stdlib/nursery/sources/offer.move) - Generic implementation of atomic swaps for any pair of assets.
- AptosRedPacket (https://github.com/coming-chat/aptos-red-packet) - A red packet social app that combines private chat and encrypted wallet on Aptos.
@@ -136,8 +134,8 @@
- AptosAMMswap (https://github.com/OmniBTC/Aptos-AMM-swap) - Aptos AMM Swap implemented by the OmniBTC team.
- SuiAMMswap (https://github.com/OmniBTC/Sui-AMM-swap) - Sui AMM Swap implemented by the OmniBTC team.
- AptosOmniSwap (https://github.com/OmniBTC/OmniSwap/tree/main/aptos) - One-click swap between aptos and EVM chains (such as ETH/BSC/AVAX, etc.) based on the cross-chain interoperability protocol wormhole.
- DolaProtocol (https://github.com/OmniBTC/DolaProtocol) - A Decentralized Omnichain Liquidity Aggregation Protocol with the single coin pool of each public chain as the core, Wormhole, Layerzero and other 
cross-chain messaging protocols as the bridge, and Sui public chain as the settlement center.
- DolaProtocol (https://github.com/OmniBTC/DolaProtocol) - A Decentralized Omnichain Liquidity Aggregation Protocol with the single coin pool of each public chain as the core, Wormhole, Layerzero and other cross-chain messaging 
protocols as the bridge, and Sui public chain as the settlement center.
- ObjectMarket (https://github.com/coming-chat/object-market) - A unique object trading marketplace in the Sui network.
SocialFi
@@ -195,22 +193,21 @@
Tools
- Move Package Manager (https://github.com/move-language/move/tree/main/language/tools/move-cli) - Like cargo or npm for Move: single CLI (and corresponding Rust API's for other tools to hook into) for building,
running, testing, debugging, and verifying Move packages (https://move-language.github.io/move/). Maintained by the Move core team.
- Move Package Manager (https://github.com/move-language/move/tree/main/language/tools/move-cli) - Like cargo or npm for Move: single CLI (and corresponding Rust API's for other tools to hook into) for building, running, testing, 
debugging, and verifying Move packages (https://move-language.github.io/move/). Maintained by the Move core team.
- Move Prover (https://github.com/move-language/move/tree/main/language/move-prover) - Formal verification of user-defined specifications written in Move source code. Maintained by the Move core team.
- Move Read/Write Set Analyzer (https://github.com/move-language/move/tree/main/language/tools/read-write-set) - Static analysis tool for computing an overapproximation of the global memory touched by a Move 
program. Maintained by the Move core team.
- Move Playground JS Library (https://github.com/imcoding-online/js-move-playground) - Wrapping Move Playground by Pontem (https://playground.pontem.network/) as a JavaScript library for browser. You can use it 
to build your own Move Playground.
- Move Read/Write Set Analyzer (https://github.com/move-language/move/tree/main/language/tools/read-write-set) - Static analysis tool for computing an overapproximation of the global memory touched by a Move program. Maintained by the 
Move core team.
- Move Playground JS Library (https://github.com/imcoding-online/js-move-playground) - Wrapping Move Playground by Pontem (https://playground.pontem.network/) as a JavaScript library for browser. You can use it to build your own Move 
Playground.
- go-sui-indexer (https://github.com/coming-chat/go-sui-indexer) - An off-fullnode service to serve data from Sui Node.
IDEs
- Move VS Code plugin (https://marketplace.visualstudio.com/items?itemName=move.move-analyzer) - Maintained by the Move core team (source code 
(https://github.com/move-language/move/tree/main/language/move-analyzer)).
- Move VS Code plugin (https://marketplace.visualstudio.com/items?itemName=move.move-analyzer) - Maintained by the Move core team (source code (https://github.com/move-language/move/tree/main/language/move-analyzer)).
- Move IntelliJ plugin (https://plugins.jetbrains.com/plugin/14721-move-language) - Maintained by the Pontem team (source code (https://github.com/pontem-network/intellij-move)).
- Move Playground (https://playground.pontem.network/) - Like Remix (https://remix.ethereum.org/) for Move. Alpha version of a Web IDE. See instructions 
(https://gist.github.com/borispovod/64b6d23741d8c1f4b0b958a3a74aa68d). Maintained by the Pontem team.
- Move Playground (https://playground.pontem.network/) - Like Remix (https://remix.ethereum.org/) for Move. Alpha version of a Web IDE. See instructions (https://gist.github.com/borispovod/64b6d23741d8c1f4b0b958a3a74aa68d). Maintained 
by the Pontem team.
- Starcoin IDE (https://marketplace.visualstudio.com/items?itemName=starcoinorg.starcoin-ide) - Maintained by the Starcoin team (source code (https://github.com/starcoinorg/starcoin-ide)).
- Move Vim (https://github.com/rvmelkonian/move.vim) - Maintained by @rvmelkonian (https://github.com/rvmelkonian/).
- move-mode (https://github.com/amnn/move-mode) - Major mode for Emacs maintained by @amnn (https://github.com/amnn/).
@@ -222,17 +219,14 @@
- StarMask (https://github.com/starcoinorg/starmask-extension) - A wallet for the Starcoin blockchain. Maintained by the Starcoin team (Chrome Webstore 
(https://chrome.google.com/webstore/detail/starmask/mfhbebgoclkghebffdldpobeajmbecfk?hl=en)).
- Sui Wallet (https://github.com/MystenLabs/sui/tree/main/apps/wallet) - A chrome (v88+) extension wallet for Sui (Chrome Webstore 
(https://chrome.google.com/webstore/detail/sui-wallet/opcgpfmipidbgpenhmajoajpbobppdil)).
- Pontem Wallet (https://github.com/pontem-network/pontem-wallet) - Wallet extension for Aptos network by the Pontem team (Chrome Webstore 
(https://chrome.google.com/webstore/detail/pontem-wallet/phkbamefinggmakgklpkljjmgibohnba)).
- Fewcha Aptos Wallet (https://github.com/fewcha-wallet/fewcha.app) - The wallet of layer 1 blockchain Aptos (Chrome Webstore 
(https://chrome.google.com/webstore/detail/fewcha-aptos-wallet/ebfidpplhabeedpnhjnobghokpiioolj)).
- Sui Wallet (https://github.com/MystenLabs/sui/tree/main/apps/wallet) - A chrome (v88+) extension wallet for Sui (Chrome Webstore (https://chrome.google.com/webstore/detail/sui-wallet/opcgpfmipidbgpenhmajoajpbobppdil)).
- Pontem Wallet (https://github.com/pontem-network/pontem-wallet) - Wallet extension for Aptos network by the Pontem team (Chrome Webstore (https://chrome.google.com/webstore/detail/pontem-wallet/phkbamefinggmakgklpkljjmgibohnba)).
- Fewcha Aptos Wallet (https://github.com/fewcha-wallet/fewcha.app) - The wallet of layer 1 blockchain Aptos (Chrome Webstore (https://chrome.google.com/webstore/detail/fewcha-aptos-wallet/ebfidpplhabeedpnhjnobghokpiioolj)).
- bcs-js (https://github.com/pontem-network/lcs-js) - JavaScript implementation of the BCS (https://github.com/diem/bcs) serialization scheme used by Move, may be useful for implementing wallets.
- ComingChat (https://coming.chat/) - A decentralized social finance/web3 portal. Supporting public chain wallets, such as Sui and Aptos wallets.
- Suiet Wallet (https://github.com/suiet/suiet) - A open-source wallet for Sui. (Chrome Webstore (https://chrome.google.com/webstore/detail/suiet/khpkpbbcccdmmclmpigdgddabeilkdpd), Website (https://suiet.app)) 
- Ethos Wallet (https://github.com/EthosWallet/chrome-extension) - Open-source chrome extension wallet for Sui (Chrome Webstore 
(https://chrome.google.com/webstore/detail/ethos-sui-wallet/mcbigmjiafegjnnogedioegffbooigli), Website (https://ethoswallet.xyz/)).
- Ethos Wallet (https://github.com/EthosWallet/chrome-extension) - Open-source chrome extension wallet for Sui (Chrome Webstore (https://chrome.google.com/webstore/detail/ethos-sui-wallet/mcbigmjiafegjnnogedioegffbooigli), Website 
(https://ethoswallet.xyz/)).
Wallet Adapters
@@ -266,9 +260,8 @@
Language Design
- Move: A Language With Programmable Resources (https://developers.diem.com/papers/diem-move-a-language-with-programmable-resources/2019-06-18.pdf) - This was the original Move white paper released in 2018. Many
aspects of this are now out of date (e.g., the syntax and description of the bytecode instructions), but the first two sections are worth a read for explaining the difficulties of programming with assets and how
Move tackles them.
- Move: A Language With Programmable Resources (https://developers.diem.com/papers/diem-move-a-language-with-programmable-resources/2019-06-18.pdf) - This was the original Move white paper released in 2018. Many aspects of this are now 
out of date (e.g., the syntax and description of the bytecode instructions), but the first two sections are worth a read for explaining the difficulties of programming with assets and how Move tackles them.
- Robust Safety for Move (https://arxiv.org/abs/2110.05043)
- The Move Borrow Checker (https://arxiv.org/abs/2205.05181)
- Resources: A Safe Language Abstraction for Money (https://arxiv.org/abs/2004.05106)
@@ -285,16 +278,16 @@
- The Move Programming Language (https://youtu.be/J1U_0exNFu0)
- Move on Sui (https://www.youtube.com/watch?v=xMsE1X4wio4)
- Move on Aptos (https://www.youtube.com/watch?v=gvRJdJTQd8U)
- Move: A Safe Language for Programming with Money (https://www.youtube.com/watch?v=EG2-7bQNPv4&ab_channel=FieldsInstitute) - Talk from @sblackshear (https://github.com/sblackshear) at the Fields Institute 
- Move: A Safe Language for Programming with Money (https://www.youtube.com/watch?v=EG2-7bQNPv4&ab_channel=FieldsInstitute) - Talk from @sblackshear (https://github.com/sblackshear) at the Fields Institute Blockchain 
(http://www.fields.utoronto.ca/activities/seminar_series/blockchain-research-seminar-series) research seminar series.
- Formal Verification of Move Programs for the Libra Blockchain (http://www.fields.utoronto.ca/talks/Formal-verification-Move-programs-Libra-blockchain) - Talk from @DavidLDill (https://github.com/DavidLDill) at the Fields Institute 
Blockchain (http://www.fields.utoronto.ca/activities/seminar_series/blockchain-research-seminar-series) research seminar series.
- Formal Verification of Move Programs for the Libra Blockchain (http://www.fields.utoronto.ca/talks/Formal-verification-Move-programs-Libra-blockchain) - Talk from @DavidLDill (https://github.com/DavidLDill) at
the Fields Institute Blockchain (http://www.fields.utoronto.ca/activities/seminar_series/blockchain-research-seminar-series) research seminar series.
- Move for the Masses (https://www.youtube.com/watch?v=b_2jZ4YEfWc) - Talk at the Converge '22 (https://converge.circle.com/event/4ea0d06f-3900-4b6d-a9cd-aeaedda9ef2e/summary).
Slides
- Move deep dive (https://docs.google.com/presentation/d/1Tb2iZD0xrQSlwXIJNL1djNYc0_p0szfB2STgURgHgls/edit?usp=sharing)
- Move overview (https://docs.google.com/presentation/d/1gU-M42Juz7ARc61unPXphJ_BX1OlQrBwR1VdaPT4M5w/edit?usp=sharing) - Slides from Reasoning About Financial Systems 
(https://reasoningaboutfinancialsystems.org/) workshop at SBC '22 (https://cbr.stanford.edu/sbc22/).
- Move overview (https://docs.google.com/presentation/d/1gU-M42Juz7ARc61unPXphJ_BX1OlQrBwR1VdaPT4M5w/edit?usp=sharing) - Slides from Reasoning About Financial Systems (https://reasoningaboutfinancialsystems.org/) workshop at SBC '22 
(https://cbr.stanford.edu/sbc22/).
Podcasts