File tree 1 file changed +3
-3
lines changed
pages/stack/interop/tutorials
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -37,7 +37,7 @@ This implementation allows a token to be bridged between two chains. This means
37
37
38
38
The following code implements a basic ERC20 contract:
39
39
40
- ```
40
+ ``` solidity
41
41
// SPDX-License-Identifier: MIT
42
42
pragma solidity ^0.8.20;
43
43
@@ -58,7 +58,7 @@ contract MyERC20 is ERC20, Ownable {
58
58
59
59
The first step is simply to implement ` IERC7802 ` and ` IERC165 ` . Note that we've renamed the contract at this point:
60
60
61
- ```
61
+ ``` solidity
62
62
// SPDX-License-Identifier: MIT
63
63
pragma solidity ^0.8.20;
64
64
@@ -93,7 +93,7 @@ There are two functions we need to implement: `CrosschainMint` and `CrosschainBu
93
93
Here's what our contract looks like once we've implemented the functions:
94
94
95
95
96
- ```
96
+ ``` solidity
97
97
// SPDX-License-Identifier: MIT
98
98
pragma solidity ^0.8.20;
99
99
You can’t perform that action at this time.
0 commit comments