Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: wrong syntax to render mdx v3 #325

Merged
merged 1 commit into from
Feb 13, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion modules/client/examples/05-encoders-decoders/06-withdraw.ts
Original file line number Diff line number Diff line change
Expand Up @@ -117,6 +117,7 @@ console.log({ erc20DecodedParams });
/* MARKDOWN
Returns:

```
{ erc20DecodedParams:
{
type: "erc20",
Expand All @@ -125,7 +126,7 @@ Returns:
tokenAddress: "0x1234567890123456789012345678901234567890",
}
}

```
*/

/* MARKDOWN
Expand Down Expand Up @@ -162,13 +163,15 @@ console.log({ erc721DecodedParams });

/* MARKDOWN
Returns:
```
{
type: TokenType.ERC721;
tokenAddress: "0x1234567890123456789012345678901234567890";
tokenId: 10n;
daoAddressOrEns: "0x1234567890123456789012345678901234567890";
recipientAddressOrEns: "0x1234567890123456789012345678901234567890";
}
```
*/
/* MARKDOWN
### NFT (ERC-1155) Tokens
Expand Down Expand Up @@ -205,6 +208,7 @@ console.log({ erc1155WithdrawDecodedParams });

/* MARKDOWN
Returns:
```
{
type: TokenType.ERC1155,
tokenAddress: "0x1234567890123456789012345678901234567890",
Expand All @@ -213,4 +217,5 @@ Returns:
daoAddressOrEns: "0x1234567890123456789012345678901234567890",
recipientAddressOrEns: "0x1234567890123456789012345678901234567890",
}
```
*/
Loading