pull/4182/head
Joseph Izang 12 months ago
parent 6437dead72
commit e4f0577406
  1. 2
      apps/vyper/src/app/components/CompilerButton.tsx
  2. 2
      apps/vyper/src/app/utils/compiler.tsx
  3. 3
      libs/remix-ui/vyper-compile-details/src/lib/vyperCompile.tsx

@ -1,5 +1,5 @@
import React, { Fragment, useState } from 'react'
import {isVyper, compile, toStandardOutput, VyperCompilationOutput, isCompilationError, remixClient, normalizeContractPath} from '../utils'
import {isVyper, compile, toStandardOutput, isCompilationError, remixClient, normalizeContractPath} from '../utils'
import Button from 'react-bootstrap/Button'
import _ from 'lodash'
import { runtime } from 'webpack'

@ -1,4 +1,4 @@
import {CompilationResult, ABIDescription} from '@remixproject/plugin-api'
import { ABIDescription} from '@remixproject/plugin-api'
import axios from 'axios'
export interface Contract {

@ -1,7 +1,6 @@
import { CopyToClipboard } from '@remix-ui/clipboard'
import JSONTree, { ThemeKeys, ThemeObject } from '@microlink/react-json-view'
import React, { useState } from 'react'
import { useIntl } from 'react-intl'
import Tabs from 'react-bootstrap/Tabs'
import Tab from 'react-bootstrap/Tab'
import Button from 'react-bootstrap/Button'
@ -27,10 +26,8 @@ export interface VyperCompileProps {
export default function VyperCompile({result, theme, themeStyle}: VyperCompileProps) {
const intl = useIntl()
const [active, setActive] = useState<keyof VyperCompilationResult>('abi')
console.log(theme, themeStyle)
const tabContent = [
{
tabHeadingText: 'ABI',

Loading…
Cancel
Save