Skip to content

Commit

Permalink
fixes
Browse files Browse the repository at this point in the history
lucas-tortora committed Sep 13, 2023
1 parent eab908c commit 71a608e
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion docs/build/getting-started/sidebars.ts
Original file line number Diff line number Diff line change
@@ -23,7 +23,7 @@ module.exports = {
{
type: 'link',
label: 'WASP CLI',
href: '/wasp-cli',
href: '/wasp-cli/how-tos/wasp-cli',
},
{
label: 'Schema Tool',
Original file line number Diff line number Diff line change
@@ -54,7 +54,7 @@ ISC can be deployed as multiple Layer 2 (L2) chains, unlike many other projects

### Advantages

- [L1 is not congested with smart contracts](/learn/smart-contracts/smart-contracts#scalable-smart-contracts).
- [L1 is not congested with smart contracts](/learn/smart-contracts/introduction/#scalable-smart-contracts).
- Since L1 is not limited by the speed of the smart contract VM, transactions per second (TPS) increase significantly.
- No maximal extractable value (MEV). No front-running or sandwich attacks, resulting in a “fairer” DeFi environment. A set fee and randomization of transactions are included in blocks, making MEV impossible.
- Native randomness beacon (random number generator, or RNG). This is freely available to all dApps, removing the need for expensive, trusted third-party RNGs.
4 changes: 2 additions & 2 deletions docs/build/wasp-evm/0.7.0/docs/how-tos/ERC20.md
Original file line number Diff line number Diff line change
@@ -25,7 +25,7 @@ keywords:
This guide assumes you are familiar with [tokens](https://en.wikipedia.org/wiki/Cryptocurrency#Crypto_token)
in [blockchain](https://en.wikipedia.org/wiki/Blockchain),
[Ethereum Request for Comments (ERCs)](https://eips.ethereum.org/erc)(also known as Ethereum Improvement Proposals (EIP))
, [NFTs](learn/protocols/stardust/core-concepts/multi-asset-ledger#non-fungible-tokens-nfts), [Smart Contracts](/learn/smart-contracts/smart-contracts) and have
, [NFTs](learn/protocols/stardust/core-concepts/multi-asset-ledger#non-fungible-tokens-nfts), [Smart Contracts](/learn/smart-contracts/introduction) and have
already tinkered with [Solidity](https://docs.soliditylang.org/en/v0.8.16/).
ERC20 is a standard for fungible tokens and is defined in
the [EIP-20 Token Standard](https://eips.ethereum.org/EIPS/eip-20) by Ethereum.
@@ -39,7 +39,7 @@ You can use the [Remix IDE](https://remix.ethereum.org/) to deploy any regular S

Set the environment to `Injected Web3` and connect Remix with your MetaMask wallet.
If you haven’t already, please follow the instructions
on [how to connect your MetaMask with the public Testnet.](../../tooling#metamask).
on [how to connect your MetaMask with the public Testnet.](../getting-started/compatible-tools.md#metamask).

## 1. Create a Smart Contract

2 changes: 1 addition & 1 deletion docs/build/wasp-evm/0.7.0/docs/how-tos/ERC721.md
Original file line number Diff line number Diff line change
@@ -33,7 +33,7 @@ This guide assumes you are familiar with [tokens](https://en.wikipedia.org/wiki/
in [blockchain](https://en.wikipedia.org/wiki/Blockchain),
[Ethereum Request for Comments (ERCs)](https://eips.ethereum.org/erc)(also known as Ethereum Improvement Proposals (
EIP))
, [NFTs](/learn/protocols/stardust/core-concepts/multi-asset-ledger#non-fungible-tokens-nfts), [Smart Contracts](/learn/smart-contracts/smart-contracts) and have
, [NFTs](/learn/protocols/stardust/core-concepts/multi-asset-ledger#non-fungible-tokens-nfts), [Smart Contracts](/learn/smart-contracts/introduction) and have
already tinkered with [Solidity](https://docs.soliditylang.org/en/v0.8.16/).

## About ERC721

0 comments on commit 71a608e

Please sign in to comment.