import { InfinityMintDeploymentLive } from 'infinitymint/dist/app/interfaces'; import React from 'react'; import { Button, Col, Container, ListGroup, Row, Card, Alert, } from 'react-bootstrap'; import Editor from './path/Editor'; import CodeEditor from '../CodeEditor'; export default function Contract({ contract, onBack, selectTab, selectComponent, }: { contract: InfinityMintDeploymentLive; onBack: () => void; selectTab: (tab: string, props?: any) => void; selectComponent: (component: string, props?: any) => void; }) { return ( contract{' '} {contract.contractName} module{' '} {contract.module || 'not a module contract'} project{' '} {contract.project || 'unknown'} address{' '} {contract.address || 'unknown'} network{' '} {contract.network.name || 'unknown'} chainId{' '} {contract.receipt.chainId} txHash{' '} {contract.receipt.hash || 'unknown'}

Source

Here is the source file to your contract

No source code found for this contract

ABI

This is the ABI for the contract which was compiled by solc

); }