🍲 fix erc20

This commit is contained in:
bt3gl 2022-09-21 18:28:10 -07:00 committed by GitHub
parent 2d89e81674
commit d3a9715fee
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -26,7 +26,7 @@
* EOA: externally owned account. An account which is a combination of public address and private key. You can use these accounts to send and receive Ether to/from another account.
* ERC-20: One of the most significant Ethereum tokens is known as ERC-20. ERC-20 has emerged as the technical standard; it is used for all smart contracts on the Ethereum blockchain for token implementation and provides a list of rules that all Ethereum-based tokens must follow. ERC-20 is similar, in some respects, to bitcoin, Litecoin, and any other cryptocurrency; ERC-20 tokens are blockchain-based assets that have value and can be sent and received. The primary difference is that instead of running on their own blockchain, ERC-20 tokens are issued on the Ethereum network.
* ERC20: One of the most significant Ethereum tokens is known as ERC20. ERC20 has emerged as the technical standard; it is used for all smart contracts on the Ethereum blockchain for token implementation and provides a list of rules that all Ethereum-based tokens must follow. ERC20 is similar, in some respects, to bitcoin, Litecoin, and any other cryptocurrency; ERC20 tokens are blockchain-based assets that have value and can be sent and received. The primary difference is that instead of running on their own blockchain, ERC20 tokens are issued on the Ethereum network.
* EVM: Ethereum Virtual Machine. Computation engine which acts like a decentralized computer that has millions of executable projects. It acts as the virtual machine which is the bedrock of Ethereum's entire operating structure.