-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
9b820b4
commit 35c517a
Showing
18 changed files
with
1,935 additions
and
257 deletions.
There are no files selected for viewing
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |
Oops, something went wrong.