Skip to content

Commit 5982924

Browse files
authored
Merge pull request #52 from multiversx/amg/update_imports
6.1.4
2 parents f5012e6 + e1c5500 commit 5982924

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@multiversx/sdk-wallet-connect-provider",
3-
"version": "6.1.3",
3+
"version": "6.1.4",
44
"description": "Signing provider for dApps: WalletConnect",
55
"main": "out/index.js",
66
"types": "out/index.d.js",

src/utils.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
import { Address, Transaction } from "@multiversx/sdk-core";
1+
import { Address } from "@multiversx/sdk-core/out/core/address";
2+
import { Transaction } from "@multiversx/sdk-core/out/core/transaction";
23
import Client from "@walletconnect/sign-client";
34
import {
45
EngineTypes,

src/walletConnectV2Provider.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
1-
import { Address, Message, Transaction } from "@multiversx/sdk-core";
1+
import { Message } from "@multiversx/sdk-core/out/core/message";
2+
import { Address } from "@multiversx/sdk-core/out/core/address";
3+
import { Transaction } from "@multiversx/sdk-core/out/core/transaction";
4+
25
import Client from "@walletconnect/sign-client";
36
import {
47
EngineTypes,

0 commit comments

Comments
 (0)