@injectivelabs/wallet-core 1.15.7 → 1.15.8

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -11,10 +11,6 @@ export default class BaseWalletStrategy implements WalletStrategyInterface {
11
11
  constructor(args: WalletStrategyArguments);
12
12
  getWallet(): Wallet;
13
13
  setWallet(wallet: Wallet): void;
14
- /**
15
- * When we use setMetadata, we are usually updating the metadata of the
16
- * existing strategy.
17
- */
18
14
  setMetadata(metadata?: WalletMetadata): void;
19
15
  getStrategy(): ConcreteWalletStrategy;
20
16
  getAddresses(args?: unknown): Promise<AccountAddress[]>;
@@ -36,10 +36,6 @@ class BaseWalletStrategy {
36
36
  setWallet(wallet) {
37
37
  this.wallet = wallet;
38
38
  }
39
- /**
40
- * When we use setMetadata, we are usually updating the metadata of the
41
- * existing strategy.
42
- */
43
39
  setMetadata(metadata) {
44
40
  this.metadata = metadata;
45
41
  this.getStrategy().setMetadata?.(metadata);
@@ -11,10 +11,6 @@ export default class BaseWalletStrategy implements WalletStrategyInterface {
11
11
  constructor(args: WalletStrategyArguments);
12
12
  getWallet(): Wallet;
13
13
  setWallet(wallet: Wallet): void;
14
- /**
15
- * When we use setMetadata, we are usually updating the metadata of the
16
- * existing strategy.
17
- */
18
14
  setMetadata(metadata?: WalletMetadata): void;
19
15
  getStrategy(): ConcreteWalletStrategy;
20
16
  getAddresses(args?: unknown): Promise<AccountAddress[]>;
@@ -34,10 +34,6 @@ export default class BaseWalletStrategy {
34
34
  setWallet(wallet) {
35
35
  this.wallet = wallet;
36
36
  }
37
- /**
38
- * When we use setMetadata, we are usually updating the metadata of the
39
- * existing strategy.
40
- */
41
37
  setMetadata(metadata) {
42
38
  this.metadata = metadata;
43
39
  this.getStrategy().setMetadata?.(metadata);
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@injectivelabs/wallet-core",
3
3
  "description": "Core wallet strategy",
4
- "version": "1.15.7",
4
+ "version": "1.15.8",
5
5
  "sideEffects": false,
6
6
  "type": "module",
7
7
  "author": {
@@ -56,16 +56,16 @@
56
56
  "start": "node dist/index.js"
57
57
  },
58
58
  "dependencies": {
59
- "@injectivelabs/exceptions": "^1.15.4",
60
- "@injectivelabs/networks": "^1.15.5",
61
- "@injectivelabs/sdk-ts": "^1.15.7",
62
- "@injectivelabs/ts-types": "^1.15.5",
63
- "@injectivelabs/utils": "^1.15.5",
64
- "@injectivelabs/wallet-base": "^1.15.7",
59
+ "@injectivelabs/exceptions": "^1.15.5",
60
+ "@injectivelabs/networks": "^1.15.6",
61
+ "@injectivelabs/sdk-ts": "^1.15.8",
62
+ "@injectivelabs/ts-types": "^1.15.6",
63
+ "@injectivelabs/utils": "^1.15.6",
64
+ "@injectivelabs/wallet-base": "^1.15.8",
65
65
  "@keplr-wallet/types": "^0.12.159"
66
66
  },
67
67
  "devDependencies": {
68
68
  "shx": "^0.3.3"
69
69
  },
70
- "gitHead": "9beac4caf49a97d0d64bde184c4fc603696b81c0"
70
+ "gitHead": "2be8934e197cb79cafd9c4e1ba04dfadbbcc5fa0"
71
71
  }