Skip to content

Commit a206d91

Browse files
Implement code formatting
1 parent a348ae7 commit a206d91

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

pages/stack/interop/tutorials/convert-erc20.mdx

+3-3
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ This implementation allows a token to be bridged between two chains. This means
3737

3838
The following code implements a basic ERC20 contract:
3939

40-
```
40+
```solidity
4141
// SPDX-License-Identifier: MIT
4242
pragma solidity ^0.8.20;
4343
@@ -58,7 +58,7 @@ contract MyERC20 is ERC20, Ownable {
5858

5959
The first step is simply to implement `IERC7802` and `IERC165`. Note that we've renamed the contract at this point:
6060

61-
```
61+
```solidity
6262
// SPDX-License-Identifier: MIT
6363
pragma solidity ^0.8.20;
6464
@@ -93,7 +93,7 @@ There are two functions we need to implement: `CrosschainMint` and `CrosschainBu
9393
Here's what our contract looks like once we've implemented the functions:
9494

9595

96-
```
96+
```solidity
9797
// SPDX-License-Identifier: MIT
9898
pragma solidity ^0.8.20;
9999

0 commit comments

Comments
 (0)