Skip to content

Commit

Permalink
fix: dapp-kit
Browse files Browse the repository at this point in the history
  • Loading branch information
davidecarpini committed Feb 5, 2024
1 parent 71551fc commit 4080b83
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/dapp-kit/src/dapp-kit.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import {
SimpleNet,
} from '@vechain/connex-driver/dist/index.js';
import { Framework } from '@vechain/connex-framework';
import { blake2b256 } from 'thor-devkit';
import * as ThorDevkit from 'thor-devkit';
import { WalletManager } from './classes';
import { DAppKitLogger, normalizeGenesisBlock } from './utils';
import type { DAppKitOptions } from './types';
Expand All @@ -14,7 +14,7 @@ const createThorDriver = (
node: string,
genesis: Connex.Thor.Block,
): DriverNoVendor => {
const key = blake2b256(
const key = ThorDevkit.blake2b256(
JSON.stringify({
node,
genesis,
Expand Down

0 comments on commit 4080b83

Please sign in to comment.