Skip to content

Commit 5aa29e4

Browse files
committed
Fix imports
1 parent 42ca902 commit 5aa29e4

File tree

27 files changed

+48
-48
lines changed

27 files changed

+48
-48
lines changed

packages/core/src/chain.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { firstValueFrom } from 'rxjs'
22
import { filter, mapTo } from 'rxjs/operators'
3-
import { ProviderRpcErrorCode } from '@bn-onboard/common'
3+
import { ProviderRpcErrorCode } from '@web3-onboard/common'
44
import { addNewChain, switchChain } from './provider'
55
import { state } from './store'
66
import { switchChainModal$ } from './streams'

packages/core/src/index.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import type { WalletModule } from '@bn-onboard/common'
2-
import { SofiaProRegular } from '@bn-onboard/common'
1+
import type { WalletModule } from '@web3-onboard/common'
2+
import { SofiaProRegular } from '@web3-onboard/common'
33
import connectWallet from './connect'
44
import disconnectWallet from './disconnect'
55
import setChain from './chain'

packages/core/src/provider.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import type {
1212
AccountsListener,
1313
ChainListener,
1414
SelectAccountsRequest
15-
} from '@bn-onboard/common'
15+
} from '@web3-onboard/common'
1616

1717
import { disconnectWallet$ } from './streams'
1818
import type { Account, Address, Balances, Ens, WalletState } from './types'

packages/core/src/store/actions.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import type { Chain } from '@bn-onboard/common'
1+
import type { Chain } from '@web3-onboard/common'
22

33
import type {
44
Account,

packages/core/src/store/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { BehaviorSubject, Subject, Observable } from 'rxjs'
22
import { distinctUntilKeyChanged, pluck, filter } from 'rxjs/operators'
33

4-
import type { Chain } from '@bn-onboard/common'
4+
import type { Chain } from '@web3-onboard/common'
55

66
import type {
77
AppState,

packages/core/src/streams.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import type { Chain } from '@bn-onboard/common'
1+
import type { Chain } from '@web3-onboard/common'
22
import { onDestroy, onMount, beforeUpdate, afterUpdate } from 'svelte'
33
import { Observable, Subject, defer, BehaviorSubject } from 'rxjs'
44
import {

packages/core/src/types.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import type {
99
WalletModule,
1010
Chain,
1111
TokenSymbol
12-
} from '@bn-onboard/common'
12+
} from '@web3-onboard/common'
1313

1414
import type setChain from './chain'
1515
import type connect from './connect'

packages/core/src/utils.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import type {
77
DeviceBrowser,
88
DeviceOS,
99
DeviceType
10-
} from '@bn-onboard/common'
10+
} from '@web3-onboard/common'
1111

1212
export const notNullish = <T>(value: T | null | undefined): value is T =>
1313
value != null

packages/core/src/validation.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import Joi from 'joi'
2-
import type { ChainId, WalletModule } from '@bn-onboard/common'
2+
import type { ChainId, WalletModule } from '@web3-onboard/common'
33

44
import type {
55
InitOptions,

packages/core/src/views/connect/ConnectingWallet.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<script lang="ts">
22
import { _ } from 'svelte-i18n'
33
import { createEventDispatcher } from 'svelte'
4-
import { ProviderRpcErrorCode } from '@bn-onboard/common'
4+
import { ProviderRpcErrorCode } from '@web3-onboard/common'
55
66
import { getChainId, requestAccounts, trackWallet } from '../../provider'
77
import { internalState$ } from '../../streams'

0 commit comments

Comments
 (0)