From 745a2b9c8ffc149632258e3cf9f2d86d7b50aaef Mon Sep 17 00:00:00 2001 From: Maarten Zuidhoorn Date: Wed, 12 Feb 2025 11:48:15 +0100 Subject: [PATCH] Fix import order --- packages/multichain/src/handlers/wallet-getSession.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/multichain/src/handlers/wallet-getSession.ts b/packages/multichain/src/handlers/wallet-getSession.ts index 7ad1646c11b..5e04bf9ed03 100644 --- a/packages/multichain/src/handlers/wallet-getSession.ts +++ b/packages/multichain/src/handlers/wallet-getSession.ts @@ -1,6 +1,5 @@ import type { Caveat } from '@metamask/permission-controller'; import type { JsonRpcRequest, JsonRpcSuccess } from '@metamask/utils'; -import type { NormalizedScopesObject } from '../scope/types'; import { getSessionScopes } from '../adapters/caip-permission-adapter-session-scopes'; import type { Caip25CaveatValue } from '../caip25Permission'; @@ -8,6 +7,7 @@ import { Caip25CaveatType, Caip25EndowmentPermissionName, } from '../caip25Permission'; +import type { NormalizedScopesObject } from '../scope/types'; /** * Handler for the `wallet_getSession` RPC method as specified by [CAIP-312](https://chainagnostic.org/CAIPs/caip-312).