Skip to content

Commit a95eddb

Browse files
committed
Code rabbit
1 parent 98256cc commit a95eddb

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

pages/stack/interop/tutorials/_meta.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"message-passing": "Interop message passing",
33
"transfer-superchainERC20": "Transferring a SuperchainERC20",
44
"deploy-superchain-erc20": "Issuing new assets with SuperchainERC20",
5-
"custom-superchain-erc20": "Creating custom SuperchainERC20 tokens",
5+
"custom-superchain-erc20": "Custom SuperchainERC20 tokens",
66
"bridge-crosschain-eth": "Bridging native cross-chain ETH transfers",
77
"relay-messages-cast": "Relaying interop messages using `cast`",
88
"relay-messages-viem": "Relaying interop messages using `viem`",

pages/stack/interop/tutorials/custom-superchain-erc20.mdx

+3-3
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import { Steps } from 'nextra/components'
1212
Please note that the OP Stack interoperability upgrade, required for crosschain messaging, is currently still in active development.
1313
</Callout>
1414

15-
# Creating custom SuperchainERC20 tokens
15+
# Custom SuperchainERC20 tokens
1616

1717
## Overview
1818

@@ -72,13 +72,13 @@ The tutorial uses these primary tools:
7272
The easiest way to do this is to copy and modify the `L2NativeSuperchainERC20.sol` contract.
7373
Use this code, for example, as `packages/contracts/src/CustomSuperchainToken.sol`.
7474

75-
```typescript file=<rootDir>/public/tutorials/CustomSuperchainToken.sol hash=4ad95b9203ce523351eba0501f8b972d
75+
```solidity file=<rootDir>/public/tutorials/CustomSuperchainToken.sol hash=4ad95b9203ce523351eba0501f8b972d
7676
```
7777

7878
<details>
7979
<summary>Explanation</summary>
8080

81-
```typescript file=<rootDir>/public/tutorials/CustomSuperchainToken.sol#L36-L38 hash=4e402ea88c9cd796500425172a6de16d
81+
```solidity file=<rootDir>/public/tutorials/CustomSuperchainToken.sol#L36-L38 hash=4e402ea88c9cd796500425172a6de16d
8282
```
8383

8484
This function lets users get tokens for themselves.

0 commit comments

Comments
 (0)