Skip to content

Commit

Permalink
- Fix format
Browse files Browse the repository at this point in the history
  • Loading branch information
naorye2 committed Jun 26, 2024
1 parent 416d888 commit 8a30e88
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion packages/core/src/wallet/isWalletObject.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { virtualWalletKeys, fullWalletKeys } from "../types"
import { fullWalletKeys, virtualWalletKeys } from "../types"

function createWalletGuard<T>(keys: (keyof T)[]) {
return function hasKeys(obj: unknown): obj is T {
Expand Down
2 changes: 1 addition & 1 deletion packages/core/src/wallet/virtualWallets/index.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import type { StarknetWindowObject } from "starknet-types"
import type { VirtualWallet } from "../../types"
import { metaMaskVirtualWallet } from "./metaMaskVirtualWallet"
import type { StarknetWindowObject } from "starknet-types"

const virtualWallets: VirtualWallet[] = [metaMaskVirtualWallet]

Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { loadRemote, init } from "@module-federation/runtime"
import { VirtualWallet } from "../../types"
import { init, loadRemote } from "@module-federation/runtime"

interface MetaMaskProvider {
isMetaMask: boolean
Expand Down

0 comments on commit 8a30e88

Please sign in to comment.