@aztec/accounts 0.0.1-commit.db765a8 → 0.0.1-commit.ddcf04837

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.
Files changed (37) hide show
  1. package/artifacts/EcdsaKAccount.json +5598 -841
  2. package/artifacts/EcdsaRAccount.json +5589 -832
  3. package/artifacts/SchnorrAccount.json +5609 -826
  4. package/artifacts/SimulatedEcdsaAccount.json +8351 -0
  5. package/artifacts/SimulatedSchnorrAccount.d.json.ts +3 -0
  6. package/artifacts/SimulatedSchnorrAccount.json +8327 -0
  7. package/dest/stub/ecdsa/index.d.ts +11 -0
  8. package/dest/stub/ecdsa/index.d.ts.map +1 -0
  9. package/dest/stub/ecdsa/index.js +18 -0
  10. package/dest/stub/ecdsa/lazy.d.ts +14 -0
  11. package/dest/stub/ecdsa/lazy.d.ts.map +1 -0
  12. package/dest/stub/ecdsa/lazy.js +22 -0
  13. package/dest/stub/schnorr/index.d.ts +11 -0
  14. package/dest/stub/schnorr/index.d.ts.map +1 -0
  15. package/dest/stub/schnorr/index.js +18 -0
  16. package/dest/stub/schnorr/lazy.d.ts +14 -0
  17. package/dest/stub/schnorr/lazy.d.ts.map +1 -0
  18. package/dest/stub/schnorr/lazy.js +22 -0
  19. package/dest/utils/ssh_agent.d.ts +1 -1
  20. package/dest/utils/ssh_agent.d.ts.map +1 -1
  21. package/dest/utils/ssh_agent.js +2 -0
  22. package/package.json +10 -8
  23. package/src/stub/ecdsa/index.ts +28 -0
  24. package/src/stub/ecdsa/lazy.ts +34 -0
  25. package/src/stub/schnorr/index.ts +30 -0
  26. package/src/stub/schnorr/lazy.ts +34 -0
  27. package/src/utils/ssh_agent.ts +2 -0
  28. package/artifacts/SimulatedAccount.json +0 -4508
  29. package/dest/stub/index.d.ts +0 -20
  30. package/dest/stub/index.d.ts.map +0 -1
  31. package/dest/stub/index.js +0 -28
  32. package/dest/stub/lazy.d.ts +0 -25
  33. package/dest/stub/lazy.d.ts.map +0 -1
  34. package/dest/stub/lazy.js +0 -37
  35. package/src/stub/index.ts +0 -40
  36. package/src/stub/lazy.ts +0 -51
  37. /package/artifacts/{SimulatedAccount.d.json.ts → SimulatedEcdsaAccount.d.json.ts} +0 -0
@@ -0,0 +1,11 @@
1
+ import { BaseAccount } from '@aztec/aztec.js/account';
2
+ import type { CompleteAddress } from '@aztec/aztec.js/addresses';
3
+ import { StubBaseAccountContract } from '../account_contract.js';
4
+ export declare const StubEcdsaAccountContractArtifact: import("@aztec/stdlib/abi").ContractArtifact;
5
+ /** Stub account contract for ECDSA accounts (secp256k1 and secp256r1). Eagerly loads the contract artifact. */
6
+ export declare class StubEcdsaAccountContract extends StubBaseAccountContract {
7
+ getContractArtifact(): Promise<import("@aztec/stdlib/abi").ContractArtifact>;
8
+ }
9
+ /** Creates an ECDSA stub account that impersonates the one with the provided address. */
10
+ export declare function createStubEcdsaAccount(originalAddress: CompleteAddress): BaseAccount;
11
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguZC50cyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uL3NyYy9zdHViL2VjZHNhL2luZGV4LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxXQUFXLEVBQUUsTUFBTSx5QkFBeUIsQ0FBQztBQUN0RCxPQUFPLEtBQUssRUFBRSxlQUFlLEVBQUUsTUFBTSwyQkFBMkIsQ0FBQztBQU1qRSxPQUFPLEVBQUUsdUJBQXVCLEVBQUUsTUFBTSx3QkFBd0IsQ0FBQztBQUVqRSxlQUFPLE1BQU0sZ0NBQWdDLDhDQUEwRSxDQUFDO0FBRXhILCtHQUErRztBQUMvRyxxQkFBYSx3QkFBeUIsU0FBUSx1QkFBdUI7SUFDMUQsbUJBQW1CLDBEQUUzQjtDQUNGO0FBRUQseUZBQXlGO0FBQ3pGLHdCQUFnQixzQkFBc0IsQ0FBQyxlQUFlLEVBQUUsZUFBZSxlQVF0RSJ9
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/stub/ecdsa/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAE,MAAM,yBAAyB,CAAC;AACtD,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,2BAA2B,CAAC;AAMjE,OAAO,EAAE,uBAAuB,EAAE,MAAM,wBAAwB,CAAC;AAEjE,eAAO,MAAM,gCAAgC,8CAA0E,CAAC;AAExH,+GAA+G;AAC/G,qBAAa,wBAAyB,SAAQ,uBAAuB;IAC1D,mBAAmB,0DAE3B;CACF;AAED,yFAAyF;AACzF,wBAAgB,sBAAsB,CAAC,eAAe,EAAE,eAAe,eAQtE"}
@@ -0,0 +1,18 @@
1
+ import { BaseAccount } from '@aztec/aztec.js/account';
2
+ import { DefaultAccountEntrypoint } from '@aztec/entrypoints/account';
3
+ import { loadContractArtifact } from '@aztec/stdlib/abi';
4
+ import SimulatedEcdsaAccountJson from '../../../artifacts/SimulatedEcdsaAccount.json' with {
5
+ type: 'json'
6
+ };
7
+ import { StubBaseAccountContract } from '../account_contract.js';
8
+ export const StubEcdsaAccountContractArtifact = loadContractArtifact(SimulatedEcdsaAccountJson);
9
+ /** Stub account contract for ECDSA accounts (secp256k1 and secp256r1). Eagerly loads the contract artifact. */ export class StubEcdsaAccountContract extends StubBaseAccountContract {
10
+ getContractArtifact() {
11
+ return Promise.resolve(StubEcdsaAccountContractArtifact);
12
+ }
13
+ }
14
+ /** Creates an ECDSA stub account that impersonates the one with the provided address. */ export function createStubEcdsaAccount(originalAddress) {
15
+ const accountContract = new StubEcdsaAccountContract();
16
+ const authWitnessProvider = accountContract.getAuthWitnessProvider(originalAddress);
17
+ return new BaseAccount(new DefaultAccountEntrypoint(originalAddress.address, authWitnessProvider), authWitnessProvider, originalAddress);
18
+ }
@@ -0,0 +1,14 @@
1
+ import { BaseAccount } from '@aztec/aztec.js/account';
2
+ import type { CompleteAddress } from '@aztec/aztec.js/addresses';
3
+ import { StubBaseAccountContract } from '../account_contract.js';
4
+ /**
5
+ * Lazily loads the ECDSA stub contract artifact (browser-compatible).
6
+ */
7
+ export declare function getStubEcdsaAccountContractArtifact(): Promise<import("@aztec/stdlib/abi").ContractArtifact>;
8
+ /** Stub account contract for ECDSA accounts (secp256k1 and secp256r1). Lazily loads the contract artifact. */
9
+ export declare class StubEcdsaAccountContract extends StubBaseAccountContract {
10
+ getContractArtifact(): Promise<import("@aztec/stdlib/abi").ContractArtifact>;
11
+ }
12
+ /** Creates an ECDSA stub account that impersonates the one with the provided address. */
13
+ export declare function createStubEcdsaAccount(originalAddress: CompleteAddress): BaseAccount;
14
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibGF6eS5kLnRzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vc3JjL3N0dWIvZWNkc2EvbGF6eS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsV0FBVyxFQUFFLE1BQU0seUJBQXlCLENBQUM7QUFDdEQsT0FBTyxLQUFLLEVBQUUsZUFBZSxFQUFFLE1BQU0sMkJBQTJCLENBQUM7QUFJakUsT0FBTyxFQUFFLHVCQUF1QixFQUFFLE1BQU0sd0JBQXdCLENBQUM7QUFFakU7O0dBRUc7QUFDSCx3QkFBc0IsbUNBQW1DLDBEQUt4RDtBQUVELDhHQUE4RztBQUM5RyxxQkFBYSx3QkFBeUIsU0FBUSx1QkFBdUI7SUFDMUQsbUJBQW1CLDBEQUUzQjtDQUNGO0FBRUQseUZBQXlGO0FBQ3pGLHdCQUFnQixzQkFBc0IsQ0FBQyxlQUFlLEVBQUUsZUFBZSxlQVF0RSJ9
@@ -0,0 +1 @@
1
+ {"version":3,"file":"lazy.d.ts","sourceRoot":"","sources":["../../../src/stub/ecdsa/lazy.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAE,MAAM,yBAAyB,CAAC;AACtD,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,2BAA2B,CAAC;AAIjE,OAAO,EAAE,uBAAuB,EAAE,MAAM,wBAAwB,CAAC;AAEjE;;GAEG;AACH,wBAAsB,mCAAmC,0DAKxD;AAED,8GAA8G;AAC9G,qBAAa,wBAAyB,SAAQ,uBAAuB;IAC1D,mBAAmB,0DAE3B;CACF;AAED,yFAAyF;AACzF,wBAAgB,sBAAsB,CAAC,eAAe,EAAE,eAAe,eAQtE"}
@@ -0,0 +1,22 @@
1
+ import { BaseAccount } from '@aztec/aztec.js/account';
2
+ import { DefaultAccountEntrypoint } from '@aztec/entrypoints/account';
3
+ import { loadContractArtifact } from '@aztec/stdlib/abi';
4
+ import { StubBaseAccountContract } from '../account_contract.js';
5
+ /**
6
+ * Lazily loads the ECDSA stub contract artifact (browser-compatible).
7
+ */ export async function getStubEcdsaAccountContractArtifact() {
8
+ // Cannot assert this import as it's incompatible with bundlers like vite
9
+ // https://github.com/vitejs/vite/issues/19095#issuecomment-2566074352
10
+ const { default: json } = await import('../../../artifacts/SimulatedEcdsaAccount.json');
11
+ return loadContractArtifact(json);
12
+ }
13
+ /** Stub account contract for ECDSA accounts (secp256k1 and secp256r1). Lazily loads the contract artifact. */ export class StubEcdsaAccountContract extends StubBaseAccountContract {
14
+ getContractArtifact() {
15
+ return getStubEcdsaAccountContractArtifact();
16
+ }
17
+ }
18
+ /** Creates an ECDSA stub account that impersonates the one with the provided address. */ export function createStubEcdsaAccount(originalAddress) {
19
+ const accountContract = new StubEcdsaAccountContract();
20
+ const authWitnessProvider = accountContract.getAuthWitnessProvider(originalAddress);
21
+ return new BaseAccount(new DefaultAccountEntrypoint(originalAddress.address, authWitnessProvider), authWitnessProvider, originalAddress);
22
+ }
@@ -0,0 +1,11 @@
1
+ import { BaseAccount } from '@aztec/aztec.js/account';
2
+ import type { CompleteAddress } from '@aztec/aztec.js/addresses';
3
+ import { StubBaseAccountContract } from '../account_contract.js';
4
+ export declare const StubSchnorrAccountContractArtifact: import("@aztec/stdlib/abi").ContractArtifact;
5
+ /** Stub account contract for Schnorr accounts. Eagerly loads the contract artifact. */
6
+ export declare class StubSchnorrAccountContract extends StubBaseAccountContract {
7
+ getContractArtifact(): Promise<import("@aztec/stdlib/abi").ContractArtifact>;
8
+ }
9
+ /** Creates a Schnorr stub account that impersonates the one with the provided address. */
10
+ export declare function createStubSchnorrAccount(originalAddress: CompleteAddress): BaseAccount;
11
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguZC50cyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uL3NyYy9zdHViL3NjaG5vcnIvaW5kZXgudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLFdBQVcsRUFBRSxNQUFNLHlCQUF5QixDQUFDO0FBQ3RELE9BQU8sS0FBSyxFQUFFLGVBQWUsRUFBRSxNQUFNLDJCQUEyQixDQUFDO0FBTWpFLE9BQU8sRUFBRSx1QkFBdUIsRUFBRSxNQUFNLHdCQUF3QixDQUFDO0FBRWpFLGVBQU8sTUFBTSxrQ0FBa0MsOENBRTlDLENBQUM7QUFFRix1RkFBdUY7QUFDdkYscUJBQWEsMEJBQTJCLFNBQVEsdUJBQXVCO0lBQzVELG1CQUFtQiwwREFFM0I7Q0FDRjtBQUVELDBGQUEwRjtBQUMxRix3QkFBZ0Isd0JBQXdCLENBQUMsZUFBZSxFQUFFLGVBQWUsZUFReEUifQ==
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/stub/schnorr/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAE,MAAM,yBAAyB,CAAC;AACtD,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,2BAA2B,CAAC;AAMjE,OAAO,EAAE,uBAAuB,EAAE,MAAM,wBAAwB,CAAC;AAEjE,eAAO,MAAM,kCAAkC,8CAE9C,CAAC;AAEF,uFAAuF;AACvF,qBAAa,0BAA2B,SAAQ,uBAAuB;IAC5D,mBAAmB,0DAE3B;CACF;AAED,0FAA0F;AAC1F,wBAAgB,wBAAwB,CAAC,eAAe,EAAE,eAAe,eAQxE"}
@@ -0,0 +1,18 @@
1
+ import { BaseAccount } from '@aztec/aztec.js/account';
2
+ import { DefaultAccountEntrypoint } from '@aztec/entrypoints/account';
3
+ import { loadContractArtifact } from '@aztec/stdlib/abi';
4
+ import SimulatedSchnorrAccountJson from '../../../artifacts/SimulatedSchnorrAccount.json' with {
5
+ type: 'json'
6
+ };
7
+ import { StubBaseAccountContract } from '../account_contract.js';
8
+ export const StubSchnorrAccountContractArtifact = loadContractArtifact(SimulatedSchnorrAccountJson);
9
+ /** Stub account contract for Schnorr accounts. Eagerly loads the contract artifact. */ export class StubSchnorrAccountContract extends StubBaseAccountContract {
10
+ getContractArtifact() {
11
+ return Promise.resolve(StubSchnorrAccountContractArtifact);
12
+ }
13
+ }
14
+ /** Creates a Schnorr stub account that impersonates the one with the provided address. */ export function createStubSchnorrAccount(originalAddress) {
15
+ const accountContract = new StubSchnorrAccountContract();
16
+ const authWitnessProvider = accountContract.getAuthWitnessProvider(originalAddress);
17
+ return new BaseAccount(new DefaultAccountEntrypoint(originalAddress.address, authWitnessProvider), authWitnessProvider, originalAddress);
18
+ }
@@ -0,0 +1,14 @@
1
+ import { BaseAccount } from '@aztec/aztec.js/account';
2
+ import type { CompleteAddress } from '@aztec/aztec.js/addresses';
3
+ import { StubBaseAccountContract } from '../account_contract.js';
4
+ /**
5
+ * Lazily loads the Schnorr stub contract artifact (browser-compatible).
6
+ */
7
+ export declare function getStubSchnorrAccountContractArtifact(): Promise<import("@aztec/stdlib/abi").ContractArtifact>;
8
+ /** Stub account contract for Schnorr accounts. Lazily loads the contract artifact. */
9
+ export declare class StubSchnorrAccountContract extends StubBaseAccountContract {
10
+ getContractArtifact(): Promise<import("@aztec/stdlib/abi").ContractArtifact>;
11
+ }
12
+ /** Creates a Schnorr stub account that impersonates the one with the provided address. */
13
+ export declare function createStubSchnorrAccount(originalAddress: CompleteAddress): BaseAccount;
14
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibGF6eS5kLnRzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vc3JjL3N0dWIvc2Nobm9yci9sYXp5LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxXQUFXLEVBQUUsTUFBTSx5QkFBeUIsQ0FBQztBQUN0RCxPQUFPLEtBQUssRUFBRSxlQUFlLEVBQUUsTUFBTSwyQkFBMkIsQ0FBQztBQUlqRSxPQUFPLEVBQUUsdUJBQXVCLEVBQUUsTUFBTSx3QkFBd0IsQ0FBQztBQUVqRTs7R0FFRztBQUNILHdCQUFzQixxQ0FBcUMsMERBSzFEO0FBRUQsc0ZBQXNGO0FBQ3RGLHFCQUFhLDBCQUEyQixTQUFRLHVCQUF1QjtJQUM1RCxtQkFBbUIsMERBRTNCO0NBQ0Y7QUFFRCwwRkFBMEY7QUFDMUYsd0JBQWdCLHdCQUF3QixDQUFDLGVBQWUsRUFBRSxlQUFlLGVBUXhFIn0=
@@ -0,0 +1 @@
1
+ {"version":3,"file":"lazy.d.ts","sourceRoot":"","sources":["../../../src/stub/schnorr/lazy.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAE,MAAM,yBAAyB,CAAC;AACtD,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,2BAA2B,CAAC;AAIjE,OAAO,EAAE,uBAAuB,EAAE,MAAM,wBAAwB,CAAC;AAEjE;;GAEG;AACH,wBAAsB,qCAAqC,0DAK1D;AAED,sFAAsF;AACtF,qBAAa,0BAA2B,SAAQ,uBAAuB;IAC5D,mBAAmB,0DAE3B;CACF;AAED,0FAA0F;AAC1F,wBAAgB,wBAAwB,CAAC,eAAe,EAAE,eAAe,eAQxE"}
@@ -0,0 +1,22 @@
1
+ import { BaseAccount } from '@aztec/aztec.js/account';
2
+ import { DefaultAccountEntrypoint } from '@aztec/entrypoints/account';
3
+ import { loadContractArtifact } from '@aztec/stdlib/abi';
4
+ import { StubBaseAccountContract } from '../account_contract.js';
5
+ /**
6
+ * Lazily loads the Schnorr stub contract artifact (browser-compatible).
7
+ */ export async function getStubSchnorrAccountContractArtifact() {
8
+ // Cannot assert this import as it's incompatible with bundlers like vite
9
+ // https://github.com/vitejs/vite/issues/19095#issuecomment-2566074352
10
+ const { default: json } = await import('../../../artifacts/SimulatedSchnorrAccount.json');
11
+ return loadContractArtifact(json);
12
+ }
13
+ /** Stub account contract for Schnorr accounts. Lazily loads the contract artifact. */ export class StubSchnorrAccountContract extends StubBaseAccountContract {
14
+ getContractArtifact() {
15
+ return getStubSchnorrAccountContractArtifact();
16
+ }
17
+ }
18
+ /** Creates a Schnorr stub account that impersonates the one with the provided address. */ export function createStubSchnorrAccount(originalAddress) {
19
+ const accountContract = new StubSchnorrAccountContract();
20
+ const authWitnessProvider = accountContract.getAuthWitnessProvider(originalAddress);
21
+ return new BaseAccount(new DefaultAccountEntrypoint(originalAddress.address, authWitnessProvider), authWitnessProvider, originalAddress);
22
+ }
@@ -30,4 +30,4 @@ export declare function getIdentities(): Promise<StoredKey[]>;
30
30
  */
31
31
  export declare function signWithAgent(keyType: Buffer, curveName: Buffer, publicKey: Buffer, data: Buffer): Promise<Buffer<ArrayBufferLike>>;
32
32
  export {};
33
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic3NoX2FnZW50LmQudHMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi9zcmMvdXRpbHMvc3NoX2FnZW50LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxNQUFNLEVBQUUsTUFBTSxRQUFRLENBQUM7QUFDaEMsT0FBTyxHQUFHLE1BQU0sS0FBSyxDQUFDO0FBT3RCOztHQUVHO0FBQ0gsd0JBQWdCLGNBQWMsZUFNN0I7QUFFRDs7R0FFRztBQUNILEtBQUssU0FBUyxHQUFHO0lBQ2Y7O09BRUc7SUFDSCxJQUFJLEVBQUUsTUFBTSxDQUFDO0lBQ2I7O09BRUc7SUFDSCxTQUFTLEVBQUUsTUFBTSxDQUFDO0lBQ2xCOztPQUVHO0lBQ0gsT0FBTyxFQUFFLE1BQU0sQ0FBQztDQUNqQixDQUFDO0FBRUY7O0dBRUc7QUFDSCx3QkFBZ0IsYUFBYSxJQUFJLE9BQU8sQ0FBQyxTQUFTLEVBQUUsQ0FBQyxDQWtEcEQ7QUFFRDs7R0FFRztBQUNILHdCQUFnQixhQUFhLENBQUMsT0FBTyxFQUFFLE1BQU0sRUFBRSxTQUFTLEVBQUUsTUFBTSxFQUFFLFNBQVMsRUFBRSxNQUFNLEVBQUUsSUFBSSxFQUFFLE1BQU0sb0NBd0NoRyJ9
33
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic3NoX2FnZW50LmQudHMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi9zcmMvdXRpbHMvc3NoX2FnZW50LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxNQUFNLEVBQUUsTUFBTSxRQUFRLENBQUM7QUFDaEMsT0FBTyxHQUFHLE1BQU0sS0FBSyxDQUFDO0FBT3RCOztHQUVHO0FBQ0gsd0JBQWdCLGNBQWMsZUFNN0I7QUFFRDs7R0FFRztBQUNILEtBQUssU0FBUyxHQUFHO0lBQ2Y7O09BRUc7SUFDSCxJQUFJLEVBQUUsTUFBTSxDQUFDO0lBQ2I7O09BRUc7SUFDSCxTQUFTLEVBQUUsTUFBTSxDQUFDO0lBQ2xCOztPQUVHO0lBQ0gsT0FBTyxFQUFFLE1BQU0sQ0FBQztDQUNqQixDQUFDO0FBRUY7O0dBRUc7QUFDSCx3QkFBZ0IsYUFBYSxJQUFJLE9BQU8sQ0FBQyxTQUFTLEVBQUUsQ0FBQyxDQW1EcEQ7QUFFRDs7R0FFRztBQUNILHdCQUFnQixhQUFhLENBQUMsT0FBTyxFQUFFLE1BQU0sRUFBRSxTQUFTLEVBQUUsTUFBTSxFQUFFLFNBQVMsRUFBRSxNQUFNLEVBQUUsSUFBSSxFQUFFLE1BQU0sb0NBeUNoRyJ9
@@ -1 +1 @@
1
- {"version":3,"file":"ssh_agent.d.ts","sourceRoot":"","sources":["../../src/utils/ssh_agent.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,MAAM,EAAE,MAAM,QAAQ,CAAC;AAChC,OAAO,GAAG,MAAM,KAAK,CAAC;AAOtB;;GAEG;AACH,wBAAgB,cAAc,eAM7B;AAED;;GAEG;AACH,KAAK,SAAS,GAAG;IACf;;OAEG;IACH,IAAI,EAAE,MAAM,CAAC;IACb;;OAEG;IACH,SAAS,EAAE,MAAM,CAAC;IAClB;;OAEG;IACH,OAAO,EAAE,MAAM,CAAC;CACjB,CAAC;AAEF;;GAEG;AACH,wBAAgB,aAAa,IAAI,OAAO,CAAC,SAAS,EAAE,CAAC,CAkDpD;AAED;;GAEG;AACH,wBAAgB,aAAa,CAAC,OAAO,EAAE,MAAM,EAAE,SAAS,EAAE,MAAM,EAAE,SAAS,EAAE,MAAM,EAAE,IAAI,EAAE,MAAM,oCAwChG"}
1
+ {"version":3,"file":"ssh_agent.d.ts","sourceRoot":"","sources":["../../src/utils/ssh_agent.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,MAAM,EAAE,MAAM,QAAQ,CAAC;AAChC,OAAO,GAAG,MAAM,KAAK,CAAC;AAOtB;;GAEG;AACH,wBAAgB,cAAc,eAM7B;AAED;;GAEG;AACH,KAAK,SAAS,GAAG;IACf;;OAEG;IACH,IAAI,EAAE,MAAM,CAAC;IACb;;OAEG;IACH,SAAS,EAAE,MAAM,CAAC;IAClB;;OAEG;IACH,OAAO,EAAE,MAAM,CAAC;CACjB,CAAC;AAEF;;GAEG;AACH,wBAAgB,aAAa,IAAI,OAAO,CAAC,SAAS,EAAE,CAAC,CAmDpD;AAED;;GAEG;AACH,wBAAgB,aAAa,CAAC,OAAO,EAAE,MAAM,EAAE,SAAS,EAAE,MAAM,EAAE,SAAS,EAAE,MAAM,EAAE,IAAI,EAAE,MAAM,oCAyChG"}
@@ -18,6 +18,7 @@ const SSH_AGENT_SIGN_RESPONSE = 14;
18
18
  */ export function getIdentities() {
19
19
  return new Promise((resolve, reject)=>{
20
20
  const stream = connectToAgent();
21
+ stream.on('error', reject);
21
22
  stream.on('connect', ()=>{
22
23
  const request = Buffer.concat([
23
24
  Buffer.from([
@@ -78,6 +79,7 @@ const SSH_AGENT_SIGN_RESPONSE = 14;
78
79
  */ export function signWithAgent(keyType, curveName, publicKey, data) {
79
80
  return new Promise((resolve, reject)=>{
80
81
  const stream = connectToAgent();
82
+ stream.on('error', reject);
81
83
  stream.on('connect', ()=>{
82
84
  // Construct the key blob
83
85
  const keyBlob = Buffer.concat([
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": "0.0.1-commit.db765a8",
5
+ "version": "0.0.1-commit.ddcf04837",
6
6
  "type": "module",
7
7
  "exports": {
8
8
  "./defaults": "./dest/defaults/index.js",
@@ -10,8 +10,10 @@
10
10
  "./ecdsa/lazy": "./dest/ecdsa/lazy.js",
11
11
  "./schnorr": "./dest/schnorr/index.js",
12
12
  "./schnorr/lazy": "./dest/schnorr/lazy.js",
13
- "./stub": "./dest/stub/index.js",
14
- "./stub/lazy": "./dest/stub/lazy.js",
13
+ "./stub/schnorr": "./dest/stub/schnorr/index.js",
14
+ "./stub/schnorr/lazy": "./dest/stub/schnorr/lazy.js",
15
+ "./stub/ecdsa": "./dest/stub/ecdsa/index.js",
16
+ "./stub/ecdsa/lazy": "./dest/stub/ecdsa/lazy.js",
15
17
  "./testing": "./dest/testing/index.js",
16
18
  "./testing/lazy": "./dest/testing/lazy.js",
17
19
  "./copy-cat": "./dest/copy_cat/index.js",
@@ -79,11 +81,11 @@
79
81
  ]
80
82
  },
81
83
  "dependencies": {
82
- "@aztec/aztec.js": "0.0.1-commit.db765a8",
83
- "@aztec/entrypoints": "0.0.1-commit.db765a8",
84
- "@aztec/ethereum": "0.0.1-commit.db765a8",
85
- "@aztec/foundation": "0.0.1-commit.db765a8",
86
- "@aztec/stdlib": "0.0.1-commit.db765a8",
84
+ "@aztec/aztec.js": "0.0.1-commit.ddcf04837",
85
+ "@aztec/entrypoints": "0.0.1-commit.ddcf04837",
86
+ "@aztec/ethereum": "0.0.1-commit.ddcf04837",
87
+ "@aztec/foundation": "0.0.1-commit.ddcf04837",
88
+ "@aztec/stdlib": "0.0.1-commit.ddcf04837",
87
89
  "tslib": "^2.4.0"
88
90
  },
89
91
  "devDependencies": {
@@ -0,0 +1,28 @@
1
+ import { BaseAccount } from '@aztec/aztec.js/account';
2
+ import type { CompleteAddress } from '@aztec/aztec.js/addresses';
3
+ import { DefaultAccountEntrypoint } from '@aztec/entrypoints/account';
4
+ import { loadContractArtifact } from '@aztec/stdlib/abi';
5
+ import type { NoirCompiledContract } from '@aztec/stdlib/noir';
6
+
7
+ import SimulatedEcdsaAccountJson from '../../../artifacts/SimulatedEcdsaAccount.json' with { type: 'json' };
8
+ import { StubBaseAccountContract } from '../account_contract.js';
9
+
10
+ export const StubEcdsaAccountContractArtifact = loadContractArtifact(SimulatedEcdsaAccountJson as NoirCompiledContract);
11
+
12
+ /** Stub account contract for ECDSA accounts (secp256k1 and secp256r1). Eagerly loads the contract artifact. */
13
+ export class StubEcdsaAccountContract extends StubBaseAccountContract {
14
+ override getContractArtifact() {
15
+ return Promise.resolve(StubEcdsaAccountContractArtifact);
16
+ }
17
+ }
18
+
19
+ /** Creates an ECDSA stub account that impersonates the one with the provided address. */
20
+ export function createStubEcdsaAccount(originalAddress: CompleteAddress) {
21
+ const accountContract = new StubEcdsaAccountContract();
22
+ const authWitnessProvider = accountContract.getAuthWitnessProvider(originalAddress);
23
+ return new BaseAccount(
24
+ new DefaultAccountEntrypoint(originalAddress.address, authWitnessProvider),
25
+ authWitnessProvider,
26
+ originalAddress,
27
+ );
28
+ }
@@ -0,0 +1,34 @@
1
+ import { BaseAccount } from '@aztec/aztec.js/account';
2
+ import type { CompleteAddress } from '@aztec/aztec.js/addresses';
3
+ import { DefaultAccountEntrypoint } from '@aztec/entrypoints/account';
4
+ import { loadContractArtifact } from '@aztec/stdlib/abi';
5
+
6
+ import { StubBaseAccountContract } from '../account_contract.js';
7
+
8
+ /**
9
+ * Lazily loads the ECDSA stub contract artifact (browser-compatible).
10
+ */
11
+ export async function getStubEcdsaAccountContractArtifact() {
12
+ // Cannot assert this import as it's incompatible with bundlers like vite
13
+ // https://github.com/vitejs/vite/issues/19095#issuecomment-2566074352
14
+ const { default: json } = await import('../../../artifacts/SimulatedEcdsaAccount.json');
15
+ return loadContractArtifact(json);
16
+ }
17
+
18
+ /** Stub account contract for ECDSA accounts (secp256k1 and secp256r1). Lazily loads the contract artifact. */
19
+ export class StubEcdsaAccountContract extends StubBaseAccountContract {
20
+ override getContractArtifact() {
21
+ return getStubEcdsaAccountContractArtifact();
22
+ }
23
+ }
24
+
25
+ /** Creates an ECDSA stub account that impersonates the one with the provided address. */
26
+ export function createStubEcdsaAccount(originalAddress: CompleteAddress) {
27
+ const accountContract = new StubEcdsaAccountContract();
28
+ const authWitnessProvider = accountContract.getAuthWitnessProvider(originalAddress);
29
+ return new BaseAccount(
30
+ new DefaultAccountEntrypoint(originalAddress.address, authWitnessProvider),
31
+ authWitnessProvider,
32
+ originalAddress,
33
+ );
34
+ }
@@ -0,0 +1,30 @@
1
+ import { BaseAccount } from '@aztec/aztec.js/account';
2
+ import type { CompleteAddress } from '@aztec/aztec.js/addresses';
3
+ import { DefaultAccountEntrypoint } from '@aztec/entrypoints/account';
4
+ import { loadContractArtifact } from '@aztec/stdlib/abi';
5
+ import type { NoirCompiledContract } from '@aztec/stdlib/noir';
6
+
7
+ import SimulatedSchnorrAccountJson from '../../../artifacts/SimulatedSchnorrAccount.json' with { type: 'json' };
8
+ import { StubBaseAccountContract } from '../account_contract.js';
9
+
10
+ export const StubSchnorrAccountContractArtifact = loadContractArtifact(
11
+ SimulatedSchnorrAccountJson as NoirCompiledContract,
12
+ );
13
+
14
+ /** Stub account contract for Schnorr accounts. Eagerly loads the contract artifact. */
15
+ export class StubSchnorrAccountContract extends StubBaseAccountContract {
16
+ override getContractArtifact() {
17
+ return Promise.resolve(StubSchnorrAccountContractArtifact);
18
+ }
19
+ }
20
+
21
+ /** Creates a Schnorr stub account that impersonates the one with the provided address. */
22
+ export function createStubSchnorrAccount(originalAddress: CompleteAddress) {
23
+ const accountContract = new StubSchnorrAccountContract();
24
+ const authWitnessProvider = accountContract.getAuthWitnessProvider(originalAddress);
25
+ return new BaseAccount(
26
+ new DefaultAccountEntrypoint(originalAddress.address, authWitnessProvider),
27
+ authWitnessProvider,
28
+ originalAddress,
29
+ );
30
+ }
@@ -0,0 +1,34 @@
1
+ import { BaseAccount } from '@aztec/aztec.js/account';
2
+ import type { CompleteAddress } from '@aztec/aztec.js/addresses';
3
+ import { DefaultAccountEntrypoint } from '@aztec/entrypoints/account';
4
+ import { loadContractArtifact } from '@aztec/stdlib/abi';
5
+
6
+ import { StubBaseAccountContract } from '../account_contract.js';
7
+
8
+ /**
9
+ * Lazily loads the Schnorr stub contract artifact (browser-compatible).
10
+ */
11
+ export async function getStubSchnorrAccountContractArtifact() {
12
+ // Cannot assert this import as it's incompatible with bundlers like vite
13
+ // https://github.com/vitejs/vite/issues/19095#issuecomment-2566074352
14
+ const { default: json } = await import('../../../artifacts/SimulatedSchnorrAccount.json');
15
+ return loadContractArtifact(json);
16
+ }
17
+
18
+ /** Stub account contract for Schnorr accounts. Lazily loads the contract artifact. */
19
+ export class StubSchnorrAccountContract extends StubBaseAccountContract {
20
+ override getContractArtifact() {
21
+ return getStubSchnorrAccountContractArtifact();
22
+ }
23
+ }
24
+
25
+ /** Creates a Schnorr stub account that impersonates the one with the provided address. */
26
+ export function createStubSchnorrAccount(originalAddress: CompleteAddress) {
27
+ const accountContract = new StubSchnorrAccountContract();
28
+ const authWitnessProvider = accountContract.getAuthWitnessProvider(originalAddress);
29
+ return new BaseAccount(
30
+ new DefaultAccountEntrypoint(originalAddress.address, authWitnessProvider),
31
+ authWitnessProvider,
32
+ originalAddress,
33
+ );
34
+ }
@@ -41,6 +41,7 @@ type StoredKey = {
41
41
  export function getIdentities(): Promise<StoredKey[]> {
42
42
  return new Promise((resolve, reject) => {
43
43
  const stream = connectToAgent();
44
+ stream.on('error', reject);
44
45
  stream.on('connect', () => {
45
46
  const request = Buffer.concat([
46
47
  Buffer.from([0, 0, 0, 5 + 4]), // length
@@ -96,6 +97,7 @@ export function getIdentities(): Promise<StoredKey[]> {
96
97
  export function signWithAgent(keyType: Buffer, curveName: Buffer, publicKey: Buffer, data: Buffer) {
97
98
  return new Promise<Buffer>((resolve, reject) => {
98
99
  const stream = connectToAgent();
100
+ stream.on('error', reject);
99
101
  stream.on('connect', () => {
100
102
  // Construct the key blob
101
103
  const keyBlob = Buffer.concat([