Skip to content

Commit

Permalink
fix: wrong syntax to generate mdx v3 (#325)
Browse files Browse the repository at this point in the history
We want to test if the action will fail again
  • Loading branch information
banasa44 authored Feb 13, 2024
1 parent a96e619 commit 3731c6c
Showing 1 changed file with 6 additions and 1 deletion.
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",
}
```
*/

0 comments on commit 3731c6c

Please sign in to comment.