@pushchain/core 2.1.7 → 2.1.9

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pushchain/core",
3
- "version": "2.1.7",
3
+ "version": "2.1.9",
4
4
  "homepage": "https://push.org",
5
5
  "keywords": [
6
6
  "pushchain",
@@ -45,6 +45,5 @@
45
45
  "devDependencies": {
46
46
  "secp256k1": "^5.0.1",
47
47
  "ts-proto": "^2.0.3"
48
- },
49
- "types": "./src/index.d.ts"
50
- }
48
+ }
49
+ }
@@ -11,7 +11,7 @@ export type ExecuteParams = {
11
11
  * Hex-encoded calldata or transfer payload.
12
12
  * @reason Encodes the function selector + arguments (or plain transfer).
13
13
  */
14
- data?: `0x${string}` | MulticallCall[];
14
+ data?: `0x${string}` | MultiCall[];
15
15
  /**
16
16
  * Optional hard cap on gas to use for this transaction.
17
17
  * @reason Prevents runaway gas consumption and lets users enforce limits.
@@ -129,7 +129,7 @@ export interface Signature {
129
129
  /**
130
130
  * Call shape for multicall payloads
131
131
  */
132
- export type MulticallCall = {
132
+ export type MultiCall = {
133
133
  to: `0x${string}`;
134
134
  value: bigint;
135
135
  data: `0x${string}`;