@aztec/accounts 3.0.0-nightly.20251112 → 3.0.0-nightly.20251113
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/artifacts/EcdsaKAccount.json +13 -13
- package/artifacts/EcdsaRAccount.json +13 -13
- package/artifacts/SchnorrAccount.json +17 -17
- package/artifacts/SchnorrSingleKeyAccount.json +13 -13
- package/artifacts/SimulatedAccount.json +9 -9
- package/dest/defaults/account_interface.d.ts +1 -2
- package/dest/defaults/account_interface.d.ts.map +1 -1
- package/package.json +6 -6
- package/src/defaults/account_interface.ts +1 -2
|
@@ -1,13 +1,12 @@
|
|
|
1
1
|
import type { AccountInterface, AuthWitnessProvider } from '@aztec/aztec.js/account';
|
|
2
2
|
import { type DefaultAccountEntrypointOptions } from '@aztec/entrypoints/account';
|
|
3
3
|
import type { ChainInfo, EntrypointInterface } from '@aztec/entrypoints/interfaces';
|
|
4
|
-
import type { ExecutionPayload } from '@aztec/entrypoints/payload';
|
|
5
4
|
import { Fr } from '@aztec/foundation/fields';
|
|
6
5
|
import type { AuthWitness } from '@aztec/stdlib/auth-witness';
|
|
7
6
|
import type { AztecAddress } from '@aztec/stdlib/aztec-address';
|
|
8
7
|
import { CompleteAddress } from '@aztec/stdlib/contract';
|
|
9
8
|
import type { GasSettings } from '@aztec/stdlib/gas';
|
|
10
|
-
import type { TxExecutionRequest } from '@aztec/stdlib/tx';
|
|
9
|
+
import type { ExecutionPayload, TxExecutionRequest } from '@aztec/stdlib/tx';
|
|
11
10
|
/**
|
|
12
11
|
* Default implementation for an account interface. Requires that the account uses the default
|
|
13
12
|
* entrypoint signature, which accept an AppPayload and a FeePayload as defined in noir-libs/aztec-noir/src/entrypoint module
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"account_interface.d.ts","sourceRoot":"","sources":["../../src/defaults/account_interface.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,gBAAgB,EAAE,mBAAmB,EAAE,MAAM,yBAAyB,CAAC;AACrF,OAAO,EAA4B,KAAK,+BAA+B,EAAE,MAAM,4BAA4B,CAAC;AAC5G,OAAO,KAAK,EAAE,SAAS,EAAE,mBAAmB,EAAE,MAAM,+BAA+B,CAAC;AACpF,OAAO,
|
|
1
|
+
{"version":3,"file":"account_interface.d.ts","sourceRoot":"","sources":["../../src/defaults/account_interface.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,gBAAgB,EAAE,mBAAmB,EAAE,MAAM,yBAAyB,CAAC;AACrF,OAAO,EAA4B,KAAK,+BAA+B,EAAE,MAAM,4BAA4B,CAAC;AAC5G,OAAO,KAAK,EAAE,SAAS,EAAE,mBAAmB,EAAE,MAAM,+BAA+B,CAAC;AACpF,OAAO,EAAE,EAAE,EAAE,MAAM,0BAA0B,CAAC;AAC9C,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,4BAA4B,CAAC;AAC9D,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,6BAA6B,CAAC;AAChE,OAAO,EAAE,eAAe,EAAE,MAAM,wBAAwB,CAAC;AACzD,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,mBAAmB,CAAC;AACrD,OAAO,KAAK,EAAE,gBAAgB,EAAE,kBAAkB,EAAE,MAAM,kBAAkB,CAAC;AAE7E;;;GAGG;AACH,qBAAa,uBAAwB,YAAW,gBAAgB;IAO5D,OAAO,CAAC,mBAAmB;IAC3B,OAAO,CAAC,OAAO;IAPjB,SAAS,CAAC,UAAU,EAAE,mBAAmB,CAAC;IAE1C,OAAO,CAAC,OAAO,CAAK;IACpB,OAAO,CAAC,OAAO,CAAK;gBAGV,mBAAmB,EAAE,mBAAmB,EACxC,OAAO,EAAE,eAAe,EAChC,SAAS,EAAE,SAAS;IAYtB,wBAAwB,CACtB,IAAI,EAAE,gBAAgB,EACtB,WAAW,EAAE,WAAW,EACxB,OAAO,EAAE,+BAA+B,GACvC,OAAO,CAAC,kBAAkB,CAAC;IAI9B,aAAa,CAAC,WAAW,EAAE,EAAE,GAAG,OAAO,CAAC,WAAW,CAAC;IAIpD,kBAAkB,IAAI,eAAe;IAIrC,UAAU,IAAI,YAAY;IAI1B,UAAU,IAAI,EAAE;IAIhB,UAAU,IAAI,EAAE;CAGjB"}
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "@aztec/accounts",
|
|
3
3
|
"homepage": "https://github.com/AztecProtocol/aztec-packages/tree/master/yarn-project/accounts",
|
|
4
4
|
"description": "Implementation of sample account contracts for Aztec Network",
|
|
5
|
-
"version": "3.0.0-nightly.
|
|
5
|
+
"version": "3.0.0-nightly.20251113",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"exports": {
|
|
8
8
|
"./defaults": "./dest/defaults/index.js",
|
|
@@ -82,11 +82,11 @@
|
|
|
82
82
|
]
|
|
83
83
|
},
|
|
84
84
|
"dependencies": {
|
|
85
|
-
"@aztec/aztec.js": "3.0.0-nightly.
|
|
86
|
-
"@aztec/entrypoints": "3.0.0-nightly.
|
|
87
|
-
"@aztec/ethereum": "3.0.0-nightly.
|
|
88
|
-
"@aztec/foundation": "3.0.0-nightly.
|
|
89
|
-
"@aztec/stdlib": "3.0.0-nightly.
|
|
85
|
+
"@aztec/aztec.js": "3.0.0-nightly.20251113",
|
|
86
|
+
"@aztec/entrypoints": "3.0.0-nightly.20251113",
|
|
87
|
+
"@aztec/ethereum": "3.0.0-nightly.20251113",
|
|
88
|
+
"@aztec/foundation": "3.0.0-nightly.20251113",
|
|
89
|
+
"@aztec/stdlib": "3.0.0-nightly.20251113",
|
|
90
90
|
"tslib": "^2.4.0"
|
|
91
91
|
},
|
|
92
92
|
"devDependencies": {
|
|
@@ -1,13 +1,12 @@
|
|
|
1
1
|
import type { AccountInterface, AuthWitnessProvider } from '@aztec/aztec.js/account';
|
|
2
2
|
import { DefaultAccountEntrypoint, type DefaultAccountEntrypointOptions } from '@aztec/entrypoints/account';
|
|
3
3
|
import type { ChainInfo, EntrypointInterface } from '@aztec/entrypoints/interfaces';
|
|
4
|
-
import type { ExecutionPayload } from '@aztec/entrypoints/payload';
|
|
5
4
|
import { Fr } from '@aztec/foundation/fields';
|
|
6
5
|
import type { AuthWitness } from '@aztec/stdlib/auth-witness';
|
|
7
6
|
import type { AztecAddress } from '@aztec/stdlib/aztec-address';
|
|
8
7
|
import { CompleteAddress } from '@aztec/stdlib/contract';
|
|
9
8
|
import type { GasSettings } from '@aztec/stdlib/gas';
|
|
10
|
-
import type { TxExecutionRequest } from '@aztec/stdlib/tx';
|
|
9
|
+
import type { ExecutionPayload, TxExecutionRequest } from '@aztec/stdlib/tx';
|
|
11
10
|
|
|
12
11
|
/**
|
|
13
12
|
* Default implementation for an account interface. Requires that the account uses the default
|