diff --git a/components/AppCard/AppCard.v2.tsx b/components/AppCard/AppCard.v2.tsx index 88c850f6..6aafe7ab 100644 --- a/components/AppCard/AppCard.v2.tsx +++ b/components/AppCard/AppCard.v2.tsx @@ -3,42 +3,65 @@ import Image from 'next/image'; import { EcosystemItem } from '../../data/ecosystemData'; interface AppCardProps { - app: EcosystemItem; + app: EcosystemItem; } + const AppCardV2 = ({ app }: AppCardProps) => { - if (!app) return null; - const fields = app.fieldData; - const { name, logo, link, 'integration-guide-link': integration, 'short-description': shortDescription } = fields; - return ( -
- {shortDescription} -
- )} - {integration && ( - - Integration+ {shortDescription} +
+ )} + {integration && ( + + Integration-- -## **NFTs** - -Non-fungible tokens (NFTs) represent unique digital assets. Sei supports both ERC721 and CW721 standards as well as their counterparts with royalties (2981). - -- **ERC721**: The ERC721 standard defines the structure for non-fungible tokens on EVM-based blockchains. Each token is unique and cannot be exchanged on a one-to-one basis like fungible tokens. -- **CW721**: The CW721 standard is the Cosmos equivalent of ERC721, providing similar functionalities for NFTs on Cosmos-based blockchains. -- **CW2981 & ERC2981**: These standards define royalty mechanisms for NFTs, ensuring creators receive a percentage of sales. -- **Interoperability**: Similar to fungible tokens, NFTs can interact across different standards using pointer contracts. -- **Pointer Contract Registry**: A registry for tracking pointer contracts specific to NFTs. - -## **IBC Tokens** - -Inter-Blockchain Communication (IBC) is a protocol that enables communication between different Cosmos chains. IBC tokens are tokens bridged from one Cosmos chain to another using the IBC protocol. Channels are set up to establish communication between the chains. Each channel has a unique identifier and specific configurations. View the [IBC Channel](https://github.com/sei-protocol/chain-registry/blob/main/ibc_info.json) section of the Sei chain registry for channel information. diff --git a/pages/start/overview.mdx b/pages/start/overview.mdx deleted file mode 100644 index 602d99d2..00000000 --- a/pages/start/overview.mdx +++ /dev/null @@ -1,44 +0,0 @@ -import { DeveloperSurveyCallout } from '../../components'; -import { ImageWithCaption } from "../../components"; -import v2BannerImg from "../../public/assets/sei-v2-banner.jpg"; - -Interoperability - Regardless of the choice, both TokenFactory and CW20/ERC20 tokens can have pointer contracts deployed, facilitating seamless cross-vm interoperability. - - For more detailed guidance, refer to the [Pointer Contracts Documentation](/dev-tutorials/pointer-contracts). -