Skip to content
This repository has been archived by the owner on Dec 6, 2024. It is now read-only.

Commit

Permalink
fix linting errors
Browse files Browse the repository at this point in the history
  • Loading branch information
varex83 committed Nov 23, 2023
1 parent a8c1f2d commit 23b87d6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
1 change: 0 additions & 1 deletion plugin/src/features/Deployment/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ import { contractsAtom, selectedContractAtom } from '../../atoms/compiledContrac
import { accountAtom, providerAtom } from '../../atoms/connection'
import { deployedContractsAtom, deployedSelectedContractAtom } from '../../atoms/deployedContracts'
import { envAtom } from '../../atoms/environment'
import { Chain, ChainFormatters } from 'viem'

interface DeploymentProps {
setActiveTab: (tab: AccordianTabs) => void
Expand Down
6 changes: 3 additions & 3 deletions plugin/src/types/transaction.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { type Provider, type Signer, type Wallet } from 'zksync-web3'
import { type Chain, ChainFormatters } from 'viem'
import { type Chain, type ChainFormatters } from 'viem'

export type EnvType = 'localDevnet' | 'remoteDevnet' | 'wallet' | 'manual'

Expand All @@ -21,9 +21,9 @@ export const mockManualChain: Chain<ChainFormatters> = {
},
rpcUrls: {
default:
{http: [''], webSocket: ['']},
{ http: [''], webSocket: [''] },
public:
{http: [''], webSocket: ['']},
{ http: [''], webSocket: [''] }
},
network: 'testnet',
name: 'testnet',
Expand Down

0 comments on commit 23b87d6

Please sign in to comment.