We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a68fcf2 commit 0f5edbeCopy full SHA for 0f5edbe
src/stores.ts
@@ -1,4 +1,4 @@
1
-import { getBlocknative, initializeBlocknative } from './services'
+import { getBlocknative } from './services'
2
import { writable, derived, get } from 'svelte/store'
3
import { wait, makeCancelable, createInterval } from './utilities'
4
import { validateWalletInterface, validateType } from './validation'
@@ -309,14 +309,6 @@ function createBalanceStore(initialState: string | null): BalanceStore {
309
currentBalance: get(balance)
310
})
311
312
- if (!getBlocknative()) {
313
- initializeBlocknative(
314
- get(app).dappId,
315
- get(app).networkId,
316
- get(app).apiUrl
317
- )
318
- }
319
-
320
if (emitterAddress !== $address) {
321
const blocknative = getBlocknative()
322
0 commit comments