@argent/x-shared 1.56.1 → 1.56.2

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.
@@ -5,15 +5,15 @@ import { AllowArray, Call, DeclareContractPayload, DeployAccountContractPayload,
5
5
  * Same as EstimateFeeAction from starknet.js
6
6
  */
7
7
  export type TransactionAction = {
8
- type: TransactionType.INVOKE;
8
+ type: typeof TransactionType.INVOKE;
9
9
  payload: AllowArray<Call>;
10
10
  } | {
11
- type: TransactionType.DECLARE;
11
+ type: typeof TransactionType.DECLARE;
12
12
  payload: DeclareContractPayload;
13
13
  } | {
14
- type: TransactionType.DEPLOY_ACCOUNT;
14
+ type: typeof TransactionType.DEPLOY_ACCOUNT;
15
15
  payload: DeployAccountContractPayload;
16
16
  } | {
17
- type: TransactionType.DEPLOY;
17
+ type: typeof TransactionType.DEPLOY;
18
18
  payload: UniversalDeployerContractPayload;
19
19
  };
@@ -14,7 +14,7 @@ export interface SimulationError extends Error {
14
14
  url: string;
15
15
  }
16
16
  export interface SimulateDeployAccountRequest {
17
- type: TransactionType.DEPLOY_ACCOUNT;
17
+ type: typeof TransactionType.DEPLOY_ACCOUNT;
18
18
  classHash: string;
19
19
  calldata: Calldata;
20
20
  salt: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@argent/x-shared",
3
- "version": "1.56.1",
3
+ "version": "1.56.2",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "git+https://github.com/argentlabs/x-shared.git"
@@ -73,7 +73,7 @@
73
73
  "@starknet-io/types-js": "^0.7.7",
74
74
  "big-decimal-number": "npm:bignumber.js@^9.1.2",
75
75
  "micro-starknet": "^0.2.3",
76
- "starknet": "6.11.0",
76
+ "starknet": "6.21.1",
77
77
  "starknet4-deprecated": "npm:starknet@4.4.0",
78
78
  "starknet5": "npm:starknet@5.25.0"
79
79
  },