@injectivelabs/wallet-base 1.16.13-alpha.2 → 1.16.13-alpha.3

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.
@@ -15,13 +15,13 @@ export declare const createEip712StdSignDoc: ({ memo, chainId, accountNumber, ti
15
15
  sequence: string;
16
16
  fee: {
17
17
  amount: {
18
- amount: string;
19
18
  denom: string;
19
+ amount: string;
20
20
  }[];
21
21
  gas: string;
22
- payer: string;
23
- granter: string;
24
- feePayer: string;
22
+ payer: string | undefined;
23
+ granter: string | undefined;
24
+ feePayer: string | undefined;
25
25
  };
26
26
  msgs: {
27
27
  type: string;
@@ -15,13 +15,13 @@ export declare const createEip712StdSignDoc: ({ memo, chainId, accountNumber, ti
15
15
  sequence: string;
16
16
  fee: {
17
17
  amount: {
18
- amount: string;
19
18
  denom: string;
19
+ amount: string;
20
20
  }[];
21
21
  gas: string;
22
- payer: string;
23
- granter: string;
24
- feePayer: string;
22
+ payer: string | undefined;
23
+ granter: string | undefined;
24
+ feePayer: string | undefined;
25
25
  };
26
26
  msgs: {
27
27
  type: string;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@injectivelabs/wallet-base",
3
3
  "description": "Base wallet strategy for use with @injectivelabs/wallet-core.",
4
- "version": "1.16.13-alpha.2",
4
+ "version": "1.16.13-alpha.3",
5
5
  "sideEffects": false,
6
6
  "type": "module",
7
7
  "author": {
@@ -56,14 +56,14 @@
56
56
  "start": "node dist/index.js"
57
57
  },
58
58
  "dependencies": {
59
- "@injectivelabs/exceptions": "1.16.13-alpha.2",
60
- "@injectivelabs/networks": "1.16.13-alpha.2",
61
- "@injectivelabs/sdk-ts": "1.16.13-alpha.2",
62
- "@injectivelabs/ts-types": "1.16.13-alpha.2",
59
+ "@injectivelabs/exceptions": "1.16.13-alpha.3",
60
+ "@injectivelabs/networks": "1.16.13-alpha.3",
61
+ "@injectivelabs/sdk-ts": "1.16.13-alpha.3",
62
+ "@injectivelabs/ts-types": "1.16.13-alpha.3",
63
63
  "eip1193-provider": "^1.0.1"
64
64
  },
65
65
  "devDependencies": {
66
66
  "shx": "^0.3.3"
67
67
  },
68
- "gitHead": "c60f210698d2ee266855a6bb7342d0147964bad4"
68
+ "gitHead": "9714d8be468bec92c649fee736e797912e3d5c12"
69
69
  }