Skip to content

Commit

Permalink
chore
Browse files Browse the repository at this point in the history
  • Loading branch information
TomatoDroid committed Sep 12, 2024
1 parent 9b820b4 commit 35c517a
Show file tree
Hide file tree
Showing 18 changed files with 1,935 additions and 257 deletions.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
19 changes: 19 additions & 0 deletions nuxt/components/scaffold-eth/debug/DebugContracts.vue
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
<script setup lang="ts">
import type { ContractName } from '~/utils/scaffold-eth/contract'
import { getAllContracts } from '~/utils/scaffold-eth/contractsData'
const selectedContractStorageKey = 'scaffoldEthVue.selectedContract'
const contractsData = getAllContracts()
const contractNames = Object.keys(contractsData) as ContractName[]
</script>

<template>
<div class="flex flex-col gap-y-6 lg:gap-y-8 py-8 lg:py-12 justify-center items-center">
<p v-if="contractNames.length === 0" class="text-3xl mt-14">
No contracts found!
</p>
<div class="flex flex-row gap-2 w-full max-w-7xl pb-1 px-6 lg:px-10 flex-wrap">
<button />
</div>
</div>
</template>
Loading

0 comments on commit 35c517a

Please sign in to comment.