@aztec/test-wallet 3.0.0-nightly.20251026 → 3.0.0-nightly.20251031
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/utils.js +1 -1
- package/package.json +8 -8
- package/src/utils.ts +1 -1
package/dest/utils.js
CHANGED
|
@@ -38,7 +38,7 @@ import { Tx } from '@aztec/stdlib/tx';
|
|
|
38
38
|
stats;
|
|
39
39
|
constructor(node, tx, /** The offchain effects emitted during the execution of the transaction. */ offchainEffects, // eslint-disable-next-line jsdoc/require-jsdoc
|
|
40
40
|
stats){
|
|
41
|
-
super(tx.getTxHash(), tx.data, tx.
|
|
41
|
+
super(tx.getTxHash(), tx.data, tx.chonkProof, tx.contractClassLogFields, tx.publicFunctionCalldata), this.node = node, this.offchainEffects = offchainEffects, this.stats = stats;
|
|
42
42
|
}
|
|
43
43
|
send() {
|
|
44
44
|
const sendTx = async ()=>{
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aztec/test-wallet",
|
|
3
3
|
"homepage": "https://github.com/AztecProtocol/aztec-packages/tree/master/yarn-project/test-wallet",
|
|
4
|
-
"version": "3.0.0-nightly.
|
|
4
|
+
"version": "3.0.0-nightly.20251031",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"exports": {
|
|
7
7
|
"./client/bundle": "./dest/bundle.js",
|
|
@@ -62,13 +62,13 @@
|
|
|
62
62
|
]
|
|
63
63
|
},
|
|
64
64
|
"dependencies": {
|
|
65
|
-
"@aztec/accounts": "3.0.0-nightly.
|
|
66
|
-
"@aztec/aztec.js": "3.0.0-nightly.
|
|
67
|
-
"@aztec/entrypoints": "3.0.0-nightly.
|
|
68
|
-
"@aztec/foundation": "3.0.0-nightly.
|
|
69
|
-
"@aztec/noir-contracts.js": "3.0.0-nightly.
|
|
70
|
-
"@aztec/pxe": "3.0.0-nightly.
|
|
71
|
-
"@aztec/stdlib": "3.0.0-nightly.
|
|
65
|
+
"@aztec/accounts": "3.0.0-nightly.20251031",
|
|
66
|
+
"@aztec/aztec.js": "3.0.0-nightly.20251031",
|
|
67
|
+
"@aztec/entrypoints": "3.0.0-nightly.20251031",
|
|
68
|
+
"@aztec/foundation": "3.0.0-nightly.20251031",
|
|
69
|
+
"@aztec/noir-contracts.js": "3.0.0-nightly.20251031",
|
|
70
|
+
"@aztec/pxe": "3.0.0-nightly.20251031",
|
|
71
|
+
"@aztec/stdlib": "3.0.0-nightly.20251031"
|
|
72
72
|
},
|
|
73
73
|
"devDependencies": {
|
|
74
74
|
"@jest/globals": "^30.0.0",
|
package/src/utils.ts
CHANGED
|
@@ -67,7 +67,7 @@ export class ProvenTx extends Tx {
|
|
|
67
67
|
// eslint-disable-next-line jsdoc/require-jsdoc
|
|
68
68
|
public stats?: ProvingStats,
|
|
69
69
|
) {
|
|
70
|
-
super(tx.getTxHash(), tx.data, tx.
|
|
70
|
+
super(tx.getTxHash(), tx.data, tx.chonkProof, tx.contractClassLogFields, tx.publicFunctionCalldata);
|
|
71
71
|
}
|
|
72
72
|
|
|
73
73
|
send() {
|