import { EIP155_CHAINS, TEIP155Chain } from '@/data/EIP155Data' import { Col, Divider, Row, Text } from '@nextui-org/react' import { Fragment } from 'react' /** * Types */ interface IProps { chains: string[] protocol: string } /** * Component */ export default function RequesDetailsCard({ chains, protocol }: IProps) { return ( Blockchain(s) {chains.map(chain => EIP155_CHAINS[chain as TEIP155Chain]?.name ?? chain).join(', ')} Relay Protocol {protocol} ) }