@aztec/aztec.js 0.0.1-commit.6d63667d → 0.0.1-commit.86469d5
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/dest/contract/protocol_contracts/multi-call-entrypoint.js +6 -16
- package/dest/contract/protocol_contracts/public-checks.js +6 -16
- package/package.json +10 -19
- package/src/contract/protocol_contracts/multi-call-entrypoint.ts +2 -2
- package/src/contract/protocol_contracts/public-checks.ts +2 -2
|
@@ -279,14 +279,9 @@ const MultiCallEntrypointContractArtifact = {
|
|
|
279
279
|
error_kind: 'string',
|
|
280
280
|
string: 'Input length must be a multiple of 32'
|
|
281
281
|
},
|
|
282
|
-
'
|
|
283
|
-
error_kind: '
|
|
284
|
-
|
|
285
|
-
item_types: [
|
|
286
|
-
{
|
|
287
|
-
kind: 'field'
|
|
288
|
-
}
|
|
289
|
-
]
|
|
282
|
+
'9530675838293881722': {
|
|
283
|
+
error_kind: 'string',
|
|
284
|
+
string: 'Writer did not write all data'
|
|
290
285
|
},
|
|
291
286
|
'9791669845391776238': {
|
|
292
287
|
error_kind: 'string',
|
|
@@ -433,14 +428,9 @@ const MultiCallEntrypointContractArtifact = {
|
|
|
433
428
|
error_kind: 'string',
|
|
434
429
|
string: 'Input length must be a multiple of 32'
|
|
435
430
|
},
|
|
436
|
-
'
|
|
437
|
-
error_kind: '
|
|
438
|
-
|
|
439
|
-
item_types: [
|
|
440
|
-
{
|
|
441
|
-
kind: 'field'
|
|
442
|
-
}
|
|
443
|
-
]
|
|
431
|
+
'9530675838293881722': {
|
|
432
|
+
error_kind: 'string',
|
|
433
|
+
string: 'Writer did not write all data'
|
|
444
434
|
},
|
|
445
435
|
'9791669845391776238': {
|
|
446
436
|
error_kind: 'string',
|
|
@@ -162,14 +162,9 @@ const PublicChecksContractArtifact = {
|
|
|
162
162
|
error_kind: 'string',
|
|
163
163
|
string: 'Input length must be a multiple of 32'
|
|
164
164
|
},
|
|
165
|
-
'
|
|
166
|
-
error_kind: '
|
|
167
|
-
|
|
168
|
-
item_types: [
|
|
169
|
-
{
|
|
170
|
-
kind: 'field'
|
|
171
|
-
}
|
|
172
|
-
]
|
|
165
|
+
'9530675838293881722': {
|
|
166
|
+
error_kind: 'string',
|
|
167
|
+
string: 'Writer did not write all data'
|
|
173
168
|
},
|
|
174
169
|
'9791669845391776238': {
|
|
175
170
|
error_kind: 'string',
|
|
@@ -373,14 +368,9 @@ const PublicChecksContractArtifact = {
|
|
|
373
368
|
error_kind: 'string',
|
|
374
369
|
string: 'Input length must be a multiple of 32'
|
|
375
370
|
},
|
|
376
|
-
'
|
|
377
|
-
error_kind: '
|
|
378
|
-
|
|
379
|
-
item_types: [
|
|
380
|
-
{
|
|
381
|
-
kind: 'field'
|
|
382
|
-
}
|
|
383
|
-
]
|
|
371
|
+
'9530675838293881722': {
|
|
372
|
+
error_kind: 'string',
|
|
373
|
+
string: 'Writer did not write all data'
|
|
384
374
|
},
|
|
385
375
|
'9791669845391776238': {
|
|
386
376
|
error_kind: 'string',
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aztec/aztec.js",
|
|
3
3
|
"homepage": "https://github.com/AztecProtocol/aztec-packages/tree/master/yarn-project/aztec.js",
|
|
4
|
-
"version": "0.0.1-commit.
|
|
4
|
+
"version": "0.0.1-commit.86469d5",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"exports": {
|
|
7
7
|
"./abi": "./dest/api/abi.js",
|
|
@@ -30,16 +30,7 @@
|
|
|
30
30
|
},
|
|
31
31
|
"typedocOptions": {
|
|
32
32
|
"entryPoints": [
|
|
33
|
-
"./src/
|
|
34
|
-
"./src/api/account.ts",
|
|
35
|
-
"./src/api/contract.ts",
|
|
36
|
-
"./src/api/deployment.ts",
|
|
37
|
-
"./src/api/ethereum.ts",
|
|
38
|
-
"./src/api/fee.ts",
|
|
39
|
-
"./src/api/fields.ts",
|
|
40
|
-
"./src/api/keys.ts",
|
|
41
|
-
"./src/api/tx.ts",
|
|
42
|
-
"./src/api/wallet.ts"
|
|
33
|
+
"./src/index.ts"
|
|
43
34
|
],
|
|
44
35
|
"name": "Aztec.js",
|
|
45
36
|
"tsconfig": "./tsconfig.json"
|
|
@@ -94,20 +85,20 @@
|
|
|
94
85
|
]
|
|
95
86
|
},
|
|
96
87
|
"dependencies": {
|
|
97
|
-
"@aztec/constants": "0.0.1-commit.
|
|
98
|
-
"@aztec/entrypoints": "0.0.1-commit.
|
|
99
|
-
"@aztec/ethereum": "0.0.1-commit.
|
|
100
|
-
"@aztec/foundation": "0.0.1-commit.
|
|
101
|
-
"@aztec/l1-artifacts": "0.0.1-commit.
|
|
102
|
-
"@aztec/protocol-contracts": "0.0.1-commit.
|
|
103
|
-
"@aztec/stdlib": "0.0.1-commit.
|
|
88
|
+
"@aztec/constants": "0.0.1-commit.86469d5",
|
|
89
|
+
"@aztec/entrypoints": "0.0.1-commit.86469d5",
|
|
90
|
+
"@aztec/ethereum": "0.0.1-commit.86469d5",
|
|
91
|
+
"@aztec/foundation": "0.0.1-commit.86469d5",
|
|
92
|
+
"@aztec/l1-artifacts": "0.0.1-commit.86469d5",
|
|
93
|
+
"@aztec/protocol-contracts": "0.0.1-commit.86469d5",
|
|
94
|
+
"@aztec/stdlib": "0.0.1-commit.86469d5",
|
|
104
95
|
"axios": "^1.12.0",
|
|
105
96
|
"tslib": "^2.4.0",
|
|
106
97
|
"viem": "npm:@aztec/viem@2.38.2",
|
|
107
98
|
"zod": "^3.23.8"
|
|
108
99
|
},
|
|
109
100
|
"devDependencies": {
|
|
110
|
-
"@aztec/builder": "0.0.1-commit.
|
|
101
|
+
"@aztec/builder": "0.0.1-commit.86469d5",
|
|
111
102
|
"@jest/globals": "^30.0.0",
|
|
112
103
|
"@types/jest": "^30.0.0",
|
|
113
104
|
"@types/node": "^22.15.17",
|
|
@@ -160,7 +160,7 @@ const MultiCallEntrypointContractArtifact: ContractArtifact = {
|
|
|
160
160
|
},
|
|
161
161
|
'4261968856572588300': { error_kind: 'string', string: 'Value does not fit in field' },
|
|
162
162
|
'4440399188109668273': { error_kind: 'string', string: 'Input length must be a multiple of 32' },
|
|
163
|
-
'
|
|
163
|
+
'9530675838293881722': { error_kind: 'string', string: 'Writer did not write all data' },
|
|
164
164
|
'9791669845391776238': {
|
|
165
165
|
error_kind: 'string',
|
|
166
166
|
string: '0 has a square root; you cannot claim it is not square',
|
|
@@ -223,7 +223,7 @@ const MultiCallEntrypointContractArtifact: ContractArtifact = {
|
|
|
223
223
|
},
|
|
224
224
|
'4261968856572588300': { error_kind: 'string', string: 'Value does not fit in field' },
|
|
225
225
|
'4440399188109668273': { error_kind: 'string', string: 'Input length must be a multiple of 32' },
|
|
226
|
-
'
|
|
226
|
+
'9530675838293881722': { error_kind: 'string', string: 'Writer did not write all data' },
|
|
227
227
|
'9791669845391776238': {
|
|
228
228
|
error_kind: 'string',
|
|
229
229
|
string: '0 has a square root; you cannot claim it is not square',
|
|
@@ -93,7 +93,7 @@ const PublicChecksContractArtifact: ContractArtifact = {
|
|
|
93
93
|
},
|
|
94
94
|
'4261968856572588300': { error_kind: 'string', string: 'Value does not fit in field' },
|
|
95
95
|
'4440399188109668273': { error_kind: 'string', string: 'Input length must be a multiple of 32' },
|
|
96
|
-
'
|
|
96
|
+
'9530675838293881722': { error_kind: 'string', string: 'Writer did not write all data' },
|
|
97
97
|
'9791669845391776238': {
|
|
98
98
|
error_kind: 'string',
|
|
99
99
|
string: '0 has a square root; you cannot claim it is not square',
|
|
@@ -184,7 +184,7 @@ const PublicChecksContractArtifact: ContractArtifact = {
|
|
|
184
184
|
},
|
|
185
185
|
'4261968856572588300': { error_kind: 'string', string: 'Value does not fit in field' },
|
|
186
186
|
'4440399188109668273': { error_kind: 'string', string: 'Input length must be a multiple of 32' },
|
|
187
|
-
'
|
|
187
|
+
'9530675838293881722': { error_kind: 'string', string: 'Writer did not write all data' },
|
|
188
188
|
'9791669845391776238': {
|
|
189
189
|
error_kind: 'string',
|
|
190
190
|
string: '0 has a square root; you cannot claim it is not square',
|