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

docs: Remove duplicate contract section heading #5815

Merged
merged 1 commit into from
Dec 20, 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
docs: Remove duplicate contract section heading
joaquim-verges committed Dec 19, 2024

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
commit e6a93da0505239a02a3ad657e384f7fa55a913dd
2 changes: 0 additions & 2 deletions apps/portal/src/app/react/v5/transactions/page.mdx
Original file line number Diff line number Diff line change
@@ -29,8 +29,6 @@ Try out the demo for yourself in the [sending transactions playground](https://p
/>
</Stack>

## Generic Contract Read

## Sending a generic contract call

```ts

Unchanged files with check annotations Beta

<TableCell>
<span className="flex items-center gap-2">
{result.network === "Base Sep" && (
<img

Check warning on line 163 in apps/playground-web/src/components/engine/airdrop/TransactionResults.tsx

GitHub Actions / Lint Packages

Using `<img>` could result in slower LCP and higher bandwidth. Consider using `<Image />` from `next/image` or a custom image loader to automatically optimize images. This may incur additional usage or cost from your provider. See: https://nextjs.org/docs/messages/no-img-element
src="/BaseSep.png"
alt="Base"
className="h-4 w-4"
/>
)}
{result.network === "OP Sep" && (
<img

Check warning on line 170 in apps/playground-web/src/components/engine/airdrop/TransactionResults.tsx

GitHub Actions / Lint Packages

Using `<img>` could result in slower LCP and higher bandwidth. Consider using `<Image />` from `next/image` or a custom image loader to automatically optimize images. This may incur additional usage or cost from your provider. See: https://nextjs.org/docs/messages/no-img-element
src="/OP.png"
alt="Optimism Sep"
className="h-4 w-4"
/>
)}
{result.network === "Ethereum" && (
<img

Check warning on line 177 in apps/playground-web/src/components/engine/airdrop/TransactionResults.tsx

GitHub Actions / Lint Packages

Using `<img>` could result in slower LCP and higher bandwidth. Consider using `<Image />` from `next/image` or a custom image loader to automatically optimize images. This may incur additional usage or cost from your provider. See: https://nextjs.org/docs/messages/no-img-element
src="/Ethereum.png"
alt="Ethereum"
className="h-4 w-4"
<TableCell>
<span className="flex items-center gap-2">
{result.network === "Base Sep" && (
<img

Check warning on line 161 in apps/playground-web/src/components/engine/minting/TransactionResults.tsx

GitHub Actions / Lint Packages

Using `<img>` could result in slower LCP and higher bandwidth. Consider using `<Image />` from `next/image` or a custom image loader to automatically optimize images. This may incur additional usage or cost from your provider. See: https://nextjs.org/docs/messages/no-img-element
src="/BaseSep.png"
alt="Base"
className="h-4 w-4"
/>
)}
{result.network === "OP Sep" && (
<img

Check warning on line 168 in apps/playground-web/src/components/engine/minting/TransactionResults.tsx

GitHub Actions / Lint Packages

Using `<img>` could result in slower LCP and higher bandwidth. Consider using `<Image />` from `next/image` or a custom image loader to automatically optimize images. This may incur additional usage or cost from your provider. See: https://nextjs.org/docs/messages/no-img-element
src="/OP.png"
alt="Optimism Sep"
className="h-4 w-4"
/>
)}
{result.network === "Ethereum" && (
<img

Check warning on line 175 in apps/playground-web/src/components/engine/minting/TransactionResults.tsx

GitHub Actions / Lint Packages

Using `<img>` could result in slower LCP and higher bandwidth. Consider using `<Image />` from `next/image` or a custom image loader to automatically optimize images. This may incur additional usage or cost from your provider. See: https://nextjs.org/docs/messages/no-img-element
src="/Ethereum.png"
alt="Ethereum"
className="h-4 w-4"
{account && (
<div className="mt-6 w-full max-w-[400px]">
{image ? (
<img

Check warning on line 267 in apps/playground-web/src/components/engine/minting/erc1155-mint-to.tsx

GitHub Actions / Lint Packages

Using `<img>` could result in slower LCP and higher bandwidth. Consider using `<Image />` from `next/image` or a custom image loader to automatically optimize images. This may incur additional usage or cost from your provider. See: https://nextjs.org/docs/messages/no-img-element
src={resolveIpfsUrl(image)}
alt="NFT Preview"
className="h-[400px] w-full rounded-lg border border-border object-contain"