diff --git a/apps/vyper/src/app/components/VyperResult.tsx b/apps/vyper/src/app/components/VyperResult.tsx
index afeffcbe93..40f9e5a5a6 100644
--- a/apps/vyper/src/app/components/VyperResult.tsx
+++ b/apps/vyper/src/app/components/VyperResult.tsx
@@ -64,14 +64,14 @@ function VyperResult({ output, themeColor }: VyperResultProps) {
},
{
tabHeadingText: 'Bytecode',
- tabPayload: Object.values(output)[0]['bytecode'].object.toString(),
+ // tabPayload: Object.values(output)[0]['bytecode'].object.toString(),
tabMemberType: 'bytecode',
tabButtonText: () => 'Copy Bytecode',
eventKey: 'bytecode'
},
{
tabHeadingText: 'Runtime Bytecode',
- tabPayload: Object.values(output)[0]['runtimeBytecode'].object.toString(),
+ // tabPayload: Object.values(output)[0]['runtimeBytecode'].object.toString(),
tabMemberType: 'bytecode_runtime',
tabButtonText: () => 'Copy Runtime Bytecode',
eventKey: 'bytecode_runtime'
@@ -89,7 +89,7 @@ function VyperResult({ output, themeColor }: VyperResultProps) {
setActive(key)} justify>
{tabContent.map((content, index) => (
- content.eventKey !== 'abi' ? content.tabPayload : JSON.stringify(Object.values(output)[0]['abi'])}>
+ {/* content.eventKey !== 'abi' ? content.tabPayload : JSON.stringify(Object.values(output)[0]['abi'])}>
@@ -99,8 +99,11 @@ function VyperResult({ output, themeColor }: VyperResultProps) {
)
}
- ))
- }
+ } */}
+
+ ))}
)
}
diff --git a/apps/vyper/src/app/utils/compiler.tsx b/apps/vyper/src/app/utils/compiler.tsx
index 7ace5cfa7a..b1cdc71e30 100644
--- a/apps/vyper/src/app/utils/compiler.tsx
+++ b/apps/vyper/src/app/utils/compiler.tsx
@@ -67,8 +67,9 @@ export async function compile(url: string, contract: Contract): Promise