diff --git a/ui/hooks/accounts/useMultichainWalletSnapClient.test.ts b/ui/hooks/accounts/useMultichainWalletSnapClient.test.ts index 5efdbfd9b4ea..ed1c8c11b115 100644 --- a/ui/hooks/accounts/useMultichainWalletSnapClient.test.ts +++ b/ui/hooks/accounts/useMultichainWalletSnapClient.test.ts @@ -1,6 +1,6 @@ import { renderHook } from '@testing-library/react-hooks'; import { HandlerType } from '@metamask/snaps-utils'; -import { BtcAccountType, BtcMethod } from '@metamask/keyring-api'; +import { BtcAccountType, BtcMethod, BtcScopes, SolScopes } from '@metamask/keyring-api'; import { MultichainNetworks } from '../../../shared/constants/multichain/networks'; import { BITCOIN_WALLET_SNAP_ID } from '../../../shared/lib/accounts/bitcoin-wallet-snap'; import { SOLANA_WALLET_SNAP_ID } from '../../../shared/lib/accounts/solana-wallet-snap'; @@ -36,6 +36,7 @@ describe('useMultichainWalletSnapClient', () => { id: '11a33c6b-0d46-43f4-a401-01587d575fd0', options: {}, methods: [BtcMethod.SendBitcoin], + scopes: [BtcScopes.Testnet], type: BtcAccountType.P2wpkh, }, }, @@ -48,6 +49,7 @@ describe('useMultichainWalletSnapClient', () => { id: '22b44d7c-1e57-4b5b-8502-02698e686fd1', options: {}, methods: ['someMethod'], + scopes: [SolScopes.Devnet], // TODO: Update when keyring-api is published with Solana types type: BtcAccountType.P2wpkh, },